Webware is one of my favorite webapp. Simply because i understand how it works. There is no magic in.. just a standard Servlet way of think. But on the other side, i really think some part of webware should be … Continue reading →
Singleton is one of the well known design pattern. In python, most of us use the Borg Singleton like, which is not a true Singleton, since only the ‘state is shared’. In fact, you use distinct objects but they share … Continue reading →
http://supybot.sourceforge.net (SupyBot) is the coolest ircbot written in python, that i’ ever used. After 3 years of good work with eggdrop, it’s time to use something more userfriendly and python based. This is a short introduction to use it: download … Continue reading →
Yes it works !! While looking for a way to have some better URL in Webware, than the defaut http://host/Servlet?arg0=..&arg1=, Ian tell me to look at WebKit.URLParser. After a little time looking at the source i managed to do this … Continue reading →
This post load testing BIND using dnspython and queryperf is a nice post about the use of dnspython module. There is a bunch of dns module right now adns and other.. but this one looks kool since it can read … Continue reading →
While looking for a way to call ioctl in Python, I found this . This is really strange.. have you ever think of tweaking a kernel with Python ? , i don’t. Anyway, I really enjoy this, since i don’t … Continue reading →
This isn’t really new, but i need to look at closer the aspect programming. Logilab aspects module seems to provide a great way to solve this kind of trouble. This kind of programming need a total ‘twist’ of mind to … Continue reading →
I always used Emacs for Python editing. And usually i use the ‘dabbrev-expansion’ to use auto-complete feature. After a talk w/ Phil I discover http://www.python.org/cgi-bin/moinmoin/EmacsPythonCompletion (py-complete lisp module). This seems to be a cool stuff but i get the same … Continue reading →
Ever think of sniffing or forging packet in Python ? I spent a part of time hacking some UDP packet for my work and building Ethercap rules is a bit hard now you can do this with : http://oss.coresecurity.com/projects/pcapy.html http://oss.coresecurity.com/projects/impacket.html
First it’s my birthday today (19/12) .. I am 29 years old .. Oh my god and still playing w/ computer like a kid :) So my playground today was SQLObject. Despite Big (author of Modeling is one of my … Continue reading →