Re: How to can develop a program

2022-08-02 Thread Christian Walde
On Tue, 02 Aug 2022 10:41:36 +0200, Ruprecht Helms (privat) wrote: Am 02.08.22 um 10:07 schrieb Christian Walde: On Mon, 01 Aug 2022 22:50:21 +0200, William Torrez Corea wrote: On Mon, Aug 1, 2022 at 8:16 AM Christian Walde wrote: On Sat, 23 Jul 2022 21:03:18 +0200, William Torrez Corea

Re: How to can develop a program

2022-08-02 Thread Christian Walde
On Mon, 01 Aug 2022 22:50:21 +0200, William Torrez Corea wrote: On Mon, Aug 1, 2022 at 8:16 AM Christian Walde wrote: On Sat, 23 Jul 2022 21:03:18 +0200, William Torrez Corea < willitc9...@gmail.com> wrote: My goal: I want to create you should start [...] reading Modern Perl and

Re: How to can develop a program

2022-08-01 Thread Christian Walde
of asking how to draw Mona Lisa's eye when you don't even know which end of a paint brush paints. -- With regards, Christian Walde

Re: Which distribution of PERL to use

2022-07-08 Thread Christian Walde
On Fri, 08 Jul 2022 14:59:26 +0200, Ruprecht Helms (privat) wrote: Am 08.07.22 um 14:49 schrieb Christian Walde: On Fri, 08 Jul 2022 12:06:07 +0200, Ruprecht Helms (privat) wrote: what I see is that Cygwin enables to run linux on a windows-computer. That is not what it does. I don&#

Re: Which distribution of PERL to use

2022-07-08 Thread Christian Walde
s and making recommendations based on such conclusions. -- With regards, Christian Walde -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Which distribution of PERL to use

2022-07-08 Thread Christian Walde
gards, Christian Walde

Re: installing module in Strawberry perl

2020-08-31 Thread Christian Walde
perl/site/lib C:/Strawberry/perl/vendor/lib C:/S #trawberry/perl/lib) at window.pl line 1. #BEGIN failed--compilation aborted at window.pl line 1. Run cpan Win32::GUI again and attach the output in a file to the next email. -- With regards, Christian Walde

Re: installing module in Strawberry perl

2020-08-31 Thread Christian Walde
. Thanks. On Sun, Aug 30, 2020 at 6:27 PM Christian Walde wrote: On Sun, 30 Aug 2020 11:59:15 +0200, Somu wrote: i did it already. And installation was fine. Even then the problem persists. On Sun, Aug 30, 2020 at 3:22 PM Chankey Pathak wrote: Install the Win32::GUI module from cpan $ cpan

Re: How to parse C#, javascript, lisp source code for quoted literal strings

2014-05-24 Thread Christian Walde
this kind of task. -- With regards, Christian Walde

Re: map usage

2012-02-20 Thread Christian Walde
{ ... return; } I like it because it is really short. Questions: 1. Is there another perhaps better one liner to do it? You can do either of these: map some_action($_), values %ht; some_action($_) for values %ht; -- With regards, Christian Walde -- To unsubscribe, e-mail: beginners-unsubscr

Re: How to run a perl script in background on Windows?

2011-08-05 Thread Christian Walde
-- With regards, Christian Walde -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: redirect system command STDER

2011-07-20 Thread Christian Walde
Is it possible with system? Thanks! For an easy and cross-platform solution you can use Capture::Tiny to capture both STDERR and STDOUT separately and then have your perl code decide what to do with each. -- With regards, Christian Walde -- To unsubscribe, e-mail: beginners-unsubscr...@per

Re: error when installing WWW::Mechanize

2011-07-19 Thread Christian Walde
ions would be to install perlbrew and use it to install a more recent perl or just plain to force install, since everything else seems to be in working order. -- With regards, Christian Walde -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h..

Re: environment variables in perl

2011-07-18 Thread Christian Walde
k and each is independent thereafter. That is most certainly not the case. On Windows %ENV behaves like it does on Linux: https://gist.github.com/899a1385b703bba7f552 -- With regards, Christian Walde -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e

Re: very starting help

2011-07-18 Thread Christian Walde
od idea to enable warnings for all code you write yourself. However if you enable it for code written by authors who did not want warnings, or for old modules, then you will get pointless messages you cannot fix. -- With regards, Christian Walde -- To unsubscribe, e-mail: beginners-unsubscr...@pe

Re: very starting help

2011-07-18 Thread Christian Walde
" at the top of your code and you'll be fine. :) -- With regards, Christian Walde -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/