I use Trello, then it gets messy, switch to Keep to start over, that gets confusing or messy, I have a txt file with my todos, that gets messy, I try a project management tool like Basecamp, doesn't do the trick, start over fresh on Trello, that gets messy.... I think you see where I'm going with this.
I also use a text file to keep a daily development note, like a blog post but keep it in the project’s root just for me to see what’s I’ve done and what I’m planning to do in the next day.
Ask HN: Solo devs, how do you plan your development?
151–160 of 190 posts
Re: Ask HN: Solo devs, how do you plan your development?
#152Many comments are focusing on kanban procedures, but the most important parts of solo development for me are social milestones. For example... * Who will I show X feature to? * When will I show it to them? * Can I show them a draft? To me, the biggest risk of solo development is not how I manage a todo list, but that I'll build the wrong thing, because I waited to get feedback. Some things that have helped me a lot..…
People generally appreciate being kept in the loop, and that they can review on their own time. It also helps me to drive towards a level of completeness that I can show something in a 1-2 min video.
Re: Ask HN: Solo devs, how do you plan your development?
#153To focus and return to the focus better, I'm using a mix of:
- project microtasking with kanban board (automatically handled using scripts/app) and TODO/FIXME comments
- lazygit utility
- global todo kanban board (think Trello, GitHub Projects etc.)
I was looking for a system that will maximize my productivity during few hours per day when I work for myself. I discussed this system before on HN: https://news.ycombinator.com/item?id=20780939
Re: Ask HN: Solo devs, how do you plan your development?
#154I 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.
I use a todo.diff - so the text editor color codes my lines started with `+` and `-`
Re: Ask HN: Solo devs, how do you plan your development?
#155Re: Ask HN: Solo devs, how do you plan your development?
#156Re: Ask HN: Solo devs, how do you plan your development?
#157I 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?
#158I 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.
I use a todo.diff - so the text editor color codes my lines started with `+` and `-`
Re: Ask HN: Solo devs, how do you plan your development?
#159I use a combination of the white board + Keep for more detailed stuff + per project TODO under version control.
Re: Ask HN: Solo devs, how do you plan your development?
#160I 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.
Does anyone else have a problem that this file just keeps growing?