Skip to content

Instantly share code, notes, and snippets.

@mirakui
mirakui / mirakui.xml
Created December 13, 2010 10:40
Custom Theme Font for MacOffice 2011 ~/Library/Application\ Support/Microsoft/Office/ユーザー\ テンプレート/個人用テーマ/Theme\ Fonts/mirakui.xml
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<a:fontScheme name="mirakui" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
<a:majorFont>
<a:latin typeface="Stone Sans ITC TT"/>
<a:ea typeface=""/>
<a:cs typeface=""/>
<a:font script="Jpan" typeface="小塚ゴシック Pr6N H"/>
<a:font script="Hang" typeface="맑은 고딕"/>
<a:font script="Hans" typeface="宋体"/>
<a:font script="Hant" typeface="新細明體"/>
@mirakui
mirakui / .vimrc
Created November 22, 2011 11:22
マジックコメントでfiletypeを変更できない件
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
@mirakui
mirakui / nenshu.rb
Created December 1, 2011 13:36
うわっ…私の二分探索ショボすぎ…?
require "rubygems"
require "rest-client"
OFFSET = 700
STEP = 100
def exist?(url)
res = RestClient.head url
res.code == 200
rescue
@mirakui
mirakui / gist:1443041
Created December 7, 2011 14:38
puts with format
[STDOUT, STDERR].each do |io|
io.instance_eval do
def puts_with_format(*arg)
print "[#{Time.now.strftime("%Y-%m-%d %H:%M:%S")} ##{$$}] "
puts_without_format *arg
end
alias puts_without_format puts
alias puts puts_with_format
end
end
@mirakui
mirakui / readonly_console.rb
Created May 1, 2012 02:08
readonly rails console using Arproxy
#!/usr/bin/env ruby
APP_PATH = File.expand_path('../../config/application', __FILE__)
require File.expand_path('../../config/boot', __FILE__)
require 'rails/commands/console'
require APP_PATH
Rails.application.require_environment!
require "arproxy"
module Arproxy
class Readonly < Base
@mirakui
mirakui / how-to-use
Created May 22, 2012 14:04
Remote operation script
$ cat script.txt
grep hoge /var/log/nginx/access.log
$ rop.rb -H 'app-0{01..05}' -f script.txt
/tmp/rop/0522-2306-11/app-001
/tmp/rop/0522-2306-11/app-002
/tmp/rop/0522-2306-11/app-003
/tmp/rop/0522-2306-11/app-004
/tmp/rop/0522-2306-11/app-005
@mirakui
mirakui / benchmarker.txt
Created June 12, 2012 14:09
WTF profiler and benchmarker in Rails 3.2
% rails -v
Rails 3.2.5
% rails benchmarker -h
Usage: rails benchmarker 'Ruby.code' 'Ruby.more_code' ... [OPTS]
-r, --runs N Number of runs.
Default: 4
-o, --output PATH Directory to use when writing the results.
Default: tmp/performance
-m, --metrics a,b,c Metrics to use.
Default: wall_time,memory,objects,gc_runs,gc_time
# coding: utf-8
class Hoge
attr_accessor :hoge?
end
hoge = Hoge.new
hoge.hoge? = true
p hoge.hoge? # => true
@mirakui
mirakui / foo_controller.rb
Created August 20, 2012 15:18
大域的なperform_cachingの値にかかわらずcaches_actionのテストをする
class FooController < ApplicationController
caches_action :index
def index
render :text => Time.now
end
end
@mirakui
mirakui / unicorn_restart.rb
Created August 27, 2012 03:54
Restarting Unicorn Synchronously
#!/usr/bin/env ruby
require "optparse"
def usage
STDERR.puts "usage: #{$0} /path/to/unicorn.pid [-t timeout_sec]"
end
timeout = 60
pidfile = ARGV.shift