- 1Password
- Annotate
- Dash
- Datum
- Fluid
- Marked 2
- Moom
- Paw
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| struct ValueObservingOperation<T> {} | |
| var operations = [ValueObservingOperation<Any>]() // | |
| let op1 = ValueObservingOperation<String>() | |
| let op2 = ValueObservingOperation<Int>() | |
| operations.append(op1) | |
| operations.append(op2) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| disabled_rules: # rule identifiers to exclude from running | |
| # - closing_brace | |
| # - colon | |
| # - comma | |
| # - control_statement | |
| # - custom_rules | |
| # - cyclomatic_complexity | |
| # - file_length | |
| # - force_cast | |
| # - force_try |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Gemfile | |
| # | |
| # Created by Benoit Sarrazin on Jan 26, 2016. | |
| # Copyright (c) 2016 Berzerker IO. All rights reserved. | |
| # | |
| source "https://rubygems.org" | |
| gem 'cocoapods' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Rakefile | |
| # | |
| # Created by Benoit Sarrazin on Jan 26, 2016. | |
| # Copyright (c) 2016 Berzerker IO. All rights reserved. | |
| # | |
| require 'colorize' | |
| desc "The default task." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Foundation | |
| class R2D2 { | |
| func beep(completion: (() -> ())?) -> Void { | |
| completion?() | |
| } | |
| } | |
| let r2d2 = R2D2() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git branch -m old_branch new_branch # Rename branch locally | |
| git push origin :old_branch # Delete the old branch | |
| git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Uncrustify Configuration File | |
| # File Created With UncrustifyX 0.4.3 (252) | |
| # | |
| # Alignment | |
| # --------- | |
| ## Alignment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Xcode | |
| ## Build generated | |
| build/ | |
| DerivedData/ | |
| ## Various settings | |
| *.pbxuser | |
| !default.pbxuser | |
| *.mode1v3 |
NewerOlder
