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...
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...
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...
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...
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....
Import CSV file LOAD DATA INFILE "/data.csv" INTO TABLE alldata FIELDS TERMINATED BY ","; #Dump DB data to CSV file SELECT * INTO OUTFILE '...