Monthly Archives: May 2007

Conversation pieces I need

So another thing I decide that the world needs: A CAT scan of my head, used to construct a 3D model of my skull. Said model is fed to a 3D printer. Repeat, only this time use an MRI scan … Continue reading

Posted in The wonderful world of science, Things I haven't done yet | Leave a comment

Integrasjon på tvers av språk og plattformar

int main (int argc, char **argv) { void * handle; void * cli; handle = dlopen(“./brugs.so”, RTLD_LAZY); if (handle) { *(void **) (&cli) = dlsym(handle, “CLI”); *cli(); dlclose(handle); } return 0; } Varför gör dom på detta viset?

Posted in Gah!, The wonderful world of free software | 2 Comments