@movq@www.uninformativ.de So no Mosaic support either? 🤣
@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. 🤣
Once does the best of things when bored. :-)
@movq@www.uninformativ.de yes, I think:
<!--[if !IE]><!-->
<link rel="stylesheet" href="../simplicity.css”>
<!--<![endif]-->
Should work, but I haven’t tested it.
@bender@twtxt.net Probably, yes. 🤔 There’s no standard way to do that, though, is there? 🤔
Almost sure it would look even better if you removed CSS altogether for IE3, and the like. Your site is clean as a whistle, just vanilla, no CSS.
… but as it turned out, this was a bug in my CSS. It works now. 🥳
hosted opengist because i got bored. works with authelia
My website is compatible with many old browsers, but Internet Explorer 3, uhm, not so much.
@movq@www.uninformativ.de he’s so cute!!!!!!!!!!!!!
@bender@twtxt.net <3333
@kat@yarn.girlonthemoon.xyz Yep, can’t wait to hear that dial-up sound again. 😃
@kat@yarn.girlonthemoon.xyz Awww, welcome to the family, little guy. 😅
You got two plushies! A Tux, and a pretty anime girl! 🙈
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.
gamado à @aperture@aperture porque há meses/anos que quero escrever um texto sobre esta postura, e esta imagem explica tão bem o problema
(fonte)
mariconnect
Quels sont vos jeux de société favoris? Je veux renouveler ma ludothèque. Avec mon fils, on a joué à L’ile interdite et Carcassonne récemment. J’adore Smallworld, Dune, 7wonders, Boreal. Jeux collaboratifs, jeux dans un univers fantasy… Vos suggestions sont les bienvenues :) #jeudesociete
@movq@www.uninformativ.de THAT’S SO COOL
GUYS I GOT A TUX PLUSHIE LOOK AT HIM (also bonus face reveal) (also also pictures pixelated for aesthetic)
nadir (formerly onyx) v0.4.0 with theme support and ability to share paths | https://nilfm.cc/nadir.html
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.
@prologic@twtxt.net i can’t wait till forgejo/gitea instances can federate with each other bc i will interact with ur gitea instance from my forgejo instance somehow and someday!!!!
@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 🤣
@prologic@twtxt.net yeah, that will work perfectly. Because you are using “please”—which we all know is a magic talisman word of obedience—all uploads of your code to Github will be automatically paused, until such magic word is removed. 😂
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 🤔
@prologic@twtxt.net I SAW THIS SHIT I WAS LAUGHING SOOO HARD omg you couldn’t pay me enough to babysit a fucking bot to do shit work
For context, this is a funny
Interaction between an engineer and copilot on Microsoft’s core programming Language 🤣🤯
Retrouvé les magnifiques dés : https://www.goblins-hoard.com/
Je ne retrouve plus ce créateur de dés absolument magnifiques, qu’il fait en résine sur son temps libre. help! #jdr
@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
@prologic@twtxt.net good luck!!!!!!!!!
@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!
@prologic@twtxt.net IT’S SO EPIC BUT SO POWERFUL YOU CAN DO SO MUCH
@movq@www.uninformativ.de help yeah i struggle so hard with this stuff! it’s why wordier languages like ruby come easier to me
@bender@twtxt.net i’ve meant to try this!
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 😅
Amigues, conhecem algum modelo de smartphone sub-300€ que dê para instalar o LineageOS?
(qualquer marca excepto Xiaomi, nessa já não me apanham)
@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. 😃
@kat@yarn.girlonthemoon.xyz Authelia is great 👌 Nice choice! 🙌
@prologic@twtxt.net I remember going through your “introduction to Golang”, I don’t remember the URL, but I vividly remember going through it, and I was lost at chapter one. So, about that “mastering” the core in hours, “I don’t believe you.” (insert I don’t believe you meme animated GIF here). LOL.
Ultimately, Go sits in the sweet spot on the complexity vs performance chart:
- Minimal syntax & concepts → low learning curve
- Compiled speed → high throughput
- Built-in CSP concurrency → scalable by default
See Rob Pyke’s presentation on Expressiveness of Go
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:
- Go:
25
keywords (Stack Overflow); CSP-style concurrency (goroutines & channels)
- Python 2:
30
keywords (TutorialsPoint); GIL-bound threads & multiprocessing (Wikipedia)
- Python 3:
35
keywords (Initial Commit); GIL-bound threads,asyncio
& multiprocessing (Wikipedia, DEV Community)
- Java:
50
keywords (Stack Overflow); threads +java.util.concurrent
(Wikipedia)
- C++:
82
keywords (Stack Overflow);std::thread
, atomics & futures (en.cppreference.com)
- JavaScript:
38
keywords (Stack Overflow); single-threaded event loop &async/await
, Web Workers (Wikipedia)
- Ruby:
42
keywords (Stack Overflow); GIL-bound threads (MRI), fibers & processes (Wikipedia)
@bender@twtxt.net Here’s a short-list:
- Simple, minimal syntax—master the core in hours, not months.
- CSP-style concurrency (goroutines & channels)—safe, scalable parallelism.
- Blazing-fast compiler & single-binary deploys—zero runtime dependencies.
- Rich stdlib & built-in tooling (gofmt, go test, modules).
- No heavy frameworks or hidden magic—unlike Java/C++/Python overhead.
set up authelia as an OIDC provider for my forgejo instance :DDD
@prologic@twtxt.net what’s to like? :-P
@bender@twtxt.net What’s not to like? 😅
@kat@yarn.girlonthemoon.xyz I don’t like Golang much either, but I am not a programmer. This little site, Go by example might explain a thing or two.
i want to write fanfiction. alas today i feel weird
@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
@kat@yarn.girlonthemoon.xyz In what way should it be more verbose? Can you give an example? 🤔
@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™ 😂
@thecanine@twtxt.net SO CUTE
Source of inspiration:
https://youtu.be/TlafDammd6s
@kat@yarn.girlonthemoon.xyz i’m so fucking bad at this shit man i can’t even comprehend JS most of the time coding is not in my future
i wish it was realistic for me to learn golang but every single time i try to comprehend any go code i’m like What the fuck am i looking at. why is all of this so short and condensed GIVE ME VERBOSE CODE
I sent you my QR code, please respond!
*for context: long ago, there were some complaints, about some of my sitting drawings, where the legs are apart, not using dithering/more shading and one of my favourite artists, made a video, exploring the use of QR codes, in art
P.S.: the code just redirects to my websites
fit 1 $ spin (saw 0.1 * sign fxy) $ rect 0 1 - rect 0 0.99 >> add;
#punctual #livecoding #creativecoding #videoart
@sorenpeter@darch.dk Cool, that animation is quite hypnotic. :-)
Jokes aside, what’s the aim for doing this? Other than learning something new, that is.
@prologic@twtxt.net so, what did you have for dinner last night? How’s the weather Down Under a bit past 02:00? Do tell me. 🤭
This is one of my attempts:
$ go build ./cmd/xor/... && ./xor
Generation 95 | Fitness: 0.999964 | Nodes: 9 | Conns: 19
Target reached!
Best network performance:
[0 0] → got=0 exp=0 (raw=0.000) ✅
[0 1] → got=1 exp=1 (raw=0.990) ✅
[1 0] → got=1 exp=1 (raw=0.716) ✅
[1 1] → got=0 exp=0 (raw=0.045) ✅
Overall accuracy: 100.0%
Wrote best.dot – render with `dot -Tpng best.dot -o best.png`
Over the past few weeks I’ve been experimenting with and doing some deep learning and researching into neutral networks and evolutionary adaptation of them. The thing is I haven’t gotten very far. I’ve been able to build two different approaches so far with limited results. The frustrating part is that these things are so “random” it isn’t even funny. Like I can’t even get a basic ANN + GA to evolve a network that solves the XOR pattern every time with high levels of accuracy. 😞
A @aiscarvalho e eu viemos ao sul para falar de texto e design no Algarve Design Meeting; entre outras aventuras vamos tb abordar o @PureDeNoticias
fit 1 $ spin (saw 0.1 * sign fxy) $ rect 0 1 - rect 0 0.99 >> add;
#punctual #livecoding #creativecoding #videoart
@prologic@twtxt.net You can read more about the “cryptic” live coding language Punctual in my newsletter
fit 1 $ spin (saw 0.1 * sign fxy) $ rect 0 1 - rect 0 0.99 >> add;
#punctual #livecoding #creativecoding #videoart
@sorenpeter@darch.dk Also not very readable. Quite cryptic really 😅 I have no idea how this works 🤦♂️
My vision with this newsletter is to have a slower medium for communicating about my art as well as ideas and projects I’m working on regarding how we can use digital technology to our own benefits instead of being exploited by big tech.
Twtxt not sloe enough for you? 🤣
@thecanine@twtxt.net I think I know what you mean now.
@prologic@twtxt.net it says in the linked page;)
fit 1 $ spin (saw 0.1 * sign fxy) $ rect 0 1 - rect 0 0.99 >> add;
#punctual #livecoding #creativecoding #videoart
@sorenpeter@darch.dk What will you be writing about? What’s your target audience? 🤔
I’m sending out my first newsletter later today. Sign up at https://darch.dk/newsletter if you want it fresh of the press 💌
E que tal este hino anti-pirataria de 2010s, cantado pelo Magalhães (sim, o computador) numa versão do Chamem a Polícia? Juro que é ainda melhor do que a descrição dá a entender, ouve!
(se o áudio não der depois de carregar no play, experimenta clicar em “descarregar ficheiro” ali em baixo à direita)
@prologic@twtxt.net What I meant, is that I will not say that someone is not really a writer, if they choose to have what they wrote, ran through some spelling and sentence structure checker, like the one included in MS Word, the average phone keyboard, or on reverso.net - given that they look over the output and make sure the corrections make sense.
Similarly, I won’t complain much, if someone uses AI, to remove backgrounds from images, where the AI can preform this task, as well as a human would and makes sure to check it afterwards, or use ai as a way to sort large quantities of images - usually done for science. An example of this, would be having terabytes of plant photos, from some cities camera system and having an AI analyse them, in an attempt to detect notable changes, like mold, parasites, or the plants needing more water.
pondering my orb | https://nilfm.cc/orb.html
@kat@yarn.girlonthemoon.xyz i have a terrible headache rn tho so debugging and log checking will have to wait
bruh i log in after a day and my TL/discover feed has 12 twts WHAT AM I MISSING
@prologic@twtxt.net best of luck, no pressure!
@bender@twtxt.net Appreicate it 🙏
https://youtu.be/1GN3xBuAgrI?si=ezBYJeSOFgtBdjEu – Can someone please just fire Trump already? What a fucking idiot?! The man is a lunatic 🤦♂️
@lyse@lyse.isobeef.org Oh, yeah, nothing beats modern DVCSs. I just hope that having CVS is better than nothing. We’ll see. 😂
Always glad to hear from you, mate. I understand work and personal life often demand attention. Just a well-being check, that’s all. ☺️
@thecanine@twtxt.net I admit I’m a little unclear of your position. What do you mean by “not the right approach”? What’s your position here? 🤔 – I have a funny feeling we actually algin, just getting our wires all mixed up in communicating it 🤣
Hey y’all 👋 I am told my “participation” is drastically down of ,ate So sorry 😞 Busy quite a busy few weeks at work with a reorg and lots of complex things happening in real live too 😅 – Hope everything is doing well 🤗
@lyse@lyse.isobeef.org Okay, jetzt hör’ ich’s. :DD
@movq@www.uninformativ.de Regarding https://www.uninformativ.de/blog/postings/2025-05-21/0/POSTING-en.html: Hahaha, that’s what I immediately thought, too! The pain of going back to CVS. :-D I used that back in school. Quickly after, I upgraded to SVN and even that was terrible in comparison to a modern VCS, such as git.
In any case, happy hacking!
@movq@www.uninformativ.de Zum Beispiel: https://www.youtube.com/watch?v=-unPs-NrVI0
@lyse@lyse.isobeef.org Kenne ich gar nicht und noch sehe ich die Ähnlichkeit nicht, aber kann ja noch kommen. 😅
@bender@twtxt.net With these paper thin walls, it might just work. 🤣
@lyse@lyse.isobeef.org an “informal” one. @movq@www.uninformativ.de doesn’t even need to reach out. Simply wait until they start playing, measure the tempo, and start bassing on queue! Oh man, I can already imagine it! Dreamy! :-)
@movq@www.uninformativ.de That’s cool! Both of you can now form a house band. :-)
@kat@yarn.girlonthemoon.xyz Ta! The dead end wasn’t all that bad in my opinion. Personally, I really do like dirt paths and exploring. It was all dried up, so no muddy mess we had to walk through. More like climbing over thick branches that have been worked into the ground by harvesters or forwarders in the muddy winter. Rough terrain. My mate, on the other hand – whose idea it was to check out the real summit in the first place ;-) — wasn’t all that pleased about the detour. Oh well. :-D
@movq@www.uninformativ.de Das klingt ein wenig nach einem Johnny-Einschub zwischen zwei Liedern auf einer EAV-CD. :-D
Again, I was simply pointing out that, if he used AI to correct misspellings, and improve grammar, then this isn’t true:
“This post was written entirely by a human, with no assistance from AI. (Other than spell- and grammar-checking.)”