|
|
|
|
|
by mosselman
3555 days ago
|
|
Trello works pretty well for me. I usually create a new board with 3 columns: Backlog - Doing - Done You create any amount of cards in backlog and as you start to work on something you can leave comments on your status "Started working on live updates, trying to figure out if websockets are better than polling", etc. You can easily forget to update cards so an alternative is to leave comments in your code: ````
def some_method User.where(email: 'aj # TODO: I WAS HERE, continue fixing the query!
end
```By leaving this change open in git you can easily see it when you run `git diff` For my one big side project I keep a notebook (moleskine) with thoughts and notes. I write down the current date when I make one and usually where I am. |
|