Feed on
Posts
Comments

Archive for April, 2008

Gdb trick: the poor man loop

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 »

Got published

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 »

Really back to business

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 »