Daniel D'Agostino
Daniel D'Agostino
Hi, Could you provide a Docker image for arm64 that would work on newer Apple M1 chips please? It seems like the image available is amd64 and I'm not able...
I'd like to contribute, so I cloned the repo and did `npm install` and got: ``` npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR!...
### Is your feature request related to a problem? Please describe N/A ### Describe the solution you'd like It would be really nice if you could add syntax highlighting support...
Hi, You've got this code in the [Implement `Square`](https://github.com/softchris/golang-book/blob/main/02-data-types/04-interfaces/README.md#implement-square) section of your [Interfaces](https://github.com/softchris/golang-book/blob/main/02-data-types/04-interfaces/README.md) lesson: ```go type Square struct { side int } func (s Square) area() int { return s.square...
In the lesson on [Goroutines and channels](https://github.com/softchris/golang-book/blob/main/05-misc/04-goroutines/README.md), you say: > Concurrency is the task of running and managing the multiple computations at the same time. While parallelism is the task...
In the [Create shared module](https://github.com/softchris/golang-book/blob/main/03-projects/03-create-shared-module/README.md) lesson, you have: > The uppercase variables and methods makes the publicly available. I suppose "the" should be "them"?
In the [First project](https://github.com/softchris/golang-book/blob/main/03-projects/01-first-project/README.md) lesson, you wrote: > to use the public `Helper()` function from _main.go_, we need to import it. But the function is actually called `Help()`.