perforce-2014-upgrade-instructions

Step by Step Instruction to Upgrade Perforce to 2014

Step by Step Instruction to Upgrade Perforce to 2014 The step are as follows: a) Check if the license is current. p4 license -o The expiry date must be later…

Read more »
perforce-server-disk-space-cleanup-and-repos-size-management

Ways to Perforce server Disk Space Cleanup and Repos Size Management

DRAFT VERSION Cleaning up Old Checkpoints Playing with Symlink(Softlink) and Redirecting the ROOT folder to drive where we have enough place. Deleting db.have and recreate it manually Display disk space…

Read more »
perl-sign-punctuation-marks

Commonly Used Sign- Punctuation and their Name in Perl

Commonly Used Sign- Punctuation and their Name in Perl ( => ) Comma Arrow  ( ‘ ’, “ ”, ‘ ‘, ” “ ) à Quotation marks ( $ ) àDollar sign ( ~…

Read more »
computer-startup-scripts

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 (Startup/Shutdown)or Start the…

Read more »
build-server

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 changes? 2. Project…

Read more »
versioning-in-software-configuration-management

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 Versioning? Having a…

Read more »
software-version-control-product

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 was restricted to…

Read more »
p4-duplicate-command

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 command What the…

Read more »
execute-external-commands-from-perl

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 have different behaviour,…

Read more »
perforce-replication

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 replica server can…

Read more »
depot-migration-between-perforce-servers

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 Move a product…

Read more »
perl-file-attributes

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, what I did…

Read more »
apache-web-server-on-windows-7-installation-guide

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 a few prerequisites….

Read more »
subversion-history-examining

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 history by examining…

Read more »
hudson-master-slave-setup

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 manage one or…

Read more »
comments-in-apache-ant

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 them! –> <!–…

Read more »
intellij-ant-integration

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 use.Assuming that you…

Read more »
ant-build-script-war-file

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 name=”webapp.dir” value=”/Users/al/tomcat-6.0.16/webapps” />…

Read more »
ant-clean-prepare-and-compile-tasks

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 ===</echo> <mkdir dir=”${dest.dir}”…

Read more »