Skip to main content

LPW 2024: John Napiorkowski; Chairman of AI Perl Committee - Using Catalyst Per Context Components submitted by /u/briandfoy
[link] [comments]


LPW 2024: Ian Boddison (Bod) - Perl, AI and Your System submitted by /u/briandfoy
[link] [comments]


LPW 2024: Andrew Solomon - Perl Talent Management: How Logicly attracts, develops, and retains Perl developers submitted by /u/briandfoy
[link] [comments]


LPW 2024: Max Maischein (Corion) - Managing recent files from Perl submitted by /u/briandfoy
[link] [comments]


Vector Databases in Perl submitted by /u/OvidPerl
[link] [comments]


LPW 2024: Dr. Luis Mochán: Simulating Meta-Materials using Photonic in Perl submitted by /u/briandfoy
[link] [comments]


LPW 2024: Paul Cochrane (ptc) - Fixing a fifteen-year-old curve fit bug submitted by /u/briandfoy
[link] [comments]


A link site of your very own - Perl Hacks submitted by /u/davorg
[link] [comments]


LWP 2024: Salve J. Nilsen (sjn) - Metadata, CPAN, FOSS Supply Chains, and EU's Cyber Resilience Act submitted by /u/briandfoy
[link] [comments]


Register for Randal Schwartz's "Half My Life with Perl" livestream, December 14 submitted by /u/briandfoy
[link] [comments]


London Perl Workshop 2024 - Preview : Perl Hacks submitted by /u/davorg
[link] [comments]


London Perl & Raku Workshop: 10 Days To Go submitted by /u/leejo
[link] [comments]


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]