Skip to content

Instantly share code, notes, and snippets.

View e0da's full-sized avatar

Justin Force e0da

View GitHub Profile
@e0da
e0da / extend.rb
Last active December 30, 2015 13:29
module Helpers
def help
puts 'helpful!'
end
end
class Foo
def get_help
self.extend Helpers
@e0da
e0da / .Xdefaults
Created October 31, 2013 18:47 — forked from yevgenko/.Xdefaults
!-------------------------------------------------------------------------------
! Xft settings
!-------------------------------------------------------------------------------
Xft.dpi: 96
Xft.antialias: false
Xft.rgba: rgb
Xft.hinting: true
Xft.hintstyle: hintslight
dan@app05:/nutricate/production/app$ git status
# On branch deploy
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: admin/config/email.yml
# modified: admin/config/environments/admin.rb
# modified: admin/config/initializers/recaptcha.rb
# modified: instance/init_scripts/admin
@e0da
e0da / query.sql
Created September 25, 2013 23:51
SELECT "message_images"."id" AS t0_r0,
"message_images"."name" AS t0_r1,
"message_images"."name_on_disk" AS t0_r2,
"message_images"."entity_id" AS t0_r3,
"message_images"."created_by" AS t0_r4,
"message_images"."create_method" AS t0_r5,
"message_images"."created_on" AS t0_r6,
"message_images"."modified_by" AS t0_r7,
"message_images"."updated_on" AS t0_r8,
"message_images"."activate_at" AS t0_r9,
# cat /etc/supervisor/conf.d/znc.conf
[program:znc]
command = /usr/bin/znc
user = force
directory = /home/force
redirect_stderr = true
@e0da
e0da / ensure_array.rb
Created July 26, 2013 18:38
Ensure an argument is wrapped in an array
# Approach alpha is good if you know for certain that you're dealing with
# 1-dimensional arrays.
#
def alpha(parm)
parm = [parm].flatten
end
# Approach beta works if you need to support multi-dimensional arrays because it
# doesn't rely on #flatten.
#
notify_sshable() {
host=$1
timeout=${2:-1}
sound=${3:-"$HOME/Dropbox/sounds/LOZ_Secret.wav"}
iteration=0
while true; do
let iteration=$iteration+1
echo "Attempt $iteration..."
ssh -oConnectTimeout=$timeout $host true
if [ $? = 0 ]; then
@e0da
e0da / znc.conf
Created June 27, 2013 19:07
Supervisor config file for znc
[program:znc]
command = /usr/bin/znc
user = force
directory = /home/force
redirect_stderr = true
@e0da
e0da / README.md
Last active December 17, 2015 08:28 — forked from keeperofthenecklace/Testing REST APIs with Cucumber and Rack::Test
Testing REST APIs with Cucumber and Rack::Test

First attempting to use Capybara directly, you will ran into issues when trying to set HTTP header. Using Basic HTTP Authentication requires that we needed to set the header. Also we need to set the Content-Type and Accept headers to ensure that Rails handles the input and output correctly. When using Rack, Capybara delegates request and response handling down to Rack::Test. So I used Rack::Test directly in my step definitions, and it works. Rack::Test has a module called Rack::Test::Methods that can be mixed into a class to provide it with methods for get, post, put, delete as well as last_request, last_response, header and more. I mixed Rack::Test::Methods into the Cucumber world at the top of our API steps file like so:

@e0da
e0da / Gemfile
Last active December 17, 2015 07:09
See README.md
source 'https://rubygems.org'
gem 'sinatra'
gem 'sinatra-flash'
gem 'net-ldap'
gem 'passenger'
gem 'coffee-script'
gem 'slim'
gem 'sass'
gem 'data_mapper'