git init
or
| - (void)viewDidLoad | |
| { | |
| [super viewDidLoad]; | |
| // init VPN manager | |
| self.vpnManager = [NEVPNManager sharedManager]; | |
| // load config from perference | |
| [_vpnManager loadFromPreferencesWithCompletionHandler:^(NSError *error) { |
| class CVector3f | |
| { | |
| public: | |
| float x, y, z; | |
| CVector3f() | |
| {} | |
| CVector3f(float xx, float yy, float zz) : x(xx), y(yy), z(zz) | |
| {} |
| --- Actions --- | |
| $Copy <M-C> | |
| $Cut <M-X> <S-Del> | |
| $Delete <Del> <BS> <M-BS> | |
| $LRU | |
| $Paste <M-V> | |
| $Redo <M-S-Z> <A-S-BS> | |
| $SearchWeb <A-S-G> | |
| $SelectAll <M-A> | |
| $Undo <M-Z> |
No, seriously, don't. You're probably reading this because you've asked what VPN service to use, and this is the answer.
Note: The content in this post does not apply to using VPN for their intended purpose; that is, as a virtual private (internal) network. It only applies to using it as a glorified proxy, which is what every third-party "VPN provider" does.
| #!/bin/bash | |
| # Run Script Build Phase for Xcode to automatically increase the CFBundleVersion value | |
| # on your target's Info.plist using a 'yymmddHHMMSS' style timestamp. | |
| # Also, sets a custom key with the current git commit hash (GIT_COMMIT_HASH) | |
| # | |
| # This script works by modifying the target copy of your Info.plist file, so that it won't | |
| # change your original Info.plist which is under version control. It does, however, use | |
| # the original file to read the initial CFBundleVersion value to which the timestamp | |
| # for the current date/time is appended. |
| TILCD::TILCD(uint8_t ce, uint8_t di, uint8_t wr, uint8_t rst, uint8_t d0, uint8_t d1, uint8_t d2, uint8_t d3, uint8_t d4, uint8_t d5, uint8_t d6, uint8_t d7) | |
| { | |
| _ce = ce; | |
| _di = di; | |
| _wr = wr; | |
| _rst = rst; | |
| _d0 = d0; | |
| _d1 = d1; | |
| _d2 = d2; |
| worker_processes 1; | |
| events { | |
| worker_connections 1024; | |
| } | |
| rtmp { | |
| server { | |
| listen 1935; | |
| chunk_size 8192; |
| #!/bin/sh | |
| set -eo pipefail | |
| IFS=$'\n\t' | |
| # Constants | |
| NOW=$(date +%s) | |
| BUILD_FILE_NAME="MyApp-${NOW}" | |
| SCHEME="MyApp" | |
| WORKSPACE="MyApp" | |
| PROJECT="MyApp" |