Skip to content

Instantly share code, notes, and snippets.

@yougg
yougg / acfun_emoji.sh
Last active September 8, 2019 04:08
AC娘表情包图片下载脚本
#!/bin/bash
#AC娘表情包 01-54
#http://cdn.aixifan.com/dotnet/20130418/umeditor/dialogs/emotion/images/ac/01.gif?v=0.1
#匿名版表情包 01-40
#http://cdn.aixifan.com/dotnet/20130418/umeditor/dialogs/emotion/images/ais/01.gif?v=0.1
#AC新娘表情包 01-55
#http://cdn.aixifan.com/dotnet/20130418/umeditor/dialogs/emotion/images/ac2/01.gif?v=0.1
@xeoncross
xeoncross / unique_sequence_id.go
Created September 11, 2018 19:51
Trying to get a unique ID per instance by using UnixNano + a mutex lock: https://play.golang.org/p/q8OzAXzha3B
package main
import (
"fmt"
"sync"
"time"
)
type Sequence struct {
m sync.Mutex
@aclisp
aclisp / cron.go
Last active November 2, 2023 08:38
优雅结束的定时任务
package job
import (
"fmt"
"git.yy.com/ihago/yalert/v2"
"git.yy.com/ihago/ylog"
"git.yy.com/ihago/ylog/zap"
"git.yy.com/ihago/yruntime"
"github.com/robfig/cron/v3"
"hago-room-srv-metrics2/util"