Skip to content

Instantly share code, notes, and snippets.

@drogus
drogus / Gemfile
Created October 17, 2012 22:07
Rails Lightweight Stack. Most of this is detailed on Crafting Rails Applications - http://pragprog.com/book/jvrails/crafting-rails-applications
source :rubygems
# We are not loading Active Record, nor Active Resources etc.
# We can do this in any app by simply replacing the rails gem
# by the parts we want to use.
gem "actionpack", "~> 3.2"
gem "railties", "~> 3.2"
gem "tzinfo"
# Let's use thin
@drogus
drogus / expandable_record_array.coffee
Created August 30, 2012 14:31
Array for ember data that allows extending with findQuery results
DS.ExpandableRecordArray = DS.RecordArray.extend
isLoading: false
load: (array) ->
@set 'isLoading', true
self = this
observer = ->
if @get 'isLoaded'
content = self.get 'content'
@drogus
drogus / Gemfile
Created April 24, 2012 19:39
Router
gem "actionpack"
gem "thin"
@drogus
drogus / Gemfile
Created April 24, 2012 18:43
AbstractController
gem "actionpack"
@drogus
drogus / Gemfile
Created April 23, 2012 18:34
Webmachine + ActionView pt2
source "http://rubygems.org"
gem "webmachine"
gem "actionpack"
gem "thin"
gem "datamapper"
gem "dm-migrations"
gem "dm-sqlite-adapter"
gem "debugger"
@drogus
drogus / Gemfile
Created April 2, 2012 23:18
Webmachine + ActionView
source "http://rubygems.org"
gem "webmachine"
gem "actionpack"
gem "thin"
gem "datamapper"
gem "dm-migrations"
gem "dm-sqlite-adapter"
gem "debugger"
@drogus
drogus / config.ru
Created March 4, 2012 22:13
Rails Lightweight Stack. Most of this is detailed on Crafting Rails Applications - http://pragprog.com/book/jvrails/crafting-rails-applications
# Run this file with `RAILS_ENV=production rackup -p 3000 -s thin`
# Be sure to have rails and thin installed.
require "rubygems"
# We are not loading Active Record, nor the Assets Pipeline, etc.
# This could also be in your Gemfile.
gem "actionpack", "~> 3.2"
gem "railties", "~> 3.2"
# The following lines should come as no surprise. Except by
#!/bin/bash
curl -OL http://rubyforge.org/frs/download.php/75415/ruby-debug-base19-0.11.26.gem
curl -OL http://rubyforge.org/frs/download.php/75414/linecache19-0.5.13.gem
gem install linecache19-0.5.13.gem
gem install ruby-debug-base19-0.11.26.gem -- --with-ruby-include="${MY_RUBY_HOME/rubies/src}"
gem install ruby-debug19
rm ruby-debug-base19-0.11.26.gem
rm linecache19-0.5.13.gem
CREATE OR REPLACE FUNCTION array_array_agg_sfunc(state integer[][], p integer[]) RETURNS integer[][] AS $$
BEGIN
IF p IS NULL THEN
RETURN state;
END IF;
IF array_dims(state) IS NULL THEN
RETURN ARRAY[p];
END IF;
RETURN array_cat(state, p);
END;
@drogus
drogus / persistent_connections.rb
Created October 17, 2011 18:32
persistent connections example
# This example fetches accounts of my 10 followers using Github's API
# One version uses Connection: keep-alive, the other one uses Connection: close
require 'net/https'
require 'uri'
require 'json'
require 'benchmark'
def request(uri, persistent = true)
req = Net::HTTP::Get.new uri