100 prompt shortcuts that change how Claude responds. Type any code at the start of your message.
Interactive searchable version with copy-to-clipboard: clskills.in/prompts
| Code | What it does |
|---|
100 prompt shortcuts that change how Claude responds. Type any code at the start of your message.
Interactive searchable version with copy-to-clipboard: clskills.in/prompts
| Code | What it does |
|---|
Few months ago, I've made a similar work but I wanted something a little more easier to manage. Please have a look at here for my previous work.
This time, I'm gonna do pretty much the same thing but using Pi-hole as base then modify it to include unbound and stubby.
This way, I can use the power of Pi-hole with some additional security layers:
unbound)stubby)| ## this part is the ESPhome Yaml file ## | |
| esphome: | |
| name: window_control_linear | |
| platform: ESP8266 | |
| board: d1_mini | |
| wifi: | |
| ssid: !secret wifi | |
| password: !secret wifi_pw |
| # Disable Commercial Repo | |
| sed -i "s/^deb/\#deb/" /etc/apt/sources.list.d/pve-enterprise.list | |
| apt-get update | |
| # Add PVE Community Repo | |
| echo "deb http://download.proxmox.com/debian/pve $(grep "VERSION=" /etc/os-release | sed -n 's/.*(\(.*\)).*/\1/p') pve-no-subscription" > /etc/apt/sources.list.d/pve-no-enterprise.list | |
| apt-get update | |
| # Remove nag | |
| echo "DPkg::Post-Invoke { \"dpkg -V proxmox-widget-toolkit | grep -q '/proxmoxlib\.js$'; if [ \$? -eq 1 ]; then { echo 'Removing subscription nag from UI...'; sed -i '/data.status/{s/\!//;s/Active/NoMoreNagging/}' /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js; }; fi\"; };" > /etc/apt/apt.conf.d/no-nag-script |