I am always exploring interesting tidbit in technology. I will keep a blog of my path to discovering new technology.
Tuesday, October 27, 2009
Etherpad collaboration for coders
http://etherpad.com/
I shall try it and report back.
Sunday, October 25, 2009
Lego land on street view
http://www.google.com/trike
here are some places they are mapping
They are accepting suggestions for places to map until Wednesday October 28, 2009
rome Catacombs in 3d
Very cool 3d mapping of underground catacombs.
But, until now, they have never been fully documented, their vast scale only recorded with handmade maps.
That is now changing, following a three-year project to create the first fully comprehensive three-dimensional image using laser scanners.
http://news.bbc.co.uk/2/hi/europe/8027650.stm
Tuesday, October 13, 2009
Creating html emails
This will be useful.
$admin= "emailfrom@gmail.com";
$email = "emailto@gmail.com";
$subject = "HTML in email";
$message = "
";
$headers = "MIME-Version: 1.0\nContent-type: text/html; charset=UTF-8\n";
//$headers = "To: $firstname $lastname <$email>\n";
$headers .= "From: Your Agri-med Perscription <$admin>\n";
$mail = mail($email, $subject, $message, $headers);
if($mail) echo "The email has been send.";
?>
So that is all that is required. There are many email clients out there such as yahoo, gmail, hotmail, outlook
and they all see html in emails differently. They all have different support for html and css. Test your emails out with as many of these as you can to make sure your email styles are supported.
look at this page to learn what your emails look like in different clients and what features each support.
http://www.email-standards.org/clients/
Wednesday, October 7, 2009
Google Barcodes
This is a cool new type of barcode I have not heard of before. The QR code is a way to put up to 4000 letter characters and 10000 numbers in a barcode. I love the fact that you can control the level of accuracy. You can make it so between 7 and 30% of the barcode could be covered and unreadable and no data will be lost because the data is redundant like RAR files can be. It is like stiped harddrives in the way that if one of them is destroyed the others still have the files that were lost on the harddrive that failed. Read about how google charts API works to let you make these cool barcodes.
http://code.google.com/apis/chart/types.html#qrcodes
You can also use it to store a contact including about 10 different parts to it.
It can store a geographic location including how many meters above the area.
It can also store a SMS message, or an e-mail or a calendar event. Try out generating these barcodes and more in the following online demo.
http://zxing.appspot.com/generator/
These barcodes will someday be used more as maybe something that can add events to your google calendar or add anyones contact info from a book into your email profile. Mobile phones can read these barcodes and so it is a pretty new technology that will be helpful to someone someday.