Skip to content

Instantly share code, notes, and snippets.

View ton-katsu's full-sized avatar
💭
Thank you Microsoft

ton-katsu ton-katsu

💭
Thank you Microsoft
View GitHub Profile
2015-09-24 19:55:42 +0900
./configure
--with-features=huge
--enable-multibyte
--with-macarchs=x86_64
--enable-perlinterp
--enable-rubyinterp
--enable-tclinterp
--with-tlib=ncurses
package main
import "code.google.com/p/go-tour/pic"
func Pic(dx, dy int) [][]uint8 {
picture := make([][]uint8, dy)
for i := range picture {
picture[i] = make([]uint8, dx)
y := uint8(i)
for j := 0; j < dx; j++ {
package main
import (
"fmt"
"math"
)
func Sqrt(x float64) float64 {
z := float64(1)
for i := 0; i < 10; i++ {
@ton-katsu
ton-katsu / gist:4023148
Created November 6, 2012 06:53
fluentd IPv6 test

ruby version

# ruby --version
ruby 1.9.2p320 (2012-04-20 revision 35421) [x86_64-linux]

td-agent version

rpm -qa | grep td-agent