Skip to content

Instantly share code, notes, and snippets.

View bowmande's full-sized avatar

Drew Bowman bowmande

View GitHub Profile
@bowmande
bowmande / gist:b54cb1bfaf3b718ca4c8
Created January 24, 2015 21:15
Ruby Welbe Capybara script
require 'capybara'
require 'pry'
class Welbe
include Capybara::DSL
def initialize
Capybara.default_driver = :selenium
end
body {
background-color: red !important;
}
// ==UserScript==
// @name Add Points to Jira Board
// @namespace http://use.i.E.your.homepage/
// @version 0.1
// @description enter something useful
// @match http://tampermonkey.net/index.php?version=3.8.52&ext=dhdg&updated=true
// @copyright 2012+, You
// ==/UserScript==
// see https://jira.atlassian.com/browse/GHS-6755
### Keybase proof
I hereby claim:
* I am bowmande on github.
* I am drewbowman (https://keybase.io/drewbowman) on keybase.
* I have a public key whose fingerprint is BA68 461A F3D9 0AE9 BB08 2381 CC84 A85B B72C 4EA7
To claim this, I am signing this object:
@bowmande
bowmande / Tmux Config
Created November 21, 2013 18:22
Drew's Tmux Conf
# status bar
set-option -g status-utf8 on
# https://github.com/seebi/tmux-colors-solarized/blob/master/tmuxcolors-256.conf
set-option -g status-bg colour235 #base02
set-option -g status-fg colour136 #yellow
set-option -g status-attr default
# default window title colors
@bowmande
bowmande / chef_bootstrap.sh
Created June 19, 2012 12:16
Bootstrap for chef solo for a system using yum
#!/usr/bin/env bash
yum -y update
yum -y install build-essential zlib1g-dev libssl-dev libreadline5-dev libyaml-dev
cd /tmp
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p125.tar.gz
tar -xvzf ruby-1.9.3-p125.tar.gz
cd ruby-1.9.3-p125/
./configure --prefix=/usr/local
make
make install
@bowmande
bowmande / test.rb
Created December 4, 2011 21:29
Test Snippet
def hello
puts "hello"
end