I don’t need something practical. I just need something fun to keep me motivated.

  • ageedizzle@piefed.caOP
    link
    fedilink
    English
    arrow-up
    4
    ·
    19 days ago

    Hey thanks for the game recommendation. It’s always nice to have some leisurely activity that is fun to do but you can feel productive doing anyway. Thanks for the language list too.

    This might be a basic question but what do you mean exactly about ‘learning the anti-patterns’? Can you expand on that?

      • ageedizzle@piefed.caOP
        link
        fedilink
        English
        arrow-up
        4
        ·
        19 days ago

        Interesting! This feels like it’s going to be something that, once you understand it, you can’t believe you ever programmed without it. Thanks!

        • orclev@lemmy.world
          link
          fedilink
          arrow-up
          2
          ·
          19 days ago

          See also the closely related concept of code smells. These are things that aren’t necessarily wrong like anti-patterns are because in certain niche cases or in limited amounts they’re fine, but they’re often an indicator that you’re doing something wrong in your code. As a quick example I looked up some code smells in JS and a couple of the examples were using == instead of === and having deeply nested/indented code (E.G. have if blocks inside of if blocks inside of if blocks inside of a for loop).