One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <!-- | |
| Acknowledgements.plist | |
| Created by Richard on 6/16/19. | |
| Copyright (c) 2019 ___ORGANIZATIONNAME___. All rights reserved. | |
| --> | |
| <plist version="1.0"> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Page Title</title> | |
| <!--[if IE]> | |
| <hta:application applicationname=”HTA Test” scroll=”yes” singleinstance=”yes”> | |
| <script type="text/javascript"> | |
| function openURL() | |
| { | |
| var shell = new ActiveXObject("WScript.Shell"); |
| #!/bin/bash | |
| f=$(pwd) | |
| sips --resampleWidth 512 "${f}/${1}" --out "${f}/iTunesArtwork.png" | |
| sips --resampleWidth 1024 "${f}/${1}" --out "${f}/iTunesArtwork@2x.png" | |
| sips --resampleWidth 20 "${f}/${1}" --out "${f}/Icon-App-20x20@1x.png" | |
| sips --resampleWidth 40 "${f}/${1}" --out "${f}/Icon-App-20x20@2x.png" | |
| sips --resampleWidth 60 "${f}/${1}" --out "${f}/Icon-App-20x20@3x.png" | |
| sips --resampleWidth 29 "${f}/${1}" --out "${f}/Icon-App-29x29@1x.png" | |
| sips --resampleWidth 58 "${f}/${1}" --out "${f}/Icon-App-29x29@2x.png" |
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |
| #add as run script in xcode | |
| if which taylor >/dev/null; then | |
| taylor -p ${PROJECT_DIR} -r xcode | |
| else | |
| echo "Taylor not installed" | |
| fi |
| #Add as Run Script in Xcode | |
| if which swiftlint >/dev/null; then | |
| swiftlint | |
| else | |
| echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint" | |
| fi |
| Code | Title | Duration | Link |
|---|---|---|---|
| Keynote | Andy Jassy Keynote Announcement Recap | 0:01 | https://www.youtube.com/watch?v=TZCxKAM2GtQ |
| Keynote | AWS re:Invent 2016 Keynote: Andy Jassy | 2:22 | https://www.youtube.com/watch?v=8RrbUyw9uSg |
| Keynote | AWS re:Invent 2016 Keynote: Werner Vogels | 2:16 | https://www.youtube.com/watch?v=ZDScBNahsL4 |
| Keynote | [Tuesday Night Live with James Hamilton](h |
| # Xcode | |
| # | |
| # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore | |
| ## Build generated | |
| build/ | |
| DerivedData | |
| ## Various settings | |
| *.pbxuser |
| # xcode-build-bump.sh | |
| # @desc Auto-increment the build number every time the project is run. | |
| # @usage | |
| # 1. Select: your Target in Xcode | |
| # 2. Select: Build Phases Tab | |
| # 3. Select: Add Build Phase -> Add Run Script | |
| # 4. Paste code below in to new "Run Script" section | |
| # 5. Drag the "Run Script" below "Link Binaries With Libraries" | |
| # 6. Insure that your starting build number is set to a whole integer and not a float (e.g. 1, not 1.0) |