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: |
| import UIKit | |
| import EventKit | |
| import EventKitUI | |
| typealias EventsCalendarManagerResponse = (_ result: ResultCustomError<Bool, CustomError>) -> Void | |
| class EventsCalendarManager: NSObject { | |
| var eventStore: EKEventStore! | |
heroku restartheroku pg:reset DATABASE (no need to change the DATABASE)heroku run rake db:migrateheroku run rake db:seed (if you have seed)One liner
heroku restart; heroku pg:reset DATABASE --confirm APP-NAME; heroku run rake db:migrate
| # delete local tag '12345' | |
| git tag -d 12345 | |
| # delete remote tag '12345' (eg, GitHub version too) | |
| git push origin :refs/tags/12345 | |
| # alternative approach | |
| git push --delete origin tagName | |
| git tag -d tagName |
| included: | |
| excluded: | |
| - Pods | |
| - Cartography | |
| - build | |
| disabled_rules: # rule identifiers to exclude from running | |
| # - cyclomatic_complexity | |
| - trailing_whitespace |
In your command-line run the following commands:
brew doctorbrew update| 1. $ sudo vim /etc/pam.d/sudo | |
| 2. add this line on top of the content | |
| auth sufficient pam_tid.so | |
| 3. | |
| :w! | |
| :q | |
| 4. works now for Terminal, but for iTerm 2, go to top menu |
| import Foundation | |
| extension UIFont { | |
| class func systemFontOfSize(size: CGFloat) -> UIFont { | |
| return UIFont(name: "HelveticaNeue", size: size)! | |
| } | |
| class func italicSystemFontOfSize(size: CGFloat) -> UIFont { | |
| return UIFont(name: "HelveticaNeue-Italic", size: size)! | |
| } |