Andrus Diaz German

Results 18 comments of Andrus Diaz German

There are different ways to do it, a simple one is to create a room for that user ```go server.OnConnect("/", func(s socketio.Conn) error { userID := s.ID() // Create room...

In the .bat file that runs the binaries if you can add the 'set' command in windows ```bat set GO_ROOT=C:\goroot\ set OTHER_ENV=value runcomand... ``` On linux it would be to...

@jxsl13 Doing some research seems to be a vulnerability reported by kubernetes, is related to the library `gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=` which is in the `go.sum`. [kubernetes/issues/89535](https://github.com/kubernetes/kubernetes/issues/89535)

You have to convert afero.Fs to an afero.IOFS ```go fs := afero.NewOsFs() template.New("somedir").ParseFS(afero.NewIOFS(fs)) ```

This doesn't seem to be a library problem, this is due to the functioning of de 'os'. ```go infos, _ := os.ReadDir("/tmp/foo") for _, info := range infos { fmt.Println("",...

Can you provide details of your `go env`. I did different tests, and everything seems to work fine for me ```go package main import ( "encoding/json" "log" "os" "github.com/spf13/afero" )...

It seems to me that aws-cli should take into account having an older `~/.kube/config` configuration, a warning should help identify the problem for beginners more easily

I am sincerely proud of everyone who worked on this amazing project. No one said stop using atom, it just didn't get enough support. It was a pleasure accompanying everyone...

Checking my pull request list, I see that this has not been confirmed for more than 3 years, I'm willing to update it, but surely the documentation will change with...

@andydotxyz I had no idea widgets were transparent, this helps in customization of simple widgets