Ask HN: What are your favorite developer-efficiency tips?
41–50 of 532 posts
Re: Ask HN: What are your favorite developer-efficiency tips?
#42Re: Ask HN: What are your favorite developer-efficiency tips?
#43Re: Ask HN: What are your favorite developer-efficiency tips?
#44Re: Ask HN: What are your favorite developer-efficiency tips?
#45Emacs
Re: Ask HN: What are your favorite developer-efficiency tips?
#46password manager
Re: Ask HN: What are your favorite developer-efficiency tips?
#47A couple others have mentioned shell tricks. One of my favorites is using Alt-. (in Bash and Zsh) to insert the last argument of the previous command. Press it multiple times and it will cycle through the last argument of all previous commands. It's great for when you want to, say, `ls thing` and then `vim thing`. Yesterday I went looking for a similar key that would insert a copy of the last argument on the current…
Re: Ask HN: What are your favorite developer-efficiency tips?
#48The only protip I have is to think through a task on paper before you start writing code. Scope it if unclear, sequence it into small chunks, do more technical design if its a complex change etc. See if you can reuse existing code/libraries to do what you need.
Re: Ask HN: What are your favorite developer-efficiency tips?
#49Learn to touch-type properly. I'm not a shit hot typist or anything, but it does make hours on a keyboard more pleasant. And (hate me) I do judge other devs on it. If someone can't be bothered to invest a few tens of hours on such a key productivity enhancement then what does that say?
Slow is smooth, smooth is fast.
Re: Ask HN: What are your favorite developer-efficiency tips?
#50I keep really basic markdown notes in a git repo, roughly one file per day with an ISO date name, but some things I give a separate file name (still with the iso date, but with some descriptive words) for things that might be good to re-access or are part of a series of similar notes (like a TIL file or a recurring meeting with the same person).