Archive for February, 2012


Some days ago I was writing a DLL’s wrapper in ctypes and I came across of this typedef in the header file:

typedef struct _FILEHandle *FILEHandle;

To translate this definition into ctypes is pretty straight-forward (if you already know the solution :-) ).
View full article »

For my next project I need to serialise a list of classes using the technology which fits those requirements:

  • ninimum code to serialise/unserialise
  • minmum file size when compressed

As you can see the speed for read/write the serialised data is not a requirement but the size of the compressed file is the most important prerequisite.

View full article »