Re: Regex to detect natural language fragment

2021-09-13 Thread Chankey Pathak
You can look into NLP https://metacpan.org/search?q=nlp On Mon, 13 Sept 2021 at 21:04, Julius Hamilton wrote: > Hey, > > I'm not sure if this is possible, and if it's not, I'll explore a better > way to do this. > > I would like to write a script which analyzes if a line of text is > (likely) a

Re: installing module in Strawberry perl

2020-08-30 Thread Chankey Pathak
Install the Win32::GUI module from cpan $ cpan Win32::GUI On Sun, 30 Aug, 2020, 3:19 PM Somu, wrote: > Hi all! > Please help me with this.. What am i doing wrong > > > #!/usr/bin/perl -w > use strict; > use Win32::GUI; > > > #typing "perl window.pl" in command line generates the following.. >

Re: how to catch die in a module

2019-08-07 Thread Chankey Pathak
You can create a signal handler for die and handle the exception in there. Refer https://users.cs.cf.ac.uk/Dave.Marshall/PERL/node116.html On Thu, 8 Aug, 2019, 8:15 AM Eliza, wrote: > Hello, > > I use such a module from other people. > In this module there is the "die" statement, for example, >

Re: perl's anaconda

2019-08-07 Thread Chankey Pathak
You can install multiple versions of Perl and in each of them you can install specific versions of your library. On Wed, 7 Aug, 2019, 3:03 PM Eliza, wrote: > That looks interesting. > For library installation under perlbrew, can it install more than one > release for the same library? for

Re: perl's anaconda

2019-08-07 Thread Chankey Pathak
Check out perlbrew https://perlbrew.pl/ On Wed, 7 Aug, 2019, 2:55 PM Eliza, wrote: > Hello, > > Is there a toolkit like python's anaconda which has multi-versions of > perl installation for different development environment? > > https://www.anaconda.com/ > > regards, > Eliza > > -- > To

Re: Getting 2/8 as output

2015-06-15 Thread Chankey Pathak
See this http://stackoverflow.com/questions/6723172/what-is-4-16-in-hashes On 13-Jun-2015 10:09 pm, rakesh sharma rakeshsharm...@hotmail.com wrote: Hi I am printing a hash but I tried to concatenate the new line operator and I am getting 2/8 as output; print %hash.\n; output is 2/8. I am

Re: Strange

2015-06-12 Thread Chankey Pathak
? Where has everybody gone to ? stackoverflow.com -- Don't stop where the ink does. Shawn -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/ -- Regards, Chankey Pathak http

Re: perl certification

2015-05-20 Thread Chankey Pathak
://learn.perl.org/ -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/ -- Regards, Chankey Pathak http://www.linuxstall.com

Re: Planning to buy Hard Copy Book

2014-06-11 Thread Chankey Pathak
Get a copy of Modern Perl 2014. On Wed, Jun 11, 2014 at 3:53 PM, Frank Vino vinofra...@gmail.com wrote: Hi Team, Could you please let me know which publisher and author name are good in Perl Book, I am planning to buy a hard copy. Thanks, Vino -- Regards, Chankey Pathak http

Re: Best way to distribute Perl utility packed with Fatpacker

2014-05-20 Thread Chankey Pathak
reply to list if it's a mailing list post - http://shlom.in/reply . -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/ -- Regards, Chankey Pathak http://www.linuxstall.com

Re: Newbie creating Perl web report

2014-02-07 Thread Chankey Pathak
based tools or scripts? My goal is making some reports for work that would stay internally but also apply what I learn to other external side projects. Thanks, Robert -- Robert Freiberger -- Regards, Chankey Pathak http://www.linuxstall.com

Re: baby perl to get the right date

2014-01-27 Thread Chankey Pathak
...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/ -- Regards, Chankey Pathak http://www.technostall.com/

Re: [Bangalore-pm] can't locate object method via perl package

2013-09-12 Thread Chankey Pathak
is correctly installed. Thank u Guruanth ___ Bangalore-pm mailing list bangalore...@pm.org http://mail.pm.org/mailman/listinfo/bangalore-pm -- Regards, Chankey Pathak http://www.linuxstall.com

Dealing with apache timeout in Perl

2013-09-04 Thread Chankey Pathak
keeps doing the job, but due to the timeout I can't send the created zip file to user's browser. I'm confused how to solve this problem. *How to keep the connection alive unless the subroutine finishes its job?* PS: Web-app is built using CGI.pm and Perl 5.8.5. -- Regards, Chankey Pathak http

Re: Dealing with apache timeout in Perl

2013-09-04 Thread Chankey Pathak
a timeout error and ending the request. - Jose from Mexico. On Wed, Sep 4, 2013 at 4:49 AM, Chankey Pathak chankey...@gmail.comwrote: In my web-app there is a HTML screen which provides the facility to select and download documents. If user selects some documents (using checkbox) and submits

Re: parsing html

2013-08-08 Thread Chankey Pathak
Have a look at HTML::PARSER. On Aug 8, 2013 10:50 PM, Unknown User knowsuperunkn...@gmail.com wrote: What would be the best module available for parsing html in your opinion? My intention is to parse html that contains a table of 5 columns and any number of rows, and have a hash ref like

Re: Always use strict

2013-08-05 Thread Chankey Pathak
://learn.perl.org/ -- Regards, Chankey Pathak http://www.linuxstall.com

Re: Getting Started.

2013-06-26 Thread Chankey Pathak
-- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/ -- Regards, Chankey Pathak http://www.linuxstall.com

Re: Any alternative for substr() function

2013-04-10 Thread Chankey Pathak
extraction, it has huge impact on performance. Is there any alternative for this? Thanks in advance. Cheers, Kavita -- Regards, Chankey Pathak http://www.linuxstall.com

Re: Downloading an older version of perl

2013-01-30 Thread Chankey Pathak
...@gmail.com wrote: Hi guys, Where do I download an older version of active perl? Like 5.6 or 5.8 etc. Any download links will be really helpful Regards, Midhun -- Regards, Chankey Pathak http://www.linuxstall.com

Re: Building a small web-app in Perl

2013-01-02 Thread Chankey Pathak
Okay, thanks :) On Wed, Jan 2, 2013 at 1:52 PM, Octavian Rasnita orasn...@gmail.com wrote: From: Chankey Pathak chankey...@gmail.com Hi guys, I have to make a simple web app which should have the features mentioned below: 1. User registration - Users can signup and login 2. New

Re: Building a small web-app in Perl

2013-01-02 Thread Chankey Pathak
:) Oh, it's okay :) you might want to take a look at: https://metacpan.org/module/Dancer::Plugin::Auth::Extensible Sure. Thanks for your reply. :) On Wed, Jan 2, 2013 at 4:20 PM, David Precious dav...@preshweb.co.ukwrote: On Wed, 2 Jan 2013 10:32:56 +0530 Chankey Pathak chankey...@gmail.com

Building a small web-app in Perl

2013-01-01 Thread Chankey Pathak
in developing web-apps with Dancer or Mojolicious. So if you can add links of good tutorial which relates to my problem then that would be very appreciable. PS: Happy New Year! :) -- Regards, Chankey Pathak http://www.linuxstall.com

Re: Need a Perl Book for Beginner

2012-12-04 Thread Chankey Pathak
not sure what is you all recommendation to buy this book ? Thanks in advance, Asad -- Regards, Chankey Pathak http://www.linuxstall.com

Fwd: Is this code which is using Switch.pm safe?

2012-11-22 Thread Chankey Pathak
) gonna update it. I heard that we'll use 5.12 in the next update of our product though. On Thu, Nov 22, 2012 at 3:32 PM, Paul Johnson p...@pjcj.net wrote: On Thu, Nov 22, 2012 at 11:37:15AM +0530, Chankey Pathak wrote: In our company we were using this code (given at the end) for about 10 years

Re: Fwd: Is this code which is using Switch.pm safe?

2012-11-22 Thread Chankey Pathak
answer on stackoverflow. On Thu, Nov 22, 2012 at 03:59:23PM +0530, Chankey Pathak wrote: I discussed with the teammates and convinced them to go for 'dispatch table'. Just want to know will the 'dispatch table' allow regex? As you can see we're using regex in if-else part. I guess I'll have

Is this code which is using Switch.pm safe?

2012-11-21 Thread Chankey Pathak
In our company we were using this code (given at the end) for about 10 years and it worked fine. Some days ago we faced some issues and we had to re-code the complete package, we decided to replace this code with Switch module by Damian (in order to improve the readability of code). Everything

perl based shopping cart

2012-05-08 Thread Chankey Pathak
Hi folks, One of my friend is having a problem, he is not in the mailing list so I am posting this problem on his behalf. Please check how can this problem be solved and let me know, I'll let him know the answer, thanks :) *Problem:* Where i work we use a perl based shopping cart (Cartit). It

Re: Guidance for a New Programmer/Perl User

2011-12-16 Thread Chankey Pathak
On Dec 16, 3:39 pm, short...@gmail.com (Ken Peng) wrote: 2011/12/16 Shlomi Fish shlo...@shlomifish.org: Regarding Perl 6 - you are right that it is taking a long time, and that some people feel its implementations are not usable for them yet. But it doesn't mean you can't use Perl 5

Re: Guidance for a New Programmer/Perl User

2011-12-15 Thread Chankey Pathak
...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/ -- Regards, Chankey Pathak http://javaenthusiastic.blogspot.com

Re: Problem installing perl module

2011-08-26 Thread Chankey Pathak
On Aug 11, 4:25 pm, shawnhco...@gmail.com (Shawn H Corey) wrote: On 11/08/11 03:27 AM, Chankey Pathak wrote: I downloaded the Tk module. Unpacked it by zcat Tk800.0_01.tar.gz | tar xf - then cd to that directory (cd Tk-804.029_500) then perl Makefile.PL and I got this output:http

Problem installing perl module

2011-08-11 Thread Chankey Pathak
I downloaded the Tk module. Unpacked it by zcat Tk800.0_01.tar.gz | tar xf - then cd to that directory (cd Tk-804.029_500) then perl Makefile.PL and I got this output: http://i.stack.imgur.com/FZWWI.png I'm using RHEL6. I installed the missing packages and then the perl Makefile.PL worked fine