Apostolis A.
Apostolis A.
@ofabry I dont think that's the problem. @Gnoale uses `-nostd`. For some reason when I use `-nostd` and I go to a complex package, it hangs. I can wait for...
Same issue, to be more specific though: My component uses React hooks. Which might be the case after all. If that's the case, is there any other counter solution to...
@shaiahr Last time I had the "bypassable" issue, I recall that I wanted to edit the description and that's because I was able to reproduce it but in a different...
@gabe2code-opstalent Yeah it seems like it has something to do with rerendering. If you remove the key, you can reproduce that solution (with hot-reload) just by making a simple change...
Yeah, I definitely would love to see Socket.IO supporting golang as well. :) @mofadeyunduo If you're asking whether to use Socket.IO or Websockets alone, I've written an answer on StackOverflow...
I think what @u007 means is that `-watch` supports only `GOPATH` which is the path of golang itself and not the module's directory. I'm having difficulties trying to watch the...
Damn, just realized. :( I'm still using it though, but it has its issues that I guess won't get maintained.
Yeah the `HandleTokenRequest` seems to offer no options to store the token in cookie. If you've found a way @mikepc I would appreciate some guidance :D
The solution ```js evtSource.addEventListener("messageEvt", ((e: MessageEvent) => {}) as EventListener); ``` Doesnt work for me either, when I use it with `React.MouseEvent`. I dont know if it really works in...
I fixed that by converting the map to `sync.Map`. Although, it required a little bit of an ugly solution as `sync.Map` doesn't support types. It's a map of `interface{}` which...