See what we’ve written lately
How to use EM's when you're already comfortable with pixels
Here's why I use em: 1. Pixels are precise, but they're not very flexible. If you increase your browser's font-size, things may...
Show .hidden folders and files in Os X Leopard
Some applications such dump itty bitty hidden files that will screw up your workflow if you don't manage them. Here's how to quickly identify...
AS3: Regular Expression Basics
Here are some Regular Expression basics in Actionscript 3. 1. RegExp.text(string) returns a Boolean 2. RegExp.exec(string) returns an Object 3. String.search(pattern) returns...
Ruby: Open a text file and re-write its contents into a new text file
Basic example of how to open a text file and print them (including line-numbers) into a new text file. Example 1 - Long-hand counter = 1 old_file = File....
MySQL: Commands I wish I could remember
Import CSV file LOAD DATA INFILE "/data.csv" INTO TABLE alldata FIELDS TERMINATED BY ","; #Dump DB data to CSV file SELECT * INTO OUTFILE '...