As a small reminder for myself, I post the thread about pyExcelerator.
pyExcelerator is a nice little python module that let’s you write Excel files (not openOffice spreadsheet, the other kind..).
For Ubuntu users, it is very easy to install: sudo apt-get install python-excelerator
Here basic script to write in ‘Hello World!’ excel file:
#!/usr/bin/env python
import os
from pyExcelerator import *
curpath = os.path.dirname(__file__)
workbook = Workbook()
worksheet = workbook.add_sheet('My colour Sheet')
worksheet.write(0,0, 'Hello World!')
workbook.save(os.path.join(curpath, 'test.xls'))
Continue reading “python: pyExcelerator module very little howto”
Voici un article clairvoyant notant la différence entre la fierté et l’orgueil d’un développeur qui publie son travail en opensource.. ou pas.
http://www.bulot.org/2007/10/25/lopen-source-rempart-aux-effets-nefastes-de-lorgueil-du-developpeur/
cheers Stephbul!
Ghantoos
I wanted to setup some VMs using kvm (i had the same problem using xen). The solution a chose to connect my VMs to the internet was to do it through bridging.
My only problem is that my eth0 (main and only ethernet card is connected straight to the Internet. So bridging loses its meaning because I could not choose new IP addresses for my virtual boxes.
The solution: creating a dummy network interface!
With this scenario, i’ll have all my dumUs bridged to the dummy interface (dummy0) and the bridge (br0) NATed through eth0. I hope I’m clear enough. : )
Here is how my /etc/network/interfaces file looks like:
Continue reading “kvm/qemu bridging with dummy network card”
Here is a second howto about the PSP handler of mod_python.
Hope this is useful!
http://ghantoos.org/index.php/howto-apache2-mod_python/#mod_python.psp
Cheers,
Ghantoos