the Unix Philosophy in 9 points
1 month(s) ago uolter comments
how do not agree more?
- Small is beautiful.
- Make each program do one thing well.
- Build a prototype as soon as possible.
- Choose portability over efficiency.
- Store data in flat text files.
- Use software leverage to your advantage.
- Use shell scripts to increase leverage and portability.
- Avoid captive user interfaces.
- Make every program a filter.
hacking the future
2 month(s) ago uolter comments
Programmer or stuntman?
Very nice talk.
Generate pyc and pyo files
4 month(s) ago uolter comments
#python tip:To generate pyc and pyo files for the py files in a directory, run: python -m compileall *pyandpython -Om compileall *py
— raymondh (@raymondh) January 21, 2013
Statement of Accomplishment
4 month(s) ago uolter comments
python coders using vi
4 month(s) ago uolter comments
thanks Fabio for the hint +1
For python coders using vi::set tabstop=4:set shiftwidth=4:set expandtab
— Fabio Pani (@fabiux) December 28, 2012
