[-] gears@lemmy.world 3 points 1 year ago

Yeah, I forget about that until I get a new phone and have to reinstall that extension..

[-] gears@lemmy.world 5 points 1 year ago

Can steam and gog players play together?

[-] gears@lemmy.world 11 points 1 year ago

Yes, 2% of all steam uses Linux (including steamdecks)

I'm confused why you think only 2% of steam deck users would use Linux when it's the OS that ships with it. Unless I misunderstood what you meant by SD?

[-] gears@lemmy.world 3 points 1 year ago

wefwef.app is pretty good (and a web app, so cross platform)

jerboa is decent, the new updates are nice but are only compatible with 0.18 (which lemmy.world will update to tomorrow)

Liftoff is okay, I haven't enjoyed it as much as jerboa or wefwef.

I also use the actual site's web app a bit, but I hate the live updating feed lol.

[-] gears@lemmy.world 1 points 1 year ago

I think it is more to understand the laws of the Cosmere more. Like investiture and how gods work and etc.

I agree actual story wise there isn't a lot to gain, but I just want to understand the Cosmere before continuing Stormlight and potentially missing things because I don't know better yet

[-] gears@lemmy.world 1 points 1 year ago

Man the bobiverse is amazing! I'm anxious for the next one to come out

[-] gears@lemmy.world 1 points 1 year ago

I use a supposedly nice drip basket bonavita machine. It works well, and it's still super easy to use.

[-] gears@lemmy.world 14 points 1 year ago

I miss having a notification LED. It used to be super common to have a "breathing" effect with a given color when an app had sent a notification.

So a Snapchat for example would show the breathing as yellow, etc. Super convenient to check for messages without going and grabbing the phone.

[-] gears@lemmy.world 4 points 1 year ago

Yeah, I've switched. Sometimes a result for tech help pops up on search and I open it through archive.org

[-] gears@lemmy.world 2 points 1 year ago

Accounts are per instance. The content that was shared to other federated instances would remain visible, though.

[-] gears@lemmy.world 1 points 1 year ago

It's because the number variable is a boolean, equal to "is value % 3 zero?". You're appending that result to the list for every number.

What you want is:

multiples_of_3 = []
for value in range(3, 31):
    if value % 3 == 0:
        multiples_of_3.append(value)

print(multiples_of_3)

The if statement means that you only append to the list if it's a multiple.

[-] gears@lemmy.world 1 points 1 year ago

Can you elaborate on your debugger?

I've been trying to switch to neovim, and I've got a pretty decent setup with treesitter and also lspconfig. My search and debugger are still non-existent and I'm not sure what is best.

I write python and c/c++ (for MCUs) at work, and I'm curious what the state of integration with potential debuggers is.

view more: next ›

gears

joined 1 year ago