Skip to content

Instantly share code, notes, and snippets.

View codatory's full-sized avatar

Alex Conner codatory

View GitHub Profile

Keybase proof

I hereby claim:

  • I am codatory on github.
  • I am codatory (https://keybase.io/codatory) on keybase.
  • I have a public key whose fingerprint is FE92 918C 33B4 94FB 2136 3385 B879 11C7 2F78 736F

To claim this, I am signing this object:

@codatory
codatory / results.txt
Created February 14, 2015 16:44
Bonnie++ on CloudAtCost
Version 1.96 ------Sequential Output------ --Sequential Input- --Random-
Concurrency 1 -Per Chr- --Block-- -Rewrite- -Per Chr- --Block-- --Seeks--
Machine Size K/sec %CP K/sec %CP K/sec %CP K/sec %CP K/sec %CP /sec %CP
debian 4G 552 97 4434 94 6716 2 2118 94 15592 1 323.5 11
Latency 100ms 3973ms 4490ms 28538us 3924ms 3731ms
Version 1.96 ------Sequential Create------ --------Random Create--------
debian -Create-- --Read--- -Delete-- -Create-- --Read--- -Delete--
files /sec %CP /sec %CP /sec %CP /sec %CP /sec %CP /sec %CP
16 10915 50 +++++ +++ 27479 61 17243 43 +++++ +++ 31461 55
Latency 30843us 937us 1072us 39026us 71us 1128us
#! /usr/local/env ruby
require "uri"
#####################
## ____ _ _
## / ___|___ _ __ ___| |_ __ _ _ __ | |_ ___
## | | / _ \| '_ \/ __| __/ _` | '_ \| __/ __|
## | |__| (_) | | | \__ \ || (_| | | | | |_\__ \
## \____\___/|_| |_|___/\__\__,_|_| |_|\__|___/
Tracing the route to lg.chi2-1.fdcservers.net (192.240.104.4)
VRF info: (vrf in name/id, vrf out name/id)
1 172.20.16.1 0 msec 4 msec 0 msec
2 * * *
3 * * *
4 * * *
5 * * *
6 * * *
7 * * *
8 208.103.3.145 4 msec 16 msec 4 msec
dnsmasq --cache-size=5000 --no-daemon --domain-needed --dhcp-range=192.168.0.5,192.168.0.25,5m --dhcp-leasefile=/tmp/dhcp.leases --no-poll --no-hosts --server=8.8.8.8 --server=8.8.4.4 --log-queries --neg-ttl=600 --max-ttl=600 --bind-dynamic --dhcp-option=option:router,192.168.0.1 --dhcp-sequential-ip
@codatory
codatory / XPSetup.md
Last active August 29, 2015 14:03
OSX Format USB Volume for cross-platform usage
# Execution-Policy Not-Annoying
Update-ExecutionPolicy Unrestricted
# Remote admin is a good thing
Enable-RemoteDesktop
# Permanently install Chocolatey for updates and more packages later on
cinst -y chocolatey
# Why waste vertical screen space?
# Indiana
#
# For a map of Indiana's time zone regions, see:
# <a href="http://www.mccsc.edu/time.html">
# What time is it in Indiana?
# </a> (2006-03-01)
#
# From Paul Eggert (2007-08-17):
# Since 1970, most of Indiana has been like America/Indiana/Indianapolis,
# with the following exceptions:
@codatory
codatory / vimrc
Last active January 3, 2016 22:29
set nocompatible " Run in iMproved mode
filetype off " Required for Vundle
syntax on " Syntax highlighting rocks
set number " Line numbers in the gutter
set ruler " Show position in statusbar
" Whitespace stuff
set nowrap
set tabstop=2
@codatory
codatory / server.rb
Created December 27, 2013 15:22
HTTP Terminator and Dumper
require 'webrick'
server = WEBrick::HTTPServer.new :Port => 8000
server.mount_proc '/' do |req, res|
puts req.inspect
res.body = nil
end
trap 'INT' do server.shutdown end