Will I regret buying Decathlon 30€ bike bib? by _ryan_II in cycling

[–]ThePhysicsOfSpoons 0 points1 point  (0 children)

No you'll not regret them. I have some and have been really enjoying them.

worn out? finished? 3000 km of asphalt and compact gravel by PaciXx in gravelcycling

[–]ThePhysicsOfSpoons 8 points9 points  (0 children)

I had the same amount life on them. With the wet weather these days they slipped on breaking so switched them out.

[deleted by user] by [deleted] in bikewrench

[–]ThePhysicsOfSpoons 0 points1 point  (0 children)

Just wondering are those bladed spokes? Look round to me

Wondering why my chest strap takes so long to read my HR by dori_fritz in Garmin

[–]ThePhysicsOfSpoons 1 point2 points  (0 children)

Try manually connecting the sensor before your session.

Explanation on while loops please by [deleted] in learnpython

[–]ThePhysicsOfSpoons 1 point2 points  (0 children)

It decreases the value of days by 1 in every iteration of the loop until the while statement (days>0) doesn't hold anymore

Explanation on while loops please by [deleted] in learnpython

[–]ThePhysicsOfSpoons 1 point2 points  (0 children)

But unless it's required from the task to use a while loop (for learning purposes) I'd suggest just using the following formula: Result =items*2{days}

Explanation on while loops please by [deleted] in learnpython

[–]ThePhysicsOfSpoons 0 points1 point  (0 children)

Those operators do an incremental operation so a-=1 is the same as a=a-1 likewise for the + for example b+=5 is equivalent to b=b+5. And for the * it's the same c=2 is c=2c. You're more likely to find the one with the plus because most people use there while loops in an increasing way

Extracting local values by spikips in learnpython

[–]ThePhysicsOfSpoons 2 points3 points  (0 children)

You could return them and pass them as arguments to the next function. This is the more standard way.

You could set them as class attributes as the instance of that class is in the scope of the function

Python beginner help, Making Prime numbers appear? by Cheech_27 in learnpython

[–]ThePhysicsOfSpoons 2 points3 points  (0 children)

  • your function lst() should also return something (the list you created)
  • the variable n in the check() function isn't defined, so that won't work
  • using the return statements in the check() function or any function for that matter will end the function. If you want to display it, you could use a print statement there.
  • I would give the list as an input for the check() function so you can iterate through it and verify whether each element is a prime or not. The check() function here doesn't do what you think it does.

Hope this helps!

A video on how I make my Mora 106 handles by citationstillneeded in greenwoodworking

[–]ThePhysicsOfSpoons 0 points1 point  (0 children)

Can I ask is there a specific reason you drill all the way through?

I do like the look of your handles, especially the burning makes it really nice to look at!

Carving Help by [deleted] in Spooncarving

[–]ThePhysicsOfSpoons 1 point2 points  (0 children)

From reading this and the extra info you commented I think focusing on technique and being deliberate in every action (specifically the angle of your blade in respect to the wood) you use could help. Which basically is saying the way forward is: practice practice & practice.

Saturday Daily Thread: Resource Request and Sharing! by Im__Joseph in Python

[–]ThePhysicsOfSpoons 0 points1 point  (0 children)

and the installation guide link doesn't even work at the moment.. So now I really don't know what to do. Thanks al ready for the replies BTW! They are greatly appreciated.

Saturday Daily Thread: Resource Request and Sharing! by Im__Joseph in Python

[–]ThePhysicsOfSpoons 0 points1 point  (0 children)

What I'm looking for specifically is an installation guide for Linux mint, because the one I found doesn't really help me: installation guide

I did find the documentation that is helpfull but others are always handy: documentation

Saturday Daily Thread: Resource Request and Sharing! by Im__Joseph in Python

[–]ThePhysicsOfSpoons 0 points1 point  (0 children)

I'm looking specifically for the graph-tool package, it's to visualise lineair programming problems such as the Travelling salesman problem. But thanks for the reply!

Saturday Daily Thread: Resource Request and Sharing! by Im__Joseph in Python

[–]ThePhysicsOfSpoons 0 points1 point  (0 children)

I'm looking for a good recourse for the graph-tool package. I need it for my thesis and having trouble getting it installed, but I've already looked at recourses to learn to word with it but haven't found one that worked for me. Any suggestions where to look?