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 not know till now is that you can quickly check for certain file properties in...
Stable CVS 1.11.23 has been released. Stable releases contain only bug fixes from previous versions of CVS. This version includes an efficiency fix that reduces checkouts of very old revisions from an O(n^2) operation to an O(n) one, as well as yet...
Perforce 2011.1 released 11/07/2011 Perforce Release 2011.1 is now available. Check for platform and component availability. Source: http://www.perforce.com/aggregator/sources/2
Apache Subversion 1.7 has Arrived Subversion 1.7.0 has been officially released today. With the release of Subversion 1.7 comes the release of Subversion Edge 2.1.0. This release of Subversion Edge brings you the server binaries for Subversion...
IBM Rational ClearCase Version 7.1.1 release This information provides a brief description of the new features and restrictions in IBM Rational® ClearCase® Version 7.1.1 What's New For a list of new features available in this release, see...
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 depot from one Perforce server to another
Depot...
Importance of Automation Tools in SCM by John Ferguson Smart
Since the dawn of time, people have been using tools to make their life easier. Tools let you solve a problem at hand more quickly and more efficiently, so that you can spend your time...
I was reading article and thought to repost here.
It focuses around Git as the tool for the versioning of all of our source code.
Why git?
For a thorough discussion on the pros and cons of Git compared to centralized source code control...
1. netstat -a Check to make sure that the server is running. netstat -a gives a list of all processes listening on network ports. Look for lines that contain "LISTEN" and "1666" (or whatever port you have Perforce running on.) If you do not see...
|| use Vs require in perl || What is the difference between use and require?
Except of course that use is evaluated at compile time where as require is evaluated at run time in other word, A use anywhere in the code will be evaluated when the code...