Software devs, how have you sped up your workflow?
32 points| potatopotahto | 4 years ago | reply
Examples like using fish (unix shell), writing shell scripts to automate sequential build commands I'd otherwise have to wait for, learning vim shortcuts and language syntax, implementing reusable utility scripts to produce/consume data.
Do you have recommendations/tips/examples to speed up your processes? Feel free to share even specific instances, they don't have to be as generic as above.
[+] [-] rhn_mk1|4 years ago|reply
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.
[+] [-] lukeck|4 years ago|reply
Learning the key combos for whatever editor I’m using made it much faster to write, edit and manipulate code.
Learning basic bash and Unix programs like grep, awk, find and xargs made it a lot easier to write throwaway scripts to automate things that used to be tedious when done manually.
Learning how to identify the current bottleneck made it easier to focus on the most important thing.
Learning how to identify and talk about the tradeoffs I’m making made it easier to avoid rework.
Learning how to run containers, originally using docker and now podman made it easier to get whatever version of whatever program I needed quickly.
Learning how to debug and divide problem spaces made it easier to overcome problems.
Learning how to respond to incidents made it easier to get things working again.
Learning how to automate builds and deployments with CI/CD made it easier to focus on the code.
Learning how to use observability tooling made it easier to understand what normal looks like which in turn made it easier to understand when and why things weren’t normal.
Learning how to learn a new code base or tech made it easier to get up to speed when starting or joining something new.
Learning how to identify and focus on the next most important, smallest problem made it was more to produce value.
Learning how to work out what was important to stakeholders and co-workers made it easier to tailor my message and get buy in.
Learning how to mentor and coach made it easier to get things done as there were more experienced devs around me.
Learning how to trust in others made it easier to produce great things with great people and love what I’m doing.
Learning when to shut up is something I’m still figuring out.
[+] [-] lukeck|4 years ago|reply
Learning how to identify the current bottleneck made it easier to focus on the most important thing.
[+] [-] gitgud|4 years ago|reply
[1] https://github.com/holman/dotfiles
[+] [-] codingdave|4 years ago|reply
(Easier said than done, I know.)
[+] [-] mbrodersen|4 years ago|reply
[+] [-] thrower123|4 years ago|reply
I keep trying to indicate that scheduling 10:30 and 2:30 meetings basically blows out the entire day for several years now, but I've not made much progress.
[+] [-] nozzlegear|4 years ago|reply
I’m just as wary of JavaScript tooling fatigue as the next person, but I truly wish I’d swapped to esbuild sooner. It boggles my mind how much time I’ve wasted in the last few years just waiting for webpack to build.
[+] [-] hijodelsol|4 years ago|reply
[0]: https://vitejs.dev
[+] [-] llbbdd|4 years ago|reply
[+] [-] andrei_says_|4 years ago|reply
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.
[+] [-] raman162|4 years ago|reply
[+] [-] gingerlime|4 years ago|reply
[+] [-] Dysanovic|4 years ago|reply
I also recommend TabNine - code intellisense on steroids!
[+] [-] qnsi|4 years ago|reply
[+] [-] mukesh610|4 years ago|reply
I managed to fix three thousand code smells on a very badly written codebase in a span on two days. Thanks IntelliJ IDEA!
[+] [-] etothet|4 years ago|reply
I see many fellow developers who stumble using their editor/IDE or who aren’t leveraging even the most basic code navigation keyboard shortcuts (let alone refactoring features) that it seems they often spend more time navigating code than they spend on actually writing it.
[+] [-] Flankk|4 years ago|reply
[+] [-] joelschw|4 years ago|reply
[+] [-] speedgoose|4 years ago|reply
[+] [-] harryvederci|4 years ago|reply
[0] which-key exists for neovim, probably for vim as well. I think it originates from emacs, which I'm purely mentioning because I'm anticipating a response from a triggered emacs user if I don't. :)
[+] [-] nickd2001|4 years ago|reply
[+] [-] djohnston|4 years ago|reply
https://github.com/junegunn/fzf thanks junegunn
[+] [-] heurisko|4 years ago|reply
https://github.com/wting/autojump
It allows you to quickly navigate your filesystem via the shell by learning the directories you commonly visit/have visited.
[+] [-] hzlatar|4 years ago|reply
[+] [-] atsushin|4 years ago|reply
Running multiple microservices during local development in a separate VM (WSL) with TMux instead of running each on Visual Studio.
[+] [-] accountofme|4 years ago|reply
I code in the terminal because its easier for me.
Rust because frankly, it's tooling makes being productive easy.
Cheers
[+] [-] pi7h3n|4 years ago|reply
[+] [-] cgdub|4 years ago|reply
[+] [-] The_rationalist|4 years ago|reply
[deleted]