Skip to content

Instantly share code, notes, and snippets.

@xiegeo
xiegeo / quilljs-zh-hant.html
Created May 21, 2019 22:21
Quilljs 1.x Chinese Traditional Translation
<!-- tested with quill v1.3.6, vue-quill v1.5.1 -->
<!-- todo: translation of placeholders -->
<!-- good to have: translation of other modules -->
<style src="../../../node_modules/quill/dist/quill.snow.css"></style>
<style>
.ql-toolbar.ql-snow .ql-formats {
@xiegeo
xiegeo / pprof.go
Created May 18, 2020 08:30
turn on go pprof with a compiler flag/tag
// +build pprof
// run `GODEBUG=gctrace=1,scavtrace=1 go test -bench=.* -benchmem -benchtime=1m -tags pprof` to prof benchmarks
package packagename
import (
"fmt"
"net/http"
_ "net/http/pprof"
"runtime"