#noxp — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #noxp, aggregated by home.social.
-
#Perl @PerlWChallenge 373 Equal List and List Division https://wlmb.github.io/2026/05/11/PWC373/
#noxp -
#Perl @PerlWChallenge 373 Equal List and List Division https://wlmb.github.io/2026/05/11/PWC373/
#noxp -
#Perl @PerlWChallenge 373 Equal List and List Division https://wlmb.github.io/2026/05/11/PWC373/
#noxp -
#Perl @PerlWChallenge 373 Equal List and List Division https://wlmb.github.io/2026/05/11/PWC373/
#noxp -
CW: Perl Weekly Challenge 373T2
#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
``` -
CW: Perl Weekly Challenge 373T2
#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
``` -
CW: Perl Weekly Challenge 373T2
#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
``` -
CW: Perl Weekly Challenge 373T2
#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
``` -
CW: Perl Weekly Challenge 373T2
#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
``` -
CW: Perl Weekly Challenge 373T1
-
CW: Perl Weekly Challenge 373T1
-
CW: Perl Weekly Challenge 373T1
-
CW: Perl Weekly Challenge 373T1
-
CW: Perl Weekly Challenge 373T1
-
#Perl @PerlWChallenge 372 Rearrange Spaces and Largest Substring https://wlmb.github.io/2026/05/04/PWC372/
#noxp -
CW: PWC372T1
#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 arguing with someone about using the R word. what fucking year is it man? #noxp
-
I’m curious about the cw for eye contact thing. Anyone who understands it care to explain? #noxp
-
#Perl @PerlWChallenge 371 Missing Letter and Subset Equilibrium https://wlmb.github.io/2026/04/27/PWC371/
#noxp -
CW: PWC371T2
#Perl @PerlWChallenge 371 Task 2: Subset Equilibrium
#noxp
```
perl -MAlgorithm::Combinatorics=subsets -MList::Util=sum -E '
for(@ARGV){@d=split" ";@i=0..@d-1;@r=map{"[@d[@$_]]"}grep{1<@$_<@d
&&sum(@$_)+@$_==sum @d[@$_]}subsets(\@i);say"$_ -> [ @r ]";}
' -- "2 1 4 3" "3 0 3 0" "5 1 1 1" "3 -1 4 2" "10 20 30 40"
``` -
CW: PWC371T1
-
We’re in the last few weeks of the weather being such that you can go for a walk in a jacket and have the sun feel nice and warming but not hot as it hits you. Unfortunately allergies have me crying. #noxp
-
-
-
-
today was going to be a hoka day but my new work boots just arrived #noxp
-
-
-
-
-
There’s a foamer on this N train! Nobody in nobody but I hear a radio on the B1 channel, and it’s not mine. I know what you are #noxp
-
#Perl @PerlWChallenge 370 Popular Word and Scramble String https://wlmb.github.io/2026/04/20/PWC370/
#noxp -
CW: PWC370T2
#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;}
'
``` -
CW: Perl Weekly Challenge 370T1
#Perl @PerlWChallenge 370 Task 1: Popular Word
#noxp
```
perl -MList::UtilsBy=max_by -E '
for my($p,$b)(@ARGV){my(%b,%w);++$b{$_} for split" ",$b;++$w{$_}for grep
{!$b{$_}}split/[^a-z]+/,lc $p;say "p=$p b=$b -> ", max_by{$w{$_}}keys %w;}
' \
"Bob hit a ball, the hit BALL flew far after it was hit." "hit" \
"Apple? apple! Apple, pear, orange, pear, apple, orange." "apple pear" \
"A. a, a! A. B. b. b." "b" \
"Ball.ball,ball:apple!apple.banana" "ball" ``` -
#DavidHasselhoff #EddieCibrian
Baywatch Nights 2x01 - Terror of the Deep
#RandomBaywatch #lvdlpv #Baywatch #BaywatchNights #TerrorOfTheDeep #Ocean #TheHoff #ScoobyHoff #Beach #Sexy #Swimsuit #Shirtless #Stud #HotMen #Art #Fashion #90s #SexyMen #Hunks #Mystery #Diving #SCUBA #WaterSports #noxp
-
#StevenEckholdt #AlexandraPaul
One of the many Berk + Schwartz projects that went nowhere.
Daytona Beach (Unsold TV Pilot) From the creators of Baywatch
#RandomBaywatch #lvdlpv #Baywatch #BaywatchBabes #Berk #Bonnan #Schwartz #Daytona #noxp #art
( was that #LeeMajors ? )
-
This entire scene was cut from the remastered version.
I have no idea why.
#RichardJaeckel #ConstanceTowers
Season 2 Episode 15 "Sea of Flames"
#RandomBaywatch #lvdlpv #Baywatch #CutScenes #DeletedScenes #SeaOfFlames #sea #ocean #noxp
-
This scene was cut from the remastered version
#BillyWarlock #MichelleNicholas
Season 1 Episode 3 "Heat Wave"
#RandomBaywatch #lvdlpv #Baywatch #Bikini #Sexy #Swimsuit #EyeCandy #noxp #ocean
-
Suuuper late on this announcement. However, let me begin with a short story.
A little over a month ago, my Uncle was Diagnosed with Leukemia for the 4th time. The cancer has made it’s way to his brain and liver. The doctors sent him home and gave him 1-2 weeks to live. He’s still alive to this day, but the writing is on the wall.
In his honor, I have decided to run a charity stream to help find a cure for blood-based cancers like Leukemia through the Leukemia and Lymphoma Society. The money that they receive helps to find a cure on a world-wide scale. Let’s do our best to fight this hidden enemy.
For the content creators out there, I have created a team on Tiltify that you are more than welcome to join to help raise money for the fight. The Arctic Warriors welcome any and all with open arms in this fight. We can do it, let’s #TiltCancer together!
#noxp #VTubers #VTuberUprising #Charity #LLS #Leukemia #Lymphoma
-
-
MST Club runs a night of BBC shows on Sundays, which leads off for some reason with the non-BBC The Man From Uncle! It's starting now! #noxp #MSTClub #BBC #ManFromUncle #ForSomeReason #TV #WatchAlong
-
This is a small instance, but with the new Mastodon version I ran
/tootctl media remove --remove_headers true
And the result: Visited 82452 accounts and removed profile media totaling 14.6 GB
-
A Sustainable Approach to Transport Data Collection
Missed the webinar? Watch the replay!@[email protected] #DT4A #informaltransport #noxp #opendata #opensource #sustainabletransport #TransportData https://tinyurl.com/28x2a7k7