Skip to content

Instantly share code, notes, and snippets.

View ikawaha's full-sized avatar

ikawaha ikawaha

View GitHub Profile
@KEINOS
KEINOS / README.md
Last active February 9, 2023 02:51
JSON file of Joyo kanjis(常用漢字) to facilitate the search for Japanese kanji readings.

Jōyō Kanjis 2010(常用漢字読み仮名)

In this gist we provide 2 JSON files.

@hnakamur
hnakamur / main.go
Last active February 12, 2023 00:15
A go example to stop a worker goroutine when Ctrl-C is pressed (MIT License)
package main
import (
"fmt"
"os"
"os/signal"
"time"
"golang.org/x/net/context"
)
@voluntas
voluntas / eval.rst
Last active October 31, 2024 23:12
評価制度の無い評価制度
@ToQoz
ToQoz / go-coveralls
Created May 8, 2014 06:14
golangでサブディレクトリのパッケージも含めたカバレッジをcoverallsに送るやつ
#!/bin/sh
COV_PARTIAL_FILE=profile.cov.out
COV_FILE=profile-all.cov.out
COV_MODE=count
HEADER="mode: $COV_MODE"
if which gxargs > /dev/null; then
XARGS=gxargs