Follow me
-
Recent Posts
calendar
Recent Comments
- Stan on python argparse issues with the help argument (TypeError: %o format: a number is required, not dict)
- Cormac on Pandas : how to compare dataframe with None
- LP on AWK: the substr command to select a substring
- jrab on python argparse issues with the help argument (TypeError: %o format: a number is required, not dict)
- How to disable SSL verification for urlretrieve? – Peter's blog on python: certificate verified failed
Archives
Categories
Meta
Monthly Archives: March 2012
ipython
If you start to use python, just install ipython to ease your life by having a more interactive python shell. http://ipython.org/ A nice feature in the ability to embed matplotlib plot. Start with this option: ipython qtconsole -pylab inlineipython qtconsole … Continue reading
Posted in Python
2 Comments
linux: How do I know the number of memory cards
The dmidecode command dumps lots of information about your system. The option memory gives you details about your memory card. In particular how many are installed (e.g., 2x2Gb or 1x 4Gb) sudo dmidecode -t memorysudo dmidecode -t memory
Posted in Linux
Leave a comment
VIM: switch all text to lower case
You can change the case of a character by typing ~ , however, if you want to change all text to the same case (let us say lower case here), then you should enter the visual mode. Go to the … Continue reading
How to embedded data files in python using setuptools
Within a Python package, it is useful to provide data files. These files are not python modules so you do not want to place same together with your module. Let us put them in a directory share/data. Suppose you have … Continue reading