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 »
oracle-rac-cheat-sheet

Oracle RAC Web References & Cheatsheet

Check CRS Status [root@racnode1 ~]#crsctl check crs Check Clusterware Resources [root@racnode1 ~]# crs_stat -t -v Stopping the Oracle Clusterware Stack on the Local Server [root@racnode1 ~]# /u01/app/11.2.0/grid/bin/crsctl stop cluster CRS-2673:…

Read more »
team-building

Useful Tips to Make Team Building Exercises Effective and Successful

Hi, I am prabhakar, i have read an article about Team Building and i would like to share it with you.All successful businesses and organizations know that teamwork and team…

Read more »
branching-and-merging

Branching and Merging Best Practices | Branching and Merging Guide

Branching and Merging Practices Branching and Merging Practices from Rajesh Kumar

Read more »
smart-build-tools-features

What are the Advance Features of Smart Build Tools?

Advance Features of Smart Build Tools {slideshare}[slideshare id=6995921&doc=advancefeaturesofsmartbuildandtoolsstudy-110220215438-phpapp02&type=d]{/slideshare}

Read more »
scm-process-and-smartbuild

SCM Process and smartBuild Overview, What is SCM Process and smartBuild?

SCM Process and smartBuild SCM Process and smartBuild from Rajesh Kumar

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 »
tomcat-7

Apache Tomcat – Tomcat 7 Finalized – Tomcat 7 Introduction

The volunteer developers behind Apache Tomcat have released version 7.0.6 of the open-source Java servlet container. “This is the first stable release of the Tomcat 7 branch,” developer Mark Thomas…

Read more »
hybrid-testing

Hybrid testing introduction, What is Hybrid testing?

Hybrid testing definition. testing. A combination of top-down testing with bottom-up testing of prioritized or available components   According to Wiki: Hybrid testing is what most frameworks evolve into over time and multiple projects….

Read more »
unix-commands-and-utilities

Common unix commands and utilities | unix commands and utilities Guide

To find a program not on this list (and there are hundreds), try the man program with the -k option followed by a keyword, for example, man -k tape to…

Read more »

Software Configuration Management in Pakistan | SCM Practices in Pakistan

Mature CM is cross-business functionality NOT functionality solely within engineering. Software Configuration Management facilitates timely communications; enforces development policies and technical standards along Management of Hand-offs between Environments and Teams…

Read more »
shell-script-parameters

Understand Shell Script Parameters – Reference

A parameter is an entity that stores values. It can be a name, a number or some special characters. Bash shell provides two kind of parameters. Positional Parameter and Special…

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 »
subversions-components

Subversion’s Components – SVN Components Overview

Subversion’s Components Subversion, once installed, has a number of different pieces. The following is a quick overview of what you get. Don’t be alarmed if the brief descriptions leave you…

Read more »
perforce-command-reference

Basic Perforce Command – P4 Command Reference

Command Description p4 add Open file(s) in a client workspace for addition to the depot. p4 admin Perform administrative operations on the server. p4 branch Create or edit a branch…

Read more »
unix-sed-quick-reference

Sed command Web References & Cheatsheet

UNIX SED Introduction · Sed is a “non-interactive” stream-oriented editor. Since its an “non-interactive” it can be used to automate editing. · This allows you to edit multiple files, or…

Read more »
apache-maven-3

Apache Maven 3.0-RC1 | Pre – Release Testing

Hi, in preparation for the release of Apache Maven 3.0, the Maven team is seeking your help to discover regressions since Maven 2.x. Everybody interested in taking a preview of…

Read more »
configuration-management-tools-discussion

Configuration Management Tools Discussion

My main experience is with ClearCase. I have read various descriptive comparisons between ClearCase and other available Software Management Version tools. Which tool has your company implemented? What were the…

Read more »
sonar-maven-plugin

Sonar team released Sonar Maven Plugin 1.0-beta-2

The Sonar team is pleased to announce the release of Sonar Maven Plugin, version 1.0-beta-2. It makes configuration easier when using a repository manager like Archiva or Nexus. Indeed no additional…

Read more »
sonar-mojo-10

Sonar mojo 1.0-beta-2 Released by Mojo team – Configure now

The Mojo team is pleased to announce the release of Sonar Maven Plugin, version 1.0-beta-2. It makes configuration easier when using a repository manager like Archivaor Nexus. Indeed no additional…

Read more »
perl-scripting-interview-selected-questions

Perl Scripting Interview Questions and Answers

Can anyone help on these questions which i couldnt answer in my interview,because iam not sure on perl scripting iam learning the things in perl now. 1.What standard Perl modules…

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 »

Samples/Examples of the Ant copy task – Guide

Samples of the Ant copy task <copy file=”${resources.dir}/MANIFEST.MF” tofile=”${temp.dir.meta-inf}/MANIFEST.MF” overwrite=”true” /> <copy file=”${resources.dir}/managed-beans.xml” tofile=”${temp.dir.web-inf}/managed-beans.xml” overwrite=”true” /> <copy file=”${resources.dir}/navigation-rules.xml” tofile=”${temp.dir.web-inf}/navigation-rules.xml” overwrite=”true” /> <copy file=”${resources.dir}/monitoring-managed-beans.xml” tofile=”${temp.dir.web-inf}/monitoring-managed-beans.xml” overwrite=”true” /> <copy file=”${resources.dir}/monitoring-navigation-rules.xml” tofile=”${temp.dir.web-inf}/monitoring-navigation-rules.xml” overwrite=”true”…

Read more »
svn-pros-and-cons

| SVN | Subversion | SVN pros and Cons| SVN Repository Planning | SVN Repository layout

| SVN | Subversion | SVN pros and Cons| SVN Repository Planning | SVN Repository layout | Subversion (SVN) Repository Layout Single Project – One project per repository location Pros…

Read more »
sonar-pdf-report-plugin

Sonar PDF Report Plugin 2.1 – What is new in Sonar PDF Report Plugin 2.1?

Hi all, I’m proud to announce the availability of a new release of Sonar PDF Report Plugin (Commercial edition): http://blog.klicap.es/products/sonarpdfreportplugin Key features of this new release: * Include information provided…

Read more »

Sonar 2.2 Released – Know what’s new in Sonar 2.2 ?

Sonar 2.2 Released – Know what’s new in Sonar 2.2 ? The Sonar Team is pleased to announce the release of Sonar 2.2. There are two key features in this new version :…

Read more »