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
| // In the past I was calling it Notification but iOS10 | |
| // NSNotification was renamed to Notification, so ¯\_(ツ)_/¯ | |
| protocol Notifiable: RawRepresentable { | |
| func post(userInfo aUserInfo: [NSObject : AnyObject]?, object anObject: AnyObject?) | |
| func observe(observer: AnyObject, selector aSelector: Selector, object anObject: AnyObject?) | |
| func name() -> String | |
| func notificationCenter() -> NSNotificationCenter |
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
| let resourceName: String | |
| switch userLanguage { | |
| case .German: | |
| resourceName = "Base" | |
| case .French: | |
| resourceName = "fr" | |
| case .Unknown: | |
| resourceName = nameFromPhoneDefaults() | |
| } |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am ppeszko on github. | |
| * I am patryk_peszko (https://keybase.io/patryk_peszko) on keybase. | |
| * I have a public key ASB-ehWyN_bqnAs1n0ld5q-ZndWJo5_zq3lFl5O5GSbBOQo | |
| To claim this, I am signing this object: |
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
| map $http_upgrade $connection_upgrade { | |
| default upgrade; | |
| '' close; | |
| } | |
| server { | |
| listen 80; | |
| listen [::]:80; | |
| server_name example.com; | |
| return 301 https://$host$request_uri; |
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
| --- | |
| format_version: 1.1.0 | |
| default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git | |
| trigger_map: | |
| - push_branch: qa | |
| workflow: qa | |
| workflows: | |
| _init_install: | |
| steps: | |
| - activate-ssh-key: |
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
| --- | |
| format_version: 1.1.0 | |
| default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git | |
| app: | |
| envs: | |
| - BITRISE_PROJECT_PATH: ios/pro_mobile.xcodeproj | |
| opts: | |
| is_expand: false | |
| - BITRISE_SCHEME: pro_mobile | |
| opts: |
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
| const fs = require("fs"); | |
| const bundle = fs.readFileSync("path-to-webpack-bundle.html", "utf8"); | |
| const escaped = JSON.stringify(bundle); | |
| const js = `export default ${escaped}`; | |
| fs.writeFileSync("javascript-output-file.ts", js); |
OlderNewer