Today, ActiveState release a howto use source highlight in reST. It’s looks fine too. Right now i prefer using code2html, but i think this gonna change soon :) http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/252170/
reST is one of my favorite tools right now. It’s easy to read / write, produce some nice HTML output (as in http://respyre.org for example ). The only issue for me is that i’ve been unable to write some custom … 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 →
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 →
Have you ever wondering what is in the gabarge collector ? This little piece of code may help :) import string,gc def debugGC(threshold=10): d = {} print “*” * 80 for o in gc.get_objects(): try: s = str(o.__class__) try: d[s] … Continue reading →
Différentes initiatives commencent à naitre sur les IDE python. Un relativement récente consiste à utiliser eclipse, l’IDE java. http://www.xored.com/products.php L’installation du plugin se fait directement via eclipse via Window -> Open Perspective -> Other resource -> Install or Update. Puis … Continue reading →