As a Java developer there are many instances where you find yourself wanting to separate running unit and integration tests. Here is a simple solution to that problem. The following is a more clear writeup of what is given by JUnit Team. Step1: Create a JUnit category. 1 2 3 package com.rushis.test; public interface IntegrationTest […]

Read More →

Many a time developers need random user data to quickly churn out a proof of concept. The following are great services which provide random user data: Fill Text: Personally this is my favorite for the fact that it has an awesome and extensive RESTful api that pretty much caters to most of your needs. RandomUser: […]

Read More →

Google Web Designer is a free professional-quality design tool that empowers creative professionals to develop cutting-edge HTML5 content that can run on any device. As an added benefit to ad designers, Google Web Designer is seamlessly integrated with DoubleClick Studio and Mobile Apps Reserve, greatly simplifying the process of building HTML5 creative that can be […]

Read More →

Java Architecture for XML Binding (JAXB) allows Java developers to map Java classes to XML representations. JAXB provides two main features: the ability to marshal Java objects into XML and, to unmarshal XML back into Java objects. Let’s quickly dive into an example: Here is the xml file <?xml version="1.0"?> <catalog> <book id="bk101"> <author>Gambardella, Matthew</author> […]

Read More →

Emmet (formerly Zen Coding) is a web-developer’s toolkit that can greatly improve your HTML & CSS workflow. Last year my blogpost gives insight on Zen Coding with Notepad++. Things have changed since last year and for better. I haved ditched Notepad++ for SublimeText2 and ZenCoding project is changed to Emmet project. Emmet is developed and […]

Read More →