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:
(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(); |
unfuck() { | |
remote=$(git remote -v | head -n 1 | awk '{print($2)}') | |
d=$(pwd) | |
cd .. | |
rm -rf $d | |
git clone $remote | |
} |
mvn release:clean | |
mvn release:prepare | |
mvn release:perform | |
# go to https://oss.sonatype.org/ -> Staging repositories -> close -> check verification status -> release |
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) |
I hereby claim:
To claim this, I am signing this object:
$ 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 |
#!/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 |
angular.module('scheduler.conferences', ['ui.router', 'expose-to-scope']) | |
.config(function($stateProvider) { | |
$stateProvider | |
.state('conferences', { | |
url: '/conferences', | |
directive: 'conferenceList', | |
resolve: { | |
conferences: function(ConferenceService) { |
1.) Aktuelle Version von Chrome installieren | |
Installer kann heruntergeladen werden unter: | |
https://www.google.com/intl/en/chrome/browser/ | |
2.) Chrome Erweiterung “Batarang” aus dem Chrome Web Store installieren | |
Die Erweiterung kann über den Chrome Web Store installiert werden: | |
https://chrome.google.com/webstore/detail/angularjs-batarang/ighdmehidhipcmcojjgiloacoafjmpfk?hl=en | |
3.) Aktuelle Version von Node.js und NPM installieren | |
Installer kann heruntergeladen werden unter: |
#!upstart | |
# put in /etc/init/homeAutomationBackend.conf | |
description "Home Automation Backend Server" | |
author "Ben Ripkens" | |
start on startup | |
stop on shutdown | |
respawn | |
script |