November 2010
2 posts
Royal Pingdom ยป Awesome visualizations of internet... →
Nov 28th
BBC iPlayer - How Not To Live Your Life: Series 3:... →
Nov 15th
October 2010
2 posts
Look! Savoury Broccoli Cupcakes | Apartment... →
Oct 13th
Final Frame: Home Security Innovations by... →
Oct 13th
January 2010
1 post
Flags css sprite
Flags of the world as a css sprite. The flag icons are from Mark James’s FamFamFam collection while the code is a slightly simplified and condensed version of the csscountrycodes project on Google Code. Released under a GNU General Public License v2. Includes 247 icons in total. The sprite image is over 51% smaller in filesize than the individual icons and can be downloaded in just one...
Jan 7th
1 note
December 2009
6 posts
PHP
<?php $q=$_GET["q"]; $con = mysql_connect('localhost', 'peter', 'abc123'); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("ajax_demo", $con); $sql="SELECT * FROM user WHERE id = '".$q."'"; $result = mysql_query($sql); echo "";
Dec 24th
Javascript
var xmlhttp; function showUser(str) { xmlhttp=GetXmlHttpObject(); if (xmlhttp==null) { alert ("Browser does not support HTTP Request"); return; } var url="getuser.php"; url=url+"?q="+str; url=url+"&sid="+Math.random(); xmlhttp.onreadystatechange=stateChanged; xmlhttp.open("GET",url,true); xmlhttp.send(null); } function stateChanged() { if...
Dec 24th
CSS
/*This is a comment*/ p { text-align:center; /*This is another comment*/ color:black; font-family:arial }
Dec 24th
MySQL import from CSV
LOAD DATA LOCAL INFILE '/Users/Dave/Downloads/codes.csv' INTO TABLE codes FIELDS TERMINATED BY ',' ENCLOSED BY '"' LINES TERMINATED BY '\n';
Dec 23rd
1 tag
Useful MySQL Commands
Change engine: ALTER TABLE tbl_name ENGINE=InnoDB; Change charset: ALTER TABLE tbl_name CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;
Dec 10th
Google Street View Examples
Google Street View API Docs http://code.google.com/apis/maps/documentation/services.html#StreetviewClientQuerys Google Maps API Reference http://code.google.com/apis/maps/documentation/reference.html#GMarker Rotating Canvas Marker http://econym.org.uk/gmap/example_canvas.htm Street View Map Sync (directional marker) http://www.adamzastawski.com/samples/GoogleMapsStreetViewEvents.html ...
Dec 10th
August 2009
1 post
Coding Horror: COBOL: Everywhere and Nowhere →
Aug 12th