I see this often with both new and old developers, they have one way of doing a thing and when presented with a new problem they will fall back to what they are used to even if it’s not the optimal solution. It will probably work if you bruteforce it into your usual patterns but sometimes, a different approach is much easier to implement and maintain as long as you are willing to learn it, and more importantly - know it exists in the first place.

On a less abstract level, I guess my question is - how would I go around learning about different design patterns and approaches to problem solving if I don’t know about their existence in the first place? Is it just a matter of proactive learning and I should know all of them in advance, as well as their uses?

Let’s for example say I need to create a system for inserting a large amount of data from files into the db, or you need to create some service with many scheduled tasks, or an user authentication system. Before you sit down and start developing those the way you usually do, what kind of steps could you take to learn a potentially better way of doing it?

  • @CynoOP
    link
    38 months ago

    Maybe I’m using the word pattern wrong but I meant like builder, factory or visitor pattern, but on a more wide scale also stuff like dependency injection / IoC - basically “techniques” that are not bound to a specific language but rather provide a design by which some things can be accomplished better. Afaik those are not related to specific languages

    • @cgtjsiwy
      link
      08 months ago

      I would call those language-specific. While they are useful in more than one language, they are also replaced by language features in many languages.

      • Builder pattern can be simplified with kwargs (Python, C#) or argument objects (JS, C++).
      • Factory pattern can be simplified with first-class types (Lisp, Haskell).
      • Visitor pattern is similarly simplified by first-class functions (supported by most languages nowadays).
      • Dependency injection of concept X is generally simplified by first-class X. I think the least widely supported is dependency injection of effects (Koka).