Miscellaneous XmlSlurper in Groovy for Handling XML related operations By Somen Sarkar XmlSlurper in Groovy This class belongs to the package groovy.util.XmlSlurper. The XmlSlurper is very useful in groovy to handle XML related operations The constructor XmlSlurper() can be used to create a very loose (non-validating and namespace-aware) instance. XmlSlurper parsers The parse...
Miscellaneous Top 10 functions in _ underscore By Somen Sarkar Here is list of interesting functions available in underscorejs reject: This function returns the values in list without the elements that matches the condition. contains: This function returns true if the value is present in the list. ...
Miscellaneous Grails By Somen Sarkar What is grails? According to grail documentation Grails is a full stack framework and attempts to solve as many pieces of the web development puzzle through the core technology. What are the built-in features of Grails? Data management: It is...
Miscellaneous HttpClient By Somen Sarkar What is HttpClient? Any program or software that can make call to any url or webapplication using http proptocol is HttpClient. What are the dependencies of HttpClient? 1. commons-codec jar 1.2 2. commons-logging jar 1.0.4 3. junit What are the steps...
Miscellaneous Log File Using System.out By Nikhilesh Log File using system.out If you want your System.out.print() output to be logged in the file rather than console, then that could also be possible by little trick. Before we start, System.out.print() :: System - Java Main Class :: out -...
Miscellaneous Using SSH on Windows By Nikhilesh Using SSH on windows is not possible natively like *NIX systems. The most popular way of achieving this is by using a third party client known as PuTTY. But there is an alternate way of using SSH via Powershell/CMD. For...
Miscellaneous Cancelling Queries Using Jdbc API By Nikhilesh Cancelling long running queries using Jdbc API In this blog, I will share my experimentation with query cancellation timer. The objective is to cancel those queries which take a lot of time to execute. Make data easy with Helical Insight....
Miscellaneous CSS Box Model By admin CSS Box Model :- Cascading Style Sheets or CSS are used to design the semantics of HTML elements which are displayed on a web page. The CSS is used to set almost all visual properties like heigh, width, color, background,...
Miscellaneous Foreign Data Wrapper By Nikhilesh FOREIGN DATA WRAPPER IN POSTGRE SQL FDWs allow remote access to tables or queries from various external third-party databases or file structures. It allow access from application to data that is in different database format,in a non relational...
Big Data JSTL SQL Tag Lib By Somen Sarkar The <sql:> tag lib in JSTL The sql tag lib helps to develop a simple jsp database application. This taglib comes in handy with dataSoursetDataSource, query, transaction and update tags The tag lib can be used by putting the following...
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...
Helical Insight Introduction to Groovy By Somen Sarkar Groovy Language Groovy can run on JVM Groovy scripts can be executed using groovy jar file. Annotations are supported in groovy. Groovy installation. Binary download link http://www.groovy-lang.org/download.html The binary can be run from command prompt Set GROOVY_HOME, GROOVY_HOME\bin variable as...