Search found 227 matches
- Wed Nov 18, 2015 8:51 am
- Forum: Support and Development
- Topic: Love2D still seems to be the easiest and simplest 2d engine
- Replies: 1
- Views: 2994
Love2D still seems to be the easiest and simplest 2d engine
Hello all. I have been trying to move to HTML5 canvas to do game programming, because typically, I only need to do a quick test that may include only a square and/or some physics. The question is: If I'm trying to move away from this engine (mainly because I want to get into web game development), w...
Re: IDE4 LÖVE
I am creating a LÖVE IDE. It's a noble goal and a long process. I've posted something similar more than four years ago after doing my research on available LÖVE IDEs: https://love2d.org/forums/viewtopic.php?f=3&t=9762&p=59987. I'm still working on it (http://studio.zerobrane.com) and my tod...
IDE4 LÖVE
I know this has been said 39248392 times, and will probably be said another 591294 times, but... I am creating a LÖVE IDE. This is different to the other ones though. It will be very thorough and GUI orientated. It will work. Hopefully. See, I've just started using C#. I've been programming mad with...
- Wed Jul 15, 2015 3:09 am
- Forum: General
- Topic: Decimal to Binary function I made
- Replies: 20
- Views: 9416
Re: Decimal to Binary function I made
Could shorten a bit. function toBinary( int ) assert( type( int ) == 'number', 'Error: Non-number input to toBinary!' ) local current = math.floor( int ) local result = '' while( current ~= 0 ) do result = result..current % 2 current = math.floor( current / 2) end return ( '%08s' ):format( string.r...
- Wed Jul 01, 2015 8:20 am
- Forum: General
- Topic: Decimal to Binary function I made
- Replies: 20
- Views: 9416
Re: Decimal to Binary function I made
Sweet thanks!Roland_Yonaba wrote:Small addendum, if you want to pad it to 8 characters, you can change the return statement to this.
That said, nice.Code: Select all
return ('%08s'):format(string.reverse(result))
- Fri Jun 26, 2015 4:17 am
- Forum: General
- Topic: Music Thread
- Replies: 2
- Views: 2483
Music Thread
What kind of music do you guys like? Hit up with what you listen to while you code, your favourite genres, bands, artists, whatever
- Tue Jun 09, 2015 9:20 am
- Forum: General
- Topic: Joke/pun thread
- Replies: 40
- Views: 36294
Re: Joke/pun thread
Oh my god jjjjmafiae wrote:Why can't lua devs sit down ?
BECAUSE THEY ONLY HAVE TABLES! XD
yes
- Wed Feb 25, 2015 4:50 am
- Forum: General
- Topic: Joke/pun thread
- Replies: 40
- Views: 36294
- Tue Jan 27, 2015 9:05 am
- Forum: General
- Topic: Joke/pun thread
- Replies: 40
- Views: 36294
Re: Joke/pun thread
Applies to haskell especiallyRoland_Yonaba wrote:I've been told about a new metric to assess code quality : the WTF/minute.
- Sun Jan 25, 2015 5:05 am
- Forum: General
- Topic: Joke/pun thread
- Replies: 40
- Views: 36294
Re: Joke/pun thread
Here's a UDP joke, though I don't care if you get it. I have a TCP joke. Would you like to hear it? > Yes, I would like to hear the TCP joke. Ok, I am now going to tell you the TCP joke. > Okay, I will listen to the TCP joke I have a TCP joke. Would you like to hear it? > Yes, I would like to hear ...