ddollar

David Dollar
Atlanta, GA
19
33
Mar 17, 2008
  • "Ack in Project" TextMate bundle
    Forked from protocool/ack-tmbundle Mon Jun 15 13:43:42 -0700 2009
    legend
  • Rails plugin to allow the tracing of method calls
    Updated Thu Dec 11 14:56:47 -0800 2008
    legend
  • Ruby wrapper for the Pygments syntax highlighter.
    Forked from github/albino Sun Apr 19 15:50:59 -0700 2009
    legend
  • TODO
    Updated Sun Feb 22 17:00:11 -0800 2009
    legend
  • Updated Mon Jun 30 21:10:28 -0700 2008
    legend
  • Updated Mon Jun 30 14:36:04 -0700 2008
    legend
  • Created Sun Jul 05 15:12:10 -0700 2009
    legend
  • ddollar.github.com
    Updated Tue Feb 10 21:29:08 -0800 2009
    legend
  • Port of Merb's dependency system to a Rails plugin
    Updated Tue May 05 12:33:52 -0700 2009
    legend
  • Eve IGB on Rails
    Updated Tue Feb 17 22:02:50 -0800 2009
    legend
  • Updated Fri Nov 14 11:55:37 -0800 2008
    legend
  • Adds a 'prune' command to rubygems to help keep things tidy.
    Updated Thu Jun 18 13:00:50 -0700 2009
    legend
  • Updated Mon Jun 08 12:52:26 -0700 2009
    legend
  • Updated Mon Jun 30 14:27:26 -0700 2008
    legend
  • Makes http fun! Also, makes consuming restful web services dead easy.
    Forked from jnunemaker/httparty Tue Jun 23 12:29:12 -0700 2009
    legend
  • Updated Tue Jul 08 11:47:22 -0700 2008
    legend
  • Ruby library to handle application preferences
    Updated Fri Jun 13 11:03:39 -0700 2008
    legend
  • Debugging toolbar for Rack applications implemented as middleware
    Forked from brynary/rack-bug Sat Apr 18 17:18:40 -0700 2009
    legend
  • Rack::Debug is middleware that provides a simple interface to ruby-debug. Helps debug apps runnin...
    Updated Tue May 19 11:17:02 -0700 2009
    legend
  • Railroad gem becomes a Rails plugin
    Forked from terotil/railroad Wed Feb 18 14:00:16 -0800 2009
    legend
  • Ruby on Rails
    Forked from rails/rails Thu Apr 10 20:07:46 -0700 2008
    legend
  • Command line interface to Remember the Milk
    Updated Wed Nov 19 09:19:28 -0800 2008
    legend
  • Created Thu Jun 18 08:23:57 -0700 2009
    legend
  • Shoebox helps you manage styles and scripts as first-class citizens in Rails.
    Updated Tue Jun 23 19:33:31 -0700 2009
    legend
  • Simple parsing library
    Updated Thu Aug 07 12:38:53 -0700 2008
    legend
  • Updated Mon Jun 30 14:24:41 -0700 2008
    legend
  • Allows for ruby-debug functionality under Phusion Passenger
    Updated Sun Dec 14 15:09:44 -0800 2008
    legend
  • Updated Mon Jul 07 08:11:01 -0700 2008
    legend
  • Updated Fri Apr 17 13:41:21 -0700 2009
    legend
  • Command-line package manager for textmate
    Forked from wycats/textmate Mon Jun 15 13:17:04 -0700 2009
    legend
  • Try for Ruby as a Rails plugin
    Updated Wed Feb 04 11:57:55 -0800 2009
    legend
  • Updated Mon Jun 30 21:26:58 -0700 2008
    legend
  • Vault
    Updated Mon Apr 21 12:13:17 -0700 2008
    legend

Following

Public Activity  feed

ddollar started watching defunkt/lyndon Fri Jun 26 00:54:27 -0700 2009
lyndon's description:
Lyndon wraps JavaScript in a loving MacRuby embrace.
ddollar updated gist: 135557 Wed Jun 24 15:21:21 -0700 2009
Gem.clear_paths Gem.path.unshift(File.join(ROOT, 'vendor', 'gems'))
ddollar created gist: 135557 Wed Jun 24 15:20:43 -0700 2009
Gem.clear_paths Dir[File.join(ROOT, 'vendor', '*')].each do |gem_dir| Gem.path.unshift gem_dir
ddollar updated gist: 135492 Wed Jun 24 14:27:08 -0700 2009
def fib(n) return n if n < 2 fib(n-1) + fib(n-2)
ddollar updated gist: 135492 Wed Jun 24 14:25:39 -0700 2009
def fib(n) @fib_cache ||= {} @fib_cache[n] ||= n < 2 ? n : fib(n-1) + fib(n-2)
ddollar updated gist: 135492 Wed Jun 24 14:23:15 -0700 2009
def fib(n) @fib_cache ||= {} @fib_cache[n] ||= begin
ddollar updated gist: 135492 Wed Jun 24 13:11:30 -0700 2009
def fib(n) @fib_cache ||= {} @fib_cache[n] ||= begin
ddollar updated gist: 135492 Wed Jun 24 13:11:07 -0700 2009
def fib(n) @fib_cache ||= {} @fib_cache[n] ||= begin
ddollar updated gist: 135492 Wed Jun 24 13:09:28 -0700 2009
def fib(n) return n if n < 2 fib(n-1) + fib(n-2)
ddollar created gist: 135492 Wed Jun 24 13:08:06 -0700 2009
def fib(n) end
ddollar pushed to master at ddollar/shoebox Tue Jun 23 19:33:34 -0700 2009
HEAD is 154bea871b515e7713d04fbbc86cee135802e6a3
ddollar pushed to master at ddollar/shoebox Tue Jun 23 19:09:58 -0700 2009
HEAD is 799a7bf45c757d0c0fb4fda75e333294561dbf0e
  • ddollar committed 799a7bf4:
    split application styles/scripts into their own pseudo-file so that we can cache them more readily
ddollar pushed to master at ddollar/shoebox Tue Jun 23 19:05:01 -0700 2009
HEAD is c3cae272bf62cc6f4de9231b36e95e7d2fbdce05
  • ddollar committed c3cae272:
    split application styles/scripts into their own pseudo-file
ddollar pushed to master at ddollar/shoebox Tue Jun 23 14:12:41 -0700 2009
HEAD is 3899fde2123baca5983c63be07b0ebf003173279
  • ddollar committed 3899fde2:
    split application styles/scripts into a separate file to allow for better cache hits
ddollar pushed to master at ddollar/shoebox Mon Jun 22 23:15:21 -0700 2009
HEAD is f46cf68186330058cc20b5a8ca5a8449c6868c5b

2 commits »

ddollar pushed to master at ddollar/gem-prune Thu Jun 18 13:00:52 -0700 2009
HEAD is 499fe17d75b864bb9ff6de41b946b47614e5a2b6

3 commits »

ddollar pushed to master at ddollar/shoebox Tue Jun 16 20:48:44 -0700 2009
HEAD is 4bf253a78643c93c3bcd7766fcea3610fed01100

2 commits »

ddollar pushed to master at ddollar/shoebox Tue Jun 16 20:42:34 -0700 2009
HEAD is 4c5e25edf4a83d622c99882ebdb61ce15c6af908
ddollar created gist: 130872 Tue Jun 16 13:16:30 -0700 2009
$ jruby script/server => Booting WEBrick => Rails 2.3.2 application starting on http://0.0.0.0:3000
ddollar created gist: 130869 Tue Jun 16 13:15:21 -0700 2009
$ jruby script/server => Booting WEBrick => Rails 2.3.2 application starting on http://0.0.0.0:3000
ddollar pushed to master at ddollar/gem-prune Mon Jun 15 14:50:41 -0700 2009
HEAD is 31a66efa4c7226de9a5746584266a5bea515a076

3 commits »

ddollar pushed to master at ddollar/textmate Mon Jun 15 14:48:48 -0700 2009
HEAD is 743ea0033fec0e41c4e559efc6436b411c58efa4

2 commits »

ddollar pushed to master at ddollar/gem-prune Mon Jun 15 14:31:33 -0700 2009
HEAD is da2a2dc597180215e7866a77ece34543e3eb6e7d

3 commits »

ddollar pushed to master at ddollar/ack-tmbundle Mon Jun 15 13:48:25 -0700 2009
HEAD is fc7fb6f3de280bdb45bd7d4af4d41096a360de0d
ddollar pushed to master at ddollar/textmate Mon Jun 15 13:31:55 -0700 2009
HEAD is 70453b1f5369af306d743080a9313129fc4ecfea

4 commits »

ddollar pushed to master at ddollar/shoebox Mon Jun 15 08:39:13 -0700 2009
HEAD is 526a9d808ddde37a69eae8c32fb3e93fb50a9d3a
  • ddollar committed 526a9d80:
    different tag type for script elements to fix older browsers
ddollar pushed to master at ddollar/shoebox Mon Jun 15 08:28:13 -0700 2009
HEAD is 7fa7c493f4a23ed1b3d46ab542f2994f2922cf28
  • ddollar committed 7fa7c493:
    Revert "some browsers dont like quick-closed script tags"
ddollar pushed to master at ddollar/shoebox Mon Jun 15 08:25:16 -0700 2009
HEAD is 3a12a3fcfba1c5ab2012ebbbb503c561f45fdccb
  • ddollar committed 3a12a3fc:
    some browsers dont like quick-closed script tags
ddollar pushed to master at ddollar/git-utils Mon Jun 08 12:54:38 -0700 2009
HEAD is cc1211182df5dfc750817d3642525dde9983e0d8
ddollar pushed to master at ddollar/git-utils Mon Jun 08 11:44:00 -0700 2009
HEAD is dc6875e804cb5e471360ead014933fe45d0af48e
ddollar pushed to master at ddollar/gem-prune Thu Jun 04 07:19:56 -0700 2009
HEAD is b1e6c9a04680c745cb24a07226815f892d629eab

3 commits »

ddollar pushed to master at ddollar/gem-prune Wed Jun 03 20:34:28 -0700 2009
HEAD is 361ddfcb759efeba4a3c70661ca15be3dfdc259b

5 commits »

ddollar pushed to master at ddollar/shoebox Tue Jun 02 07:04:29 -0700 2009
HEAD is 9f0b7fdf4127ba02cee49ccf680d78526ecd1b2b

2 commits »

ddollar pushed to master at ddollar/shoebox Mon Jun 01 14:36:40 -0700 2009
HEAD is db5870e5180d580f4000327dd0bda164401431d3

2 commits »