December 6th, 2009
Soundcloud is a free audio third-party (a.k.a. “not my problem”) service that allows you to post, share, receive, send and download audio files with anyone, anywhere. Also allows you to manage your audio files efficiently and effectively in “the cloud”.
Posted in Multimedia, Service, Web | Comments Off
November 28th, 2009
With the advent of Google Wave looking like it could replace Independent Learning Centre. And Google Docs now being used heavily by students — news article link. It’s not so far fetched to assume that students will have laptops running the Google OS while reading on Google Books.
Posted in General, Products, Service | Comments Off
November 27th, 2009
The iPhone Safari browser supports several extra protocols to launch their corresponding apps:
Apple documentation on iPhone integration
- sms ex. Text this ( <a href=”sms:5555555555″>Text this</a> ) For SMS texting
- tel ex. Phone this ( <a href=”tel:5555555555″>Phone this</a> ) For regular phone calls
- youtube ex. Singing Shiba ( <a href=”youtube:rnXQDMDobHc”>Singing Shiba</a> ) Starting youtube videos
- itms ex. ZipCar App ( <a href=”itms://itunes.apple.com/ca/app/zipcar/id329384702?mt=8&uo=6″>Items</a> ) ZipCar App
- maps ex. CN Tower ( <a href=”maps:301 Front Street West, Toronto, ON”>CN Tower</a> ) Launching maps with address marker
Posted in Mobile, Programming, Web | Comments Off
November 27th, 2009
The ability for a user to be on a site and have the web server cause an action to occur on the site, via ‘push technology‘, is soon to be realized at the HTML 5 leve. Although this type of interaction has always been available; through Flash, Java and Javascript. It’s finally being brought-up to the HTML level as noted in W3C documentation. The Stray Orange blog has a good post relating to HTML 5 push technology.
Posted in Networking, Programming, Web | Comments Off
October 15th, 2009
$xml_data = preg_replace("/>\s+</", "><", $xml_data);
Removes all the whitespace, tabs and newlines between the nodes from an XML file. A lot of PHP XML parsers tend to parse the white space, which can cause errors. Adding the function before the PHP XML data handler executes will prevent those issues from arising.
Posted in Programming, Web | Comments Off