Skip to content

Instantly share code, notes, and snippets.

View okineadev's full-sized avatar
🥝

Okinea Dev okineadev

🥝
View GitHub Profile
@okineadev
okineadev / refresh_cache_on_camo.sh
Last active January 10, 2025 11:06 — forked from eggplants/refresh_cache_on_camo.sh
How to remove all cache of camo image icons in GitHub images
#!/usr/bin/env bash
curl -s https://github.com/OWNER/REPO | grep -oE 'https://camo[^"]+' | while read i; do curl -X PURGE "$i"; done
@okineadev
okineadev / export-import-gpg-keys.md
Last active May 21, 2024 08:27 — forked from lysender/export-import-gpg-keys.md
Export and import GPG Keys

Export public key

gpg --export [email protected] > my_key.pub 

The file can then be shared to other people.

Export public key in armor ASCII format