Published on

How I Manage My Personal Projects

Free Your Mind To focus On How, Not What

Authors

Photo by Andrew Neel on Unsplash

Do you find yourself tinkering with something new? Do you find yourself working on some cool new idea in your free time?

Yeah, me too.

Do you keep track of what you want to work on next? You are keeping track of the work, right?

Tinker With Purpose
_Have a Goal In Mind Before Tinkering_medium.com


Over the years I have worked on many personal projects. I’m a builder and I like to build things. I also have two young children. So when I have some time to work on my projects, I don’t want to spend time remembering what the heck I wanted to work on. I want to jump right in and get working right away.

Write It Down!

Someone told me once:

Ideas come and go. Write down your ideas and remove the need to remember them.

Writing things down makes it much easier to focus on the work. When you start, you don’t have to spend time remembering what to work on. It’s so much easier to finish work when you know what that work actually is.

I have found success when I run my personal projects more like a Project Manager. Where I take time to write out bits of work, setup segments of work (sprints, if you will 😉), and estimate that work. This way I am able to do the work more efficiently. Not only that, I have a place to practice estimation, scoping, delivery and other things I do during my day job.

Photo by Elizaveta Dushechkina on Unsplash

Where Do I Start?

I will start by saying I don’t do all this for every project. Sometimes it doesn’t make sense. I’m working on something small, I’m messing around, or it’s a thing that I know won’t live long, etc.

However, for the more involved projects, these are the things I do to keep it running smoothly.


Version Control

Put your project in version control!

I start every project the same way: I use Git. This was a habit I really started to practice after going through The Ruby On Rails Tutorial (by Michael Hartl) a couple times, back in the early 2010’s. I was still pretty new to git, so it was good practice to continue doing it.

You should always practice good habits, even with personal projects. We use version control in our work, we should use it in our own projects too. This has the added benefit of proving a sandbox to play in. It’s way less risky to play with git on a personal project.

This doesn’t mean I always push to a remote. It does mean each project I’m working on is ready to be pushed to a remote if I decide to do that at some point in the future.

Remote Repository

Create a remote git repository

This could be with any number of the available Git providers: Github, Gitlab, Azure Repos, etc.

I usually go with Github or Gitlab, but the choice here isn’t so much about git. The choice here is about other features available like issues, projects, CI/CD options, registries, etc.

Issues

Use issues management to keep track of tasks

Most remote git services like Github or Gitlab support some form of issue management. This is extremely useful for popular projects because it provides a place for users to call out bugs or request new features.

GitHub Issues

Gitlab Issues

For your own projects, you can use these too! It’s a great way to organize work. You start this phase by writing things down. Thats it, you don’t need to add labels or effort or anything like that. Just write it down!

You can take this one step further by adding labels like Bug or Feature or Enhancement, etc.

https://github.com/n8rzz/chess-stats/issues

This provides something to build on. If you’re using only titles, thats cool, you now have a todo list. If you’re using labels, even better because now you can easily group work. Most of the time I try to keep things simple. I use each issue to store links related to a topic.

https://github.com/n8rzz/chess-stats/issues/30

Sometimes I use checkboxes to build a list of things to do for a single feature or bug.

https://github.com/n8rzz/chess-stats/issues/26

Your goal should be to leverage issues for information storage. Use issues to store ideas, bugs, and any pertinent information related to each item.

Write it down.

Once it is written down you no longer need to remember it.

Issue Management

Use tools to manage groups of issues and sequence work

If you’ve made it this far you have a remote git repository and a list of issues related to your project. These issues might be bugs, ideas for features, or enhancements, or possibly just notes. We have a new problem, though; How and when do we do all this work?

Well, with Github you can use Github Projects.

Github issues — https://github.com/features/issues/

Gitlab has something similar called Boards.

Gitlab Boards — https://gitlab.com/gitlab-org/gitlab/-/boards

Both are excellent ways to manage larger efforts. This could be as simple creating groups of items to tackle over a long weekend, to something as complex as assigning work for a large team.


Github and Gitlab didn’t always have Projects or Boards. So, naturally, there are open-source alternatives out there too. Personally, I’ve had great luck with one called Zube. We use Zube on OpenScope and it’s awesome!

zube.io

Zube allows you to create higher level groupings of issues like Epics and Releases. There are a whole host of features that can help super-charge your development planning.

At the end of the day, all of these options are simply another layer on top of issues. As long as you create issues, you can leverage any of these options to plan tactically.


There are two applications I have not mentioned here: Jira and Azure Devops. I wouldn’t recommend either for most personal projects. They are great systems, but both are complex and require a lot of setup. If our goal is to efficiently use our time by planning work, it makes little sense to spend that time planning how to plan. I’ll just say avoid Jira and Azure Devops for personal projects unless you know what you’re getting into.


Conclusion

Whew, you made it!

We talked about many different ways to manage a personal project. We start small and each step builds on the last. We establish good habits from the beginning and continue to build on them as things get more complex.

If you remember anything from this article I’d like it to be this:

Establish good habits that build on the previous good habits

This goes back to the age-old phrase: Baby Steps. As long as you’re moving in the right direction, even if it’s slowly, you’re going to improve.


Photo by Cesar Carlevarino Aragon on Unsplash

References

Tools

We covered quite a few tools in this article. Here is a quick recap.

Remote Git Repositories and basic Issue Tracking

Project Management Integrations