Blender 2.47 to download!

Blender 2.47 is now on release quality, based on the SVN build… It’s mostly just bug fixes, but it’s still exciting.I have optimized builds from the trunk and the apricot branch uploaded at http://www.graphicall.org/ . Feel free to grab it. ^^
p.s. I have been going through the essential blender, which is a pretty good book.

Psychological perspectives on personalities?

I’m taking basic psychology class this session, and on this week we’re covering personality. Based on my book There are at least four theories of personalities, which includes The Big Five, The Freudian Theory, .
The Big Five/Five Factor Models (Reservation, Relaxation/handle stress well, Tendency to find fault, Nervousness, and Active imagination), is mainly useful for [...]

C++ Guide: Function Templates 1 – Creating generic function to print the value, type, and size of a passed parameter.

When we work with C++ functions, sometimes we want to create generic functions that can operate on several distinct data types. For example, a print function, we don’t need to create separate functions (function overloading) to output the passed data (which could range from integers to strings). Template is a wonderful feature that allows us [...]