From 63d02f70449837bcb16b83ea166177b1adeed753 Mon Sep 17 00:00:00 2001 From: Marin Date: Tue, 8 Jul 2014 09:04:55 -0700 Subject: [PATCH 1/6] separate tools from libs --- README.md | 90 +++++++++++++++++++++++++++++-------------------------- 1 file changed, 48 insertions(+), 42 deletions(-) diff --git a/README.md b/README.md index b71e9f76..3561ba15 100644 --- a/README.md +++ b/README.md @@ -31,15 +31,16 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a - [Game Development](#game-development) - [GUI](#gui) - [OpenGL](#opengl) - - [Editor Plugins](#editor-plugins) - [Third-party APIs](#third-party-apis) - [Package Management](#package-management) - - [DevOps Tools](#devops-tools) - [Utilities](#utilities) - [Logging](#logging) - - [Code Analysis and Linter](#code-analysis-and-linter) - [Code generation & ‘generics’](#code-generation--generics) - [Embeddable Scripting Languages](#embeddable-scripting-languages) +- [Go Tools](#go-tools) + - [Code Analysis and Linter](#code-analysis) + - [Development Tools](#development-tools) + - [Editor Plugins](#editor-plugins) - [Resources](#resources) - [Websites](#websites) - [(e)Books](#ebooks) @@ -296,14 +297,6 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [terrago](https://github.com/sarenji/terrago) - Fractal terrain generator in Go. * [glop](https://github.com/runningwild/glop) - Glop (Game Library Of Power) is a fairly simple cross-platform game library. -## Editor Plugins - -*Awesome plugins for editors.* - -* [vim-go](https://github.com/fatih/vim-go) - Go development plugin for Vim. -* [GoSublime](https://github.com/DisposaBoy/GoSublime) - A Golang plugin collection for the text editor SublimeText 2 providing code completion and other IDE-like features. -* [go-lang-idea-plugin](https://github.com/go-lang-plugin-org/go-lang-idea-plugin) Go-lang plugin for Intellij IDEA. - ## GUI *Libraries for building GUI Applications* @@ -336,37 +329,14 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [godep](https://github.com/tools/godep) - dependency tool for go, godep helps build packages reproducibly by fixing their dependencies. -## DevOps Tools - -*Software and libraries for DevOps.* - -* [Circuit](https://github.com/gocircuit/circuit) - Circuit is a programmable platform-as-a-service (PaaS) and/or Infrastructure-as-a-Service (IaaS), for management, discovery, synchronization and orchestration of services and hosts comprising cloud applications. -* [Docker](http://www.docker.com/) - An open platform for distributed applications for developers and sysadmins. -* [Go-AWS-Auth](https://github.com/smartystreets/go-aws-auth) - AWS (Amazon Web Services) request signing library -* [Gogs](http://gogs.io/) - A Self Hosted Git Service in the Go Programming Language. -* [confd](https://github.com/kelseyhightower/confd) - Manage local application configuration files using templates and data from etcd or consul. -* [etcd](https://github.com/coreos/etcd) - A highly-available key value store for shared configuration and service discovery. -* [fleet](https://github.com/coreos/fleet) - A Distributed init System. -* [gaudi](http://gaudi.io/) - Gaudi automates the setup of isolated and decoupled dev environments. -* [hk] (https://github.com/heroku/hk) - Heroku command-line interface in Go -* [juju](https://juju.ubuntu.com/) - Automate your cloud infrastructure -* [tsuru](http://www.tsuru.io/) - An extensible and open source Platform as a Service software. ## Utilities *General utilities and tools to make your life easier.* -* [Boom](https://github.com/rakyll/boom) - Boom is a tiny program that sends some load to a web application. * [cli](https://github.com/codegangsta/cli) - A small package for building command line apps in Go * [coop](https://github.com/rakyll/coop) - Cheat sheet for some of the common concurrent flows in Go -* [go-selfupdate](https://github.com/sanbornm/go-selfupdate) - Enable your Go applications to self update -* [godbg](https://github.com/sirnewton01/godbg) - Web-based gdb front-end application -* [gox](https://github.com/mitchellh/gox) - A dead simple, no frills Go cross compile tool. -* [goxc](https://github.com/laher/goxc) - build tool for Go, with a focus on cross-compiling and packaging. -* [GVM](https://github.com/moovweb/gvm) - GVM provides an interface to manage Go versions. -* [Mora](https://github.com/emicklei/mora) - REST server for accessing MongoDB documents and meta data * [mp](https://github.com/sanbornm/mp) - A simple cli email parser. It currently takes stdin and outputs JSON. -* [Postman](https://github.com/zachlatta/postman) - Command-line utility for batch-sending email. ## Logging @@ -378,14 +348,6 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [seelog](https://github.com/cihub/seelog) - logging functionality with flexible dispatching, filtering, and formatting. * [stdlog](https://github.com/alexcesaro/log) - Stdlog is an object-oriented library providing leveled logging. It is very useful for cron jobs. - -## Code Analysis and Linter - -*Libraries and tools for analysing, parsing and manipulation codebases.* - -* [GoLint](https://github.com/golang/lint) - Golint is a linter for Go source code. - - ## Code generation & ‘generics’ *Tools for brining generics-like functionality to Go via code generation* @@ -405,6 +367,50 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [otto](https://github.com/robertkrimen/otto) - A JavaScript interpreter written in Go * [v8-go](https://github.com/idada/v8.go/) - V8 JavaScript engine bindings for Go +# Go Tools + +*Development software and plugins* + +## Code Analysis + +*Tools for analysing, parsing and manipulation of go code.* + +* [GoLint](https://github.com/golang/lint) - Golint is a linter for Go source code. +* [doc](http://godoc.org/code.google.com/p/rspace.cmd/doc) - Go documenation tool that produces an alternative doc format. +* [goast-viewer](https://github.com/yuroyoro/goast-viewer) - Web based Golang AST visualizer. +* [goimports](https://github.com/bradfitz/goimports) - Tool to fix (add, remove) your Go imports automatically. + +## Development Tools + +*Go tools for your development cycle* + +* [Boom](https://github.com/rakyll/boom) - Boom is a tiny program that sends some load to a web application. +* [Circuit](https://github.com/gocircuit/circuit) - Circuit is a programmable platform-as-a-service (PaaS) and/or Infrastructure-as-a-Service (IaaS), for management, discovery, synchronization and orchestration of services and hosts comprising cloud applications. +* [Docker](http://www.docker.com/) - An open platform for distributed applications for developers and sysadmins. +* [GVM](https://github.com/moovweb/gvm) - GVM provides an interface to manage Go versions. +* [Go-AWS-Auth](https://github.com/smartystreets/go-aws-auth) - AWS (Amazon Web Services) request signing library +* [Gogs](http://gogs.io/) - A Self Hosted Git Service in the Go Programming Language. +* [Mora](https://github.com/emicklei/mora) - REST server for accessing MongoDB documents and meta data +* [Postman](https://github.com/zachlatta/postman) - Command-line utility for batch-sending email. +* [confd](https://github.com/kelseyhightower/confd) - Manage local application configuration files using templates and data from etcd or consul. +* [etcd](https://github.com/coreos/etcd) - A highly-available key value store for shared configuration and service discovery. +* [fleet](https://github.com/coreos/fleet) - A Distributed init System. +* [gaudi](http://gaudi.io/) - Gaudi automates the setup of isolated and decoupled dev environments. +* [go-selfupdate](https://github.com/sanbornm/go-selfupdate) - Enable your Go applications to self update +* [godbg](https://github.com/sirnewton01/godbg) - Web-based gdb front-end application +* [gox](https://github.com/mitchellh/gox) - A dead simple, no frills Go cross compile tool. +* [goxc](https://github.com/laher/goxc) - build tool for Go, with a focus on cross-compiling and packaging. +* [hk] (https://github.com/heroku/hk) - Heroku command-line interface in Go +* [juju](https://juju.ubuntu.com/) - Automate your cloud infrastructure +* [tsuru](http://www.tsuru.io/) - An extensible and open source Platform as a Service software. + +## Editor Plugins + +*Awesome plugins for editors.* + +* [GoSublime](https://github.com/DisposaBoy/GoSublime) - A Golang plugin collection for the text editor SublimeText 2 providing code completion and other IDE-like features. +* [go-lang-idea-plugin](https://github.com/go-lang-plugin-org/go-lang-idea-plugin) Go plugin for IntelliJ IDEA. +* [vim-go](https://github.com/fatih/vim-go) - Go development plugin for Vim, combines many of the vim go plugins. # Resources From 027e4699711c993d1fd070ce26c79d709d0aa3f5 Mon Sep 17 00:00:00 2001 From: Marin Date: Tue, 8 Jul 2014 09:14:17 -0700 Subject: [PATCH 2/6] seperate development specific software from other software --- README.md | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 3561ba15..e00012ac 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a - [Code Analysis and Linter](#code-analysis) - [Development Tools](#development-tools) - [Editor Plugins](#editor-plugins) + - [Software](#software) - [Resources](#resources) - [Websites](#websites) - [(e)Books](#ebooks) @@ -369,7 +370,7 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a # Go Tools -*Development software and plugins* +*Go software and plugins* ## Code Analysis @@ -385,24 +386,16 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a *Go tools for your development cycle* * [Boom](https://github.com/rakyll/boom) - Boom is a tiny program that sends some load to a web application. -* [Circuit](https://github.com/gocircuit/circuit) - Circuit is a programmable platform-as-a-service (PaaS) and/or Infrastructure-as-a-Service (IaaS), for management, discovery, synchronization and orchestration of services and hosts comprising cloud applications. -* [Docker](http://www.docker.com/) - An open platform for distributed applications for developers and sysadmins. * [GVM](https://github.com/moovweb/gvm) - GVM provides an interface to manage Go versions. * [Go-AWS-Auth](https://github.com/smartystreets/go-aws-auth) - AWS (Amazon Web Services) request signing library * [Gogs](http://gogs.io/) - A Self Hosted Git Service in the Go Programming Language. * [Mora](https://github.com/emicklei/mora) - REST server for accessing MongoDB documents and meta data -* [Postman](https://github.com/zachlatta/postman) - Command-line utility for batch-sending email. -* [confd](https://github.com/kelseyhightower/confd) - Manage local application configuration files using templates and data from etcd or consul. -* [etcd](https://github.com/coreos/etcd) - A highly-available key value store for shared configuration and service discovery. -* [fleet](https://github.com/coreos/fleet) - A Distributed init System. * [gaudi](http://gaudi.io/) - Gaudi automates the setup of isolated and decoupled dev environments. * [go-selfupdate](https://github.com/sanbornm/go-selfupdate) - Enable your Go applications to self update * [godbg](https://github.com/sirnewton01/godbg) - Web-based gdb front-end application * [gox](https://github.com/mitchellh/gox) - A dead simple, no frills Go cross compile tool. * [goxc](https://github.com/laher/goxc) - build tool for Go, with a focus on cross-compiling and packaging. * [hk] (https://github.com/heroku/hk) - Heroku command-line interface in Go -* [juju](https://juju.ubuntu.com/) - Automate your cloud infrastructure -* [tsuru](http://www.tsuru.io/) - An extensible and open source Platform as a Service software. ## Editor Plugins @@ -412,6 +405,19 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [go-lang-idea-plugin](https://github.com/go-lang-plugin-org/go-lang-idea-plugin) Go plugin for IntelliJ IDEA. * [vim-go](https://github.com/fatih/vim-go) - Go development plugin for Vim, combines many of the vim go plugins. +## Software + +*Software written in Go* + +* [Circuit](https://github.com/gocircuit/circuit) - Circuit is a programmable platform-as-a-service (PaaS) and/or Infrastructure-as-a-Service (IaaS), for management, discovery, synchronization and orchestration of services and hosts comprising cloud applications. +* [Docker](http://www.docker.com/) - An open platform for distributed applications for developers and sysadmins. +* [Postman](https://github.com/zachlatta/postman) - Command-line utility for batch-sending email. +* [confd](https://github.com/kelseyhightower/confd) - Manage local application configuration files using templates and data from etcd or consul. +* [etcd](https://github.com/coreos/etcd) - A highly-available key value store for shared configuration and service discovery. +* [fleet](https://github.com/coreos/fleet) - A Distributed init System. +* [juju](https://juju.ubuntu.com/) - Automate your cloud infrastructure +* [tsuru](http://www.tsuru.io/) - An extensible and open source Platform as a Service software. + # Resources Where to discover new Go libraries. From b62eb2fe87770b80a826edd92273da176d0c70d6 Mon Sep 17 00:00:00 2001 From: Marin Date: Tue, 8 Jul 2014 09:25:36 -0700 Subject: [PATCH 3/6] cleanup --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 5dc3e26d..866510a9 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a - [Code generation & ‘generics’](#code-generation--generics) - [Embeddable Scripting Languages](#embeddable-scripting-languages) - [Go Tools](#go-tools) - - [Code Analysis and Linter](#code-analysis) + - [Code Analysis](#code-analysis) - [Development Tools](#development-tools) - [Editor Plugins](#editor-plugins) - [Software](#software) @@ -379,25 +379,25 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a *Tools for analysing, parsing and manipulation of go code.* * [GoLint](https://github.com/golang/lint) - Golint is a linter for Go source code. -* [doc](http://godoc.org/code.google.com/p/rspace.cmd/doc) - Go documenation tool that produces an alternative doc format. +* [doc](http://godoc.org/code.google.com/p/rspace.cmd/doc) - Go documentation tool that produces an alternative doc format. * [goast-viewer](https://github.com/yuroyoro/goast-viewer) - Web based Golang AST visualizer. * [goimports](https://github.com/bradfitz/goimports) - Tool to fix (add, remove) your Go imports automatically. ## Development Tools -*Go tools for your development cycle* +*Go tools for your development cycle.* * [Boom](https://github.com/rakyll/boom) - Boom is a tiny program that sends some load to a web application. * [GVM](https://github.com/moovweb/gvm) - GVM provides an interface to manage Go versions. -* [Go-AWS-Auth](https://github.com/smartystreets/go-aws-auth) - AWS (Amazon Web Services) request signing library +* [Go-AWS-Auth](https://github.com/smartystreets/go-aws-auth) - AWS (Amazon Web Services) request signing library. * [Gogs](http://gogs.io/) - A Self Hosted Git Service in the Go Programming Language. -* [Mora](https://github.com/emicklei/mora) - REST server for accessing MongoDB documents and meta data +* [Mora](https://github.com/emicklei/mora) - REST server for accessing MongoDB documents and meta data. * [gaudi](http://gaudi.io/) - Gaudi automates the setup of isolated and decoupled dev environments. -* [go-selfupdate](https://github.com/sanbornm/go-selfupdate) - Enable your Go applications to self update -* [godbg](https://github.com/sirnewton01/godbg) - Web-based gdb front-end application +* [go-selfupdate](https://github.com/sanbornm/go-selfupdate) - Enable your Go applications to self update. +* [godbg](https://github.com/sirnewton01/godbg) - Web-based gdb front-end application. * [gox](https://github.com/mitchellh/gox) - A dead simple, no frills Go cross compile tool. * [goxc](https://github.com/laher/goxc) - build tool for Go, with a focus on cross-compiling and packaging. -* [hk] (https://github.com/heroku/hk) - Heroku command-line interface in Go +* [hk] (https://github.com/heroku/hk) - Heroku command-line interface in Go. ## Editor Plugins @@ -405,11 +405,11 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [GoSublime](https://github.com/DisposaBoy/GoSublime) - A Golang plugin collection for the text editor SublimeText 2 providing code completion and other IDE-like features. * [go-lang-idea-plugin](https://github.com/go-lang-plugin-org/go-lang-idea-plugin) Go plugin for IntelliJ IDEA. -* [vim-go](https://github.com/fatih/vim-go) - Go development plugin for Vim, combines many of the vim go plugins. +* [vim-go](https://github.com/fatih/vim-go) - Go development plugin for Vim, combines many of the Vim go plugins. ## Software -*Software written in Go* +*Software written in Go.* * [Circuit](https://github.com/gocircuit/circuit) - Circuit is a programmable platform-as-a-service (PaaS) and/or Infrastructure-as-a-Service (IaaS), for management, discovery, synchronization and orchestration of services and hosts comprising cloud applications. * [Docker](http://www.docker.com/) - An open platform for distributed applications for developers and sysadmins. @@ -417,7 +417,7 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [confd](https://github.com/kelseyhightower/confd) - Manage local application configuration files using templates and data from etcd or consul. * [etcd](https://github.com/coreos/etcd) - A highly-available key value store for shared configuration and service discovery. * [fleet](https://github.com/coreos/fleet) - A Distributed init System. -* [juju](https://juju.ubuntu.com/) - Automate your cloud infrastructure +* [juju](https://juju.ubuntu.com/) - Configure, deploy, manage and monitor Openstack infrastructure. * [tsuru](http://www.tsuru.io/) - An extensible and open source Platform as a Service software. # Resources From 3d16ef5fad8b75a62978635db0040d0a6a9abbf2 Mon Sep 17 00:00:00 2001 From: Marin Date: Tue, 8 Jul 2014 10:33:20 -0700 Subject: [PATCH 4/6] cleanup tools section --- README.md | 46 ++++++++++++++++++++++++++-------------------- 1 file changed, 26 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 866510a9..402a0205 100644 --- a/README.md +++ b/README.md @@ -37,11 +37,12 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a - [Logging](#logging) - [Code generation & ‘generics’](#code-generation--generics) - [Embeddable Scripting Languages](#embeddable-scripting-languages) -- [Go Tools](#go-tools) +- [Tools](#tools) - [Code Analysis](#code-analysis) - - [Development Tools](#development-tools) - [Editor Plugins](#editor-plugins) - - [Software](#software) + - [Software Packages](#software-packages) + - [DevOps Tools](#devops-tools) + - [Other Software](#other-software) - [Resources](#resources) - [Websites](#websites) - [(e)Books](#ebooks) @@ -98,6 +99,7 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a *Libraries for implementing authentications schemes.* +* [Go-AWS-Auth](https://github.com/smartystreets/go-aws-auth) - AWS (Amazon Web Services) request signing library. * [goauth](https://github.com/alloy-d/goauth) - A Go library for doing header-based OAuth over HTTP or HTTPS. Mostly created for working with Twitter. * [httpauth](https://github.com/goji/httpauth) - HTTP Authentication middleware. * [jwt-go](https://github.com/dgrijalva/jwt-go) - Golang implementation of JSON Web Tokens (JWT). @@ -370,7 +372,7 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [otto](https://github.com/robertkrimen/otto) - A JavaScript interpreter written in Go * [v8-go](https://github.com/idada/v8.go/) - V8 JavaScript engine bindings for Go -# Go Tools +# Tools *Go software and plugins* @@ -383,21 +385,6 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [goast-viewer](https://github.com/yuroyoro/goast-viewer) - Web based Golang AST visualizer. * [goimports](https://github.com/bradfitz/goimports) - Tool to fix (add, remove) your Go imports automatically. -## Development Tools - -*Go tools for your development cycle.* - -* [Boom](https://github.com/rakyll/boom) - Boom is a tiny program that sends some load to a web application. -* [GVM](https://github.com/moovweb/gvm) - GVM provides an interface to manage Go versions. -* [Go-AWS-Auth](https://github.com/smartystreets/go-aws-auth) - AWS (Amazon Web Services) request signing library. -* [Gogs](http://gogs.io/) - A Self Hosted Git Service in the Go Programming Language. -* [Mora](https://github.com/emicklei/mora) - REST server for accessing MongoDB documents and meta data. -* [gaudi](http://gaudi.io/) - Gaudi automates the setup of isolated and decoupled dev environments. -* [go-selfupdate](https://github.com/sanbornm/go-selfupdate) - Enable your Go applications to self update. -* [godbg](https://github.com/sirnewton01/godbg) - Web-based gdb front-end application. -* [gox](https://github.com/mitchellh/gox) - A dead simple, no frills Go cross compile tool. -* [goxc](https://github.com/laher/goxc) - build tool for Go, with a focus on cross-compiling and packaging. -* [hk] (https://github.com/heroku/hk) - Heroku command-line interface in Go. ## Editor Plugins @@ -407,7 +394,26 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [go-lang-idea-plugin](https://github.com/go-lang-plugin-org/go-lang-idea-plugin) Go plugin for IntelliJ IDEA. * [vim-go](https://github.com/fatih/vim-go) - Go development plugin for Vim, combines many of the Vim go plugins. -## Software +## Software Packages + +*Software written in Go* + +### DevOps Tools + +*Go tools for your development cycle.* + +* [Boom](https://github.com/rakyll/boom) - Boom is a tiny program that sends some load to a web application. +* [GVM](https://github.com/moovweb/gvm) - GVM provides an interface to manage Go versions. +* [Gogs](http://gogs.io/) - A Self Hosted Git Service in the Go Programming Language. +* [Mora](https://github.com/emicklei/mora) - REST server for accessing MongoDB documents and meta data. +* [gaudi](http://gaudi.io/) - Gaudi automates the setup of isolated and decoupled dev environments. +* [go-selfupdate](https://github.com/sanbornm/go-selfupdate) - Enable your Go applications to self update. +* [godbg](https://github.com/sirnewton01/godbg) - Web-based gdb front-end application. +* [gox](https://github.com/mitchellh/gox) - A dead simple, no frills Go cross compile tool. +* [goxc](https://github.com/laher/goxc) - build tool for Go, with a focus on cross-compiling and packaging. +* [hk] (https://github.com/heroku/hk) - Heroku command-line interface in Go. + +### Other Software *Software written in Go.* From 409e49fd1babf1415f74396110d9660e6093226e Mon Sep 17 00:00:00 2001 From: Marin Date: Tue, 8 Jul 2014 10:38:22 -0700 Subject: [PATCH 5/6] cleanup subsections --- README.md | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/README.md b/README.md index 402a0205..57f0f02b 100644 --- a/README.md +++ b/README.md @@ -374,12 +374,10 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a # Tools -*Go software and plugins* +Go software and plugins. ## Code Analysis -*Tools for analysing, parsing and manipulation of go code.* - * [GoLint](https://github.com/golang/lint) - Golint is a linter for Go source code. * [doc](http://godoc.org/code.google.com/p/rspace.cmd/doc) - Go documentation tool that produces an alternative doc format. * [goast-viewer](https://github.com/yuroyoro/goast-viewer) - Web based Golang AST visualizer. @@ -388,8 +386,6 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a ## Editor Plugins -*Awesome plugins for editors.* - * [GoSublime](https://github.com/DisposaBoy/GoSublime) - A Golang plugin collection for the text editor SublimeText 2 providing code completion and other IDE-like features. * [go-lang-idea-plugin](https://github.com/go-lang-plugin-org/go-lang-idea-plugin) Go plugin for IntelliJ IDEA. * [vim-go](https://github.com/fatih/vim-go) - Go development plugin for Vim, combines many of the Vim go plugins. @@ -400,8 +396,6 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a ### DevOps Tools -*Go tools for your development cycle.* - * [Boom](https://github.com/rakyll/boom) - Boom is a tiny program that sends some load to a web application. * [GVM](https://github.com/moovweb/gvm) - GVM provides an interface to manage Go versions. * [Gogs](http://gogs.io/) - A Self Hosted Git Service in the Go Programming Language. @@ -415,8 +409,6 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a ### Other Software -*Software written in Go.* - * [Circuit](https://github.com/gocircuit/circuit) - Circuit is a programmable platform-as-a-service (PaaS) and/or Infrastructure-as-a-Service (IaaS), for management, discovery, synchronization and orchestration of services and hosts comprising cloud applications. * [Docker](http://www.docker.com/) - An open platform for distributed applications for developers and sysadmins. * [Postman](https://github.com/zachlatta/postman) - Command-line utility for batch-sending email. From 48421fc1489b514696469c4beeaabbec921f34bd Mon Sep 17 00:00:00 2001 From: Marin Date: Tue, 8 Jul 2014 10:48:19 -0700 Subject: [PATCH 6/6] cleanup --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 57f0f02b..1cfd8b39 100644 --- a/README.md +++ b/README.md @@ -392,7 +392,7 @@ Go software and plugins. ## Software Packages -*Software written in Go* +Software written in Go. ### DevOps Tools