Skip to content

Instantly share code, notes, and snippets.

@sr
sr / gist:3277766
Created August 6, 2012 19:23 — forked from rzezeski/gist:3250870
detect bad merge index files
#!/usr/bin/env escript
%% -*- erlang -*-
-include_lib("kernel/include/file.hrl").
-compile(export_all).
-define(LOG(S), io:format(S)).
-define(LOG(S,A), io:format(S,A)).
main(Dirs) ->
CodePath = case os:getenv("RIAK_LIB") of
@sr
sr / ci.rake
Created July 27, 2010 11:33 — forked from albertoperdomo/ci.rake
namespace :ci do
task :copy_yml do
sh "cp #{Rails.root}/config/example_database.yml #{Rails.root}/config/database.yml"
end
desc "Prepare for CI and run entire test suite"
task :build do
ENV["RACK_ENV"] = "test"
Rake::Task['db:migrate'].invoke
Rake::Task['db:test:prepare'].invoke
@sr
sr / todo
Created July 31, 2009 23:16 — forked from vangberg/todo
#!/bin/sh
# Best To-Do List. Ever.
#
# Usage:
# 1. Add a new item to list: `todo This needs to be fixed`
# 2. Edit the to-do list: `todo -e`
# 3. Show the current to-do's: `todo`
if [[ $1 ]]; then
if [ $1 = "-e" ]; then
@sr
sr / test.rb
Created February 24, 2009 03:00 — forked from brynary/gist:69372
module Rack
module Test
module Session
attr_reader :last_response
attr_reader :last_request
alias_method :response, :last_response
alias_method :request, :last_request
def initialize(app)
@sr
sr / base.rb
Created January 31, 2009 01:33 — forked from rtomayko/base.rb
class Foo < Sinatra::Base
host_name "sinatrarb.com"
user_agent /Mosaic/
provides :xml
get '/' do
"Welcome!"
end
get '/' do
"You are not to be welcomed!"
@sr
sr / twicl
Created January 30, 2009 16:03 — forked from leahneukirchen/twicl
#!/usr/bin/env ruby
# -*- ruby -*-
# twitter command line client
# That's What I Call Lame
# 09nov2008 +chris+
require 'json'
require 'open-uri'
@sr
sr / bot.rb
Created January 28, 2009 21:19 — forked from vangberg/gist:54192
# Meh, I went overboard. Usage:
#
# To tweet, write in channel:
# nancie, tweet this: some nice thing about sinatra and stuff
# To give permissions, private message:
# /msg nancie allow awesome_user
#
# Additional extensions are welcome.
require 'rubygems'
@sr
sr / init.rb
Created January 22, 2009 18:22 — forked from jnewland/init.rb
# A Sinatra App as a Rails Plugin
#
# In your Edge Rails app:
#
# ruby script/plugin install git://gist.github.com/50625.git
require 'sinatra/base'
class SinatraRailsPlugin < Sinatra::Base
@sr
sr / from.rb
Created December 14, 2008 01:06 — forked from bmizerany/from.rb
get '/:id' do
@vent = Vent.get(params[:id])
erb :show
end
# show post
get '/:id.xml' do
@vent = Vent.get(params[:id])
builder :show
end
=begin
Shooter
<http://gist.github.com/25886>
Harry Vangberg <http://trueaffection.net>
Simon Rozet <http://purl.org/net/sr/>
EXAMPLE
IRC.shoot('irc://irc.freenode.net:6667/integrity', :as => "IntegrityBot") do |channel|