RelicOfTesla
RelicOfTesla
rand_key = md5(rand()) now , i can generate a rand password from tmpl file.
```golang hasPanic := false app.ConfigureContainer(func(container *router.APIContainer) { container.EnableStrictMode(true) defer func() { if e := recover(); e != nil { hasPanic = true } }() type good_willInitPanic struct { } container.Handle(http.MethodGet,...
```go h := hero.New() // or func name "ResultHandler" h.DispatchCommonHandler(func(ctx context.Context, statusCode int, contentType string, content []byte, v interface{}, err error, found bool) { // rewrite my result of var...
gost本地监听的大部分是私有协议,对于部分客户端如手机app来说,不好接入。 gost提供给第三方的开放协议,只有已被墙很严重的ss协议、明文的socks/http,建议增加对抗墙的vmess/vless/trojan等协议支持。
pc.client => trojan1.a.com => trojan2.b.com => internet 现在run_type=forward隧道并不能支持上层trojan,需要节点a上间接再开个local socks端口,然后通过a.forward_proxy来连接本机a的client再连b实现。过于繁琐。。可以像goproxy那样,一个参数就能支持多级节点
```go fv, _ := form.NewEncoder().Encode(map[string]string{"a": "b"}) fmt.Printf(`the str="%s"`+"\n", fv.Encode()) ``` ``` the str="%5Ba%5D=b" ``` i will httpPost(xxx, encodeIt(x))
Dose not work some picture.... Debug and found the diffrent run logic at this code https://github.com/zxing/zxing/blob/master/core/src/main/java/com/google/zxing/qrcode/detector/FinderPatternFinder.java line 516 ```java ... public class FinderPatternFinder { .... protected final boolean handlePossibleCenter( .......
实用功能, 例如#1156,就可以用类似隔壁的 gorm.Set("gorm:update_option", "ON DUPLICATE KEY UPDATE count=count+1") 另外select等也可以考虑
socks格式,不支持非v2ray的服务端, 测试网页报 net::ERR_NAME_NOT_RESOLVED 错误 防火墙udp端口已全开 逍遥模拟器安卓镜像7.1 v2rayNG v1.6.23 [gost](https://github.com/ginuerzh/gost) ``` gost -L :5779 ``` [goproxy](https://github.com/snail007/goproxy) ``` proxy socks -t tcp -p "0.0.0.0:5778" ``` 以上两工具,使用安卓WIFI里的代理设置(goproxy是http模式测试的,不算),以及Postern这个app,**是正常的**。 使用v2rayNG连接就不正常,已重试过重装,手工删除所有VPN,无效!
string stm query only support float 10^-16...not support full decimal value.. ```sql // ok select (0.2676120186162537123456789+0.267612018616253712345678912312312312312312312312312123) as field22 // fail // select (0.2676120186162537123456789+'0.267612018616253712345678912312312312312312312312312123') as field22 // tip: quote the number...