Skip to content

Instantly share code, notes, and snippets.

@alinuxsa
alinuxsa / socks5_proxy.go
Created November 23, 2020 05:01 — forked from felix021/socks5_proxy.go
Minimal socks5 proxy implementation in Golang
package main
import (
"encoding/binary"
"errors"
"fmt"
"io"
"net"
)
@alinuxsa
alinuxsa / go_sorting.go
Created July 5, 2019 06:08 — forked from dnutiu/go_sorting.go
How to sort custom structs in golang.
package main
import (
"fmt"
"sort"
)
type Student struct {
Name string
Grade int