Eclipse is my primary IDE for WordPress Plugin development. Some time back I've written an article on how to Setup your WordPress Plugin into Eclipse? In other words: Eclipse and WordPress Plugin SVN …
How to Create a .war file using Eclipse Maven Plugin? Apache ‘maven-war-plugin’ usage
Maven is pretty amazing, isn't it? Well - for me at least I love using Maven in my daily Java Development practice. Maven is nothing but a plugin execution framework; all work is done by …
How to Modify / Customize Genesis Framework Breadcrumbs for your WordPress Blog?
Are you aware of Breadcrumbs? If you haven’t heard of breadcrumbs, it's like a navigation on your site where it shows the hierarchy of the content you are looking at. For instance, a post will display …
New Features in WordPress 4.1 and Screenshots
WordPress 4.1 is around the corner. Beta 1 is already out since last week and I'm hoping to have WordPress 4.1 final version available by early December. I've just downloaded BETA-1 version today …
Read Article about New Features in WordPress 4.1 and Screenshots →
Getting ‘java.net.UnknownHostException: LAPTOP-23876346: nodename nor servname provided, or not known’ Error on MAC OS X? Update Your /private/etc/hosts File
Recently while running Java Program on my Mac OS X, I noticed below error in Eclipse console. java.net.UnknownHostException: LAPTOP-23876346: LAPTOP-23876346: nodename nor servname provided, or not …
Complete End to End Java Tutorial with Singleton Object Employee, Crunchify Java POJO and Detailed TestCase
In this Java Tutorial we will go over all detailed steps required for you to use Singleton pattern in your Enterprise Project. We use Singleton object to push required data at runtime and we use the …
How to Create Singleton QUEUE Global Object – FIFO (First in First Out) in Java?
What if you want to implement your own Queue class in Java? The Queue module provides a FIFO implementation suitable for multi-threaded programming. It can be used to pass messages or other data …
How to fix “org.eclipse.jst.ws.util.JspUtils cannot be resolved to a type” Error in Eclipse?
While creating sample WSDL in Eclipse and Generating Java Client I faced below issue. Here is a tutorial: https://crunchify.com/create-sample-wsdl-in-eclipse-and-generate-client/ This might …
What is uptime in Linux & How to Parse Result in Java using Regular Expression (RegEx)?
What is uptime in Linux? Sometimes you have to get load averages from uptime result via Java Program to perform certain operations. Like nuke, restart app, etc based on high load average. I'm …