Today, I decided to write a new webapp (this will be out soon). I have been off since a while in the webapp developpement, so it’s a bit hard to start this new project. I decided to look on recent … Continue reading →
In a past life, I spent a lot of time with gtk-1 and glade (for a commercial app). After this experience, I tested several approach: PyQT (using QTDesigner) wxPython (w/ wxGlade) Glade 2 + libglade Here is my personnal feeling: … Continue reading →
I use this little script on another computer for a while. Meanly to remote drive my xmms throught the xmms python module. Anyway I just write this little intro here, perhaps other people may be interested.. This litte script use … Continue reading →
Ok, I ‘ve been off for a little time right now. The main reason, is that I spend some time hacking my new Wireless access point: WRT54GS. I spend a lot of time tweaking the config to use this in … Continue reading →
I’ve been looking for this for a while !! Why this f***ing Python process eat so much memory ? I freed all the objects, and don’t have any circular references .. Every advanced Python programmer need to read this carefully. … Continue reading →
Little hack to make a bit harder for spammers to parse email address on the web. def cryptEmailAddress(addr): r = [] for l in addr: r.append(‘&#%d;’ % ord(l)) return string.join(r,”) >>>cryptEmailAddress(‘jkx@larsen-b.com’) ‘jkx@larse….’ And simply put this in a href mailto: … Continue reading →
Ok let’s go. I’m working on Alinea2 right now. Alinea is the stuff that power this website and others. I’ll hope to get it working quickly. Beside, this is a big work.. I loose my time with CSS hacking right … Continue reading →
After a long trip around the Python web developpement tools, it’s time to fix. In a previous post (please read all comments before ..) we have talk for a long time about various web frameworks. Here is my personnal conclusion: … Continue reading →