pip install awscli --upgrade --usercurl -LO https://storage.googleapis.com/kubernetes-release/release/v1.13.0/bin/darwin/amd64/kubectl| //Substitute "Orders" for table name which contains values | |
| //on which you want to run the vlookup | |
| let mainTable = base.getTable("Orders"); | |
| let mainTableRecords = await mainTable.selectRecordsAsync({fields:["Item.barcode"]}); | |
| //Substitute "Product" for table which contains range to search in | |
| let lookupTable = base.getTable("Products"); | |
| let lookupRangeRecords = await lookupTable.selectRecordsAsync({fields:["Barcode","Name"]}); | |
| //Replace "Item.barcode" with column name which has the values you want to look up |
| ######################### | |
| # .gitignore file for Xcode4 and Xcode5 Source projects | |
| # | |
| # Apple bugs, waiting for Apple to fix/respond: | |
| # | |
| # 15564624 - what does the xccheckout file in Xcode5 do? Where's the documentation? | |
| # | |
| # Version 2.6 | |
| # For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects | |
| # |
| #!/bin/sh | |
| # Create a RAM disk with same perms as mountpoint | |
| # Script based on http://itux.idev.pro/2012/04/iservice-speed-up-your-xcode-%D0%BD%D0%B5%D0%BA%D0%BE%D1%82%D0%BE%D1%80%D1%8B%D0%B5-%D1%81%D0%BF%D0%BE%D1%81%D0%BE%D0%B1%D1%8B/ with some additions | |
| # Usage: sudo ./xcode_ramdisk.sh start | |
| USERNAME=$(logname) | |
| TMP_DIR="/private/tmp" | |
| RUN_DIR="/var/run" | |
| SYS_CACHES_DIR="/Library/Caches" |