Skip to content

Instantly share code, notes, and snippets.

View jult's full-sized avatar
🏠
F*ck the AUKUS NATO war machine. You people are literally destroying the planet.

Julius Thyssen jult

🏠
F*ck the AUKUS NATO war machine. You people are literally destroying the planet.
View GitHub Profile
@jult
jult / whitelist.sh
Last active December 14, 2024 12:38 — forked from JosepOli/whitelist.sh
Using URLs to whitelist on pihole server
#!/bin/bash
# BE SURE TO INSTALL dos2unix, wget, sed (apt install dos2unix wget sed -y) and change these to your preferences:
WHITELIST_URL='https://jult.net/whitelist.txt'
WHITELIST_URLX='https://raw.githubusercontent.com/anudeepND/whitelist/master/domains/whitelist.txt'
CUSTOM_LIST='/root/io/whitey'
# Give your txt file a name, this will have the domains that this script will whitelist into pi-hole
WHITELIST_FILE_NAME='wlresult'
wget -qO - --limit-rate=1500k "$WHITELIST_URL" > /tmp/white1
@jult
jult / killadobe.sh
Created November 21, 2022 16:41 — forked from CyberPunkCodes/killadobe.sh
Mac Bash script to kill Adobe Create Cloud and other processes that Adobe forces on us.
#!/bin/bash
echo "\n\n--- Killing Stupid Adobe Auto Load Crap ---\n\n"
launchctl unload -w /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist
launchctl unload -w /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
echo "\n\n--- Done! ---\n\n"
@jult
jult / install_ispcfg_for_deb9.sh
Last active August 14, 2018 14:51 — forked from jniltinho/install_ispconfig_nginx_debian.sh
ISPconfig 3.x install with NGINX 1.13.x + PHP 7.1 on Debian 9 x64 (Stretch) server
#!/bin/bash
## Install ISPConfig + NGINX + PHP 7.1 on Debian 9 x64 (Stretch)
## Filesystem ext4
## Run as root
## Based on: https://www.howtoforge.com/tutorial/perfect-server-debian-jessie-nginx-bind-dovecot-ispconfig-3.1/
## and: https://www.howtoforge.com/tutorial/perfect-server-debian-9-stretch-apache-bind-dovecot-ispconfig-3-1/
## ! For Postfix config see https://www.howtoforge.com/tutorial/perfect-server-debian-9-stretch-apache-bind-dovecot-ispconfig-3-1/
# Check if user has root privileges