November 2, 2011
Currently I’m rewriting my Timelinr application entirely using JavaScript, thus replacing PHP which is now generating the timeline. In my code, I have an Event object which looks like this: function Event(d1, d2, name) { this.start = d1; this.end = d2; this.name = name; } When the user adds an event to the timeline, I [...]
Read the full article →
October 30, 2011
Last Saturday, I was bored. So, thought of writing a game in JavaScript using HTML5 and CSS3 techniques. And thats how Rock Paper Scissors and Bombs came to life. It’s a simple game that is played in many parts of the world (though with different names). To play, you and the other player should choose a [...]
Read the full article →