Skip to content

Instantly share code, notes, and snippets.

=== 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

Keybase proof

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:

foo bar baz

#!/bin/bash
BRANCH="${bamboo.repository.branch.name}"
case $BRANCH in
master|develop|release/*)
echo "PUBLISH"
exec ./scripts/publish.sh
;;
*)
echo "VERIFY"
@ericanderson
ericanderson / NewMachineSetup.md
Last active December 26, 2015 19:58
New machine setup
  1. Turn on FDE
  2. Generate SSH key
  3. Clone boxen repo
  4. Run boxen
  5. Download Mac App Store apps
  6. Install DropBox
  7. Install GPGTools
  8. Install 1Password
  9. Install Sublime Text 3
  10. Install Package Control
@ericanderson
ericanderson / README.md
Last active December 21, 2015 04:29
Many ways to submit a form...

This gist demonstrates that you need a lot of special handlers for form submission...

@ericanderson
ericanderson / index.html
Last active December 21, 2015 04:29
Demonstrates preventDefault vs stopPropagation
<html>
<head>
<script src="//code.jquery.com/jquery-1.10.1.min.js"></script>
</head>
<body>
<form id="preventDefault">
<button>preventDefault</button>
</form>
@ericanderson
ericanderson / index.html
Last active December 10, 2015 17:28
Starting point for bl.ocks.org pages.
<!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