I hereby claim:
- I am AppleBetas on github.
- I am applebetas (https://keybase.io/applebetas) on keybase.
- I have a public key whose fingerprint is 84DC 84E8 169F 6DB6 E7B3 03D5 CD41 B403 E6E0 7E2E
To claim this, I am signing this object:
| // | |
| // Colour.swift | |
| // | |
| // Created by AppleBetas on 2016-07-09. | |
| // Copyright © 2016 AppleBetas. All rights reserved. | |
| // | |
| /* | |
| Example usage: |
| // | |
| // UIViewController+QuickAlert.swift | |
| // | |
| // Created by AppleBetas on 2016-09-11. | |
| // Copyright © 2016 AppleBetas. All rights reserved. | |
| // | |
| import UIKit | |
| extension UIViewController { |
| // | |
| // UIAlertAction+Image.swift | |
| // | |
| // Created by AppleBetas on 2016-09-11. | |
| // Copyright © 2016 AppleBetas. All rights reserved. | |
| // | |
| import UIKit | |
| extension UIAlertAction { |
I hereby claim:
To claim this, I am signing this object:
| # Remove alpha channel and replace with black | |
| mogrify -background black -alpha remove -alpha off *.png | |
| # Check alpha channel of images in directory (requires Xcode and command-line tools; not required) | |
| sips -g hasAlpha *.png |
| // | |
| // Device.swift | |
| // | |
| // Created by AppleBetas on 2015-12-30. | |
| // Copyright © 2015 AppleBetas. All rights reserved. | |
| // | |
| import Foundation | |
| class Device { |
| // | |
| // NSAlert+QuickAlert.swift | |
| // | |
| // Created by AppleBetas on 2016-10-24. | |
| // Copyright © 2016 AppleBetas. All rights reserved. | |
| // | |
| import Cocoa | |
| extension NSAlert { |
| // | |
| // Randoms.swift | |
| // | |
| // Created by AppleBetas on 2016-02-21. | |
| // Copyright © 2016 AppleBetas. All rights reserved. | |
| // | |
| import Foundation | |
| extension Array { |
| // NETFLIX PIP BOOKMARKLET | |
| // Paste the following into a bookmarklet, and from the Safari Develop menu, check "Allow JavaScript from Smart Search Field". Whenever you open this bookmarklet with a Netflix video playing, it will pop into Picture in Picture. | |
| // Some accounts have different UIs for some reason so use the one that matches yours | |
| // New UI: | |
| javascript:document.querySelector(".NFPlayer > .video-container > div > video").webkitSetPresentationMode("picture-in-picture"); | |
| // Old UI: | |
| javascript:document.querySelector(".player-video-wrapper video").webkitSetPresentationMode("picture-in-picture"); |
| // | |
| // WatchInfo.swift | |
| // | |
| // Created by AppleBetas on 2016-12-10. | |
| // Copyright © 2016 AppleBetas. All rights reserved. | |
| // | |
| import Foundation | |
| import WatchConnectivity |