- A code editor, eg Visual Studio Code.
- Brew package manager
- XCode command line tools
- OR install XCode first using your Mac's App Store
- then type
xcode-select --installat the Terminal
python3virtualenv
| <!--Saved by Quest 5.6.5621.18142--> | |
| <asl version="550"> | |
| <include ref="English.aslx" /> | |
| <include ref="Core.aslx" /> | |
| <game name="DemoLookProblem"> | |
| <gameid>dd090fb4-755b-4ed8-8a78-debf97652988</gameid> | |
| <version>1.0</version> | |
| <firstpublished>2015</firstpublished> | |
| <appendobjectdescription /> | |
| </game> |
| #!/bin/sh | |
| filename=$(basename "$1") | |
| extension="${filename##*.}" | |
| filename="${filename%.*}" | |
| if [ -z $1 ]; then | |
| echo "Usage: $0 image.png <points wide>" | |
| echo " produces 3 copies of the image, in SD, @2x and @3x for that point size" | |
| exit; |
| #!/bin/sh | |
| SIZES="58 87 80 120 180 29 20 40 60 76 158 152 167" | |
| OUTBASENAME=$(basename "$1" .png) | |
| for sz in $SIZES; do | |
| newImage="${OUTBASENAME}-${sz}x${sz}.png" | |
| cp "$1" "$newImage" | |
| sips --resampleHeightWidth $sz $sz "$newImage" |
| source ~/.bashrc | |
| # Have an ls that is in color by default | |
| alias ls='ls -G ' | |
| # Use the tree command - need to install it first from here | |
| # http://andre-als.blogspot.com.au/2012/02/how-to-install-command-tree-for-mac.html | |
| alias tree='tree -C ' | |
| # Create a nice short cut for git logs |
| " Use spaces instead of tabs | |
| set expandtab | |
| " Be smart when using tabkey | |
| set smarttab | |
| " 1 tab == 4 spaces | |
| set shiftwidth=4 | |
| set tabstop=4 |
| class Request { | |
| // DTO that can be accessed from different threads | |
| // Note: this is faster/better/approved by Apple instead of @synchronized and | |
| // other constructs (even tho' its a bit more verbose). DispatchQueue by | |
| // default is Serial so this synchronizes accesses. | |
| private var requestStateQueue = DispatchQueue(label: "requestStateQueue") | |
| private var _cancelled = false | |
| /** Set to true to cancel this request - atomic/threadsafe */ | |
| var cancelled: Bool { |
| // | |
| // AppDelegate.swift | |
| // | |
| import UIKit | |
| import AWSPinpoint | |
| import AWSAuthCore | |
| import AWSUserPoolsSignIn | |
| import CocoaLumberjackSwift |
xcode-select --install at the Terminalpython3virtualenv| # This Ubuntu issue seems to be affecting Python/pip on Mac - https://github.com/beenje/script.module.requests/issues/21 | |
| # requests 2.18.2 has requirement urllib3<1.23,>=1.21.1, but you'll have urllib3 1.23 which is incompatible. | |
| # Force the version of urllib3 | |
| pip install urllib3==1.22 |
| # https://blog.extracheese.org/2010/05/the-tar-pipe.html | |
| SRC=existing-source-controlled-proj | |
| DEST=copy-of-proj-with-no-git-data | |
| # on Linux and WSL use gnu tar exclude VCS to prevent copying the git data | |
| (cd ${HOME}/depot/${SRC} && tar --exclude-vcs cf - .)|(cd ${HOME}/depot/${DEST} && tar xvfp -) | |
| # on Mac the --exclude-vcs is not available - can add --exclude .git | |
| (cd ${HOME}/depot/${SRC} && tar --exclude='.git' cf - .)|(cd ${HOME}/depot/${DEST} && tar xvfp -) |