I hereby claim:
- I am kvadevack on github.
- I am kvadevack (https://keybase.io/kvadevack) on keybase.
- I have a public key ASAhCfOZPanBHiGj24xic3eHiGN3ILS25dKPIfq_bSxA9wo
To claim this, I am signing this object:
function FindProxyForURL(url, host) { | |
if ( | |
dnsDomainIs(host, ".sap") || | |
dnsDomainIs(host, ".sap.corp") || | |
dnsDomainIs(host, ".sap.ondemand.com")) { | |
return "SOCKS5 127.0.0.1:10001"; | |
} | |
return "DIRECT"; | |
} |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
'use strict'; | |
const AWS = require('aws-sdk'); | |
const codeBuild = new AWS.CodeBuild(); | |
const codeCommit = new AWS.CodeCommit(); | |
function listProjects() { | |
return new Promise((resolve, reject) => { | |
let projects = []; |
package main | |
import ( | |
"bufio" | |
"bytes" | |
"flag" | |
"io" | |
"log" | |
"os" | |
"strings" |
#!/usr/bin/env python -u | |
from __future__ import print_function | |
import os, sys, re, boto3 | |
route53 = boto3.client('route53') | |
iam = boto3.client('iam') | |
def zone_cmp(first, second): | |
return first['Name'].count('.') - second['Name'].count('.') |
time="2015-12-09T13:01:51.398751309Z" level=info msg="GET /v1.15/images/wowgroup/hello-world/json" | |
time="2015-12-09T13:01:51.398848536Z" level=error msg="Handler for GET /v1.15/images/wowgroup/hello-world/json returned error: No such image: wowgroup/hello-world" | |
time="2015-12-09T13:01:51.398869965Z" level=error msg="HTTP Error" err="No such image: wowgroup/hello-world" statusCode=404 | |
time="2015-12-09T13:01:51.408722333Z" level=info msg="GET /v1.15/images/wowgroup/hello-world/json" | |
time="2015-12-09T13:01:51.408851913Z" level=error msg="Handler for GET /v1.15/images/wowgroup/hello-world/json returned error: No such image: wowgroup/hello-world" | |
time="2015-12-09T13:01:51.408872650Z" level=error msg="HTTP Error" err="No such image: wowgroup/hello-world" statusCode=404 | |
time="2015-12-09T13:01:52.088161201Z" level=info msg="GET /v1.15/images/wowgroup/hello-world/json" | |
time="2015-12-09T13:01:52.088258529Z" level=error msg="Handler for GET /v1.15/images/wowgroup/hello-world/json returned error: No such image: wo |
#cloud-config | |
write_files: | |
- path: /var/lib/rancher/conf/hello-world.yml | |
permissions: "0600" | |
owner: root | |
content: | | |
hello-world: | |
image: wowgroup/hello-world | |
restart: always | |
labels: |
#!/usr/bin/env python | |
from __future__ import print_function | |
import sys | |
from string import zfill | |
from zipfile import ZipFile | |
def main(path, crc, *args): | |
with ZipFile(path, 'r') as zip: |
#!/usr/bin/env ruby | |
require 'erb' | |
Cluster = Struct.new(:name, :hosts) | |
class Host | |
attr_accessor :fqdn, :port, :user, :name, :proxy | |