Skip to content

Instantly share code, notes, and snippets.

View hooopo's full-sized avatar
🍏
I may be slow to respond.

Hooopo hooopo

🍏
I may be slow to respond.
View GitHub Profile
require "thor/shell"
say("Modifying a new Rails app ...", :yellow)
#----------------------------------------------------------------------------
# Configure
#----------------------------------------------------------------------------
=begin
unless options[:database] == 'sqlite3'
username = ask("What's your database username[root]")
username = 'root' if username.blank?
$(document).ready(function(){
var focus = true;
var count = 0;
var title = document.title;
$(window).focus(function(){
focus = true;
count = 0;
setTimeout(function(){
document.title = title;
@hooopo
hooopo / ruby-1.9-tips.rb
Created May 15, 2011 13:31 — forked from Psli/ruby-1.9-tips.rb
Ruby 1.9 Tips
def tip(msg); puts; puts msg; puts "-"*100; end
#
# 30 Ruby 1.9 Tips, Tricks & Features:
# http://www.igvita.com/2011/02/03/new-ruby-19-features-tips-tricks/
#
tip "Upgrading to Ruby 1.9 is simple: rvm install 1.9.2 && rvm --default 1.9.2"
tip "Ruby 1.9 supports named captures in regular expressions!"
sphinx: &using
address: sphinx-server-host-ip
bin_path: /usr/local/bin
searchd_binary_name: searchd
indexer_binary_name: indexer
enable_star: 1
min_prefix_len: 3
prefix_fields: name
mem_limit: 1024M
morphology: 'none'
@hooopo
hooopo / demo.rb
Created September 28, 2011 10:39
def hello
puts "world"
end
@hooopo
hooopo / Gemfile
Created November 6, 2011 14:08
Gemfile
source 'http://rubygems.org'
# default group
gem "json"
# for mac os
group :darwin do
gem 'rb-fsevent'
gem 'growl'
end
@hooopo
hooopo / coreseek_install.sh
Created November 15, 2011 09:11 — forked from huacnlee/coreseek_install.sh
Coreseek for MySQL 数据源 安装教程
Coreseek (Sphinx) for MySQL 数据源 安装教程
1. 下载源代码
$ wget http://www.coreseek.cn/uploads/csft/3.2/coreseek-3.2.13.tar.gz
$ tar xzf coreseek-3.2.13.tar.gz
$ cd coreseek-3.2.13
2. 中文测试环境检查:
@hooopo
hooopo / pro.log
Created February 4, 2012 17:19
log
grep Completed log/production.log
Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.4ms)
Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.5ms)
Completed 200 OK in 34ms (Views: 32.9ms | ActiveRecord: 0.4ms)
Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.5ms)
Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.5ms)
Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.4ms)
Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.5ms)
Completed 200 OK in 33ms (Views: 32.4ms | ActiveRecord: 0.4ms)
Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.5ms)
@hooopo
hooopo / config.ru
Created March 1, 2012 06:51
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"
require "rails"
# Let's load only action controller. If you want
# to use active record, just require it as well.
require "action_controller/railtie"
class MyApp < Rails::Application
@hooopo
hooopo / 0-readme.md
Created March 5, 2012 01:43
ruby-1.9.3-p125 cumulative performance patch.

Patched ruby 1.9.3-p0 for 30% faster rails boot

What is?

This script installs a patched version of ruby 1.9.3-p0 with patches to make ruby-debug work again (#47) and boot-time performance improvements (#66 and #68), and runtime performance improvements (#83 and #84).

Huge thanks to funny-falcon for the performance patches.