This file contains 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
Delivery to the following recipient failed permanently: | |
[email protected] | |
Technical details of permanent failure: | |
Message rejected by Google Groups. Please visit http://mail.google.com/support/bin/answer.py?hl=en&answer=188131 to review our Bulk Email Senders Guidelines. | |
----- Original message ----- | |
X-Received: by 10.15.22.197 with SMTP id f45mr7583815eeu.46.1364562843507; |
This file contains 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
source 'http://rubygems.org' | |
gem 'nesta', '~> 0.9.13' | |
gem 'haml' | |
gem 'haml-coderay' | |
gem 'sass' | |
gem 'compass' | |
gem 'sprockets-sass' |
This file contains 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
source 'https://rubygems.org' | |
# Specify your gem's dependencies in poi_api.gemspec | |
gem 'rack' | |
gem 'sinatra' | |
gem 'shotgun' |
This file contains 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
source :rubygems | |
gem 'shotgun', :group=>:development | |
gem 'rack-cache' | |
gem 'sinatra', :require => 'sinatra/base' | |
gem 'sinatra-support' | |
gem 'haml' |
This file contains 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 -w | |
result = Hash.new{|h, k| h[k] = { | |
:count => 0, | |
:unread => 0, | |
:first => nil, | |
:last => nil | |
} | |
} |
This file contains 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
Last login: Thu Mar 8 09:53:01 on ttys000 | |
c.aust@macbookpro:~$ pip | |
-bash: pip: command not found | |
c.aust@macbookpro:~$ brew install pip | |
Error: No available formula for pip | |
Install pip with easy_install: | |
easy_install pip | |
c.aust@macbookpro:~$ easy_install pip | |
Traceback (most recent call last): |
This file contains 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
c.aust@macbookpro:~$ curl -i http://bscope:8098/riak/test_my_kv_search | |
HTTP/1.1 200 OK | |
Vary: Accept-Encoding | |
Server: MochiWeb/1.1 WebMachine/1.9.0 (someone had painted it blue) | |
Date: Fri, 02 Mar 2012 15:00:26 GMT | |
Content-Type: application/json | |
Content-Length: 435 | |
{"props":{"name":"test_my_kv_search","allow_mult":false,"basic_quorum":false,"big_vclock":50,"chash_keyfun":{"mod":"riak_core_util","fun":"chash_std_keyfun"},"dw":"quorum","last_write_wins":false,"linkfun":{"mod":"riak_kv_wm_link_walker","fun":"mapreduce_linkfun"},"n_val":3,"notfound_ok":true,"old_vclock":86400,"postcommit":[],"pr":0,"precommit":[],"pw":0,"r":"quorum","rw":"quorum","small_vclock":50,"w":"quorum","young_vclock":20}} |
This file contains 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
c.aust@macbook-pro:~$ curl -I -H 'Accept-Encoding: gzip,deflate' http://budokan-yanagi.de/js/jquery-1.7.1.min.js | |
HTTP/1.1 200 OK | |
Date: Thu, 05 Jan 2012 10:58:18 GMT | |
Server: Apache/2.2.14 (Ubuntu) | |
ETag: "db2cccefedcc741a45a582e91a5afe8d" | |
X-Rack-Cache: fresh | |
X-Content-Digest: d1e1f3f0828fa66fb5744f42bc912694e06300f9 | |
Cache-Control: max-age=2592000, public | |
Age: 3114 | |
Status: 200 |
This file contains 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
source :rubygems | |
# I'd like to go with | |
# gem "radiant", '~> 1.0.0.rc3' | |
# there are fixes on master (but not rc3) that are needed for the extensions, thus I'm on edge | |
gem "radiant", :git => "git://github.com/radiant/radiant.git" | |
# I forked these to add missing localizations | |
gem "radiant-clipped-extension", :git=> "git://github.com/datenimperator/radiant-clipped-extension.git" | |
gem 'radiant-german_language_pack-extension', :git=> "git://github.com/datenimperator/radiant-german_language_pack-extension.git" |
This file contains 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
# Compass configuration from inside a rails3 engine | |
require 'compass' | |
require 'compass/app_integration/rails' | |
configuration = StringIO.new(<<-CONFIG) | |
project_type = :rails | |
css_dir = "public/stylesheets" | |
sass_dir = "app/stylesheets" | |
CONFIG |