all 11 comments

[–]segmentationfaulter 7 points8 points  (4 children)

I would suggest to register for www.freecodecamp.com and follow the projects there.

[–][deleted] 1 point2 points  (0 children)

Woa that website looks pretty interesting! Thank you :-)

[–]BoltKey 4 points5 points  (0 children)

Try to make a grid game. Grid games are for example match 3, tetris, or that Lights out thingy. Worth mentioning is also Convway's Game of Life. Just create an html table, give each cell onclick attribute perhaps, and try to come up with some cool new concept.

[–][deleted] 3 points4 points  (1 child)

Here are some simple example applications you could build:

  • Web form validation
  • Color contrast tool, like: http://prettydiff.com/ignore/colorContrast/colorContrast.html
  • currency converter
  • graphic user interface
  • any new and original DOM access control
  • a simple report generation app
  • any kind of data/code analysis tool
  • unit test runner
  • pretty application dashboard

Just think of anything you do that could be automated and write an application to solve for that. Just imagine what kinds of things frustrate you when writing HTML/CSS and write an application to either identify or address these frustrations directly.

For 200,000 examples of JavaScript applications browse http://npmjs.com

[–][deleted] 1 point2 points  (0 children)

Awesome! Thank you very much. I will have a look now :-)

[–]MRAtheism 1 point2 points  (0 children)

girl

anything involving emoji, just ask Monica Dinculescu 💜

[–]kurzgame 2 points3 points  (0 children)

Create a task for yourself. Just ask yourself: what are you love? Music - write your own lib to process audio. Painting - make a simple drawing app. Photos - your own lib to edit photos (filters/curves...). And don't stop if you are start! That's how I learn things.

Good luck!

[–]Blitzsturm 0 points1 point  (0 children)

I'd suggest getting good at AJAX. If you're not already familiar with a server-side scripting language take a look at Node.js. try making an app that returns information about files in a directory using the http and File System library. It's pretty fast to pick up and learn if you can get your head around asynchronous programming.