Re: Any Good SCM tool to manage Perl Code locally

2010-03-15 Thread Shlomi Fish
On Monday 15 Mar 2010 08:21:22 Kenneth Wolcott wrote: > Hi; > > On Sun, Mar 14, 2010 at 23:12, Dan Fish wrote: > > You might want to have a look at Seapine Surround. It's not opensource, > > but you can get a free single-user license and it's a very good SCM > > program. > > > > It's also avai

Re: Any Good SCM tool to manage Perl Code locally

2010-03-15 Thread Shlomi Fish
On Sunday 14 Mar 2010 22:43:44 David Christensen wrote: > Parag Kalra wrote: > > So wanted to know if it is a possible to use any free opensource tool to > > manage code (only locally) where actual and current code resides in > > different local directory and I can checkout code locally in some oth

CGI-BIN Help/Advise - editing a file - HOW ?

2010-03-15 Thread newbie01 perl
Hi, At the moment, I have some sort of INI/config file that I edit manually via vi. These config files are "simple" delimited file that are used by some of the scripts running on the server. I want to be able to the same thing via cgi-bin, can anyone advise where to start. Basically, I want to be

Re: CGI-BIN Help/Advise - editing a file - HOW ?

2010-03-15 Thread Shlomi Fish
Hi newbie01! On Monday 15 Mar 2010 09:39:41 newbie01 perl wrote: > Hi, > > At the moment, I have some sort of INI/config file that I edit manually via > vi. These config files are "simple" delimited file that are used by some of > the scripts running on the server. > > I want to be able to the s

AW: CGI-BIN Help/Advise - editing a file - HOW ?

2010-03-15 Thread Thomas Bätzler
newbie01 perl asked: > At the moment, I have some sort of INI/config file that I edit manually > via vi. These config files are "simple" delimited file that are used by > some of the scripts running on the server. > > I want to be able to the same thing via cgi-bin, can anyone advise where > to s

Replacement in 3GB file

2010-03-15 Thread Ganesh Babu N
Dear All, I am using the following code to replace certain information in binary mode. $s=time(); open(FH, "$ARGV[0]"); open(OUT, ">$ARGV[1]"); binmode FH; binmode OUT; $/=undef; $line=; $line=~s!(\d{3}\s(\/[^\n]*? f1)\s*([^\n]+sh\s*)+?\d{3}\s)ns!$1$2!gs while($line=~/(\d{3}\s(\/[^\n]*? f1)\s*([^

Re: Replacement in 3GB file

2010-03-15 Thread John W. Krahn
Ganesh Babu N wrote: Dear All, I am using the following code to replace certain information in binary mode. Did you not like the answers you got from perlmonks.org? John -- The programmer is fighting against the two most destructive forces in the universe: entropy and human stupidity.

Re: Replacement in 3GB file

2010-03-15 Thread Shlomi Fish
Hi Ganesh! First a few notes on your code. On Monday 15 Mar 2010 14:10:25 Ganesh Babu N wrote: > Dear All, > > I am using the following code to replace certain information in binary > mode. > > $s=time(); > open(FH, "$ARGV[0]"); > open(OUT, ">$ARGV[1]"); Please see: http://perl.net.au/wiki/Fr

Re: Any Good SCM tool to manage Perl Code locally

2010-03-15 Thread Eric Veith1
Shlomi Fish wrote on 03/15/2010 08:33:30 AM: > Please don't recommend CVS for new development. There are much > superior and/or > open-source alternatives now. See: > > http://better-scm.berlios.de/ I'm honestly curious why nobody has explicitly suggested git so far. It is not only pretty po

Re: Any Good SCM tool to manage Perl Code locally

2010-03-15 Thread Jeremiah Foster
On Mar 15, 2010, at 2:12 PM, Eric Veith1 wrote: > Shlomi Fish wrote on 03/15/2010 08:33:30 AM: >> Please don't recommend CVS for new development. There are much >> superior and/or >> open-source alternatives now. See: >> >> http://better-scm.berlios.de/ > > > I'm honestly curious why nobody

Re: Any Good SCM tool to manage Perl Code locally

2010-03-15 Thread Eric Veith1
Jeremiah Foster wrote on 03/15/2010 05:20:16 PM: > Shlomi mentioned git early on in this thread. You're right, sorry, I missed that one. Eric -- Eric MSP Veith Hechtsheimer Str. 2 DE-55131 Mainz Germany IBM Deutschland GmbH Vorsitzender des Aufsichtsrats: Erich Clemen

Lingua::Stem 0.83 module installation problem

2010-03-15 Thread Doug Cacialli
Hello list, I'm really, really new in perl, so please forgive me if this is a silly problem with an obvious solution. I'm running the latest release of Strawberry Perl in Windows 7 Ultimate (x64), trying to install Lingua::Stem, a prereq for AI::Categorizer. I sucessfully installed about a dozen

Re: Any Good SCM tool to manage Perl Code locally

2010-03-15 Thread Parag Kalra
Yes I have started using Git and I am very happy with it so far. Just couple of questions - How can I make my code readonly using Git such that it can be edited only when it is checked out. Also if I want to take entire code base to particular revision, I guess I need to use - 'git checkout '. S

Re: Any Good SCM tool to manage Perl Code locally

2010-03-15 Thread mohd sharif
You can use "git" -Sharif On 3/14/10, Parag Kalra wrote: > Hi All, > > Although it is not related to Perl directly and might be little strange > question but still thought of consulting Perl gurus. > > Here is the thing - I mainly code in Perl and Bash and I don't use any SCM > tool. And the rea

Re: Any Good SCM tool to manage Perl Code locally

2010-03-15 Thread mohd sharif
On 3/16/10, mohd sharif wrote: > You can use "git" > > -Sharif > > On 3/14/10, Parag Kalra wrote: >> Hi All, >> >> Although it is not related to Perl directly and might be little strange >> question but still thought of consulting Perl gurus. >> >> Here is the thing - I mainly code in Perl and Ba