Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| # You don't need Fog in Ruby or some other library to upload to S3 -- shell works perfectly fine | |
| # This is how I upload my new Sol Trader builds (http://soltrader.net) | |
| # Based on a modified script from here: http://tmont.com/blargh/2014/1/uploading-to-s3-in-bash | |
| # S3KEY="my aws key" | |
| # S3SECRET="my aws secret" # pass these in | |
| function putS3 | |
| { | |
| path=$1 |
| source "https://rubygems.org" | |
| gem "certificate_authority" |
| @import compass | |
| $icons: sprite-map("icons/*.png") | |
| $icons-hd: sprite-map("icons-hd/*.png") | |
| i | |
| background: $icons | |
| display: inline-block | |
| @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) | |
| background: $icons-hd |
| # A XMLHttpRequest wrapper for IE < 10. | |
| # When it comes to cross domain ajax requests, it uses XDomainRequest instead. | |
| # ** Only supports GET and POST requests! ** | |
| # Targeting IE < 10 | |
| # https://github.com/amcintyre-cs/strophejs-plugins/commit/b0a6ff2571bb70dd2f6f65c46034f4e47d75d564 | |
| return unless window.XDomainRequest and !("withCredentials" in window.XMLHttpRequest) | |
| OriginalXMLHttpRequest = window.XMLHttpRequest | |
| window.location.origin ?= window.location.protocol + '//' + window.location.host |