Skip to content

Instantly share code, notes, and snippets.

View greycodee's full-sized avatar
🌈
I may be slow to respond.

灰灰 greycodee

🌈
I may be slow to respond.
View GitHub Profile
@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"
)