Other articles


  1. Comparing products

    Published: Tue 27 February 2018
    By Surya

    In Rant.

    Comparing two or more products and choosing the right one for the task.

    • What problem are they trying to solve.
    • How many people are using them.
    • Who made it and what is their track record.
    • How many contributors/and release cycle till date.
    • Be wary of marketing on the item …
    read more
  2. How to improve Javascript coding

    Advantages

    1. Modern browsers are way faster to process JS.
    2. Trend – clients are doing what servers used to do
    3. Server is used only to generate data like json
    4. Client is used only to generate/render html
    5. Speed/efficient (no redundant data transfer between server client)

    Disadvantage

    1. No compile time error checking …
    read more
  3. Using and working with IndexedDB

    Published: Thu 17 May 2012
    By Surya

    In Rant.

    Below is a sample example code for IndexedDB

    //nsr is namespace
    (function (nsr, $, undefined) {
        //private variables
        nsr.myTvQ.indexedDB = nsr.myTvQ.indexedDB || {};
        nsr.myTvQ.indexedDB.db = null;
        nsr.myTvQ.indexedDB.version = "1.0";
    
        //saving webkitIndexedDB in global namespace
        if ('webkitIndexedDB' in window) {
            window.indexedDB = window.webkitIndexedDB;
            window.IDBTransaction = window.webkitIDBTransaction …
    read more

Page 1 / 3 »

links

social