Skip to content

Instantly share code, notes, and snippets.

View Furnival's full-sized avatar

Lawrence Furnival Furnival

View GitHub Profile
@staltz
staltz / introrx.md
Last active June 15, 2024 12:24
The introduction to Reactive Programming you've been missing
@preble
preble / RandomAppDelegate.swift
Last active August 29, 2015 14:02
Random app in Swift
import Cocoa
class AppDelegate: NSObject, NSApplicationDelegate {
@IBOutlet var window: NSWindow
@IBOutlet var label: NSTextField
func applicationDidFinishLaunching(aNotification: NSNotification?) {
// Insert code here to initialize your application
}