TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: What tools do you use to manage projects as a solo dev?

2 点作者 nbbaier大约 1 个月前
I&#x27;m interested in what tools people use to manage their projects as solo developers. Both professional solo projects and just side, fun projects.<p>EDIT: For clarification, by &quot;manage projects&quot; I mean managing the all the metadata related to tasks, bugs, todos, features, deadlines, milestones, etc.

4 条评论

OhMeadhbh大约 1 个月前
So... by &quot;manage projects&quot; you mean all the metadata related to tasks, bugs, todos, features, deadlines and milestones? (I&#x27;ve heard some people use &quot;manage projects&quot; to mean &quot;how do I build the source? make? cmake? etc.&quot;)<p>To be honest, I just save all that stuff in text files in the same repo as the code (though usually in a specific directory at the root of the project.) I have some tools that pull meta-data out of text files so I can query them for things like &quot;give me a list of open items&quot; or &quot;give me a list of items tagged with a specific release target.&quot;<p>It takes some getting used to if you like HTML interfaces, but I grew up on the command line so it works for me.
评论 #43720265 未加载
PaulHoule大约 1 个月前
Mostly paper kanban boards. From time to time I tear down the old one and make a new one. I broke mine down into two sheets in order of long-term vs short-term speculativeness then wrote some overflow ideas onto a third sheet.<p>Paper is my ‘killer app’ when I am having any difficulty with a project. The last thing I need is another window on my virtual desktops to navigate to, if I want to knock down tasks like a beast I print them down and cross them out.
评论 #43730414 未加载
mmarian大约 1 个月前
Everything is in Notion for me.
mubou大约 1 个月前
File explorer. I put them in separate folders so their files aren&#x27;t all jumbled together &#x2F;s<p>Can you clarify what you mean by &quot;manage projects&quot;? If you mean issue tracking &#x2F; notes, I sometimes use github issues, but most often I simply use a markdown file in the gitignored directory where I keep assets that shouldn&#x27;t be checked in (psds, db backups, and so on). The mermaid extension for vscode makes it easy to throw together flowcharts in that same file. Sometimes I use google tasks for checklists, since my other todo&#x27;s are in there too.