Need to let loose a primal scream without collecting footnotes first? Have a sneer percolating in your system but not enough time/energy to make a whole post about it? Go forth and be mid: Welcome to the Stubsack, your first port of call for learning fresh Awful you’ll near-instantly regret.

Any awful.systems sub may be subsneered in this subthread, techtakes or no.

If your sneer seems higher quality than you thought, feel free to cut’n’paste it into its own post — there’s no quota for posting and the bar really isn’t that high.

The post Xitter web has spawned soo many “esoteric” right wing freaks, but there’s no appropriate sneer-space for them. I’m talking redscare-ish, reality challenged “culture critics” who write about everything but understand nothing. I’m talking about reply-guys who make the same 6 tweets about the same 3 subjects. They’re inescapable at this point, yet I don’t see them mocked (as much as they should be)

Like, there was one dude a while back who insisted that women couldn’t be surgeons because they didn’t believe in the moon or in stars? I think each and every one of these guys is uniquely fucked up and if I can’t escape them, I would love to sneer at them.

(Semi-obligatory thanks to @dgerard for starting this.)

  • Sailor Sega Saturn@awful.systems
    link
    fedilink
    English
    arrow-up
    9
    ·
    edit-2
    5 hours ago

    An update to my post about facebook from yesterday; turns out it’s much worse:

    https://transparency.meta.com/policies/community-standards/hateful-conduct/

    [Do not post} Insults, including those about […] Mental characteristics, including but not limited to allegations of stupidity, intellectual capacity, and mental illness, and unsupported comparisons between PC groups on the basis of inherent intellectual capacity. We do allow allegations of mental illness or abnormality when based on gender or sexual orientation, given political and religious discourse about transgenderism and homosexuality and common non-serious usage of words like “weird.”

    You can see the full diff from last version if you click “Jan 8, 2025” and yeah it’s a doozy.

    Like many here on awful.systems I have a pretty thick skin, but reading the above put me in a really weird mood all day. I couldn’t really concentrate on work. It’s hard to believe that they published this with a straight face, and harder to believe that the media isn’t dunking on them for it.

    On the bright side the policy technically lets you go around calling people insane for being straight or cisgender* if anyone is still on there and wants to get banned from that platform in a blaze of glory.

    * or indeed simply having a gender and I’m not sure fascists know how to use words right.

    • YourNetworkIsHaunted@awful.systems
      link
      fedilink
      English
      arrow-up
      4
      ·
      2 hours ago

      See this is why I try to do my reading here at night, because now when I feel sad and angry for the rest of the day it’s gonna be like 5 hours tops.

    • self@awful.systems
      link
      fedilink
      English
      arrow-up
      5
      ·
      4 hours ago

      Like many here on awful.systems I have a pretty thick skin, but reading the above put me in a really weird mood all day.

      same here. the thing is, I think a lot of us are on awful.systems because we’ve seen far too much of how fascism operates and spreads online. this is an antifascist place; it’s so core to the mission that we don’t publish it as a policy (because a policy can be argued against and twisted and the fash kids love doing that), we just demonstrate it in a way that can’t be ignored. so seeing the first or second (I don’t keep track of these things) most popular social media platform publish a policy whose only purpose is to be used as a weapon against marginalized people, for it to be written in a matter-of-fact “this is just how it is” way, and for essentially nobody outside of the fediverse to push back on it in any real way — that is shocking.

  • blakestacey@awful.systems
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    9 hours ago

    Yud is against seed oils, right? Or was that Siskind? I have a vague memory of the topic coming up but was unable to substantiate it in the 22 seconds of archive-searching that I was willing to do.

  • khalid_salad@awful.systems
    link
    fedilink
    English
    arrow-up
    6
    ·
    edit-2
    19 hours ago

    Does anyone else get tired of “read documentation and edit this text file to configure your app” Unix shit? I have no problem with the underlying configuration being a text-file (makes for a straightforward API), but do I really need to navigate to https://mpv.io/manual/master/#configuration-files and go through the rigamarole of figuring out which options I need to edit/include[0] because I misplaced (read: sudo rm -rf /) my config file?


    [0]: And there is always so much implicit bullshit. “By default, we summon Cthulhu on Tuesdays and Thursdays if the variable summon_octopus_guy is unset.” It’s a fucking config file, my friends, can we just be explicit?

    • bitofhope@awful.systems
      link
      fedilink
      English
      arrow-up
      2
      ·
      14 hours ago

      Personally I think it’s fine to have implicit defaults if you can make them sensible. Maybe ideally have a system-wide config like /etc/someapp.conf with all the options included and set to defaults out of the box and then allow overrides in ~/.config/someapp/someapp.conf where you only need to specify whatever you want to differ from the system conf file.

      • khalid_salad@awful.systems
        link
        fedilink
        English
        arrow-up
        3
        ·
        12 hours ago

        I personally disagree. I think in the era of “a megabyte is big,” this made sense, but in my opinion after parsing a config file with missing config data, we should print something indicating they are missing then error out. The existence of a reference config file with all options included would definitely help, but I think it’s no coincidence that there is no such config for mpv — why bother creating and maintaining one if the program will use the default value anyway?

        tl;dr explicit is better than implicit

        • bitofhope@awful.systems
          link
          fedilink
          English
          arrow-up
          3
          ·
          12 hours ago

          I dunno, MPV has like a million config options and I’ve set like three of them in my config. I would not prefer to maintain an enormous config file where I need to include a bajillion options I don’t care about just to play a video. Would I have to update my config every single time MPV adds, removes or renames an option, too?

          • khalid_salad@awful.systems
            link
            fedilink
            English
            arrow-up
            2
            ·
            edit-2
            7 hours ago

            At the end of the day you shouldn’t have to maintain anything in order to use a program, in my opinion (at least ideally). I think a “everything must be present in the file” type of config would require less no extra maintenance (assuming devs don’t do anything too silly). Additionally, while noting that my primary programming language is TeX and also that I am a dipshit, this just strikes me as an API-design problem. Alternative solutions could be:

            1. multiple config files (I think mpv already supports this)
            2. semver style config (idk if this would be practical)
            3. a config-editing tool (i.e., what the overwhelming majority of applications do, by hiding the implementation details from the user)

            I have thought about doing #3 for Sway (a sort of Sway-config editor). This does give me an idea, though: define a meta-format for specifying the variables, default values, allowed values, etc., for an arbitrary[0] program’s config file, and create a program that reads a meta-format file and presents a GUI for editing the config.

            tbh i just lost my config file, forgot what i changed, and now i have to read documentation (and figure out which file the mpv flatpak uses for config)


            [0]: maybe not too arbitrary

            • self@awful.systems
              link
              fedilink
              English
              arrow-up
              2
              ·
              5 hours ago

              define a meta-format for specifying the variables, default values, allowed values, etc., for an arbitrary[0] program’s config file, and create a program that reads a meta-format file and presents a GUI for editing the config.

              I’d kinda love this even if I’m editing config files in a text editor. emacs could use this with a major-mode or LSP to provide suggestions, validity checking, various rendered versions of the config, and guarantee interoperability with graphical tools (so that changes you make in an editor don’t get trampled by the UI, and vice versa)

              • khalid_salad@awful.systems
                link
                fedilink
                English
                arrow-up
                2
                ·
                5 hours ago

                I need an excuse to learn Rust and have wanted to do a “parse, don’t validate / make invalid states unrepresentable” project for a while. I will definitely share it if I get anything done.

    • nightsky@awful.systems
      link
      fedilink
      English
      arrow-up
      5
      ·
      18 hours ago

      Oh yeah. I recently wanted to configure something in pipewire… the idea was simple: just creating a boot-persistent audio loopback, i.e. connecting an audio input to an output. I gave up for now after looking at the config examples for that in the documentation. How can such a simple thing need such complex configuration?

      As for losing configs, I’ve started to put all my hand-edited config files in a git repo on my NAS so at least I only have to figure out things once.

    • YourNetworkIsHaunted@awful.systems
      link
      fedilink
      English
      arrow-up
      4
      ·
      19 hours ago

      Surely it’s better to specify those defaults in the config file and have the system just fail if the necessary flags aren’t present. Having worked in support I can vouch for the amount of suffering that could be avoided if more systems actually failed if some important configuration isn’t in place.

      • khalid_salad@awful.systems
        link
        fedilink
        English
        arrow-up
        3
        ·
        18 hours ago

        Surely it’s better to specify those defaults in the config file and have the system just fail if the necessary flags aren’t present.

        Completely agree. I think this may just be an extension of the “you gotta know what you’re doing to code correctly in C” old school bullshit.

        • YourNetworkIsHaunted@awful.systems
          link
          fedilink
          English
          arrow-up
          3
          ·
          15 hours ago

          This is my biggest gripe with that nonsense. If you make it hard to do something well, you won’t end up with an elite series of uber-coders because there aren’t enough of those people to do all the programming that people want to be done. Instead you’ll see that much more software engineering done really goddamned badly and despite appearances at the time it turns out there is a maximum amount of shitty software the world can endure.

          • khalid_salad@awful.systems
            link
            fedilink
            English
            arrow-up
            3
            ·
            13 hours ago

            What’s great is even the very best “just use valgrind lol, lmao” folks make these errors all the time. It’s basically impossible to write correct C code generally — the best we can do is verify subsets of code (c.f. Rust’s unsafe keyword). The memory-safety CVEs in EXT3/4 are proof of this, IMO, as if there were anyone able to write correct C code today, it would be Ted Ts’o.

    • YourNetworkIsHaunted@awful.systems
      link
      fedilink
      English
      arrow-up
      2
      ·
      edit-2
      8 hours ago

      Counterpoint: to what extent are hyperkludges actually a unique thing versus an aspect of how technologies and tools are integrated into human context? Like, one of the original examples is the TCP/IP stack, but as anyone who has had to wrangle multiple vendors can attest a lot of the value in that standardization necessarily comes from the network effects - the fact that it’s an accepted standard. The web couldn’t function if you had a bespoke protocol stack hand-made to elegantly handle the specific problems of a given application not just because of the difficulty in building that much software (i.e. network effects on the design and construction side) but because of how unwieldy and impractical it would be to get any of those applications in front of people. The fit of those tools for a given application is secondary to how much more cleanly the entire ecosystem can operate because they are more limited in number.

      The OP also talks about how embedded the history of a given problem is in the solution which feels like the central explanation for this trend. In that sense a hyperkludge isn’t a unique pattern that some things fall into and more a way of indicating a particularly noteworthy whorl in the fractal infinikludge that is all human endeavors.

    • mlen@awful.systems
      link
      fedilink
      English
      arrow-up
      4
      ·
      14 hours ago

      I’m surprised that alphabetical lists are included. Maybe my brain has completely rotten, but keeping the data sorted is pretty neat for efficient processing

      • Steve@awful.systems
        link
        fedilink
        English
        arrow-up
        3
        ·
        13 hours ago

        yeah that is an interesting example. I immediately applied the term to commercial products. Like Notion for example - funny because I always say Notion takes wikis which are well established in their usefulness and just slaps them into saas product with other things like docs and spreadsheets (also well established in their usefulness) - but he calls wikis themselves a hyperkludge but what superior thing did wikis kill by network effects?

    • bitofhope@awful.systems
      link
      fedilink
      English
      arrow-up
      3
      ·
      edit-2
      14 hours ago

      Examples off the top of my head:

      • Almost everything about TCP/IP stack
      • NETCONF
      • YAML
      • Most things related to cars and car infrastructure
      • Alcohol
      • Chiclet keyboards
      • Unicode Han unification
      • Layer 2 SDN
      • Kubernetes
      • JavaScript
      • Disk partitioning
      • UEFI
      • Public transit fares

      Edit: checked the link and was surprised our lists didn’t have any ones in common (though I considered including MS Excel).

      • self@awful.systems
        link
        fedilink
        English
        arrow-up
        6
        ·
        11 hours ago
        • MS-DOS and Windows, of course…
        • but, and this will get some boos, Unix as a workstation OS compared with every other non-windows workstation OS
        • istewart@awful.systems
          link
          fedilink
          English
          arrow-up
          3
          ·
          5 hours ago

          If you step back and think about it, it is rather absurd that a time-sharing multi-user OS essentially took over for personal devices

  • swlabr@awful.systems
    link
    fedilink
    English
    arrow-up
    7
    ·
    edit-2
    1 day ago

    For a fun 20 minutes or so, I recommend going through the recent enron “revival”. (It’s all satire)

  • Sailor Sega Saturn@awful.systems
    link
    fedilink
    English
    arrow-up
    15
    ·
    2 days ago

    Zuck wants to get back to his roots

    It’s time to get back to our roots around free expression and giving people voice on our platforms. Here’s what we’re going to do: […] 5/ Move our trust and safety and content moderation teams out of California, and our US content review to Texas. This will help remove the concern that biased employees are overly censoring content.

    Narrator: this announcement did not, in fact, ease concerns about bias.

      • Sailor Sega Saturn@awful.systems
        link
        fedilink
        English
        arrow-up
        8
        ·
        edit-2
        1 day ago

        Fascist virtue signalling aside, candy floss should not exist. That’s like the exact opposite of dental care.

        Edit: I have been made aware that Candy Floss is another name for cotton candy, which is delicious. Though my point kind of still stands.

    • Soyweiser@awful.systems
      link
      fedilink
      English
      arrow-up
      9
      ·
      2 days ago

      Ah i recall somebody got mad when I mentioned traditionally capitalists will team up with fascists.

          • self@awful.systems
            link
            fedilink
            English
            arrow-up
            9
            ·
            12 hours ago

            a few people have been posting along the lines of “we all knew Facebook was evil, why are you surprised” which seems to miss the point — this is happening so fast and blatant that we’re almost definitely seeing the early stages of a playbook being executed. and even if not: Facebook was already the fash pipeline targeting mom, dad, and grandma. should I feel good that the pipeline is getting much more efficient and pervasive? none of them are ever gonna be on something like the fediverse.

  • self@awful.systems
    link
    fedilink
    English
    arrow-up
    13
    ·
    edit-2
    2 days ago

    the worst Nix project has finally been announced: behold crypto NixOS

    I’m starting a paradigm shifting, open and new human / computer interface system that is global, multi device and privacy focused.

    […]

    DISCLAIMER: You are not my exit liquidity, I have the best performing long term spot crypto portfolio in the world - I’m a early adopter with 100% hit rate on geniuses. So, I don’t have to work, I’m not building this to become rich. I want to build something paradigm changing - truly mind-blowing, because now we have the tech and I’m annoyed how computer work. It is a lot of work, but it will reward us all.

    my “this isn’t a grift and I’m not a grifter” disclaimer is prompting a lot of questions already answered by the disclaimer. but speaking of prompting, what goes with crypto?

    ChatGPT-1o thinks, after some reinforced asking, that the MC of such a coin can reach 300-1000M; I think it could easily go higher - it solves so fundamental problems in a much more elegant way. In my opinion, it will be the same step as the command line to the windowed systems was. Or dump phone to smart phone. It will just span devices and span users while keeping the data under control and of companies.

    of course. after some reinforced asking, gpt told me you’re all haters if you don’t think I’m as important as Xerox PARC!

    there’s lots more in the OP to sneer at, but here’s the worst part of the thread:

    Mod note: I’m glad to see doubt and scepticism about crypto-based claims. However, that point has now been made; please avoid any further posts in that vein to avoid a pile-on dunkfest, and leave the thread for any potential on-topic discussion.

    thanks for nothing as usual NixOS discourse!

    e: via mastodon, archive

  • nightsky@awful.systems
    link
    fedilink
    English
    arrow-up
    10
    ·
    3 days ago

    Reading through announcements of new hardware from CES and the endless series of products containing “AI” is so tiring. Not suprising, but still… ugh. Claims of AI in everything.

    My favourite so far: USB controller with “AI enhancements” because… uuh… if I understand it right, you could theoretically use it to connect an external GPU and use that for AI, so that’s why “AI” is in the marketing for the USB controller…?

    • V0ldek@awful.systems
      link
      fedilink
      English
      arrow-up
      22
      ·
      3 days ago

      I just want to harp on this one:

      “Existing methods for testing are often very technical and not very attractive, neither for developers nor for users.”

      Wtf, can you imagine saying something like this about literally any other profession than software engineering? “Existing methods for checking brake pressure are often very technical and not very attractive, neither for mechanics nor for users”. “Existing methods for sterilising surgical equipment are often very technical and not very attractive, neither for surgeons nor for patients”. “Existing methods for checking voltage are often very technical and not very attractive, neither for electricians nor for users”.

      The lack of any fucking standards that devs are held to is insane, so the excuse for accessibility in the web being shit is that it’s TOO TECHNICAL and kinda annoying for web devs??? Again, can you fucking imagine saying this about anything else, “ye, cars kinda suck because making sure they don’t is all technical and kinda boring for mechanics to do”.

      It’s YOUR JOB. Literally YOUR PROFESSION. PROFESSIONALS ARE SUPPOSED TO HAVE STANDARDS you fucking piece of shit, have you no honour, not a single care in the world for your craft, you fucking babies. “Oh but it’s very technical” YOU’RE A TECH SPECIALIST. THE FUCK DO YOU THINK YOU GET YOUR SALARY FOR???

      • Mii@awful.systems
        link
        fedilink
        English
        arrow-up
        15
        ·
        edit-2
        2 days ago

        The worst bit is, the devs who aren’t like this are basically forced to comply anyway. Whenever I justify a delay in some release with that testing/bugfixing takes time, I get slapped with release it anyway, you can patch it later, and although I am lucky to be in a privileged position where I can fight this for some amount of time, every young programmer who comes into a job with a good mindset is not and has to bend over or face shit like negative performance reviews because they’re too slow.

        This is so fucking infuriating. I don’t want to release shit software, I want to make sure the stuff I ship works. Back when patching meant you had to ship a physical medium to a non-trivial amount of users, that was how things worked, but apparently only because IT HAD TO and not because it’s good fucking work ethics to have. Now that you can just zero-day patch everything it’s apparently okay to ship unfinished shit and use your customers as beta testers.

        I hate this so much and I try to avoid doing this as much as I can professionally. And whenever I can’t I actually feel bad and want to apologize to everyone who has to use that shit release.

    • nightsky@awful.systems
      link
      fedilink
      English
      arrow-up
      10
      ·
      3 days ago

      Thanks, that was infuriating to read.

      Whenever techbros use the word “storytelling”, some disaster follows…

      • Architeuthis@awful.systems
        link
        fedilink
        English
        arrow-up
        11
        ·
        2 days ago

        The comments are something else alright:

        The part about kids is wrong. Per Aella’s survey, many people report having masturbated well before puberty. Breeding and pregnancy were actually one of my earliest kinks when I was 7.

              • mlen@awful.systems
                link
                fedilink
                English
                arrow-up
                5
                ·
                14 hours ago

                I’m sure her surveys are immune to sampling bias and therefore perfectly represent the general population. /s

                • Soyweiser@awful.systems
                  link
                  fedilink
                  English
                  arrow-up
                  3
                  ·
                  edit-2
                  13 hours ago

                  There even is a SSC post talking about how even professionally ran surveys have a 5% rate of bullshit (the lizardman constant, mentioned by Scott in 2013, and now in a lot more places (I think the idea is fine, just that Scott seems to draw a few to generalizing conclusions (in the article, not the conclusion) about classifying people as trolls/malicious vs 'sometimes people give a trollish/malicious answer. I also don’t think the percentage is constant)). (Yes, SSC style Rationalists not internalizing the SSC lore is one of my pet peeves). And as Amoeba_girl said, this is the highlight of the post.

                  E: and as the LC was written in 2013, I really don’t want to know how often Rationalists/LWers/etc have referred to a poll after that as being important. (And how often they have used the LC to dismiss polls used as arguments by others).