Re: Inviting ideas for Personal database

2011-10-05 Thread Lubos Kolouch
Parag Kalra, Wed, 05 Oct 2011 11:49:00 -0700: >> >> >> Finally, I should note that you shouldn't prefix your replies with >> "PK>" or >> >> > Agreed. My mistake. Thanks for bringing it to my notice. BTW I have > started using sqllite and I am really enjoying it. Thanks to all. > > Parag Hi Para

Re: Why perlcritic complains?

2011-10-01 Thread Lubos Kolouch
Paul Johnson, Fri, 30 Sep 2011 20:26:50 +0200: > On Fri, Sep 30, 2011 at 05:34:46PM +0000, Lubos Kolouch wrote: > >> Hello again, >> >> So it seems perlcritic is perhaps right - when I swap the lines my >> @array; and open ..., it does not complain anymore. &g

Re: Why perlcritic complains?

2011-09-30 Thread Lubos Kolouch
Lubos Kolouch, Fri, 30 Sep 2011 17:19:03 +: > Paul Johnson, Fri, 30 Sep 2011 15:06:32 +0200: > >> On Fri, Sep 30, 2011 at 10:23:05AM +, Lubos Kolouch wrote: >> >>> Is it a bug in perlcritic? >> >> I don't use perlcritic, but it seems like

Re: Why perlcritic complains?

2011-09-30 Thread Lubos Kolouch
Paul Johnson, Fri, 30 Sep 2011 15:06:32 +0200: > On Fri, Sep 30, 2011 at 10:23:05AM +0000, Lubos Kolouch wrote: > >> Is it a bug in perlcritic? > > I don't use perlcritic, but it seems like a bug to me. > > Are you using the latest version of perlcritic? If so,

Why perlcritic complains?

2011-09-30 Thread Lubos Kolouch
Hello, I cannot understand, why perlcritic complains about this script: use strict; use warnings; use 5.012; open my $file, '<', 'file.txt'; my @array; while (<$file>) { chomp; my $value = $_*2; say "OK"; push @array, $value; } close $file; $ perlcritic -4 t16.pl Close filehan