1
vote
7answers
420 views
How can I convert types in C++ ?
I'm using two different libraries in my project, and both of them supply a basic rectangle struct. The problem with this is that there seems to be no way to insert a conversion between the types, s …
10
votes
How do you reverse a string in place in C or C++?
Evil C:
#include <stdio.h>
void strrev(char *p)
{
char *q = p;
while(q && *q) ++q;
for(--q; p < q; ++p, --q)
*p = *p ^ *q,
*q = *p ^ *q,
*p = *p …
2
votes
How to store a hash table in a file?
Ditch the pointers for indices.
This is a bit similar to constructing an on-disk DAWG, which I did a while back. What made t …
6
votes
How to write an application for the system tray in Linux
python-eggtrayicon
here's the example that comes with the debian package python-eggtrayicon in debian/testing...
#!/usr/bin/python
import pygtk
pygtk.require( …
11
votes
Best C++ Debugger For Linux
Data Display Debugger
It's a frontend for gdb, I suppose gdb is usable without it, but graphing those pointer swamps …
