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
/* Put your CSS here */ | |
html, body { | |
margin: 20px; | |
} | |
.color { | |
height: 200px; | |
width: 200px; | |
} |
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/sh | |
vim `echo $* | sed -E -e 's/\:([0-9]+)/ +\1/g'` |
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
CREATE TABLE `places` ( | |
`woeid` varchar(15) NOT NULL, | |
`iso` varchar(6) NOT NULL, | |
`name` text NOT NULL, | |
`language` varchar(6) NOT NULL, | |
`type` varchar(15) NOT NULL, | |
`parent` varchar(15) NOT NULL, | |
PRIMARY KEY (`woeid`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8; | |
CREATE TABLE `aliases` ( |
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
brew install https://raw.github.com/adamv/homebrew-alt/master/duplicates/autoconf.rb | |
brew link autoconf | |
brew install https://raw.github.com/adammw/homebrew-alt/automake/duplicates/automake.rb | |
brew link automake | |
rvm cleanup all | |
rvm install 1.9.3-perf --patch falcon,debug |
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
Run options: | |
# Running tests: | |
.. | |
Finished tests in 0.000774s, 2583.9793 tests/s, 2583.9793 assertions/s. | |
2 tests, 2 assertions, 0 failures, 0 errors, 0 skips |
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
curl http://files.rubyforge.vm.bytemark.co.uk/ruby-debug19/linecache19-0.5.13.gem \ | |
> vendor/cache/linecache19-0.5.13.gem | |
curl http://files.rubyforge.vm.bytemark.co.uk/ruby-debug19/ruby-debug-base19-0.11.26.gem \ | |
> vendor/cache/ruby-debug-base19-0.11.26.gem | |
bundle config build.ruby-debug-base19 \ | |
--with-ruby-include=$rvm_path/src/`rvm current | sed 's/@.*//'` |
This file has been truncated, but you can view the full file.
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
diff --git a/configure b/configure | |
index 10f7d1b..631bb47 100755 | |
--- a/configure | |
+++ b/configure | |
@@ -1,83 +1,60 @@ | |
#! /bin/sh | |
# Guess values for system-dependent variables and create Makefiles. | |
-# Generated by GNU Autoconf 2.68. | |
-# | |
+# Generated by GNU Autoconf 2.61. |
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
#!/usr/bin/env ruby | |
# Processor for Github flavored markdown, inspired by: | |
# https://github.com/alampros/Docter/blob/master/bin/github-flavored-markdown.rb | |
# | |
# Current version of this script can be found here: | |
# https://gist.github.com/1300939 | |
# | |
# Adapted for Redcarpet version 2 by Ralph von der Heyden | |
# http://github.com/ralph | |
# http://twitter.com/ralph |
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 | |
yum -y install make gcc-c++ zlib-devel openssl-devel | |
yum -y install ruby-devel ruby-irb ruby-rdoc ruby-ri | |
cd /tmp | |
curl -O http://production.cf.rubygems.org/rubygems/rubygems-1.3.7.tgz | |
tar xfz rubygems-1.3.7.tgz | |
ruby rubygems-1.3.7/setup.rb |
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
# Capistrano Recipes for managing delayed_job on SUN Solaris | |
# | |
# Add these callbacks to have the delayed_job process restart when the server | |
# is restarted: | |
# | |
# after "deploy:stop", "delayed_job:stop" | |
# after "deploy:start", "delayed_job:start" | |
# after "deploy:restart", "delayed_job:restart" | |
Capistrano::Configuration.instance.load do |