How to be a "10x developer" - Tips and Tricks

Ok, now that I got your click with that title I got to say that many people say that “10x developers” don’t exist, instead, this post should be titled “How to be a great developer” or “How to increase performance/productivity as a developer” but then you would have not clicked. 😉

Table of Contents

  1. Use ZSH
  2. Use AI
  3. Learn and use shortcuts
  4. Get a mouse with extra buttons
  5. Learn how to type faster
  6. Create alias
  7. Add extra entries to your context menus
  8. Use bookmarks
  9. Use extensions
  10. Keep up with the industry
  11. Use TTS (text-to-speech)
  12. Use voice assistants
  13. Learn about security and stay secure
  14. Stay healthy
  15. Learn/Use Linux
  16. Don’t give up
  17. Contribute to Open Source
  18. Reps
  19. Share your knowledge
  20. Learn about tangential things
  21. Use Grammarly
  22. Get a rubber duck
  23. Learn new stuff every day
  24. Make life easier on you

Here is my list of tips/tricks to be a great developer:

Use ZSH

oh my zsh!” to be more precise, you will never go back to bash! It’s that good! It gives you themeable prompts (I use the powerlevel10k theme), advanced command history, spelling correction (case insensitive), great autocomplete, plugins (git, node, npm, etc). The git plugin immediately tells you the branch, working tree status, origin, and much more!

Use AI

Yes, AI! Artificial intelligence. Harness its power to help you code faster. It’s like having a second pair of hands. 👐🏻

I’m talking about Kite the “AI Coding Assistant for Python and JavaScript”. It’s awesome how it predicts what you want to write, it will blow your mind! 🤯 Try it!

Learn and use shortcuts

Learn all the shortcuts you can, from your code editor to your browser and other developer tools. After that create shortcuts for things you do often. Use AutoKey to make your own. I, for example, have my Numpad - key set to:

keyboard.send_keys("git cz")
keyboard.send_keys("<enter>")

So that I can do a commit with 1 key click. How awesome is that!? (and that key is physically red).

Get a mouse with extra buttons

You don’t need an expensive mouse, any random mouse that has the 2 extra Back and Forward buttons works, here it is one for less than 3€. These extra buttons will allow you to navigate (Back and Forward) on Web Browsers and File Browsers much faster by not having to move the mouse to the top left corner and clicking Back/Forward.

Learn how to type faster

In the same vein as learning the shortcuts you should be a fast typer, learn how to use all the fingers and how to touch type, it can save you hours, the math is quite easy, if you spend 8 hours typing (coding) and now you are twice as fast typing, the same work will take 4 hours. This is a great site to practice.

Create alias

Like I mentioned before, you can create shortcuts in the command line those are called alias. If you are using ZSH you got a huge collection of them already.

Here are some of my favourite ones:

alias gac="git add . && git commit"
alias gs="git status"
alias gp="git push --all -u"
alias grep='grep --color=auto'
alias c="code ."
alias py="nodemon --quiet --exec 'clear && python3'"
alias www='xdg-open http://127.0.0.1:8000/ && python -m SimpleHTTPServer 8000'

To make an alias add: alias gs="git status" to your .zshrc or .bashrc accordingly.

Add extra entries to your context menus

Ok, this one is very specific but I thought it would help. Do you know those menus that show up when you right-click on a folder?

context menus
context menus
I’ve added these 2 extra entries to be able to navigate faster. They allow me to open VS Code way faster.

Use bookmarks

Both on your file manager to quickly get to your most-used folders and in your browser to quickly get to your most-used URLs.

Just press CTRL + D, hopefully, your web browser and file browser support this feature.

When I say URLs I mean not only sites, you can bookmark chrome://inspect/#devices or localhost:8000. This last one combined with that previous alias that makes a local server is golden! You can also remove the text and it will display only the icon! 🤯

Use extensions

This applies both to your code editor and browser. There are extensions for everything nowadays and they make your life much better!

Let me highlight some of my favorites:

Browser:

VS Code:

I’ve written a blog post detailing all the VS Code extensions I use and why.

Keep up with the industry

  • Listen to podcasts
  • Subscribe/Watch YouTube videos
  • Read technology news
  • Read what people are saying on Twitter
  • Read the CHANGELOG/RELEASE NOTES of your tools
  • Read blogs 😉

Use TTS (text-to-speech)

There are extensions, sites, and even SaaS all at your disposal to turn boring text into audio. I use and love narro.co, it turns any article into audio and gives you a podcast feed as output. That means you have a custom podcast where each episode is an article you chose turned into audio so that you can listen later while doing other misc tasks (cooking, cleaning).

Use voice assistants

If you are using your hands just ask your voice assistant for what you need. For example, many times if I know a website is going to ask for a 2FA code I will ask Google to open my 2FA app (Authy) while I start opening the site and logging in, then when it asks me for the code I have it already displaying on my phone.

Learn about security and stay secure

You can’t be a good developer if you make insecure software. Safety is number one priority 😂. You have to know at least the basics of how an attacker could attack your code: user input validation, rate limiting, password hashing, defaults, not trustable/needed dependencies, don’t use Windows, XSS, SQLI, etc.

I’ve written an entire blog post on how to stay secure as a developer.

Stay healthy 🏃🏻💪🏻

  • Exercise (good blood circulation is important to think and perform better)
  • Sleep. Sleep is your superpower!
  • Eat healthily. Avoid carbs and sugar.
  • Supplement with Omega 3 for the 🧠 and Vitamin D3 for “everything else”
  • Do intermittent fasting

(I will write a blog post just about this topic, stay tuned!)

Learn/Use Linux

Learn how to use the command line because sooner or later you will have to debug something on a server if you want to grow as a developer. If you intend to do any DevOps you will need to know Linux. I use Linux Mint 19.3 (soon to be 20)

Don’t give up

Being a better developer is all about digging deeper until you find the root problem and solving it there. Don’t just open an issue on GitHub or StackOverflow and wait for others to solve your problems, jump from file to file and find the cause of the problem, then solve it for your self and contribute any changes back to the community.

Contribute to Open Source

Don’t just take, contribute something back. Create your own or help with others’ code. Seeing how other code something will make you grow so much!

Reps!

Put the reps in! Just like with exercise you got to put the repetitions in. You got to repeat things every single day! Code every day, learn every day.

Share your knowledge

Like I’m doing 😉. Jokes aside, make a blog, or just share with others on Twitter/Slack what you just learned, from small tips like shortcuts to huge concepts, do it and you will see huge benefits, not only is proven that sharing makes you smarted but your peers will thank you for it and everyone will grow.

Learn about tangential things

From how graphic drivers work to hardware to how networks work you should know more than just about the programming language you are working. Sometimes the problem might be somewhere else like the network.

Use Grammarly

As a non-native English speaker Grammarly has been a life-saving utility! If you don’t know Grammarly is an automated grammar checker.

Get a rubber duck 🦆

In case you don’t know there’s a method called Rubber duck debugging that consists of you explaining your code line-by-line to the duck when you are stuck trying to solve a problem. (Any other inanimate objects or pets such as a dog or a cat works too! 🐈😹)

Insights are often found by simply describing the problem aloud.

Make life easier on you

Use a dark theme, lots of contrast, big fonts, use tabs as 4 spaces (to see indentation way faster!), and other small changes that will make your life easier.

Learn new stuff every day

Learning is a lifelong process. You should be learning something every single day.

That said: Keep reading my blog 😉


A personal blog by Rodrigo Graça about coding, p2p, health, and much more (Psst... I am open to opportunities.)

Reach out to me on your favorite social :)