2025-10-06 15:06:18
I brain coded a static image gallery in a few hours using #Perl #vibecoding https://domm.plix.at/perl/20…
I brain coded a static image gallery in a few hours using #Perl #vibecoding https://domm.plix.at/perl/20…
“Perl’s early success was its own undoing. It became the default tool for the first web boom, and in doing so, it took the brunt of that era’s chaos. Then, just as it began to mature, its versioning story confused the industry into thinking it had stalled.” #Perl
RE: #PERL to the
#AdventOfCode Day 5: My stupid part 1 solution was too slow (because I checked each ingridient instead of compare the ranges). After fixing that it was fast and correct. I have a plan for part 2, but $job to do, so let's see when I get a round tuit (to quote an old #Perl saying).
@… I've sent a bunch of people a link to #perl)
For day 3 of #AdventOfCode I outsmarted myself by using `each` on an array to get the index and the value, but forgot that #Perl does not reset the counter when you exit the loop early. (It worked for part 1, though..). After switching to a stupid c-style for loop it was easy (because I agai…
Today I used the venerable rename.pl tool to fix a bunch of filenames (from 1.png, 10.png etc to lw001.png): `rename 's/^(\d )\.png/sprintf("lwd.png", $1)/e' *.png` #Perl