I hereby claim:
- I am amorist on github.
- I am amorist (https://keybase.io/amorist) on keybase.
- I have a public key ASADO0UC4lM2tZGw2PeGwJfBFZF2uaJSCHbtfmfG1lsx4go
To claim this, I am signing this object:
go get -u -v github.com/mdempsky/gocode | |
go get -u -v github.com/stamblerre/gocode | |
go get -u -v github.com/uudashr/gopkgs/cmd/gopkgs | |
go get -u -v github.com/ramya-rao-a/go-outline | |
go get -u -v github.com/acroca/go-symbols | |
go get -u -v golang.org/x/tools/cmd/guru | |
go get -u -v golang.org/x/tools/cmd/gorename | |
go get -u -v github.com/fatih/gomodifytags | |
go get -u -v github.com/haya14busa/goplay/cmd/goplay | |
go get -u -v github.com/josharian/impl |
# WeChat aud file converter to wav files | |
# Dependencies: | |
# SILK audio codec decoder (available at https://github.com/gaozehua/SILKCodec) | |
# ffmpeg | |
# | |
# By Gabriel B. Nunes ([email protected]) | |
# Adapted from another script by Nicodemo Gawronski ([email protected]) | |
# | |
import os, argparse, subprocess |
package main | |
import ( | |
"log" | |
"net/http" | |
) | |
func main() { | |
fs := http.FileServer(http.Dir("./")) | |
http.Handle("/", fs) |
pred='process matches ".*(ocker|vpnkit).*" | |
|| (process in {"taskgated-helper", "launchservicesd", "kernel"} && eventMessage contains[c] "docker")' | |
/usr/bin/log stream --style syslog --level=debug --color=always --predicate "$pred" |
crontab -e | |
0 0 * * * docker exec -it onpremise_web_1 sentry cleanup --days 7 && docker exec -it onpremise_postgres_1 vacuumdb -U postgres -d postgres -v -f --analyze |
1 |
I hereby claim:
To claim this, I am signing this object:
// Used in https://jina.ai/tokenizer (Aug. 14th version) | |
// Define variables for magic numbers | |
const MAX_HEADING_LENGTH = 6; | |
const MAX_HEADING_CONTENT_LENGTH = 200; | |
const MAX_HEADING_UNDERLINE_LENGTH = 200; | |
const MAX_HTML_HEADING_ATTRIBUTES_LENGTH = 100; | |
const MAX_LIST_ITEM_LENGTH = 200; | |
const MAX_NESTED_LIST_ITEMS = 5; | |
const MAX_LIST_INDENT_SPACES = 7; | |
const MAX_BLOCKQUOTE_LINE_LENGTH = 200; |