8 ms·
Ask HN: What tools do you use to manage your freelance projects?
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?
- warriorj 2y ago- clockify for time tracking - Google keep for notes - Trello for my personal work management - DocuSign to sign contracts - eProcessify for generating and sending invoices
- sandwichsphinx 2y agoThe 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 "talk" back forth on the administrative things like reminding me where I was, recap here, it's just great for managing boring things like I never been able to do before
- etcd 2y agoDoes ChatGPT have storage options now? Seems like you would need that unless you paste the output into a doc and reupload it.
- runjake 2y agoYeah, it now saves your chat history. https://help.openai.com/en/articles/7260999-how-do-i-export-my-chatgpt-history-and-data https://help.openai.com/en/articles/7260999-how-do-i-export-...
- sunnybeetroot 2y agoWhat happens when you reach the context window and it never longer knows about older messages?
- etcd 2y agoTrello is good for the kanban side of things.
- aosaigh 2y agoWhat are your needs?
- mmphosis 2y agomake
- nuc1e0n 2y agoYeah make is nice for managing simple build steps.
- kingkongjaffa 2y agoThe free tiers of https://linear.app/ https://linear.app/ and https://www.notion.so/ https://www.notion.so/ are pretty good. Combined with plugging your linear account into the VCS of your choice (probably github/gitlab/bitbucket). The free tier of https://www.figma.com/ https://www.figma.com/ is good for mockups and design.
- slurpyb 2y agoTodoist, 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
- nuc1e0n 2y agoGit for source code control. A notepad and pencil for listing out the TODOs. I write "Done" next to a bullet point when it'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't write out a task description as a short sentence then it'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. I don'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.
- hyperbrainer 2y agoThe same as you, but for TODOs, I have a simple macro on my neovim setup because then I can keep the todos with my version control(it is a single text file, newline separated) and see what changed and why I added something. Really helpful if I come back to something after some time.
- jvanderbot 2y agoI do something similar. Simple highlights on to-do items helps a lot. And using bullet journal style to-do markers help organization. - [ ] todo - [x] done - [-] failed - [v] dropped - [>] migrated - [^] scheduled - [<] delegated Easy to set up vim highlighting on those patterns. I have some examples here: https://jodavaho.io/posts/bullet-journalling.html https://jodavaho.io/posts/bullet-journalling.html And a bash setup here https://github.com/jodavaho/bashlog https://github.com/jodavaho/bashlog
- nuc1e0n 2y agoI wasn't aware what I've been doing is named bullet journaling by some, but thanks for this info.
- mgirkins 2y agoI 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. 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.
- mergisi 2y ago[dead]
- runjake 2y agoSeems like it might've been a good idea to clarify that you are the author of said browser extension, both both disclosure and bragging reasons.
- sandreas 2y agoI wrote a tool based on my own custom markdown format / 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. 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. It can be edited in any IDE / text editor and even in the online editor of the git management. Works pretty well so far. An example: # 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)
- gashmol 2y agoHow do you handle deadlines and setbacks?
- sandreas 2y agoFor deadlines i use a week based paper calendar and setback can be handled by negative time entries, like: 01.15-00.00 refund for issue 6789 (75mins) It's not ideal but it barely happens. Another minor issue is that my parser currently does not support overnight shifts like 2022-11-15 - 23.45-01.18 another task These have to be divided into 2 separate ones: 2022-11-15 - 23.45-23.59 another task 2022-11-16 - 00.00-01.18 another task
- Hashex129542 2y agoI don't use any tools. Just plain text editor for notes
- ensocode 2y agoDefinitely clockify for time tracking
- austin-cheney 2y agoI typically write my own.
- gashmol 2y agoSo far I've managed to overcome the itch to write my own solution for this problem. It is tempting though.
- _shantaram 2y agoI 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't really like what was available so I (shameless plug) built etu[0]. It's free and open source and I quite enjoy it. [0] https://github.com/xyzshantaram/etu https://github.com/xyzshantaram/etu
- bigs 2y agoJoplin for notes self hosted, Trello (free) for kanban.
- brokegrammer 2y agoUsually 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.
- elric 2y agoObsidian. It can be as simple as a bunch of checkboxes in a markdown file, or as complex as a kanban board.