Total Posts

0

Total Commits

0

(v1: 0, v2: 0)
Total Deployments

0

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

Built by Remco Stoeten with a little ❤️

Snippets.remcostoeten
Snippets.remcostoeten
Snippets
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

Keyboard Tester Feature Prompt

Build a Keyboard Tester Component in a Next.js App Router app that mimics a VIA-style interface, designed for user interaction and input visualization. No storage in localStorage or PostgreSQL is required, but a toggleable settings system should be implemented (can use URL params, Zustand, or context).

Jul 9, 2025
5 min read
878 words