https://www.youtube.com/watch?v=WiPp9YEBV0Q

In case you haven't seen it, here's a talk regarding Rust's integration into the Linux filesystem that gets completely derailed at The Linux Storage, Filesystem, Memory Management and BPF Summit.

31
2
new.reddit has been removed
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearKI
    kia
    Now 100%

    Fair, but I'd be willing to bet that most of the content producing users use the old layout as they've likely been using the site for a while. These users leaving would be a big deal.

    15
  • Why are there no bots that post Reddit content on Lemmy?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearKI
    kia
    Now 100%

    It is a thing on a lot of Lemmy communities, but most of the posts end up with no comments which makes them not that interesting. For certain niche communities, Lemmy just doesn't have the user base yet.

    10
  • Real examples here?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearKI
    kia
    Now 100%

    Yup... IIRC they basically started a company with a similar name when they didn't really have any association with the project then slowly consumed it.

    7
  • Real examples here?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearKI
    kia
    Now 100%

    Although it's now a larger organization, Redis was started and maintained by some guy that just wanted to make his website faster. It's very widely deployed.

    28
  • Lastpass Family - Privacy alternative
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearKI
    kia
    Now 100%

    It took me less than 30 minutes to transfer my LastPass vault to Proton Pass. The actual transfer took under a minute, then I just had to reorganize the folders. Definitely worth the switch.

    12
  • Google Says AI Olympics Ad 'Tested Well' Before Inspiring Outrage
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearKI
    kia
    Now 100%

    I'm sure they'd be pleased when the letter they receive back is also written by AI. Just cut out the middle man and have the AIs talk to each other at this point.

    32
  • I'm running into an issue accessing the Jellyfin web UI from Firefox (Chrome works fine). I try to log into an account but the spinner runs for a few seconds then disappears without logging in. When I reload the page, it appears I'm logged in, though all I see is the header and the rest of the page is blank. I get the following errors in console: ``` Uncaught Error: Permission denied to access property "ownerDocument" Uncaught Error: Permission denied to access property "localName" ``` Has anyone else run into this issue?

    7
    4

    Does anyone have any experience running Jellyfin on a Synology NAS that does not have container support? The Jellyfin installation guide recommends a Docker install for Synology. I have a Synology DS418 which apparently doesn't support Docker.

    8
    5

    It seems like the `key_value` function has been removed from Cursor in 1.78.0-nightly. I've been using this to get the key/value pair from `BTreeMap::upper_bound` and `BTreeMap::lower_bound`. Does anyone know why this was removed and what a good idiomatic alternative would be? Edit: In case anyone encounters the same problem and is curious what's going on (the documentation hasn't been updated to reflect the change yet), it was referred to in this issue: [107540](https://github.com/rust-lang/rust/issues/107540) changed in this commit: [8ee9693](https://github.com/rust-lang/rust/commit/8ee96931776c9d2912b379868ae3f7351d67281c). Essentially, cursors in BTreeMaps previously pointed to specific nodes in the tree whereas now they point to gaps between the nodes. To get the node values, you need to use `prev` or `next` on the cursors returned by `upper_bound` or `lower_bound`.

    14
    0
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMA
    New instance icon

    The new instance icon looks great!

    13
    4
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMA
    New instance icon

    A while ago we had a post about a new instance icon. Just wondering if there's any news on that?

    5
    5

    I'm getting errors such as "Socket: CLOSED" when I try to create comments, however the comment gets created. It then brings me back to the comment editing screen where if I click create again, it keeps duplicating the comment. Wondering if anyone else is having this issue? Edit: I get an error when creating posts as well: "stream was reset: CANCEL"

    10
    2

    This is a really simple silly thing I just realized, but I noticed I have a lot code that looks something like this: ``` fn foo() -> Result<(), Error> { // do something } fn bar() -> Option<()> { let Ok(f) = foo() else { return None; }; } ``` I hated that if-statement. I realized today that I could simplify to: ``` fn bar() -> Option<()> { let f = foo().ok()?; } ``` And that cleaned up my code a lot. It's a tiny thing, but when it's okay to discard the error from the result, makes such a big difference when you have a lot of them!

    42
    9

    It was my understanding that Proton bought SimpleLogin and would be integrating it into their products, but the aliases created by Proton Pass are not managed by SimpleLogin, correct? What's the difference between creating aliases in Proton Pass versus SimpleLogin and how do I manage the aliases created in Proton Pass?

    18
    6
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMA
    Defederate from instance

    As per [this Github pull request](https://github.com/LemmyNet/joinlemmy-site/pull/247) which is removing it from the Lemmy sign up page, we should defederate from this instance as well.

    12
    2

    It looks like if a community name is on the longer side, it pushes some of the UI elements to the edge of the screen and makes them look strange. You can see it at this community: !mildlyinteresting@lemmit.online

    23
    0

    Not sure if anyone else is having this problem, but whenever I'm reading a longer comment thread and I click "1 more reply" (or "N more replies"), the app crashes.

    17
    6

    I'm curious when the next beta release will be, or how often there will be a release if there's a schedule?

    1
    5

    How do I vote on comments if I disable comment gestures? The action menu on long press doesn't seem to have the options.

    16
    4

    This is an amazing app! I think it would be great if it would be possible to change the floating button colours.

    3
    1
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearKI
    Now
    25 164

    kia

    lemmy.ca