Front End HTML/CSS Coding Practices By Nikhilesh HTML/CSS Coding Practices A lot of coding best practices emphasize keeping code lean and well organized. The general practices within HTML are no different. The goal is to write well-structured and standards-compliant markup. The guidelines described here provide a brief...
Business Intelligence Arrays in JavaScript By Nikhilesh Here is the question. Suppose you are given two arrays as key, value pairs and asked you to associate them as Object with the same, who would you do that? So, here is the solution for it. function associateArrays(keys, values)...
Data Visualization Data Visualization using C3 JavaScript Library By admin This library is used to create a dynamic and interactive data visualizations. C3 is a library build on top of D3. C3 is d3 based reusable chart library and most important advantage of using c3 is that you don't have to...
Front End Why Browser Detection is Bad ? By Nikhilesh It is against the spirit of web standards The whole reason that web standards exist is so that we don't have to write specific code for specific environments. We should write code that adheres establishment of standards and software in...
Front End Arrays and Objects (in OOP) By Nikhilesh In this post, we first discuss Arrays in a loop and then we move on to Objects in Object Oriented JavaScript Programming. So, there is an array as: var input = ["js", "css"]; var config = { "build" : ["js",...
Front End Closures in JavaScript By Nikhilesh In this post, we mainly focus on Closures in a loop. Sometimes it will be hard-to-spot bugs when it comes to Closures because everything looks great on the surface. For example, let us consider this function: function F() { var...
Front End Importance of Bug Life Cycle in Software Testing By K Ramakrishna Importance of Bug Life Cycle in Software Testing Make data easy with Helical Insight. Helical Insight is the world's best open source business intelligence tool. Introduction: Mistakes lead to the introduction of defects (also called bugs). like all human beings...
Front End How to Use System Commands in LUA By Nikhilesh How to use system commands in LUA Lets assume we have some requirement to call Unix-commands on the click of a button by using LUA . To achieve this follow these steps : 1. First check your Lua page is...
Front End Drag and Drop in React DND By Nikhilesh DRAG AND DROP IN REACT [caption id="attachment_5391" align="aligncenter" width="300"] React DND[/caption] This is an example of implementing drag and drop functionality using React. This is the first example where we’ll use an external library, in this case, React DnD. Components...
Front End jQuery tips By Nikhilesh We often write traditional code by not knowing limitations and performance issues. In this post, I'm going to discuss few concepts of jQuery with which you can increase performance of those methods. It is always preferable not to interact with...
Front End Getting Started with gulp By Nikhilesh Getting Started with gulp While working on a project, one is bound to have a bunch of repetitive tasks such as testing, minification, compiling less/sass/templates, etc., because we are humans, we are bound to make mistakes at one point or...
Front End What is Node.js By Nikhilesh What is Node.js? A lot of the confusion for newcomers to Node is misunderstanding exactly what it is. The description on nodejs.org definitely doesn't help. An important thing to realize is that Node is not a webserver. By itself it doesn't do...