I hereby claim:
- I am bripkens on github.
- I am bripkens (https://keybase.io/bripkens) on keybase.
- I have a public key ASCGdwOksdAn9dru7yap3-xQDLnpGll1pLrVRDDQEm5bOwo
To claim this, I am signing this object:
| #!/bin/bash | |
| set -eo pipefail | |
| FIRE_TV_IP="192.168.0.105" | |
| XBMX_APK="http://mirrors.xbmc.org/releases/android/arm/xbmc-13.2-Gotham-armeabi-v7a.apk" | |
| export PATH="$PATH:/Applications/Android\ Studio.app/sdk/platform-tools:/Applications/Android\ Studio.app/sdk/tools" | |
| adb kill-server |
| $ curl -X POST --header "Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0d2l0dGVyIjoiQmVuUmlwa2VucyIsImVtYWlsIjoiYmVuLnJpcGtlbnNAY29kZWNlbnRyaWMuZGUiLCJjb21wYW55IjoiY29kZWNlbnRyaWMgQUcifQ.7NnQqoNmh3UKl81cgyULwVrIpRiY7K-ABeeZBGpHbxI" https://auth0.com/challenges/devoxx -v | |
| * Hostname was NOT found in DNS cache | |
| * Trying 54.183.201.90... | |
| * Connected to auth0.com (54.183.201.90) port 443 (#0) | |
| * TLS 1.2 connection using TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 | |
| * Server certificate: *.auth0.com | |
| * Server certificate: EssentialSSL CA | |
| * Server certificate: COMODO Certification Authority | |
| > POST /challenges/devoxx HTTP/1.1 | |
| > User-Agent: curl/7.37.1 |
I hereby claim:
To claim this, I am signing this object:
| I, Ben Ripkens, have read and do accept the MuleSoft Contributor Agreement | |
| at http://www.mulesoft.org/legal/contributor-agreement.html | |
| Accepted on Thu May 22 2014 07:43:30 GMT+0200 (CEST) |
| mvn release:clean | |
| mvn release:prepare | |
| mvn release:perform | |
| # go to https://oss.sonatype.org/ -> Staging repositories -> close -> check verification status -> release |
| unfuck() { | |
| remote=$(git remote -v | head -n 1 | awk '{print($2)}') | |
| d=$(pwd) | |
| cd .. | |
| rm -rf $d | |
| git clone $remote | |
| } |
| (function(context) { | |
| 'use strict'; | |
| var Timer = Java.type('java.util.Timer'); | |
| var Phaser = Java.type('java.util.concurrent.Phaser'); | |
| var TimeUnit = Java.type('java.util.concurrent.TimeUnit'); | |
| var AsyncHttpClient = Java.type('com.ning.http.client.AsyncHttpClient'); | |
| var timer = new Timer('jsEventLoop', false); | |
| var phaser = new Phaser(); |
| <script src="http://cdnjs.cloudflare.com/ajax/libs/lodash.js/1.0.0-rc.3/lodash.js"></script> | |
| <table id="people"> | |
| <thead> | |
| <tr> | |
| <th>Id</th> | |
| <th>Name</th> | |
| <th>Email</th> | |
| <th>Occupation</th> | |
| </tr> | |
| </thead> |
| > "42" === 42 | |
| false | |
| > undefined === null | |
| false | |
| > 42 === 42.0 | |
| true |
| > "20" - 10 | |
| 10 | |
| > "20" + 10 | |
| 2010 | |
| > "42" == 42 | |
| true | |
| > undefined == null | |
| true | |
| > Number.MIN_VALUE + 1 == 1 | |
| true |