by chillpenguin on 3/29/23, 1:42 AM with 2 comments
How can we take such claims seriously? Most things do not improve our productivity THAT much. However, some things truly do.
Let me give some examples of things I think truly have "dramatically improved" my productivity.
- testing, specifically integration tests
- memory safety (garbage collection, borrow checker, etc.)
- version control (git, etc.)
- closures and lambdas
- unix pipes and the idea of composing larger programs out of smaller ones
- Chrome debugger when working with javascript
- I hesitate to say "debuggers" in general because I actually think GDB didn't "dramatically" improve my productivity back when I programmed in C. And I don't even use a debugger at all when I program in python. But the Chrome debugger has numerous features I use all the time.
Now let me give some examples of things that didn't really live up to the hype, in my opinion: - static type systems
- could be a small win but I don't find myself "dramatically more productive"
- TDD
- IDEs
- some IDEs are better than others, but I have yet to experience a dramatic increase in productivity simply by using a new IDE. Text editor + terminal is pretty strong tbh.
- serverless architecture
- I could see the argument for scaling concerns, but at a smaller scale I don't see a productivity boost compared to a monolith Rails/Django app
- classes and class-style OOP, inheritance
- I haven't written a class in a long time, and I haven't used inheritance in a REALLY long time. I just don't think these are huge wins in most cases. Note that I'm not even advocating for FP here. I program in a procedural style most of the time in all honesty.
I'm not trying to start a flame war, so don't worry about it if you disagree with my particular examples. I was just trying to illustrate what I am getting at. I'm looking for things that TRULY increased your productivity. Not just kinda/sorta. If you are on the fence about something, it wasn't significant enough! I'm looking for things that are obvious. Things that noticeably slow you down if you didn't have it. Things that you can't live without.Thanks! I look forward to seeing the replies.
by jleyank on 3/29/23, 2:03 AM
This approach worked for all operating systems and languages that I used. Planning, work notes, summaries and speculations along with the everyday detritus that showed up.
by akasakahakada on 3/29/23, 2:11 PM