Poor man’s wget

The command wget is useful, but unfortunately doesn’t come preinstalled with Mac. Yeah, you can install it of course, but if you’re doing it from source, the process has a few steps to satisfy all the dependencies; start by configure…

The purpose of language by Chomsky

In the following Google video, Noam Chomsky raises and answers the interesting question: what amazing insights into language have linguistics revealed, which the public does not know about?. He answers that human natural language was propably developed to support the…

Do What You Want

The message of this movie is “do what you want”. The video is a meditative portrait of a man who was once a successful medical doctor, and who as 60+ lives in a small studio in Los Angeles (i think).…

What Goes Around Comes Around

Today I read the What Goes Around Comes Around chapter from the “Red Book” by Michael Stonebraker and Joseph M. Hellerstein. The chapter (or paper if you will) is a summary of 35 years of data model proposals, grouped into…

Get Weather using JSON web service and Python

Get the current weather for Copenhagen: import urllib2 import json # hent vejret for Koebenhavn url = ‘,dk’ response = urllib2.urlopen(url) # parse JSON resultatet data = json.load(response) print ‘Weather in Copenhagen:’, data[‘weather’][0][‘description’]