How to assign computer startup scripts?

1. Open the Group Policy snap-in. 2. In the console tree, click Scripts (Startup/Shutdown). – Where? policy name Policy > Computer Configuration > Windows Settings > Scripts…

Read More

Performance Optimization of Build Server | Performance Optimization Guide

Performance Optimization Checklist of Build Servers Build Infrastructure Level 1.  Do you really need to build all source code or only the part of code which has…

Read More

Versioning in Software Configuration Management | SCM Versioning Guide

Versioning in Software Configuration Management? Reference: This article has been take out from Book Called “The Build Master: Microsoft’s Software Configuration Management Best Practices” Why Worry About…

Read More

How to Select the Right Software version Control Product?

Original link: http://www.cmcrossroads.com/cm-articles/275-articles/14286-selecting-the-right-software-version-control-product Selecting the Right Software Version Control Product Written by Mike Feighner For many years, I worked loyally for the same company where my expertise…

Read More

Use of p4 duplicate command | P4 Command Guide

Use of p4 duplicate command Problem Area is – Is there any possibility to rename branch name? as directory rename is possible? Solution is – p4 duplicate…

Read More

How to Execute external commands by using perl?

There are many ways to execute external commands from Perl. The most commons are: system function exec function backticks (“) operator open function All of these methods…

Read More

Perforce Replication – What is Perforce Replication ?

Perforce Replication Replication is the duplication of server data from one Perforce Server to another Perforce Server, ideally in real time. You can use replication to: A…

Read More

Depot Migration between perforce servers with history and change list

There are many questions asked for the depot migration between server without losing any of the history  such as… Moving depots across servers Moving depots between servers…

Read More

How to Check File Attributes in Perl ? Perl File Attributes explained

Checking File Attributes in Perl I have been using perl for quite some time now. I have also been using the file handling logic in my scripts. However,…

Read More

Apache web server Installation Guide, know how to Install Apache web server on Windows 7?

After a quick detour to install Notepad++, I’m on my way to installing Magento. Before I can get into the meat of it, though, I do require…

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

How to run ant build in intellij? – IntelliJ/Ant integration Guide

IntelliJ/Ant integrationBy Alvin J. Alexander, devdaily.comThe fact that IntelliJ is off-the-shelf ready to work with Ant is a great, great feature. It’s also simple to configure and…

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

Simple Ant Example – clean, prepare, and compile tasks

Sample Ant clean, prepare, and compile tasks <target name=”clean”> <echo>=== CLEAN ===</echo> <delete failonerror=”false”> <fileset dir=”${dest.dir}” includes=”**/*”/> </delete> <delete dir=”${temp.dir}” /> </target> <target name=”prepare” depends=”clean”> <echo>=== PREPARE…

Read More

Website Typography

Below is a list with arrows. To use this style create a list in the following format: …. …. … Quisque ultrices etiam, class nec velit vestibulum…

Read More

Clover and Maven working with Distributed Applications

1.       Configure maven clover plugin. 2.       Build the all components with clover enabled. 3.       Deploy the clover enabled build to test server. 4.       Run the tests. 5.      …

Read More

What is Information Technology Infrastructure Library (ITIL) ? – Complete Guide

Introduction The Information Technology Infrastructure Library (ITIL) is a set of concepts and practices for managing Information Technology (IT) services (ITSM), IT development and IT operations. Purpose…

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

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

Usage of ANT_OPTS in Ant Script | ANT_OPTS capabilities

Usage of ANT_OPTS in Ant Script | ANT_OPTS capabilities Ant has three environment variables that you can use to set its default behavior. • ANT_ARGS Set this…

Read More

Power Point PPT: Using Ant To Build J2 Ee Application – Complete Guide

Power Point PPT: Using Ant To Build J2 Ee Application Using Ant To Build J2 Ee Applications from Rajesh Kumar   Rajesh KumarI’m a DevOps/SRE/DevSecOps/Cloud Expert passionate…

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

Amazon EC2 key pairs and other stumbling blocks – Guide

While working with Cloud Tools and Cloud Foundry users, I have noticed that EC2 key pairs and security group configuration are common stumbling blocks for people who…

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

JUnit 4 Test Logging Tips using SLF4J

When writing JUnit tests developers often add log statements that can help provide information on test failures. During the initial attempt to find a failure a simple…

Read More