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
@interface NSObject (Debounce) | |
- (void)debounce:(SEL)action delay:(NSTimeInterval)delay; | |
@end |
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
private enum ListNode<Element> { | |
case End | |
indirect case Node(Element, next: ListNode<Element>) | |
func cons(x: Element) -> ListNode<Element> { | |
return .Node(x, next: self) | |
} | |
} | |
public struct ListIndex<Element> { |
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
protocol NonemptyCollection: Collection { | |
var first: Iterator.Element { get } | |
} | |
enum NonemptyIndex<Base: Collection>: Comparable { | |
case head | |
case tail(Base.Index) | |
static func ==(lhs: NonemptyIndex, rhs: NonemptyIndex) -> Bool { | |
switch (lhs,rhs) { |
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 Darwin | |
extension sockaddr_storage { | |
/// Calls a closure with traditional BSD Sockets address parameters. | |
/// | |
/// This is used to call BSD Sockets routines like `connect`, which accept their | |
/// address as an `sa` and `saLen` pair. For example: | |
/// | |
/// let ss: sockaddr_storage = … |
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 Foundation | |
struct IntrospectionType<T> { | |
let classType: Bool | |
let structType: Bool | |
let introspectionType: T | |
init(_ introspectionType: T) { | |
self.introspectionType = introspectionType |
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
enum Maybe<T> { | |
case Just(T) | |
case Nothing | |
} | |
extension Maybe { | |
var isJust : Bool { | |
guard case .Just = self else { return false } | |
return true | |
} |
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
#include <assert.h> | |
#include <stdbool.h> | |
#include <sys/types.h> | |
#include <unistd.h> | |
#include <sys/sysctl.h> | |
static bool AmIBeingDebugged(void) | |
// Returns true if the current process is being debugged (either | |
// running under the debugger or has a debugger attached post facto). | |
{ |
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/UIKit.h> | |
@protocol LOLDelegate | |
@end | |
@interface LOLClass : NSObject <LOLDelegate> | |
@property (nonatomic) id<LOLDelegate> strongDelegate; | |
@end |
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 <Cocoa/Cocoa.h> | |
#import <Foundation/Foundation.h> | |
#import <XCTest/XCTest.h> | |
@interface NSDecimalNumberTests : XCTestCase | |
@end | |
@implementation DecimalTests |
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
while true ; do sleep 15 && echo `date`‘ Capturing screenshot…’ && screencapture -C -m -t jpg -x -f cap.`date +%s`.jpg ; done |