[-] SorteKanin@feddit.dk 6 points 2 days ago

Yea this has really big astroturfing vibes.

[-] SorteKanin@feddit.dk 24 points 2 days ago

The fediverse is not really about avoiding censorship as it is about providing choice. That means the choice to listen to who you want to listen to (i.e. what servers to (de)federate from/to), the choice to post whatever you want (but you might get banned from your own instance or any other instance, that's their prerogative), the choice of administrators and moderators (i.e. which instance you sign up to and what communities you participate in).

All of that stuff doesn't really have to do with censorship directly, but it has implications for censorship. The fediverse is not built primarily to avoid censorship though, and in some cases it is made to make "censorship" (moderation) easier, rather than harder.

[-] SorteKanin@feddit.dk 3 points 4 days ago

It's okay, apology accepted.

[-] SorteKanin@feddit.dk 180 points 2 weeks ago

"Wikipedia concludes that Israel is committing genocide, thus ending an editorial debate"

[-] SorteKanin@feddit.dk 135 points 2 months ago* (last edited 2 months ago)

Lemmy devs decided to exclude lemmy.world from the join-lemmy site because it's too big. Obviously that removes a lot of active users.

https://github.com/LemmyNet/joinlemmy-site/pull/358

398
submitted 2 months ago* (last edited 2 months ago) by SorteKanin@feddit.dk to c/fediverse@lemmy.world

I recently discovered an interesting (and somewhat disappointing, as we'll find later) fact. It may surprise you to hear that the two most upvoted comments on any Lemmy instance (that I could find at least) are both on Feddit.dk and are quite significantly higher than the next top comments.

The comments in question are:

  1. This one from @bstix@feddit.dk with a whopping 3661 upvotes.
  2. This one from @TDCN@feddit.dk with 1481 upvotes.

These upvote counts seems strange when you view them in relation to the post - both of the comments appear in posts that do not even have 300 upvotes.

Furthermore, if you go on any instance other than Feddit.dk and sort for the highest upvoted comments of all time, you will not find these comments (you'll likely instead find this one from @Plume@lemmy.blahaj.zone).

Indeed, if you view the comments from another instance (here and here), you will see a much more "normal" upvote count: A modest 132 upvotes and a mere 17 upvotes, respectively.

What's going on?


Well, the answer is Mastodon. Both of these comments somehow did very well in the Mastodon microblogging sphere. I checked my database and indeed, the first one has 3467 upvotes from Mastodon instances and the second one has 1442 upvotes from Mastodon instances.

Notice how both comments, despite being comments on another post, sound quite okay as posts in their own right. A Mastodon user stumbling upon one of these comments could easily assume that it is just another fully independent "toot" (Mastodon's equivalent of tweet).

Someone from Mastodon must have "boosted" (retweeted) the comments and from there the ball started rolling - more and more people boosted, sharing the comments with their followers and more and more people favorited it. The favorites are Mastodon's upvote equivalent and this is understood by Lemmy, so the upvote count on Lemmy also goes up.

Okay, so these comments got hugely popular on Mastodon (actually I don't know if 3.4k upvotes is unusual on Mastodon with their scale but whatever), but why is there this discrepancy between the Lemmy instances then? Why is it only on Feddit.dk that the extra upvotes appear and they don't appear on other instances?

The reason is the way that Mastodon federates Like objects (upvotes). Like objects are unfortunately only federated to the instance of the user receiving the Like, and that's where the discrepancy comes from. All the Mastodon instances that upvoted the comments only sent those upvotes directly to Feddit.dk, so no other instances are aware of those upvotes.

This feels disappointing, as it highlights how Lemmy and Mastodon still don't really function that well together. The idea of a Lemmy post getting big on Mastodon and therefore bigger on Lemmy and thus spreading all over the Fediverse, is unfortunately mostly a fantasy right now. It simply can't really happen due to the technical way Mastodon and Lemmy function. I'm not sure if there is a way to address this on either side (or if the developers would be willing to do so even if there was).

I personally find Mastodon's Like sharing mechanism weird - only sharing with the receiving instance means that big instances like mastodon.social have an advantage in "gathering Likes". When sorting toots based on favorites, bigger instances are able to provide a much better feed for users than smaller instances ever could, simply because they see more of the Likes being given. This feels like something that encourages centralization, which is quite unfortunate I think.


TL;DR: The comments got hugely popular on Mastodon. Mastodon only federates upvotes to the receiving instance so only Feddit.dk has seen the Mastodon upvotes, and other instances are completely unaware.

113
1
322
submitted 3 months ago by SorteKanin@feddit.dk to c/fediverse@lemmy.world
590
SMBC [2012-02-02] (www.smbc-comics.com)

Bonus panel:

378
SMBC [2011-10-28] (www.smbc-comics.com)
24
Bevy 0.14 Released (bevyengine.org)
submitted 4 months ago by SorteKanin@feddit.dk to c/rust@programming.dev
142
submitted 5 months ago* (last edited 5 months ago) by SorteKanin@feddit.dk to c/linux@programming.dev

One big difference that I've noticed between Windows and Linux is that Windows does a much better job ensuring that the system stays responsive even under heavy load.

For instance, I often need to compile Rust code. Anyone who writes Rust knows that the Rust compiler is very good at using all your cores and all the CPU time it can get its hands on (which is good, you want it to compile as fast as possible after all). But that means that for a time while my Rust code is compiling, I will be maxing out all my CPU cores at 100% usage.

When this happens on Windows, I've never really noticed. I can use my web browser or my code editor just fine while the code compiles, so I've never really thought about it.

However, on Linux when all my cores reach 100%, I start to notice it. It seems like every window I have open starts to lag and I get stuttering as the programs struggle to get a little bit of CPU that's left. My web browser starts lagging with whole seconds of no response and my editor behaves the same. Even my KDE Plasma desktop environment starts lagging.

I suppose Windows must be doing something clever to somehow prioritize user-facing GUI applications even in the face of extreme CPU starvation, while Linux doesn't seem to do a similar thing (or doesn't do it as well).

Is this an inherent problem of Linux at the moment or can I do something to improve this? I'm on Kubuntu 24.04 if it matters. Also, I don't believe it is a memory or I/O problem as my memory is sitting at around 60% usage when it happens with 0% swap usage, while my CPU sits at basically 100% on all cores. I've also tried disabling swap and it doesn't seem to make a difference.

EDIT: Tried nice -n +19, still lags my other programs.

EDIT 2: Tried installing the Liquorix kernel, which is supposedly better for this kinda thing. I dunno if it's placebo but stuff feels a bit snappier now? My mouse feels more responsive. Again, dunno if it's placebo. But anyways, I tried compiling again and it still lags my other stuff.

720
submitted 5 months ago* (last edited 5 months ago) by SorteKanin@feddit.dk to c/science_memes@mander.xyz

Bonus panel:

673
submitted 5 months ago by SorteKanin@feddit.dk to c/games@lemmy.world
88
submitted 5 months ago* (last edited 5 months ago) by SorteKanin@feddit.dk to c/map_enthusiasts@sopuli.xyz

(sorry about the colors not matching)

65
submitted 5 months ago by SorteKanin@feddit.dk to c/linux@lemmy.world

I've ran into this situation multiple times at my current and previous jobs. I really want to avoid Windows and use something better, but I can't live without two external monitors.

On Windows, it "just works". I don't have to do anything.

On Linux (I tried Linux Mint today) it doesn't work. First, it only connected one of the monitors, the other one did not register. Then I switched to a different cable from the computer to the docking station and it connected both screens - however, they were locked to 30fps. I could not make them work at 60fps (and this is a major dealbreaker, I cannot live with 30fps).

This isn't really a tech support question, I'm more trying to understand what fundamentally causes this situation. Why is Linux still struggling with pretty basic functionality that Windows does with zero setup? Is it the vendor of the laptop and docking station that aren't properly supporting Linux? Or is it some other problem?

[-] SorteKanin@feddit.dk 160 points 5 months ago* (last edited 5 months ago)

Whenever you see something like this, please just report the post as spam, block the user and petition your community moderators to recruit more mods, especially in other time zones.

Even better, volunteer as mod yourself.

Also please tell your admins to use an application rather than just the captcha - the captchas are easily broken.

[-] SorteKanin@feddit.dk 145 points 6 months ago

I'm so incredibly grateful that the EU is really trying to fix the internet. Also grateful to organization like the EFF that try to do the same. I recently became a donor as I think their work really is critical.

Can you believe the shit these companies would do if it wasn't for the EU and their regulation? It'd be a dystopia (well, more than it already is at least).

[-] SorteKanin@feddit.dk 290 points 8 months ago

Musk has marketed it as the world’s “town square"

He says it so clearly here which makes me wonder how people don't realize it:

How fucked up would it be if your actual town square was owned by a private company?

A private company that is in control of who is allowed to talk and what they are allowed to say. A private company that even decides what you hear and see while walking the square. Meanwhile also shovelling ads in front of you while you try to find the people you actually want to engage with.

"Social" media owned by private corporations is not social. Such media is anti-social, corporate control of public spaces that ought to belong to the people, just like they mostly do in real life.

[-] SorteKanin@feddit.dk 227 points 8 months ago* (last edited 8 months ago)

You can't delete any text in comments or posts either - or at least not reliably, as any federated instance could choose to ignore deletions.

You should basically consider what you write or post here public, and probably public for good. But here's the thing - same goes for the entire rest of the Internet as well, basically.

[-] SorteKanin@feddit.dk 168 points 9 months ago

Kind of cute but also kind of sad. Love is sometimes also a leap of faith and trust. It seems like they never really trusted each other, or themselves, to still love each other.

Personally I think marriage is not about force, but about trust. It's a confession of trust in your partner.

[-] SorteKanin@feddit.dk 133 points 9 months ago

Remember the whole "if you aren't paying for the product, you are the product"?

It wasn't enough to turn you into a product. Now they also want to turn you into a resource. Farming your comments and posts to feed to an AI model.

What an economy we've built.

[-] SorteKanin@feddit.dk 471 points 10 months ago

No, Firefox doesn't have bugs with your store. Your store has bugs.

view more: next ›

SorteKanin

joined 2 years ago