Skip to content

Instantly share code, notes, and snippets.

View SpencerDawson's full-sized avatar

Spencer Dawson SpencerDawson

View GitHub Profile
@mbostock
mbostock / .block
Last active November 26, 2016 01:35
Prim’s Algorithm II
license: gpl-3.0
@krakjoe
krakjoe / pthreads.md
Last active August 30, 2023 18:30
pthreads.md

Multi-Threading in PHP with pthreads

A Brief Introduction to Multi-Threading in PHP

  • Foreword
  • Execution
  • Sharing
  • Synchronization
  • Pitfalls
@vmihailenco
vmihailenco / proxy.go
Created November 20, 2011 15:22
Simple TCP proxy in Golang
package main
import (
"bytes"
"encoding/hex"
"flag"
"fmt"
"io"
"log"
"net"