formatted and fixed grammar

Rajiv Singh 2021-06-12 13:00:14 +05:30
parent 19d2d3f867
commit bb5f5e877e

383
Home.md

@ -1,97 +1,95 @@
Welcome to the Go wiki, a collection of information about the [Go Programming Language](https://golang.org/). [Awesome Go](http://awesome-go.com/) is another great resource for Go programmers, curated by the Go community. Welcome to the Go wiki, a collection of information about the [Go Programming Language](https://golang.org/). [Awesome Go](http://awesome-go.com/) is another great resource for Go programmers, curated by the Go community.
## Questions about Go ## ## Questions about Go
See [Questions](Questions). See [Questions](Questions).
## Contributing ## ## Contributing
* This wiki is open to editing by any member of the Go community with a GitHub account. - This wiki is open to editing by any member of the Go community with a GitHub account.
* If you would like to add a new page, please first open an issue in the [Go issue tracker](https://github.com/golang/go/issues) with the prefix 'wiki' to propose the addition. Clearly state why the content does not fit into any of the existing pages. - If you would like to add a new page, please first open an issue in the [Go issue tracker](https://github.com/golang/go/issues) with the prefix 'wiki' to propose the addition. Clearly state why the content does not fit into any of the existing pages.
* Because renaming of pages in the wiki can break external links, please open an issue before renaming or removing any wiki page. - Because renaming of pages in the wiki can break external links, please open an issue before renaming or removing any wiki page.
Table of Contents # Table of Contents
=================
+ [Getting started with Go](#getting-started-with-go) - [Getting started with Go](#getting-started-with-go)
+ [Working with Go](#working-with-go) - [Working with Go](#working-with-go)
+ [Learning more about Go](#learning-more-about-go) - [Learning more about Go](#learning-more-about-go)
+ [The Go Community](#the-go-community) - [The Go Community](#the-go-community)
+ [Using the go toolchain](#using-the-go-toolchain) - [Using the go toolchain](#using-the-go-toolchain)
+ [Additional Go Programming Wikis](#additional-go-programming-wikis) - [Additional Go Programming Wikis](#additional-go-programming-wikis)
+ [Online Services that work with Go](#online-services-that-work-with-go) - [Online Services that work with Go](#online-services-that-work-with-go)
+ [Troubleshooting Go Programs in Production](#troubleshooting-go-programs-in-production) - [Troubleshooting Go Programs in Production](#troubleshooting-go-programs-in-production)
+ [Contributing to the Go Project](#contributing-to-the-go-project) - [Contributing to the Go Project](#contributing-to-the-go-project)
+ [Platform Specific Information](#platform-specific-information) - [Platform Specific Information](#platform-specific-information)
+ [Release Specific Information](#release-specific-information) - [Release Specific Information](#release-specific-information)
+ [Questions](Questions) - [Questions](Questions)
## Getting started with Go ## Getting started with Go
- [The Go Tour](http://tour.golang.org) is the best place to start. - [The Go Tour](http://tour.golang.org) is the best place to start.
- [Effective Go](https://golang.org/doc/effective_go.html) will help you learn how to write idiomatic Go code. - [Effective Go](https://golang.org/doc/effective_go.html) will help you learn how to write idiomatic Go code.
- [Go standard library documentation](https://golang.org/pkg/) to familiarize yourself with the standard library. - [Go standard library documentation](https://golang.org/pkg/) to familiarize yourself with the standard library.
- [Use the Go Playground](http://play.golang.org) to test out Go programs in your browser. - [Use the Go Playground](http://play.golang.org) to test out Go programs in your browser.
- Still not convinced? Check out this list of [Go Users](GoUsers) and a few of their [Success stories](SuccessStories). We've also assembled a long list of reasons [why you should give Go a try](whygo). - Still not convinced? Check out this list of [Go Users](GoUsers) and a few of their [Success stories](SuccessStories). We've also assembled a long list of reasons [why you should give Go a try](whygo).
- Read about the companies which have [switched from other languages to Go](https://github.com/golang/go/wiki/FromXToGo). - Read about the companies which have [switched from other languages to Go](https://github.com/golang/go/wiki/FromXToGo).
## Working with Go ## Working with Go
Ready to write some Go code of your own? Here are a few links to help you get started. Ready to write some Go code of your own? Here are a few links to help you get started.
- Install and Setup your Environment - Install and Setup your Environment
- Start here: [Official Installation Documentation](https://golang.org/doc/install) - Start here: [Official Installation Documentation](https://golang.org/doc/install)
- If you prefer to install from source, [read this first](https://golang.org/doc/install/source). - If you prefer to install from source, [read this first](https://golang.org/doc/install/source).
- [InstallFromSource](InstallFromSource) - Additional tips on source installs. - [InstallFromSource](InstallFromSource) - Additional tips on source installs.
- Windows user? [Install and configure Go, Git and Atom for Windows](https://github.com/abourget/getting-started-with-golang) - Windows user? [Install and configure Go, Git, and Atom for Windows](https://github.com/abourget/getting-started-with-golang)
- Mac user? [How I start - Go](https://howistart.org/posts/go/1) - A step-by-step guide to installing Go and building your first web service. - Mac user? [How I start - Go](https://howistart.org/posts/go/1) - A step-by-step guide to installing Go and building your first web service.
- Having installation problems? [InstallTroubleShooting](InstallTroubleShooting) - Having installation problems? [InstallTroubleShooting](InstallTroubleShooting)
- Make sure you have your [$GOPATH environment variable set correctly](https://golang.org/doc/install/source#gopath) - Make sure you have your [$GOPATH environment variable set correctly](https://golang.org/doc/install/source#gopath)
- If you need additional tips on using [$GOPATH, go here](GOPATH). - If you need additional tips on using [$GOPATH, go here](GOPATH).
- [MultipleGoRoots](MultipleGoRoots) - More advanced information on working with multiple go installations and the `$GOROOT` variable. - [MultipleGoRoots](MultipleGoRoots) - More advanced information on working with multiple go installations and the `$GOROOT` variable.
- [Go IDEs and Editors](IDEsAndTextEditorPlugins) - Information on how to use your favorite editor with Go. - [Go IDEs and Editors](IDEsAndTextEditorPlugins) - Information on how to use your favorite editor with Go.
- [Tools for working with Go code](CodeTools) - Formatting, linting, vetting, refactoring, navigation and visualization. - [Tools for working with Go code](CodeTools) - Formatting, linting, vetting, refactoring, navigation, and visualization.
- Finding Go Libraries and Packages - Finding Go Libraries and Packages
- Start here: [Go open source projects](Projects). - Start here: [Go open source projects](Projects).
- Search for Go packages: [godoc.org](http://godoc.org) - Search for Go packages: [godoc.org](http://godoc.org)
- Visualization of the [Go open source package graph](https://anvaka.github.io/pm/#/galaxy/gosearch?l=1) - Visualization of the [Go open-source package graph](https://anvaka.github.io/pm/#/galaxy/gosearch?l=1)
- [Modules](Modules) - documentation on the dependency management system built into the Go command, added in 1.11. - [Modules](Modules) - documentation on the dependency management system built into the Go command, added in 1.11.
- [Managing your dependencies](PackageManagementTools) - An overview of the tools you can use to manage third-party packages (vendoring). - [Managing your dependencies](PackageManagementTools) - An overview of the tools you can use to manage third-party packages (vendoring).
- Publishing Go Packages as Open Source - Publishing Go Packages as Open Source
- Getting ready to publish your package? [Start here.](PackagePublishing) - Getting ready to publish your package? [Start here.](PackagePublishing)
- [The Go Checklist](https://github.com/matttproud/gochecklist) - A comprehensive guide for publishing a project. - [The Go Checklist](https://github.com/matttproud/gochecklist) - A comprehensive guide for publishing a project.
- [How to layout your GitHub repo](GitHubCodeLayout) to make it easy to for other Go programmers to use with the `go get` command. - [How to layout your GitHub repo](GitHubCodeLayout) to make it easy for other Go programmers to use with the `go get` command.
- [Go Package, Go](https://johnsto.co.uk/blog/go-package-go) - A few recommendations for making Go packages easy to use. - [Go Package, Go](https://johnsto.co.uk/blog/go-package-go) - A few recommendations for making Go packages easy to use.
## Learning more about Go ## Learning more about Go
Once you have an overview of the language, here are resources you can use to learn more. Once you have an overview of the language, here are resources you can use to learn more.
- [Learning Go](Learn) - A collection of resources for learning Go - beginner to advanced. - [Learning Go](Learn) - A collection of resources for learning Go - beginner to advanced.
- [Best Practices for a New Go Developer](https://medium.com/@IndianGuru/best-practices-for-a-new-go-developer-8660384302fc) - Insights from Go community members. - [Best Practices for a New Go Developer](https://medium.com/@IndianGuru/best-practices-for-a-new-go-developer-8660384302fc) - Insights from Go community members.
- [Server programming](LearnServerProgramming) - Building web, mobile, and API servers. - [Server programming](LearnServerProgramming) - Building web, mobile, and API servers.
- [More on concurrency](LearnConcurrency) - [More on concurrency](LearnConcurrency)
- [More on error handling](LearnErrorHandling) - [More on error handling](LearnErrorHandling)
- [More on testing](LearnTesting) - [More on testing](LearnTesting)
- [More on mobile - Android and iOS](Mobile) - [More on mobile - Android and iOS](Mobile)
- [Books](Books) - A list of Go books that have been published (ebook, paper) - [Books](Books) - A list of Go books that have been published (ebook, paper)
- [Blogs](Blogs) - Blogs about Go - [Blogs](Blogs) - Blogs about Go
- [Podcasts](Podcasts) - Podcasts and episodes featuring Go - [Podcasts](Podcasts) - Podcasts and episodes featuring Go
- Videos, Talks and Presentations - Videos, Talks, and Presentations
- [GopherVids](http://gophervids.appspot.com/) (currently unreachable) is a searchable index of videos about Go. - [GopherVids](http://gophervids.appspot.com/) (currently unreachable) is a searchable index of videos about Go.
- [GoTalks](GoTalks) - A collection of talks from Go conferences and meetups. - [GoTalks](GoTalks) - A collection of talks from Go conferences and meetups.
- [Livestreams](Livestreams) - live interactive Go project streams with members of the community - [Livestreams](Livestreams) - live interactive Go project streams with members of the community
- [Screencasts](Screencasts) - [Screencasts](Screencasts)
- [Articles](Articles) - A collection of articles to help you learn more about Go. - [Articles](Articles) - A collection of articles to help you learn more about Go.
- [Training](Training) - Free and commercial, online and classroom training for Go. - [Training](Training) - Free and commercial, online, and classroom training for Go.
- [University Courses](Courses) - A list of CS programs and classes using Go. - [University Courses](Courses) - A list of CS programs and classes using Go.
- [Resources for non-English speakers](NonEnglish) - [Resources for non-English speakers](NonEnglish)
## The Go Community ## The Go Community
Here are some of the places where you can find Gophers online. To get a sense of what it means to be a member of the Go community, read [Damian Gryski's keynote from the GolangUK 2015 conference](https://medium.com/@dgryski/the-go-community-f0d00e3a19e) or watch [Andrew Gerrand's closing keynote from GopherCon 2015](https://www.youtube.com/watch?v=0ht89TxZZnk). Here are some of the places where you can find Gophers online. To get a sense of what it means to be a member of the Go community, read [Damian Gryski's keynote from the GolangUK 2015 conference](https://medium.com/@dgryski/the-go-community-f0d00e3a19e) or watch [Andrew Gerrand's closing keynote from GopherCon 2015](https://www.youtube.com/watch?v=0ht89TxZZnk).
- Where Gophers hangout online: - Where Gophers hangout online:
- [The Go Forum](https://forum.golangbridge.org/) - An all-purpose discussion forum for the Go community. - [The Go Forum](https://forum.golangbridge.org/) - An all-purpose discussion forum for the Go community.
- [Gophers Slack Channel](http://gophers.slack.com/) - For real-time chat ([request membership](http://blog.gopheracademy.com/gophers-slack-community/)). - [Gophers Slack Channel](http://gophers.slack.com/) - For real-time chat ([request membership](http://blog.gopheracademy.com/gophers-slack-community/)).
@ -100,7 +98,7 @@ Here are some of the places where you can find Gophers online. To get a sense of
- On Twitter, follow the [@golang](https://twitter.com/golang) account and keep tabs on the [#golang](https://twitter.com/search?q=%23golang&src=typd) hashtag. - On Twitter, follow the [@golang](https://twitter.com/golang) account and keep tabs on the [#golang](https://twitter.com/search?q=%23golang&src=typd) hashtag.
- We've also got a landing page on [Stack Overflow](http://stackoverflow.com/tags/go) for Go Q&A. - We've also got a landing page on [Stack Overflow](http://stackoverflow.com/tags/go) for Go Q&A.
- Matrix enthusiasts are invited to join [#Go:matrix.org](https://riot.im/app/#/room/#Go:matrix.org). - Matrix enthusiasts are invited to join [#Go:matrix.org](https://riot.im/app/#/room/#Go:matrix.org).
- Discord users are welcome at the [Discord Gophers](https://discord.gg/VF92f7M) server. - Discord users are welcome at the [Discord Gophers](https://discord.gg/VF92f7M) server.
- Hashnode users talk and write about Go in [Hashnode Go community](https://hashnode.com/n/go). - Hashnode users talk and write about Go in [Hashnode Go community](https://hashnode.com/n/go).
- Mailing Lists - Mailing Lists
- The mailing list for Go users is [golang-nuts](https://groups.google.com/forum/#!forum/golang-nuts) - very high traffic. - The mailing list for Go users is [golang-nuts](https://groups.google.com/forum/#!forum/golang-nuts) - very high traffic.
@ -108,154 +106,153 @@ Here are some of the places where you can find Gophers online. To get a sense of
- For discussions about the core Go open source project, join [golang-dev](https://groups.google.com/forum/#!forum/golang-dev). - For discussions about the core Go open source project, join [golang-dev](https://groups.google.com/forum/#!forum/golang-dev).
- To get just our release announcements, join [golang-announce](https://groups.google.com/forum/#!forum/golang-announce) - To get just our release announcements, join [golang-announce](https://groups.google.com/forum/#!forum/golang-announce)
- User Groups & Meetups - There are [Go Meetups in many cities](http://www.meetup.com/find/?allMeetups=false&keywords=golang&radius=Infinity&userFreeform=Sunnyvale%2C+CA&mcId=z94086&mcName=Sunnyvale%2C+CA&sort=recommended&eventFilter=mysugg) - User Groups & Meetups - There are [Go Meetups in many cities](http://www.meetup.com/find/?allMeetups=false&keywords=golang&radius=Infinity&userFreeform=Sunnyvale%2C+CA&mcId=z94086&mcName=Sunnyvale%2C+CA&sort=recommended&eventFilter=mysugg)
- [GoBridge](http://golangbridge.org) - Volunteers helping underrepresented communities to teach technical skills and to foster diversity in Go. - [GoBridge](http://golangbridge.org) - Volunteers helping underrepresented communities to teach technical skills and to foster diversity in Go.
- [Women Who Go](http://www.womenwhogo.org/) - [Women Who Go](http://www.womenwhogo.org/)
- See here for [additional information GoUserGroups](GoUserGroups) - See here for [additional information GoUserGroups](GoUserGroups)
- [GoDiscourse](https://github.com/godiscourse/godiscourse) - Go Discourse is an open source Go based forum from `hello world`. - [GoDiscourse](https://github.com/godiscourse/godiscourse) - Go Discourse is an open-source Go-based forum from `hello world`.
- [Conferences](Conferences) - A list of upcoming and past Go conferences and major events. - [Conferences](Conferences) - A list of upcoming and past Go conferences and major events.
- [Companies using Go](GoUsers) - A comprehensive list of companies using Go throughout the world. - [Companies using Go](GoUsers) - A comprehensive list of companies using Go throughout the world.
- Learn more about the [Go Gopher images](Gopher) by Renee French. - Learn more about the [Go Gopher images](Gopher) by Renee French.
## Using the Go Toolchain ## Using the Go Toolchain
- Start with the standard documentation for the `go` command [available here](https://golang.org/cmd/go/) - Start with the standard documentation for the `go` command [available here](https://golang.org/cmd/go/)
- Start here to learn about [vendoring](https://golang.org/cmd/go/#hdr-Vendor_Directories). - Start here to learn about [vendoring](https://golang.org/cmd/go/#hdr-Vendor_Directories).
- See also [PackageManagementTools](PackageManagementTools) for package management tools. - See also [PackageManagementTools](PackageManagementTools) for package management tools.
- [Cross Compilation](https://rakyll.org/cross-compilation/) - [Cross Compilation](https://rakyll.org/cross-compilation/)
- Shared libraries and Go (buildmode) - Shared libraries and Go (buildmode)
- [Go Shared Libraries](https://github.com/jbuberel/buildmodeshared) - Examples for creating and using shared libraries from Go and Python. - [Go Shared Libraries](https://github.com/jbuberel/buildmodeshared) - Examples for creating and using shared libraries from Go and Python.
- [Sharing Go Packages with C](http://blog.ralch.com/tutorial/golang-sharing-libraries/) - by [@ralch](https://twitter.com/ralch). - [Sharing Go Packages with C](http://blog.ralch.com/tutorial/golang-sharing-libraries/) - by [@ralch](https://twitter.com/ralch).
- [Calling Go libraries from Python](https://blog.filippo.io/building-python-modules-with-go-1-5/) - by Filippo Valsorda - [Calling Go libraries from Python](https://blog.filippo.io/building-python-modules-with-go-1-5/) - by Filippo Valsorda
- [Calling Go libraries from Ruby](http://c7.se/go-and-ruby-ffi/) - by Peter Hellberg - [Calling Go libraries from Ruby](http://c7.se/go-and-ruby-ffi/) - by Peter Hellberg
- [Calling Go libraries from Swift](https://rakyll.org/swift/) - by Jaana Burcu Dogan - [Calling Go libraries from Swift](https://rakyll.org/swift/) - by Jaana Burcu Dogan
- [Build a Ruby Gem with a Go native extension](http://blog.paracode.com/2015/08/28/ruby-and-go-sitting-in-a-tree) - by @jondot - [Build a Ruby Gem with a Go native extension](http://blog.paracode.com/2015/08/28/ruby-and-go-sitting-in-a-tree) - by @jondot
- [gohttplib](https://github.com/shazow/gohttplib) - An experiment in using Go 1.5 buildmode=c-shared. - [gohttplib](https://github.com/shazow/gohttplib) - An experiment in using Go 1.5 buildmode=c-shared.
- See the wikis below for additional details: - See the wikis below for additional details:
- [GoGetTools](GoGetTools) - [GoGetTools](GoGetTools)
- [GoGetProxyConfig](GoGetProxyConfig) - [GoGetProxyConfig](GoGetProxyConfig)
- [cgo](cgo) - [cgo](cgo)
- [CompilerOptimizations](CompilerOptimizations) - [CompilerOptimizations](CompilerOptimizations)
- [GccgoCrossCompilation](GccgoCrossCompilation) - [GccgoCrossCompilation](GccgoCrossCompilation)
- [GcToolchainTricks](GcToolchainTricks) - [GcToolchainTricks](GcToolchainTricks)
- [GoGenerateTools](GoGenerateTools) - [GoGenerateTools](GoGenerateTools)
- [Go Tooling Essentials](https://rakyll.org/go-tool-flags/) - by Jaana Burcu Dogan - [Go Tooling Essentials](https://rakyll.org/go-tool-flags/) - by Jaana Burcu Dogan
## Additional Go Programming Wikis ## Additional Go Programming Wikis
- [Why Go doesn't Support Generics: A Summary of Go Generics Discussions](https://docs.google.com/document/d/1vrAy9gMpMoS3uaVphB32uVXX4pi-HnNjkMEgyAHX4N4/preview) - Start here before you join the debate. - [Why Go doesn't Support Generics: A Summary of Go Generics Discussions](https://docs.google.com/document/d/1vrAy9gMpMoS3uaVphB32uVXX4pi-HnNjkMEgyAHX4N4/preview) - Start here before you join the debate.
- Concurrency - Concurrency
- [Timeouts](Timeouts) - Abandon async calls that take too long - [Timeouts](Timeouts) - Abandon async calls that take too long
- [LockOSThread](LockOSThread) - [LockOSThread](LockOSThread)
- [MutexOrChannel](MutexOrChannel) - When to use one vs the other - [MutexOrChannel](MutexOrChannel) - When to use one vs the other
- [RaceDetector](RaceDetector) - How to detect and fix race conditions - [RaceDetector](RaceDetector) - How to detect and fix race conditions
- Working with Databases - Working with Databases
- [database/sql](http://go-database-sql.org/) - Online tutorial for working with the database/sql package. - [database/sql](http://go-database-sql.org/) - Online tutorial for working with the database/sql package.
- [SQLDrivers](SQLDrivers) - [SQLDrivers](SQLDrivers)
- [SQLInterface](SQLInterface) - [SQLInterface](SQLInterface)
- From other languages - From other languages
- [Go for Java Programmers](http://yourbasic.org/golang/go-java-tutorial/) - [Go for Java Programmers](http://yourbasic.org/golang/go-java-tutorial/)
- [Go for C++ Programmers](GoForCPPProgrammers) - [Go for C++ Programmers](GoForCPPProgrammers)
- Strings - Strings
- [GoStrings](GoStrings) - [GoStrings](GoStrings)
- [String Matching](http://blog.gopheracademy.com/advent-2014/string-matching/) - [String Matching](http://blog.gopheracademy.com/advent-2014/string-matching/)
- [Comments](Comments) - [Comments](Comments)
- [CommonMistakes](CommonMistakes) - [CommonMistakes](CommonMistakes)
- [Errors](Errors) - [Errors](Errors)
- [GcToolchainTricks](GcToolchainTricks) - [GcToolchainTricks](GcToolchainTricks)
- [Hashing](Hashing) - [Hashing](Hashing)
- [HttpFetch](HttpFetch) - [HttpFetch](HttpFetch)
- [HttpStaticFiles](HttpStaticFiles) - [HttpStaticFiles](HttpStaticFiles)
- [InterfaceSlice](InterfaceSlice) - [InterfaceSlice](InterfaceSlice)
- [Iota](Iota) - [Iota](Iota)
- [MethodSets](MethodSets) - [MethodSets](MethodSets)
- [PanicAndRecover](PanicAndRecover) - [PanicAndRecover](PanicAndRecover)
- [Range](Range) - [Range](Range)
- [RateLimiting](RateLimiting) - [RateLimiting](RateLimiting)
- [Rationales](Rationales) - [Rationales](Rationales)
- [SendingMail](SendingMail) - [SendingMail](SendingMail)
- [SignalHandling](SignalHandling) - [SignalHandling](SignalHandling)
- [SimultaneousAssignment](SimultaneousAssignment) - [SimultaneousAssignment](SimultaneousAssignment)
- [SliceTricks](SliceTricks) - [SliceTricks](SliceTricks)
- [Switch](Switch) - [Switch](Switch)
- [TableDrivenTests](TableDrivenTests) - [TableDrivenTests](TableDrivenTests)
## Online Services that work with Go ## Online Services that work with Go
If you're looking for services that support Go, here's a list to get you started. If you're looking for services that support Go, here's a list to get you started.
- Cloud Computing - Go is well supported on most cloud service providers. - Cloud Computing - Go is well supported by most cloud service providers.
- [Amazon Web Services](https://github.com/aws/aws-sdk-go) - [Amazon Web Services](https://github.com/aws/aws-sdk-go)
- [Azure](https://github.com/Azure/azure-sdk-for-go) - [Azure](https://github.com/Azure/azure-sdk-for-go)
- [DigitalOcean](https://github.com/digitalocean/godo) - [DigitalOcean](https://github.com/digitalocean/godo)
- [GE Predix](https://github.com/geaviation/goboot-starter) - [GE Predix](https://github.com/geaviation/goboot-starter)
- [Google Cloud Platform for Go](https://cloud.google.com/go) - [Google Cloud Platform for Go](https://cloud.google.com/go)
- [Heroku](https://github.com/heroku/heroku-buildpack-go) - [Heroku](https://github.com/heroku/heroku-buildpack-go)
- [IBM Bluemix](https://developer.ibm.com/bluemix/2015/10/28/getting-started-with-golang-on-bluemix/) - [IBM Bluemix](https://developer.ibm.com/bluemix/2015/10/28/getting-started-with-golang-on-bluemix/)
- [OpenStack](https://github.com/openstack/golang-client) - [OpenStack](https://github.com/openstack/golang-client)
- [Vscale](https://github.com/vscale/go-vscale) - [Vscale](https://github.com/vscale/go-vscale)
- [Aliyun](https://github.com/aliyun/alibaba-cloud-sdk-go) - [Aliyun](https://github.com/aliyun/alibaba-cloud-sdk-go)
- [Tencent](https://github.com/TencentCloud/tencentcloud-sdk-go) - [Tencent](https://github.com/TencentCloud/tencentcloud-sdk-go)
- See here for [information on additional providers](ProviderIntegration) - See here for [information on additional providers](ProviderIntegration)
- [Continuous Integration and Continuous Deployment](HostedContinuousIntegration) - Go is well supported by most CI/CD frameworks - [Continuous Integration and Continuous Deployment](HostedContinuousIntegration) - Go is well supported by most CI/CD frameworks
- Monitoring/Logging - Monitoring/Logging
- [OpsDash](https://www.opsdash.com/) - Go-based cluster monitoring platform. - [OpsDash](https://www.opsdash.com/) - Go-based cluster monitoring platform.
- Package and Dependency Management - Package and Dependency Management
- [Gopkg.in](http://labix.org/gopkg.in) is a source for stable Go libraries, provided by Gustavo Niemeyer. - [Gopkg.in](http://labix.org/gopkg.in) is a source for stable Go libraries, provided by Gustavo Niemeyer.
## Troubleshooting Go Programs in Production ## Troubleshooting Go Programs in Production
- Understand the performance of your Go apps using the [pprof package](http://blog.golang.org/profiling-go-programs) - Understand the performance of your Go apps using the [pprof package](http://blog.golang.org/profiling-go-programs)
- Heap Dumps - Heap Dumps
- [heapdump13](heapdump13) - [heapdump13](heapdump13)
- [heapdump14](heapdump14) - [heapdump14](heapdump14)
- [heapdump15](https://github.com/golang/go/wiki/heapdump15) - [heapdump15](https://github.com/golang/go/wiki/heapdump15)
## Contributing to the Go Project ## Contributing to the Go Project
- Start by reading the [Go Contribution Guidelines](https://golang.org/doc/contribute.html) - Start by reading the [Go Contribution Guidelines](https://golang.org/doc/contribute.html)
- If you'd like to propose a change to the Go project, start by reading the [Go Change Proposal Process](https://github.com/golang/proposal) - If you'd like to propose a change to the Go project, start by reading the [Go Change Proposal Process](https://github.com/golang/proposal)
- An archive of [design documents is also available](DesignDocuments) - An archive of [design documents is also available](DesignDocuments)
- Go releases happen at ~6 month intervals. [See here for more information](Go-Release-Cycle) - Go releases happen at ~6-month intervals. [See here for more information](Go-Release-Cycle)
- Want to know more about how the [Go source X-repositories are structured?](X-Repositories) - Want to know more about how the [Go source X-repositories are structured?](X-Repositories)
- The Go project requires that all code be reviewed before it is submitted. - The Go project requires that all code be reviewed before it is submitted.
- Read more about our [code review practices](CodeReview) - Read more about our [code review practices](CodeReview)
- If you're commenting on code under review, please read [these guidelines](CodeReviewComments) - If you're commenting on code under review, please read [these guidelines](CodeReviewComments)
- Issues - Issues
- Bug reports and feature requests should be filed using the [GitHub issue tracker](https://github.com/golang/go/issues) - Bug reports and feature requests should be filed using the [GitHub issue tracker](https://github.com/golang/go/issues)
- Want to understand how we [handle issues that are reported?](HandlingIssues) - Want to understand how we [handle issues that are reported?](HandlingIssues)
- Project Dashboards - Project Dashboards
- [Go Builds Dashboard info](DashboardBuilders) - [Go Builds Dashboard info](DashboardBuilders)
- [Performance Dashboard info](PerfDashboard) - [Performance Dashboard info](PerfDashboard)
- [Download failed logs and debugging](https://github.com/golang/go/wiki/Download-build-farm-failed-logs-and-debugging) - [Download failed logs and debugging](https://github.com/golang/go/wiki/Download-build-farm-failed-logs-and-debugging)
## Platform Specific Information ## Platform Specific Information
- See [MinimumRequirements](MinimumRequirements) for minimum platform requirements of current Go ports. - See [MinimumRequirements](MinimumRequirements) for minimum platform requirements of current Go ports.
- Considering porting Go to a new platform? [Read our porting policy first](PortingPolicy) - Considering porting Go to a new platform? [Read our porting policy first](PortingPolicy)
- [Mobile](Mobile) - [Mobile](Mobile)
- [Ubuntu](Ubuntu) - [Ubuntu](Ubuntu)
- [Windows](Windows) - [Windows](Windows)
- [WindowsBuild](WindowsBuild) - [WindowsBuild](WindowsBuild)
- [WindowsCrossCompiling](WindowsCrossCompiling) - [WindowsCrossCompiling](WindowsCrossCompiling)
- [WindowsDLLs](WindowsDLLs) - [WindowsDLLs](WindowsDLLs)
- [GoArm](GoArm) - [GoArm](GoArm)
- [ChromeOS](ChromeOS) - [ChromeOS](ChromeOS)
- [Darwin](Darwin) - [Darwin](Darwin)
- [DragonFly BSD](DragonFly-BSD) - [DragonFly BSD](DragonFly-BSD)
- [FreeBSD](FreeBSD) - [FreeBSD](FreeBSD)
- [Linux](Linux) - [Linux](Linux)
- [NativeClient](NativeClient) - [NativeClient](NativeClient)
- [NetBSD](NetBSD) - [NetBSD](NetBSD)
- [OpenBSD](OpenBSD) - [OpenBSD](OpenBSD)
- [Plan 9](Plan9) - [Plan 9](Plan9)
- [Solaris](Solaris) - [Solaris](Solaris)
## Release Specific Information ## Release Specific Information
- [Go1point1Gotchas](Go1point1Gotchas) - [Go1point1Gotchas](Go1point1Gotchas)
- [OlderVersions](OlderVersions) - [OlderVersions](OlderVersions)
Notes: Notes:
- Please refrain from changing the title of the wiki pages, as some of them might be linked to from [golang.org](https://golang.org) or other websites. - Please refrain from changing the title of the wiki pages, as some of them might be linked to from [golang.org](https://golang.org) or other websites.