Posted in Tips, tagged gdb on April 17, 2008 | 4 Comments »
Suppose you are in the middle of a gdb session, and need to print the content of an array or a class implementing operator[]. Here is a simple way to do that which I just discovered:
(gdb) set $pos=0
(gdb) print array[$pos++]
content of array[0]
(gdb)
content of array[1]
(gdb)
content of array[2]
…
The blank “(gdb)” lines mean i just pressed “return”. In [...]
Read Full Post »
Posted in KDE on April 15, 2008 | 4 Comments »
I wrote a few KDE tips for a new French Linux magazine: Linux Pratique Essentiel. It’s the first time I write for a magazine, thanks to Diamond Editions for asking me to collaborate to this!
I bought the magazine and it’s quite good. It does a good job at presenting Linux software in a way “non-geek” [...]
Read Full Post »
Posted in Misc., tagged job on April 3, 2008 | 3 Comments »
As a follow up to a previous post, I am happy to announce I now have a job again! I start working for Open Wide on next Monday, as a GUI developer in the OS4I (Open Source For Industries) unit.
It feels good to get back to work, even if I didn’t have too much problem [...]
Read Full Post »