Skip to content

Instantly share code, notes, and snippets.

View greycodee's full-sized avatar
✔️
Online

meiki greycodee

✔️
Online
View GitHub Profile
@greycodee
greycodee / sing-box-direct.json
Last active September 19, 2024 07:34
direct
{
"rules": [
{
"domain_keyword": ["flomoapp"]
}
],
"version":1
}
@greycodee
greycodee / breakingtheice_vote_script.js
Last active September 18, 2024 07:36
投票一键选取脚本
const stringArray = ['LinkForge',
'WalrusFS', 'Sui-Gallery',
'SuiSurvey', 'Sui Meet',
'SurgeBuzz',
'Doomsday Protocol',
'Walrus Site Uploader',
'Sui Liquidity', 'Time Capsule',
'sui write3', 'sui-ai-agents',
'Suipet', 'de-docker-hub',
'Sui Jump', 'SuiSeer',
@greycodee
greycodee / simple_redis_client.go
Last active May 20, 2022 07:49
基于 Redis 协议实现的简易客户端【Go 语言版】
package main
import (
"encoding/json"
"flag"
"fmt"
"net"
"strconv"
"strings"
)
@greycodee
greycodee / simple_mysql_client.go
Created March 27, 2022 15:30
MySQL 协议明文连接代码实现[Go语言]
package main
import (
"crypto/sha1"
"encoding/binary"
"fmt"
"github.com/liushuochen/gotable"
"net"
"strings"
)