Skip to content

Instantly share code, notes, and snippets.

View yjh0502's full-sized avatar

Jihyun Yu yjh0502

  • 5minlab
  • Seoul, South Korea
View GitHub Profile
@yjh0502
yjh0502 / main.go
Created December 30, 2014 12:59
OpenVPN TCP-to-UDP proxy
package main
import (
"flag"
"fmt"
"io"
"log"
"net"
)
@yjh0502
yjh0502 / test.erl
Created August 20, 2014 11:05
Simple erlang messaging benchmark
-module(test).
-compile([export_all]).
waitdown(0) -> ok;
waitdown(Count) ->
receive
{'DOWN', _, process, _, normal} ->
waitdown(Count-1)
end.