Skip to content

Instantly share code, notes, and snippets.

View d6rkaiz's full-sized avatar

Isao Sugimoto d6rkaiz

View GitHub Profile
@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"
@d6rkaiz
d6rkaiz / gist:826259
Created February 14, 2011 18:01
lingr api bot post sample.
#-*- coding: utf-8 -*-
require 'rubygems'
require 'uri'
require 'digest/sha1'
require 'curb'
bot_id=BOT_ID
bot_secret=BOT_SECRET
sayroom=SAYROOM
text='post test'
@d6rkaiz
d6rkaiz / gist:826291
Created February 14, 2011 18:18
twitter stream api to lingr room
#-*- coding: utf-8 -*-
require 'digest/sha1'
require 'uri'
require 'rubygems'
require 'tweetstream'
require 'curb'
# --- settings ---
# lingr bot settings.
bot_id=BOT_ID
@d6rkaiz
d6rkaiz / gist:836774
Created February 21, 2011 07:29
JavaScript Alert & Confirm
- (void)webView:(WebView *)sender runJavaScriptAlertPanelWithMessage:(NSString *)message
{
NSRunAlertPanel(@"JavaScript alert", message, @"OK", nil, nil);
}
- (BOOL)webView:(WebView *)sender runJavaScriptConfirmPanelWithMessage:(NSString *)message
{
int choice = NSRunAlertPanel(@"JavaScript confirm", message, @"OK", @"Cancel", nil);
return choice == NSAlertDefaultReturn;
}
<?php
$flag = 1;
if ( $flag ) {
echo "aki is fool.";
} else {
echo "aki is aho.";
}