2490 shaares
83 private links
83 private links
56 results
tagged
golang
Build System using mage
Really good Go template - simple to grasp, good architecture basics!
Go Code Quality
gamedev Entity component system game engine
gamedev
- Build dependencies
- Docker Dockerfile creation
- Automatic Versioning and Version and Build injection
- makefile automations
- Licensing
and much more
Indexing pointer receivers:
Important to put the dereferencing in parantheses when trying to index such as this
(*someSlice)[index] = value
if leaving out the parantheses - someSlice[index] - it will not* work