Sigh... I don't know how long it has been set this way but posts on @caint were ordered from "Newest to Oldest" (Newest at top, oldest at the bottom) instead of the natural flow of "Oldest to Newest" - This has been changed now.

Lesson learned. #caint #noxp

#Perl @PerlWChallenge 366 Count Prefixes and Valid Times https://wlmb.github.io/2026/03/27/PWC366/
#noxp
Perl Weekly Challenge 366.

Count Prefixes and Valid Times

#Perl @PerlWChallenge 366 Task 2: Valid Times
#noxp
```
perl -E '
for(@ARGV){say"$_ -> ",c($_);}sub c($t){return v($t)unless$t=~/\?/;my $c=0;for(0..9){
$c+=c($t=~s/\?/$_/r);}return$c;}sub v($t){($h,$m)=split ":", $t;0<=$h<24 && 0<=$m<60;}
' "?2:34" "?4:?0" "??:??" "?3:45" "2?:15"
```
#Perl @PerlWChallenge 366 Task 1: Count Prefixes
#noxp
```
perl -E '
for my($a, $s)(@ARGV){say"$a; $s -> ",0+grep{$s=~/^$_/}split/,\s*/,$a;}
' "a, ap, app, apple, banana" apple \
"cat, dog, fish" bird \
"hello, he, hell, heaven, he" hello \
", code, coding, cod" coding \
"p, pr, pro, prog, progr, progra, program" program
```
Trying to start watching Star Trek (never seen it) and I don't want to get Paramore Super X Plus or whatever, and box sets are like $60?! #noxp
Weird way to talk about procreation but ok #noxp
If you have my zip don't ask my state *clap clap*
If you have my zip don't ask my state *clap clap*
If you can't figure it out, your geocoding is dumb
If you have my zip don't ask my state *clap clap*
#noxp
Just pulled the @_elena card on #WikiGacha 🤣 #noxp
#Perl @PerlWChallenge 365 Alphabet Index Digit Sum and Valid Token Counter https://wlmb.github.io/2026/03/16/PWC365/
#noxp
Perl Weekly Challenge 365.

Alphabet Index Digit Sum and Valid Token Counter