Re: perl source code encryption

2008-05-17 Thread Gowtham M
rlcc) This perlcc was experimental when I first had a look at it (long time back), not sure how stable it is now. > > Thanks&Regards in advance > Anirban Adhikary > - Gowtham

Re: Plotting widget in Perl?

2008-03-27 Thread Gowtham M
On Thu, Mar 27, 2008 at 4:48 PM, zentara <[EMAIL PROTECTED]> wrote: > On Thu, 27 Mar 2008 14:00:42 +0530, [EMAIL PROTECTED] ("Gowtham > M") wrote: > > >Zentara, gtkdatabox looks good for me. Can you please mention > >which perl module in Gtk2::* should I use

Re: Plotting widget in Perl?

2008-03-27 Thread Gowtham M
Zentara, gtkdatabox looks good for me. Can you please mention which perl module in Gtk2::* should I use to use this from perl? Thanks! On Wed, Mar 26, 2008 at 5:23 PM, zentara <[EMAIL PROTECTED]> wrote: > On Wed, 26 Mar 2008 00:22:03 +0530, [EMAIL PROTECTED] ("Gowtham > M&quo

Re: Plotting widget in Perl?

2008-03-25 Thread Gowtham M
at the first error, GD.xs:444: error: 'gdIOCtx' has no member named 'gd_free' Indeed, this structure is not having 'gd_free' member! /usr/include/gd_io.h 4 #include 5 6 typedef struct gdIOCtx { 7 int (*getC)(struct gdIOCtx*); 8 int (*getBuf)(struct g

Plotting widget in Perl?

2008-03-25 Thread Gowtham M
port such a widget? I have tried gnuplot, but unfortunately, zooming is not supported :( Thanks for your help -- Gowtham M

Re: regd . Line number printing...

2007-07-10 Thread Gowtham
t;>} The file slurp on the first line reads entire file and puts each line in @lines. Next read in while() always returns undef, since the file is read entirely. Iterate over @lines instead - Gowtham -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: regd . Line number printing...

2007-07-10 Thread Gowtham
; >>} The file slurp on the first line reads entire file and puts each line in @lines. Next read in while() always returns undef, since the file is read entirely. Iterate over @lines instead - Gowtham -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: For Loop error: Missing $ on loop variable at time.pl line 7.

2007-07-10 Thread Gowtham
On Jul 10, 9:13 pm, [EMAIL PROTECTED] (Martin Barth) wrote: > > for my ($index = 0; $index <= 10; $index++) { > > > print ("$hour:$min:$sec\n"); > > > } > > for my $index (0..10){ > print ("$hour:$min:$sec\n"); > > } > > hth Don't wrap the entire loop initializer, condition and counter upd

Hash in a scalar context

2007-07-10 Thread Gowtham
Interestingly, A hash in a scalar context returns some fraction. Like, this code @array = ( 1 .. 100 ); %hash = @array; print scalar %hash, "\n"; prints 33/64 Can somebody help me understand what this 33/64 is? Thanks Gowtham -- To unsubscribe, e-mail: [EMAIL PROTECTED] For