Skip to content

Instantly share code, notes, and snippets.

@kinopyo
kinopyo / coffee-script-jquery-document-ready
Created July 9, 2011 12:20
All source code snippets used in my blog
jQuery ->
alert "hello"
$ ->
alert "hello"
@kinopyo
kinopyo / 2_methods_benchmark.rb
Created September 6, 2011 01:22
Here're code snippets from the book: Metaprogramming in Ruby.
#---
# Excerpted from "Metaprogramming Ruby",
# published by The Pragmatic Bookshelf.
# Copyrights apply to this code. It may not be used to create training material,
# courses, books, articles, and the like. Contact us if you are in doubt.
# We make no guarantees that this code is fit for any purpose.
# Visit http://www.pragmaticprogrammer.com/titles/ppmetr for more book information.
#---
# the benchmark shows that ghost_reverse( ) is about twice as slow as reverse( )
@kinopyo
kinopyo / solution_1.rb
Created September 9, 2011 01:20
It shows how to enhance ruby class by define a new method to String class. This is just for study.
class String
def sex_code
if ["male", "男"].include? self
0
elsif self == "女"
1
else
self
end
end
@kinopyo
kinopyo / gist:1205708
Created September 9, 2011 07:53
Snippets for using mysql in ruby
require "mysql"
# more examples:
# http://www.kitebird.com/articles/ruby-mysql.html
hostname = 'localhost'
username = 'yourname'
password = 'password'
database = 'mysql'
port = 3306
@kinopyo
kinopyo / production.rb
Created September 24, 2011 09:25
Asset Pipeline settings in production.rb
# Disable Rails's static asset server (Apache or nginx will already do this)
config.serve_static_assets = false
# Compress JavaScripts and CSS
config.assets.compress = true
# Don't fallback to assets pipeline if a precompiled asset is missed
config.assets.compile = false
# Generate digests for assets URLs
@kinopyo
kinopyo / gist:1252946
Created September 30, 2011 07:18
Set Checkbox/Radio button size on iPhone Safari. Change the rate from 1 ~ 2.
input[type=checkbox] {
-webkit-transform: scale(2,2);
}
@kinopyo
kinopyo / custom_logger.rb
Created October 11, 2011 15:40
Custom logger file in Rails
# lib/custom_logger.rb
class CustomLogger < Logger
def format_message(severity, timestamp, progname, msg)
"#{timestamp.to_formatted_s(:db)} #{severity} #{msg}\n"
end
end
logfile = File.open("#{Rails.root}/log/custom.log", 'a') # create log file
logfile.sync = true # automatically flushes data to file
CUSTOM_LOGGER = CustomLogger.new(logfile) # constant accessible anywhere
@kinopyo
kinopyo / rspec_shared_context_example.rb
Created October 13, 2011 10:08
rspec shared_context sample codes.
shared_context "shared stuff" do
before { @some_var = :some_value }
def shared_method
"it works"
end
let(:shared_let) { {'arbitrary' => 'object'} }
subject do
'this is the subject'
end
end
@kinopyo
kinopyo / sinatra_render_html.rb
Created October 21, 2011 07:13
How to render static HTML files in Sinatra.
require 'sinatra'
get '/' do
File.read(File.join('public', 'index.html'))
# or
# send_file File.join(settings.public, 'index.html')
end
@kinopyo
kinopyo / gist:1333112
Created November 2, 2011 07:46
Install ruby 1.9.3-p0 with RVM
rvm get head
rvm reload
rvm install 1.9.3-p0
rvm use 1.9.3