Spyke

Replies

Comment on

The avalanche has begun

Reply in thread

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?

Comment on

What are the best Lemmy apps for Android/Apple?

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.

android

Comment on

Summit - A Lemmy reader

Pretty nice app!

What's the "Goto" thing? "Enter reddit link"?

Also is there a way to view my subbed communities as a feed? And where is the list of communities in my sidebar pulled from?

Any plans for open source?

Comment on

Help with Python

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.

Comment on

What books are you reading at the moment?

Reply in thread

I'm waiting to start the 4th book and reading the Mistborn series first - I want to learn more about the Cosmere! I love the storm light archive but a friend convinced me I would get more out of it if I read Warbreaker and then the Mistborn series first. Warbreaker lets you learn some about characters that appear on Roshar.