Live data from Hacker News

Ask HN: Solo devs, how do you plan your development?

news.ycombinator.com

101–110 of 190 posts

Re: Ask HN: Solo devs, how do you plan your development?

#101
I use a todo list, sometimes paper, sometimes orgmode [1] or taskbook, or some web version [2]. But I find it really distracting to use a kanban board for personal stuff, maybe because I don’t have so many stuff going on at the same time.

[1]: https://orgmode.org

[2]: https://pomoday.app

Re: Ask HN: Solo devs, how do you plan your development?

#103
post #55

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.

Re: Ask HN: Solo devs, how do you plan your development?

#104
post #58

I 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 `-`

wow. great trick!!

Re: Ask HN: Solo devs, how do you plan your development?

#105
post #60

Earlier quoted context omitted.

Do you judge people by looking at their usernames, or by checking whether they end their sentences with "also" also? ;)

:) I find humour in odd places I guess, no ?

Yeah, I put once "experienced kamikaze" as a role in my resume. Frequency of interview requests did not change ...

Re: Ask HN: Solo devs, how do you plan your development?

#109
I use pen and paper, it gets messy, then I pull out the paper and re-write the list on a new paper. Then I try and do the things written, but often start doing all kinds of new things that are not written, and only when I think of something that seems "cool" do I write it down to not forget.

Re: Ask HN: Solo devs, how do you plan your development?

#110
post #92

Many 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..…

This is really good advice even if you are not a solo dev. A lot of devs that I have worked with (and this includes me at times) come with the expectation that they will be handed a task with a list of requirements, and all they have to do is check off the boxes and turn in the code. If QA found no bugs, then it's good.

Even when things really are that clear cut, junior developers still often need a lot of feedback that they are on the right track. Part of maturing out of that initial stage comes from when you can autonomously take a well defined task, break it down into steps, and execute it.

Maturing to the next stage requires that you be comfortable working in situations where the requirements are not clear or set in stone. At that point, your objective is not merely compliance with the spec (if there even is one) but that the code solves the problem as intended. Since developers are rarely in a situation to determine that for themselves, you have to become comfortable again with asking for feedback.

Post reply on HN