Skip to content

Instantly share code, notes, and snippets.

View dmytrotkk's full-sized avatar
🐵

Dmytro dmytrotkk

🐵
View GitHub Profile
@dmytrotkk
dmytrotkk / convoy_service_setup.sh
Created October 19, 2019 08:16
Limit Docker volume size tutorial snippet
cp ./convoy_example.service /etc/systemd/system/convoy.service
systemctl enable convoy
systemctl start convoy
@dmytrotkk
dmytrotkk / .bash_profile
Created February 17, 2021 10:25
Random emoji for bash session
random_emoji() {
emojis=(📚 🚀 🐍 🌎 🎉 🎸 🌈 💻 🌿 🍀 🌝 🍊)
selectedexpression=${emojis[$RANDOM % ${#emojis[@]} ]}
echo $selectedexpression
}
export PS1="$(random_emoji) $ "