Malicious enjoyment derived from observing someone else’s misfortune
 

Tag Archives: lua

Compiling Stepmania in Ubuntu Feisty

OK – so I love DDR. I was trying to compile Stepmania this morning, and found that it has some issues. I found the answer to the first issue in this post, and found the answer to the second in this one. Apparently, there are some patches that have gone into 4.0 CVS that haven’t been put into the old source. Procedure Get the Stepmania Source and extract it somewhere. Now we need to get stuff to compile it: sudo [...]

Learning Lua

I’m learning Lua! Here’s fibonacci: a,b=0,1 do while true do io.write(b) a,b = b, b+a if a>500 then io.write(“\n”); break end io.write(“, “) end Wow, this is kinda fun. I like Lua.