Front End JavaScript Timers By Nikhilesh It is well known fact that JavaScript by nature is single-threaded which says that only one part of JavaScript code executes at a time. And interesting thing about timers is, they gets executed irrespective of other threads that are already...
Javascript Introduction to jQuery By Krupal What is jQuery? - Before, We go further let me clear the very first doubt that jQuery is not a language. jQuery is a library written on top of the JavaScript. So it is a JavaScript library. It makes web development very easy. The...
ETL Collection Part-1 : Java Arrays By Nikhilesh Arrays are objects which store multiple variables of the same type, it is a collection of similar type of elements that have contiguous memory location. The length of an array is established when the array is created. After creation, its...
Java Ways to Execute Python Code From Java By Nikhilesh There are many ways to execute Python code from with in Java. In case if your project has requirement to execute Python code from Java, here are few code samples that I have collected from Internet. Make data easy with...
Databases SQL with Groovy By Somen Sarkar SQL with Groovy Groovy provides a handy way to handle jdbc when compared to java. Playing with database becomes very easy with groovy. To use SQL scripting with groovy we have to use the groovy.sql.Sql package. Make data easy with...
Javascript Service in Linux By Somen Sarkar Service in Linux The service are set of programs that run as background process, so it is ready to use anytime by the users. The service gets started when the machine is rebooted automatically. How to create a Service? The...
Business Intelligence Input Control Labels Collapsible in Jasper Server By Nikhilesh How to Make Input Control Labels Collapsible in Jasper Server Using Optional JSP We need to create our own JSP Example : lets say Optional.jsp is our jsp which should be kept under location in your jasperserver jasperreports-server-6.2.0\apache-tomcat\webapps\jasperserverpro\WEBINF\jsp\modules\inputControls In this...
Front End Primitive Wrapper Types in JS By Nikhilesh In this post, I'm going to focus on basic concepts of JavaScript. So we are going to learn the concept of primitive wrapper types in JavaScript which is confusing to most. So, there are three primitive wrapper types and they...
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...
Helical Insight Document Fragments By Nikhilesh The one of the most underrated feature of JavaScript is DocumentFragment. DocumentFragment is a DOM Node-like parent which has node-like properties/methods and is not a part of the actual DOM tree. It can be used for better performance. A DocumentFragment can...
Business Intelligence How to Remove Home Page and Filters Options in Jasper Server Pro By Nikhilesh How to Remove Some Items in Home Page & Some Filters Options Under View List Menu in Jasper Server- Pro-6.2 With Role-Based Security Make data easy with Helical Insight. Helical Insight is the world's best open source business intelligence tool....
Javascript Test Your JavaScript With Jasmine By Krupal Testing is the best way to assure high quality of software. There are many testing tools and one is Jasmine to test our JavaScript. What is testing? Testing is all about verifying that your code does what it is expected...