This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// Playing Apple Special Event September 2015 in Playground on Xcode 7.1 beta 3 | |
| /// Work load will be lowest when Platform = "OS X" | |
| import AVFoundation | |
| import AVKit | |
| import XCPlayground | |
| protocol Playable: XCPlaygroundLiveViewable { | |
| var player: AVPlayer? {get set} | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Minimal example of getting a PostgREST API running from scratch for | |
| # testing purposes. It uses docker to launch a postgres database and | |
| # a postgrest api server. | |
| # This should not be used to deploy a production system but to | |
| # understand how postgrest works. In particular there is no security | |
| # implemented, see the docs for more. | |
| # https://postgrest.org/en/v4.4/ |
OlderNewer