Ask HN: What tool/trick has most improved your programming productivity?
1–10 of 17 posts
Re: Ask HN: What tool/trick has most improved your programming productivity?
#2Re: Ask HN: What tool/trick has most improved your programming productivity?
#3Jetbrains IDEs and learning using flashcards.
What do you learn using flashcards, out of interest?
Re: Ask HN: What tool/trick has most improved your programming productivity?
#4Keep them buried for some period (maybe a month or so), then review back your code and see what's the good, bad & ugly you used to have (e.g algorithm usage, memory allocation, code style, correctness). I love this kind of "writer's retrospection" to see how much we've grown.
Re: Ask HN: What tool/trick has most improved your programming productivity?
#5However, the biggest win was having a custom React boilerplate better suited to my needs than anything else that's out there.
Re: Ask HN: What tool/trick has most improved your programming productivity?
#6Other fun productivity tricks include drawing a simple diagram when you can't focus or don't know what to work on next. I also try to have tasks that take all different levels of focus and cognitive energy in the backlog so that I can choose a task based on my mood.
Re: Ask HN: What tool/trick has most improved your programming productivity?
#7Prettier for auto formatting. Tailwind for CSS. However, the biggest win was having a custom React boilerplate better suited to my needs than anything else that's out there.
Re: Ask HN: What tool/trick has most improved your programming productivity?
#8I work at home, so I do housework in some of those 5 minute breaks. It's different enough that it helps clear my mind enough to focus again after the break.
I'm still trying to find a good way to plan these work chunks, but so far I think emacs org-mode will work pretty well.
Re: Ask HN: What tool/trick has most improved your programming productivity?
#9Prettier for auto formatting. Tailwind for CSS. However, the biggest win was having a custom React boilerplate better suited to my needs than anything else that's out there.
Re: Ask HN: What tool/trick has most improved your programming productivity?
#10Knowing how to do effective, interactive debugging in any language is a major step in productivity: it helps in so many ways: learning, diagnose, getting things done...