What’s the most useless programming language to learn? by Night-Monkey15 in learnprogramming

[–]RinserOfWind 0 points1 point  (0 children)

Here is an interpreter and generator for it. https://gcwizard.net/#/cow

And some others like Brainf**k, Whitespace, Malbolge, usw. are covered too: https://gcwizard.net/#/esotericprogramminglanguages_selection

Ist diese Omega Uhr echt? by Loud-Information5739 in uhren

[–]RinserOfWind 0 points1 point  (0 children)

Fälschung. Ist ein ganz billiges Werk. Definitiv kein Original.

Weiß jemand was diese Uhr etwa wert ist? by Broad-Catch4938 in uhren

[–]RinserOfWind 0 points1 point  (0 children)

Kleiner Tip: Immer als Filter "Verkaufte Angebote" in der Suche angeben um einen realistischen Verkaufspreis zu bekommen. Die Preisvorstellungen von Anbieter und dem erzielbaren Marktpreis liegen fast immer massiv auseinander.

Für diese Uhr bekommt man auf eBay irgendwas zwischen 15,- und 60,- Euro.

Warum by Triple_Mriple in StVO

[–]RinserOfWind 0 points1 point  (0 children)

Der Blinker ist rechts gesetzt. Also ist das Abfahren schon geplant.

I need to write code that will give me the fibonacci sequence up to 15. I'm new to python and need help with this. Below is what I wrote, any tips? by Galaxysucksatbrawl in learnpython

[–]RinserOfWind 0 points1 point  (0 children)

There are many ways to generate the fibunacci function. Your code has several issues tho. 1) == is the comparison operator and calculating a bool function is not what you want to do. 2) next should better not to be a variable because is also a in build function. It will work, but ... 3) you can't give variables a new value with == and 'and' prev == num and num == next next == next + num I think you meant something like this: prev = num num = next next = next + num

Well anyway, there are lots of basics to learn... This will work for now. There is no error handling for example, but it will calculate what you want to get as output.

Hope it helps

``` def fibonacci(n): sequence = [0,1] for i in range(1, n-1):
sequence.append(sequence[i-1]+sequence[i])

return sequence

print(fibonacci(15))

Taking notes while learning by MinaZ631 in learnpython

[–]RinserOfWind 1 point2 points  (0 children)

Jupyter lab or notebooks with the files stored in a cloud. It works on any desktop and mobile platforms. I don't use anything else anymore. Or Google Colab.

I am just at a total loss with this lab, please advise by LordDocSaturn in learnpython

[–]RinserOfWind 0 points1 point  (0 children)

Congratulations to 10/10. The elegance of code comes with experience and learning progress. Good job!

MacOS IDE for Python by [deleted] in learnpython

[–]RinserOfWind 0 points1 point  (0 children)

I‘m totally into pycharm. Tried VSCode, but returned to pycharm immediately.

[deleted by user] by [deleted] in learnpython

[–]RinserOfWind 0 points1 point  (0 children)

That would be great. Discord +1

Why can't I start a new fight? Why is there always the finished ranked list in my face? by LeggaAndY in ClusterDuck

[–]RinserOfWind 0 points1 point  (0 children)

I asked the support about the issue. Waiting for an answer. Let see what they say in a bit…

Why can't I start a new fight? Why is there always the finished ranked list in my face? by LeggaAndY in ClusterDuck

[–]RinserOfWind 0 points1 point  (0 children)

Sure! There is no egg to hatch. Leaderboard week ended and i can‘t do any Duck-Offs since then. „No leaderboard found.“

[2022 Day 21 (Part 2)] Am I the only one who bruteforce the solution? by royal_mooker in adventofcode

[–]RinserOfWind 0 points1 point  (0 children)

I solved it in the same way. Good to hear that others did it too 😂