摘要:
服务端代码 package main import ( "fmt" "net/http" "sync" "github.com/gorilla/websocket" ) var upgrader = websocket.Upgrader{ ReadBufferSize: 1024, WriteBuf 阅读全文
摘要:
md5 两种方式摘要 直接sum 是长度为16的byte 转为16进制输出 data := []byte(str) has := md5.Sum(data) fmt.Println(fmt.Sprintf("%x", has) ) 生成一个hash 接口对象 将字符串写入 转为16进制输出 w := 阅读全文
摘要:
背景 需要安装webplayer 但是chrome 不支持(知道请告诉我)就需要已360急速为主 两个浏览器电脑有点卡 chrome 拓展目录 C:\Users\Administrator\AppData\Local\Google\Chrome\User Data\Default\Extension 阅读全文