Skip to content

Instantly share code, notes, and snippets.

View kris-luminar's full-sized avatar

Kris Luminar kris-luminar

  • StudyKIK
  • Kingston, PA
  • 11:21 (UTC -04:00)
View GitHub Profile
@kris-luminar
kris-luminar / toggle_dev_environment.js
Created March 23, 2012 21:01 — forked from esundahl/env.json
toggle_dev_environment
var dev = "dev",
staging = "staging",
production = "production",
url = window.location,
hostname = window.location.hostname;
hostname = hostname.split('.');
if (hostname[1] === dev) {
hostname[1] = staging;
@kris-luminar
kris-luminar / env.json
Created March 28, 2012 16:43 — forked from esundahl/env.json
This is a quick and dirty little javascript bookmarklet that I wrote to toggle between different development environments
[{
"environments": [
"site.dev",
"site.staging",
"site.com"
]
}]
Image: 400900309.jpg
Format: JPEG (Joint Photographic Experts Group JFIF format)
Class: DirectClass
Geometry: 227x150+0+0
Resolution: 150x150
Print size: 1.51333x1
Units: PixelsPerInch
Type: TrueColor
Endianess: Undefined
Colorspace: sRGB
if (Bob.is_a?(Robert) )
puts "yes, he is"
else
puts "no, he isn't"
end
puts "He's a swell fellow, either way"
@kris-luminar
kris-luminar / puppy.feature
Created November 24, 2012 04:53
Ambiguous match of "its name is Fred":
Feature: Puppies are very cute and everyone wants one
In order to make everyone happy
As a puppy class programmer
I want to give everyone a cute virtual puppy
Scenario: The puppy is being pet
Given we have a puppy
And its name is Fred
When we pet the puppy
Then the puppy wags its tail
diff --git i/vendor/plugins/addressable/lib/addressable.rb w/vendor/plugins/addressable/lib/addressable.rb
index 59e402c..054a9b5 100644
--- i/vendor/plugins/addressable/lib/addressable.rb
+++ w/vendor/plugins/addressable/lib/addressable.rb
@@ -116,7 +116,7 @@ module Addressable
if has_latlng_fields?
build_geocode unless geocode
- if address.blank? and latitude.blank? and longitude.blank?
+ if address.blank? and latitude.to_f == 0.0 and longitude.to_f == 0.0
@kris-luminar
kris-luminar / gist:4752280
Created February 11, 2013 03:30
trying to create an integration spec to test a nested resource (location is a nested resource of mailbox).
require 'spec_helper'
feature "Editing mailboxes" do
scenario "Updating a mailbox" do
let!(:mailbox) { Factory(:mailbox) }
let!(:location) { Factory(:location, :street_one => "6th NE", :street_two => "Kent NE", :zip => '99999', :city => "Auburn", :state => 'WA', :mailbox => mailbox) }
visit '/'
click_link '6th NE and Kent NE'
click_link 'Edit mailbox'
@kris-luminar
kris-luminar / gist:5975027
Created July 11, 2013 12:29
Can't source a .bash_profile file This file exists but when I call source on it it fails. When I source it inside the remote machine called 'charley' using the same 'vagrant' user, the source command can't seem to find the file.
~/Downloads/ansible
☻ ansible charley -a 'ls -la /home/vagrant/.bash_profile' -u vagrant devel 714cb02 ✗
192.168.14.133 | success | rc=0 >>
-rw-rw-r-- 1 vagrant vagrant 118 Jul 10 13:21 /home/vagrant/.bash_profile
~/Downloads/ansible
☻ ansible charley -a 'source /home/vagrant/.bash_profile' -u vagrant devel 714cb02 ✗
192.168.14.133 | FAILED | rc=2 >>
[Errno 2] No such file or directory
@kris-luminar
kris-luminar / main.yml
Created July 11, 2013 13:39
How to install RVM using Ansible
- hosts: charley
user: vagrant
sudo: no
tasks:
- name: Install RVM
shell: \curl -L https://get.rvm.io | bash -s stable --autolibs=packages
---
apt_upgrade_file: vmware_tools_upgrade.yml