How to downgrade npm version?

How to downgrade npm version? Error:- Error Explanation :- My project which is made earlier, uses the older version of node but now i m cloning my…

Read More

How to Resolve Windows Installer Problem

Installation of a program means inserting that particular program in your computer so that it can be executed properly. Some of the software programs can be simply…

Read More

How to Examin History in Subversion (SVN)?

Examining History in Subversion Your Subversion repository is like a time machine. It keeps a record of every change ever committed and allows you to explore this…

Read More

How to Setup Configure Hudson Master Slave? – Complete Guide

The tasks can be scheduled to run on the same machine (Master), or on a different machine (Slave). A master is a installation of Hudson, that can…

Read More

How to put comment in Ant | Comments in Apache Ant

How to put comment in Ant | Comments in Apache Ant Method 1: <!– Comments are just as important in buildfiles, do not –> <!– avoid writing…

Read More

A sample Ant build script that builds a WAR file – Guide

A sample Ant build script that builds a WAR file <project name=”MyWebApplication” basedir=”..” default=”install”> <!– project-specific variables –> <property name=”jsp.dir.name” value=”myapp” /> <property name=”package.name” value=”${jsp.dir.name}.war” /> <property…

Read More

How to install subversion on Linux?

To install svn in linux and make it fully working , I found it really tough and it has taken my lots of time. I am thankful…

Read More

How we reduced build time from 8 hours to 1 hour ? – Complete Guide

Situation For one of our clients, Build is taking 8 hours and nightly build is failing frequently. Test case execution is consuming more time than the compilation….

Read More

HOWTO: Install e17 from SVN/source on Ubuntu

E17 is a lightweight window manager/bundle of libraries for Unix based operating systems. E17 is designed to be both elegant and fast – two goals it succeeds…

Read More

How to read XML file by using shell script ?

This was like the first time where I had to write something that will be able to read something out of a XML file using a shell…

Read More

How to configure and use SSH authentication system server CVS

How to configure and use SSH authentication system server CVS cvs (Concurrent Version System) is a very popular version control tool. Although its function as Perforce, Subversion…

Read More

Upgrading Continuum – Continuum Upgradation Guide

This document will help you upgrade Continuum from 1.2.x to 1.3.3 and above. When upgrading Continuum, it could have some database model changes. Usually these changes will…

Read More

How to Run/Deploy Java EE applications on Amazon EC2?

Running Java EE applications on Amazon EC2: deploying to 20 machines with no money down Computer hardware has traditionally been a scarce, expensive resource. In the early…

Read More

Running MSBuild 4.0 and MSBuild 3.5 on Continuous Integration

With Visual Studio 2010 RC released recently, we jumped on the release and began to code with VS2010.  One issue that popped up was that now all…

Read More

Issues Compiling VS2010 solutions (with web projects) from Nant | MSB4064 error

Recently I upgraded a project of mine (the Dimecasts code base) to use VisualStudio 2010.  In the process everything worked just fine from the IDE, but when…

Read More

Why and how to use Jetty in mission-critical production

This article is a summary of a seminar I had on the topic. If it seems like it’s a continuation of an existing discussion that’s because, to…

Read More

How to copy VSS project from one VSS database to another one without loosing history

If you have any of the following questions in your mind, then this article is the perfect destination for you. How to copy VSS project from one…

Read More

SSARC Utility & SSRESTOR Utility – Archive, Restore VSS Project – Guide

Question:  How to Archive VSS Project in Visual Source Safe (VSS)? How to Restore VSS Project in  Visual Source Safe (VSS)? What is SSARC Utility? What is…

Read More

How To Create a Unique SRCSAFE.INI File ?

1. Create a new SRCSAFE.INI file and place it in the desired location. 2. If you want include the default SRCSAFE.INI in the unique copy, add the…

Read More

ANT Builds and Subversion (SVN) | Ant integration with Subversion guide

As I have mentioned in a previous blog entry, I have come to love using ANT in my development environment. One of the things that I like…

Read More

How to Use SVN Tasks with ANT ?

This post is about using ANT to perform some of the most common source-control related tasks such as export, tagging, and branching. I am using ANT version…

Read More

How to access all Java system properties directly?

You could access all Java system properties directly via ${name}, e.g. ${user.name}, ${user.dir}, ${user.home}, … You could read environment properties and use them   <properties environment=”env”/>  …

Read More

How to use ant Script to Reset BuildNumber?

To use this code, you need to have the file build.number containging: major.number=1 minor.number=0 hotfix.number=0 revision.number=0 continuous.number=0 Then the following 3 targets:   <taskdef resource=”net/sf/antcontrib/antlib.xml”/> <taskdef name=”unset” classname=”ise.antelope.tasks.Unset”/>    …

Read More

Batch Program to Shutdown and restart the computer.

Batch Program to Shutdown and restart the computer.  Restart echo off D:\Temp\tmp\SHUTDOWN.EXE /L /R /Y /C pause   Shutdown echo offd:\tmp\SHUTDOWN.EXE /L /Y /C pause Rajesh KumarI’m a…

Read More