Skip to content

Instantly share code, notes, and snippets.

View drd's full-sized avatar

Eric O'Connell drd

View GitHub Profile
@drd
drd / view.txt
Created November 5, 2012 19:25
ascii view diagrams ftw
+-----------------------------+
| Collection View controls | <- controls region
+-----------------------------+
| Form to add new item | <- form region
+-----------------------------+
| Item 1 | \
+-----------------------------+ |
| Item 2 | | <- itemViewContainer
+-----------------------------+ |
| ... | /
@drd
drd / gist:914476
Created April 11, 2011 22:07
brew install pianobar fail
$ brew install -v pianobar
==> Downloading https://github.com/PromyLOPh/pianobar/tarball/2011.01.24
File already downloaded and cached to /Users/eric/Library/Caches/Homebrew
/usr/bin/tar xf /Users/eric/Library/Caches/Homebrew/pianobar-2011.01.24.24
==> make PREFIX=/usr/local/Cellar/pianobar/2011.01.24
make PREFIX=/usr/local/Cellar/pianobar/2011.01.24
/usr/bin/cc -std=c99 -O3 -w -pipe -I src/libpiano -I src/libwaitress \
-I src/libezxml -I /usr/include -I /usr/include -DENABLE_FAAD \
-I /usr/include -DENABLE_MAD -c -o src/main.o src/main.c
/usr/bin/cc -std=c99 -O3 -w -pipe -I src/libpiano -I src/libwaitress \
Rails CMS alternatives
======================
Note: project activity was checked on 11/26/09 for most of these projects, and the "last update" field has not been kept up to date since then.
Active projects:
---------------
adva-cms
repo: http://github.com/svenfuchs/adva_cms/
site: http://adva-cms.org/
Last update: 11/24/09
@drd
drd / gist:300753
Created February 10, 2010 19:35 — forked from greghaynes/gist:300209
// This software is released under the DBAD (Dont be a duche) license.
// If you improve this code in any way, you must release your modifications publicly.
#include "Map.h"
#include <string>
#include <vector>
#include <iostream>
#define DEPTH 1
#Install gems
gem 'mocha'
gem 'thoughtbot-shoulda'
gem 'thoughtbot-factory_girl'
gem 'technicalpickles-shoulda_generator'
gem 'mislav-will_paginate', :version => '~> 2.2.3', :lib => 'will_paginate', :source => 'http://gems.github.com'
gem 'haml'
#install plugins
@drd
drd / gist:11313
Created September 17, 2008 21:24 — forked from tamalw/gist:11302
# Models
class Agent < ActiveRecord::Base
belongs_to :manager
belongs_to :site
belongs_to :workgroup
named_scope :of_workgroup, lambda { |workgroup| {:conditions => ['workgroup_id = ?', @workgroup.id] }
end
@drd
drd / Sakefile
Created August 31, 2008 19:03 — forked from cwsaylor/Sakefile
namespace 'rails' do
desc 'Remove rails tmp dirs'
task 'rm_tmp_dirs' do
["./tmp/pids", "./tmp/sessions", "./tmp/sockets", "./tmp/cache"].each do |f|
system("rmdir ./#{f}")
end
end
end
namespace 'git' do