test gist.io
This file contains hidden or 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
| test |
This file contains hidden or 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
| digraph ninja { | |
| sw1 [shape=box]; | |
| sw2 [shape=box]; | |
| tp1 -> sw1; | |
| tp2 -> sw1; | |
| tp3 -> sw1; | |
| tp4 -> sw1; | |
| tp60 -> spine | |
| {rank=same; tp60 tp1} | |
| tp10 -> sw2; |
This file contains hidden or 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
| sshd |
This file contains hidden or 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
| git remote add origin https://github.com/aletessier/go-cog.git | |
| git push -u origin master | |
| compose: | |
| wiki: | |
| image: tools/mediawiki | |
| redmine: | |
| image: sameersbn/redmine:3.2.0-5 | |
| links: | |
| - redminedb:postgresql |
This file contains hidden or 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" | |
| "github.com/goji/httpauth" | |
| "github.com/gorilla/handlers" | |
| "net/http" | |
| "os" | |
| ) |
This file contains hidden or 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
| # docker pull drone/drone :( | |
| Using default tag: latest | |
| latest: Pulling from drone/drone | |
| a3ed95caeb02: Extracting [==================================================>] 32 B/32 B | |
| 802d894958a2: Download complete | |
| 1402adf08530: Download complete | |
| 1dec9b9ba29f: Download complete | |
| failed to register layer: ApplyLayer exit status 2 stdout: stderr: runtime/cgo: pthread_create failed: Resource temporarily unavailable | |
| SIGABRT: abort |
This file contains hidden or 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" | |
| "io" | |
| "io/ioutil" | |
| "net" | |
| "os" | |
| "strings" |