[-] kia@lemmy.ca 40 points 6 days ago
[-] kia@lemmy.ca 22 points 1 week ago

Now could you explain it like I'm 4?

[-] kia@lemmy.ca 8 points 1 week ago
[-] kia@lemmy.ca 6 points 2 weeks ago

The browser extension has a pin lock feature.

[-] kia@lemmy.ca 1 points 2 weeks ago

Well that failed quickly.

[-] kia@lemmy.ca 37 points 4 weeks ago

Going to be interesting when the neighbour's unstrapped house crashes into it.

[-] kia@lemmy.ca 8 points 1 month ago

PDFs are also editable...

[-] kia@lemmy.ca 4 points 1 month ago

At this rate, he's going to put The Beaverton out of business...

[-] kia@lemmy.ca 41 points 1 month ago

He has concepts of rallies.

[-] kia@lemmy.ca 210 points 1 month ago

Ask them for their bank login details so you can deposit the money directly into their account.

[-] kia@lemmy.ca 11 points 1 month ago
34
submitted 2 months ago by kia@lemmy.ca to c/rust@programming.dev

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.

[-] kia@lemmy.ca 7 points 2 months ago

Oh there definitely is.

14
rust-analyzer changelog #237 (rust-analyzer.github.io)
submitted 5 months ago by kia@lemmy.ca to c/rust@programming.dev
7
submitted 7 months ago by kia@lemmy.ca to c/jellyfin@lemmy.ml

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?

8
submitted 8 months ago by kia@lemmy.ca to c/jellyfin@lemmy.ml

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.

14
submitted 9 months ago* (last edited 9 months ago) by kia@lemmy.ca to c/rust@programming.dev

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.

1
submitted 9 months ago by kia@lemmy.ca to c/main@lemmy.ca

The new instance icon looks great!

1
submitted 11 months ago by kia@lemmy.ca to c/main@lemmy.ca

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

11
submitted 11 months ago* (last edited 11 months ago) by kia@lemmy.ca to c/boostforlemmy@lemmy.world

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"

42
submitted 11 months ago by kia@lemmy.ca to c/rust@programming.dev

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!

1
submitted 1 year ago by kia@lemmy.ca to c/main@lemmy.ca

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

23
submitted 1 year ago by kia@lemmy.ca to c/boostforlemmy@lemmy.world

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

17
submitted 1 year ago by kia@lemmy.ca to c/boostforlemmy@lemmy.world

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.

view more: next ›

kia

joined 1 year ago