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 →
In a recent post Ian explain he get a lot of trouble w/ the configuration of his mail system. I ran into the same issues a little time ago. Now i’m using postfix and courier-imap and maildrop to dispatch the … Continue reading →
As nobody notice that, the new apt-proxy use python (not perl as the old one). This is really a good news because i love Python and the new apt-proxy has some better performance than the oldest perlish one. The key … Continue reading →
There is a bunch of Python based web framework. So much that it’s a really hard choice to do. Most of them came w/ a special templating language, and a different approach. Dilemma 1 I really think most of the … Continue reading →
I have been working for impaired people for a while, and today i need to write a little program that use ‘Text to Speech’. This should say to the user what is happening in the house like ‘TV is on’ … Continue reading →
Python is a object oriented programming language After a couple of years, using Perl and PHP, now i use Python for a couple of things. Please look at this sections for more infos on Python. Misc Network Webware Zope I’m … Continue reading →