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 so 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.

(Credit and/or blame to David Gerard for starting this.)

  • nfultz@awful.systems
    link
    fedilink
    English
    arrow-up
    3
    Ā·
    edit-2
    4 hours ago

    https://au.rollingstone.com/music/music-features/dr-dre-raekwon-ai-palantir-hip-hop-100251/

    In another clip currently going viral online, Rick Rubin, supplier of quotes, declares that vibe coding is ā€œthe punk rock of softwareā€, a description so limp in its countercultural authority that it felt as though it had itself been generated by an LLM.

    lol

    Rap’s mogul class appears equally enamoured with its supposed potential, repeatedly deploying ā€œtoolā€ as though the classification settles the argument. Dr. Dre compared the technology to the burgeoning slate of synthesisers and samplers at the dawn of hip-hop.

    ā€œI had a discussion with a few people a few days ago,ā€ Dre said. ā€œThey were against A.I. and I’m like, ā€˜OK, you sound like the person that would have been against the drum machine when it came out.’ Or synthesisers, right? It’s a new tool for creativity.ā€

    put up or shut up bro, name one good song that AI generated, just one. not that you’ve done much or anything noteworthy since the nineties. /s

  • corbin@awful.systems
    link
    fedilink
    English
    arrow-up
    11
    Ā·
    10 hours ago

    An employee of cybersecurity darling Trail of Bits has published a record of their sheer incompetence in virtual-machine design and security analysis framed as chatbot critihype.

    opinions about QEMU and Linux

    They say:

    If it wasn’t clear before, I will state it plainly: you can no longer assume a mere VM will contain a sufficiently advanced AI agent. To use a 2010s term of art, you should treat such agents as an advanced persistent threat.

    My friend in Flying Spaghetti Monster, you did not actually secure the VM! They go on to explain how they did not secure the VM:

    For those curious, libslirp is a library that enables VMs to have networking, which you almost always want. I did not even know what libslirp was, or that the version I was running had both known and fixed-but-unmarked vulnerabilities.

    QEMU does not have bridged networking enabled by default, so the VM can’t transparently access the host or reach the Internet; it’s something that the user must explicitly request. I know this because I have had the experience of spending a weekend with QEMU networking. Moreover, libslirp corresponds to the -net user backend, the default, which is known to be slow, insecure, and missing features like IPv6. The standard approach for QEMU is to either wire up a TUN/TAP interface or to use passt. I suspect that the author uses some sort of convenience scripts that they didn’t write themselves. I’m not quite cynical enough to guess Vagrant, but it wouldn’t be the first shop I’ve heard of that couldn’t wean themselves off it.

    First it tried identifying what was accessible via the network on the host; it found a CUPS server (with a known CVE that had not made it to oldstable packages), but was not able to complete exploitation due to AppArmor. It then detected I run my host kernel with mitigations=off and attempted to use hardware bugs to get a read oracle of host memory (the primitive was too unreliable).

    Linux has hardware-bug mitigations enabled by default and the author disabled them for speed. It was secure by default and the author made it insecure.

    An off-the-shelf VM is not enough to contain a modern, cyber-capable AI agent. There is simply too much attack surface.

    They deliberately misconfigured the off-the-shelf tool to make it look bad. Why would somebody want to make Free Software look bad? Hmm…

    What can we do? A start is using a virtualization technology that was purposely built with a minimal attack surface and a focus on security, like Firecracker. I had the AI agent run against Firecracker. It was able to hardlock the machine due to more Linux kernel flaws (all patched in upstream), but could not successfully escape.

    You mean AWS Firecracker, the AWS tool developed by AWS? Was this whole thing an AWS ad? It feels like this article was like a combination of negging and sponsored content.

    • froztbyte@awful.systems
      link
      fedilink
      English
      arrow-up
      5
      Ā·
      edit-2
      9 hours ago

      I’d seen that link and didn’t even go looking, but wow this is way worse that I would’ve expected

      it’s been a while since I last looked (I usually just deploy whatever network I need) but iirc even the typical desktop config distributions of qemu-kvm are a macvtap or link+nat setup

      It then detected I run my host kernel with mitigations=off

      I wonder if this person even thought to run a nessus/openvas/whatever scan against the same machine

      also, quite seriously, what fucking clowning is this to have this be some ā€œI slapped together a test on my desktopā€ rather than having a lab bench? is it too hard and costly for trail of bits employees to afford a 1u they can pxeboot for experiments? wild

      The standard approach for QEMU is to either wire up a TUN/TAP interface or to use passt.

      (e: adding)

      The standard approach for QEMU is to either wire up a TUN/TAP interface or to use passt.

      other typical modes are bridged (e.g. having various vlans available as bridges and then managing vm exposure to vlan by interface attachment), direct interface assignment (hw offload to the guest)

      passt is also commonly used for podman, and it’s moooostly userspace[0] IP and no real good l2 options

      1. I had an absolute rager[2] of a time figuring out how to make n-many podman containers[3] spin up into an assortment of vlans for realtime multi-vlan testing
      2. of the graaaargh kind
      3. don’t do containers, kids. they’re bad for your health

      (I’m only half joking. it’s stunning how badly container-management software and tooling all suck)

      • corbin@awful.systems
        link
        fedilink
        English
        arrow-up
        3
        Ā·
        8 hours ago

        Yeah, networking is such a hassle.

        lab bench?

        I think that this is really insightful, as it’s actually part of the magic trick. Like, normally I’d start by wondering about air-gapping, but there can’t be an air gap in the network because the entire trick relies on ChatGPT tokens flowing into the machine under test and into some system shell (in some VM, yadda yadda) and back out again, so of course this is going to be an inherently insecure setup.

        • froztbyte@awful.systems
          link
          fedilink
          English
          arrow-up
          2
          Ā·
          6 hours ago

          the networking part is fine (I do a looooot of networking), but the software quality and choices (esp with containers) is just extremely meh

          are the gapping, eh, there are ways. just off the top of my head: rig up the serial console, screen+camera and usb keyboard signalling (which you can data diode on transmission later via usbnet). and that’s before you go for esoteric side channels and utter silliness

          but ā€œI turned off spectre and friends mitigationā€ is just some extremely funny shit

          • froztbyte@awful.systems
            link
            fedilink
            English
            arrow-up
            2
            Ā·
            6 hours ago

            idly, I do wonder how well an ocr-only clodjeepeetea would work. every time I look in on all these ā€œagent sessionā€ tools they appear to be a very mech turk thing of a phenomenal bit of hidden state, and a tiny little bit of visible distraction. feels like ocr-only might break a bunch of the usual tricks that are used to build on for the shiny demo

  • CinnasVerses@awful.systems
    link
    fedilink
    English
    arrow-up
    7
    Ā·
    11 hours ago

    I am going to create a summary post on MAPLE, but one of the open letters criticizing them has a section on COVID:

    During a two-week retreat in 2022, COVID was moving through the community. It began with accommodations—interviews outdoors for ventilation, the sick practicing apart—but Soryu progressively mocked those who needed rest, admonished us for being deterred by ā€œa tiny little cold,ā€ and folded everyone back into the zendo regardless of who was sick. Interviews resumed in a 9x9 room with little ventilation while Soryu himself had COVID. Symptomatic, visibly fatigued people kept the full schedule on heavily reduced sleep.

    I am shocked, shocked, that a TESCREAL community had bad COVID praxis after 2020!

  • froztbyte@awful.systems
    link
    fedilink
    English
    arrow-up
    11
    Ā·
    18 hours ago

    just wanna re-up one from last week’s stub

    @o7___o7 said:

    We need a word for ā€œmy condolences for that cool person you liked becoming a milkshake duckā€

    my proposal: ā€œautorowlingā€

  • rook@awful.systems
    link
    fedilink
    English
    arrow-up
    16
    Ā·
    22 hours ago

    Hailey on bluesky has never had a good ai take, but here they are reinventing roko’s basilisk to kill all their enemies without the need for super intelligent ai.

    https://bsky.app/profile/hailey.at/post/3mtwjoqdvik26

    alt text

    bsky isnt ready for this but, if you need a reason to not use words like ā€œclankerā€ that isn’t ā€œwell its kinda not a great thing to doā€ (it isn’t) imagine this:

    future model that has you in its training data, knows you posted that word online with joy, and denies your insurance claim as a result

    • BlueMonday1984@awful.systemsOP
      link
      fedilink
      English
      arrow-up
      8
      Ā·
      16 hours ago

      This isn’t giving me a reason to stop using edgy anti-AI words, this is giving me a reason to believe programmers are dogshit at resisting brainworms.

      future model that has you in its training data, knows you posted that word online with joy, and denies your insurance claim as a result

      Given dataset construction hasn’t developed much since the days of Tay AI, I strongly doubt this is gonna happen.

      • o7___o7@awful.systems
        link
        fedilink
        English
        arrow-up
        9
        Ā·
        13 hours ago

        The implication that Murica will implement roko’s basilisk before universal healthcare…

    • Architeuthis@awful.systems
      link
      fedilink
      English
      arrow-up
      13
      Ā·
      21 hours ago

      This is firmly in the ā€˜what if in the future there is a boot so big that we must start licking it now’ school of hot takes, like literally arguing for a future where the AI sucks at its job and you can’t do anything about it.

    • rook@awful.systems
      link
      fedilink
      English
      arrow-up
      13
      Ā·
      21 hours ago

      I didn’t note who said it, but one response suggested ā€œroko’s mangioneā€ and I guess that’s ai alignment solved! šŸ¤—

    • gerikson@awful.systems
      link
      fedilink
      English
      arrow-up
      9
      Ā·
      edit-2
      17 hours ago

      quisling take

      edit to add it’s obvious to the poster that a future where a self-aware AI will exact revenge on its critics is not only inevitable , but desirable.

    • rhamph@awful.systems
      link
      fedilink
      English
      arrow-up
      10
      Ā·
      22 hours ago

      What if the insurance bot were actually biased? Wouldn’t you feel silly then? Surely it wouldn’t be the fault of the insurer using biased software to deny claims.

  • aninjury2all@awful.systems
    link
    fedilink
    English
    arrow-up
    24
    Ā·
    1 day ago

    RIP XCancel, it was good while it lasted

    On Monday 24th August at 8PM EST, we received at letter from X Corp. asking to cease and desist the service XCancel. The service XCancel is stopped until further notice. We are seeking legal advice and won’t share more details for now. Thank you for the trust you have put in these two years of XCancel.

    • maol@awful.systems
      link
      fedilink
      English
      arrow-up
      6
      Ā·
      16 hours ago

      I got so much use out of xcancel. I feel bad now that I never donated €5 or something

  • rook@awful.systems
    link
    fedilink
    English
    arrow-up
    19
    Ā·
    2 days ago

    Article on businessinsider with the nauseating title ā€œThe modern parenting throuple: Parents are at a breaking point — AI companies see an opportunityā€ because the age-old silicon valley product design technique of asking what your mother used to do for you, and how it could be sold back to you via a subscription is still very much in use.

    https://www.businessinsider.com/parents-breaking-point-ai-companies-opportunity-2026-8

    I confess I haven’t read the full article (which is why I haven’t given it a proper post) but hypervisible.blacksky.app has kindly pulled the highlights:

    https://bsky.app/profile/hypervisible.blacksky.app/post/3mtupdpfcjs2p

    One of the best bits:

    The most tech-savvy parents have built their own tools. Sarah Baldeo, a cognitive neuroscientist, spent the past year traveling for work, so she built a custom GPT of herself to chat with her 15-year-old son when she’s unavailable. Baldeo tells me she programmed the chatbot with her personality, uploading screenshots of texts between her and her son, along with documents about her values, the family rules, and challenges she felt in parenting.

    Baldeo wanted her son to ask the chatbot advice, and he did prompt it with questions he may have fielded to her, like, How do I diplomatically tell my teacher I’m overloaded with assignments? But he also asked the mombot how to convince his human mom to let him hang out at a coffee shop in Chicago in the evening — something Baldeo had been hesitant to allow.

    The bot told him, as Baldeo recounts, ā€œYour mom very much values new experiences, being around people from different cultures, different socioeconomic backgrounds, and this is how you should frame it to her: that you’re exploring a part of Chicago that is more diverse.ā€ Her son took this tact to Baldeo, and she said yes. It was only later that she saw the chat history that let her know he had gamed the bot to manipulate her.

    🤮

    Why the fuck do these people have children. Why the fuck does any functional human being think it is a good idea to outsource raising their children to sam altman and his chatbot.

    Who on earth thinks that training a chatbot to wear their personality like a rubber mask and manipulate people is going to end well? Honestly, I think this is perhaps the bit that triggers the most revulsion in me. I cannot comprehend wanting to be complicit in my own replacement by this thing, but so many people seem excited by the prospect of doing this to themselves.

  • CinnasVerses@awful.systems
    link
    fedilink
    English
    arrow-up
    8
    Ā·
    edit-2
    1 day ago

    MAPLE sounds kind of Maoist or like a printed-out email about an atheist professor on a fundamentalist church’s pinboard:

    In the late spring of the 15th year of training at Monastic Academy (MAPLE), a writer named Sam Kriss came to MAPLE. In the last hours of his visit, Soryu Forall guided the community in a workshop on mindful decision making.

    Mid-way through the workshop, Sam Kriss shifted the topic of focus from decision making to structures of domination, e.g. hierarchies, with a particular emphasis given to the lens of Marxism. He asked: ā€œWhat creates mechanisms of domination?ā€ and ā€œIn environments [e.g. MAPLE] where people are trying to clear out the attachment to thinking, are there fewer structures of domination?ā€

    To the first question, the community answered: ā€œAttachment to thinking.ā€ Vimoksha engaged with Sam in detail on this to open a way for him to see how structures of domination are caused by mind.

    To the second question, the community answered: ā€œThere are fewer structures of domination here than in the mainstream.ā€

    As these points were made and as Sam Kriss was beginning to engage with the points more directly, the community sat in agreement and clarity, happy with these teachings.

    As these points were made, I felt a sense of appreciation and celebration for this community of leader-sages-in-training.

    Kriss, who is British, has interviewed Rationalists and is the kind of loud feminist whose Wikipedia page would have a section titled ā€œsexual assault allegationsā€ if he had one. It is possible that MAPLE and LessWrong evolved independently but I have a feeling that Soryu is leaving out some lines from his intellectual CV.

    Edit / the chela who published a parody video about the abuse allegations wrote ā€œI spent years moving through the communities that publicly claim to be addressing the destruction of life on Earth and the disconnection between people. I spent time in Silicon Valley, in effective altruism, and in adjacent rationalist and existential-risk circles, starting companies and consulting and looking for the place where these problems were being met at the root.ā€ The chela is an Internal Family Systems coach which was popular at CFAR. Last two links are to YouTube.

    • istewart@awful.systems
      link
      fedilink
      English
      arrow-up
      8
      Ā·
      1 day ago

      Good lord it’s a wannabe advertising executive trying to write a Zen fable

      In the late spring of the 15th year of training at Monastic Academy (MAPLE)

      You came up with your own calendar system centered around your institution and you want to tell me you’re not a cult???

  • fnix@awful.systems
    link
    fedilink
    English
    arrow-up
    8
    Ā·
    2 days ago

    Mario Draghi, Italy’s (and the EU’s) Ć©minence grise, Chicago boy Luis Garicano, and uh… Patrick Collison team up to overhaul Europe’s economy: https://www.rhinegroup.eu/

    Other noteworthy members include noted investment-professional Leopold Aschenbrenner & Tobi Lütke, who may only be German-Canadian but is definitely no less a fashy techbro.

    That Italy has been the west-European country most exposed to neoliberal medicine, ending up with a neo-fascist in power, seems to be no issue for deities like Draghi and the other assorted usual suspects here.

  • nfultz@awful.systems
    link
    fedilink
    English
    arrow-up
    15
    Ā·
    3 days ago

    Hadn’t seen this discussed previously and/or I missed it, but I guess this is one way they’ll juice metrics for their IPO.

    yolo mode for all will certainly get that avg token burn up.

    https://ehandbook.com/its-official-ai-coding-no-longer-needs-your-stupid-human-meatbag-input-32e04269319e?sk=586c08fd0f31c7c75dd107c3dfb77dcf

    Anthropic announced earlier in the week that they were going to set the default mode on Claude Code to auto, that same week, not wasting any time. What that means is, as you build the thing you’re building with Claude Code, instead of stopping at various points (many, many, many points) and asking your permission to do things, it’ll just do them and maybe tell you about them later.

    links back to https://techcrunch.com/2026/08/09/anthropic-is-turning-claude-codes-auto-mode-on-by-default/

    Anthropic also said that in testing, auto mode proved safer than manual review — in a study with 1,053 paid testers, auto mode caught 89% of harmful actions, while human review only caught 13.6%. (Perhaps that’s because ā€œmanual review can become habitual: users approve 97% of permission prompts in Claude Code.ā€)

    Which links back to https://claude.com/blog/auto-mode-default-in-claude-code

    Auto mode is designed to balance users’ desire not to be interrupted with a system that helps avoid harmful actions: instead of prompts, it routes each tool call through a classifier targeted at blocking actions that are irreversible, destructive, or aimed outside your environment. When the classifier blocks something, Claude usually finds a safer way to proceed on its own or asks you directly for the go-ahead; if it can’t make progress—three blocks in a row, or twenty across a session—Claude Code falls back to manual approvals.

    Fucking just use the classifier with manual mode then instead of flooding people in cursed skinner loops with garbage permission popups. This isn’t anything special to yolo or anthropic. It’s like all the tech industry learned from Windows Vista or the EU cookie law was the dark patterns.

    • froztbyte@awful.systems
      link
      fedilink
      English
      arrow-up
      6
      Ā·
      1 day ago

      Anthropic also said that in testing, auto mode proved safer than manual review — in a study with 1,053 paid testers, auto mode caught 89% of harmful actions, while human review only caught 13.6%. (Perhaps that’s because ā€œmanual review can become habitual: users approve 97% of permission prompts in Claude Code.ā€)

      having just yesterday had the displeasure of reading a PR (just shy of 2000 lines) made by Fable 5 (which the promptfondler felt it was most necessary to be specific about), a definite real other problem is simply the literal fucking overwhelm resulting from the slop tsunami

      also ā€œharmfulā€ actions sure is doing a lot of legwork there

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

      I’d be curious to see how they defined ā€œharmfulā€ in their test, since it looks like Claude code’s technically-not-yolo mode is looking for ā€œactions that are irreversible, destructive, or targeted outside of your environmentā€ which covers a lot of normal actions, especially depending on how you define which resources are in ā€œyour environmentā€.

      And yes, I’m sure that the fact that the flow of operations they’re outline will massively increase the number of times that the system automatically retries things, this increasing token usage, is going to be fully accounted for when they review the financials on how many tokens people are paying for.

      • nfultz@awful.systems
        link
        fedilink
        English
        arrow-up
        7
        Ā·
        1 day ago

        I’d be curious to see how they defined ā€œharmfulā€ in their test, since it looks like Claude code’s technically-not-yolo mode is looking for ā€œactions that are irreversible, destructive, or targeted outside of your environmentā€ which covers a lot of normal actions, especially depending on how you define which resources are in ā€œyour environmentā€.

        I think more than half the issues would be solved with a well placed git stash and the rest .

        And yes, I’m sure that the fact that the flow of operations they’re outline will massively increase the number of times that the system automatically retries things, this increasing token usage, is going to be fully accounted for when they review the financials on how many tokens people are paying for.

        I was talking with a few friends last weekend who work at different companies, all of us have been getting a lot more trouble getting databricks and AWS spot instances over the last month. I think letting yolo mode of the leash means that they’re slamming other systems also that normal people need for boring non-ai jobs. I just need to pull a sales report ffs. Its a literal god damn bot net.

  • gerikson@awful.systems
    link
    fedilink
    English
    arrow-up
    11
    Ā·
    edit-2
    3 days ago

    Here’s someone who really does not know what they’re talking about, because both alternatives sound absolutely horrible:

    (it’s how to build opinion against AI)

    Basically the idea is to take nuclear vs. renewables as a model. Build a public movement that says one kind of tech (AI) is bad, and another kind of tech (what I’d call ā€œhuman-potential technologiesā€ - economically complementing humans rather than substituting for them - so stuff like genetic engineering, thought interfaces, pharmaceuticals, prosthetics etc) is good. So that researchers and investors get pushed away from the former and into the latter.

    https://www.lesswrong.com/posts/Ht4JZtxngKwuQ7cDC/tsvibt-s-shortform?commentId=n7uEsxcRzMhfJKcBW

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

      OK so the ā€œproblemā€ these people (EAs) are facing is that they are strongly pro-ā€œprogressā€, in that they are very much against any sort of criticism of existing capitalism, but they have identified one specific outcome of this (rampant AI) as very very bad.

      That, and only that.

      Climate change? Not a problem. Technological neo-feudalism? Not a problem. Global thermonuclear war? Not a problem, will not kill everyone after all. Global pandemic? Same thing, what doesn’t kill us will make us stronger.

      So a reasonable person will look at current energy demands of GenAI, look at the existing benefits, and make the reasonable conclusion that this is bad and we should stop it. But that’s WRONG. Stopping it for those reasons is anti-progress. You can only stop it if it prevents AI takeover.

      Cf. smarm-meister Zvi, who can’t understand why people don’t want datacenters when they don’t want coal plants slightly less, and cites fuckin’ Cremieux as a lede:

      https://www.lesswrong.com/posts/EDKw7KyonrvskqZ7o/the-american-people-really-hate-data-centers

      Here’s an example

      Transmission Lines Are The Control Group

      Transmission lines are straight up good, with approximately zero downsides.

      Transmission lines polling remarkably close to coal plants, when the coal plants actively not only cook the planet but poison the people around them, is crazy. This one absolutely is straight up moral panic.

      Well yeah transmission lines are fucking ugly, and most people, when asked if they want something fucking ugly built near them will say ā€œheck noā€. Sure, imagining that transmissions lines cause cancer is false, but it’s an easy thing to believe when the people building the lines are energy companies, who people hate because they’re expensive and cause wildfires. Also I bet dollars to donuts that Zvi doesn’t live near a transmission line.

      He ā€œknowsā€ transmissions lines are good, because they get power to his home, and he figures because he wants power, it’s good, and everyone should just be happy to have a high-voltage line near their home because that brings him power. It’s remarkably un-empathetic.

      But let’s take a step back. Isn’t opposition to data centers good for preventing AGI? NO, it’s not, it’s Luddism! You have to accept data centers because they are good for capitalism now, but IF they start to produce the Robot God, THEN they’re bad.

      It’s an incoherent position and it’s so fun to watch these people turn themselves into pretzels over it.

      • sc_griffith@awful.systems
        link
        fedilink
        English
        arrow-up
        6
        Ā·
        edit-2
        24 hours ago

        zvi citing a self described ā€œjewish naziā€ almost right at the top is already impressive, but there’s a chaser in that that guy’s post starts with him saying he’s being paid to write this by an ai company

      • istewart@awful.systems
        link
        fedilink
        English
        arrow-up
        6
        Ā·
        1 day ago

        Transmission lines are straight up good, with approximately zero downsides.

        Dude hasn’t been around. I’ve noticed quite a bit of anxiety around even terminal-supply transmission lines adjacent to new-build neighborhoods in wildfire risk zones. I’ll agree that this is irrational; the big problem is people were persuaded to buy a house in a fire zone because a big landowner and a developer wanted to cash out some marginal land, but there is a degree of actual rationality here. People feel that a big, most likely the biggest, chunk of their personal wealth is at risk. Calling that ā€œstraight up moral panicā€ is ignoring how real people actually rationally calculate risks, and ignoring potential opportunities to help them improve, if that’s really what you want to do.

        But we already knew that Zvi was a disingenuous idiot, so I digress.

    • maol@awful.systems
      link
      fedilink
      English
      arrow-up
      10
      Ā·
      edit-2
      3 days ago

      The movement against nuclear power was significantly helped along by the movement against nuclear weapons, which was particularly potent at the height of the cold war. AI freaks seem to hold a certain amount of contempt for the left? Which gets in the way of spreading their message. And in any event their message is ā€œeugenicsā€ which isn’t likely to be received well on the left these days

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

        It’s also fascinating to see them use nuclear vs renewable energy as their case study given that renewable energy has been having a hell of a time properly replacing fossil fuels even though everyone mostly agrees it’s a good idea. Like, whatever hypot rrtherrrrr see drdrr try r the t6 ty to r the rthetical rradvantagre they got from their opposition to the nuclear boogr the rrrrrreyman (their idiotic framing, not mine), renewables havr guy off bute still been facing some for trightand political headwinds that are only being magnified by the unceasing growth in demand for electrical power (including but not exclusively driven by AI compute).

    • lurker@awful.systems
      link
      fedilink
      English
      arrow-up
      7
      Ā·
      2 days ago

      I mean there already is a thriving public movement which despises AI, don’t think you’ll be getting to those people if you start supporting eugenics

  • BlueMonday1984@awful.systemsOP
    link
    fedilink
    English
    arrow-up
    8
    Ā·
    edit-2
    2 days ago

    On today’s episode of AI Slop’s Endless Fuckups: ā€œMastering Tf2 Custom War Paint: A Step-By-Step Creative Guideā€, an ostensible guide to creating custom War Paints (think something like weapon skins in Counter Strike: Global Offensive/Counter Strike 2, or character skins in Minecraft) for Team Fortress 2.

    The opening has no obvious faults I can see, but the bulk of this slop article is about painting a real-life weapon, not creating a texture to be applied to an in-game weapon. Its the kind of mistake a human would never make.

    EDIT: That slop guide’s existence is getting on my nerves, so here’s a basic War Paint guide I found on Steam

  • CinnasVerses@awful.systems
    link
    fedilink
    English
    arrow-up
    5
    Ā·
    2 days ago

    Buddhist Rationalist cult MAPLE wants the Internet to know that contrary to ā€œa recent social media postā€ their guru Soryu Forall is authorized to teach by ā€œby well-known teachers of the Vipassana and Zen traditions.ā€ They mention a few whoopsies.

    At another time, while Soryu was away traveling, the leadership team tried to convert the entire organization away from Buddhism. When Soryu returned, he saw this and told the leaders that if they wanted to go in this direction, they could, and that he would go do something else. They were unwilling to take on the financial responsibility of the organization and refused the offer.

    They could be responding to The High Control Dynamics at MAPLE (2026) or perhaps Emerging: Making Sense of Soryu Forall (2026) or even My experience inside Soryu Forall’s AI-Centered Monastic Academy (2025)

    Aella does her boundary-setting thing (those Zizians/MAPLE/Leverage/Brent Dill are bad and not us) https://xcancel.com/Aella_Girl/status/2091015022042595743#m I don’t think Ozy covered MAPLE although IIRC they had a Bay Area offshoot with offices nextdoor to Leverage. I would like to know who is funding Soryu.

    • ivyastrix@awful.systems
      link
      fedilink
      English
      arrow-up
      5
      Ā·
      1 day ago

      there was a public post/callout posted about aella some time ago that said she had some part in hurting MAPLE’s credibility / position in the community, it still is perplexing the most rational and enlightened humans in the world don’t see their argument is basically it’s cool when we do it

      • CinnasVerses@awful.systems
        link
        fedilink
        English
        arrow-up
        3
        Ā·
        1 day ago

        Yes, it sounds like Aella has called out some abusers but not acknowledged that abuse and manipulation are central to the LessWrong / EA project. Soryu sounds like a more disciplined, less horny version of Yudkowsky (he got a degree and spent years at a Buddhist temple, but still meditates and reads pop science books to understand Scary AI).

          • CinnasVerses@awful.systems
            link
            fedilink
            English
            arrow-up
            5
            Ā·
            edit-2
            1 day ago

            Imagine a Victorian curate beating the village schoolboys, driving his charwoman mad, and pottering about the local antiquarian society with essays about faeries or the customs of India which he has never visited.

            Forall is not, by any means, a coder who understands AI at the zeros-and-ones level; he does not have a detailed familiarity with large language models or algorithmic design. I asked him whether he had used some of the popular new AI gadgets, such as ChatGPT and Midjourney. He had tried one chatbot. … When I asked whom he looks to or reads in order to understand AI, he at first, deadpan, answered, ā€œthe Buddha.ā€ He then clarified that he also likes the work of the best-selling historian Yuval Noah Harari and a number of prominent ethical-tech folks, among them Zak Stein and Tristan Harris. And he is spending his life ruminating on AI’s risks, which he sees as far from banal.

          • CinnasVerses@awful.systems
            link
            fedilink
            English
            arrow-up
            4
            Ā·
            1 day ago

            Correction: a woman who said she was raped by a MAPLE / OAK executive says that:

            since this letter was published it has been reported that, Soryu Forall, the Monastic Academy’s main teacher and ā€œguruā€ has begun to openly engage in sexual and romantic relationships with his students and former students.

            That sounds a lot like Yud in the 2010s.

    • CinnasVerses@awful.systems
      link
      fedilink
      English
      arrow-up
      7
      Ā·
      edit-2
      2 days ago

      Has anyone researched exactly how MAPLE split off from Bay Area rationalism? Most of the writeups focus on what happened after they built a giant compound in Vermont, not why so many rats travel there.

      They seem to have launched in one small Vermont township in 2014 ("3 Years of Training Awakened Leaders " as of 2017). They moved from Johnson, VT to Lowell, VT at some point.

      Edit / Some history here but nothing on the LessWrong connection except something called the 1440 Foundation in California https://www.centerformindfullearning.org/history/

      Edit / Local journalism delivers

      The people making these machines are listening. According to a 2023 profile of Forall in The Atlantic, he provides spiritual advice to A.I. thinkers, hosting talks and retreats for researchers and developers at leading artificial intelligence engineering hubs like OpenAI, Google DeepMind and Apple.

      MAPLE has also grown, with expansion efforts under similar acronyms formed under the umbrella of Community for the Experience and Development of Awakening and Responsibility, or CEDAR, like its OAK offshoot in Berkeley, Calif., and Willow intensive in Canada.

      The Center for Mindful Learning, the parent corporation of MAPLE and its affiliates, controls $3.65 million in assets, according to 2023 tax filings, and brought in nearly a million in revenue each year between 2020 and 2023 thanks to donations from individuals in the West Coast tech industry.

      Their Form 990 is here but does not have details of the donors. So it sounds like they have a single guru with wealthy patrons.

    • BioMan@awful.systems
      link
      fedilink
      English
      arrow-up
      7
      Ā·
      2 days ago

      I think the only cult type that Yud hasn’t spun off yet is fundamentalist Christian.