aprentic

joined 11 months ago
[โ€“] aprentic@lemm.ee 1 points 1 month ago

I don't know. The 6 finalists that we know about were all white males but we can only speculate who she interviewed to get down to those 6 finalists.

While it's always a reasonable guess that a white male's identity played a role in their hiring process, we don't seem to have any evidence to support it.

Calling someone a "DEI hire" doesn't just mean that they're a different race than other people in an organization. It's used to imply that the person is otherwise unqualified for the job and was specifically hired to fill a diversity requirement.

I don't think that's an accurate description of Walz and I'd do some pretty serious eye rolling if MAGA starts trying to portray him as such.

[โ€“] aprentic@lemm.ee 1 points 1 month ago (3 children)

He was clearly chosen for the votes he's likely to bring in. That's smart strategy on Harris' part.
As near as I can tell "the media" spent a few days wildly guessing about who her VP pick would be and many of them where white males. There are many articles that predicted that she would pick a white male but I couldn't find any that argued that it should be a consideration.

 

Is there a way for me to get a list of all the posts I've liked/disliked?

 

I'm trying to follow the instructions at https://blog.joinmastodon.org/2018/06/how-to-implement-a-basic-activitypub-server/

I get the error message: {"error":"Unable to fetch key JSON at https://<domain>/actor"}

The actor file is located at: /var/www/<subdomain>/actor

that contains:

{
    "@context": [
        "https://www.w3.org/ns/activitystreams",
        "https://w3id.org/security/v1"
    ],

    "id": "https://<domain>/actor",
    "type": "Person",
    "preferredUsername": "alice",
    "inbox": "https://<domain>/inbox",

    "publicKey": {
        "id": "https://<domain>/actor#main-key",
        "owner": "https://<domain>/actor",
        "publicKeyPem": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnioC3W5cHbHLo+ln4QPm\n6EX1Ypvs5h+h47b5RwhF+2N84dSHXURUuA6a33+IlVqiO/3gGxIX+4MJuSDAxGZM\nWFDbuqDnHft2zWorKmIqyDzSSB/oMSqOVL8QV1KYWsCyhw9v2l5U6EIw2Z7u3Fc9\nW19dumK0ieL7CPME2dJGV5quBoa2AGg0D36XCp8hAWMXGUnlEcaqjyePJg9/quZn\no3W/+h5ujoUQG73SIUaJdsK16Q0E7o5N7JP7pqqE8p8pEXtpwXJJYE9y9ItTqvRS\na29xymyboCI6jSK+VTgjz1tj6W+EGQsPfka6t8Gq82NL00VxBEYb/eiEFuOSy4RL\ndwIDAQAB\n-----END PUBLIC KEY-----"
    }
}

I haven't been able to find out what that error means. Is it unable to find the actor file? Maybe I should change /actor to /actor/ and put the file inside that? If so, what should the filename be? Is it some problem with the public key inside the JSON? Is it mad about the newlines?