Category Archives: Coding

The Making of Pitfall

The story behind the making of Activision’s Pitfall on the Atari 2600 is fascinating. Here is true programming genius! Continue reading

Posted in Assembly, Coding, Digital, Nostalgia | Leave a comment

Arduino on Steroids

The Teensy 3.0 is a cool little dev board. It’s Arduino-compatible (from a software perspective, anyway), breadboardable, and only about $20US. It also runs a 48MHz, 32-bit Arm processor, making it not only easy to use, but a speed demon. … Continue reading

Posted in Arduino, C, Coding, Digital, Electronics, Toys | Leave a comment

‘Git’ along, coder dogies!

When working on nontrivial coding projects, it’s often helpful to be able to keep track of changes made, version by version. When more than one developer is involved, it’s also helpful to be able to coordinate updates among them. Several … Continue reading

Posted in C, Coding, Digital Citizenship, Internet, Linux, System Administration | Tagged , , , , , , , , , | Leave a comment

BMP file format

It’s often useful to be able to produce an image file as output from a program. Bitmap (.BMP) is one of the easiest formats to write. Here’s how to output 24-bit .BMP files from your data. Continue reading

Posted in BASIC, Coding, HOW-TO | Leave a comment