Live data from Hacker News

Software devs, how have you sped up your workflow?

news.ycombinator.com

11–20 of 36 posts

Re: Software devs, how have you sped up your workflow?

#11
Using a graphical debugger compared to using naked gdb.

Using an IDE which knows how to follow references and show types.

Replacing password with keys, and placing those in an authentication agent.

Setting up shell to complete commands from history on a single button press (I'm looking at Debian, which doesn't do that).

Arranging windows across virtual desktops and switching them with keyboard shortcuts is quicker than alt-tabbing.

Keeping progress as a series of commits in git, even when just exploring. When there's a need to take a step back, just restore an earlier commit. They don't even have to work to be useful.

Taking breaks from coding to think about what should be coded and how.

Re: Software devs, how have you sped up your workflow?

#17
post #3

Be careful with premature optimization. It's a nefarious form of procrastination because it appears you're being productive. That said, I want to learn vim but I have more important things to do right now.

Are there any frameworks for avoiding premature optimisation? I'm looking for some content to share with some new teams.

Re: Software devs, how have you sped up your workflow?

#18

When working in a Typescript/JavaScript stack the test runner WallabyJS has been a great productivity boost, as it constantly runs your tests and gives visual feedback. The debugging facilities are great too. I also recommend TabNine - code intellisense on steroids!

is there anything similar in open source? I am mostly interested in JS/TS

Re: Software devs, how have you sped up your workflow?

#20
Coding less. Building less. Trusting YAGNI but trying to build flexibly.

Discussing options more. Killing BS efforts earlier. Testing on paper, breadboarding.

Thinking more about things before I build them (see Rich Hickey’s Hammock-driven development talk)

Ultimately, slowing down and doing less.

Post reply on HN