Public Gists by infused

Gravatar
Sat Aug 29 00:04:06 -0700 2009
1
2
3
      === Epic Snow Leopard Upgrayyyyd Guide ===
 
Son, you’re now living in the land of 64-bit systems.
Gravatar
Mon Jul 13 23:24:15 -0700 2009
1
2
3
a = [
  def f(a)
   a
Gravatar
Sun May 24 01:42:21 -0700 2009
1
2
3
# Soundex.rb
#
# Implementation of the soundex algorithm as described by Knuth
gist: 117010 Exchange 2003 log analyzer
Gravatar
Sun May 24 01:05:30 -0700 2009
1
2
3
#!/usr/bin/env ruby
 
require 'optparse'
Gravatar
Sun May 24 00:41:50 -0700 2009
1
2
3
require "yaml"
require "ldap"
 
Gravatar
Sun May 24 00:28:28 -0700 2009
1
2
3
require 'date'
 
exclude_days = [6,7]
Gravatar
Thu May 21 11:48:56 -0700 2009
1
2
3
// Creating multibit register display code
 
// Class Register8 is a class to store and display an 8-bit register
Gravatar
Mon May 11 22:29:20 -0700 2009
1
2
3
DeflateFilterNote Input input_info
DeflateFilterNote Output output_info
DeflateFilterNote Ratio ratio_info
Gravatar
Fri May 01 15:24:20 -0700 2009
1
2
3
# http://gist.github.com/10524
# Prevents autotest from running your entire test suite after fixing a failed test.
# Works with ZenTest 3.10.0
gist: 99460 Manual verification steps f...
Gravatar
Tue Apr 21 16:11:46 -0700 2009
1
2
3
environment = Environment.find_by_code 'v8'
portfolio = environment.portfolios.find_by_code '40'
set_leasepak_env environment.code
gist: 82722 .gemrc
Gravatar
Fri Mar 20 21:06:36 -0700 2009
1
2
3
---
gem: --no-rdoc --no-ri
:bulk_threshold: 1000
gist: 75019 Pain doubler
Gravatar
Fri Mar 06 11:00:57 -0800 2009
1
2
3
SpicyMac3:servicerplus keithm$ tail -f log/ferret_index.log
LocalIndex: ensure_index_exists at /Users/keithm/projects/servicerplus/index/development/account
rebuild index: [Account(id: integer, account_key: string, parent_id: integer, account_product_id: integer, portfolio_id: integer, pool_id: integer, account_status_id: integer, is_post_default: boolean, is_tax_exempt: boolean, open_date: date, tax_exempt_cert_num: string, version: integer, lock_version: integer, created_by: integer, created_at: datetime, updated_by: integer, updated_at: datetime, risk_rating: string, risk_rating_type_id: integer, account_collection_status_type_id: integer, remit_destination_id: integer, funded_on: date)]
Gravatar
Tue Nov 25 22:28:44 -0800 2008
1
2
3
 > sudo port installed
The following ports are currently installed:
  a52dec @0.7.4_0 (active)
Gravatar
Wed Sep 03 16:47:27 -0700 2008
1
2
3
require "rubygems"
require "inline"
 
gist: 6833 Recursively remove all .svn...
Gravatar
Fri Aug 22 11:28:41 -0700 2008
1
2
3
# Recursively remove all .svn directories
 
find . -name .svn -print0 | xargs -0 rm -rf