Skip to content

Instantly share code, notes, and snippets.

View ssimk0's full-sized avatar
🇸🇰

Sebastián Simko ssimk0

🇸🇰
View GitHub Profile
@ssimk0
ssimk0 / config.yml
Created October 6, 2025 08:38
config.yml
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
@ssimk0
ssimk0 / install-steps.sh
Created July 23, 2025 12:34 — forked from jamesob/install-steps.sh
Getting to Android and react-native development in Arch Linux (2024)
# 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
#!/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)."