Skip to content

Instantly share code, notes, and snippets.

@AnvilStriker
AnvilStriker / bzip2_try.go
Last active November 1, 2016 04:07
Compressing with github.com/larzconwell/bzip2, decompressing with compress/bzip2 (Go std lib). One of them is not right, or I'm doing something wrong.
package main
import (
"bytes"
bzip2r "compress/bzip2"
"fmt"
"io"
"net/http"
"github.com/larzconwell/bzip2"