DISCOVER
X

Categories for

Cordova Installation in Windows 8 Part 1

August 28, 2014 10:52 pm Leave your thoughts

Contributed by Arthur K In my pursuit to further my experiences in the software development world, I have dived into the interesting world of Cordova. The concept is quite simple, build applications using JavaScript and use Cordova to convert them into native applications in various mobile platform. This means that as... View Article


A Simplistic Explanation to EmberData Polymorphism

August 18, 2014 10:37 pm Leave your thoughts

I have been implementing Ember data for one of my projects and one of the most interesting handy features that ember data has is polymorphic models. As the name suggests, this is ember data’s implementation of polymorphism. The first time I use ember data however, requires me spending a lot of... View Article


Sticky Sidebar in 10 Minutes

July 24, 2013 7:33 am Leave your thoughts

There had been a couple occasions where I had to create a sidebar on a website that will stay visible no matter how much the user scrolled. This is pretty easy of course if you just want to stick the sidebar to the absolute top using fixed positioning, but of... View Article


Back to Basic: Doubly Linked List with JavaScript

March 5, 2013 7:38 am Leave your thoughts

This is a first post of our series “back to basic”. We understand that there are always people starting out to be developers such as first year university students or just experienced developers wanting to revisit the basic. The aim of this series is exactly that, revisiting programming concepts using... View Article


Counting Associative Array Length in JavaScript

February 26, 2013 1:47 pm Leave your thoughts

Before we look at the code snippets, yes there is no such thing as associative array in JavaScript, they are all objects. But really, a lot of people search for “how do we  get JavaScript associative array length?” so I might as well publish this short post. So say we have an... View Article