"At first we believed that programmers were latently sexist/transphobic, and due to their demographics had never thought about the fact that minoritized communities might need to change their name or gender marker. However with further research, we discovered the problem was larger: Programmers had never thought about anything, at all"
OpenAI discontinues its AI writing detector due to “low rate of accuracy”
Research shows that any AI writing detector can be defeated—and false positives abound.
‘Stop calling it Twitter’ says guy who deadnames his own child
https://chaser.com.au/general-news/stop-calling-it-twitter-says-guy-who-deadnames-his-own-child/
Google’s “Web Integrity API” sounds like DRM for the web
It's just a "proposal," but it's also being prototyped inside Chrome right now.
stream announcement
https://twitch.tv/madewokherd Still trying to get good enough at foot controls to get through BIT.TRIP Runner.
stream announcement
https://twitch.tv/madewokherd Just doing some casual Klonoa today.
religion/proselytism
The Jehovah's Witness who sent me a letter never responded to my email. It's almost as if they were never interested in a conversation at all, and had no interest even in politeness once it became clear that my Quakerly ways weren't going to be convinced by some passages in a shady translation of an old book. :(
Moved from google to duckduckgo years ago because google was ignoring my search terms. Now I'm moving from duckduckgo to https://www.mojeek.com/ because duckduckgo is ignoring my search terms. Haven't used it long enough to give an actual recommendation but it seems promising.
PSA
You DON'T need to have ANY of the below to be trans:
* Noticeable gender dysphoria.
* Strong dislike of your genitalia, body, voice etc.
* A desire for HRT or surgery.
* A medical diagnosis.
It's enough to feel that your gender doesn't match the one you were arbitrarily assigned at birth.
You don't need anything else to be valid
#trans #transgender #enby #NonBinary #agender #genderfluid #genderqueer #GenderNonConforming #cisnt #LGBTQ+ #LGBTQIA+ #LGBTQIA2S+
The thing about painted bike lanes and flex posts is that there's a pretty big difference in user experience between places cars *shouldn't* go and places cars *can't* go.
Paint and flex posts are like rumble strips: they are designed to gently remind cars where they should go in a way that does not damage the car. This makes sense for a highway off-ramp, but it clearly falls apart when we're talking about safety for someone on the other side.
bash scripting
I've been slowly becoming more evil ever since I learned you can have terminals in gvim.
function :e () {
gvim --remote-send '<C-W>:e '"$(realpath "$1")"'<CR>'
}
function command_not_found_handle ()
{
case "$1" in :*) gvim --remote-send '<C-W>'"$*"'<CR>'; return 0;; esac
/usr/lib/command-not-found -- "$1";
return $?;
}