Skip to content

Instantly share code, notes, and snippets.

View qrush's full-sized avatar
🕸️
Making internets

Nick Quaranto qrush

🕸️
Making internets
View GitHub Profile
@panicsteve
panicsteve / gist:1641705
Created January 19, 2012 18:26
Form letter template for acquired startups
Dear soon-to-be-former user,
We've got some fantastic news! Well, it's great news for us anyway. You, on
the other hand, are fucked.
We've just been acquired by:
[ ] Facebook
[ ] Google
[ ] Twitter
module TestCaseMixin
include YARD::CodeObjects
def create_test_method(name)
test_name = 'test_' + name.to_s.gsub(/\W/, '_')
register MethodObject.new(namespace, test_name, :instance)
end
end
class LegacyTestCaseHandler < YARD::Handlers::Ruby::Legacy::Base
@bluefuton
bluefuton / gist:1468061
Created December 12, 2011 16:15
OS X: replace tabs with spaces in all files using expand
find . -name "*.php" | while read line; do expand -t 4 $line > $line.new; mv $line.new $line; done
@schacon
schacon / plumbing.md
Created August 18, 2011 04:51
plumbing cheat sheet

the plumbing commands

  • rev-parse [something]

    • show the SHA of any weird git phrase
  • hash-object -w [file]

    • take any file or stdin and return a blob sha
  • ls-tree (-r) [sha]

  • show the entries of a git tree in the db

@skiz
skiz / gist:1137135
Created August 10, 2011 15:27
MONKEY PATCH: Selenium::WebDriver::Error::UnhandledError (NS_ERROR_ILLEGAL_VALUE)
# File: spec/support/capybara_patch.rb
#
# This patch attempts to fix a race condition in the selenium web driver
# Reference: https://code.google.com/p/selenium/issues/detail?id=2099
class Capybara::Selenium::Driver
def find(selector)
browser.find_elements(:xpath, selector).map { |node| Capybara::Selenium::Node.new(self, node) }
rescue Selenium::WebDriver::Error::UnhandledError => e
e.message =~ /nsIDOMXPathEvaluator.createNSResolver/ ? retry : raise
@jsmestad
jsmestad / assets.yml
Created July 27, 2011 20:43
Rails 3.0.x runtime compilation and asset packaging with Barista and Jammit on Heroku
# config/assets.yml
package_assets: on
compress_assets: on
# compress_assets: off
javascript_compressor: uglifier
javascripts:
all:

Currently the RubyGems index is stored as a Gzip file that is a marshalled array. Whenever Bundler needs to install a gem that is not yet installed it downloads the index, gunzips it and unmarshals it. It then looks for dependencies that are described in another file that is also a gzipped and marshalled file. There are several issues that arise from this setup:

  • The full index must be downloaded and parsed, but does not contain dependency data, which must then be downloaded and parsed. This is a relatively time consuming process.
  • The index must be centralized.

Additionally the gems themselves are currently centralized since there is nothing in the meta data that indicates where the gem should be downloaded from. However in order to allow this it is important to find ways of keeping the index from being poisoned (is this an issue in the centralized system?)

Dependency Resolution

1/2 c butter
1 1/4 lb grated sweet potato
2 1/2 T packed brown sugar
1/4 t salt
1/4 c tequila
juice of 2 limes
In a cast iron skillet:
* melt butter
* stir in sweet potatoes, pat into even layer
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEA2wxFjUi0j9r+Pggb1xWrZj4n30HrwYQk2HDbAm8SHk+bum016PPSslR+7eveZjDXqhQ4CQSn23JLghNkrYFhnVyWjZelQ50/LWCOBUJZKsUi+fsqJ+55+eU4/BDE78FGR9LH6fMaeDaVowyeH3I5FnAkdpHQvUP3ht8Rs9L3Sm0= [email protected]
@dbgrandi
dbgrandi / hoptoad greasemonkey
Created February 24, 2011 13:33
make hoptoad errors link directly to textmate
// ==UserScript==
// @name Hoptoad Textmate Backtrace
// @namespace hoptoad
// @description Add textmate links to application stacktrace lines on error pages
// @include https://YOURACCOUNT.hoptoadapp.com/errors/*
// ==/UserScript==
//
// based on original script from http://userscripts.org/scripts/show/63465
// with much help from @orta