Skip to main content

Perl Community Conference Winter 2024When: December 18th (on the day of the 37th Birthday of Perl)

Where : Virtual

Dress Code : Whatever you want

Price : FREE

How to join : sign up for the mailing list (QR in image), or https://perlcommunity.org/science/#mailing_list)

Wanna know more : https://science.perlcommunity.org/spj#top

submitted by /u/ReplacementSlight413
[link] [comments]


Improving Website Accessibility with Perl and OpenAI submitted by /u/OvidPerl
[link] [comments]


London Perl & Raku Workshop 2024: Call For Volunteers submitted by /u/leejo
[link] [comments]


List of new CPAN distributions – Jul 2024 submitted by /u/perlancar
[link] [comments]


Dancing with Copilot Workspace - Perl Hacks submitted by /u/davorg
[link] [comments]


The History of Object-Oriented Programming - Uncle Bob submitted by /u/Feisty_Tooth_8219
[link] [comments]


I'm Still Lazy · olafalders.com submitted by /u/oalders
[link] [comments]


Glue - Lee Johnson - TPRC 2024 - Lightning Talk submitted by /u/briandfoy
[link] [comments]


Perl KVM - Chad Granum - TPRC 2024 - Lightning Talk submitted by /u/briandfoy
[link] [comments]


Using Perl to do memory management for other languages. Also in CPAN submitted by /u/ReplacementSlight413
[link] [comments]


Per Context Catalyst Component - John Napiorkowski - TPRC 2024 - Lightning Talk submitted by /u/briandfoy
[link] [comments]


Lessons From an Idaho Potato Farmer - David Laulusa - TPRC 2024 - Lightning Talk submitted by /u/briandfoy
[link] [comments]


Second Batch of LPW 2024 Talks Accepted submitted by /u/leejo
[link] [comments]


Fixing a fifteen-year-old curve fit bug submitted by /u/oalders
[link] [comments]


Signature named params · Pull Request #54 · Perl/PPCs submitted by /u/briandfoy
[link] [comments]


Perl Weekly #682 - Perl and CPAN submitted by /u/briandfoy
[link] [comments]


Build a Better README - Jason A. Crome - TPRC 2024 submitted by /u/briandfoy
[link] [comments]


Playwright-Perl - George S. Baugh - TPRC 2024 submitted by /u/briandfoy
[link] [comments]


Deploying Dancer Apps (Addendum) submitted by /u/oalders
[link] [comments]


Reasoning About the Rigor of Perl Programs - George Baugh - TPRC 2024 submitted by /u/briandfoy
[link] [comments]


Going nuts with this regex, looking for second pair of eyesThis works and returns several files:
```
my $image_name = quotemeta('Screenshot-2024-02-23-at-1.05.14');
my $files = $wac->get_all_files_in_dir($dir . '/uploads', qr/$image_name.*\.png$/);

```

This returns no files:
```
my $image_name = quotemeta('Screenshot-2024-02-23-at-1.05.14 AM');
my $files = $wac->get_all_files_in_dir($dir . '/uploads', qr/$image_name.*\.png$/);
```

Note the space in the file name before AM.

This also returns no files:
```
my $image_name = quotemeta('Screenshot-2024-02-23-at-1.05.14\s*AM');
my $files = $wac->get_all_files_in_dir($dir . '/uploads', qr/$image_name.*\.png$/);
```

I tried with and without quotemeta and with and without /Q /E to no avail.

Is it possible the space is some kind of invisible UTF8 character? This is driving me nuts.

**UPDATE:** I jumped on regex101.com and copied and pasted in the file name from the terminal and indeed there appears to be some kind of hidden character that is not whitespace:

https://preview.redd.it/icpdpzxj1gid1.png?width=828&format=png&auto=webp&s=1f78222cdd1d45bc1c5f39d0e48d04e7c57b3f74

Did a hex dump of the string:

00000000 53 63 72 65 65 6E 73 68 - 6F 74 2D 32 30 32 34 2D Screenshot-2024-

00000010 30 32 2D 32 33 2D 61 74 - 2D 31 2E 30 35 2E 31 34 02-23-at-1.05.14

00000020 E2 80 AF 41 4D 2D 31 30 - 32 34 78 36 39 38 2E 70 ...AM-1024x698.p

00000030 6E 67 0A ng.

submitted by /u/anki_steve
[link] [comments]


Which way would you like to refresh the advisory data for CPAN::Audit? · briandfoy cpan-audit · Discussion #61 submitted by /u/briandfoy
[link] [comments]


http://Direct Access to PDF Internals with PDF::Data - Deven Corzine - TPRC 2024 submitted by /u/briandfoy
[link] [comments]


The Once and Future Perl - Damian Conway - TPRC 2024 submitted by /u/briandfoy
[link] [comments]


Perl Weekly #680 - Advent Calendar submitted by /u/briandfoy
[link] [comments]


Actually Portable Perl - Gavin Hayes - TPRC 2024 submitted by /u/briandfoy
[link] [comments]


GitHub - PerlToolsTeam/github_workflows: Some useful (and reusable) GitHub Workflows submitted by /u/briandfoy
[link] [comments]


Party Like It's 19100+e^iπ - Curtis Poe - TPRC 2024 submitted by /u/briandfoy
[link] [comments]


Taming the Unicode Beast - Felipe Gasper (from TPC 2022) submitted by /u/briandfoy
[link] [comments]


goto::file - A batshit crazy idea! - Chad Granum - TPRC 2024 - Lightning Talk submitted by /u/briandfoy
[link] [comments]


Demystifying Perl One-Liners - Walter C. Mankowski - TPRC 2024 submitted by /u/briandfoy
[link] [comments]


Supporting Universal Dependencies in the Tree Editor TrEd - Jan Štěpánek - TPRC 2024 submitted by /u/OODLER577
[link] [comments]


First Batch of LPW 2024 Talks Accepted submitted by /u/leejo
[link] [comments]


DBIx::Class has not been updated for over two years and now has a bus factor of "0". Many would consider this abandonware. submitted by /u/OvidPerl
[link] [comments]


Structure Based Structuring of Unstructured Data - Adam Russell - TPRC 2024 submitted by /u/OODLER577
[link] [comments]


Symbolic Lookup Errorhttps://preview.redd.it/6xs5lg07oned1.png?width=1135&format=png&auto=webp&s=86ff7dd499dc6d008de944fd699c9a52f9b7785b

I am trying to run a POST call in perl, using UserAgent with the agent set as curl,

This Perl throws this error. Do you guys have any idea on how to resolve this?

I have only one installation of Perl.

submitted by /u/alistair_0111
[link] [comments]


Catalyst, macOS and weird request latency (only when using Safari)Just wondering if anyone else has managed to resolve a similar issue to the one I am facing below?

I've installed the latest version of Catalyst under a PerlBrew environment (v5.38.2) and I'm working through the Catalyst manual. I can run the generated script/app_server.pl with no modifications at all and everything seems ok. That is, until I connect Safari to http://0.0.0.0:3000/r/perl/.rss as directed.

For some reason unknown to me, there is a roughly 30-second delay until the page is rendered. There are no Safari extensions enabled and there is no indication of any issue in Catalyst's console-logging.

Console Log

Safari Inspector Network Responses

I do not see this delay when issuing the same request from my Chromium-based browser (Brave). The response is instant.

I know the simple answer is to stop using Safari. Does anyone have any insights to share about what the problem might be with Safari? Other environmental factors: macOS Sonoma 14.5, running Catalyst under zsh in a tmux window.

Thanks.

submitted by /u/Biggity_Biggity_Bong
[link] [comments]


Building an OpenAI chatbot in Corinna submitted by /u/OvidPerl
[link] [comments]