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

  • nate3d@lemmy.world
    link
    fedilink
    arrow-up
    5
    ·
    edit-2
    18 days ago

    Python is one of the more forgiving and extremely versatile.

    I highly recommend checking out the game “The Farmer Was Replaced” on Steam as it might be the best way to introduce yourself to programming concepts outside of a classroom. (Not affiliated, just love the game XD)

    Then in no particular order:

    • Rust (and understand C++ and all interops)
    • Typescript
    • Bash
    • DotNet (Java that works)

    And as always - learning the anti patterns is more important than learning the patterns.

    • ageedizzle@piefed.caOP
      link
      fedilink
      English
      arrow-up
      4
      ·
      18 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
          ·
          18 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
            ·
            18 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).