Skip to content

Instantly share code, notes, and snippets.

@marksands
marksands / NSObject+Debounce.h
Created February 1, 2017 19:20 — forked from berzniz/NSObject+Debounce.h
Debounce method for Objective C
@interface NSObject (Debounce)
- (void)debounce:(SEL)action delay:(NSTimeInterval)delay;
@end
@marksands
marksands / RBTree.swift
Created January 17, 2017 15:27 — forked from airspeedswift/RBTree.swift
red black tree updated for 2.1b2
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> {
@marksands
marksands / NonemptyCollection.swift
Created January 17, 2017 15:27 — forked from airspeedswift/NonemptyCollection.swift
Non-empty collection in Swift
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) {
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 = …
@marksands
marksands / IntrospectionType.swift
Last active February 24, 2016 02:52
Type Introspection Experimenting
import UIKit
import Foundation
struct IntrospectionType<T> {
let classType: Bool
let structType: Bool
let introspectionType: T
init(_ introspectionType: T) {
self.introspectionType = introspectionType
@marksands
marksands / fizzbuzz.swift
Last active February 11, 2016 21:15
Learning Swift through FizzBuzz
enum Maybe<T> {
case Just(T)
case Nothing
}
extension Maybe {
var isJust : Bool {
guard case .Just = self else { return false }
return true
}
@marksands
marksands / am_i_debugged.m
Last active August 29, 2015 14:16
Block Debugger
#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).
{
@marksands
marksands / LOLClass.h
Created February 10, 2015 17:31
Testing against strong delegates
#import <UIkit/UIKit.h>
@protocol LOLDelegate
@end
@interface LOLClass : NSObject <LOLDelegate>
@property (nonatomic) id<LOLDelegate> strongDelegate;
@end
#import <Cocoa/Cocoa.h>
#import <Foundation/Foundation.h>
#import <XCTest/XCTest.h>
@interface NSDecimalNumberTests : XCTestCase
@end
@implementation DecimalTests
@marksands
marksands / timelapse.sh
Created September 6, 2014 04:17
Timelapse screen capture
while true ; do sleep 15 && echo `date`‘ Capturing screenshot…’ && screencapture -C -m -t jpg -x -f cap.`date +%s`.jpg ; done