I hereby claim:
- I am lukasender on github.
- I am lukasender (https://keybase.io/lukasender) on keybase.
- I have a public key ASC--2FYdwrR6g5qInaghRpdFzgsKdw4HEeUeelDpCcaUgo
To claim this, I am signing this object:
| WEBVTT | |
| 00:01.000 --> 00:10.000 | |
| Never drink disinfectants. | |
| 00:11.000 --> 00:13.000 | |
| <v Roger Bingham>We are in New York City | |
| 00:13.000 --> 00:16.000 | |
| <v Roger Bingham>We’re actually at the Lucern Hotel, just down the street |
| function killSound() { | |
| # log coreaudiod process stats | |
| ps aux | grep -e '^_coreaudiod.*/usr/sbin/coreaudiod$' | |
| # grab the coreaudiod pid, and kill it. | |
| sudo kill -9 $(ps aux | grep -e '^_coreaudiod.*/usr/sbin/coreaudiod$' | awk '{print $2}') | |
| # wait until restarted | |
| sleep 5 | |
| # log coreaudiod process stats again: verify process ID has changed |
I hereby claim:
To claim this, I am signing this object:
| # Router example: | |
| get "/", Redirector, external: "http://other-domain/" | |
| # Test case: | |
| test "route redirected to external route without path/query" do | |
| conn = call(Router, :get, "/") | |
| assert_redirected_to(conn, "http://other-domain/") |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| mkdir -p ~/.buildout/{cache,eggs} | |
| cat << EOF > ~/.buildout/default.cfg | |
| [buildout] | |
| eggs-directory = /Users/$(whoami)/.buildout/eggs | |
| download-cache = /Users/$(whoami)/.buildout/cache | |
| index = http://pypi.python.org/simple | |
| EOF |
| { | |
| "json": "+", | |
| "python": "=", | |
| "uber-awesome": true | |
| } |
| echo '{ "json": "+", "python": "=", "uber-awesome": true }' | python -mjson.tool |
| { "json": "is", "pretty": "awesome" } |
| curl -v -H "Accept: application/json" -X GET -d http://localhost/api/app |