I hereby claim:
- I am tinifni on github.
- I am tinifni (https://keybase.io/tinifni) on keybase.
- I have a public key whose fingerprint is 2673 7929 94CF 679B 0743 A387 D55F BD3D B5CF F253
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // Replace the following values with your own: | |
| // auth_token | |
| // room_id | |
| // from | |
| javascript: | |
| var auth_token = "Your auth_token"; | |
| var room_id = "Room to send message"; | |
| var from = "Sender's name"; | |
| var hipchat = 'https://api.hipchat.com/v1/rooms/message?auth_token=' + auth_token + |
| # zsh script checks first if there were any commits done | |
| # by author yesterday. If there were, return those. If | |
| # there weren't, look for all commits since last Friday | |
| # at midnight as it may have been a weekend. | |
| # | |
| # Use your name in the --author for all commands | |
| gitstandup() { | |
| if [ -z "$(git log --all --pretty=format:'* %s' --no-merges --reverse --author=Justin --since=yesterday.midnight)" ]; then | |
| git log --all --pretty=format:'* %s' --no-merges --reverse --author=Justin --since=last.friday.midnight; |
| def my_method | |
| chuck_norris | |
| ... | |
| end | |
| end | |
| >> my_method | |
| => <always desired output> |
| # ~/.tmuxinator/go.yml | |
| # you can make as many tabs as you wish... | |
| project_name: go | |
| project_root: ~/ | |
| socket_name: #foo # Not needed. Remove to use default socket | |
| tabs: | |
| - irc: weechat-curses | |
| - server: | |
| layout: main-horizontal |