Live data from Hacker News

Show HN: Toodles – Project management directly from the TODO's in your code

github.com

31–40 of 46 posts

Re: Show HN: Toodles – Project management directly from the TODO's in your code

#31

We used something like this on the teams I lead at Dropbox to (what I felt) was great effect. We had a script that would regularly run and sync with Phabricator, our bug tracking tool of choice. One thing that we did differently, however, was to "assign" TODOs based on project or team rather than individual people. This way we could triage issues more flexibly to people according to their workloads and also build in…

> One thing that we did differently, however, was to "assign" TODOs based on project or team rather than individual people. If this works for your team, that’s awesome, but beware, I think you’d need a very disciplined team with good communication for this to work. I’ve found on some teams, if a task is not assigned to a single individual, nobody feels “on the hook” to do it. Things assigned to a group can tend to pi…

What? Your team doesn't pick up unassigned tasks when they are done with their work? What's the alternative? When I'm done with a story I look in the backlog which is roughly ordered by priority and find a story that's in an area I know and start working on it.

Re: Show HN: Toodles – Project management directly from the TODO's in your code

#36
post #7

Off topic, I'm looking for a solution to embed SVG diagrams directly in my code as comments, with the ability to edit them as in inkscape.

This sounds ambitious, but I imagine emacs can do it. Is that a feasible approach for you?

Re: Show HN: Toodles – Project management directly from the TODO's in your code

#37
post #14

Looks interesting! I'm looking forward to trying it. The annotation syntax looks powerful but do people really edit thier code to adjust priorities and assignees? On a related note, I review `TODO` in PRs and consider whether to allow them in the codebase; and `DEBUG` to indicate code that shouldn't even be checked in. Does anyone else have a codetag for this? DEBUG doesn't seem to be a well-known codetag, and I'd pr…

We used FIXME to denote temporary changes that shouldn't be checked in, or sections which hadn't been written yet, and had a Git hook which stopped code being committed with that tag. (It also looked for 'console.log' and 'debugger' statements in our JS and blocked those, too.)

Re: Show HN: Toodles – Project management directly from the TODO's in your code

#40
post #39

This is great. Aaaaand here’s a Microsoft patent covering it: http://patft.uspto.gov/netacgi/nph-Parser?patentnumber=6,748...

Seems like it only covers live updates to tasks during "interactive coding sessions". So I don't think it would apply to offline source processing.
Post reply on HN