We have a snowstorm! After fixing some problems with my collision detection system, I got it working! It’s rough, but some added work on the physics side, and more tuning and it will be even sweeter!
Posts By: nate
Indie Game: Ace of Spades
It’s like Mindcraft with guns, and that is pretty cool: www.ace-spades.com/news/
Credit card processing for developers
You don’t need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Stripe.js lets you build your own payment forms while still avoiding PCI requirements. stripe.com/
Bonsai JS – SVG rendering and a graphics API
Bonsai’s main features include: Architecturally separated runner and renderer iFrame, Worker and Node running contexts Paths Assets (Videos, Images, Fonts, SubMovies) Keyframe and time based animations (easing functions too) Path morphing and much more… bonsaijs.org/
Bones – The WordPress HTML5 theme for developers
Bones is a WordPress Theme for Developers — Built around the HTML5 Boilerplate, Bones is a rock solid foundation to start any WordPress project. Keep what you need, remove what you don’t. It’s totally up to you. Bones is not a Framework — Frameworks are great, but sometimes they make things more complicated than they… Read more »
Graphite – Scalable realtime graphing suite
Graphite is a highly scalable real-time graphing system. As a user, you write an application that collects numeric time-series data that you are interested in graphing, and send it to Graphite’s processing backend, carbon, which stores the data in Graphite’s specialized database. The data can then be visualized through graphite’s web interfaces. graphite.wikidot.com/
Next Generation firewall port knocking
fwknop stands for the “FireWall KNock OPerator”, and implements an authorization scheme called Single Packet Authorization (SPA). This method of authorization is based around a default-drop packet filter (fwknop supports iptables on Linux, ipfw on FreeBSD and Mac OS X, and PF on OpenBSD) and libpcap. SPA is essentially next generation port knocking (more on… Read more »
New motor build log… collecting parts.
Received my rod bearings and pistons today, ready to go! GSR transmission getting a ITR LSD installed. 84mm 9.5:1 CP Pistons GSR block heading out to GOlden Eagle for sleeving. Sandblasted valvecover. Ready for AN fittings and powdercoating. I went thru my harness, cleaning it up, removing unused wired and heat shrinking it all. Valve… Read more »
[Windows] Finding a string in a bunch of files, then processing each of those files
I had a task where there were thousands of files in a folder. Some of them contained a specific string and needed to be processed. A quick n dirty method is to use grep (or windows grep in this case www.wingrep.com/) to identify the files and generate a list of filenames in plaintext. Then using… Read more »
Useful jQuery Plugin repo
The Handpicked jQuery Plugins Repository is a carefully selected roundup of some of the best jQuery Plugins ever released. Here we offer you the ability to browse through the plugins, or download a plugin that you fancy. Whether you’re building a huge Web-Application, or a simple site, we’ve got you covered. We also offer you… Read more »
Writing Linux device drivers
Nice article on writing drivers for the linux kernel. User space. End-user programs, like the UNIX shell or other GUI based applications (kpresenter for example), are part of the user space. Obviously, these applications need to interact with the system’s hardware . However, they don’t do so directly, but through the kernel supported functions. Kernel… Read more »
Hardware Dev – Logic Analyzer & Bus Pirate
I think I wrote about the bus pirate some time ago. A logic analyzer is a device that lets you watch digital signals in your electronics project. You can watch them real-time or log the data for later perusal. Unlike an oscilloscope, its not good for measuring analog signals – but also unlike an oscilloscope,… Read more »
Stripping trailing periods from a URL with .htaccess
I recently had a client of mine have a link to their website published in a online newspaper. The paper typo’d the URL and tacked a trailing . to the end of the HREF. A quick .htaccess edit resolved the issue: RewriteRule ^(.+)\.$ website.com/$1 [R=301,L]
Year 2038 bug
Wow. Just got hit with this bug. It’s going to be a fairly easy fix (more on that later), but crazy none the less. Excerpt from wikipedia: “The year 2038 problem may cause some computer software to fail at some point near the year 2038. The problem affects all software and systems that both store… Read more »
Zend GData Links
Zend GData Calendar API Ref: framework.zend.com/apidoc/1.9/Zend_Gdata… PHP Devel Guide: developers.google.com/google-apps/calend…