I hereby claim:
- I am ericanderson on github.
- I am ericlanderson (https://keybase.io/ericlanderson) on keybase.
- I have a public key ASBdYmO0jOwOlKLD-abke0EVO9_tcz8KMjWvQpkweD52Rgo
To claim this, I am signing this object:
=== printSourceFileOrBundle: jsFilePath=/Volumes/git/oss/test-case-simple-ts-cycle/lib/src/a.d.ts sourceMapFilePath=/Volumes/git/oss/test-case-simple-ts-cycle/lib/src/a.d.ts.map sourceFileOrBundle=[object Object] | |
=== printSourceFileOrBundle: jsFilePath=/Volumes/git/oss/test-case-simple-ts-cycle/lib/src/c.d.ts sourceMapFilePath=/Volumes/git/oss/test-case-simple-ts-cycle/lib/src/c.d.ts.map sourceFileOrBundle=[object Object] | |
=== printSourceFileOrBundle: jsFilePath=/Volumes/git/oss/test-case-simple-ts-cycle/lib/src/b.d.ts sourceMapFilePath=/Volumes/git/oss/test-case-simple-ts-cycle/lib/src/b.d.ts.map sourceFileOrBundle=[object Object] | |
=== printSourceFileOrBundle: jsFilePath=/Volumes/git/oss/test-case-simple-ts-cycle/lib/src/c.js sourceMapFilePath=/Volumes/git/oss/test-case-simple-ts-cycle/lib/src/c.js.map sourceFileOrBundle=[object Object] | |
=== printSourceFileOrBundle: jsFilePath=/Volumes/git/oss/test-case-simple-ts-cycle/lib/src/c.d.ts sourceMapFilePath=/Volumes/git/oss/test-case-simple-ts-cycle/lib/src/c.d.ts.ma |
I hereby claim:
To claim this, I am signing this object:
foo bar baz
#!/bin/bash | |
BRANCH="${bamboo.repository.branch.name}" | |
case $BRANCH in | |
master|develop|release/*) | |
echo "PUBLISH" | |
exec ./scripts/publish.sh | |
;; | |
*) | |
echo "VERIFY" |
boxen
This gist demonstrates that you need a lot of special handlers for form submission...
<html> | |
<head> | |
<script src="//code.jquery.com/jquery-1.10.1.min.js"></script> | |
</head> | |
<body> | |
<form id="preventDefault"> | |
<button>preventDefault</button> | |
</form> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Example Project</title> | |
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap.no-icons.min.css" rel="stylesheet"> | |
<link href="//netdna.bootstrapcdn.com/font-awesome/3.0/css/font-awesome.css" rel="stylesheet"> | |
</head> | |
<body> | |
Test | |
</body> |
$ -> | |
svg = d3.select("body").insert("svg:svg", "body") |
#!/bin/bash | |
# Reset | |
Color_Off='\033[0m' # Text Reset | |
# Regular Colors | |
Black='\033[0;30m' # Black | |
Red='\033[0;31m' # Red | |
Green='\033[0;32m' # Green | |
Yellow='\033[0;33m' # Yellow |