Consider the following: Shutting the heck up and staying out of other peoples business.

🙃

#noxp

#Perl @PerlWChallenge 373 Equal List and List Division https://wlmb.github.io/2026/05/11/PWC373/
#noxp
Perl Weekly Challenge 373.

Equal List and List Division

#Perl @PerlWChallenge 373 Task 2: List Division
#noxp
```
perl -E '
for my($l,$n)(@ARGV){$s=(@L=split" ",$l)/$n; $r=@l%$n;say "$l, $n -> ",
$n>@L?-1:map{"(".join(" ",splice(@L,0,$s+($_<=$r))).")"}(1..$n)}
' "1 2 3 4 5" 2 "1 2 3 4 5 6" 3 "1 2 3" 2 "1 2 3 4 5 6 7 8 9 10" 5 \
"1 2 3" 4 "72 57 89 55 36 84 10 95 99 35" 7
```
#Perl @PerlWChallenge 373 Task 1: Equal List
#noxp
```
perl -E '
for my($x,$y)(@ARGV){say"$x; $y -> ",f($x)eq f($y)?"T":"F";}sub f($x){join"",split/\s*,\s*/,$x}
' "a, bc" "ab, c" "a, b, c" "a, bc" "a, bc" "a, c, b" "ab, c, " ", a, bc" "p, e, r, l" "perl"
```
#Perl @PerlWChallenge 372 Rearrange Spaces and Largest Substring https://wlmb.github.io/2026/05/04/PWC372/
#noxp
Perl Weekly Challenge 372.

Rearrange Spaces and Largest Substring

#Perl @PerlWChallenge 372 Task 2: Largest Substring
#noxp
```
perl -MList::Util=max -E '
for(@ARGV){$i=$_;say "$_ -> ", max map {$i=~m/$_(.*)$_/?length($1):-1} split "";}
' aaaaa abcdeba abbc abcaacbc laptop
```
#Perl @PerlWChallenge 372 Task 1: Rearrange Spaces
#noxp
```
perl -E '
for(@ARGV){$i=$_;@w=split" ";$l=0;$l+=length$1 while s/(\s+)//;($s,$r)=@w>1?
($l/(@w-1),$l%(@w-1)):(0,$l);$j=" "x$s;say "\"$i\" -> \"", join($j,@w)," "x$r,"\"";}
' " challenge " "coding is fun" "a b c d" \
" team pwc " " the weekly challenge "
```
I want to watch the pit but i've been told it'll be triggering to me given *recent life events* so i will hold off, but i really awnt to watch it #noxp
I’m curious about the cw for eye contact thing. Anyone who understands it care to explain? #noxp

RE: https://ec.social-network.europa.eu/@EUCommission/116486797844283489

I know "Meta bad"
but
Surely it's the parent's responsibility to monitor what sites/services children (Especially <13) are signing up for.

And no, the solution is not age-check verification, we've seen that it can be simply bypassed with great ease (Eg. drawing a face on a thumb seems to work)

#noxp