Skip to content

Instantly share code, notes, and snippets.

View equinox79's full-sized avatar

Jun-ichiro Suzuki equinox79

View GitHub Profile
package main
import "fmt"
func main () {
// 見つめ合う
fmt.Println("おっくせんまん!おっくせんまん!!")
defer fmt.Println("ジャパン!!!");
}
@stantonk
stantonk / doit
Created November 15, 2012 22:46
Install python 2.7.3 on CentOS 5.8
#!/bin/bash
# Source: http://toomuchdata.com/2012/06/25/how-to-install-python-2-7-3-on-centos-6-2/
yum groupinstall "Development tools"
yum install zlib-devel
yum install bzip2-devel openssl-devel ncurses-devel
wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tar.bz2
tar xf Python-2.7.3.tar.bz2
cd Python-2.7.3
@nojimage
nojimage / http_socket_proxy.php
Created September 20, 2011 07:09
HttpSocket support proxy in CakePHP 1.3
<?php
/**
* HttpSocket support Proxy
*
* for CakePHP 1.3+
* PHP version 5.2+
*
* Copyright 2011, nojimage (http://php-tips.com/)
*
* Licensed under The MIT License