2
submitted 1 year ago by alex@geddit.social to c/lemmy@geddit.social
2
submitted 1 year ago by alex@geddit.social to c/lemmy@geddit.social
[-] alex@geddit.social 6 points 1 year ago* (last edited 1 year ago)

So use Mastodon. Problem solved. Twitter is toxic. You can't fix Twitter without fixing the whole culture.

Getting rid of Elon (in some hypothetical universe where you could do that) & restoring the site's design back to what it used to be isn't going to change the toxic culture. Twitter only selectively enforces their own rules and it's been that way since Jack Dorsey was in charge.

(Here's an example: I can think of a few tweets where people are ganging up on someone and those are still there to this day. Their rules are very clearly 'no harassment and no dogpiling' and they've always been that way. Do you think they give a damn to enforce their own rules? Only when Elon's right-wing buddies are being attacked, then they bother.)

Restoring the site's design back to what it used to be isn't going to magically fix the toxic culture (people sniping, dogpiling, attacking others etc). Better if we just set the whole thing on fire and start from scratch, build something new - oh wait, we have that. It's called Mastodon. The learning curve isn't that bad. But that would be learning something new. That would be actively doing something other than complaining.

Why would you want to back to a place where a billionaire or a corporation collects all your personal data? If you like that sort of thing, go to Threads, Bluesky, Post, etc. Nobody's stopping you.

[-] alex@geddit.social 13 points 1 year ago

https://nerdist.com/article/star-trek-strange-new-worlds-musical-episode-choreographer-cinematographer-interview-klingon-boy-band/

The Klingon boy band made the final cut, thankfully. However, they shot two versions of the Klingons, led by Bruce Horak as the Klingon captain. The second was opera. Ultimately, the opera take felt too close to the other singing. Luckily, the Klingon boy band won.

1
submitted 1 year ago by alex@geddit.social to c/news@geddit.social
[-] alex@geddit.social 6 points 1 year ago* (last edited 1 year ago)

Correction: Uhura*

That's a lot of words just to say "we know nothing".

1
submitted 1 year ago by alex@geddit.social to c/lemmy@geddit.social
1
submitted 1 year ago* (last edited 1 year ago) by alex@geddit.social to c/news@geddit.social
1
submitted 1 year ago by alex@geddit.social to c/news@geddit.social
1
submitted 1 year ago by alex@geddit.social to c/news@geddit.social
1
submitted 1 year ago by alex@geddit.social to c/news@geddit.social

You know what they say about people in glass houses, right?

1
1
[-] alex@geddit.social 19 points 1 year ago* (last edited 1 year ago)

Just a suggestion, you might want to insert the word "allegedly" somewhere in there because Meta is refuting that assertion.

"To be clear: ‘No one on the Threads engineering team is a former Twitter employee — that’s just not a thing" - Andy Stone, Meta's communications director

edit: yes I know that doesn't preclude the possibility of Meta hiring former Twitter employees and not making them part of the Threads team.

[-] alex@geddit.social 7 points 1 year ago* (last edited 1 year ago)

Short answer: No.

tl;dr answer: There's no tagging function in place unless you manually tag them using markdown, and that still wouldn't notify them. That would be a bandaid solution at best.

[-] alex@geddit.social 17 points 1 year ago* (last edited 1 year ago)

Who's really "being a shit" here? I see nobody else being hostile but you. Accusing people of that which you are doing yourself is called "projection".

Nobody else is pedantically picking apart silly things like wording and terminology and then lashing out at others. Just you. We all knew what he meant. Were you ever told as a kid to "pick your battles"? Do you know what that means? Not everything deserves a response.

What's the matter, did you wake up on the wrong side of the bed this morning and decide to take it out on the world? Significant other break up with you or cheat on you? Got fired? Did your pet die? Why are you so angry at the world? What did it ever do to you? None of those things (whichever is applicable) is our problem.

Please, let's leave those kinds of toxic, hostile behaviors on the dead bird site and reddit where they belong. We're trying to build something new here.

Otherwise, "play stupid games, win stupid prizes" and people are just going to report you for repeated incivility and offensive language.

EDIT: And your reply has been reported too. Since all you know is how to behave like a child, maybe we should all treat you like one.

[-] alex@geddit.social 8 points 1 year ago* (last edited 1 year ago)

"loginwalled" then. We know what he means.

1
submitted 1 year ago* (last edited 1 year ago) by alex@geddit.social to c/lemmy@geddit.social

Crossgeposted from: https://feddit.de/post/1185964

Please excuse my sub-par JavaScript, I am a backend dev.

All you need to do is paste this into Tampermonkey and enter your username and your instance url (on two locations).

This is not showing other users’ scores and it doesn’t make your score visible to anyone else than yourself.

So no need for karma farming. This is just for fun.

// ==UserScript==
// @name         Lemmy score
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Shows your total post/comment score at the top right.
// @author       You
// @match        ENTER INSTANCE URL HERE (leave the asterisk after the URL)*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=feddit.de
// @grant        none
// @run-at       document-idle
// ==/UserScript==

(function() {
    'use strict';

    var USERNAME = "ENTER USERNAME HERE";
    var INSTANCE_URL = "ENTER INSTANCE URL HERE";

    var totalScore = 0;
    var currentPage = 1;

    function postResult() {
        var navbar = document.getElementsByClassName("collapse navbar-collapse")[0];
        console.log(navbar);
        var ul = document.createElement("ul");
        ul.className = "navbar-nav";
        ul.id = "karma-ul";
        var li = document.createElement("li");
        li.id = "karma-li";
        li.className = "nav-item";
        li.innerHTML = '<div id="karma-div">' + totalScore + '</div>'
        navbar.appendChild(ul);
        ul.appendChild(li);
    }
    function callPage() {
        var userRequest = new XMLHttpRequest();
        userRequest.onreadystatechange = function () {
            if (this.readyState == 4) {
                if (this.status == 200 ) {
                    var res = JSON.parse(this.responseText);
                    if (res.posts.length==0 && res.comments.length==0) {
                        postResult();
                    } else {
                        totalScore += res.posts.map(x => x.counts.score).reduce((partialSum, a) => partialSum + a, 0);
                        totalScore += res.comments.map(x => x.counts.score).reduce((partialSum, a) => partialSum + a, 0);
                        currentPage++;
                        callPage();
                    }
                }
            }
        }
        userRequest.open("GET", INSTANCE_URL + "/api/v3/user?username=" + USERNAME + "&limit=50&page=" + currentPage, true);
        userRequest.send();
    }

    setTimeout(callPage, 200);
})();
1
submitted 1 year ago* (last edited 1 year ago) by alex@geddit.social to c/lemmy@geddit.social

Cross-posted from: https://lemmy.world/post/803492

As mentioned before I’m aiming to have something ready in the next 6 weeks ish.

Register your email to get notified when the app is ready to launch!

[-] alex@geddit.social 8 points 1 year ago* (last edited 1 year ago)

Just after he said "oh noes if you vote for her, taxes would go up 25 to 30 per cent and businesses would flee the city."

Quite the about-face. His handlers must've told him to change his tune.

[-] alex@geddit.social 10 points 1 year ago* (last edited 1 year ago)

He disregarded the protests as "noise". Of course he doesn't give a damn.

Let them die then. There's a point (that she's completely missing) about decentralization and not being beholden to billionaires to make the right decisions (they won't).

[-] alex@geddit.social 18 points 1 year ago* (last edited 1 year ago)

The general consensus is that this was going to be a monetary offer to allow Instagram to further colonize the Fediverse by purchasing one of the larger servers.

No, that's completely wrong. You're scaremongering. There was no such offer.

There is no confirmation of any financial contracts, or moderation arrangements and Eugen Rochko/Gargron has stated he doesn't know anything about any secret deals.[1]

From @supernovae@universeodon.com:

The nda wasn’t because of some absurd agreement but just the fact they’re launching a new project and we’re getting access to engineers and product team to discuss what the relationship could be. And they went well.[2]

There was a call to talk about engineering, moderation, safety, support for user privacy controls and how federation would look like. (and more)

There was no deal signing or any bullshit like that - that’s all fake news.

The nda is because none of this stuff is released and it’s up to meta to share details or admins to join the ongoing calls to learn in advance of launch what is going on.[3]

We don’t know, what we don’t know. So i initiated contact and meta obliged. Because the product isn’t released yet, there is an NDA.[4]

[-] alex@geddit.social 7 points 1 year ago

To bypass the paywall and read the article: https://archive.ph/qfn4r

[-] alex@geddit.social 8 points 1 year ago* (last edited 1 year ago)

referencing users on Lemmy is not at all the same as reddit, since there are multiple instances.

there's no automagic function for it (at least not on the web there isn't - that's probably why you couldn't find one), you just have to do it by hand.

ie. [@foreverwinter@lemmy.world](http://lemmy.world/u/foreverwinter) becomes: @foreverwinter@lemmy.world

view more: next ›

alex

joined 1 year ago
MODERATOR OF