GlueC Stuff!
Site Tool
Website tools. Right now it supports showing apache virtual host information for a given directory, restoring sites' permissions based on the root directories (unchowning, fixing a bad `chown`), and revering previous changes.
MineCraft Autorun,Autojump,Autosneak
This is autorun for MineCraft Beta (now 1.5_1!). I update it regularly with game updates, but I suggest you make a backup of your minecraft.jar before trying this in case we have different versions. Copy the contents of autorun.jar into %appdata%/.minecraft/bin/minecraft.jar. In-game, use 'e' to enable autorun, and 'w' to disable it. Pressing 'e' while already on auto will toggle auto-jumping. The right shift key will toggle autosneak.
SDL Threads Memory Leak Patch
Multithreaded apps using current versions of SDL 1.2 (haven't checked 1.3) show a 40B leak in valgrind. It seems the cleanup code for the 'thread_lock' mutex never gets called. Valgrind sees the creation of the mutex here:
==4491== 40 bytes in 1 blocks are still reachable in loss record 1 of 1 ==4491== at 0x4C24A71: calloc (in /usr/lib64/valgrind/vgpreload_memcheck-amd64-linux.so) ==4491== by 0x4E6FE3C: SDL_CreateMutex (in /usr/lib64/libSDL-1.2.so.0.11.3) ==4491== by 0x4E3D1D8: SDL_ThreadsInit (in /usr/lib64/libSDL-1.2.so.0.11.3) ==4491== by 0x4E3D32C: SDL_CreateThread (in /usr/lib64/libSDL-1.2.so.0.11.3) ==4491== by 0x400773: main (in /home/user/jgo/src/a.out)