Skip to content

Instantly share code, notes, and snippets.

View jcsgasche's full-sized avatar
enjoy!

Joshua Gasche jcsgasche

enjoy!
  • Lucerne, Switzerland
  • 09:36 (UTC +02:00)
View GitHub Profile
@rlucente-retro
rlucente-retro / Install-waydroid-on-Fedora
Created April 25, 2023 21:24
Install Waydroid on Fedora
Install Fedora
Apply all the updates
sudo dnf -y update
sudo reboot
Install Waydroid
sudo dnf -y install waydroid
@n1snt
n1snt / Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md
Last active April 19, 2026 17:30
Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md
@vaughany
vaughany / kill-pulse-vpn.sh
Last active January 27, 2026 16:30
Small script to kill the Pulse VPN service and UI, 'cos they seem to hang sometimes, for no reason.
#!/bin/bash
# Finds and kills the Pulse Secure VPN background service and UI.
if [[ $EUID -ne 0 ]]; then
echo -e "\e[1;41mThis script must be run as root.\e[0m"
exit 1
fi
IDS=$(ps -ax | grep -i 'pulse[ui|svc]' | tr -s ' ' | sed 's/^ *//g' | cut -d ' ' -f 1)