I threw out the lowest and highest guesses which were both hilarious.
| Person | Guess |
|---|---|
| David McGraw | $200.00 |
| Robert Dougan | $200.00 |
| Chad Sarles | $212.00 |
| Mark Finn | $500.00 |
| require 'json' | |
| require 'base64' | |
| unless input = ARGV.first | |
| puts 'Run with `ruby convert.rb path_to_your_cassette.json`' and return | |
| end | |
| def process(r) | |
| return unless r && (body = r['body']) && (content_type = r['headers']['Content-Type']) | |
| if content_type.start_with?('text/') |
| import UIKit | |
| extension UIColor { | |
| var luminance: CGFloat { | |
| var red: CGFloat = 0 | |
| var green: CGFloat = 0 | |
| var blue: CGFloat = 0 | |
| getRed(&red, green: &green, blue: &blue, alpha: nil) |
| import Foundation | |
| extension String { | |
| var isHomogeneous: Bool { | |
| if lengthOfBytesUsingEncoding(NSUTF8StringEncoding) == 0 { | |
| return true | |
| } | |
| var homogeneous = true | |
| var character: NSString? |
| import Foundation | |
| @objc protocol Foo { | |
| optional func say() -> String | |
| } | |
| class Doesnt: NSObject, Foo { | |
| } | |
| class Does: NSObject, Foo { |
I threw out the lowest and highest guesses which were both hilarious.
| Person | Guess |
|---|---|
| David McGraw | $200.00 |
| Robert Dougan | $200.00 |
| Chad Sarles | $212.00 |
| Mark Finn | $500.00 |
| // Moved to https://github.com/soffes/Mixpanel |
| // | |
| // NSRange.swift | |
| // MarkdownKit | |
| // | |
| // Created by Sam Soffes on 12/23/14. | |
| // Copyright (c) 2014 Nothing Magical Inc. All rights reserved. | |
| // | |
| import Foundation |
| // | |
| // CommandClickGestureRecognizer.swift | |
| // Whiskey | |
| // | |
| // Created by Sam Soffes on 12/7/14. | |
| // Copyright (c) 2014 Nothing Magical Inc. All rights reserved. | |
| // | |
| import Cocoa |
| source 'https://rubygems.org' | |
| ruby '2.1.2' | |
| gem 'rails', '4.1.6' | |
| gem 'rails-i18n', github: 'svenfuchs/rails-i18n', branch: 'master' | |
| gem 'puma' | |
| gem 'pg' |