Skip to content

Instantly share code, notes, and snippets.

View resistorsoftware's full-sized avatar

David Lazar resistorsoftware

View GitHub Profile
@garyharan
garyharan / dot_pryrc
Created June 18, 2012 14:23
Awesome Print + Pry == Awesome Pry
require "rubygems"
require "awesome_print"
Pry.print = proc { |output, value| output.puts value.ai }
@resistorsoftware
resistorsoftware / Fixed up and modernized Expo gist
Created April 4, 2012 14:46
Meta Tagger Snippet for Expo Theme
<link rel="canonical" href="{{ canonical_url }}" />
{% assign maxmeta = 155 %}
{% if template contains 'product' %}
{% assign mf = product.metafields.meta_data %}
{% unless mf == empty %}
{% for mf in product.metafields.meta_data' %}
{% capture key %}{{ mf | first }}{% endcapture %}
{% if key == 'title' %}
<title>{{mf | last}}</title>
<meta name="title" content="{{mf | last}}" />
@resistorsoftware
resistorsoftware / dc.rb
Created January 19, 2012 21:07
discount code
require 'csv'
require 'haddock'
require 'mechanize'
# codes = []
# Haddock::Password.diction = "words"
# 500.times do |x|
# code = Haddock::Password.generate(8)
# codes << code unless codes.include?(code)
# end
@cmer
cmer / hash.rb
Created December 19, 2011 03:16
Hash#value_at_path
class Hash
# Returns the value at the specified path.
# For example, [:foo, :bar, :baz] as a path would return the
# value at self[:foo][:bar][:baz]. If self doesn't contain one of
# the keys specified in path, nil is returned.
#
# This method is useful as it simplifies statements such as:
# value = h[:a][:b][:c][:d] if h[:a] && h[:a][:b] && h[:a][:b][:c]
# to
# value = h.value_at_path(:a, :b, :c, :d)
anonymous
anonymous / yaml.txt
Created December 16, 2011 17:07
a really useless fucking yaml cheat sheet
Collection indicators:
'? ' : Key indicator.
': ' : Value indicator.
'- ' : Nested series entry indicator.
', ' : Separate in-line branch entries.
'[]' : Surround in-line series branch.
'{}' : Surround in-line keyed branch.
Scalar indicators:
'''' : Surround in-line unescaped scalar ('' escaped ').
'"' : Surround in-line escaped scalar (see escape codes below).
@rkh
rkh / chat.rb
Created December 14, 2011 12:55
Simple Chat Application using the Sinatra Streaming API
# coding: utf-8
require 'sinatra'
set server: 'thin', connections: []
get '/' do
halt erb(:login) unless params[:user]
erb :chat, locals: { user: params[:user].gsub(/\W/, '') }
end
get '/stream', provides: 'text/event-stream' do
@jstorimer
jstorimer / hilong.rb
Last active February 18, 2025 18:20
hilong -- A simply utility to show character counts for each line of input and highlight lines longer than 80 characters.
#!/usr/bin/env ruby
# A simply utility to show character counts for each line of input and
# highlight lines longer than 80 characters.
#
# Written as an example for http://jstorimer.com/2011/12/12/writing-ruby-scripts-that-respect-pipelines.html
#
# Examples:
#
# $ hilong Gemfile
@nevinera
nevinera / gist:1451524
Created December 9, 2011 13:29
monkey patch on delayed_job 2.1.4 to propagate sigquit exceptions into application code
module Delayed
class Worker
def start
say "Starting job worker"
trap('TERM') { $exit = true; raise SignalException.new("TERM")}
trap('INT') { say 'Exiting...'; $exit = true }
loop do
result = nil
@roidrage
roidrage / ebooks.md
Created December 2, 2011 15:15
Self-published and awesome
@Soleone
Soleone / coupons
Created November 21, 2011 23:06 — forked from rapind/coupons
Load Groupon Codes into Shopify Discounts (fixed based on new AJAX form in admin))
# http://forums.shopify.com/categories/6/posts/42926
# This is a fairly simple mechanize script to create a few hundred or so shopify discounts from a CSV of groupon codes.
# You'll want to change all of the "changeme" values to your own.
# The script expects there to be a groupon_codes.csv in the same directory.
#
# The groupons_code.csv should look like this:
# 8m7677
# 8m6749
# 8m5398
# 8m7699