Search found 5 matches

by mikelovesrobots
Tue Aug 23, 2011 3:22 am
Forum: Games and Creations
Topic: [Ludum Dare 21] It's Right Behind You!
Replies: 6
Views: 3932

Re: [Ludum Dare 21] It's Right Behind You!

.love file does not work, can't find middleclass. Middleclass lies in a folder called middleclass, so I'm guessing you should do require 'middleclass/middleclass' this seems to apply to some other stuff there as well. Weird. What platform are you on? I've had about 2 dozen people play it today with...
by mikelovesrobots
Mon Aug 22, 2011 6:11 pm
Forum: Games and Creations
Topic: [Ludum Dare 21] It's Right Behind You!
Replies: 6
Views: 3932

[Ludum Dare 21] It's Right Behind You!

http://www.ludumdare.com/compo/wp-content/compo2/62148/5908-shot0.png It's Right Behind You! is a race to escape the lava chasing you down into the caverns. Can you make it to safety? Features destructible terrain, multiple difficulty levels, and fast-paced platforming action! This game was made in...
by mikelovesrobots
Wed Jun 22, 2011 9:48 pm
Forum: Libraries and Tools
Topic: Lua-enumerable is a library of table manipulation functions
Replies: 11
Views: 4742

Re: Lua-enumerable is a library of table manipulation functi

Interestingly, what you call "fold", I know as "reduce" (as per Python). In ruby (and smalltalk, I think) we call it inject. I like fold though. I just want to thank all you guys for your suggestions and code. I'm going to get these incorporated later tonight or tomorrow. You're...
by mikelovesrobots
Wed Jun 22, 2011 7:55 am
Forum: Libraries and Tools
Topic: Lua-enumerable is a library of table manipulation functions
Replies: 11
Views: 4742

Re: Lua-enumerable a port of useful table manipulation funct

kikito wrote:Hi there!

I like this. (I'm missing some automated tests though).
Yeah. It was missing tests. There is now.
by mikelovesrobots
Wed Jun 22, 2011 6:50 am
Forum: Libraries and Tools
Topic: Lua-enumerable is a library of table manipulation functions
Replies: 11
Views: 4742

Lua-enumerable is a library of table manipulation functions

https://github.com/mikelovesrobots/lua-enumerable lua-enumerable is a quick and dirty port of the ruby Enumerable library plus some extras. It's a native lua library. Installation is as simple as dropping it in your project and requiring it: require("lua-enumerable") Synopsis: local test =...