The Code Is the To-Do List
11–20 of 80 posts
Re: The Code Is the To-Do List
#12Re: The Code Is the To-Do List
#13The observations about maintaining the context of what you're working on in your short-term memory, and how much faster you can do things that require it while you have it are very true.
Re: The Code Is the To-Do List
#14It's a really good read.
https://blog.ploeh.dk/2021/06/14/new-book-code-that-fits-in-...
Re: The Code Is the To-Do List
#15One of my favorite small linters I made on a previous team: // todo 2022-06-09 something ^ on that date, it'd fail the linter, and print the comment. Every TODO needed a date. Got a failure and need to get past it for now? No problem: bump the date for a week or something. Now at least two people are aware that it exists (author+reviewer)... and one is in the git history for that line. Makes it rather easy to trace b…
Re: The Code Is the To-Do List
#16Could have been a cool approach of GitHub or gitlabs issue tracker to be some sort of to-do comment tracker
Re: The Code Is the To-Do List
#17One of my favorite small linters I made on a previous team: // todo 2022-06-09 something ^ on that date, it'd fail the linter, and print the comment. Every TODO needed a date. Got a failure and need to get past it for now? No problem: bump the date for a week or something. Now at least two people are aware that it exists (author+reviewer)... and one is in the git history for that line. Makes it rather easy to trace b…
Re: The Code Is the To-Do List
#18One of my favorite small linters I made on a previous team: // todo 2022-06-09 something ^ on that date, it'd fail the linter, and print the comment. Every TODO needed a date. Got a failure and need to get past it for now? No problem: bump the date for a week or something. Now at least two people are aware that it exists (author+reviewer)... and one is in the git history for that line. Makes it rather easy to trace b…