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
FROM golang:1.5rc1 | |
MAINTAINER Derek Collison <[email protected]> | |
ADD . /go/src/github.com/nats-io/gnatsd | |
WORKDIR /go/src/github.com/nats-io/gnatsd | |
RUN go get ./... | |
RUN CGO_ENABLED=0 go install -v -a -tags netgo -installsuffix netgo -ldflags "-s -w -X github.com/nats-io/gnatsd/version.GITCOMMIT `git rev-parse --short HEAD`" |
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
goroutine 53747 [IO wait, 15 minutes]: | |
net.runtime_pollWait(0x7ff46db9a2d8, 0x72, 0xc820010130) | |
/usr/local/go/src/runtime/netpoll.go:157 +0x60 | |
net.(*pollDesc).Wait(0xc82b92a0d0, 0x72, 0x0, 0x0) | |
/usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a | |
net.(*pollDesc).WaitRead(0xc82b92a0d0, 0x0, 0x0) | |
/usr/local/go/src/net/fd_poll_runtime.go:78 +0x36 | |
net.(*netFD).Read(0xc82b92a070, 0xc820ba9000, 0x1000, 0x1000, 0x0, 0x7ff472d82050, 0xc820010130) | |
/usr/local/go/src/net/fd_unix.go:232 +0x23a | |
net.(*conn).Read(0xc820aee470, 0xc820ba9000, 0x1000, 0x1000, 0x0, 0x0, 0x0) |
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
% PICINS.STY --- Style File zum Einbinden von Bildern | |
% Autor: J. Bleser, E. Lang | |
% Hochschulrechenzentrum | |
% Technische Hochschule Darmstadt | |
% !!! Dieses Style-File ist urheberrechtlich geschuetzt !!! | |
% !!! Aenderungen nur mit Zustimmung der Autoren !!! | |
\message{Option `picins' Version 3.0 Sep. 1992, TH Darmstadt/HRZ} | |
\newbox\@BILD% | |
\newbox\@TEXT% | |
\newdimen\d@breite% |
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
{ | |
"asset": { | |
"id": "a224a8852b208eb70fee2c78", | |
"published_at": null, | |
"description": "It takes a certain confidence as a writer to open your book with the destruction of the moon and then never bother mentioning how or why it happened. It also takes confidence to interrupt your novel two-thirds of the way through with the words "Five Thousand Years Later" and to trust your readers to keep up.", | |
"hash_id": "a224a8852b208eb70fee2c7883d124a8", | |
"body": "It takes a certain confidence as a writer to open your book with the destruction of the moon and then never bother mentioning how or why it happened. It also takes confidence to interrupt your novel two-thirds of the way through with the words "Five Thousand Years Later" and to trust your readers to keep up.", | |
"author": {}, | |
"oembed": { | |
"url": "http://www.winnipegfreepress.com/arts-and-life/entertainment/books/ambitious-sci-fi-opus-highlights-authors-confidence-in-his-craft-deep-space-304800551.html" |
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
{ | |
"published_at": null, | |
"description": "It takes a certain confidence as a writer to open your book with the destruction of the moon and then never bother mentioning how or why it happened. It also takes confidence to interrupt your novel two-thirds of the way through with the words "Five Thousand Years Later" and to trust your readers to keep up.", | |
"hash_id": "a224a8852b208eb70fee2c7883d124a8", | |
"body": "It takes a certain confidence as a writer to open your book with the destruction of the moon and then never bother mentioning how or why it happened. It also takes confidence to interrupt your novel two-thirds of the way through with the words "Five Thousand Years Later" and to trust your readers to keep up.", | |
"author": {}, | |
"context": "Testing 123; app extension", | |
"tags": null, | |
"oembed": { | |
"url": "http://www.winnipegfreepress.com/arts-and-life/entertainment/books/ambitious-sci-fi-opus-highlights-authors-confidence-in-his-craft-deep-space-304800551.html" |
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
Message from VCC-compiler: | |
Expected ID got '"true"' | |
(program line 285), at | |
(input Line 431 Pos 34) | |
set beresp.cacheable = "true"; | |
---------------------------------######- | |
Running VCC-compiler failed, exit 1VCL compilation failed |
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
WITH RECURSIVE cte (id, title, path, parent_id, depth) AS ( | |
SELECT | |
id, | |
title, | |
array[id] as path, | |
parent_id, | |
1 AS depth | |
FROM assets | |
WHERE parent_id IS NULL | |
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
// PARSING ARRAYS | |
// SEE http://www.postgresql.org/docs/9.1/static/arrays.html#ARRAYS-IO | |
// Arrays are output within {} and a delimiter, which is a comma for most | |
// postgres types (; for box) | |
// | |
// Individual values are surrounded by quotes: | |
// The array output routine will put double quotes around element values if | |
// they are empty strings, contain curly braces, delimiter characters, | |
// double quotes, backslashes, or white space, or match the word NULL. | |
// Double quotes and backslashes embedded in element values will be |
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
CREATE TABLE assets ( | |
id bigint DEFAULT nextval('asset_id_seq'::regclass) NOT NULL, | |
title varchar(256), | |
image TABLE ( | |
url varchar(256), | |
width integer, | |
height integer | |
) | |
); |
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
Started POST "/sites/54de223bec798f1f2f000004/apps/54de223bec798f1f2f000005/build_complete_callback?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoiNTRkZDJkOTM3NGM3OGQzMzkyNTcxMTBhIn0.YWITPFmXuMSAp8q16YhMk_EVuD7otVK1ca04XPC-2hs" from 192.168.1.121:63510 | |
11:11:46 app | 2015/02/13 11:11:46 INFO Recording err runtime error: index out of range | |
11:11:46 app | 2015/02/13 11:11:46 INFO [corban.local/pLgo4L6N8w-000092] panic: runtime error: index out of range | |
11:11:46 app | /Users/corban/Projects/go/src/github.com/zenazn/goji/web/middleware/recoverer.go:24 (0x24f5ac) | |
func.005: debug.PrintStack() | |
/usr/local/Cellar/go/1.4/libexec/src/runtime/asm_amd64.s:401 (0x3cb25) | |
call16: CALLFN(·call16, 16) | |
/usr/local/Cellar/go/1.4/libexec/src/runtime/panic.go:387 (0x14668) | |
gopanic: reflectcall(unsafe.Pointer(d.fn), deferArgs(d), uint32(d.siz), uint32(d.siz)) | |
/Users/corban/Projects/go/src/github.com/tobi/airbrake-go/airbrake.go:201 (0x4b25bd) |