This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bytes" | |
"fmt" | |
"github.com/codegangsta/martini" | |
"github.com/rainycape/magick" | |
"io/ioutil" | |
"log" | |
"net/http" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bytes" | |
"fmt" | |
"github.com/codegangsta/martini" | |
"github.com/rainycape/magick" | |
"io/ioutil" | |
"log" | |
"net/http" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bytes" | |
"fmt" | |
"github.com/rainycape/magick" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"runtime" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Imagemagick < Formula | |
homepage 'http://www.imagemagick.org' | |
# upstream's stable tarballs tend to disappear, so we provide our own mirror | |
# Tarball and checksum from: http://www.imagemagick.org/download | |
url 'http://downloads.sf.net/project/machomebrew/mirror/ImageMagick-6.8.7-7.tar.bz2' | |
sha256 '4d8b0889d78cca2f1501b5f66f61c5efcd2f585a03002f2a7b407c11808e5e28' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ID TYPE ITEMS OVRFLW | |
======== ========== ====== ====== | |
0 meta 0 | |
1 meta 0 | |
2 freelist 0 | |
3 buckets 1 | |
4 leaf 4 78 | |
83 leaf 4 104 | |
188 unknown<3100> 36340 2017852872 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"errors" | |
"time" | |
"github.com/garyburd/redigo/redis" | |
) | |
var pool *redis.Pool = &redis.Pool{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"testing" | |
. "github.com/smartystreets/goconvey/convey" | |
) | |
var ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ID TYPE ITEMS OVRFLW | |
======== ========== ====== ====== | |
0 meta 0 | |
1 meta 0 | |
2 freelist 3 | |
3 leaf 1 | |
4 leaf 4 191 | |
196 leaf 5018 4201016681 |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ID TYPE ITEMS OVRFLW | |
======== ========== ====== ====== | |
0 meta 0 | |
1 meta 0 | |
2 free | |
3 free | |
4 free | |
5 free | |
6 free | |
7 free |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stdlog.SetOutput(func() io.Writer { | |
return func(p []byte) (n int, err error) { | |
n = len(p) | |
anotherlog.Info("%s", p) | |
return | |
} | |
}()) |
OlderNewer