August 25, 2009 by Riccardo Di Sipio
Try the elegant way, at last!
For instance, imagine that your programme has the following arguments:
./myprog -s /source/directory -d /dest/directory -c deep
Then, the script myprog should contain a piece of code like this:
if [ $# -eq 0 ] ; then
echo "Usage: $0 -s -d -c"
exit 1
fi
while [ $# -gt 1 ] ; do
case $1 in
-s) source_dir=$2 ; shift 2 ;;
-d) dest_dir=$2 ; shift 2 ;;
-c) copy_mode=$2 ; shift 2 ;;
*) shift 1 ;;
esac
done
Of course, this is only a hint. Just tailor the decoding according to your needs.
Tags: command line, decoding
Posted in Bash, Linux, MacOS, languages | Leave a Comment »
July 28, 2009 by chris
RPy is an interface that allows you to call R functions and handle R objects in Python.
R language
Tags: Python, R, RPy
Posted in Python, R | Leave a Comment »
July 22, 2009 by chris
We just came across a weird Python behaviour (of course only weird if you don’t know why). If you use mutable objects such as lists as the default parameter in a function declaration, you might end up with some unintented behaviour. Everytime the function modifies the object, the default value is in effect modified as well (e.g. appending to the list). This is also explained in the Python documentation:
Default parameter values are evaluated when the function definition is executed. This means that the expression is evaluated once, when the function is defined, and that that same “pre-computed” value is used for each call. This is especially important to understand when a default parameter is a mutable object, such as a list or a dictionary: if the function modifies the object (e.g. by appending an item to a list), the default value is in effect modified. This is generally not what was intended. A way around this is to use None as the default, and explicitly test for it in the body of the function, …
Find the whole thing here.
Tags: default parameters, lists, Python
Posted in Python | Leave a Comment »
July 21, 2009 by chris
Manual Reference Pages (including a list of functions that are not thread-safe)
Tutorial on pthreads
And if you wonder why you cannot create more than X threads on your system (for me this was always 382), this forum provides a solution.
Basically, the problem is that each thread created will occupy space for its stack. On my system, the default thread stack size is 8MB. Therefore, after 382, I simply run out of space.
Solution: Change the stack size to a smaller value, unless you really need 8MB.
pthread_attr_t tattr;
size_t size;
size = PTHREAD_STACK_MIN + WHAT_ELSE_YOU_NEED;
pthread_attr_init(&tattr);
pthread_attr_setstacksize(&tattr, size);
Another interesting page on pthreads is this.
Tags: C/C++, maximum thread number, pthreads, threads
Posted in C/C++ | Leave a Comment »
July 7, 2009 by Ettore
Here, they’re free and they look nice
Posted in Books, Literature, languages | Leave a Comment »
July 6, 2009 by chris
UNIX Network Programming Volume 1, Third Edition: The Sockets Networking API
by W. Richard Stevens; Bill Fenner; Andrew M. Rudoff
can be found online at safari books.
in addition:
just realised that it is not the complete version, just previews. sorry!
Posted in Books, Linux | Leave a Comment »
July 6, 2009 by chris
Posted in C/C++ | Leave a Comment »
March 31, 2009 by chris
Sorting all my mail the other day, I realised that Gmail still keeps a copy of every email in the “All Mail” folder. Only if the messages are moved to Gmail’s “Trash” folder, they are eventually deleted. This cannot be set in Thunderbird directly afaik. Here is what you have to do.
Posted in Thunderbird | Leave a Comment »