Skip to content

Instantly share code, notes, and snippets.

View gyorgygutai's full-sized avatar
🎯
Focusing

Gutai György gyorgygutai

🎯
Focusing
View GitHub Profile
@gyorgygutai
gyorgygutai / .gitconfig
Created June 28, 2024 10:27
my gitconfig
# This is Git's per-user configuration file.
[user]
name = Gyorgy Gutai
email =
[alias]
l = log
b = branch
s = status
c = checkout
ci = !git checkout $(git branch -a | fzf | xargs)
@gyorgygutai
gyorgygutai / .zshrc
Last active February 5, 2025 09:15
my zshrc
alias {l,ll}="ls -lah"
# start interactive
alias si='$(mdfind "kMDItemUserTags == '\''Blue'\''" | fzf | xargs)'
# cd interactive
alias cdi='cd $(mdfind "kMDItemUserTags == '\''Purple'\''" | fzf | xargs)'
# enable git autocomplete
autoload -Uz compinit && compinit
@mob-sakai
mob-sakai / _README.md
Last active November 19, 2025 00:47
Run shell script on gist

Run shell script on gist

Shells that support process substitution such as bash and zsh allow to run shell script on gist as follows.

# With curl:
bash <(curl -sL ${GIST_URL}) args...

# With wget: