This file contains hidden or 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
pstreams: | |
groups: | |
default: | |
- 1.1.1.1 | |
- 8.8.8.8 | |
blocking: | |
denylists: | |
ads: | |
- https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts | |
- https://raw.githubusercontent.com/chadmayfield/my-pihole-blocklists/master/lists/pi_blocklist_porn_top1m.list |
This file contains hidden or 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
# This (very scant) guide allows you to do Android and react-native development on Linux by | |
# running the android emulator in a container. | |
# install yay via AUR | |
git clone https://aur.archlinux.org/yay.git && cd yay && makpkg -si | |
# install all android dev packages per https://wiki.archlinux.org/title/Android | |
yay -Sy android-sdk-cmdline-tools-latest android-sdk-build-tools android-sdk-platform-tools android-platform | |
# add to .zshrc |
This file contains hidden or 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/bash | |
# Downloads the most recently released kustomize binary | |
# to your current working directory. | |
# | |
# Fails if the file already exists. | |
where=$PWD | |
if [ -f $where/kustomize ]; then | |
echo "A file named kustomize already exists (remove it first)." |