I spent a couple of hours to look at http://www.twistedmatrix.com/ . After a little of hacking, i think i understand how it works, mainly static.File. But i still need to work on this since i want to use it to … Continue reading →
I’ just discover ikaaro (http://www.ikaaro.org) last night. After a couple of ./configure; make install it seems to work pretty fine. I really need to look at this closer since it use a custom TAL like system that seems to be … Continue reading →
I have been waiting for this since a long. After writing a lot of applet for gnome desktop, now we can also write some for KDE ! Take a look at this article for additionnal infos. I’m pretty sure that … Continue reading →
This is really a fun reading, cause I think this gonna make a lot of Java users going crazy. So if you ususally write some Java code, please read it. You will understand why i really consider Python as a … Continue reading →
While I was thinking about some sync / async download for iAggregator (mainly to reduce the time needed to this), i remember that i’ve read it previously somewhere .. After a little search i have found this : http://effbot.org/zone/effnews-1.htm Perhaps … Continue reading →
Using RPC for bloging is funny no ? In fact it”s really usefull to post thought email.. or console tools so This is my first post w/ XML-RPC mainly using PyMT check out: http://pymt.sf.net for more infos import PyMT mt … Continue reading →
This is the last interesting stuff seen at the ICOST. As at work we are looking for a way to write some playing game, and as i need to find a nice GUI toolkit for respyre, I will carefully read … Continue reading →
#!/usr/bin/python “”" A really simple piece of code that i use to track down my dynamics IP (assigned by my isp while using ppp). “”" filename = ‘/home/soif/Perso/Data/lastIp.sqlite’ import sys,os,time try: import sqlite except ImportError: print “Please install python sqlite … Continue reading →
This is my first hack over ZPTPage and Modeling to enable regerating of ZPTPage only when Modeling objects changed .. check out class A: (which is a sample fake Modeling Object) import os,time from ZPTPage import ZPTPage class A: def … Continue reading →