@maehw once again #Perl shows how great it is by already having its own domain.

Two weeks ago I ranted a bit about PHP composer. So I wrote about it and vented. Read how my evening went:

https://wesley.schwengle.net/article/i-just-wanted-php-8-2-composer-had-other-ideas-12e3/

Never thought docker was gonna be a used to scaffold a project, but why not?

#php #laravel #livewire #perl #scaffolding #rant #vent

Today I join an illustrious group of #Perl hackers at the Perl Toolchain Summit in Vienna. I'm mainly here as a local organizer, but I also plan to discuss and hack on a few things, eg containerizing `pause`.

Also, a blog post on the web design process, as well as bugs and lessons learned.
https://blog.k3can.us/posts/2026/apr/everham-test/

#webcrafting #everyham #perl #dancer2 #smallweb #selfhosted

The EveryHam Amateur Radio Contest Website is Online! - k3can blog

@vnikolov @janneke @spook I do wish Real Programmers™ would stick to #Perl, which was written especially for (and by) them.
Little update to Sietima, my "mailing list manager construction kit"

The new feature is a role/plugin to remove headers from incoming messages; turns out, if you preserve DKIM/ARC signatures from incoming messages, recipient servers may get quite confused!

#perl
Sietima-1.1.5

minimal mailing list manager

MetaCPAN

Updated my crusty but working #Perl module that computes "barycentric musical interval space."

"What?" you may ask... Good question!

"[The monograph] presents a novel approach to music theory by representing chords as points within a geometric 'simplicial grid,' based on their internal interval structures rather than pitch classes." Whew.

https://www.iuniverse.com/BookStore/BookDetails/197525-A-New-Geometry-of-Musical-Chords-in-Interval-Representation-Dissonance-Enrichment-Degeneracy-and-Complementation

https://metacpan.org/release/GENE/Music-Interval-Barycentric-0.0403

A New Geometry of Musical Chords in Interval Representation: Dissonance, Enrichment, Degeneracy and Complementation

This monograph covers a fresh and original look at musical chords. The idea emanates from the fact that an intervallic representation of the chord leads naturally to a discrete barycentric condition. This condition itself leads to a convenient geometric representation of the chordal space as a simpl

iUniverse

Perl — зря забытый язык программирования?

В настоящее время Perl обделяется вниманием: о нём мало что и где можно услышать и увидеть. При этом Perl действительно уникальный язык программирования, который может предложить что‑то новое, и особенности которого сильно выделяют его среди других. И сегодня я вам о нём поведаю, а также расскажу о его фичах с примерами его применения.

https://habr.com/ru/articles/1025824/?utm_source=habrahabr&utm_medium=rss&utm_campaign=1025824

#perl #обучение #regex #regexp #язык_программирования #обзор_языка

Perl — зря забытый язык программирования?

В настоящее время Perl обделяется вниманием: о нём мало что и где можно услышать и увидеть. При этом Perl действительно уникальный язык программирования, который может предложить что-то новое, и...

Хабр
#Perl @PerlWChallenge 370 Popular Word and Scramble String https://wlmb.github.io/2026/04/20/PWC370/
#noxp
Perl Weekly Challenge 370.

Popular Word and Scramble String

#Perl @PerlWChallenge 370 Task 2: Scramble String
#noxp
```
perl -MList::Util=none -E '
for my($v,$w)(@ARGV){say "$v, $w -> ",c($v, $w)?"T":"F";}sub f($x,$y,$z){substr($x,$y,$z)}sub c($v,
$w){return 1if$v eq$w;my%l;++$l{$_}for split"",$v;--$l{$_}for split"",$w;return 0unless none{$_}
values %l;my$s=length$v;for my$i(1..$s-1){return 1if(c(f($v,0,$i),f($w,0,$i))&&c(f($v,$i,$s-$i),
f($w,$i,$s-$i)))||(c(f($v,$i,$s-$i),f($w,0,$s-$i))&&c(f($v,0,$i),f($w,$s-$i,$i)));}return 0;}
'
```