I’m using https://linear.app . It plans “cycles” for you based on how much you accomplish.
Ask HN: Solo devs, how do you plan your development?
11–20 of 190 posts
Re: Ask HN: Solo devs, how do you plan your development?
#12So for practical use... I tend to write my ToDo list on a whiteboard near my workstation.
When I complete items from the whiteboard, I move them into an Excel spreadsheet where I can add greater detail about the resolution/solution.
When I'm ready to release a version update, I take the notes scribbled into that Excel sheet and turn them into properly formatted update notes.
Re: Ask HN: Solo devs, how do you plan your development?
#13Re: Ask HN: Solo devs, how do you plan your development?
#14I have a file called todo.txt, with the current tasks at the top, and everything else below that. It is in version control. As I finish stuff, I delete it out of the file. I add new stuff towards the top if I want to do it soon, towards the bottom if I want to save it for later. For things which are just ideas, I have a second file called brainstorm.txt.
Re: Ask HN: Solo devs, how do you plan your development?
#15Since I have all the 'iteration' there I also have a 'Future' iteration. As I'm approaching some self-imposed deadline I remove/add tasks from the current iteration to Future.
If I didn't do anything in quite some time I have the tasks right there waiting for me and I can pick one.
This mode of work for solo projects is quite good imho. Used it for openbeans.org / coolbeans.xyz, for mastodon.ro and for another project which doesn't have a website anymore (YaMeter).
Re: Ask HN: Solo devs, how do you plan your development?
#16Instead of a "Done" list, I make one with my next version number (e.g. 4.1).
Then, after I release 4.1, I move that list to a "Releases" board and replace it on the work board with 4.2.
Re: Ask HN: Solo devs, how do you plan your development?
#17I like Jira at work if its self hosted, but on demand its that damn slow, its more or less unusable (every page load 10-20 sec. etc.).
Clubhouse is especially good since its free for very small teams while not limiting the number of projects/workspaces. And its mainly an SPA, so it feels really quick & responsive.
Re: Ask HN: Solo devs, how do you plan your development?
#18Within that folder I keep one note that acts as the ToDo list / Work Log that contains all the work items plus dates of completion. The rest of the notes are ad hoc and usually contain stuff like "Meeting notes - - ", "Follow ups", "Questions/Clarifications for later", and so on.
Re: Ask HN: Solo devs, how do you plan your development?
#19Try the book.
After the book, you’ll be better equipped to scale from 2 or 3 devs to 20 or 30 devs while remaining low overhead, because you’ll understand the essence of iterative and collaborative development versus what’s been watered down and ceremonialized into Agile/SCRUM.
Re: Ask HN: Solo devs, how do you plan your development?
#20I have a file called todo.txt, with the current tasks at the top, and everything else below that. It is in version control. As I finish stuff, I delete it out of the file. I add new stuff towards the top if I want to do it soon, towards the bottom if I want to save it for later. For things which are just ideas, I have a second file called brainstorm.txt.