Social Icons

Ana's Dev Scribbles

Hi, I'm Ana and welcome to my dev blog. I share insights and practical solutions to coding problems that I face at work or my hobby dev time. Subscribe for new articles and check out my latest tutorials on YouTube.

Don't miss out and subscribe to my newsletter, or explore other ways to follow my content.

1 min read

Install global npm packages without sudo

This is useful for avoiding permission errors like Error: EACCES: permission denied, mkdir when installing an npm package without sudo, cause sudo npm i -g looks off to me. Script: mkdir ~/.npm-global npm config set prefix...

1 min read

Ansible playbook cheatsheet

Ansible playbook is a tool for automating documented tasks. These days I use it less since switching to github/gitlab actions, so keeping a cheatsheet here when I need it again... Installing on Ubuntu sudo apt...