Skip to content

Instantly share code, notes, and snippets.

View g10guang's full-sized avatar
🤑
Running On My Way

Liu XiGuang g10guang

🤑
Running On My Way
View GitHub Profile
@g10guang
g10guang / go_update_package.md
Created February 4, 2020 06:32
go update package

govendor

govendor fetch github.com/nsqio/go-nsq/...

go mod

go get github.com/nsqio/go-nsq@v1.0.7
@g10guang
g10guang / main.go
Last active April 10, 2020 15:38 — forked from manishtpatel/main.go
GoLang Encrypt string to base64 and vice versa using AES encryption.
package main
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"encoding/base64"
"fmt"
"io"
)
@g10guang
g10guang / go_mmap_example.go
Created July 10, 2020 13:50
go mmap example
package main
import (
"fmt"
"io/ioutil"
"os"
"syscall"
"unsafe"
)
@g10guang
g10guang / cmd.md
Last active May 28, 2021 02:19
unix useful command

delete file exclude pattern:

find . ! -name '*.apk*' -delete

extract apk file

unzip xxxx.apk -d ${target_dir}
@g10guang
g10guang / .ideavimrc
Last active March 26, 2022 09:59
.ideavimrc
set incsearch
set hls
set smartcase
set ignorecase
set visualbell
set noerrorbells
set easymotion