Skip to content

Instantly share code, notes, and snippets.

View SealinGp's full-sized avatar
🎯
Focusing

Nina Martinez SealinGp

🎯
Focusing
View GitHub Profile
@SealinGp
SealinGp / apple.js
Created September 24, 2021 15:14 — forked from imdong/apple.js
/**
* Apple Store 专卖店库存监控
*
* Docker:$ docker run --rm -it -v $(pwd):/app --name="apple" node:alpine node /app/apple.js
*
* 需先: npm i axios
*
* 作者:青石 https://www.qs5.org
*/
package main
import (
"log"
"time"
)
type cond struct {
ch1 chan struct{}
ch2 chan struct{}
@SealinGp
SealinGp / tuntest.go
Last active October 19, 2020 08:48
tuntap test
package main
import (
"fmt"
"os"
"os/exec"
"os/signal"
"strings"
"syscall"
)
@SealinGp
SealinGp / test.go
Created September 27, 2020 03:42
test
import "fmt"
func main() {
fmt.Println("hello world")
}