Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| # Changes to this file aren't read by tmux automatically, | |
| # compleletely close the tmux sesssion and reopen it or | |
| # ~PREFIX :~ to open command mode and type "source-file ~/.tmux.conf" or | |
| # "tsr" in terminal which is an alias in ~/.fishrc or use binding `M-f r` to make it work | |
| # | |
| # from FAQ file in tmux source code: | |
| # to see the default session options by starting a new tmux server with no configuration file: | |
| # $ tmux -Lfoo -f/dev/null start\; show -g | |
| # Or the default window options: | |
| # $ tmux -Lfoo -f/dev/null start\; show -gw |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| alias gd="git diff" | |
| alias gclone="git clone" | |
| alias ga="git add" | |
| alias gbdel="git branch -D" | |
| alias gst="git status" | |
| alias gcommit="git commit -a -m" | |
| alias gptags="git push --tags" | |
| alias gp="git push" | |
| alias gpr="git pull-request" | |
| alias grhard="git reset --hard" |
| """ | |
| This is a batched LSTM forward and backward pass | |
| """ | |
| import numpy as np | |
| import code | |
| class LSTM: | |
| @staticmethod | |
| def init(input_size, hidden_size, fancy_forget_bias_init = 3): |