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
| function FindProxyForURL(url, host) { | |
| return "PROXY 145.80.157.193:8080"; | |
| return "PROXY 0.0.0.0:0"; | |
| // Test rule: always allow direct connection | |
| return "DIRECT"; | |
| } |
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
| One day | |
| build and test -> Build ready One day | |
| Build ready One day | |
| success -> Build to beta One day | |
| fail -> Another day | |
| Build to beta One day | |
| yes -> Beta test One day | |
| no -> Another day | |
| Beta test One day | |
| bug found -> Another day |
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
| Pipeline | |
| Continuous Delivery | |
| Waiting | |
| build triggered -> Build | |
| Build | |
| build success? -> Twistlock Scan | |
| build failed? -> Fail | |
| Twistlock Scan | |
| scan passed? -> Test | |
| scan failed? -> Fail |
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
| https://bitbar.com/the-basics-of-xcuitest-and-using-xcode-ui-test-recorder/ |
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
| ### if Xcode starts misbehaving you can use: | |
| defaults delete com.apple.dt.Xcode | |
| rm -rf $HOME/Library/Application Support/Developer/Shared/Xcode | |
| rm -rf $HOME/Library/Saved\ Application\ State/com.apple.dt.Xcode.savedState | |
| rm -rf $HOME/Library/Preferences/com.apple.dt.Xcode.* | |
| ### and for the simulators | |
| xcrun simctl erase all |
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
| pip install pipreqs | |
| pipreqs /path/to/project |