Dimitri Rog
Dimitri Rog
Without the go.mod an IDE would show errors in a file where modules are used, e.g. 02_package/main/main.go. Why not add a go.mod with just one line? ```go.mod module github.com/GoesToEleven/GolangTraining ```
I have that code ```go func main() { resources := app.RemoteBucket("https://cdnjs.cloudflare.com") styles := []string{"/ajax/libs/materialize/1.0.0/css/materialize.min.css"} scripts := []string{"/ajax/libs/materialize/1.0.0/js/materialize.min.js"} http.Handle("/", &app.Handler{ Name: "Game list", Resources: resources, Styles: styles, Scripts: scripts, }) http.Handle("/game",...
Right now you can only flush all of the mocks, right? What if I want to flush only certain mocks because I want some mocks to remain? The case: I've...
`go1.16.7.darwin-arm64` is available here https://golang.org/dl/ But how do I install 1.16.7 darwin arm64 via gvm? When I do `gvm install 1.16.7`, it installs darwin/amd64.
Hi! We must have search feature!  I think you can find it somewhere here https://github.com/Microsoft/vscode/blob/de70176d06e457c96bdbeecea4f4c3aaa4208d92/src/vs/workbench/services/search/node/searchService.ts#L197
Can't one create a matrix of custom elements, e.g. objects, like `{type:'something'}`? I noticed that only numbers are supported
**What happened**: If a fleet has replicas specified, the fleet allocator will fail to scale the fleet to more than N replicas specified in the fleet spec. **What you expected...
### Is there an existing issue for this? - [X] I have searched the existing issues ### Current behavior I change tsconfig.json target to ES2022 I throw an error in...