I hereby claim:
- I am ymotongpoo on github.
- I am ymotongpoo (https://keybase.io/ymotongpoo) on keybase.
- I have a public key whose fingerprint is 0379 FF8F 24F5 27DB AFA5 34E5 2A7A 732B 6D46 69DA
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| go build -buildmode=c-shared -o libgomain.so main.go | |
| gcc main.c -o main ./libgomain.so |
| package main | |
| import ( | |
| "log" | |
| "net/http" | |
| "time" | |
| ) | |
| const ( | |
| TargetURL = `http://www.cloudera.co.jp/shiumachi` |
| package main | |
| import ( | |
| "fmt" | |
| "math/rand" | |
| "runtime" | |
| "strconv" | |
| "sync" | |
| "time" | |
| ) |
| package main | |
| import ( | |
| "encoding/json" | |
| "errors" | |
| "flag" | |
| "fmt" | |
| "io/ioutil" | |
| "log" | |
| "net" |
| package main | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| "net/http" | |
| "net/url" | |
| "strings" | |
| ) |
| package main | |
| import ( | |
| "fmt" | |
| "net/http" | |
| ) | |
| func main() { | |
| http.HandleFunc("/", hello) | |
| http.ListenAndServe(":8000", nil) |
| #!/usr/bin/env python | |
| # -* - coding: utf-8 -*- | |
| import argparse | |
| import inspect | |
| import eyed3 | |
| import eyed3.id3 | |
| def convertID3Encoding(audiofile, backup = False): | |
| tag = audiofile.tag | |
| if not tag: |
| import random | |
| participants = ["ymotongpoo", | |
| "shiumachi", | |
| "mopemope", | |
| "tk0miya", | |
| "shimizukawa", | |
| "kuenishi", | |
| "ransui", | |
| "turky", |
| package main | |
| import "fmt" | |
| func main() { | |
| queue := make(chan string) | |
| out := make(chan int) | |
| foo := []string{"foo","bar","baz","spam","egg","ham"} | |
| var bar = map[string]int{ | |
| "foo": 1, |