- Amazon (https://aws.amazon.com/free/)
- DigitalOcean (https://www.digitalocean.com/join/)
- JMeter Server (https://hub.docker.com/r/hhcordero/docker-jmeter-server)
- JMeter Client Non-gui (https://hub.docker.com/r/hhcordero/docker-jmeter-client)
| source "https://rubygems.org" | |
| gem 'puma' | |
| gem 'sinatra' |
| # Example Dockerfile | |
| FROM hello-world |
| # Set variables in .bashrc file | |
| # don't forget to change your path correctly! | |
| export GOPATH=$HOME/golang | |
| export GOROOT=/usr/local/opt/go/libexec | |
| export PATH=$PATH:$GOPATH/bin | |
| export PATH=$PATH:$GOROOT/bin |
| #!/bin/bash | |
| # All the configuration settings described below were found on the internet, | |
| # and this script just automates it | |
| # Generating locales | |
| sudo locale-gen en_US en_US.UTF-8 pt_BR pt_BR.UTF-8 es_ES es_ES.UTF-8 | |
| # Installing base packages | |
| sudo apt-get update |
| #!/bin/ruby | |
| require 'json' | |
| require 'time' | |
| require 'syslog' | |
| class Snapshot | |
| def initialize() | |
| @format = 'json' |
| #!/bin/bash | |
| # ssh-multi | |
| # D.Kovalov | |
| # Based on http://linuxpixies.blogspot.jp/2011/06/tmux-copy-mode-and-how-to-control.html | |
| # a script to ssh multiple servers over multiple tmux panes | |
| starttmux() { | |
| if [ -z "$HOSTS" ]; then |
| #!/bin/bash | |
| description=" | |
| fence_ec2 is an I/O Fencing agent which can be used with Amazon EC2 instances. | |
| In order to function, the agent needs the private key and cert used by the Amazon EC2 API. | |
| API functions used by this agent: | |
| - ec2-describe-tags | |
| - ec2-describe-instances | |
| - ec2-stop-instances |
| #!/bin/bash | |
| ############################################################################### | |
| # CONFIG | |
| # AWS config | |
| export AWS_SECRET_KEY="XXXX" | |
| export AWS_ACCESS_KEY="XXXX" | |
| export PATH=$PATH:/usr/local/aws/ec2/bin | |
| export EC2_HOME=/usr/local/aws/ec2/ |
| (* | |
| Jered Benoit | |
| jeredb.com | |
| Omnifocus -> Day One Daily Completed Task Log | |
| Based upon [Version 1.0] [1] of [OmniFocus - Weekly Project Report Generator] [2] | |
| Originally Authored by Chris Brogan and Rob Trew | |
| February 5, 2012 |