• 0 Posts
  • 36 Comments
Joined 3 years ago
cake
Cake day: December 5th, 2023

help-circle
  • And if you only ever used it for describing weather, that would be an argument to make. But you use it everywhere, I mean just search for the term “cooking temperature” on Google images and you’ll see a bunch of nonsense.

    But even using it just for weather, this is still not a good argument, as the perspective of hot and cold is very very subjective, and changes constantly. To me, an outside temperature if 10C feels freezing cold in September, but it’s reasonably warm in January. Or an inside temperature of 24C will feel amazingly cold on a 42C July day, but super warm on a -10C December night.



  • I tried the link preview feature as well, and to say the response to it is overblown is putting it mildly. I haven’t looked at the source code, but based on how it appears to work I’m not sure it even qualifies as AI. It basically selects 2-3 sentences from the reading mode version of an article, but the selection is so bad it might as well be random. Not surprising as it’s a tiny model that runs locally and is only given a second to make the selection.

    I actually laughed when I saw it - this is what all the weeks of fuss were about?













  • I’ve been in love with the concept of ansible since I discovered it almost a decade ago, but I still hate how verbose it is, and how cumbersome the yaml based DSL is. You can have a role that basically does the job of 3 lines of bash and it’ll need 3 yaml files in 4 directories.

    About 3 years ago I wrote a big ansible playbook that would fully configure my home server, desktop and laptop from a minimal arch install. Then I used said playbook for my laptop and server.

    I just got a new laptop and went to look at the playbook but realised it probably needs to be updated in a few places. I got feelings of dread thinking about reading all that yaml and updating it.

    So instead I’m just gonna rewrite everything in simple python with a few helper functions. The few roles I rewrote are already so much cleaner and shorter. Should be way faster and more user friendly and maintainable.

    I’ll keep ansible for actual deployments.