Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)E
Posts
132
Comments
5754
Joined
6 yr. ago

  • I would try to avoid driving over them when safely possible, because they make an annoying noise, which I wanted to spare folks living nearby from. ¯(ツ)_/¯

  • TOML

    Jump
  • Well, Wikipedia does say:

    The [TOML] project standardizes the implementation of the ubiquitous INI file format (which it has largely supplanted[citation needed]), removing ambiguity from its interpretation.

    https://en.wikipedia.org/wiki/TOML

  • TOML

    Jump
  • Counterpoints:

    • TOML is intended for configuration, not for data serialization, so you shouldn't be sending it over the wire in all too crazy ways anyways.
    • Most protocols will have a built-in way of knowing when the whole content has been transferred, typically by putting a content length into the header.
    • Having to wait until the closing } or ] can also be a disadvantage of JSON, since you cannot stream it, i.e. start processing the fields/elements before the whole thing has arrived. (You probably still don't want to use TOML for that, though. JSONL, CSV or such are a better idea.)
  • TOML

    Jump
  • Well, TOML is essentially just an extension of the INI format (which helped its adoption quite a bit, since you could just fork INI parsers for all kinds of programming languages).

    And then, yeah, flattening everything is kind of baked into INI, where it arguably made more sense.Although, I do also feel like non-techies fare better with flat files, since they don't have to understand where into the structure they have to insert the value. They just need find the right "heading" to put the line under, which is something they're familiar with.

  • TOML

    Jump
  • They serve largely different use-cases. JSON is good for serializing data. TOML is good for configuration.

  • Find's wertvoll, dass das öffentlich ausgetragen wird. Viele Kapitalisten sind maximal opportunistisch unterwegs und behalten sich vor mit Nazis zu kooperieren, sobald es finanziell vorteilhaft wird.

    Mag sein, dass die Klage dafür gedacht war, Campact mundtot zu machen, aber schon die Klage selbst hat erfordert, dass sich Theo Müller dazu hinreißen lässt, explizit zu sagen, dass er nicht die AfD unterstützt.

    Egal wie dicke er mit Alice Weidel ist, so eine Aussage kommt bei der Basis der AfD erstmal wie sie gesagt wurde an.Und naja, mal schauen, vielleicht bricht es ja auch das ewige Schweigen der Kapitalisten.

  • (too hard for me)

  • It's kind of bad for scripts, where it can be either annoying or genuinely problematic, when your script hangs on a password prompt. You typically do want it to just fail right away, because if you have monitoring, then you'll be able to spot it failing.

    These days, it is (largely reliably) possible to detect whether a command is being run interactively or as part of an unattended script, so you do see some commands that trigger a sudo password prompt only for interactive use, for example systemctl does this. But this adds quite a bit of complexity to each individual program, so it isn't really something that's going to be implemented universally.

    I also have to say that systemctl kind of gets on my tits when it does that, because it throws up a GUI dialog for grabbing the password, which is quite jarring.

  • Habe mehrere Minuten damit zugebracht, einen Produktbegriff zu finden, wo es keinen "...24.de"-Shop dazu gibt, weil ich weder Werbung für einen Betrüger-Shop machen will, noch einen legitimen Shop durch den Kakao ziehen will. 😅

  • Finde ich cool, gerade auch weil's so ein bisschen schon kuratiert ist, einfach nur weil die Leute nicht jeden Schrottladen eintragen.

    Wenn man halt in eine Suchmaschine "knalltüte online-shop" eintippt, dann kommen teilweise die üblichen Verdächtigen, teilweise dann aber auch knalltüten24.de, wo man sich einfach nur denkt, Leute, ihr könnt mir nicht erzählen, dass ihr nur Knalltüten verkauft und sich das rechnet.

    Die mittelgroßen/regionalen Online-Shops findet man leider oft nur mit Glück, oder indem man bei den üblichen Verdächtigen schaut, wer deren Vertriebspartner ist.

  • Der nude Ossi

  • Yeah, I was gonna specifically pick out biology. Feels like the more you know about it, the cooler it gets to just head outside and look at critters. Kind of like Pokémon, but real.

  • I would guess that the units used in smoke alarms and microwaves generally have integrated drivers that only operate at a single frequency.

    Yeah, you could more easily create a rhythm than a full melody. If you get a few devices, which beep at different frequencies each, you could do a lot more by having them beep in succession and in intervals.

    Of course, this requires that they're roughly in tune, which may not be the case at all. 🥴

  • Most developers I’ve looked at would happily just paste the curl|bash thing into the terminal.

    I mean, I typically see it used for installing applications, and so long as TLS is used for the download, I'm still not aware of a good reason why you should check the Bash script in particular in that case, since the application itself could just as well be malware.

    Of course, it's better to check the Bash script than to not check it, but at that point we should also advise to download the source code for the application, review it and then compile it yourself.At some point, you just have to bite the bullet and I have not yet seen a good argument why the Bash script deserves special treatment here...

    Having said that, for cases where you're not installing an application, yeah, reviewing the script allows you to use it, without having to trust the source to the same degree as you do for installing an application.

  • Man, I do love when Wikipedia is Just Stating Facts™ and yet reads like the sassiest gossip, because reality is just so dumb[^1].

    Ivanka Trump [Trump's daughter with his first wife] has been described as the inspiration of Mar-a-Lago face.

    Kristi Noem, Melania Trump [Trump's third wife], and Kimberly Guilfoyle have been described as having Mar-a-Lago face.

    He does like to talk about wanting sex with Ivanka, so I guess, that tracks.

    Melissa Rein Lively, a MAGA political worker, was reported [...] to reject "any idea of submission or constraint" associated with Mar-a-Lago face, and that "no one forces me to do two hours of sport a day, to go to the hairdresser every three and a half weeks, to get my nails and eyebrows done, to get Botox."

    Blink twice, if you're being forced to say this...? Seriously, why would you list a bunch of unpleasant aspects, if you're trying to make the point that you don't mind it?

    [^1]: By the way, we do have a great word for this in German: Realsatire – when reality is so ridiculous that merely recounting it sounds like satire.

  • One thing that will become important pretty quick if you continue making these scripts is that it’s almost always better to wrap your variables in quotes - so it becomes yt-dlp -x “$a”.

    Oh man, this reminds me of the joke that any program that's more complex than Hello World has bugs – and folks still don't even agree how to spell "Hello, World!".

    Of course, Bash is a particular minefield in this regard...

  • Hmm, the link I posted is just the "1,567 × 1,974 pixels" preview from your link. The original TIFF file wouldn't display in my browser, so I linked the preview. 🥴

  • Is it? I work in tech and I would have not a single fucking clue...

  • Man, you have a lot of confidence in your ability to tell Rainmeter apart from Conky, Eww or the like, from just a handful of pixels...

  • Zocken @feddit.org

    0 A.D. Version 28: Boiorix – Jetzt mit 100% mehr Germanen!

    play0ad.com /new-release-0-a-d-release-28-boiorix/
  • Famose Worte @feddit.org

    Klickibunti

    de.wikipedia.org /wiki/Klickibunti
  • Dungeon Crawl Stone Soup @lemmy.ml

    0.34 “Doomed Geometries”

    crawl.develz.org /wordpress/0-34-doomed-geometries
  • Rust Programming @lemmy.ml

    Inheritance in 🦀

  • Dungeon Crawl Stone Soup @lemmy.ml

    Well, that's not going to be good for business...

  • Dungeon Crawl Stone Soup @lemmy.ml

    Your butterfly explodes!

  • Dungeon Crawl Stone Soup @lemmy.ml

    0.34 Tournament Page and Trunk Update

    crawl.develz.org /wordpress/0-34-tournament-page-and-trunk-update
  • 196 @lemmy.blahaj.zone

    MusicBrulez

  • Maps without New Zealand @lemmy.nz

    Which Countries Are In The World Health Organization

  • Luanti community @lemmy.ml

    Luanti 5.15.0 released!

    blog.luanti.org /2026/01/21/5.15.0-released/
  • Rust Programming @lemmy.ml

    Announcing Rust 1.93.0

    blog.rust-lang.org /2026/01/22/Rust-1.93.0/
  • Music and audio production @lemmy.ml

    MilkyTracker (8-bit composing software)

    milkytracker.org
  • Anti Meme @sopuli.xyz

    When I'm hungry...

  • KDE @lemmy.kde.social

    This Week in Plasma: dark mode switch and global push-to-talk

    blogs.kde.org /2026/01/17/this-week-in-plasma-dark-mode-switch-and-global-push-to-talk/
  • Dungeon Crawl Stone Soup @lemmy.ml

    0.34 Trunk Update and Tournament Announcement

    crawl.develz.org /wordpress/0-34-trunk-update-and-tournament-announcement
  • ich_iel @feddit.org

    ich🌷iel

  • Gittertiere @feddit.org

    Gittertier lauert hinter Trampelpfad

  • Famose Worte @feddit.org

    zerfledern

    www.dwds.de /wb/zerfledern
  • Famose Worte @feddit.org

    -mäßig

    www.dwds.de /wb/-m%C3%A4%C3%9Fig
  • Dungeon Crawl Stone Soup @lemmy.ml

    When you find a good artifact weapon...