Ask HN: What technologies greatly improve the efficiency of development?
1–10 of 87 posts
Re: Ask HN: What technologies greatly improve the efficiency of development?
#2Not just to save time on manually formatting code, they also flag syntax errors; if it doesn’t format on save you know something is wrong.
In team context they take away all bike shedding about formatting. Code reviews can focus more on stuff that matters, not just silly formatting tweaks.
To me a good formatter is as essential as autocomplete.
Re: Ask HN: What technologies greatly improve the efficiency of development?
#3Re: Ask HN: What technologies greatly improve the efficiency of development?
#4And read The Pragmatic Programmer (which may be in need of a newer edition).
Re: Ask HN: What technologies greatly improve the efficiency of development?
#5Re: Ask HN: What technologies greatly improve the efficiency of development?
#6Re: Ask HN: What technologies greatly improve the efficiency of development?
#7Re: Ask HN: What technologies greatly improve the efficiency of development?
#8You need a way to evaluate efficiency and trends of your development cycle. Are you creating more tasks than are done? Are there too many bugs being created? Is the layout design often late and blocking your developers? Ask yourself how would you know about these things and if you don't have an answer or it takes a while to get the answer then that's where you should focus your improvements: optimizing your understanding of what is going on your value stream.
Re: Ask HN: What technologies greatly improve the efficiency of development?
#9If delivering quality software is of essence, then investing in CI and automated tests will have an outsized impact as the project evolves. And read The Pragmatic Programmer (which may be in need of a newer edition).
+1 on CI & automated tests BTW.