Skip to content

Instantly share code, notes, and snippets.

View occamist's full-sized avatar
🪒
KISS

Talha Altınel occamist

🪒
KISS
View GitHub Profile
@occamist
occamist / .gitconfig
Last active May 14, 2026 21:34
new .gitconfig with ssh signing key
[user]
email = 22800416+occamist@users.noreply.github.com
name = Talha Altinel
signingkey = ~/.ssh/github.pub
[url "ssh://git@github.com/"]
insteadOf = https://github.com/
insteadOf = http://github.com/
[url "ssh://git@gitlab.com/"]
insteadOf = https://gitlab.com/
insteadOf = http://gitlab.com/
@occamist
occamist / output-pacman-pkgs.sh
Created October 5, 2025 17:51
outputs all pacman packages
#!/bin/bash
# Output file with timestamp
OUTPUT_FILE="$HOME/Documents/pacman-packages-$(date +%Y%m%d-%H%M%S).txt"
# List ALL installed packages (including dependencies)
pacman -Q > "$OUTPUT_FILE"
echo "Package list saved to: $OUTPUT_FILE"
@occamist
occamist / .gitconfig
Last active May 14, 2026 01:59
my git config
[user]
email = talhaaltinel@proton.me
name = Talha Altinel
signingkey = FILL_HERE_WITH_YOUR_GPG_SIGNING_KEY
[url "ssh://git@github.com/"]
insteadOf = https://github.com/
insteadOf = http://github.com/
[url "ssh://aur@aur.archlinux.org/"]
insteadOf = https://aur.archlinux.org/
insteadOf = http://aur.archlinux.org/