Total Posts

0

Total Commits

0

(v1: 0, v2: 0)
Total Deployments

0

Latest commit:Unable to fetch commit info
9/2/2025
Latest deployment:
pending
9/2/2025
v2
Started 9/2/2025

Built by Remco Stoeten with a little ❤️

Welcome to Snippets
Prevent system from prompting for your password when you type sudo
Dotfiles/System configurations/Run sudo w

Prevent system from prompting for your password when you type sudo

Not really best practice but gets annoying fam.

Edit visudo by typing

sudo visudo

Yes, really just that. Not prefixed with nvim or so.

Almost at the button of the page you'll see a line which says:

# Allow members of group sudo to execute any command
%sudo   ALL=(ALL:ALL) ALL

Simply change to:

%sudo   ALL=(ALL:ALL) NOPASSWD:ALL

Et voila

Recursive file & folder creation

Allow writing touch & mkdir which allows to create recursive with auto folder creation and runs chmod +x on the created file by default

Git Branch Diverged

Are you also frustrated when that 'do you want to rebase, merge or else' question pops up?

Sep 2, 2025
3 min read
510 words