RelicOfTesla

Results 36 issues of RelicOfTesla

### Describe this feature 支持通过网页来填写配置,安装,而不是手工上去改配置文件,然后一个个指令去打,太麻烦。 网页安装好处就是可以流程化,step by step 配置不同选项。 表单UI安装是非常友好的选项,流程清晰,切/运行功能方便。 现在的go支持html资源内嵌到二进制执行程序中(go:embed),做出的web程序只需要一个二进制文件即可。 2.除了单机安装外,还可以考虑是否支持跨机安装(节点/多集群)。即两台机子都是用web install后互联互配。 ### Describe the solution you'd like 例如 ./kk web_install [--port=xxx] 监听 http://:xxxx网页 [ 可选:打印出安装访问密码 xxxxxxx (随机),访问安装程序时需要输入这个安装密码 ]...

kind/feature-request

```go func makeFn(a int) event.ListenerFunc { return func(e event.Event) error { fmt.Println(a) return nil } } func main() { evBus := event.NewManager("") f1 := makeFn(11) evBus.On("evt1", f1) f2 := makeFn(22)...

bug
good first issue

raw string: ``` 1234 ``` ![33](https://user-images.githubusercontent.com/4145299/169707387-29f5052e-8048-4bb9-b0a8-ef5f20d9d7b0.png) return "lost Position Detection Pattern"

samba server is centos7+docker mac OS client slow or not work this image. (slow speed smb://xxx, not work cifs://xxxx) windows client is not problem

samba server is centos7+docker mac OS client slow or not work this image. (slow speed smb://xxx, not work cifs://xxxx) windows client is not problem

Array.prototype.del = function(){ console.log('aa'); } var a = new Array(); a.push(1); for(var k in a){ console.log(k); } 输出 0 del 导致数组遍历异常

如题。之前的版本是可以的。 看了下,问题在于Fix模块的detectVerticalSquash中用了img.naturalWidth 改成img.naturalWidth || img.width即可(+height)

最新版的go-ethereum(v1.10.21)使用的是github.com/btcsuite/btcd/btcec/v2 v2.2.0 現在gotron-sdk使用的是 github.com/btcsuite/btcd v0.22.0-beta 两个会有冲突。 ```go import ( "crypto/sha256" "github.com/ethereum/go-ethereum/crypto" "github.com/fbsobreira/gotron-sdk/pkg/keys" "github.com/fbsobreira/gotron-sdk/pkg/proto/core" "github.com/golang/protobuf/proto" "github.com/pkg/errors" ) func SignTrxTx(keyword string, txData []byte) ([]byte, string, error) { tx, err := Bytes2TrxTx(txData) if...

```golang import ( "github.com/asaskevich/EventBus" "github.com/stretchr/testify/require" "testing" ) func TestAsaskevichBus_UnsubscribeClosureMiddle(t *testing.T) { callCount := 0 sum := 0 makeFn := func(a int) func() { return func() { callCount++ sum += a...

Support user custom error handle in Must() ( like attach the callstack information ); Support MustE("foo", customErr{A: 11, B: 22}) to recover customErr type.