How To Use Side Projects

@sirajchokshi

Table of Contents

  1. Footnotes

I have found that there are two distinct motivations for side projects:

  1. To build a solution to a problem
  2. To use a new technology

I have also found that these two goals are often at odds with each other. When I want to learn a new technology, I am trying to learn a new way of thinking about problems. It’s difficult to implement basic product needs when you’re figuring out how to handle sorting a list in a new language.

Trying new things is important. There was a time 10 years ago when everybody’s JavaScript looked different. Now we have many great ways to write JavaScript. Whether you prefer functional patterns or dependency injection and OOP, the tooling around those conventions borrows from other languages.

Neither of these motivations is misplaced. But it’s difficult to keep track of both how the system maps to the business problem and how the technology maps to the system. Tackling more problems that are novel to you increases the surface area of the problem, while your capacity to solve it remains the same.

Most people are most effective at learning one thing at a time. It follows that the reason a lot of programmers don’t finish side projects is because they’re trying to learn too much at once. It’s easy to get greedy and try to kill two birds with one stone. Similar to how there is always a higher priority, there is always something new to learn.

I approach side projects more effectively by applying as many constraints as possible and being intentional about one goal. Like all good work, focus is required.

When learning a new technology, I’ll default to an app I’ve built before. Some examples include a Socket-based chat app, a simple CMS, or a cloud-backed Todo app1. The product problem is narrow. These apps have a low ceiling2 but also a low floor, making them great for learning.

If I am trying to build a product or write software to solve a problem, then design and product are where my energy goes.

You want to use a stack as boring as possible—a stack with no big ‘if’s. If you’re most comfortable with NoSQL than SQL, then use it. It should be intuitive for you to prototype, teardown, rebuild, and deploy. Minimize twists and turns.

No advice is grossly generalizable. I’ve met people who love to struggle through problems and hold a lot of context at once. This probably isn’t true for most people. There’s a reason companies use boring stacks. But if you know yourself better than I do (which is likely), then you should do whatever gets you to output great things. Being honest with yourself goes a long way.

Footnotes

  1. Building systems that have some user-facing and data-fetching components are great since they force you to use practical async code.

  2. I don’t mean to say that these apps cannot be executed well. Honk proved otherwise.