Multiple-project systems
The system described so far works very well for a single project, or for one individual’s personal system. But when there are situations when we need more, we expand our system to allow for multiple projects.
The problem
Let’s say you’re a freelancer. You might have set up a system like this.
Some of these examples don't look so great on mobile, sorry. Rotating to landscape might help!
A couple of problems are obvious:
- We are going to want to create folders within
22.01 Job 1
but the system says we shouldn’t do that (and we shouldn’t – don’t be tempted!). - This only allows us to have 10 clients.
We might try and fix it like this.
…but that’s still no good. Now we can only have ~9 clients, and each client can only have 10 jobs.
This problem is an unavoidable consequence of the way that the J.D system is designed: one of the benefits of the system is that “nothing is more than two levels deep”. This is a problem when we need to structure information about clients and jobs which is itself two levels deep. We’ve run out of levels.
Adding projects to the system
I’ve thought about this for a few years, and have been using the system I’ll describe here since 2018. So far it’s working well for me.
Goals
The extended system must retain the advantages of the original Johnny.Decimal system.
- Each item must have a unique identifier.
- You must be able to search (your notes, your file system) for this identifier.
- The identifier should be short and preferably memorable.
Letters: no good
I tried systems using letters rather than numbers and they didn’t work. My initial attempt looked something like this:
HME.AC.ID
= home systemDVO.AC.ID
= the DevOps project at workETC.AC.ID
= etc. for more projects
Now you just have to remember what those letters mean, and they don’t add any semantic value to your system.
The answer: more numbers
Here were my goals and constraints when introducing new numbers:
- It must not confuse the system.
- It must allow for a sufficient number of additional projects.
- It must allow the user to organise those projects in some way (i.e. like you organise categories in to areas).
The solution is to add a three-number project code to the start of your numbers, e.g. 000.AC.ID
. In the abstract I’ll refer to this as PRO.AC.ID. 😃
1. It must not confuse the system
Three numbers is not two numbers.
I think if I’d gone with PR.AC.ID
, e.g. 10.12.53
, that would have been a bit much on the brain. The only thing in the J.D system with three numbers is a project code.
2. It must allow for a sufficient number of additional projects
One thousand projects should be enough for anyone. I’d love to know what you’re doing if you need more than a thousand projects.
3. It must allow the user to organise those projects in some way
We can use the same method of grouping as we currently use for our areas: simply group them by number according to our needs.
Here’s what my current system looks like.
Alternatively, you can group your projects by tens, rather than hundreds. This might work better if you’re a freelancer vs. a long-term contractor.
Of course, you don’t have to group your projects at all if you don’t want or need to. In this case your projects will just sort by order of creation.
Implementation details
For most people who are in this situation, I think you should use one project for all of the stuff that is general to your life/business/etc.
So what I mean is we go from something like this…
…to this.
How I name my folders and files
I don’t use the project number in my area or category folders. This is because they tend to be fairly unique anyway, with the exception of my ubiquitous 10-19 Administration
.
I do use the project number in my ID folders, and when I name files. There are a couple of reasons why I’ve found this to be right for me.
- When I use Alfred1, which I do many times a day, I can type the full
PRO.AC.ID
number and it’ll open the folder immediately. - When you view the Open Recent menu — e.g. in Microsoft Excel — the filename shows the project name at the beginning. I find this really useful.
1. If you use macOS, you should use Alfred. Activate it, press the spacebar to enter 'Open File...' mode, then type the number of a folder. 🤯
So this means that my system looks like this.
Within that folder, if I saved an Excel file I would call that file 496.21.11 Whatever descriptive name I’d use.xlsx
.
As with most aspects of this system, you should adapt it to your needs. Try a few things and see what works. Change often – don’t think that the first way you implement a thing will be the right one, I’ve found it needs experimentation to get just right.