Skip to content

Instantly share code, notes, and snippets.

View rkh's full-sized avatar
👀
heeeyyyy

Konstantin Haase rkh

👀
heeeyyyy
View GitHub Profile
require("rubygems")
require("sinatra")
get("/") {
"Hello, Sinatra, from Fancy!"
}
Sinatra Application run!()
@rkh
rkh / verb_tester.rb
Created March 20, 2011 14:49
Sinatra app to test what verbs your browser supports for forms, it's probably just POST and GET, though... :(
require 'sinatra'
require 'coffee-script'
require 'slim'
require 'sass'
enable :sessions
helpers do
def verbs(&block)
verbs.each(&block) if block
@michaelfeathers
michaelfeathers / methodshark.rb
Created March 9, 2011 15:58
Output the complexity trend of an individual method across its history
#!/usr/bin/env ruby
# Print the complexity over time for a Ruby method in a
# git repository.
#
# Requires: >= bash ?.?
# >= git 1.7.1
# >= ruby 1.9.2
# >= flog 2.5.0
#
@lusis
lusis / EM.spawn_Thin.rb
Created March 1, 2011 18:12
In-process EM.spawn for Sinatra app
#!/usr/bin/env ruby
$:.unshift(File.expand_path(File.join(File.dirname(__FILE__), "..", "lib")))
require 'eventmachine'
require 'thin'
require 'favicon_service'
require 'favicon_service/app'
EventMachine.run do
grabber = EM.spawn {|url|
# Do some stuff with url
>> "1" =~ /(?<a>\d)/ && a
NameError: undefined local variable or method `a' for main:Object
from (irb):5
from /Users/lee/.rvm/rubies/ruby-1.9.2-p180/bin/irb:16:in `<main>'
>> /(?<a>\d)/ =~ "1" && a
=> "1"
rvm install ruby-head-n18 --branch ruby_1_8
rvm alias ruby-head-n18 1.8.8
@rtomayko
rtomayko / gist:814024
Created February 7, 2011 05:11
sample of github git fetch times by protocol
$ uname -a && git --version
Darwin asha.local 10.6.0 Darwin Kernel Version 10.6.0: Wed Nov 10 18:13:17 PST 2010; root:xnu-1504.9.26~3/RELEASE_I386 i386
git version 1.7.2.1
$ git clone git://github.com/github/gitignore.git
$ cd gitignore
$ # fetching over ssh
$ yes | head -5 | (while read ; do time git fetch [email protected]:github/gitignore.git; done) 2>&1 | grep real
real 0m2.103s
#define STRING char *
#define IF if(
#define THEN ){
#define ELSE } else {
#define FI ;}
#define WHILE while (
#define DO ){
#define OD ;}
#define INT int
#define BEGIN {
@rkh
rkh / fun1.rb
Created January 25, 2011 18:33
module ClassHook
extend_object Class
def new(sclass = Object, *args)
super(sclass.to_class, *args)
end
end
module ModuleHook
append_features Module
@skojin
skojin / irb_require_without_bundler_hack.rb
Created January 25, 2011 13:33
workaround to load irb specific gem (loaded in .irbrc) in bundler environment, like rails3 console
# Add all gems in the global gemset to the $LOAD_PATH so they can be used in rails3 console with bundler
if defined?(::Bundler)
$LOAD_PATH.concat Dir.glob("#{ENV['rvm_path']}/gems/#{ENV['rvm_ruby_string']}@global/gems/*/lib")
end