I hereby claim:
- I am kimausloos on github.
- I am kimausloos (https://keybase.io/kimausloos) on keybase.
- I have a public key whose fingerprint is CECB EFDB B4FE 3A68 F297 8B0C 3BE1 56DE 81A2 0DB7
To claim this, I am signing this object:
| set -g set-clipboard on | |
| set-window-option -g automatic-rename | |
| # make tmux display things in 256 colors | |
| set -g default-terminal "screen-256color" | |
| # set scrollback history to 10000 (10k) | |
| set -g history-limit 10000 | |
| set -g prefix C-b |
| #!/bin/bash | |
| READLINK="readlink" | |
| if [[ "$OSTYPE" == "darwin"* ]]; then | |
| hash -d greadlink | |
| if ! [ -x "$(command -v greadlink)" ]; then | |
| echo "Please make sure to install homebrew and the homebrec coreutils package" | |
| exit 1 | |
| fi | |
| READLINK="greadlink" |
| --- | |
| - name: Initial kickstart | |
| hosts: localhost | |
| gather_facts: no | |
| tasks: | |
| - name: Install Nginx | |
| apt: pkg=nginx state=installed update_cache=true | |
| notify: | |
| - Start Nginx | |
| - name: Remove kickstart cronjob |
| #!/bin/bash | |
| #add-apt-repository ppa:ansible/ansible -y | |
| apt-get update | |
| apt -y install git ansible | |
| ansible-pull --accept-host-key -d /opt/terraform/local_kickstart/ -U https://gist.github.com/f50d0d8855bb35ec68e191a978581a5c.git -i localhost |
I hereby claim:
To claim this, I am signing this object:
| { | |
| "require": { | |
| "silex/silex": "~1.1" | |
| }, | |
| "extra": { | |
| "heroku": { | |
| "framework": "silex", | |
| "document-root": "web", | |
| "index-document": "index.php" | |
| } |
| ################################################################### | |
| # Communicating back to the chat rooms. These are exposed | |
| # as methods on the argument passed to callbacks from | |
| # robot.respond, robot.listen, etc. | |
| ################################################################### | |
| send: (envelope, strings...) -> | |
| @log "Sending message" | |
| channel = envelope.reply_to || envelope.room | |
| strings.forEach (str) => |
| <?php | |
| namespace Thanatos\Controller; | |
| class HelloController | |
| { | |
| public function helloAction($name) | |
| { | |
| return array( | |
| 'name' => $name, |
| 1) Install lastest XCode from App Store: | |
| 2) Install command line tools: | |
| xcode-select --install | |
| 3) Create Missing symlink | |
| sudo ln -s /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.9.xctoolchain | |
| 4) Replace in native/common/jk_map.c: | |
| <?php | |
| /* | |
| Note, this DIC is quick and dirty, you should use and extend a real DIC | |
| like Pimple (https://github.com/fabpot/pimple) | |
| */ | |
| class DicContainer implements \ArrayAccess { | |
| /** | |
| * @var array contains all DIC items |