Skip to content

Instantly share code, notes, and snippets.

View dblooman's full-sized avatar

David Blooman dblooman

View GitHub Profile
@dblooman
dblooman / cleanup.rb
Created October 31, 2015 17:05
ELB Cleanup script
require 'json'
response = `aws ec2 describe-volumes --region eu-west-1`
parsed_response = JSON.parse response
parsed_response["Volumes"].each do |vol|
if vol["State"] == "available"
`aws ec2 delete-volume --volume-id #{vol["VolumeId"]} --region eu-west-1`
brew_install_or_upgrade 'android-sdk'
brew_install_or_upgrade 'atlassian-plugin-sdk'
brew_install_or_upgrade 'autoconf'
brew_install_or_upgrade 'automake'
brew_install_or_upgrade 'bash-completion'
brew_install_or_upgrade 'boost'
brew_install_or_upgrade 'brew-cask'
brew_install_or_upgrade 'c-ares'
brew_install_or_upgrade 'chromedriver'
brew_install_or_upgrade 'cmake'
package logger
import (
"net/http"
log "github.com/Sirupsen/logrus"
)
func Log(inner http.Handler, name string) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
@dblooman
dblooman / htop.txt
Last active August 29, 2015 14:27 — forked from stevenjack/htop.txt
curl -L http://pkgs.repoforge.org/htop/htop-1.0.2-1.el6.rf.x86_64.rpm -o /tmp/test.rpm && sudo rpm -i /tmp/test.rpm && htop
normal = lambda { |x| x + 1 }
stabby = ->(x) { x + 1 }
normal.(4)
stabby.(4)
@dblooman
dblooman / curl.sh
Last active August 29, 2015 14:18
Install CURL on OSX
cd ..
wget http://curl.haxx.se/download/curl-7.41.0.tar.gz
tar -xvf curl-7.41.0.tar.gz
cd curl-7.41.0
./configure
make
make install
# Welcome to the InfluxDB configuration file.
# If hostname (on the OS) doesn't return a name that can be resolved by the other
# systems in the cluster, you'll have to set the hostname to an IP or something
# that can be resolved here.
# hostname = ""
bind-address = "0.0.0.0"
[logging]
#! /usr/bin/env bash
### BEGIN INIT INFO
# Provides: influxdb
# Required-Start: $all
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start influxdb at boot time
### END INIT INFO
#!/bin/bash
echo "stopping elasticsearch"
docker kill bbcnews-elasticsearch >/dev/null 2>&1
docker rm bbcnews-elasticsearch >/dev/null 2>&1
echo "stopping carbon"
docker kill bbcnews-carbon >/dev/null 2>&1
docker rm bbcnews-carbon >/dev/null 2>&1
require 'sinatra'
require 'statsd'
$statsd = Statsd.new '192.168.59.103', 8125
get '/' do
$statsd.increment 'visits'
"Hello, world"
end