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/)KI
Posts
18
Comments
154
Joined
2 yr. ago
  • But are you evenly distributing your data amongst all your accounts right now (as in commenting/posting from all of them)? Because if not, your data would be lost if your main instance goes down anyway. What's the point of the other accounts?

  • Boost For Lemmy @lemmy.world
    kia @lemmy.ca

    Breaking Changes in Lemmy 1.0

    cross-posted from: https://lemmy.ml/post/25684090

    Rust @programming.dev
    kia @lemmy.ca

    Derailed talk regarding Rust's integration into the Linux filesystem

    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.

    Rust @programming.dev
    kia @lemmy.ca

    rust-analyzer changelog #237

    Jellyfin: The Free Software Media System @lemmy.ml
    kia @lemmy.ca

    Error accessing Jellyfin web UI from Firefox

    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:

     undefined
        
    Uncaught Error: Permission denied to access property "ownerDocument"
    Uncaught Error: Permission denied to access property "localName"
    
      

    Has anyone else run into this issue?

    Jellyfin: The Free Software Media System @lemmy.ml
    kia @lemmy.ca

    Jellyfin on Synology NAS without Docker

    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.

    Rust @programming.dev
    kia @lemmy.ca

    Cursor key_value in 1.78.0-nightly

    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 changed in this commit: 8ee9693. 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.

    Lemmy.ca's Main Community @lemmy.ca
    kia @lemmy.ca

    New instance icon

    The new instance icon looks great!

    Lemmy.ca's Main Community @lemmy.ca
    kia @lemmy.ca

    New instance icon

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

    Boost For Lemmy @lemmy.world
    kia @lemmy.ca

    Errors when trying to create comments

    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"

    Rust @programming.dev
    kia @lemmy.ca

    Small pattern that made my code much cleaner

    This is a really simple silly thing I just realized, but I noticed I have a lot code that looks something like this:

     undefined
        
    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:

     undefined
        
    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!

    Lemmy.ca's Main Community @lemmy.ca
    kia @lemmy.ca

    Defederate from instance

    As per this Github pull request which is removing it from the Lemmy sign up page, we should defederate from this instance as well.

    Boost For Lemmy @lemmy.world
    kia @lemmy.ca

    Long community names have strange formatting

    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:

    [email protected]

    Boost For Lemmy @lemmy.world
    kia @lemmy.ca

    App crashes when I try to load more comments

    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.

    Boost For Lemmy @lemmy.world
    kia @lemmy.ca

    Next beta release

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

    Thunder App @lemmy.world
    kia @lemmy.ca

    Voting on comments without gestures

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

    Thunder App @lemmy.world
    kia @lemmy.ca

    Change FAB button colours

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

    Lemmy.ca's Main Community @lemmy.ca
    kia @lemmy.ca

    Upgrading to v0.18.1

    Are we upgrading to v0.18.1 soon? The only reason I ask is that it fixes a serious security bug.

    Software alternatives for Linux @lemmy.ca
    kia @lemmy.ca

    Darktable (Lightroom alternative)

    I've been using Darktable for years and although it has a steep learning curve, I've found it to be quite a good replacement for Lightroom on Linux.