Archivo de la categoría: python
Python y programación funcional
La programación funcional es uno de los paradigmas que más me interesa dentro de los conocidos, me he divertido con lenguajes funcionales como Haskell, Erlang y un poquito de LISP. Pero dado que mi lenguaje preferido es Python, y además … Sigue leyendo
Archivado bajo programacion funcional, python
Random MD5 hash in python
I’ve been working generating MD5 hashes. I wrote a python module called RandomMD5: import hashlib import random def new(): m = hashlib.md5() m.update(str(random.random())) return m.hexdigest() This module generate a new md5 hash randomically, it’s to useful for any kind of … Sigue leyendo
Archivado bajo cryptography, hash, md5, python
Text Processing in Python by David Mertz
Looking in the famous IBM developerWorks Section, I found some articles, called “Charming in Python” by David Mertz. Searching in google for the author, I found his web http://gnosis.cx . It’s incredible that I don’t know anything about it, and … Sigue leyendo
Archivado bajo automatas, python, text processing
python to exe? Excelente!!
En mi trabajo tengo la necesidad de usar Windows, por ende me arme un compendio de herramientas las cuales utilizó en Linux. Entre ellas están Python, crypt de unix, bzip2 for windows, grep for windows (o wingrep), etc.Por lo general … Sigue leyendo
Archivado bajo lenguajes, productividad, python