Skip to content

Instantly share code, notes, and snippets.

View do9iigane's full-sized avatar

Hiroyuki Yokoshima(毒眼鏡) do9iigane

  • bilcom
View GitHub Profile
@Gab-km
Gab-km / github-flow.ja.md
Last active March 21, 2025 03:38 — forked from juno/github-flow.ja.md
GitHub Flow (Japanese translation)
@myobie
myobie / mountain-lion-brew-setup.markdown
Created February 18, 2012 20:14
Get Mountain Lion and Homebrew to Be Happy

Get Mountain Lion and Homebrew to Be Happy

1) Install XCode 4.4 into /Applications

Get it from the App Store.

2) Install Command Line Tools

In XCode's Preferences > Downloads you can install command line tools.

@drewwells
drewwells / Custom.css
Created October 26, 2011 19:30 — forked from anonymous/gist:1258555
Solarized Dark Theme (with sidebar and view-source colors) for Google Chrome Dev Tools
/**********************************************/
/*
/* Solarized Dark Skin by Mark Osborne - 2011
/*
/* Based on IR_Black Skin by Ben Truyman:
/* https://gist.github.com/1245727
/*
/* and Todd Werth's IR_Black:
/* http://blog.toddwerth.com/entries/2
/*
@yuya-takeyama
yuya-takeyama / colorize_access_log.rb
Created February 8, 2011 05:47
Colorizes your Apache's access logs.
#!/usr/bin/env ruby
STDIN.each do |line|
puts line.sub(/"(?:(PUT|POST|GET|HEAD|DELETE|OPTIONS) ([^\s]*)) (HTTP\/\d\.\d)" (\d+)/, "\"\e[1;31m\\1\e[0m \e[1;32m\\2\e[0m \\3\" \e[1;33m\\4\e[0m")
end