SSH into your EC2 instance. Run the following:
$ sudo yum install gcc This may return an "already installed" message. That's OK.
$ wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz && cd redis-stable && make
| git checkout develop | |
| git fetch | |
| git pull | |
| git checkout us_123_impl_foobar_feature | |
| git merge origin/develop # Creates a new commit on us_123_impl_foobar_feature, that contains all changes from develop | |
| git reset --soft origin/develop # Generates a set of staged changes | |
| git add -A | |
| git commit -m '[US-123] Adds Foobar' | |
| git checkout develop | |
| git merge us_123_impl_foobar_feature |
| 'use strict'; | |
| const buildMatcher = (cases) => (actual) => | |
| cases | |
| .find((cse) => cse.matches(actual)) | |
| .result(actual); | |
| const buildNextOn = (previousCases) => { | |
| var build = (matchesPred, result) => { | |
| const cases = previousCases.concat( |
| var define, require; | |
| (function() { | |
| var modules = {}; | |
| require = function(name) { | |
| return modules[name](); | |
| }; | |
| define = function(name, fn) { |
SSH into your EC2 instance. Run the following:
$ sudo yum install gcc This may return an "already installed" message. That's OK.
$ wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz && cd redis-stable && make
| /* | |
| * @desc: loads an external | |
| * HTML Knockout.js template | |
| * file, places it in the DOM, | |
| * and applies the KO bindings | |
| * | |
| * @param: tmplFile - the template | |
| * file | |
| * | |
| * @param: targetElem - the target |
| " make Esc happen without waiting for timeoutlen | |
| " fixes Powerline delay | |
| augroup FastEscape | |
| autocmd! | |
| au InsertEnter * set timeoutlen=0 | |
| au InsertLeave * set timeoutlen=1000 | |
| augroup END |
| #!/bin/bash | |
| cows[1]=beavis.zen | |
| cows[2]=bong | |
| cows[3]=bud-frogs | |
| cows[4]=bunny | |
| cows[5]=cheese | |
| cows[6]=cower | |
| cows[7]=daemon | |
| cows[8]=default |