Archive

Archive for July, 2012

NoSQL – Who should use this?

Jul 27th, 2012

You may have heard about NoSQL a lot from past few years. Do you have a doubt about whether I should use it or not!
Here are few points about NoSQL related databases:
NoSQL does not provide sql for query language. Data is not necessarily represented as fixed schema. Data… (Continue)

Coding Standards for CSS, HTML, JavaScript, Python, C and others by Google

Jul 21st, 2012

Google has made coding standards and style guide for CSS, HTML, JavaScript, Python, C++ and Objective C. If you work on any of these then you may like to have a look at those page. As usual the guidelines writing is simple yet useful. For CSS and HTML there are… (Continue)

Few Newer JavaScript Functions

Jul 10th, 2012

Here are few newer JavaScript functions: querySelector, querySelectorAll, matchesSelector, and classList.
querySelector is for selecting DOM based on CSS selector. It is native to JS. So, it is faster than earlier methods libraries (jQuery) used to give us. Details here.
Now, libraries will start adopting it as first choice instead… (Continue)