Skip to content

Instantly share code, notes, and snippets.

View marcelmorgan's full-sized avatar
💭
Running

Marcel Morgan marcelmorgan

💭
Running
View GitHub Profile
@marcelmorgan
marcelmorgan / anagrams.rb
Created October 10, 2011 01:46
Trying all permutations of a word against a dictionary
def try_all_permutations(word, dictionary, pos)
if word[pos].nil?
raise "Position #{pos} not in word list"
elsif pos == (word.length - 1)
puts word if dictionary.member? word
else
try_all_permutations(word, dictionary, pos+1)
for i in ((pos+1)..(word.length-1))
word[i], word[pos] = word[pos], word[i]
@marcelmorgan
marcelmorgan / gist:4046271
Created November 9, 2012 15:20
Bootstrap Chef on Archlinux
#!/usr/bin/env bash
pacman -Syyu
pacman -S ruby rsync base-devel
gem install chef ruby-shadow --no-ri --no-rdoc --no-user-install
@marcelmorgan
marcelmorgan / chef_solo_bootstrap.sh
Created November 25, 2012 21:43 — forked from ryanb/chef_solo_bootstrap.sh
Bootstrap Chef Solo
#!/usr/bin/env bash
apt-get -y update
apt-get -y install build-essential zlib1g-dev libssl-dev libreadline6-dev libyaml-dev htop tmux
cd /tmp
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p327.tar.gz
tar -xvzf ruby-1.9.3-p327.tar.gz
cd ruby-1.9.3-p327/
./configure --prefix=/usr/local
make
make install
#!/usr/bin/env bash
# kill all connections to the postgres server
if [ -n "$1" ] ; then
where="where pg_stat_activity.datname = '$1'"
echo "killing all connections to database '$1'"
else
echo "killing all connections to database"
fi
cat <<-EOF | psql -U postgres -d postgres
@marcelmorgan
marcelmorgan / Gemfile
Created November 27, 2013 20:18 — forked from pcreux/Gemfile
Heroku App Tunning
group :production do
gem 'unicorn'
# Enable gzip compression on heroku, but don't compress images.
gem 'heroku-deflater'
# Heroku injects it if it's not in there already
gem 'rails_12factor'
end
# specs and cukes results are stored in JUnit format under test-reports
if (grep 'failures="[^0]"' test-reports/* || grep 'errors="[^0]"' test-reports/*); then
curl -H "Authorization: token MY_TOKEN" --request POST --data '{"state": "failure", "description": "Failed!", "target_url": "${bamboo.buildResultsUrl}"}' https://api.github.com/repos/USER/REPO/statuses/${bamboo.repository.revision.number} > /dev/null
else
curl -H "Authorization: token MY_TOKEN" --request POST --data '{"state": "success", "description": "Success!", "target_url": "${bamboo.buildResultsUrl}"}' https://api.github.com/repos/USER/REPO/statuses/${bamboo.repository.revision.number} > /dev/null
fi
@marcelmorgan
marcelmorgan / array_of_constants.rb
Last active January 4, 2016 20:49
Array of CONSTANTS
# Lets say we need to have a list of all our states
# we could do it like this
ON = 'on'
OFF = 'off'
CLOSED = 'closed'
STATES = [ON, OFF, CLOSED]
# but adding a new state means adding it in 2 places
@marcelmorgan
marcelmorgan / FruitCakeRecipe.md
Last active August 29, 2015 14:02
Fruit Cake Recipe

#Fruit Cake Recipe

##Ingredients

  • 1lb Dark Sugar
  • 1lb Anchor Butter
  • 1lb Flour
  • ¼ lb Bread Crumbs
  • 2 grated Nutmeg
  • 2 teaspoon baking powder
@marcelmorgan
marcelmorgan / force-ar-stdout.rb
Created September 19, 2014 14:05
Force Queries to be Logged to Standard Out
ActiveRecord::Base.logger = Logger.new($stdout)

For a tmux status line as seen in the example image for the wemux project: wemux

The session on the left in the example screen shot uses a patched font from the vim-powerline project. Inconsolata-dz, you beautiful creature.

To duplicate the left status line add the following lines to your ~/tmux.conf

set -g status-left-length 32
set -g status-right-length 150