Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
git config --global alias.co checkout | |
git config --global alias.ci commit | |
git config --global alias.st status | |
git config --global alias.br branch |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
EMOJI CHEAT SHEET
Emoji emoticons listed on this page are supported on Campfire, GitHub, Basecamp, Redbooth, Trac, Flowdock, Sprint.ly, Kandan, Textbox.io, Kippt, Redmine, JabbR, Trello, Hall, plug.dj, Qiita, Zendesk, Ruby China, Grove, Idobata, NodeBB Forums, Slack, Streamup, OrganisedMinds, Hackpad, Cryptbin, Kato, Reportedly, Cheerful Ghost, IRCCloud, Dashcube, MyVideoGameList, Subrosa, Sococo, Quip, And Bang, Bonusly, Discourse, Ello, and Twemoji Awesome. However some of the emoji codes are not super easy to remember, so here is a little cheat sheet. ✈ Got flash enabled? Click the emoji code and it will be copied to your clipboard.
People
😄
if [ -n "$SSH_AUTH_SOCK" ] && netstat -nlpx 2> /dev/null | awk '{print $NF}' | grep -qF "$SSH_AUTH_SOCK"; then | |
echo "export SSH_AUTH_SOCK=$SSH_AUTH_SOCK" > /tmp/ssh-agent$UID | |
if [ -n "$SSH_AGENT_PID" ]; then | |
echo "export SSH_AGENT_PID=$SSH_AGENT_PID" >> /tmp/ssh-agent$UID | |
elif [ -n "$GNOME_KEYRING_PID" ]; then | |
echo "export GNOME_KEYRING_SOCKET=$GNOME_KEYRING_SOCKET" >> /tmp/ssh-agent$UID | |
echo "export GNOME_KEYRING_PID=$GNOME_KEYRING_PID" >> /tmp/ssh-agent$UID | |
fi | |
else | |
SSH_AUTH_SOCK= |
# Oneliners | |
## SSL | |
### Retrieve ssl cert from command line. Seems to be getting only one of the certs. | |
DNS='mydomain.com' | |
SERVER_NAME=$DNS # Forcing to return only the certificate for the current DNS. | |
PORT=443 | |
echo | openssl s_client -showcerts -servername $SERVER_NAME -connect $DNS:$PORT 2>/dev/null | openssl x509 -inform pem -noout -text | |
## VIM | |
### Execure modifications on a file without staying on it |
#! /bin/bash | |
# This script reads rabbitmq statistics and report them as CloudWatch metrics. | |
# Author: Richard Hayes - Forked from Mirek Svoboda | |
# Version: 0.5 | |
# TABSTOP=4 | |
# | |
# Changelog: | |
# 0.5 | |
# -- Added TotalMessages & TotalConsumers metrics | |
# 0.4 |
function Get-Base64 { | |
param ( | |
$data | |
) | |
# if the $data is a string then ensure it is a byte array | |
if ($data.GetType().Name -eq "String") { | |
$data = [System.Text.Encoding]::UTF8.GetBytes($data) | |
} |