I hereby claim:
- I am mflint on github.
- I am flint (https://keybase.io/flint) on keybase.
- I have a public key whose fingerprint is 7159 7967 0976 28FB 3958 0A2D A1FD 567C 2016 837D
To claim this, I am signing this object:
class DeparturesViewController: UIViewController, ViewController { | |
private var viewModel: DeparturesViewModel! | |
func accept(_ viewModel: ViewModel) { | |
self.viewModel = viewModel as? DeparturesViewModel | |
} | |
} |
import Foundation | |
extension String { | |
class HtmlComponent { | |
var parent: HtmlComponent? | |
var children = [HtmlComponent]() | |
init(parent: HtmlComponent? = nil) { | |
self.parent = parent | |
} |
//: Playground - noun: a place where people can play | |
import Foundation | |
/** | |
This func does the fnord. | |
- parameters: | |
- foo: The foo. | |
- bar: The bar. | |
- returns: A return value. |
ignorecase on | |
defsilence on | |
defmonitor on | |
hardstatus on | |
hardstatus alwayslastline | |
hardstatus string "%{.bW} %H %-w%{.rW}%n %t%{-}%+w %=%{..Y} %d/%m %c " | |
startup_message off |
//: Playground - noun: a place where people can play | |
import UIKit | |
import XCTest | |
extension UIColor { | |
private struct Best { | |
var color: (color: UIColor, name: String) | |
var distance: CGFloat | |
} |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# this is the name of the problematic lib | |
FRAMEWORK=ActivityX.framework | |
LIB=ActivityX | |
# these are the duplicate symbols | |
SYMBOLS="AFURLRequestSerialization.o AFHTTPRequestOperationManager.o AFURLSessionManager.o" | |
# the architectures in the lib |
package org.tthew.core; | |
import java.util.ArrayDeque; | |
import java.util.Queue; | |
public final class ThreadPool | |
{ | |
public interface IThreadPool | |
{ | |
void submitJob(final IJob job); |
#import "SlidesToLeftOnDeleteTableViewCell.h" | |
@interface SlidesToLeftOnDeleteTableViewCell () | |
@property(nonatomic, assign) CGFloat deleteConfirmationShift; | |
@end | |
@implementation SlidesToLeftOnDeleteTableViewCell | |
- (void)prepareForReuse { | |
[super prepareForReuse]; |
<?php | |
/* | |
* This finds all jpegs in a directory ($sourcedirectory) and creates | |
* an advert for each one. It will: | |
* - resize | |
* - convert to greyscale | |
* - add a textbox at the bottom with a header and multiple lines of | |
* smaller texts, supplied as two arguments on the command line. The | |
* second argument may contain \n to create line breaks. | |
*/ |