[TIL] 2019-11-09

undefcat·2019년 11월 9일
0

TIL

목록 보기
56/228

2019-11-09 토요일

영상

GopherCon EU 2018: Best Practices for Industrial Programming

  • Flag are the best way to configure your program.
    - They self-document the configuration surface area at runtime.
  • Env vars and config files are useful in addition to flags.
    - Avoid using them as the only way to configure your program.
  • Prefer IoC dependency injection.
    - Avoid DI frameworks or containers.
  • Speaker's theory of modern Golang
    1. Explict dependencies. 나도 동의한다.
    1. No pkg level variable. 마찬가지로 동의함.
    2. No func init. 좀 생각해봐야 할 것 같다.

코드가 조금 길어지더라도, 명시적인 것이 좋다고 생각한다. IoC나 DI는 중요하다. 하지만 이로 인해 코드를 이해하기 힘들어지면 안 된다. 의존성을 주입하되, 명확히 어떤 의존성이 주입되는지 미래의 메인테이너는 이를 쉽게 파악할 수 있어야 한다. 내가 아닌 다른 사람이 와도 명확히 이해할 수 있는 코드를 작성할 수 있게 항상 고민하자.

Post

Is It Time to Get Over Design Patterns?

Design patterns can’t teach you software architecture. They aren’t meant as an excuse to write a lot of code or a way to avoid thinking deeply about design. But they can help you think about your designs at a higher level of abstraction. And that’s probably what the Gang of Four were hoping all along.

오브젝트

  • 복습
profile
undefined cat

0개의 댓글