Re: Can a perl programmer find jobs today?

2023-02-17 Thread Hao Wu
https://jobs.perl.org/ If you are in the right place, it is not that hard to find a perl job. On Fri, Feb 17, 2023 at 7:46 PM winnie hw wrote: > I know perl/ruby/python and use all of them for work. > But I didn't see an employer seeking the perl programmer. > Can we the perl programmers

Re: function alias

2019-09-04 Thread Hao Wu
https://stackoverflow.com/questions/4512094/aliasing-a-function-in-perl On Wed, Sep 4, 2019 at 2:17 PM Wesley Peng via beginners wrote: > Hello, > > How to make a function alias in perl? for example, says() is alias to > print(). > > thanks. > > -- > To unsubscribe, e-mail:

Re: What are the environmental variables used by Perl?

2019-05-30 Thread Hao Wu
https://perldoc.perl.org/Env.html On Thu, May 30, 2019 at 8:58 PM Jeffrey Walton wrote: > Hi Everyone, > > I need to fix a self test for a C library written in Perl. I don't > know Perl so it is a struggle. I am happy to refer to the manual, and > it is located at

Re: perlbrew and cron

2017-12-07 Thread Hao Wu
0 23 * * * /path/to/perlbrew exec --with perl-5.20.0 perl /path/to/app.pl On Thu, Dec 7, 2017 at 10:38 AM, SSC_perl wrote: > After moving to a VPS, I'm finally able to use perlbrew to use the > latest perl, but it's not working the same as it does on my Mac. > >

Re: Question about Beginning Perl by Simon Cozens

2016-09-01 Thread Hao Wu
https://www.amazon.com/Beginning-Perl-Curtis-Poe/dp/1118013840 This one is more relevant. I read it and it is very good. However, If you never programming before Learning Perl probably is better to start with. On Thu, Sep 1, 2016 at 9:52 AM, Walker, Michael E < michael.e.walk...@boeing.com>

overload during match

2015-08-13 Thread Hao Wu
I use a variable which have a method overload to string in regex replace. the result is string only if match success. I thought it should be always string. Could anyone explain how this happen? Thanks. Below is the code use Text::Xslate::Type::Raw; # a wraper of string, provide as_string,

Re: Looking for introductory to advanced examples of RESTful programming in Perl

2015-08-12 Thread Hao Wu
what you looking for is not a rest server, but rest client. For JIRA, https://metacpan.org/pod/JIRA::REST I did not check the source, but it is should be a wrapper around some http client. you can follow Shlomi Fish's link to learn more about web automation as a start and then check the

Re: Looking for introductory to advanced examples of RESTful programming in Perl

2015-08-11 Thread Hao Wu
take a look at http://www.todobackend.com/ you can port the mojolicious one to Dancer as a learning experience. On Tue, Aug 11, 2015 at 6:50 PM, Kenneth Wolcott kennethwolc...@gmail.com wrote: Hello; I'm looking for introductory to advanced examples of RESTful programming in Perl

Re: Good books to study perl interpreter

2015-03-30 Thread Hao Wu
Hi, rakesh, search 'perl internal', will give you most of the result. *Extending and Embedding Perl* is the book you are looking for. On Mon, Mar 30, 2015 at 9:42 AM, rakesh sharma rakeshsharm...@hotmail.com wrote: Hi all Please suggest nice books to know perl interpreter. In depth books is

Re: Can't Install Mojolicious on Shared Server

2014-07-29 Thread Hao Wu
use DigitalOcean about $5 a month. you get everything you need. I am running Dancer2 in DigitalOcean, runs great. On Tue, Jul 29, 2014 at 4:25 PM, Mike Flannigan mikef...@att.net wrote: I pay about $8 per month for a shared server hosting at Hostgator. I recently asked Hostgator to install

Re: Grabbing HTML fields, return them as hash

2014-06-09 Thread Hao Wu
http://mojolicio.us/perldoc/Mojo/DOM not exactly what you want, but it is good to use. On Mon, Jun 9, 2014 at 12:25 PM, Mike ekimduna...@gmail.com wrote: Hello everyone. Can anyone point me in the direction of a module that will allow me to grab HTML fields and return them as a hash?

Re: Brackets in scalar and array

2014-05-29 Thread Hao Wu
Hi, you can find the answer here, http://perlmaven.com/scalar-and-list-context-in-perl Good Luck to your exam! On Thu, May 29, 2014 at 1:20 PM, James Kerwin jkerwin2...@gmail.com wrote: Hello all, long time lurker, first time requester... I have a Perl exam tomorrow and came across a

Re: don't understand for a package

2014-05-21 Thread Hao Wu
I think Starman.pm is for document and version only. follow the code here. https://metacpan.org/source/MIYAGAWA/Starman-0.4009/script/starman#L18 https://metacpan.org/source/MIYAGAWA/Plack-1.0030/lib/Plack/Runner.pm https://metacpan.org/source/MIYAGAWA/Plack-1.0030/lib/Plack/Loader.pm#L41