Thoughts about XML structure: elements vs. attributes
Posted on 18 May 2013 in Articles • Tagged with programming, XML • 3 min read
Posted on 18 May 2013 in Articles • Tagged with programming, XML • 3 min read
Posted on 28 August 2012 in Articles • Tagged with programming, projects, Python, CoffeeScript, Kaylee • 1 min read
I just returned from my summer vacation and can finally state: another summer is over. But wonderful summer it was! I finally graduated and got a Master's degree in computer science. I cycled a lot and upgraded my MTB skills. I read lot of fiction. And somewhere between work, sports reading and sleeping was Kaylee, a distributed and volunteer in-browser computing framework.
Posted on 29 December 2011 in Articles • Tagged with programming, C, JavaScript • 2 min read
The design of C made by Brian Kernighan and Dennis Ritchie has influenced the whole software and hardware industry. Sometimes you can feel the heritage of C even in modern high-level dynamic languages like Javascript.
Posted on 01 August 2011 in Articles • Tagged with programming, Python • 1 min read
Python's documentation states that one has to use the is operator to compare a variable to None. What happens when you avoid that advice?
Posted on 08 May 2011 in Articles • Tagged with programming, Linux, Python, C • 2 min read
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 until facing 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?
Posted on 08 August 2010 in Articles • Tagged with programming, Assembler • 1 min read
Posted on 24 April 2010 in Articles • Tagged with programming, Python • 5 min read
Sometimes, it's really hard to understand what happens inside a function or even a whole module of Python's Standard library. For example, the subprocess module contains a very tricky Popep class. I tried to use the the module to communicate with a MATLAB subprocess shell (e.g. send MATLAB commands to subprocess and read the output). Unfortunately I failed and was just able to pass a MATLAB script via command-line arguments. Yet, I learnt much about the Popen.communicate() method and I'd like to share this knowledge with you.
Posted on 10 March 2010 in Articles • Tagged with programming, Python • 3 min read
Python never stops surprising me. While doing my master IT project, I was looking for a way to add dynamic properties to classes (we're speaking of new-style classes of course!). I did a little research and here are the results...
Posted on 19 August 2009 in Articles • Tagged with programming, Python, Gnome • 4 min read
It's been a while since I wrote the first part of this guide. I'm happy to introduce you the second part of the tutorial. This part continues the story about applet-only techniques. Even if you're skilled in PyGTK, you are adviced to read this part.
Posted on 01 August 2009 in Articles • Tagged with programming, G.729, C, VAD • 3 min read
Sometimes the bugs in programs do not depend on a programmer. For example, when a programmer expects a certain result from a built-in function, that would be the last place to check for bugs. But sometimes weird stuff happens, and it also happened to me.