Golang - sgml/signature GitHub Wiki
- https://universalglue.dev/posts/csv-to-sqlite/
- https://go.dev/blog/laws-of-reflection
- https://www.digitalocean.com/community/tutorials/how-to-use-struct-tags-in-go
- https://reintech.io/blog/a-guide-to-gos-xml-package-parsing-and-marshaling-xml-data
- https://github.com/tiaguinho/gosoap
- https://medium.com/@matryer/5-simple-tips-and-tricks-for-writing-unit-tests-in-golang-619653f90742#.mjytgulbg
- https://pkg.go.dev/golang.org/x/text/message
package main import ( "fmt" "log" "github.com/belong-inc/go-hubspot" ) func main() { // Initialize the HubSpot client with your private app access token client, err := hubspot.NewClient(hubspot.SetPrivateAppToken("YOUR_ACCESS_TOKEN")) if err != nil { log.Fatalf("Error creating HubSpot client: %v", err) } // Get a contact by ID contactID := "yourContactID" contact, err := client.CRM().Contacts().GetByID(contactID) if err != nil { log.Fatalf("Error getting contact: %v", err) } // Print the contact details fmt.Printf("Contact ID: %s\n", contact.ID) fmt.Printf("Contact Name: %s\n", contact.Properties["firstname"]) }
- https://developer.hashicorp.com/nomad/tutorials/templates/go-template-syntax
- https://golangdocs.com/templates-in-golang
- https://www.npmjs.com/package/@ctrl/golang-template
- https://www.npmjs.com/package/mya-golang-template
- https://github.com/TimoKats/mdrss
- https://eli.thegreenplace.net/2024/notes-on-running-go-in-the-browser-with-webassembly/
- https://divan.dev/talks/2018/kiev/WebGLGo.pdf
- https://par.nsf.gov/servlets/purl/10220886
- https://webengineshackfest.org/2021/slides/irreducible-control-flow-in-webassembly-by-conrad-watt.pdf
- https://docs.insomnia.rest/insomnia/grpc
- https://grpc.io/docs/guides/auth/
- https://github.com/jcmturner/grpckrb
- company: Google
url: https://blog.google/products/development-suite/go-20-released/
- company: Microsoft
url: https://blogs.microsoft.com/developer/2020/08/25/using-go-to-build-high-performance-applications/
- company: Shopify
url: https://www.shopify.com/engineering/using-go-to-improve-performance
- company: Netflix
url: https://netflixtechblog.com/going-go-with-go-2/
- company: Zerodha
url: https://zerodha.com/tech-blog/leveraging-go-for-high-performance-trading-platform/
- https://go.dev/ref/mod
- https://go.dev/play/
- https://pkg.go.dev/reflect
- https://pkg.go.dev/about
- https://go.dev/blog/godoc
- https://go.dev/doc/modules/publishing
- https://go.dev/doc/go1.22
- https://go.dev/blog/
- https://google.github.io/styleguide/go/
- https://go.dev/doc/modules/managing-dependencies
- https://go.dev/doc/effective_go
- https://github.com/golang/go/issues/30208
- https://gobyexample.com/multiple-return-values
- https://pkg.go.dev/golang.org/x/text/message
- https://pkg.go.dev/encoding/csv
- https://pkg.go.dev/encoding/json
- https://go.dev/src/html/entity.go
- https://pkg.go.dev/encoding/asn1
- https://go.dev/tour/moretypes/2
- https://go.dev/src/regexp/example_test.go
- https://pkg.go.dev/errors
- https://pkg.go.dev/time
- https://stackoverflow.com/questions/29721449/how-can-i-print-to-stderr-in-go-without-using-log
- https://pkg.go.dev/go/types
- https://pkg.go.dev/github.com/apple/foundationdb/bindings/go/src/fdb/tuple
- https://go.dev/src/io/io.go
- https://go.dev/blog/laws-of-reflection
- https://tutorialedge.net/golang/go-decorator-function-pattern-tutorial/
- https://blog.risingstack.com/golang-tutorial-for-nodejs-developers-getting-started/
- https://stackoverflow.com/questions/13422381/idiomatically-buffer-os-stdout
- https://astaxie.gitbooks.io/build-web-application-with-golang/content/en/09.1.html
- https://echo.labstack.com/middleware/csrf
- https://news.ycombinator.com/item?id=20578976
- https://go.dev/doc/articles/go_command
- https://pkg.go.dev/cmd/go
- https://www.digitalocean.com/community/tutorials/creating-custom-errors-in-go
- https://ieftimov.com/post/four-steps-daemonize-your-golang-programs/