kia

joined 2 years ago
[–] [email protected] 218 points 1 month ago (14 children)

In 6 months, he's going to be talking about how Canada started this trade war.

[–] [email protected] 145 points 2 months ago (8 children)

Why not simply try your best to be born into a rich family?

[–] [email protected] 6 points 2 months ago

CBC Gem is genuinely one of the best streaming services out there. And it's free.

[–] [email protected] 7 points 2 months ago

Pretty on brand for the entire Trump administration.

[–] [email protected] 2 points 3 months ago (1 children)

Boost looks pretty good on a tablet.

[–] [email protected] 7 points 3 months ago (1 children)

Looking at your moderation history, it doesn't seem that way...

[–] [email protected] 29 points 3 months ago (4 children)

Why don't you add Lemmy to the list of social media you don't have?

[–] [email protected] 43 points 5 months ago (3 children)
[–] [email protected] 23 points 6 months ago (8 children)

Now could you explain it like I'm 4?

[–] [email protected] 9 points 6 months ago
[–] [email protected] 9 points 6 months ago (6 children)

Well that failed quickly.

[–] [email protected] 8 points 6 months ago* (last edited 6 months ago)

Will you have to refund him when Trump loses?

 

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!

 

It released almost a ton of CO~2~.

 

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?

 

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

 

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]

 

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.

 

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

 

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

 

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

 

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

 

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.

view more: ‹ prev next ›