[-] Architeuthis@awful.systems 12 points 1 month ago

The old place on reddit has a tweet up by aella where she goes on a small evo-psych tirade about how since there's been an enormous amount of raid related kidnapping and rape in prehistory it stands to reason that women who enjoyed that sort of thing had an evolutionary advantage and so that's why most women today... eugh.

I wonder where the superforecasters stand on aella being outed as a ghislain maxwell type fixer for the tescreal high priesthood.

[-] Architeuthis@awful.systems 12 points 1 month ago* (last edited 1 month ago)

EA started as an offshoot of LessWrong, and LW-style rationalism is still the main gateway into EA as it's pushed relentlessly in those circles, and EA contributes vast amounts of money back into LW goals. Air strikes against datacenters guy is basically bankrolled by Effective Altruism and is also the reason EA considers magic AIs (so called Artificial Super Intelligences) by far the most important risk to humanity's existence; they consider climate change mostly survivable and thus of far less importance, for instance.

Needless to say, LLM peddlers loved that (when they aren't already LW/EAs or adjacent themselves, like the previous OpenAI administrative board before Altman and Microsoft took over). edit: also the founders of Anthropic.

Basically you can't discuss one without referencing the other.

[-] Architeuthis@awful.systems 12 points 1 month ago

The way many of the popular rat blogs started to endorse Harris in the last second before the US election felt a lot like an attempt at plausible deniability.

[-] Architeuthis@awful.systems 12 points 1 month ago

I think the author is just honestly trying to equivocate freezing shrimps with torturing weirdly specifically disabled babies and senile adults medieval style. If you said you'd pledge like 17$ to shrimp welfare for every terminated pregnancy I'm sure they'd be perfectly fine with it.

I happened upon a thread in the EA forums started by someone who was trying to argue EAs into taking a more forced-birth position and what it came down to was that it wouldn't be as efficient as using the same resources to advocate for animal welfare, due to some perceived human/chicken embryo exchange rate.

[-] Architeuthis@awful.systems 12 points 5 months ago* (last edited 5 months ago)

Here's a quick and dirty vanilla js script that highlights all posts in a thread according to how recent they are, the brighter the newer, and alse separately highlights new posts, to make long running threads easier to follow. I'm posting it in the stubsack because it's the thread I had in mind when writing it.

Pasting it in the browser's console and pressing enter should be enough for the page you have open, not that I've cross tested it any... Worst case scenario it does nothing or it colors the posts wrong and you just reload the page, I swear it won't steal your crypto, or mine any new.

In Firefox you can find the console by pressing F12 and selecting the console tab.

edit: Also if you prepend javascript: to the code and store it as a bookmark you can just invoke it by calling the bookmark, like a macro, see https://awful.systems/comment/4173451

Note: longer threads don't load all comments at once, so you'll have to rerun the script if you scroll down far enough.

edit: fixed for Edge, because why wouldn't it show dates differently there.

edit: updated it to check if there's a (xx New) notice in the post count in the OP and use the number to highlight the latest xx posts, i.e. all post made since the last time you were here. Change the value of variable newPostColor if you don't like the lovely shade of lavender I picked. Depending on if edited posts are counted as new or not the count might be off, and like, what if there's a new post that's also been edited? Solving that seems to mean moving away from the warmth and comfort of the quick and dirty territory, and also is there a public philthy repository somewhere?

edit: here's how it looks in the SAP thread:

edit: NEW: added some legibility changes and also consecutive executions now toggle old post highlights.

Code now in spoiler:

spoiler

(() => {
    function getHighlightedColor(min, max, value) {
        const percentage = (value - min) / (max - min);
        return `rgba(0,0,255,${percentage})`
    }

    const newPostCount = (() => {
        const text = document.querySelector("span.fst-italic").textContent;
        return text.includes("New") ? parseInt(text.match(/\d+/)[0]) : 0;
    })();
    const newPostColor = "#783AFF";

    const timestampNodes = [...document.querySelectorAll("span.moment-time")]
        .map(x => {
            return {
                Node: x,
                PostBox: x.closest('.ms-2'),
                Date: Date.parse(
                    x.dataset.tippyContent
                        .split('\n').at(-1)
                        .replace(/Modified |at /g, "")
                        .replace(/(?<=\d+)(st|nd|rd|th)/g, ""))
            };
        })
        .filter(x => x.PostBox != null)
        .sort((x1, x2) => x2.Date - x1.Date);

    const minDate = timestampNodes.at(-1).Date;
    const maxDate = timestampNodes.at(0).Date;
    const hl = (dt) => getHighlightedColor(minDate, maxDate, dt);

    timestampNodes
        .forEach((x, i) => {
            if (i < newPostCount) {
                x.PostBox.style.backgroundColor = newPostColor;
                x.PostBox.querySelector('.person-listing').style.textShadow = '1px 1px 0.75px #FFFFFF';
                x.PostBox.querySelector('.comment-content').style.paddingLeft = ".5em";
            }
            else if (x.PostBox.style.backgroundColor == "") {
                x.PostBox.style.backgroundColor = hl(x.Date);
                x.PostBox.querySelector('.comment-content').style.paddingLeft = ".5em";
            } else {
                x.PostBox.style.backgroundColor = "";
                x.PostBox.querySelector('.comment-content').style.paddingLeft = "";
            }
        });
})()

[-] Architeuthis@awful.systems 12 points 8 months ago* (last edited 8 months ago)

They say at one point that by being flaky, aloof and indifferent while rich SBF may have accidentally discovered the rules of pickup artistry for VCs, which is not a bad take.

[-] Architeuthis@awful.systems 12 points 9 months ago

Model City Mondays is thing in siskind's substack, and Prospera is featured constantly.

It's seasteading that's the strictly libertarian thing where you fuck off to the ends of the earth to do drugs and marry twelve-year-olds. Despite the considerable overlap charter cities seem more of a rat/stembrained thing were you decide you're going to be the one to do a polis from first principles but get it right this time.

[-] Architeuthis@awful.systems 12 points 10 months ago

Judge 1 says they, just, uh, decided some past disease outbreaks were lab leaks and never looked to see if that’s actually scientifically debated or just weird Rat Accepted Truths.

Yes but see, an anthrax environment containment breach almost five decades ago at a sprawling soviet weapons facility with biosecurity protocols that consisted of a wink and a handshake totally strengthens our claim that in 2019 some chinese intern accidentally shot up a gm bat virus and wandered off. Bayesian inference is unintuitive like that, you plebs wouldn't understand.

[-] Architeuthis@awful.systems 12 points 1 year ago* (last edited 1 year ago)

There's technobabble as a legitimate literary device, and then there's having randomly picked up that comments and compilers are a thing in computer programming and proceeding to write an entire ~~parable~~ ~~anti-wokism screed~~ interminable goddamn manifesto around them without ever bothering to check what they actually are or do beyond your immediate big brain assumptions.

view more: ‹ prev next ›

Architeuthis

joined 2 years ago