Jun 30

Gmaps Api

Google has released the API for Google Maps. This api allows you to display maps on you own pages, and do things like add routes, icons, and information tabs. This is actually pretty easy to use, and all you need to do is apply for your own API key, and copy the example api code into any html page. If you need to see a working example, check the very bottom of this page, and you will see it at work(and where I work)REMOVED–Check the Google site. Pretty nifty trick. And if you are a blogger on blogspot, it is as easy as pasting the correct code into your template.

Click here for the API goodness!

Jun 29

qt4

Trolltech has finally launched a GPL version of their software for Win32. This is great news for myself, and a lot of people out there.I for one, have never been able to install QT properly on my linux box.
There was always some missing or mis-referenced library, and I never could get it to work. I could also never seem to find the old 2.3 Win32 version that was GPL’d. Now, I can try it on my windoze box, and see if it is easier to write my Python Gui’s.

Click here for the win32 download mirrors!

Jun 23



Check out this really neat implementation of a *nix console done entirely in javascript. The quality of web design work showing up on the interweb, is getting really impressive. I am also rather happy to see this resurgence of javascript. I get the feeling that the popularity of Firefox
may be leading the new javascript/XUL/Ajax front.

Click here to check this out.

Jun 20

python
I have found that there is not a lot of documentation out there that shows you a simple way to instantiate a socket connection. Here is a simple code snippet, that shows you how to make a connection using the socket module. This would be useful for checking whether a host is listening on a particular port. This is not a full sockets implementation(no send, or recieve), but simply tests if a TCP socket is open.
Continue reading »