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)
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)
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)