Page 1 of 1
Programs to practice coding
Posted: Mon Feb 16, 2015 1:19 pm
by Sosolol261
I was bored and didn't know what to code. The current project i am working on, is quite big so I don't want to work on it EVERYtime sooo...
I am searching for REALLY simple but challenging programs.
If you know what I mean..
Thanks for your help
Re: Programs to practice coding
Posted: Mon Feb 16, 2015 1:48 pm
by nfey
Check out
www.codewars.com. It's an interactive problem-solving platform. You choose the programming language and problem and then use the web-based application to write/test your code. You can find problems ranging from the kind that are solved with short one liners to others that need specific algorithms implemented.
It doesn't offer Lua support atm but you can select it as a "please implement this" vote of confidence.
Re: Programs to practice coding
Posted: Mon Feb 16, 2015 2:09 pm
by Sosolol261
nfey wrote:Check out
http://www.codewars.com. It's an interactive problem-solving platform. You choose the programming language and problem and then use the web-based application to write/test your code. You can find problems ranging from the kind that are solved with short one liners to others that need specific algorithms implemented.
It doesn't offer Lua support atm but you can select it as a "please implement this" vote of confidence.
I was rather looking for little projects to work on nut thank you for your advice!!!
Re: Programs to practice coding
Posted: Mon Feb 16, 2015 2:32 pm
by Duster
Some are much more difficult than others, but this is a good list.
https://love2d.org/imgmirrur/a3IJgmu.png
Re: Programs to practice coding
Posted: Mon Feb 16, 2015 5:32 pm
by rmcode
Sosolol261 wrote:I am searching for REALLY simple but challenging programs.
I'm not quite sure how something can be REALLY simple and challenging at the same time, but this page has some fairly easy examples (using Processing):
http://funprogramming.org/
Re: Programs to practice coding
Posted: Tue Feb 17, 2015 2:01 am
by Evine
I'm having fun with some instant self loading code. So much fun.
Very minimal example.
Code: Select all
--Put this in main.lua
function love.update(dt)
main = love.filesystem.load("main.lua")
main()
end
Re: Programs to practice coding
Posted: Tue Feb 17, 2015 8:26 am
by Muris
I think something smart would be like thinking what kind of subsystem your project needs, then choosing a small project out of it. Like lets say I would need to program some AI, I could create another project just to fiddle around how AI should work, and later on when getting back to main project just derivate the one I made to "take time off" from main project.
Also if possible, seeing how your ai would play the game for example, assuming that youre making a game, you might even realise some interesting aspects about your own game, that you never actually thought before.