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
<?php | |
include_once 'vendor/autoload.php'; | |
class Dummy | |
{ | |
private $foo = 'bar'; | |
private $bars = ['foo_One', 'fooKey' => 'fooValue']; | |
} |
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
//: Playground - noun: a place where people can play | |
import UIKit | |
import XCPlayground | |
XCPSetExecutionShouldContinueIndefinitely() | |
let url = NSURL(string: "http://api.tvmaze.com/shows/1?embed=previousepisode")! | |
let session = NSURLSession.sharedSession() |
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
// | |
// MasterViewController.swift | |
// HackerNewsTitles | |
// | |
// Created by Jan Gregor Triebel on 06.04.15. | |
// Copyright (c) 2015 Jan Gregor Triebel. All rights reserved. | |
// | |
import UIKit |