Skip to content

Instantly share code, notes, and snippets.

@AndrewWDeane
AndrewWDeane / gist:7344659
Created November 6, 2013 21:46
Dynamic Input Channels
package main
import (
"fmt"
"math"
"time"
)
func main() {
producerA := producer(1)
@AndrewWDeane
AndrewWDeane / bullhorn_eg_price_matching
Created September 30, 2013 15:46
Order / Price matching with bullhorn
package main
import (
"bullhorn"
"fmt"
"math/rand"
"runtime"
"time"
)