Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)A
Posts
5
Comments
501
Joined
1 yr. ago

  • The ability to block posts by keyword would be nice. The ability to merge communities and have lemmy move the subscriptions over to the merged community, mastodon does something similar with moving accounts so it is possible.

  • This is a valid complaint in an ideal world, but in our current world this happens with every other site that has the same discussion model as lemmy. Your posts are not gone when you delete them on reddit. Reddit has a ton of mirrors and reddit themselves will never delete your post.

    Personally I'd rather see lemmy grow as it is rather than die try the extremely tough task of building a good federated privacy protocol. The privacy on lemmy comes from being able to create an account while providing no info, being able to access from TOR. People seeing your public posts is debatably even a privacy issue.

  • Try All + scaled it order active posts and scales it so its not dominated by large communties.. Also yeah its expected large communities will dominate an all inclusive feed. They product the most content and have the most users.

  • Not just monero but crypto. Any darkweb market place, most privacy services, a ton of small online sellers accept it as payment for goods. You can buy cards, houses coffees with crypto now. Its not wide spread enough to not have a bank account but you can make a decent amount of payments with it these days especially online.

  • I’m seriously concerned for when someone comes in contact with you and asks for your source when you’re discussing something

    How often does someone ask for a source? I dont know any redditors IRL. At the moment AI is great for quickly finding the answers to common questions. In a few years it will likely be a realiable source for almost all questions.

    Also AI does list sources now. So if I ask then it can find the answer and link where that answer came from. If I really needed to double check its work.

    For blockchain stuff I shouldnt have said involved I should have said control. A 3rd party is involved in the transactions but no 3rd party controls it.

  • If you didnt get the job then its not being canceled but in this case Shane did get the job. Anyway no one cares about it, its just something that he laughs about on his podcast.

  • Yes there are cryptobros speculating on the currency but it doesnt change much IMO. You dont have to wait to buy things with crypto its already there in a lot of places.

  • Again, im sorry that you burned yourself after uncritically following instructions from a chatbot. Just like with search engines you cannot take the results as gospel.

  • You have to exercise some common sense and not just believe everything you read on the internet. I'm sorry that you burned yourself.

    Testing that just now it recommends 37-40. So like I said, they're improving rapidly and they will be the best way to search for information.

  • Im new but ive noticed a ton of slop news is spammed by the same handful of accounts only. None of the articles add anything new or provide a unique perspective. Then its spammed over all the news subs. Its annoying but im not a mod what can i do.

    I think that slop news posts are intentionally inflammatory because they add no new information and only seek to evoke an emotional reaction.

  • Gonna go for some controversial ones.

    AI (generative), around chatgpt 2 i was hearing a ton of hype and I thought no way this ever gets good enough to be useful. Now today I can say yeah its there, in my opinion its the best way to search for answers. Google got popular because people could search with human style in puts like "how long do I cook rice for" but now we have AI that eliminates the step of skimming through the results.

    Crypto. The hype was that it would replace currency and while it hasnt done that it does actually provide a replacement for fiat currency. I can send a transaction to an internet friend and maintain all my privacy with no 3rd party being involved its great. Its stable enough to hold and its even been trending up over time. Pretty cool stuff, Monero is my preferred currency but I do use bitcoin for a ton of stuff.

  • You need the ones that have an "AI" aiming feature but the AI is actually a japanese man sitting in his cubical remote controlling it.

  • Canceled is getting the job then getting fired cause of an old clip. Deserved or not it fits the definition.

  • He got a job on SNL and within 24hr someone had dug up an old podcast clip and he got canceled for that.

  • Its embarrassing that this was pretty much all it took to radicalize so many people "realizing he didn't have to wear a mask at a restaurant"

  • I dont think most people need a security model that is fed proof. Thats a pretty extreme level of privacy and most people would break it by yappign about their life to much.

  • On the HN thread one of the matrix contributors responded. I'll copy his response here incase anyone wants to see what their response to these points are:

    Another day, another matrix hit piece on the front page of HN. Unsure whether it's really my job as matrix lead to respond, but hey, let's go again.

    TL;DR: the only valid points here really are complaints about state resets (being addressed in https://matrix.org/blog/2025/07/security-predisclosure/) and canonical json edge cases (which are on the radar). We should probably also remove device_display_names entirely. Stuff about "you have to trust other people's servers when you ask them to delete data!" is not exactly earth-shattering, and the encryption & authenticated media issues mentioned got fixed in 2024.

    Point by point:

    1. the graph is append-only by design

    Nope, Matrix rooms are designed to let server prune old data if they want - https://element-hq.github.io/synapse/latest/message_retentio... is how you configure Synapse for it, for instance. The DAG can also have gaps in it (see point 6 below).

    1. if you do want to delete something, you can send a redaction event which asks other servers very nicely to delete the content of the event, but redactions are advisory

    If you ask a server to delete data, you have to trust it actually deletes it. That goes for any protocol; it's nothing to do with Matrix.

    1. however, servers that choose to ignore redactions, or fail to process them for some other reason, can leak supposedly-deleted data to other servers later on.

    see above.

    1. certain events, like membership changes, bans or pretty much any event that exercises some control over another user can't be deleted ever as they become woven into the "auth chain" of future events

    This one's almost true. The fact that "events which exercise control over another use" (i.e. access control) can't be deleted should not be surprising, given access control that doesn't disappear from under you is generally considered a good thing. However, if you really do want to delete it, you could 'upgrade' the room by pointing it to a new room ID, and vape the previous one (although admittedly there's no 'vape room' API yet).

    1. the only way to discard all of this spam complexity is to recreate the room.

    ...or upgrade it, which is increasingly a transparent operation (we've been doing a bunch of work on it in preparation for https://matrix.org/blog/2025/07/security-predisclosure/). Meanwhile, mitigating state spam is part of the scope of the ongoing security work mentioned there.

    1. it's exceptionally hard to linearize history if you don’t know the entire history of the room partially.

    Yup, this is a feature. We don't want servers to have to sync full room history; they're allowed to do it in chunks. The tradeoff is that ordering the chunks is a heuristic, although we're currently in the process of improving that.

    1. it is also somewhat possible to insert messages into history by crafting events in the graph that refer to older ancestor events

    Decentralisation means that servers are allowed to branch from old commits (in git parlance), much like git. This is desirable if you're handling delayed traffic from a network partition or outage; we're working on avoiding it in other scenarios.

    1. another thing that is worth noting is that end-to-end encryption in matrix is completely optional.

    Sometimes E2EE makes no sense (e.g. massive public rooms, or clients which don't implement E2EE). Any client that speaks E2EE makes it abundantly clear when a room is encrypted and when it isn't; much like https v. http in a browser.

    1. the end-to-end encryption is also annoyingly fragile

    Not any more; we fixed it over the course of 2024 - see https://2024.matrix.org/documents/talk_slides/LAB4%202024-09... or the recording at https://www.youtube.com/watch?v=FHzh2Y7BABQ. If anyone sees Unable To Decrypt messages these days (at least on Element Web or Element X + Synapse) we need to know about it.

    1. sometimes these device list updates updates also leak information about your device

    Clients send a default device name (e.g. "Element X on iPhone 12 Pro Max") to the server, to help the user tell their own sessions apart, and to give users on the same server some way of debugging encryption problems. Admittedly this is no longer needed (clients typically hide this data anyway), so the API should be cleaned up.

    1. the spec doesn’t actually define what the canonical json form is strictly

    This one is accurate; we need to tighten/replace canonical json, although in practice this only impacts events which deliberately exploit the ambiguities.

    1. matrix homeservers written in different languages have json interoperability issues

    See above.

    1. [server] signing key expiry is completely arbitrary

    Server signing keys are definitely a wart, and we're working on getting rid of them.

    1. split-brained rooms are actually a common occurrence

    Once https://matrix.org/blog/2025/07/security-predisclosure/ lands, things should be significantly improved.

    1. state resets happen quite a bit more often when servers written in different languages interoperate

    See above.

    1. room admins and moderators have lost their powers over public rooms many times due to state resets

    See above.

    1. you can’t actually force a room to be shut down across the federation

    Same as point 2 and 3, you can't force other people's servers to do anything on the Internet (unless we end up in some kind of DRM or remote attestation dystopia)

    1. moderation relies entirely on the functioning of the event auth system

    See above for upcoming state reset fixes.

    1. media downloads are unauthenticated by default

    Not since https://matrix.org/blog/2024/06/26/sunsetting-unauthenticate...

    1. you can ask someone else’s homeserver to replicate media

    Only if you're authenticated on it, as of https://matrix.org/blog/2024/06/26/sunsetting-unauthenticate...

    1. media uploads are unverified by default

    Yes, being an end-to-end encrypted comms system, the server can't scan your uploads given it can't decrypt them, by default. Clients can scan though if they want, although in practice few do.

    1. you could become liable for hosting copies of illegal media

    This is true of any federated system. If you run a mail server, and one of your users subscribes to a malicious mailing list, your mail server will fill up with bad content. Similarly if you run a usenet server. Or a git forge, and someone starts mirroring malicious content.

  • Elves. They're the vanilla ice cream of fantasy races. Oh wow an elf archer daring today arent we, let me guess smart? attractive? tall? skilled?

    Goblins on the other hand they deserve more hype. They're awesome I love those little guys.

  • Everyone is always wondering how to make Postgres faster, more efficient, etc, but nobody ever thinks about how to make Postgres slower.

    This man is answering the questions no one asked purely for the love of the game.