Skip to content

Instantly share code, notes, and snippets.

View duguying's full-sized avatar
🎯
Focusing

Rex Lee duguying

🎯
Focusing
View GitHub Profile
@duguying
duguying / gist:da80432136912aebaf5ecaebba3dbe48
Created July 19, 2019 08:02
cgo -rpath指定动态库路径
// #cgo CFLAGS: -Wall
// #cgo LDFLAGS: -Wl,-rpath="/home/liuliang/ffmpeg-build/lib"
// #cgo LDFLAGS: -L/home/liuliang/workspace/wetrip_ffmpeg_demuxer/Debug
// #cgo LDFLAGS: -L/home/liuliang/workspace/wetrip_ffmpeg_demuxer
// #cgo LDFLAGS: -lwetrip_ffmpeg_demuxer -lstdc++ -ljpeg -lpthread -lrt
// #cgo LDFLAGS: -L/home/liuliang/ffmpeg-build/lib
// #cgo LDFLAGS: -lavformat -lavcodec -lswscale -lavutil -lswresample
// #include "test.h"
// #include <stdio.h>
// #include <stdlib.h>
@duguying
duguying / concat.go
Created July 3, 2018 09:55
using bytes.buffer to concat string is better than str+=substr
function main(){
var buffer bytes.Buffer
for i := 0; i < 1000000; i++ {
buffer.WriteString("a")
}
}
@duguying
duguying / create-bootable-image.md
Last active March 28, 2019 18:35
in linux how to create a bootable iso image

if you have mkisofs/genisoimage and say your folder is named "ISOTMP"

genisoimage -r -V "ISO-LABEL" -cache-inodes -J -l \
  -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot \
  -boot-load-size 4 -boot-info-table -o NAME-OF-ISO.iso ISOTMP/

mkisofs -r -V "ISO-LABEL" -cache-inodes -J -l \
  -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot \
  -boot-load-size 4 -boot-info-table -o NAME-OF-ISO.iso ISOTMP/
@duguying
duguying / cancelable_http_client.go
Created August 14, 2017 09:15
golang cancelable http client
package main
import (
"context"
"net/http"
"time"
)
func main() {
cx, cancel := context.WithCancel(context.Background())
@duguying
duguying / bind.bat
Created April 27, 2017 10:00
wiresharke本地抓包前需要绑定网卡
route add 192.168.2.37 mask 255.255.255.255 192.168.1.1 metric 1
route delete 192.168.2.37 mask 255.255.255.255 192.168.1.1 metric 1
# 192.168.1.1 为网关IP
# 192.168.2.37 为网卡IP
@duguying
duguying / concurrency.go
Created April 25, 2017 03:53
并发测试
package main
import (
"crypto/tls"
"fmt"
"io/ioutil"
"net/http"
"strings"
"sync"
"time"
@duguying
duguying / generate_git_authors.sh
Last active April 13, 2017 02:32
generate git author
#!/bin/sh
git log --format='%aN <%aE>' | sort -u > AUTHORS
@duguying
duguying / installSignal.go
Created December 15, 2016 07:02
程序接收退出信号安全退出
package main
import (
"fmt"
"os"
"os/signal"
"syscall"
)
func main() {
@duguying
duguying / channel.go
Created December 14, 2016 15:16
通过channel退出goroutine
package main
import (
"fmt"
"time"
)
func main() {
ch1 := make(chan int, 10)
ch2 := make(chan int, 10)
@duguying
duguying / defer.go
Created November 16, 2016 08:04
a demo for usage of defer
package main
import (
"fmt"
)
func main() {
// defer 的调用是在当前函数 返回之前;多个defer的调用顺序是反向的
defer fmt.Println("Fourth")
panic("exit")