Latest Posts

iCloud: My Thoughts

Apple’s Worldwide Developers Conference is underway and with that comes Steve Jobs famous keynote address and Apple’s lastest tech.  This year saw Jobs announce iOS 5, MacOS Lion, but more importantly Apple’s MobileMe replacement, iCloud. iCloud is Apple’s offering into the cloud computing infrastructure that Google and Amazon have dominated over the past few years.  […]

Continue reading »

Google Research Award – Identifying Learning Benefits of Google Earth Tours in Education

It is always nice to announce good news. Back in February, together with Richard Treves at the University of Southampton, I submitted an application to the Google’s Faculty Research Award program for a grant to investigate Google Earth Tours in education. We were successful in getting a grant worth $86,883 USD.  The project builds on […]

Continue reading »

Weather Underground

I’ve been looking at the Weather Underground API (http://wiki.wunderground.com/index.php/API_-_XML) which gives access to the observation stations and the data they are collecting. The API uses simple commands to query for a list of stations, for example: http://api.wunderground.com/auto/wui/geo/GeoLookupXML/index.xml?query=london,united+kingdom Using C# and .net, this is accomplished as follows: WebRequest request = WebRequest.Create(string.Format(GeoLookupXML, @”london,united+kingdom”)); HttpWebResponse response = (HttpWebResponse)request.GetResponse(); XmlDocument […]

Continue reading »
1 154 155 156 157 158 173