Skip to content

Instantly share code, notes, and snippets.

@darth10
darth10 / chords_with_array.rb
Last active December 13, 2015 20:08
chordy gists
play [-1, -1, 0, 0, 2]
##
# e [----]
# b [----]
# G [--0-]
# D [--0-]
# A [--2-]
# E [----]
play [4]
@darth10
darth10 / FibonacciSeq.cs
Last active December 11, 2015 18:58
Asinine LazyList in C#
class FibonacciPair<T> : Tuple<T, T>
{
public T A { get; private set; }
public T B { get; private set; }
public FibonacciPair(T a, T b) : base(a, b)
{
A = a;
B = b;
}