Archive for May, 2011
I need a rest


It looks like I really need a rest.
I've written this code ..

1
decision = speech_count > noise_count and True or False

..and then spent 5 minutes trying to catch, what the heck was wrong with it? :)

Comments [0]
Inside Python: understanding os.listdir()


If you've been using python for a long time, then you surely know that os.listdir() function returns an unsorted list of file names.

I didn't care much untill I faced a situation, in which the sorted-sequential processing of files was crucial, and I could not remember whether the previous file processing were done in sorted order. Well, luckily they were. But hey, this is a little bit annoying, isn't it? Why os.listdir() returns an unsorted list of files? Would you like to find out?

Comments [0]