All Articles

Some pragmatic notes for programmers (part 1)

Keep record of some highlights from the book “The Pragmatic Programmer: your journey to mastery, 20th Anniversary Edition, 2nd Edition” which might be useful to me, or your Software Engineer career path.

What makes a pragmatic programmer?

  1. Over the long term, your time investment will be repaid as you and your team become more efficient, write code that’s easier to maintain, and spend less time in meetings.
  2. You rarely take things as given without first getting the facts. When colleagues say “because that’s the way it’s done,” or a vendor promises the solution to all your problems, you smell a challenge.
  3. We who cut mere stones must always be envisioning cathedrals.
  4. Every day, work to refine the skills you have and to add new tools to your repertoire.

1. A Pragmatic Philosophy && Software Entropy

  1. When you find yourself saying, “I don’t know,” be sure to follow it up with “—but I’ll find out.” It’s a great way to admit what you don’t know, but then take responsibility like a pro.
  2. Before you approach anyone to tell them why something can’t be done, is late, or is broken, stop and listen to yourself. Talk to the rubber duck on your monitor, or the cat.
  3. Don’t leave “broken windows’’ (bad designs, wrong decisions, or poor code) unrepaired. Fix each one as soon as it is discovered. If there is insufficient time to fix it properly, then board it up.
  4. It’s time to bring out the stones. Work out what you can reasonably ask for. Develop it well. Once you’ve got it, show people, and let them marvel. Then say “of course, it would be better if we added…’’ Pretend it’s not important. Sit back and wait for them to start asking you to add the functionality you originally wanted. People find it easier to join an ongoing success. Show them a glimpse of the future and you’ll get them to rally around.
  5. If you give your users something to play with early, their feedback will often lead you to a better eventual solution.
  6. Talking to other people will help build your personal network, and you may surprise yourself by finding solutions to other, unrelated problems along the way. And that old portfolio just keeps getting bigger.
  7. The more different things you know, the more valuable you are.
  8. Know what you want to say. Know your audience. Choose your moment. Choose a style. Make it look good. Involve your audience. Be a listener. Get back to people. Keep code and documentation together.
  9. if you don’t listen to them, they won’t listen to you.
  10. Treat English (or whatever your native tongue may be) as just another programming language. Write natural language as you would write code: honor the DRY principle, ETC, automation, and so on.
  11. A good idea is an orphan without effective communication.

2. A Pragmatic Approach

  1. In the modern world, it’s critical to test ideas and get feedback before you commit to them whole-heartedly.
  2. We feel that the only way to develop software reliably, and to make our developments easier to understand and maintain, is to follow what we call the DRY principle: Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.
  3. Don’t rely on the properties of things you can’t control.
  4. Requirements, users, and hardware change faster than we can get the software developed.
  5. The distinction is important enough to warrant repeating. Prototyping generates disposable code. Tracer code is lean but complete, and forms part of the skeleton of the final system. Think of prototyping as the reconnaissance and intelligence gathering that takes place before a single tracer bullet is fired.
  6. Our suggestion is fairly simple: don’t spend more effort than you save. Writing a domain language adds some cost to your project, and you’ll need to be convinced that there are offsetting savings (potentially in the long term).
  7. Use paper, not a file or a wiki: there’s something special about the act of writing compared to typing. Give it a month, and see if you’re getting any benefits.

3. Pragmatic Paranoia

  1. But Pragmatic Programmers take this a step further. They don’t trust themselves, either. Knowing that no one writes perfect code, including themselves, Pragmatic Programmers build in defenses against their own mistakes.
  2. The finish what you start tip tells us that, ideally, the routine that allocates a resource should also free it.
  3. Much of the time, tomorrow looks a lot like today. But don’t count on it.
  4. Let’s look at four strategies that help.
  5. Finite State Machines
  6. The Observer Pattern
  7. Publish/Subscribe
  8. Reactive Programming and Streams
  9. Let us suggest three techniques that mean you should never need to use inheritance again:
  10. Interfaces and protocols
  11. Delegation
  12. Mixins and traits
  13. We still want configuration data kept external to the application, but rather than in a flat file or database, we’d like to see it stored behind a service API. This has a number of benefits:
  14. Multiple applications can share configuration information, with authentication and access control limiting what each can see
  15. Configuration changes can be made globally
  16. The configuration data can be maintained via a specialized UI
  17. The configuration data becomes dynamic

Published Dec 8, 2019

Software Engineer at Facebook. Loves football, reading and exploring the world.