- no chance
- static core doesn't work due to ssl errors (probably cipher mismatch)
- building works fine once Qt4 is installed
Compiling leiningen.core.classpath | |
Compiling leiningen.core.eval | |
Compiling leiningen.core.main | |
Compiling leiningen.core.project | |
Compiling leiningen.core.ssl |
Verifying that +winks is my Bitcoin username. You can send me #bitcoin here: https://onename.io/winks |
... so I do not forget the next time I have to figure this stuff out. And perhaps to help other poor souls fiddling with v6/v4 xen setups in a Hetzner network environment.
You can basically follow along the Xen Project Beginners Guide.
Install Debian Wheezy via Hetzner's installimage
on the rescue system, the only important part about partitioning is that you have an LVM volume group named vg0
with enough space for your guests' disks.
#!/usr/bin/env ruby | |
exit unless ARGV.length > 0 | |
require 'github/markdown' | |
require 'tempfile' | |
t=Tempfile.new('gfm_foo') | |
t.write(GitHub::Markdown.render_gfm(File.read(ARGV[0]))) | |
t.rewind() | |
exec("/etc/alternatives/x-www-browser #{t.path}") | |
t.close() |
I hereby claim:
To claim this, I am signing this object:
class components::openresty::build ( | |
$version = '1.4.3.4', | |
$minor = 1 | |
) { | |
$tmpdir = "/root" | |
$targetdir = "/opt" | |
$outputdir = "/vagrant" | |
$ident = "ngx_openresty-${version}" | |
$filename = "${ident}.tar.gz" | |
$service = 'openresty' |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
# Create a self-signed cert | |
openssl req -x509 -batch -nodes -newkey rsa:2048 -keyout lumberjack.key -out lumberjack.crt | |
# Run a server | |
openssl s_server -accept 3333 -cert lumberjack.crt -key lumberjack.key | |
# Run a client |
#!/usr/bin/ruby | |
require 'webrick' | |
require 'json' | |
req = WEBrick::HTTPRequest.new(WEBrick::Config::HTTP) | |
req.parse(STDIN) | |
json_payload = JSON.parse(req.query['payload']) | |
branch = json_payload['ref'].split('/')[-1] |