├── .gitignore ├── README.md └── events ├── 2017-08-go1.9-release-party.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.dll 4 | *.so 5 | *.dylib 6 | 7 | # Test binary, build with `go test -c` 8 | *.test 9 | 10 | # Output of the go coverage tool, specifically when used with LiteIDE 11 | *.out 12 | 13 | # Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736 14 | .glide/ 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # cwg 2 | Community outreach Working Group 3 | -------------------------------------------------------------------------------- /events/2017-08-go1.9-release-party.md: -------------------------------------------------------------------------------- 1 | # Go 1.9 Release Party 2 | 3 | We're preparing a whole week of release parties to celebrate Go 1.9 all 4 | around the world. 5 | 6 | The events will happen around the world, starting from 7 | Sydney on August 17, and ending with San Francisco on the 25th. 8 | 9 | If you're organizing a release party in between those 10 | dates, please send a Pull Request adding all of 11 | the corresponding information: 12 | 13 | - date and time 14 | - location 15 | - link to registration page (meetup.com or other) 16 | 17 | One of the talks of the event must be about Go 1.9. We will provide slides 18 | for this talk, but feel free to create your own. 19 | 20 | Please, keep these in chronological order. 21 | 22 | | City | Country | Continent¹ | Date and time | Registration link | 23 | |----------------|--------------|--------------|------------------------|---------------------------------------------------------------------------------| 24 | | Zurich | Switzerland | Europe | August 10th 6:30PM | [meetup](https://www.meetup.com/Zurich-Gophers/events/241810113/) | 25 | | Sydney | Australia | Oceania | August 17th 6PM | [meetup](https://www.meetup.com/golang-syd/events/241998623/) | 26 | | Okayama | Japan | Asia | August 20th 6PM | [connpass](https://connpass.com/event/64370/) | 27 | | Tokyo | Japan | Asia | August 22nd 7PM | [connpass](https://gocon.connpass.com/event/64281/) | 28 | | Wroclaw | Poland | Europe | August 24th 7PM | [meetup](https://www.meetup.com/gowroc/events/241903725/) | 29 | | San Francisco | USA | Americas | August 25th 6PM | [meetup](https://www.meetup.com/golangsf/events/242601514/) | 30 | | Cebu | Philippines | Asia | August 25th 7PM | [meetup](https://www.meetup.com/Golang-Cebu/events/241977637/) | 31 | | Okinawa | Japan | Asia | August 25th 7PM | [doorkeeper](https://okinawa-go.doorkeeper.jp/events/63972) | 32 | | Edmonton | Canada | Americas | August 28th 6:30PM | [meetup](https://www.meetup.com/startupedmonton/events/242022523/) | 33 | | Berlin | Germany | Europe | August 30th 7PM | [meetup](https://www.meetup.com/golang-users-berlin/events/242617466/) | 34 | | Frankfurt | Germany | Europe | September 07th 6:30PM | [meetup](https://www.meetup.com/de-DE/gophers-frm/events/242325815/) | 35 | | Sofia | Bulgaria | Europe | September 12th 6:45PM | [meetup](https://www.meetup.com/Golang-Bulgaria/events/242639745/) | 36 | | London | UK | Europe | September 19th 6:30PM | [meetup](https://www.meetup.com/Go-London-User-Group/events/243176499/) | 37 | | Minneapolis | USA | Americas | September 20th 6PM | [meetup](https://www.meetup.com/Minneapolis-Ultimate-Golang/events/241731116/) | 38 | | Moscow | Russia | Europe | September 21st 6:30PM | [meetup](https://www.meetup.com/Golang-Moscow/events/243355045/) | 39 | 40 | _¹ Continents: Antarctica, Africa, Americas, Asia, Europe, Oceania._ 41 | -------------------------------------------------------------------------------- /events/README.md: -------------------------------------------------------------------------------- 1 | # Events by the COWG 2 | 3 | The Community Outreach Working Group has been an active part, 4 | either as organizers or support, in the following events. 5 | 6 | ## 2017 August - September 7 | 8 | - [Go 1.9 release party](2017-08-go1.9-release-party.md) 9 | --------------------------------------------------------------------------------