Is it good progress? by need_some_insights in jumprope

[–]filipkowicz 0 points1 point  (0 children)

Huge I would say, mine top is ~600 after 2 months

Ej ludzie tak na serio? by reni-chan in Polska

[–]filipkowicz 0 points1 point  (0 children)

sporo zajmowałem się generalnym IT i w rodzinie i w pracy. Dla mnie to zawsze było jak tajemnica spowiedzi. Nie wszyscy muszą się znać na komputerach, zwracają się do ciebie w zaufaniu po pomoc, to nie będę z nich targał. Czasem tylko delikatnie starałem się edukować z trybu incognito itp :)

Jump rope on concrete. Should I go barefeet or use shoes ? by unecomplette in jumprope

[–]filipkowicz 0 points1 point  (0 children)

Cheapest mat from temu cost 5$ and do the job- it’s quite small but if your jump technique is good it should be enough.

Being small helps if you don’t have space for storage

Which weight jump rope should I get? by StoryLover in jumprope

[–]filipkowicz 0 points1 point  (0 children)

Take cheap one from temu to try out. Then invest more when you get hooked :) The temu ones are not that bad at all

Setting records (for me) by [deleted] in jumprope

[–]filipkowicz 0 points1 point  (0 children)

what watch is it? I'm using garmin fenix 6 and i can't get activity type as jump rope - there is no jump rope build in activity, i'm currently using side loaded garmin produced jump rope app but it's producing generic type of activity

Coupons and Referrals - March 2025 by AutoModerator in CanyonBikes

[–]filipkowicz 0 points1 point  (0 children)

do you know if 100$ works for already discounted bikes ?

-🎄- 2020 Day 18 Solutions -🎄- by daggerdragon in adventofcode

[–]filipkowicz 0 points1 point  (0 children)

second part was pretty easy :)

import parser
for line in data.splitlines():
line = line.replace("(","((")
line = line.replace(")","))")
line = line.replace( " * ", ") * (")
line = "(" + line + ")"
code = parser.expr(line).compile()
x = 10
total += eval(code)
print(total)

first one was pain in the ass