Apocalyptica – Hall of the Mountain King

A Killer score . Apocalyptica is awesomely hauntingly great. I’ve liked them since I heard their melodic instrumental version of “Nothing Else Matters” by Metallica. This one is “Hall of the Mountain King” score at its best. This score was…

Maya on Linux Rants

One thing I really like about working on Maya in windows. All the UI’s(Tools, option Boxes, etc) open are native(attached) to the main Maya window (separable). On Linux every damn UI sits on the taskbar cluttering the whole thing (I…

Round-off decimal points in Python

Nice trick i found in python. Lets say you want to round off(truncate) huge float numbers. e.g. 8.574748485950The command used is “round” x = 5.75845848484r = round (x,5) # 5 is the number of digits you want to keep after…