Live data from Hacker News

Ask HN: As a freelancer what do you use for project management?

news.ycombinator.com

1–10 of 12 posts

Re: Ask HN: As a freelancer what do you use for project management?

#4
I use pivotal tracker to communicate with my team on what I do as we work. Also OmniFocus is quite good to just manage your personal todo list.

I think lots of folks use Trello as well with swim lanes that mimic the Backlog/Todo -> In Progress -> Ready for Review -> Done workflow for tasks.

Re: Ask HN: As a freelancer what do you use for project management?

#5
A file named TODO where I list modules/components/ideas, bugs and nice-to-haves (future version features that 99% of the time are not implemented). I tried PM tools but this trade is not linear nor predictable: I sometimes get stuck for a couple of days designing something or refactoring code, sometimes I just burnout and it takes a few days of limbo to get back on track. This trade is more like an art and constantly missing deadlines stresses me so I now try to just sit down, enjoy and finish as soon as possible. And judging for the number of SW projects that go over-budget and/or over-schedule I guess I am not alone here. I give my clients guesstimates and since I do periodic deliveries they feel we are moving forward so they are not so picky with PM deadlines anyway.

Re: Ask HN: As a freelancer what do you use for project management?

#6
post #4

I use pivotal tracker to communicate with my team on what I do as we work. Also OmniFocus is quite good to just manage your personal todo list. I think lots of folks use Trello as well with swim lanes that mimic the Backlog/Todo -> In Progress -> Ready for Review -> Done workflow for tasks.

+1 for Trello, good for personal use.

Re: Ask HN: As a freelancer what do you use for project management?

#10
I'm not a freelancer yet (will be soon). Maybe my answer will turn out to be wrong when I cross that bridge.

I'm working on a project management web application called Quartz (PHP + PostgreSQL) designed for independent freelancers and/or small agencies. My goal is to use internally and refine it until I believe it's viable, write up some documentation, and release it as a SaaS for everyone else.

So at the moment, that is the tool I plan on using. :)

A brief overview of its features and design decisions:

* Time is tracked based on days, not hours (h/t tptacek for his advice here) -- this reduces overhead and lets you get on with your day.

* Manages projects, tasks, tickets; has a Wiki-esque CMS for managing internal documentation (ReStructuredText)

* Clients can have multiple projects.

* Projects are broken down into tasks, which may have any number of tickets. Projects can be "owned" by an employee (the project manager, DevOps leader, or what have you).

* Assignments are related between calendar days, users, and tasks (not tickets or full projects).

* There is a particularly clever access control system in place, but I'll save you the wall of text and write a blog post on it later.

The idea behind the design is that you can use it for teams, but it should work just as smoothly for solo work.

If there's any interest, I'll prioritize its development in my spare time ;)

Post reply on HN