Only slightly related, but what increased my code typing speed the most is this (AutoHotKey 2): ; CapsLock + J/K -> ( ) CapsLock & j::SendText "(" CapsLock & k::SendText ")" ; CapsLock + U/I -> [ ] CapsLock & u::SendText "[" CapsLock & i::SendText "]" ; CapsLock + L/: -> { } CapsLock & l::SendText "{" ; SC027 = physical ;/: key on a US keyboard CapsLock & SC027::SendText "}" ; CapsLock + O/P/M/E -> _ + - = CapsLock &…
Dude, just use vim.
Typing Speed Test, but for Developers
71–79 of 79 posts
Re: Typing Speed Test, but for Developers
#72Earlier quoted context omitted.
THANK you![1] Calling anything ops "DevOps" is right up there with calling JSON APIs "REST." I know it's silly to let it bother me, but man does it get under my skin. 1. https://imgur.com/gallery/thank-you-lNUh0uV
it’s a meaningless term that can define dozens of roles
Re: Typing Speed Test, but for Developers
#73There is no autocompletion, that's not realist. I never type "apt-get install nginx" I type "apt-g ins ngi "
apt-get is kinda old, "apt" is the new thing. It unifies some commands like apt-get, apt-cache, and probably something else but those are the only 2 I use :D
Re: Typing Speed Test, but for Developers
#74>grep -R "error" logs Why is error in quotes?
...but then you read the author's response about not having actually made this themselves and your head canon implodes
Re: Typing Speed Test, but for Developers
#75Only slightly related, but what increased my code typing speed the most is this (AutoHotKey 2): ; CapsLock + J/K -> ( ) CapsLock & j::SendText "(" CapsLock & k::SendText ")" ; CapsLock + U/I -> [ ] CapsLock & u::SendText "[" CapsLock & i::SendText "]" ; CapsLock + L/: -> { } CapsLock & l::SendText "{" ; SC027 = physical ;/: key on a US keyboard CapsLock & SC027::SendText "}" ; CapsLock + O/P/M/E -> _ + - = CapsLock &…
Dude, just use vim.
Re: Typing Speed Test, but for Developers
#76The speed that I type is not related to the quality of my code. I think then type.
Software development is not purely technological discipline, we deal with socio-technological problems all the time. That means we need to consume and produce far more plain text rather than just code.
I mean sure, there are many facets to this and simply benchmarking and fretting about one's WPM won't magically make anyone a better programmer. But thinking it isn't important at all ain't right either.
Re: Typing Speed Test, but for Developers
#77Typing speed only really matters for juniors and going into intermediate developers, after that point thinking methodology - abstraction design, data structures, system design, complexity isolation, matter way, WAY more. 50% because by the time you get to this your typing speed has crossed a threshold of no longer being the bottleneck and 50% because you are experienced enough not to make all the silly little mistake…
Re: Typing Speed Test, but for Developers
#78Earlier quoted context omitted.
apt-get is kinda old, "apt" is the new thing. It unifies some commands like apt-get, apt-cache, and probably something else but those are the only 2 I use :D
apt-get / apt-cache is one of those things that I simply cannot get out of my muscle memory. It's probably an alias under the hood by now, but I hope they never get rid of it. Ofc stuff that is actually deprecated is a different story. When I see some kind of tutorial or whatever from 2025 by a young dev and he is using ifconfig instead of ip or similar stuff... I am having a hard time holding myself back not telling…