OT: Just looking at clean bad links from busybox.net main page.

"Michael D. Setzer II via busybox" <[email protected]> Thu, 14 May 2026 07:37:10 +1000
Newsgroups gmane.linux.busybox
Message-ID <[email protected]>
Was playing with an AI, and it came up with this.
curl -s https://busybox.net/ | sed -E 
'/href=.*(fixes-|__stable|_stable)/d' > busybox_clean.html

Which seems to remove the bad links, but kept the how to patch?

So did this little script.

cat ./busybox-bad-links.sh 
cd /tmp
curl -s https://busybox.net/ >busybox.html
curl -s https://busybox.net/ | sed -E 
'/href=.*(fixes-|__stable|_stable)|fix.html/d' > busybox_clean.html
diff busybox.html busybox_clean.html
firefox busybox_clean.html

Gets current main page, then filters out the stuff, and then displays 
the resulting file?

At top of main page see.
BusyBox 1.38.0. (git, patches, how to add a patch)

click on git gives.
https://git.busybox.net/busybox/log/?h=1_38_stable
Not Found

The requested URL was not found on this server.

click on patches gives.
https://busybox.net/downloads/fixes-1.38.0/
Not Found

click on how to add a patch gives
which find page
https://busybox.net/fix.html

How to get your patch added to "hot fixes"

If you found a regression or severe bug in busybox, and you have a 
patch for it, and you want to see it added to "hot fixes", please 
rediff your patch against corresponding unmodified busybox source 
and send it to the mailing list. 

From busybox_clean.html shows
BusyBox 1.38.0. 
<a 
href="https://busybox.net/downloads/busybox-1.38.0.tar.bz2">Busy
Box 1.38.0</a>.

 from busybox.html shows.
BusyBox 1.38.0. (git, patches, how to add a patch)
<a 
href="https://busybox.net/downloads/busybox-1.38.0.tar.bz2">Busy
Box 1.38.0</a>.
    (<a 
href="https://git.busybox.net/busybox/log/?h=1_38_stable">git</a>
,
    <a 
href="https://busybox.net/downloads/fixes-1.38.0/">patches</a>,
    <a href="https://busybox.net/fix.html">how to add a patch</a>)


+------------------------------------------------------------+
 Michael D. Setzer II - Computer Science Instructor (Retired)     
 mailto:[email protected]                            
 mailto:[email protected]
 mailto:[email protected]
 Guam - Where America's Day Begins                        
 G4L Disk Imaging Project maintainer 
 http://sourceforge.net/projects/g4l/
+------------------------------------------------------------+