home.social

#projecteuler — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #projecteuler, aggregated by home.social.

fetched live
  1. 💾⚙️ Behold, another tragic tale of a coder stuck in the past, reminiscing about the golden days of *Project Euler* and brute force loops—because nothing screams "progress" like a decade-old Python script! 🤖🔄 But hey, why solve it yourself when you can just dump it on an AI and pretend to be productive at work? 🤷‍♂️📉
    blog.dahl.dev/posts/my-mathema #coderlife #nostalgia #AIautomation #ProjectEuler #PythonHumor #techfail #HackerNews #ngated

  2. 💾⚙️ Behold, another tragic tale of a coder stuck in the past, reminiscing about the golden days of *Project Euler* and brute force loops—because nothing screams "progress" like a decade-old Python script! 🤖🔄 But hey, why solve it yourself when you can just dump it on an AI and pretend to be productive at work? 🤷‍♂️📉
    blog.dahl.dev/posts/my-mathema #coderlife #nostalgia #AIautomation #ProjectEuler #PythonHumor #techfail #HackerNews #ngated

  3. Ich, wenn ich keinen Nerv mehr habe, meine #ProjectEuler Lösung weiter zu optimieren -.-

  4. Ich, wenn ich keinen Nerv mehr habe, meine #ProjectEuler Lösung weiter zu optimieren -.-

  5. #ProjectEuler is so good. :neofox_uwu:
    I love that it's been taking me at least 1-2 days in real time to solve problem 12 again. It's honestly refreshing that it neither holds my hand nor punish me for not progressing. I think the last recreational-brain-activity-platform-thing I tried was #Duolingo and getting into Project Euler again has really highlighted for me why I started to despise Duolingo's... everything.

  6. #ProjectEuler is so good. :neofox_uwu:
    I love that it's been taking me at least 1-2 days in real time to solve problem 12 again. It's honestly refreshing that it neither holds my hand nor punish me for not progressing. I think the last recreational-brain-activity-platform-thing I tried was #Duolingo and getting into Project Euler again has really highlighted for me why I started to despise Duolingo's... everything.

  7. Was going to do Stuff today but we started doing #ProjectEuler with @Daffodil and I had to redo all my old solutions. Got up to 11.
    Still ashamed that my fancy segmented sieve didn't work for the 10001sth prime. :moomin_sad:

    Can't sleep, my solution for problem 11 doesn't work. I've solved this 10 years ago already, why can't I solve it now with a BSc in my bag. :neofox_scream:

  8. Was going to do Stuff today but we started doing #ProjectEuler with @Daffodil and I had to redo all my old solutions. Got up to 11.
    Still ashamed that my fancy segmented sieve didn't work for the 10001sth prime. :moomin_sad:

    Can't sleep, my solution for problem 11 doesn't work. I've solved this 10 years ago already, why can't I solve it now with a BSc in my bag. :neofox_scream:

  9. 🔢🤓 Ah yes, Project Euler: the ultimate playground for those who find their math curriculum too "basic" but still enjoy the thrill of solving problems that bring back the joys of high school algebra. 🎓 Because what's more fun than mixing math with programming to really spice up your free time? 🖥️
    projecteuler.net #ProjectEuler #MathProblems #CodingFun #ProblemSolving #LearningThroughPlay #HackerNews #ngated

  10. 🔢🤓 Ah yes, Project Euler: the ultimate playground for those who find their math curriculum too "basic" but still enjoy the thrill of solving problems that bring back the joys of high school algebra. 🎓 Because what's more fun than mixing math with programming to really spice up your free time? 🖥️
    projecteuler.net #ProjectEuler #MathProblems #CodingFun #ProblemSolving #LearningThroughPlay #HackerNews #ngated

  11. Ich liebe #ProjectEuler:

    1. Aufgabe verstehen
    2. Naive Lösung ausprobieren
    3. Verzweifeln
    4. Neue Muster erkennen
    5. Sich unbesiegbar fühlen
    6. Nächste Aufgabe

  12. Ich liebe #ProjectEuler:

    1. Aufgabe verstehen
    2. Naive Lösung ausprobieren
    3. Verzweifeln
    4. Neue Muster erkennen
    5. Sich unbesiegbar fühlen
    6. Nächste Aufgabe

  13. If I don't trigger systemd-oomd at least once while working on a #ProjectEuler problem, am I even trying?

  14. If I don't trigger systemd-oomd at least once while working on a #ProjectEuler problem, am I even trying?

  15. I upload other video today
    video.hardlimit.com/w/86T4wkWg
    now introduce myself with #projectEuler platform, basically I resolved a simple problem just for know the platform.

    #PeerTube #python #coding #software

  16. I upload other video today
    video.hardlimit.com/w/86T4wkWg
    now introduce myself with #projectEuler platform, basically I resolved a simple problem just for know the platform.

    #PeerTube #python #coding #software

  17. A little bit of playing around in #Go with some of the #ProjectEuler problems I'd not done before... and I quite like it. Certainly seems easier to get my head around than #rust

    Note: I'm not looking to start a Go vs Rust debate... just that I've played a little with both and have found Go easier to work with for the things I've tried.

    #GoLang #RustLang

  18. 🧑‍💻 Write a script to “Find the sum of all the multiples of 3 or 5 below 1000” in O(1), i.e. constant time.
    The solution is simple and elegant, try it out.

    This problem is from #ProjectEuler.
    #coding #math #python #haskell

  19. 🧑‍💻 Write a script to “Find the sum of all the multiples of 3 or 5 below 1000” in O(1), i.e. constant time.
    The solution is simple and elegant, try it out.

    This problem is from #ProjectEuler.
    #coding #math #python #haskell

  20. A few years ago, I had solved a lot of Project Euler problems #ProjectEuler problems in #Python. I even had a lot of very useful utility functions to make things more modular and easier.

    After seriously starting to learn #Haskell sometime last year, I've been slowly translating that old code. I translated the utility functions as a way to learn the new language. I made a lot of progress this week on the problems themselves and I've realized how much better it is in Haskell.

    Of course, a part of it is that I've changed as a programmer, but the old Python code looks ugly compared to what I'm now writing in Haskell. The functional paradigm with lazy evaluation seems to fit perfectly with the kind of problems on Project Euler.

    My only "complaint" is that memoization is harder in Haskell. However, that's because I haven't spent any time figuring out how to do that well. It is not a language issue, but a me issue.

    I've definitely decided that I'll be finishing my "solve substantial problems on Project Euler" goal in Haskell and not use Python for that anymore.

  21. I just did 2*3*4*5*6**7*8*9*10 to see the result like a moron

    I am sutdying #projectEuler on rust, *please* do not send spoilers or suggestions

  22. I just did 2*3*4*5*6**7*8*9*10 to see the result like a moron

    I am sutdying #projectEuler on rust, *please* do not send spoilers or suggestions

  23. The #ProjectEuler experience: You cannot even rely on formulas from Wikipedia. For real.

  24. The #ProjectEuler experience: You cannot even rely on formulas from Wikipedia. For real.

  25. I dare you to solve just one #ProjectEuler today:

    projecteuler.net/problem=836

    (difficulty: 0-5% - for real, I swear)

  26. I dare you to solve just one #ProjectEuler today:

    projecteuler.net/problem=836

    (difficulty: 0-5% - for real, I swear)

  27. @teotwaki thank you! I haven't done these in a while, so I'm definitely lacking in these type of events. I used to do the problems daily for years... 😅 But that was years ago. 🤣

    My bet however, this time was mostly time to do it. I had to squeeze between family and work. So like an hour to 2 hours a day at most. Else it was past midnight the next shot. 🫠

  28. @teotwaki thank you! I haven't done these in a while, so I'm definitely lacking in these type of events. I used to do the #ProjectEuler problems daily for years... 😅 But that was years ago. 🤣

    My bet however, this time was mostly time to do it. I had to squeeze between family and work. So like an hour to 2 hours a day at most. Else it was past midnight the next shot. 🫠

  29. I started doing #ProjectEuler again today, and I keep coming up with awful solutions that take like 10 minutes to compute...

    But on the bright side, said insane compute time led me to dive into the Sieve of Eratosthenes algorithm and get it working in Python because finding primes is hard.

    Proud of myself since I hate doing math usually!

  30. Ich überlege ja, ob ich dieses Jahr wieder beim #AdventOfCode teilnehme oder ob ich stattdessen lieber mal wieder ein paar Probleme beim #ProjectEuler löse. An letzterem habe ich 2013 zum letzten Mal gearbeitet. Muss mal schauen, ob da irgendwo der Quellcode noch herumfliegt. Mein Fortschritt ist jedenfalls noch da 🙂. projecteuler.net

  31. Ich überlege ja, ob ich dieses Jahr wieder beim #AdventOfCode teilnehme oder ob ich stattdessen lieber mal wieder ein paar Probleme beim #ProjectEuler löse. An letzterem habe ich 2013 zum letzten Mal gearbeitet. Muss mal schauen, ob da irgendwo der Quellcode noch herumfliegt. Mein Fortschritt ist jedenfalls noch da 🙂. projecteuler.net

  32. considerata "l'amicizia" di #crystallang e #ruby sto aggiungendo anche qualche scriptino in Ruby appunto.

    #projecteuler

  33. considerata "l'amicizia" di #crystallang e #ruby sto aggiungendo anche qualche scriptino in Ruby appunto.

    #projecteuler

  34. Aggiornamento #projecteuler

    Visto che siamo in 16(😢) a giocare con #crystallang, alla fine ho pensato di raccogliere le soluzioni in un repo su framagit!
    Non che le mie soluzioni siano particolarmente originali ed esemplari ma, magari possono essere utili, chissà! Condividere inoltre potrebbe aiutarmi a trovare la spinta per andare avanti senza mollare subito 😂

    Qualche soluzione è anche in C (volevo vedere se ricordavo qualcosina dopo molti anni 😅)

    framagit.org/alephoto85/projec

    #programmazione

  35. Aggiornamento #projecteuler

    Visto che siamo in 16(😢) a giocare con #crystallang, alla fine ho pensato di raccogliere le soluzioni in un repo su framagit!
    Non che le mie soluzioni siano particolarmente originali ed esemplari ma, magari possono essere utili, chissà! Condividere inoltre potrebbe aiutarmi a trovare la spinta per andare avanti senza mollare subito 😂

    Qualche soluzione è anche in C (volevo vedere se ricordavo qualcosina dopo molti anni 😅)

    framagit.org/alephoto85/projec

    #programmazione

  36. Doing #projecteuler with #clojure has left me with an inability to write non-tailrecursive code.

  37. It's not a hard question per se but seeing I am one of the 3369 people who managed to solve this question still makes me feel proud of myself🥹

    (From tomorrow on I'll work in my school library on my webinar project rather than solving algorithm questions in a coffeeshop🥺)

    #algorithm #mathematics #projecteuler

  38. Hey uhhh I'm sorry I'm procrastinating again today but let's go over how I approached this question.
    #math #algorithm #optimization #projecteuler