MESSAGE
DATE | 2023-11-13 |
FROM | Gabor Szabo
|
SUBJECT | Subject: [Hangout - NYLXS] [Perlweekly] #642 - Perl and PAUSE
|
From hangout-bounces-at-nylxs.com Mon Nov 13 05:31:35 2023 Return-Path: X-Original-To: archive-at-mrbrklyn.com Delivered-To: archive-at-mrbrklyn.com Received: from www2.mrbrklyn.com (www2.mrbrklyn.com [96.57.23.82]) by mrbrklyn.com (Postfix) with ESMTP id A67711640B5; Mon, 13 Nov 2023 05:31:34 -0500 (EST) X-Original-To: hangout-at-www2.mrbrklyn.com Delivered-To: hangout-at-www2.mrbrklyn.com Received: by mrbrklyn.com (Postfix, from userid 1000) id D45531640AC; Mon, 13 Nov 2023 05:31:26 -0500 (EST) Resent-From: Ruben Safir Resent-Date: Mon, 13 Nov 2023 05:31:26 -0500 Resent-Message-ID: <20231113103126.GB793-at-www2.mrbrklyn.com> Resent-To: hangout-at-mrbrklyn.com X-Original-To: ruben-at-mrbrklyn.com Delivered-To: ruben-at-mrbrklyn.com Received: from s.wfbtzhsq.outbound-mail.sendgrid.net (s.wfbtzhsq.outbound-mail.sendgrid.net [159.183.224.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mrbrklyn.com (Postfix) with ESMTPS id 19F621640A4 for ; Mon, 13 Nov 2023 03:43:59 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sendgrid.net; h=content-type:from:mime-version:subject:to:cc:content-type:from: subject:to; s=smtpapi; bh=ZVW1qimatqdzsm5Xih7AkZM7kpoMeRfUIOLM3j66tIA=; b=LEGdRmjUDOGUbsCKjuAQi7rgVy1xchnCLznkfJ7GT/wBDWoLDL4yhnHsUyit7ESjht76 j9zhJ7gsGFNCLTXdoMEIW27LrVrlzbXEn7kGxrPaymuwZQJWWdTeAMjqhXo3ZJ1AYaadeZ 5wx0BYaRh4jqwu2073OuntvRj4bQOZe2o= Received: by filterdrecv-b85775b64-x9wz7 with SMTP id filterdrecv-b85775b64-x9wz7-1-6551E1CD-7 2023-11-13 08:43:57.19589843 +0000 UTC m=+2296977.881423021 Received: from MjA0MzMyMDc (unknown) by geopod-ismtpd-0 (SG) with HTTP id UdeopxXURH2lKa0ogIF5RA Mon, 13 Nov 2023 08:43:56.970 +0000 (UTC) Date: Mon, 13 Nov 2023 08:43:57 +0000 (UTC) From: Gabor Szabo Mime-Version: 1.0 Message-ID: X-SG-EID: =?us-ascii?Q?M1=2FjcUx8bKKmPSvog7OicVb7xhPyRXFJujbU=2FnMcqF+2meNU9xft7hc6iXDL7R?= =?us-ascii?Q?hvr4lEjGtdDVShuP=2FM58AltQ16UDpvXZPzuLRpI?= =?us-ascii?Q?3NGAzdqOEbRFo7WINZRRR6UD5Li4pvdOfSXqRo7?= =?us-ascii?Q?3cM2KiGrU5H27b4S7aliHM7q6qkKG+TkY5HnrSa?= =?us-ascii?Q?14m0kGdDSxHYMXbLHpqDCwbqZFwxkaWsDHJc2WK?= =?us-ascii?Q?=2Fl+7TL6rsfwTxyvSE=3D?= To: ruben-at-mrbrklyn.com X-Entity-ID: AKlQ+1ayr5OTQkc2iQnknw== Subject: [Hangout - NYLXS] [Perlweekly] #642 - Perl and PAUSE X-BeenThere: hangout-at-nylxs.com X-Mailman-Version: 2.1.30rc1 Precedence: list List-Id: NYLXS Tech Talk and Politics List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: multipart/mixed; boundary="===============1149738185==" Errors-To: hangout-bounces-at-nylxs.com Sender: "Hangout"
--===============1149738185== Content-Type: multipart/alternative; boundary=e5bbc699435d08e8f60e466e40f558f80c7e294956f9ba22557210336266
--e5bbc699435d08e8f60e466e40f558f80c7e294956f9ba22557210336266 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0
Perl Weekly=20
https://perlweekly.com/
You can read the newsletter on the web, if you prefer. https://perlweekly.com/archive/642.html
Hi there,
Have you uploaded a module to CPAN?
If yes then you will have come across PAUSE. One of the PAUSE admins, Neil Bowers, has written handful of blog posts to help anyone understand the internals. I would recommend you start with What happens when you upload to CPAN? ( https://neilb.org/2014/03/11/uploading-01.html ). I have seen beginners fighting with issues related to versioning. You should checkout one more cool post: Semantic Version ( https://neilb.org/2013/07/16/version-numbers.html ). Do you want more? If yes there here is one more post on the same subject by Dave Cross: Version Numbers ( https://perlhacks.com/2016/12/version-numbers ).
During the research, I found an interview ( https://perlmaven.com/neil-bowers ) of Neil Bowers with the chief editor Gabor Szabo. I really enjoyed watching it after a long time.
How do you debug your Perl script?
I belong to old school and still today use the command line switch -d for debugging. I know there are other ways of debugging. Recently I tried using editor Visual Studio Code with the help of colleague at work. Although I liked the visual debugging but for me old is gold. If you are new to debugging then you should checkout the YouTube video ( https://www.youtube.com/watch?v=3DLtAGbUYTnR0 ) by Ricardo Signes.
Ever thought of contributing to Perl?
In old days (15 years for me), it was really complicated subject. Ever since the move to GitHub, i= t is lot easier to contribute now. The official guide ( https://perldoc.perl.org/perlhack ) is out there if you fancy. Paul Evans written a detailed post: Writing a Perl Core Feature ( https://leonerds-code.blogspot.com/2021/02/writing-perl-core-feature.html ).
I am sure you have enough to keep you busy until next week. Last but not least belated Happy Diwali everyone.
-- Your editor: Mohammad S. Anwar.
Articles
=20 Meet The Champion - Packy Anderson https://theweeklychallenge.org/blog/meet-the-champion-2023-10/ =20 Please checkout the interview with the latest champion of The Weekly Challenge. --------------
=20
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
The Weekly Challenge The Weekly Challenge ( https://theweeklychallenge.org/ ) by Mohammad Anwar ( http://www.manwar.org/ ) will help you step out of your comfort-zone. You can even win prize money of $50 Amazon voucher by participating in the weekly challenge. We pick one winner at the end of the month from among all of the contributors during the month. The monthly prize is kindly sponsored by Peter Sergeant of PerlCareers ( https://perl.careers/ ). =20 The Weekly Challenge - 243 https://theweeklychallenge.org/blog/perl-weekly-challenge-243 =20 Welcome to a new week with a couple of fun tasks: "Reverse Pairs" and "Floor Sum". If you are new to the weekly challenge, why not join us and have fun every week? For more information, please read the FAQ ( https://theweeklychallenge.org/faq ). --------------
=20 RECAP - The Weekly Challenge - 242 https://theweeklychallenge.org/blog/recap-challenge-242 =20 Enjoy a quick recap of last week's contributions by Team PWC dealing with the "Missing Members" and "Flip Matrix" tasks in Perl and Raku. You will find plenty of solutions to keep you busy. --------------
=20 Missing Flips http://rabbitfarm.com/cgi-bin/blosxom/perl/2023/11/11 =20 Clever use of map can be fun. Really enjoyed the post, thanks for sharing= . --------------
=20 TWC242 https://deadmarshal.blogspot.com/2023/11/twc242.html =20 Once again CPAN is handy to get the job done elegantly. Keep it up great work. --------------
=20 Missing Matrix https://raku-musings.com/missing-matrix.html =20 Lots of Raku magic to solve the task with bonus documentation. Thanks for your contributions. --------------
=20 Missing Members https://variousandsundry.com/missing-members-the-live-blog/ =20 Unique approach to deal with the weekly task. Have fun. --------------
=20 Flip the Script https://dev.to/boblied/pwc-242-flip-the-script-3p9k =20 This week we have more than Perl problem. Very interesting and thanks for sharing. --------------
=20 Like The Deserts Miss The Rain https://jacoby.github.io/2023/11/07/like-the-deserts-miss-the-rain-weekly= -challenge-242.html =20 Back to blogging after a gap, we missed you. So much about week 242, interesting. --------------
=20 I'm a Map https://github.com/manwar/perlweeklychallenge-club/tree/master/challenge-= 242/ianrifkin#readme =20 Detailed task breakdown with exceptional discussion. Highly recommended. --------------
=20 Missing Reversed Inversions https://github.com/manwar/perlweeklychallenge-club/blob/master/challenge-= 242/jo-37/Blog.md =20 Nice demo of PDL, you really don't want to miss it. Thanks for sharing. --------------
=20 Perl Weekly Challenge 242: Missing Members https://blogs.perl.org/users/laurent_r/2023/11/perl-weekly-challenge-242-= missing-members.html =20 Having Perl and Raku solutions side-by-side is fun to learn new tricks. Keep it up great work. --------------
=20 Perl Weekly Challenge 242: Flip Matrix https://blogs.perl.org/users/laurent_r/2023/11/perl-weekly-challenge-242-= flip-matrix.html =20 Dealing with matrix using Raku magic can be fun. Bonus you also get Perl version. Well done. --------------
=20 grepping the arrays for fun and profit! https://fluca1978.github.io/2023/11/06/PerlWeeklyChallenge242.html =20 Enjoy the bonus Python contributions. Keep it up great work. --------------
=20 Perl Weekly Challenge 242 https://wlmb.github.io/2023/11/06/PWC242/ =20 Use of bitmasks? The end result is worth checking, Thanks for sharing. --------------
=20 Checking and Flipping https://github.com/MatthiasMuth/perlweeklychallenge-club/tree/muthm-242/c= hallenge-242/matthias-muth#readme =20 Dealing matrix using map is very clever. Clever approach. --------------
=20 Flip the Missing Matrix Members https://packy.dardan.com/2023/11/05/perl-weekly-challenge-flip-the-missin= g-matrix-members/ =20 COAN makes life so easy and fun, You don't want to skip it. --------------
=20 Flipping members http://ccgi.campbellsmiths.force9.co.uk/challenge/242 =20 Task analyis done with detailed discussion. Don't forget to try the solutions. --------------
=20 The Weekly Challenge #242 https://hatley-software.blogspot.com/2023/11/robbie-hatleys-solutions-to-= weekly.html =20 Simple yet elegant solutions with detailed task analysis. Well done and thanks for sharing. --------------
=20 The Weekly Challenge 242 https://rcmcintosh.blog/2023/11/07/isin-ebers-and-matrix-flip-my-raku-lan= guage-solutions-to-the-weekly-challenge-242/ =20 Welcome to blogging and thanks for sharing first well structured blog pos= t. Keep it up great work. --------------
=20 One Of Our Matrices Is Missing https://blog.firedrake.org/archive/2023/11/The_Weekly_Challenge_242__One_= Of_Our_Matrices_Is_Missing.html =20 Thanks for choosing Ruby/Kotlin magic in the blog post. Highly recommende= d. --------------
=20
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
Rakudo
=20 2023.45 ConfVids https://rakudoweekly.blog/2023/11/06/2023-45-confvids/ =20 =20 --------------
=20
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
Weekly collections
=20 NICEPERL's lists http://niceperl.blogspot.com/ =20 Great CPAN modules released last week ( https://niceperl.blogspot.com/2023/11/cdlxix-11-great-cpan-modules-releas ed.html ). --------------
=20
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
lweekly&utm_medium=3Dperlweekly">Perl Jobs by Perl Careers
=20 UK Remote Perl Programmer for Leading Enterprise Tech Publication https://job.perl.careers/lqb =20 Our client is a global leader in the enterprise technology publishing industry, providing audiences worldwide with stimulating perspectives and unique news on enterprise tech that matters today and tomorrow. They are seeking a talented Perl programmer to manage the full life-cycle of software projects on a remote basis. --------------
=20 Modern Perl and positive team vibes. UK Remote Perl role https://job.perl.careers/w2y =20 If you=E2=80=99re a Modern Perl developer in the UK with TypeScript or No= de and you=E2=80=99re searching for a team of dynamos, we=E2=80=99ve found the p= erfect place for you. This award-winning company may be newer, but the combined experience of their people is impressive. No doubt this is one of the many reasons their AI recruitment marketing business has taken off! --------------
=20 Perl Programmer Opportunity - Join a Prominent Tech Publishing Powerhouse= in the Philippines https://job.perl.careers/red =20 Our UK-based client is a global leader in the enterprise technology publishing industry, providing audiences worldwide with stimulating perspectives and unique news on enterprise tech that matters today and tomorrow. They are currently seeking a passionate and exceptional Perl programmer based in the Philippines to join their team. --------------
=20 Adventure! Senior Perl roles in Malaysia, Dubai and Malta https://job.perl.careers/h3m =20 Clever folks know that if you=E2=80=99re lucky, you can earn a living and= have an adventure at the same time. Enter our international client: online trading is their game, and they=E2=80=99re looking for Perl people with p= assion, drive, and an appreciation for new experiences. --------------
=20
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
You joined the Perl Weekly to get weekly e-mails about the Perl programming= language and related topics.
Want to see more? See the archives ( https://perlweekly.com/archive/ ) of a= ll the issues.
Reading this as a non-subscriber? Join us free of charge. https://perlweekl= y.com/
(C) Copyright Gabor Szabo https://szabgab.com/ The articles are copyright the respective authors.
You can freely redistribute this message if you keep the whole message intact, including the Copyright notice and this text.
If you don't want to receive mails any more you can unsubscribe here: https://perlweekly.com/unsubscribe.html
--e5bbc699435d08e8f60e466e40f558f80c7e294956f9ba22557210336266 Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=utf-8 Mime-Version: 1.0
1.0, user-scalable=3Dyes"> Perl Weekly Issue #642 - 2023-11-13 - Perl and PAUSE
color=3D"#ffffff">
background-color: #004065; color: #FFF; text-decoration: none; font-size: 40px; font-weight: bold; font-family: Gadget; =20 border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border: 1px solid #000; padding: 10px; ">Perl Weekly =20
style=3D"border-bottom: 1px solid #ccc; padding-bottom: 8px; font-size: 18px;"> Issue #642 - 2023-11-13 - Perl and PAUSE
latest | https://perlweekly.com/archive">archive | edited by anwar.org/">Mohammad S. Anwar
=20
|
=20 Hi there,
=20 Have you uploaded a module to CPAN?
=20 If yes then you will have come across PAUSE. One o= f the PAUSE admins, Neil Bowers, has writ= ten handful of blog posts to help anyone understand the internals. I would = recommend you start with 01.html">What happens when you upload to CPAN?. I have seen beginners f= ighting with issues related to versioning. You should checkout one more coo= l post: Seman= tic Version. Do you want more? If yes there here is on= e more post on the same subject by Dave Cross: https://perlhacks.com/2016/12/version-numbers">Version Numbers.
=20 During the research, I found an il-bowers">interview of Neil Bowers with the chief edi= tor Gabor Szabo. I really enjoyed watching it after a long= time.
=20 How do you debug your Perl script?
=20 I belong to old school and still today use the command line switch = -d for debugging. I know there are other ways of debugging= . Recently I tried using editor Visual Studio Code with th= e help of colleague at work. Although I liked the visual debugging but for = me old is gold. If you are new to debugging then you shoul= d checkout the Yo= uTube video by Ricardo Signes.
=20 Ever thought of contributing to Perl?
=20 In old days (15 years for me), it was really complicated subject. E= ver since the move to GitHub>, it is lot easier to contribute now. The official doc.perl.org/perlhack">guide is out there if you fancy. Paul Ev= ans written a detailed post: spot.com/2021/02/writing-perl-core-feature.html">Writing a Perl Core Featur= e.
=20 I am sure you have enough to keep you busy until next week. Last bu= t not least belated Happy Diwali everyone.
=20 Your editor: Mohammad S. Anwar.
| mg/mohammad_anwar.png" /> |
|
Articles =20 | =20 | m/img/mohammad_anwar.png" title=3D"Mohammad S. Anwar" width=3D"80" /> | =20 | =20 =20
The Weekly Chall= enge =20 nge.org/">The Weekly Challenge by Mo= hammad Anwar will help you step out of your comfort-zone. You can even = win prize money of $50 Amazon voucher by participating in the weekly challe= nge. We pick one winner at the end of the month from among all of the contr= ibutors during the month. The monthly prize is kindly sponsored by Peter Se= rgeant of PerlCareers. =20 | =20 | m/img/mohammad_anwar.png" title=3D"Mohammad S. Anwar" width=3D"80" /> | =20 | =20 | m/img/mohammad_anwar.png" title=3D"Mohammad S. Anwar" width=3D"80" /> | =20 | =20 | m/img/adam_russel.png" title=3D"Adam Russell" width=3D"80" /> | =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 | m/img/dave_jacoby.jpg" title=3D"Dave Jacoby" width=3D"80" /> | =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20
Rakudo =20 | =20 | m/img/elizabeth_mattijsen.png" title=3D"Elizabeth Mattijsen" width=3D"80" /= > | =20 | =20 =20
Weekly collectio= ns =20 | =20 =20 | =20 =20
e_perlweekly_utm_campaign_perlweekly_utm_medium_perlweekly_perl_jobs_by_per= l_careers_a_" /> =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20
|
--e5bbc699435d08e8f60e466e40f558f80c7e294956f9ba22557210336266--
--===============1149738185== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline
_______________________________________________ Hangout mailing list Hangout-at-nylxs.com http://lists.mrbrklyn.com/mailman/listinfo/hangout
--===============1149738185==--
--===============1149738185== Content-Type: multipart/alternative; boundary=e5bbc699435d08e8f60e466e40f558f80c7e294956f9ba22557210336266
--e5bbc699435d08e8f60e466e40f558f80c7e294956f9ba22557210336266 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0
Perl Weekly=20
https://perlweekly.com/
You can read the newsletter on the web, if you prefer. https://perlweekly.com/archive/642.html
Hi there,
Have you uploaded a module to CPAN?
If yes then you will have come across PAUSE. One of the PAUSE admins, Neil Bowers, has written handful of blog posts to help anyone understand the internals. I would recommend you start with What happens when you upload to CPAN? ( https://neilb.org/2014/03/11/uploading-01.html ). I have seen beginners fighting with issues related to versioning. You should checkout one more cool post: Semantic Version ( https://neilb.org/2013/07/16/version-numbers.html ). Do you want more? If yes there here is one more post on the same subject by Dave Cross: Version Numbers ( https://perlhacks.com/2016/12/version-numbers ).
During the research, I found an interview ( https://perlmaven.com/neil-bowers ) of Neil Bowers with the chief editor Gabor Szabo. I really enjoyed watching it after a long time.
How do you debug your Perl script?
I belong to old school and still today use the command line switch -d for debugging. I know there are other ways of debugging. Recently I tried using editor Visual Studio Code with the help of colleague at work. Although I liked the visual debugging but for me old is gold. If you are new to debugging then you should checkout the YouTube video ( https://www.youtube.com/watch?v=3DLtAGbUYTnR0 ) by Ricardo Signes.
Ever thought of contributing to Perl?
In old days (15 years for me), it was really complicated subject. Ever since the move to GitHub, i= t is lot easier to contribute now. The official guide ( https://perldoc.perl.org/perlhack ) is out there if you fancy. Paul Evans written a detailed post: Writing a Perl Core Feature ( https://leonerds-code.blogspot.com/2021/02/writing-perl-core-feature.html ).
I am sure you have enough to keep you busy until next week. Last but not least belated Happy Diwali everyone.
-- Your editor: Mohammad S. Anwar.
Articles
=20 Meet The Champion - Packy Anderson https://theweeklychallenge.org/blog/meet-the-champion-2023-10/ =20 Please checkout the interview with the latest champion of The Weekly Challenge. --------------
=20
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
The Weekly Challenge The Weekly Challenge ( https://theweeklychallenge.org/ ) by Mohammad Anwar ( http://www.manwar.org/ ) will help you step out of your comfort-zone. You can even win prize money of $50 Amazon voucher by participating in the weekly challenge. We pick one winner at the end of the month from among all of the contributors during the month. The monthly prize is kindly sponsored by Peter Sergeant of PerlCareers ( https://perl.careers/ ). =20 The Weekly Challenge - 243 https://theweeklychallenge.org/blog/perl-weekly-challenge-243 =20 Welcome to a new week with a couple of fun tasks: "Reverse Pairs" and "Floor Sum". If you are new to the weekly challenge, why not join us and have fun every week? For more information, please read the FAQ ( https://theweeklychallenge.org/faq ). --------------
=20 RECAP - The Weekly Challenge - 242 https://theweeklychallenge.org/blog/recap-challenge-242 =20 Enjoy a quick recap of last week's contributions by Team PWC dealing with the "Missing Members" and "Flip Matrix" tasks in Perl and Raku. You will find plenty of solutions to keep you busy. --------------
=20 Missing Flips http://rabbitfarm.com/cgi-bin/blosxom/perl/2023/11/11 =20 Clever use of map can be fun. Really enjoyed the post, thanks for sharing= . --------------
=20 TWC242 https://deadmarshal.blogspot.com/2023/11/twc242.html =20 Once again CPAN is handy to get the job done elegantly. Keep it up great work. --------------
=20 Missing Matrix https://raku-musings.com/missing-matrix.html =20 Lots of Raku magic to solve the task with bonus documentation. Thanks for your contributions. --------------
=20 Missing Members https://variousandsundry.com/missing-members-the-live-blog/ =20 Unique approach to deal with the weekly task. Have fun. --------------
=20 Flip the Script https://dev.to/boblied/pwc-242-flip-the-script-3p9k =20 This week we have more than Perl problem. Very interesting and thanks for sharing. --------------
=20 Like The Deserts Miss The Rain https://jacoby.github.io/2023/11/07/like-the-deserts-miss-the-rain-weekly= -challenge-242.html =20 Back to blogging after a gap, we missed you. So much about week 242, interesting. --------------
=20 I'm a Map https://github.com/manwar/perlweeklychallenge-club/tree/master/challenge-= 242/ianrifkin#readme =20 Detailed task breakdown with exceptional discussion. Highly recommended. --------------
=20 Missing Reversed Inversions https://github.com/manwar/perlweeklychallenge-club/blob/master/challenge-= 242/jo-37/Blog.md =20 Nice demo of PDL, you really don't want to miss it. Thanks for sharing. --------------
=20 Perl Weekly Challenge 242: Missing Members https://blogs.perl.org/users/laurent_r/2023/11/perl-weekly-challenge-242-= missing-members.html =20 Having Perl and Raku solutions side-by-side is fun to learn new tricks. Keep it up great work. --------------
=20 Perl Weekly Challenge 242: Flip Matrix https://blogs.perl.org/users/laurent_r/2023/11/perl-weekly-challenge-242-= flip-matrix.html =20 Dealing with matrix using Raku magic can be fun. Bonus you also get Perl version. Well done. --------------
=20 grepping the arrays for fun and profit! https://fluca1978.github.io/2023/11/06/PerlWeeklyChallenge242.html =20 Enjoy the bonus Python contributions. Keep it up great work. --------------
=20 Perl Weekly Challenge 242 https://wlmb.github.io/2023/11/06/PWC242/ =20 Use of bitmasks? The end result is worth checking, Thanks for sharing. --------------
=20 Checking and Flipping https://github.com/MatthiasMuth/perlweeklychallenge-club/tree/muthm-242/c= hallenge-242/matthias-muth#readme =20 Dealing matrix using map is very clever. Clever approach. --------------
=20 Flip the Missing Matrix Members https://packy.dardan.com/2023/11/05/perl-weekly-challenge-flip-the-missin= g-matrix-members/ =20 COAN makes life so easy and fun, You don't want to skip it. --------------
=20 Flipping members http://ccgi.campbellsmiths.force9.co.uk/challenge/242 =20 Task analyis done with detailed discussion. Don't forget to try the solutions. --------------
=20 The Weekly Challenge #242 https://hatley-software.blogspot.com/2023/11/robbie-hatleys-solutions-to-= weekly.html =20 Simple yet elegant solutions with detailed task analysis. Well done and thanks for sharing. --------------
=20 The Weekly Challenge 242 https://rcmcintosh.blog/2023/11/07/isin-ebers-and-matrix-flip-my-raku-lan= guage-solutions-to-the-weekly-challenge-242/ =20 Welcome to blogging and thanks for sharing first well structured blog pos= t. Keep it up great work. --------------
=20 One Of Our Matrices Is Missing https://blog.firedrake.org/archive/2023/11/The_Weekly_Challenge_242__One_= Of_Our_Matrices_Is_Missing.html =20 Thanks for choosing Ruby/Kotlin magic in the blog post. Highly recommende= d. --------------
=20
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
Rakudo
=20 2023.45 ConfVids https://rakudoweekly.blog/2023/11/06/2023-45-confvids/ =20 =20 --------------
=20
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
Weekly collections
=20 NICEPERL's lists http://niceperl.blogspot.com/ =20 Great CPAN modules released last week ( https://niceperl.blogspot.com/2023/11/cdlxix-11-great-cpan-modules-releas ed.html ). --------------
=20
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
lweekly&utm_medium=3Dperlweekly">Perl Jobs by Perl Careers
=20 UK Remote Perl Programmer for Leading Enterprise Tech Publication https://job.perl.careers/lqb =20 Our client is a global leader in the enterprise technology publishing industry, providing audiences worldwide with stimulating perspectives and unique news on enterprise tech that matters today and tomorrow. They are seeking a talented Perl programmer to manage the full life-cycle of software projects on a remote basis. --------------
=20 Modern Perl and positive team vibes. UK Remote Perl role https://job.perl.careers/w2y =20 If you=E2=80=99re a Modern Perl developer in the UK with TypeScript or No= de and you=E2=80=99re searching for a team of dynamos, we=E2=80=99ve found the p= erfect place for you. This award-winning company may be newer, but the combined experience of their people is impressive. No doubt this is one of the many reasons their AI recruitment marketing business has taken off! --------------
=20 Perl Programmer Opportunity - Join a Prominent Tech Publishing Powerhouse= in the Philippines https://job.perl.careers/red =20 Our UK-based client is a global leader in the enterprise technology publishing industry, providing audiences worldwide with stimulating perspectives and unique news on enterprise tech that matters today and tomorrow. They are currently seeking a passionate and exceptional Perl programmer based in the Philippines to join their team. --------------
=20 Adventure! Senior Perl roles in Malaysia, Dubai and Malta https://job.perl.careers/h3m =20 Clever folks know that if you=E2=80=99re lucky, you can earn a living and= have an adventure at the same time. Enter our international client: online trading is their game, and they=E2=80=99re looking for Perl people with p= assion, drive, and an appreciation for new experiences. --------------
=20
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
You joined the Perl Weekly to get weekly e-mails about the Perl programming= language and related topics.
Want to see more? See the archives ( https://perlweekly.com/archive/ ) of a= ll the issues.
Reading this as a non-subscriber? Join us free of charge. https://perlweekl= y.com/
(C) Copyright Gabor Szabo https://szabgab.com/ The articles are copyright the respective authors.
You can freely redistribute this message if you keep the whole message intact, including the Copyright notice and this text.
If you don't want to receive mails any more you can unsubscribe here: https://perlweekly.com/unsubscribe.html
--e5bbc699435d08e8f60e466e40f558f80c7e294956f9ba22557210336266 Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=utf-8 Mime-Version: 1.0
1.0, user-scalable=3Dyes"> Perl Weekly Issue #642 - 2023-11-13 - Perl and PAUSE
color=3D"#ffffff">
background-color: #004065; color: #FFF; text-decoration: none; font-size: 40px; font-weight: bold; font-family: Gadget; =20 border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border: 1px solid #000; padding: 10px; ">Perl Weekly =20
style=3D"border-bottom: 1px solid #ccc; padding-bottom: 8px; font-size: 18px;"> Issue #642 - 2023-11-13 - Perl and PAUSE
latest | https://perlweekly.com/archive">archive | edited by anwar.org/">Mohammad S. Anwar
=20
|
=20 Hi there,
=20 Have you uploaded a module to CPAN?
=20 If yes then you will have come across PAUSE. One o= f the PAUSE admins, Neil Bowers, has writ= ten handful of blog posts to help anyone understand the internals. I would = recommend you start with 01.html">What happens when you upload to CPAN?. I have seen beginners f= ighting with issues related to versioning. You should checkout one more coo= l post: Seman= tic Version. Do you want more? If yes there here is on= e more post on the same subject by Dave Cross: https://perlhacks.com/2016/12/version-numbers">Version Numbers.
=20 During the research, I found an il-bowers">interview of Neil Bowers with the chief edi= tor Gabor Szabo. I really enjoyed watching it after a long= time.
=20 How do you debug your Perl script?
=20 I belong to old school and still today use the command line switch = -d for debugging. I know there are other ways of debugging= . Recently I tried using editor Visual Studio Code with th= e help of colleague at work. Although I liked the visual debugging but for = me old is gold. If you are new to debugging then you shoul= d checkout the Yo= uTube video by Ricardo Signes.
=20 Ever thought of contributing to Perl?
=20 In old days (15 years for me), it was really complicated subject. E= ver since the move to GitHub>, it is lot easier to contribute now. The official doc.perl.org/perlhack">guide is out there if you fancy. Paul Ev= ans written a detailed post: spot.com/2021/02/writing-perl-core-feature.html">Writing a Perl Core Featur= e.
=20 I am sure you have enough to keep you busy until next week. Last bu= t not least belated Happy Diwali everyone.
=20 Your editor: Mohammad S. Anwar.
| mg/mohammad_anwar.png" /> |
|
Articles =20 | =20 | m/img/mohammad_anwar.png" title=3D"Mohammad S. Anwar" width=3D"80" /> | =20 | =20 =20
The Weekly Chall= enge =20 nge.org/">The Weekly Challenge by Mo= hammad Anwar will help you step out of your comfort-zone. You can even = win prize money of $50 Amazon voucher by participating in the weekly challe= nge. We pick one winner at the end of the month from among all of the contr= ibutors during the month. The monthly prize is kindly sponsored by Peter Se= rgeant of PerlCareers. =20 | =20 | m/img/mohammad_anwar.png" title=3D"Mohammad S. Anwar" width=3D"80" /> | =20 | =20 | m/img/mohammad_anwar.png" title=3D"Mohammad S. Anwar" width=3D"80" /> | =20 | =20 | m/img/adam_russel.png" title=3D"Adam Russell" width=3D"80" /> | =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 | m/img/dave_jacoby.jpg" title=3D"Dave Jacoby" width=3D"80" /> | =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20
Rakudo =20 | =20 | m/img/elizabeth_mattijsen.png" title=3D"Elizabeth Mattijsen" width=3D"80" /= > | =20 | =20 =20
Weekly collectio= ns =20 | =20 =20 | =20 =20
e_perlweekly_utm_campaign_perlweekly_utm_medium_perlweekly_perl_jobs_by_per= l_careers_a_" /> =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20 | =20 =20
|
--e5bbc699435d08e8f60e466e40f558f80c7e294956f9ba22557210336266--
--===============1149738185== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline
_______________________________________________ Hangout mailing list Hangout-at-nylxs.com http://lists.mrbrklyn.com/mailman/listinfo/hangout
--===============1149738185==--
|
|