Software systems depend on other components to work. These components can be internal or external, they are called as dependecies. With time everything has to change, hence inevitably the dependencies change. To make these dependencies(the modified ones) not break your system there should be a common notation which all parties must agree on. This way […]

Read More →

Stack Overflow is a question and answer site for professional and enthusiast programmers. A user asked the following question “If you could go back in time and tell yourself to read a specific book at the beginning of your career as a developer, which book would it be?” The answers to that question were varied […]

Read More →

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 →

Floyd’s triangle is a right-angled triangular array of natural numbers.It is defined by filling the rows of the triangle with consecutive numbers, starting with a 1 in the top left corner. The numbers along the left edge of the triangle are the lazy caterer’s sequence and the numbers along the right edge are the triangular […]

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 →