- Fork the repository using Github
- Checkout a named feature branch created from the
develop
branch - Write tests using chefspec or serverspec as appropriate.
- Complete modifications or corrections.
- Run the tests, ensuring they all pass
- Submit a Pull Request to the
develop
branch using Github
I hereby claim:
- I am webframp on github.
- I am sme (https://keybase.io/sme) on keybase.
- I have a public key whose fingerprint is 16B4 54B3 5E3F B675 99FE 4DC9 BD39 B3F7 CB0C EB99
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading /Users/sme/.emacs.d/sme/init-dash.el (source)... | |
Loading /Users/sme/.emacs.d/sme/init-ghc.el (source)... | |
Loading /Users/sme/.emacs.d/sme/init-ruby.el (source)... | |
Loading /Users/sme/.emacs.d/sme/json.el (source)... | |
Loading /Users/sme/.emacs.d/sme/mailto-compose-mail.el (source)... | |
Loading /Users/sme/.emacs.d/sme/notmuch-config.el (source)... | |
Cannot open load file: notmuch-address | |
Saving file /Users/sme/.ido.last... | |
Loading vc-git... | |
Wrote /Users/sme/.ido.last |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [[ -n ${ZSH_VERSION-} ]]; | |
then | |
autoload -U +X bashcompinit && bashcompinit | |
fi | |
hcl_update() { | |
if [ -z "$1" ]; | |
then | |
echo "Usage: $0 @alias" | |
else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [[ -n ${ZSH_VERSION-} ]]; | |
then | |
autoload -U +X bashcompinit && bashcompinit | |
fi | |
hcl_update() { | |
if [ -z "$1" ]; | |
then | |
echo "Usage: $0 @alias" | |
else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
suites: | |
- name: default | |
run_list: | |
- recipe[graphite] | |
attributes: | |
graphite: | |
carbon: | |
service_type: "init" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% | |
require 'socket' | |
def local_ip | |
@local_ip ||= begin | |
# turn off reverse DNS resolution temporarily | |
orig, Socket.do_not_reverse_lookup = Socket.do_not_reverse_lookup, true | |
UDPSocket.open do |s| | |
s.connect '64.233.187.99', 1 | |
s.addr.last |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;;; Custom settings for notmuch and mail handling | |
;; this configured both notmuch and message-mode | |
(autoload 'mailto-compose-mail "mailto-compose-mail" nil t) | |
;; mail sending | |
(setq message-send-mail-function 'message-send-mail-with-sendmail) | |
(setq sendmail-program "/usr/local/bin/msmtp") | |
(setq mail-specify-envelope-from 't) | |
(setq message-sendmail-envelope-from 'header) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- Gemfile.orig 2014-01-01 23:16:31.000000000 -0800 | |
+++ Gemfile 2014-01-01 23:16:53.000000000 -0800 | |
@@ -1,5 +1,4 @@ | |
source 'https://rubygems.org' | |
gem 'omnibus', '~> 1.3.0' | |
-gem 'omnibus-software', :git => 'git://github.com/opscode/omnibus-software.git', | |
- :branch => 'master' | |
+gem 'omnibus-software', :git => 'git://github.com/sl4mmy/omnibus-software.git', :branch => 'fix-openssl-docs-with-perl-5.18' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
driver: | |
name: docker | |
socket: tcp://192.168.42.42:4242 | |
sudo: false |