November 8, 2011
Just a quick note to let you know that the design of this blog has been changed a bit. If you are using a wide screen monitor (> 1100 pixels), you would notice that the blog title has been moved towards the left, leaving more space for the post content. Floating the title left caused [...]
Read the full article →
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 →