This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I just got off the phone with some guy out in California trying to offer me | |
| a better deal on 'OEM compatible' printer toner. So more or less, knock off | |
| versions of HP printer ink. We get 90% of our printer supplies through a | |
| contract with Ricoh, and the other 10% through CDW at wholesale prices. He | |
| was so pushy, he sounded like he was offering me my first hit of coke. I | |
| politely told him "not interested" 3 times. He'd just start his spiel over | |
| and say, "I guess I just don't understand. You're in the business of getting | |
| the most bang for your buck and I'm in the business of saving you money. Why | |
| won't you give me a shot for 1 shipment of toner? I can promise you you're | |
| looking at savings of up to 30%." He first offered a 4th toner cartridge for |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| abstract (1.0.0) | |
| actionmailer (2.3.2, 2.3.1, 2.3.0, 2.2.2, 2.1.2) | |
| actionpack (2.3.2, 2.3.1, 2.3.0, 2.2.2, 2.1.2) | |
| activerecord (2.3.2, 2.3.1, 2.3.0, 2.2.2, 2.1.2) | |
| activeresource (2.3.2, 2.3.1, 2.3.0, 2.2.2, 2.1.2) | |
| activesupport (2.3.2, 2.3.1, 2.3.0, 2.2.2, 2.1.2) | |
| addressable (2.0.2, 2.0.1) | |
| andand (1.3.1) | |
| atom (0.3) | |
| authlogic (2.0.11, 2.0.9, 2.0.8, 2.0.5, 2.0.2) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 1) Point *.example.com in your DNS setup to your server. | |
| # | |
| # 2) Setup an Apache vhost to catch the star pointer: | |
| # | |
| # <VirtualHost *:80> | |
| # ServerName *.example.com | |
| # </VirtualHost> | |
| # | |
| # 3) Set the current account from the subdomain | |
| class ApplicationController < ActionController::Base |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SUPER DARING APP TEMPLATE 1.0 | |
| # By Peter Cooper | |
| # Link to local copy of edge rails | |
| inside('vendor') { run 'ln -s ~/dev/rails/rails rails' } | |
| # Delete unnecessary files | |
| run "rm README" | |
| run "rm public/index.html" | |
| run "rm public/favicon.ico" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| VERSION="1.1" | |
| REEV="http://rubyforge.org/frs/download.php/58677/ruby-enterprise-1.8.6-20090610.tar.gz" | |
| REEF="ruby-enterprise-1.8.6-20090610.tar.gz" | |
| REEFF=${REEF%".tar.gz"} | |
| PASSENGER="2.2.4" | |
| echo "#####################################" | |
| echo "Welcome, let's get this party rollin'" | |
| echo "#####################################" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'rubygems' | |
| require "extlib" | |
| require "merb-core" | |
| require "dm-core" | |
| require "dm-timestamps" | |
| require "dm-types" | |
| require "dm-validations" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| abstract (1.0.0) | |
| actionmailer (2.2.2) | |
| actionpack (2.2.2) | |
| activerecord (2.2.2) | |
| activeresource (2.2.2) | |
| activesupport (2.2.2) | |
| addressable (2.0.1) | |
| andand (1.3.1) | |
| atom (0.3) | |
| cgi_multipart_eof_fix (2.5.0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| abstract (1.0.0) | |
| actionmailer (2.2.2) | |
| actionpack (2.2.2, 1.13.6) | |
| actionwebservice (1.2.6) | |
| activerecord (2.2.2, 1.15.6) | |
| activeresource (2.2.2) | |
| activesupport (2.2.2, 1.4.4) | |
| acts_as_ferret (0.4.3) | |
| adamcooke-key-installer (1.1) | |
| addressable (2.0.1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Array.new(16) { rand(256) }.pack('C*').unpack('H*').first | |
| # => b3512f4972d314da94380e1a70e6814a | |
| # Courtesy of http://norbauer.com/notes/generating-access-keys | |
| # via rubyjudo.com |