- 画面上のキーの一覧を一覧化
- その場で編集もできる
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'yajl' | |
require 'yaml' | |
trap('INT') { exit 130 } | |
inputs = ARGV.empty? ? [STDIN] : ARGV.map{|file| open(file) } | |
@y = Yajl::Parser.new | |
@y.on_parse_complete = lambda {|data| print data.to_yaml } |
foo,bar,baz
hoge,fuga,pyio
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package gistpack | |
import "fmt" | |
func Gistpack() { | |
fmt.Println("This is a package served using Gist") | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
func main() { | |
var ret Type | |
retryErr := retry.Do(3, retry.Exponential(time.Second), func() error { | |
ret, err := SomeFunc() | |
return err | |
}) |
- 飲む
- 打つ
- 買う
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{"foo":"bar"},{"\u3042\u3044\u3046\u3048\u304a":"\u304b\u304d\u304f\u3051\u3053"}] |