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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: What tools do you use to manage your freelance projects?

21 点作者 gashmol8 个月前
I've used several tools over the years but no one fits my needs well enough. I wonder if I miss some magic tool. Which tool work best for a single person operation?

17 条评论

sandreas8 个月前
I wrote a tool based on my own custom markdown format &#x2F; file structure. The file is always called `project.md` and part of the project as well as my personal invoice generator git repository, which is basically a parser + pdf generator.<p>The md file contains customer information, todos and time tracking. Based on this format I can generate an invoice with a detailed table of every task including the time required. And it even looks pretty good in the markdown view.<p>It can be edited in any IDE &#x2F; text editor and even in the online editor of the git management.<p>Works pretty well so far. An example:<p><pre><code> # Customer ``` Company Name Magic Avenue 12 Zip-Code City Project name with short description 30 day terms ``` # Todo - [x] create project - [x] init git - [x] add build scripts - [x] draw UI concept - [x] Home - [x] Settings - [ ] Choose icons - [ ] Build prototype - [ ] Choose UI framework - [ ] ... # Time tracking 2022-04-26 - 17.42-18.02 project creation and git initialisation 2022-04-28 - 11.55-13.23 basic project setup and build scripts 2022-04-29 - 16.47-17.08 new UI concept (drawing and design, HomeView) - 17.20-17.42 new UI concept (drawing and design, SettingsView)</code></pre>
评论 #41901634 未加载
slurpyb8 个月前
Todoist, Obsidian and Eagle form the second brain. Write to forget things, not remember them. Only plan daily if you can. Github issues + projects, even without a team helps to track progress and prioritise tasks. Mix Clockify in there as a time tracker and invoice generator for short and long term tasks
nuc1e0n8 个月前
Git for source code control. A notepad and pencil for listing out the TODOs. I write &quot;Done&quot; next to a bullet point when it&#x27;s done. I might rewrite the list occasionally without the done items for clarity or write numbers next to the bullet points to prioritise them. I think if you can&#x27;t write out a task description as a short sentence then it&#x27;s either not well understood enough or too broad in scope to accomplish easily. In the latter case it needs breaking out into a set of smaller tasks.<p>I don&#x27;t use any framework for unit tests. Only a short program for each test that returns 0 on success or some other number for failure and prints a message to stderr about what the problem is. These get run in a loop from a shell script.
评论 #41897828 未加载
kingkongjaffa8 个月前
The free tiers of <a href="https:&#x2F;&#x2F;linear.app&#x2F;" rel="nofollow">https:&#x2F;&#x2F;linear.app&#x2F;</a> and <a href="https:&#x2F;&#x2F;www.notion.so&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.notion.so&#x2F;</a> are pretty good.<p>Combined with plugging your linear account into the VCS of your choice (probably github&#x2F;gitlab&#x2F;bitbucket).<p>The free tier of <a href="https:&#x2F;&#x2F;www.figma.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.figma.com&#x2F;</a> is good for mockups and design.
sandwichsphinx8 个月前
The only tool I truly find magically despite how boring it sounds is chatGPT, I can tell it everything as a living dev log, I tell it time date when I do things and why and so on just documentating my progress, listing todos and reminders as I go but now I can &quot;talk&quot; back forth on the administrative things like reminding me where I was, recap here, it&#x27;s just great for managing <i>boring</i> things like I never been able to do before
评论 #41896859 未加载
评论 #41907443 未加载
_shantaram8 个月前
I just have a long text file with notes of all different things in it which I grep through as necessary for todos etc. But for time tracking I didn&#x27;t really like what was available so I (shameless plug) built etu[0]. It&#x27;s free and open source and I quite enjoy it.<p>[0] <a href="https:&#x2F;&#x2F;github.com&#x2F;xyzshantaram&#x2F;etu">https:&#x2F;&#x2F;github.com&#x2F;xyzshantaram&#x2F;etu</a>
mgirkins8 个月前
I built Tatask.com for this! I want to have easy visibility over everything but quickly drill down into specifics so it uses a tree structure for tasks.<p>You can break down any project into smaller and smaller sections to whatever degree you like and it makes it super easy to visualise everything and make progress.
brokegrammer8 个月前
Usually my client will invite me to their task manager, which is Trello most of the time. The I track my time and generate invoices with Zoho Invoice.
warriorj8 个月前
- clockify for time tracking - Google keep for notes - Trello for my personal work management - DocuSign to sign contracts - eProcessify for generating and sending invoices
elric8 个月前
Obsidian. It can be as simple as a bunch of checkboxes in a markdown file, or as complex as a kanban board.
aosaigh8 个月前
What are your needs?
bigs8 个月前
Joplin for notes self hosted, Trello (free) for kanban.
Hashex1295428 个月前
I don&#x27;t use any tools. Just plain text editor for notes
etcd8 个月前
Trello is good for the kanban side of things.
评论 #41901493 未加载
评论 #41897627 未加载
ensocode8 个月前
Definitely clockify for time tracking
mmphosis8 个月前
<p><pre><code> make</code></pre>
评论 #41897613 未加载
austin-cheney8 个月前
I typically write my own.
评论 #41905230 未加载