I hereby claim:
- I am fluxrad on github.
- I am fluxrad (https://keybase.io/fluxrad) on keybase.
- I have a public key ASAqmZbGFe3T3u48LvrAf3_r8MIAmmFvzkC5KYfGmAfNGgo
To claim this, I am signing this object:
// ==UserScript== | |
// @name MR Unstagnator | |
// @namespace http://marginalrevolution.com/ | |
// @version 0.1 | |
// @description Make MR look better and more usable. | |
// @author Aaron Mills | |
// @match http*://marginalrevolution.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== |
[Scheme] | |
Name=One Dark | |
ColorForeground=#ABB2BF | |
ColorCursor=#ABB2BF | |
ColorBackground=#282C34 | |
ColorSelection=#3B4451 | |
ColorSelectionUseDefault=FALSE | |
ColorBold=#B9C0CB | |
ColorBoldUseDefault=FALSE | |
ColorPalette=#282C34;#E06C75;#98C379;#E5C07B;#61AFEF;#C678DD;#56B6C2;#ABB2BF;#3E4452;#BE5046;#98C379;#D19A66;#61AFEF;#C678DD;#56B6C2;#5C6370 |
#!/bin/bash | |
SLEEP_SECONDS=600 | |
while true; do | |
for i in `seq 1 3`; do | |
timeout 5 docker ps -q && break || echo "Docker daemon is not running. Rebooting" | |
if [[ $i -eq 3 ]]; then | |
reboot |
I hereby claim:
To claim this, I am signing this object:
exports.index = function(req, res) { | |
res.send('This is bar!'); | |
}; |
# Fix an EC2 instance's hostname. | |
echo "ip-$(echo $(curl -s http://169.254.169.254/latest/meta-data/local-ipv4 | tr '.' '-'))" | sudo tee /etc/hostname | sudo xargs hostname |
FROM ruby:2.1.3 | |
# works with ruby:2.1.2 | |
# run with `docker build -t test .` | |
RUN apt-get -y update -qq && apt-get -y install r-base-dev | |
RUN pry |
# Inspired by Deepak's setup here - https://gist.github.com/deepak/5925003 | |
FROM ubuntu:14.04 | |
RUN apt-get update -qq && apt-get install -y build-essential nodejs npm git curl mysql-client libmysqlclient-dev | |
RUN mkdir -p /my_awesome_social_media_app | |
# Install rbenv | |
RUN git clone https://github.com/sstephenson/rbenv.git /usr/local/rbenv | |
RUN echo '# rbenv setup' > /etc/profile.d/rbenv.sh |
#!/bin/bash | |
curl -o /etc/apt/sources.list.d/stackdriver.list http://repo.stackdriver.com/precise.list | |
curl --silent https://app.stackdriver.com/RPM-GPG-KEY-stackdriver |apt-key add - | |
apt-get update | |
apt-get install stackdriver-agent |
source 'https://rubygems.org' | |
gem 'netaddr' |