View file1.txt
This is a test v3 |
View child-app-gitlab.rb
#!/usr/bin/env ruby | |
require 'json' | |
require 'restclient' | |
auth_token = ENV["AUTH_TOKEN"] | |
api_url = ENV["SCALINGO_API_URL"] || "https://api.scalingo.com/v1" | |
auth_url = ENV["SCALINGO_AUTH_URL"] || "https://auth.scalingo.com/v1" | |
app = ENV["APP"] |
View main.go
package main | |
import ( | |
"fmt" | |
"syscall" | |
"unsafe" | |
) | |
const cursorColumn = false |
View Gemfile
source 'https://rubygems.org' | |
gem 'aws-s3' |
View gen_repositories_btrfs.go
package main | |
// docker images --no-trunc | awk '{print $1 " " $2 " " $3}' > images_data | |
// go run gen_repositories_btrfs.go images_data | |
import ( | |
"bufio" | |
"bytes" | |
"encoding/json" | |
"fmt" |
View Client output
└> go run pong.go | |
[Client] Received 4 bytes, 'ping' | |
[Client] Sent 'ping' | |
[Client] Received 4 bytes, 'ping' | |
[Client] Sent 'ping' | |
... | |
└> go run ./pong.go | |
[Client] Received 4 bytes, 'ping' | |
[Client] Sent 'ping' | |
[Client] Received 4 bytes, 'ping' |
View gist:7379686
// # docker inspect 780cb5846872 | |
[{ | |
"ID": "780cb58468724809b994dcd862c62fa7a329424072ef9082a4e5a4bbdf6836d7", | |
"Created": "2013-11-09T00:58:43.833851609+01:00", | |
"Path": "/start", | |
"Args": [ | |
"web", | |
"bundle", | |
"exec", |
View hijackhttps.go
package main | |
import ( | |
"crypto/tls" | |
"fmt" | |
"net" | |
"net/http" | |
"net/http/httputil" | |
"time" | |
) |