5 private links
coude
Faire une vidéo à partir de données matplotlib
python setup.py develop
Comment manipuler des images en niveau de gris 16bits, avec python.
(c'est la merde ...)
Tiens marrant, il y a un module python en natif pour simplifier les fractions.
In [24]: from fractions import Fraction
In [27]: Fraction(2, 8)
Out[27]: Fraction(1, 4)
In [28]: print Fraction(2, 8)
1/4
In [29]: print str(int(Fraction(2, 8)))
0
In [30]: print str(float(Fraction(2, 8)))
0.25
Faire tourner cocotb avec un python 32bits quand on est sur une archi 64bits.
Comment utiliser des svg avec Sphinx et pouvoir exporter en PDF avec latexpdf
toujours utile. Perso je fait même comme ça :
sudo python setup.py install --record files.txt
sudo cat files.txt | sudo xargs rm -rf
!
pense bète.
python -m SimpleHTTPServer 8000