Skip to content

Instantly share code, notes, and snippets.

View d6rkaiz's full-sized avatar

Isao Sugimoto d6rkaiz

View GitHub Profile
@d6rkaiz
d6rkaiz / gist:9087914
Created February 19, 2014 08:11
go lang build fail on wheezy 7.4
$ hg clone -u release https://code.google.com/p/go
$ cd go/src
$ ./all.bash

snip...

--- FAIL: TestBlockProfile (0.17 seconds)
@d6rkaiz
d6rkaiz / 0_reuse_code.js
Created August 22, 2014 18:08
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@d6rkaiz
d6rkaiz / gist:8242da41792ff5981d7a
Created September 9, 2014 04:05
irb `RDoc::RI::Driver::NotFoundError`
$ irb
irb(main):001:0> help
Enter the method name you want to look up.
You can use tab to autocomplete.
Enter a blank line to exit.
>> \q
RDoc::RI::Driver::NotFoundError: \q
from /Users/d6rkaiz/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/rdoc-4.1.1/lib/rdoc/ri/driver.rb:921:in `block in expand_class'
@d6rkaiz
d6rkaiz / staging.rb
Last active August 29, 2015 14:06 — forked from kenn/staging.rb
require Rails.root.join('config/environments/production')
MyApp::Application.configure do
config.action_dispatch.tld_length = 2 # domain.com vs staging.domain.com
end
@d6rkaiz
d6rkaiz / screenrc
Created August 31, 2010 13:02
screenrc
escape ^Z^Z
defscrollback 4096
hardstatus on
hardstatus alwayslastline
caption always "%{.Kk}%?%F%{.KW}%?%n %t%=%?[%h]%?"
hardstatus string "%{.bW}%-w%{.rW}%n %t%{-}%+w %=%{..Y}[%y/%m/%d %c]"
defbce on
term xterm-256color
multiuser on
altscreen on
@d6rkaiz
d6rkaiz / for screen
Created August 31, 2010 13:05
screen
#!/bin/sh
screen -q -ls
if [ $? -eq 9 -a -z "$STY" ]; then
exec screen -U
else
exec screen -UxRR
fi
@d6rkaiz
d6rkaiz / unicorn.conf
Created December 13, 2010 16:52
unicorn.conf
worker_processes 2
working_directory "/var/www/default"
timeout 30
listen "/tmp/unicorn.socket", :backlog => 64
pid "logs/unicorn.pid"
stderr_path "logs/unicorn.log"
stdout_path "logs/unicorn.log"
@d6rkaiz
d6rkaiz / nginx
Created December 13, 2010 17:05
nginx+unicorn
server {
listen 80;
server_name _;
access_log /var/log/nginx/access.log;
root /var/www/default/public;
location / {
try_files $uri/index.html @unicorn;
}
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int main(int argc, char** argv) {
int max = -1;
int mb = 0;
char* buffer;
if(argc > 1)
@d6rkaiz
d6rkaiz / gist:798776
Created January 27, 2011 16:46
LingrHat css
mkdir -p ~/Library/Application\ Support/LingrHat
echo '.message {font-size:14px !important;}' > ~/Library/Application\ Support/LingrHat/UserStyleSheet.css
echo 'textarea {font-size:14px !important;}' >> ~/Library/Application\ Support/LingrHat/UserStyleSheet.css
defaults write com.drikin.Lingr-Hat WebKitUserStyleSheetEnabledPreferenceKey -bool true
defaults write com.drikin.Lingr-Hat WebKitUserStyleSheetLocationPreferenceKey "~/Library/Application Support/LingrHat/UserStyleSheet.css"