Monthly Archives: September 2009
When Good Customers Go Bad
class Customer; class CustomerEx; // Added 20.03.2006 class CustomerEx2; // Added 05.10.2006 class CustomerEx2B; // Added 13.07.2008
How to Find and Remove Folders Recursively in Linux/Unix Because I Always Forget This
# Recursively search for folders called .svn and delete them (Even if not empty) find . -name .svn -type d -print | xargs rm -rf # Recursively search for files called *~ (gedit creates these for temporarily saving to) … Continue reading
Blender Export OBJ Python Script
First of all I’d like to state that I’m definitely a Blender n00b and I have never touched Python in my life. In my game engine I basically have this sort of layout: sphere/ sphere.obj sphere.mat sphere.png The .obj points … Continue reading