I hereby claim:
- I am mfelsche on github.
- I am mwahl (https://keybase.io/mwahl) on keybase.
- I have a public key ASC1D_9MBKNxz8Gppj1hK_POKBHOqefJTZK7pTjTBur0BQo
To claim this, I am signing this object:
diff --git a/plugins/crate-admin/_site/index.html b/plugins/crate-admin/_site/index.html.new | |
index 3b55c74..35f7cff 100644 | |
--- a/app/index.html | |
+++ b/app/index.html | |
@@ -96,5 +96,28 @@ | |
</div> | |
</div> | |
+ <!-- Begin Analytics--> | |
+ <!-- Google Analytics Start --> |
I hereby claim:
To claim this, I am signing this object:
function regExpMatch(url, pattern) { | |
try { return new RegExp(pattern).test(url); } catch(ex) { return false; } | |
} | |
function FindProxyForURL(url, host) { | |
// Important: replace 172.31 below with the proper prefix for your VPC subnet | |
if (shExpMatch(url, "*172.31.*")) return "SOCKS5 localhost:8157"; | |
if (shExpMatch(url, "*internal-jenkins-nuggad-*.eu-central-1.elb.amazonaws.com*")) return "SOCKS5 localhost:8157"; | |
if (shExpMatch(url, "*ec2*.amazonaws.com*")) return 'SOCKS5 localhost:8157'; | |
if (shExpMatch(url, "*.compute.internal*") || shExpMatch(url, "*://compute.internal*")) return 'SOCKS5 localhost:8157'; |
actor Main | |
new create(env: Env) => | |
let yep: Array[U32] = [1] | |
let nope: Array[U32] = [1, 2] |
type MyUnionType is (U32|I32|U8) | |
actor Main | |
new create(env: Env) => | |
let union_array: Array[MyUnionType] = [ | |
as MyUnionType: U32(1) | |
I32(-1) | |
] |
FROM ubuntu:xenial¬ | |
¬ | |
ENV LLVM_VERSION 3.9.1¬ | |
¬ | |
RUN apt-get update \¬ | |
&& apt-get install -y \¬ | |
apt-transport-https \¬ | |
g++ \¬ |
(program:scope | |
(package:scope | |
(module:scope | |
(use x "builtin" x) | |
(use x "ponytest" x) | |
(actor:scope | |
(id Main) | |
x | |
tag | |
(provides (nominal (id $2) (id TestList) x ref x x)) |
(class:scope | |
(id $1$0) | |
x | |
ref | |
(provides (nominal x (id Getter) x x x)) | |
(members | |
(fvar (id d) (nominal (id $0) (id Bool) x val x x) x) | |
(fvar (id c) (nominal (id $0) (id Bool) x val x x) x) | |
(fvar (id b) (nominal (id $0) (id Bool) x val x x) x) | |
(fvar (id a) (nominal (id $0) (id Bool) x val x x) x) |
use "net" | |
use "cli" | |
use "debug" | |
actor Main | |
new create(env: Env) => | |
try | |
let spec = CommandSpec.leaf("damn", "", [ | |
OptionSpec.string("addr", | |
"The host:port:name to be advertised to other clustering nodes." |
use "promises" | |
use "collections" | |
actor _Selector[A: Any #share] | |
var _completed: Bool = false | |
var _outstanding: USize | |
let _promise: Promise[A] | |
new create(promise: Promise[A], expected: USize) => | |
_promise = promise |