This file contains 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
# Realm, attempt 1 | |
apple_library( | |
name = "Realm", | |
configs = { | |
"Debug": { | |
"IPHONEOS_DEPLOYMENT_TARGET": "11.0", | |
"SDKROOT": "iphoneos", | |
"GCC_OPTIMIZATION_LEVEL": "0", | |
"SWIFT_OPTIMIZATION_LEVEL": "-Onone", |
This file contains 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
class Weak<T: AnyObject> { | |
weak var value : T? | |
init (value: T) { | |
self.value = value | |
} | |
} | |
public class Model { | |
let id: String | |
private init(from payload: JSON) { |
This file contains 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
import UIKit | |
import SceneKit | |
import SpriteKit | |
import AVFoundation | |
class ViewController: UIViewController { | |
@IBOutlet weak var scnView: SCNView! | |
var videoLayer: AVPlayerLayer! | |
var videoPlayer: AVPlayer! |
This file contains 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
import { Accounts } from 'meteor/accounts-base'; | |
import { ServiceConfiguration } from 'meteor/service-configuration'; | |
// currently you need to use a local version of the facebook package with this change: | |
// https://github.com/meteor/meteor/pull/7550 | |
import { Facebook } from 'meteor/facebook'; | |
import { HTTP } from 'meteor/http'; | |
import { OAuth } from 'meteor/oauth'; |