2529 shaares
85 private links
85 private links
57 results
tagged
Golang
Simple http, router, json, restful and service introduction in 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