Photos taken inside musical instruments
https://www.dpreview.com/photography/5400934096/probe-lenses-and-focus-stacking-the-secrets-to-incredible-photos-taken-inside-instruments
#6qrrrvq
Photos taken inside musical instruments
https://www.dpreview.com/photography/5400934096/probe-lenses-and-focus-stacking-the-secrets-to-incredible-photos-taken-inside-instruments
(#jjwbgpa) @starletvania@yarn.girlonthemoon.xyz Yes this thing is on š
insert me tapping on a mic is this thing on???
Relive the 90s: Weather Channel Simulator
https://weatherstar.netbymatt.com/
The Who Cares Era
https://dansinker.com/posts/2025-05-23-who-cares/
(#dxhjtna) @bender@twtxt.net Not sure if youāre serious or joking, but: IE3 introduced support for CSS, Mosaic completely ignores it. š Besides, it looks fine in IE3 now as well, after I fixed my CSS bug. š¤Ŗ
Square Theory
https://aaronson.org/blog/square-theory
(#6yqdbla) @movq@www.uninformativ.de Bahahahaha š¤£
(#6yqdbla) @prologic@twtxt.net Mosaic (2.7) works fine, I maintain that package in the AUR and test my website regularly. š
(#6yqdbla) @movq@www.uninformativ.de So no Mosaic support either? š¤£
(#6yqdbla) @quark@ferengi.one Ah, I see. Hm, only problem is, IE 3 doesnāt seem to support this yet. š Nah, I donāt think Iāll go down that road ā seems like a slippery slope. š¤£
(#6yqdbla) @bender@twtxt.net Probably, yes. š¤ Thereās no standard way to do that, though, is there? š¤
(#6yqdbla) ⦠but as it turned out, this was a bug in my CSS. It works now. š„³
My website is compatible with many old browsers, but Internet Explorer 3, uhm, not so much.
Owls in Towels
https://owlsintowels.org/
(#6hz3xca) @kat@yarn.girlonthemoon.xyz Yep, canāt wait to hear that dial-up sound again. š
(#syhlowa) @kat@yarn.girlonthemoon.xyz Awww, welcome to the family, little guy. š
Iām finding this very interesting⦠An evolved neural network that plays the game of tic-tac-toe and so far is a pretty decent player. Here is a visualization of itās evolved ābrainā that underwent GA (genetic algorithm) training with classification learning + self-play.
CSS Minecraft
https://benjaminaster.com/css-minecraft/
German court sends VW execs to prison over Dieselgate scandal
https://www.politico.eu/article/german-court-vw-execs-prison-dieselgate-scandal-volkswagen-environment-illegal-pollution/
Maybe youāll enjoy this as well:
I still have one of my first modems, a Creatix LC 144 VF:
I think this was the modem that I used when I first connected to the internet, but Iām not sure.
I plugged it in again and it still works:
The firmware appears to be from 1994, which sounds about right. I donāt think we had internet access before that. We certainly did use local mailboxes, though. (Or BBSās, as you might call them.)
I now want to actually use that modem again. For the moment, I can only use a phone to dial into it, I lack a second modem to actually establish a connection. Hereās a video:
Not spectacular, but the modem does answer after me entering ATA
.
I bought another cheap old modem on eBay and am now waiting for it to arrive. Once itās here, I want to simulate an actual dial-up session, hopefully from OS/2 or Windows 3.x.
(#3sp2kka) @kat@yarn.girlonthemoon.xyz That would be cool! š
(#3sp2kka) @bender@twtxt.net Well itās really just for other fellow humans that might not know better and what Microsoft does with your hard⢠work š¤£
Please donāt upload my code on Github!
Iām thinking about putting this up on all my projects and even on the front page of my Gitea instance š¤
Claude 4 System Cards Highlights
https://simonwillison.net/2025/May/25/claude-4-system-card/
(#i3akiua) For context, this is a funny
Interaction between an engineer and copilot on Microsoftās core programming Language š¤£š¤Æ
(#nv7q77q) @kat@yarn.girlonthemoon.xyz since rebuilding eunoia in astro iāve had soooo much fun with it and i donāt even like JS
astro.js is so cool i love making astro sites
(#67mw3uq) @prologic@twtxt.net good luck!!!!!!!!!
(#da7zlha) @prologic@twtxt.net interesting that ruby is so low on the list, i find it the easiest to learn! hell i struggle with python more than ruby and iāve been told that python is like ruby but better lol. maybe itās just my weird brain!
(#cxqthjq) @prologic@twtxt.net ITāS SO EPIC BUT SO POWERFUL YOU CAN DO SO MUCH
(#ru2vrta) @movq@www.uninformativ.de help yeah i struggle so hard with this stuff! itās why wordier languages like ruby come easier to me
(#ru2vrta) @bender@twtxt.net iāve meant to try this!
(#67mw3uq) Fuck 𤣠Building and learning about machine learning and evolutionary processes is hard⢠š¤£
prologic@JamessMacStudio
Sun May 25 21:44:41
~/tmp/neurog
(main) 130
$ go build ./cmd/ttt/... && ./ttt
Generation 27 | Fitness: 0.486111 | Nodes: 44 | Conns: 82
⦠experimenting with building and training a tic-tac-toe game, which evolves a. neural net that learn to paly the game against the best evolved champions š
(#ru2vrta) @kat@yarn.girlonthemoon.xyz Ah, I see. I would assume that youāll get used to it at some point. š¤ But yeah, a lot of meaning is packed into these symbols. (Itās much, much worse with languages like Rust. š )
That was so great to watch, I was smiling from ear to ear the whole time. š
(#cxqthjq) @kat@yarn.girlonthemoon.xyz Authelia is great š Nice choice! š
(#gfizg2q) @bender@twtxt.net š
(#da7zlha) Ultimately, Go sits in the sweet spot on the complexity vs performance chart:
See Rob Pykeās presentation on Expressiveness of Go
(#da7zlha) One of the nicest things about Go is the language itself, comparing Go to other popular languages in terms of the complexity to learn to be proficient in:
25
keywords (Stack Overflow); CSP-style concurrency (goroutines & channels)30
keywords (TutorialsPoint); GIL-bound threads & multiprocessing (Wikipedia)35
keywords (Initial Commit); GIL-bound threads, asyncio
& multiprocessing (Wikipedia, DEV Community)50
keywords (Stack Overflow); threads + java.util.concurrent
(Wikipedia)82
keywords (Stack Overflow); std::thread
, atomics & futures (en.cppreference.com)38
keywords (Stack Overflow); single-threaded event loop & async/await
, Web Workers (Wikipedia)42
keywords (Stack Overflow); GIL-bound threads (MRI), fibers & processes (Wikipedia)(#da7zlha) @bender@twtxt.net Hereās a short-list:
set up authelia as an OIDC provider for my forgejo instance :DDD
(#da7zlha) @bender@twtxt.net Whatās not to like? š
i want to write fanfiction. alas today i feel weird
(#ru2vrta) @movq@www.uninformativ.de i feel like when i read go code iām reading some algebra shit where every part is 1-5 letters long and then thereās weird symbols like :=
and itās just infinitely harder for me to parse and infer meaning from lol. itās such a me problem
(#ru2vrta) @kat@yarn.girlonthemoon.xyz In what way should it be more verbose? Can you give an example? š¤
Find Your People
https://foundersatwork.posthaven.com/find-your-people
(#zy4an6a) @bender@twtxt.net There is no aim. Just learning š That way I can actually speak and write with authority when it comes to these LLM(s) a bit more 𤣠Or maybe I just happen to become that random weirdo genius that invents Skynet⢠š