Can steam and gog players play together?
Can steam and gog players play together?
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?
Man the bobiverse is amazing! I’m anxious for the next one to come out
Yeah, I’ve switched. Sometimes a result for tech help pops up on search and I open it through archive.org
I’m tempted to try and setup a nightly build of jerboa. If there are changes merged into main
I wanna use em
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.
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.
Yeah, I forget about that until I get a new phone and have to reinstall that extension…