Skip to content

Instantly share code, notes, and snippets.

View kilink's full-sized avatar

Patrick Strawderman kilink

  • Netflix
  • San Francisco Bay Area
View GitHub Profile
@staltz
staltz / introrx.md
Last active July 4, 2024 06:24
The introduction to Reactive Programming you've been missing
@bitemyapp
bitemyapp / gist:8739525
Last active May 7, 2021 23:22
Learning Haskell
#!/usr/bin/env python
"""Merge sort a singly linked linear list."""
import random
from itertools import product
# Linked list is either empty or a value and a link to the next list
empty = None # empty list
class LL(object):
__slots__ = "value", "next"