This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations] | |
".tif"="PhotoViewer.FileAssoc.Tiff" | |
".tiff"="PhotoViewer.FileAssoc.Tiff" | |
".jpg"="PhotoViewer.FileAssoc.Tiff" | |
".jpeg"="PhotoViewer.FileAssoc.Tiff" | |
".png"="PhotoViewer.FileAssoc.Tiff" | |
".gif"="PhotoViewer.FileAssoc.Tiff" | |
".bmp"="PhotoViewer.FileAssoc.Tiff" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Kernel configuration for `hostname` by Bachsau | |
# Static domain (for servers) | |
#kernel.domainname = example.com | |
# Disable the magic-sysrq key | |
kernel.sysrq = 0 | |
# IPv6 address pool | |
net.ipv6.conf.default.max_addresses = 256 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"aururl": "https://aur.archlinux.org", | |
"aurrpcurl": "https://aur.archlinux.org/rpc?", | |
"buildDir": "/Users/Sven/.cache/yay", | |
"editor": "nano", | |
"editorflags": "", | |
"makepkgbin": "makepkg", | |
"makepkgconf": "", | |
"pacmanbin": "pacman", | |
"pacmanconf": "/etc/pacman.conf", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo on | |
netsh interface teredo set state disabled | |
netsh interface ipv6 set teredo disable | |
netsh interface ipv6 set privacy state=enabled | |
netsh interface ipv6 set privacy maxpreferredlifetime=1d | |
netsh interface ipv6 set privacy maxvalidlifetime=2d | |
netsh interface ipv6 set global randomizeidentifiers=disabled | |
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -eu | |
while read -r discard; do :; done; unset -v discard | |
echo 'Content-Type: text/plain; charset=UTF-8' | |
echo 'Cache-Control: no-store, max-age=0' | |
echo | |
git fetch -q github main | |
git reset --hard github/main | |
git clean -d -e '/deploy.cgi' -x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-----BEGIN PRIVATE KEY----- | |
MIIJQgIBADANBgkqhkiG9w0BAQEFAASCCSwwggkoAgEAAoICAQDCS1cz8+MwcnN6 | |
A5qK30AQX+CPXNwuYF738+1zhlVuHzdo/3X76Go1lCfFM+8lpYYxKPOsz6cgLf5f | |
HWfc3Ikj1OCmHs5LorfQKVormkbBW9aBwaN79Uq+Y8+r6dz0pT0HyLzcWQ/DDgbX | |
GAzU1hZcuYw5UjN4dptpZk27sTKTrukgNcMttC0CRYgpV1ICCgeT7D1mVAoB+oeF | |
0I+OxkX5vkPZAab/nzGSuW+hMHiwsf0OoNtkAxkGjrPvHXmB6t/MrYDByCQBi3x9 | |
jhRKZ4ADPXCZMTw7iUoAqBDJ4imMbHN/cfonuKmU0YSbQJYLrZFhOVWHHGJeeXqW | |
8EuYojaxsxR8YRirNKNVSaUA+7zo0zMWo1Ig1tqONSwZys3QbZA4W3nibICZA8bR | |
0onKo1iyq+ASHxD7hEEKHLuZnfgs5y8jXbIyxOMAiiFHJoRwwckJ3PcsmvUmpHuG | |
MinJisbDAVGk2wAzZ7clZs9l510sgFw9RrEGvedB1lO6UFxs2VxxyH6sOfWc4HTs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -eu | |
# Run etckeeper after certificate renewal (by Bachsau) | |
if command -v etckeeper >/dev/null && etckeeper unclean; then | |
etckeeper commit "committing updates to certificate configuration files after renewal" | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -eu | |
if [ $(id -u) -ne 0 ]; then | |
echo 'Only root can do this' >&2 | |
exit 1 | |
fi | |
mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql mysql | |
mysql_tzinfo_to_sql --leap /etc/localtime | mysql mysql | |
systemctl restart mysql.service |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -eu | |
python3 -m venv --upgrade /opt/certbot | |
python3 -m venv --upgrade-deps /opt/certbot | |
/opt/certbot/bin/pip install --upgrade certbot certbot-dns-standalone |
NewerOlder