None

I didn't read this. They're Romanian btw. :marseycutting:

None

How Freedesktop/RedHat harass other projects into submission

https://blog.vaxry.net/articles/2024-fdo-and-redhat

Freedesktop/RedHat's CoC team is worse than you thought

https://blog.vaxry.net/articles/2024-fdo-and-redhat2

Strags respond

https://drewdevault.com/2024/04/09/2024-04-09-FDO-conduct-enforcement.html

None

Alright so I have a cheap laptop that I loaded debian / plasma onto.

Keyboard cover is wonky and sometimes when I hold left or right arrow it self-inserts a '4', which is fixed with turning off the num pad.

So any time I switch to another window, any time I try to upload something and the popup comes up for me to select a file, the left or up arrow is automatically pressed. Right now it's doing it with the up arrow.

You'd think "you just said your keyboard is messed up why is this shocking" well to that I say here's the weird part.

It doesn't happen randomly, it happens specifically when I change to another window, or a window is popped up like when saving or uploading a file. As soon as I press any arrow key it stops.

For example I'm on my browser now.. if I click to groomercord it will try to edit my last message (up arrow is held), and will keep scrolling up unless I press a random arrow key. When I click back to the browser where I'm writing this post, it begins to scroll up (up arrow held) and again I have to press a random arrow key to stop it.

WTF is going on? Why is me clicking another window triggering an arrow key?!!?! It won't ever happen randomly either. It will never do it again until the window is changed.

To add a weird cherry on top, if I click my terminal (Konsole) it won't scroll up my command history. It won't trigger this weird shit, but as soon as I click to another window it'll trigger the up arrow. First half of today was the left arrow, abot an hr ago it started doing the up arrow.

Pls help solve.

None
None

https://i.rdrama.net/images/17126262834140468.webp

None

https://news.harvard.edu/gazette/story/2024/04/how-dating-sites-automate-sexual-racism/

https://i.rdrama.net/images/17126097174542816.webp

Edit: :marseystonetoss: Browsers?

Edit 2: She also wrote a paper about "Algorithmic Reparations":

Rooted in theories of Intersectionality, reparative algorithms name, unmask, and undo allocative and representational harms as they materialize in sociotechnical form. We propose algorithmic reparation as a foundation for building, evaluating, adjusting, and when necessary, omitting and eradicating machine learning systems.

[...]

We make this case in the body of the text above, suggesting a move away from fairness, replaced by an anti-oppressive, Intersectional approach. We intend for this approach to guide algorithmic design and to act as an evaluative standard by which existing algorithmic systems are judged, adjusted, and where necessary, omitted or dismantled. Our proposal is thus geared towards building better systems and holding existing ones to account.

None
None
14
Does anyone here actually work in software?

Any tips on getting a job right now?

Could you hire me? :marseybegging:

None

Torn because he would be like omg ai

None

For my last post on this see "You turned Stack Overflow into a nuclear test site" - StackOverflow opens up voting to all registered users; jannies revolt (again).

Basically the SO staff announced that they were going to let all users be able to vote, in order to reverse the site's participation issues and problems with engaging new users. The jannies (many of whom are still on strike) hated this and downvoted the shit out of the announcement.

Today the staff announced that the decision has been reversed and the trial won't be rolled out.

I acknowledge the feedback shared by community members and by moderators. We felt that this experiment was important because it allowed users to participate and engage in a low-effort core action on the site. We believe a healthy community involves encouraging participation from new and existing users, among other aspects. We understand there are ways to engage with new users and to further de-risk the experiment other than how it is currently designed.

also

we would like to apologize for the concern, stress, and tension caused by this experiment

lol


The SO powerusers and jannies still shit on the wagies anyway:

However, I am a bit disappointed that it has been paused only after the general disagreement from the community on Meta, and not after all the moderators told you how terrible of an idea this is.


and a particularly enormous post from Catija who used to work as an employeed SO employee and has hung around just to shit on her former colleagues. I'll not even paste 10% of her screed but it includes subtitles and subsubtitles.

It's unclear to me (and to many others, it seems) what you actually want from SO—and SE. What are the goals of this or any other change?

Subtitles include:

Content Quality as a KPI

Step 2—Review and reward curation of old content

Voting as the key activity metric

Activity as a KPI


Someone makes the mistake of saying they wished that the trial would go ahead, and they end up on -4:

I support having experiments like this, even I don't like them. I share the gratitude shown on comments by some people so far. I'm glad to know that what I thought will happen regarding the user experience when the experiment was shared privately with Stack Exchange Network moderators and when volunteer sites were required, was right.

None
Reported by:
15
tampermonkey script to make make old.reddit more tolerable
  • For large screens, centres text so it's not way over on the left (some subs have custom html styles, hence the two sections)
  • Expands images automatically
  • Hides the image hiphopcirclejerk stuck over their sub (thx j cole drama)
// ==UserScript==
// @name         old_reddit_improver
// @namespace    http://tampermonkey.net/
// @version      2024-01-26
// @description  Make old.reddit.com more usable
// @author       You
// @match        https://old.reddit.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=reddit.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    console.log('---- tampermonkey initiated ----');

    // Remove hhcj pic.
    let earl = document.querySelector('a[href="#EARL"]');
    if (earl) {
        earl.style.display = 'none';
    }

    // Centre page body.
    let body1 = document.querySelector('div[id="siteTable"]');
    if (body1) {
        body1.style = 'width: 70%; margin: auto;';
        console.log('body1:', body1);
    }
    let body2 = document.querySelector('div[class="commentarea"]');
    if (body2) {
        body2.style = 'width: 70%; margin: auto;';
        console.log('body2:', body2);
    }
    console.log('ran centre aligner');

    // Expand images.
    let xpath = "//a[text()='<image>']";
    let iter = document.evaluate(xpath, document, null, XPathResult.ORDERED_NODE_ITERATOR_TYPE, null);
    let array = [];
    let text_elem = iter.iterateNext();
    while (text_elem) {
        array.push(text_elem);
        text_elem = iter.iterateNext();
    }
    array.forEach(i => {
        let img_tag = new Image();
        img_tag.src = i.href;
        img_tag.style.maxWidth = '500px';
        i.parentElement.appendChild(img_tag);
        i.parentElement.removeChild(i);
    })
    console.log('---- tampermonkey complete ----');
})();
None
Reported by:
  • BWC : This is a very 2018 /r/Drama title, congrats! :marseyclapping:

This whole thread is so peak HN, it even has a couple of idiots arguing "Bayesian priors" over whether another HNcel is a genuine chomo or not :marseynotes: :marseylaugh:

None

I know some of you make music, I've even heard some OC that was posted here.

Anyways, I'm trying to get into all kinds of synth stuff as a hobby and I'm not about to spend 2000$ on plugins, so instead I found this. You input the name of a particular synth or plugin VST, and it checks several whitelisted sites to see if any uploads match your query. Supposedly it's reliable, but like any pirated software- use it at your own risk.

None
None
Reported by:
125
lol. Nice meme.
None
35
Redis did a rugpull
None
None
None
Reported by:
  • BWC : BWC WON :!chadnordic::asiangirl:

Neither can I tbh

Edit:

https://old.reddit.com/r/AsianMasculinity/comments/1bvbk5q/metas_ai_image_generator_cant_imagine_an_asian/?sort=controversial

Some azn nerd wrote a longpost about this phenomenon in DALL-E and it's hilarious

https://i.rdrama.net/images/17122701559581747.webp

https://i.rdrama.net/images/17122703603750982.webp

None
Reported by:
None
19
:marseychonkerindignant2: :!marseyjourno:
None
None
22
It never even began for AMWFcels. :mongoljakgenocide: :10inbonglandgenocide:

https://i.rdrama.net/images/17122544554723916.webp

Personally, I fail to see where the issue with this image is. This is clearly an Asian man with his Caucasian (Kalmykian) wife.

Link copied to clipboard
Action successful!
Error, please refresh the page and try again.