Skip to content

Commit

Permalink
feat: add links to The Go Playground
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitryburov committed Oct 8, 2021
1 parent 8736b46 commit aaedbfe
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@ and [source](https://talks.golang.org/2012/concurrency/support/)
- [justforfunc #9: The Context Package](https://www.youtube.com/watch?v=LSzR0VEraWw)
- [Contexts and structs](https://blog.golang.org/context-and-structs)

| Name | Description |
|-----------------------------------------------------------|-----------------------------------------------------|
| [1-boring](/1-boring/main.go) | A hello world to goroutine |
| [2-chan](/2-chan/main.go) | A hello world to go channel |
| [3-generator](/3-generator/main.go) | A python-liked generator |
| [4-fanin](/4-fanin/main.go) | Fan in pattern |
| [5-restore-sequence](/5-restore-sequence/main.go) | Restore sequence |
| [6-select-timeout](/6-select-timeout/main.go) | Add Timeout to a goroutine |
| [7-quit-signal](/7-quit-signal/main.go) | Quit signal |
| [8-daisy-chan](/8-daisy-chan/main.go) | Daisy chan pattern |
| [9-google1.0](/9-google1.0/main.go) | Build a concurrent google search from the ground-up |
| [10-google2.0](/10-google2.0/main.go) | Build a concurrent google search from the ground-up |
| [11-google2.1](/11-google2.1/main.go) | Build a concurrent google search from the ground-up |
| [12-google3.0](/12-google3.0/main.go) | Build a concurrent google search from the ground-up |
| [13-adv-pingpong](/13-adv-pingpong/main.go) | A sample ping-pong table implemented in goroutine |
| [14-adv-subscription](/14-adv-subscription/main.go) | Subscription |
| [15-bounded-parallelism](/15-bounded-parallelism/main.go) | Bounded parallelism |
| [16-context](/16-context/main.go) | How to user context in HTTP client and server |
| [17-ring-buffer-channel](/17-ring-buffer-channel/main.go) | Ring buffer channel |
| [18-worker-pool](/18-worker-pool/main.go) | worker pool pattern |
| Name | Description | Playground |
|-----------------------------------------------------------|-----------------------------------------------------|-----------------------------------------------|
| [1-boring](/1-boring/main.go) | A hello world to goroutine | [play](https://play.golang.org/p/ienqr4bKGQ6) |
| [2-chan](/2-chan/main.go) | A hello world to go channel | [play](https://play.golang.org/p/amazakVmwFy) |
| [3-generator](/3-generator/main.go) | A python-liked generator | [play](https://play.golang.org/p/9ykTDe7qLSw) |
| [4-fanin](/4-fanin/main.go) | Fan in pattern | [play](https://play.golang.org/p/mw_29ibv0bh) |
| [5-restore-sequence](/5-restore-sequence/main.go) | Restore sequence | [play](https://play.golang.org/p/aV43DEmNZBz) |
| [6-select-timeout](/6-select-timeout/main.go) | Add Timeout to a goroutine | [play](https://play.golang.org/p/WIqNvmxiYvn) |
| [7-quit-signal](/7-quit-signal/main.go) | Quit signal | [play](https://play.golang.org/p/rKYKqMeoFDq) |
| [8-daisy-chan](/8-daisy-chan/main.go) | Daisy chan pattern | [play](https://play.golang.org/p/1y-4ERc3Xv4) |
| [9-google1.0](/9-google1.0/main.go) | Build a concurrent google search from the ground-up | [play](https://play.golang.org/p/xMhEBlcYkfz) |
| [10-google2.0](/10-google2.0/main.go) | Build a concurrent google search from the ground-up | [play](https://play.golang.org/p/-J5C9McGG9t) |
| [11-google2.1](/11-google2.1/main.go) | Build a concurrent google search from the ground-up | [play](https://play.golang.org/p/hNc_HStC2BT) |
| [12-google3.0](/12-google3.0/main.go) | Build a concurrent google search from the ground-up | [play](https://play.golang.org/p/uE82kcSDkSJ) |
| [13-adv-pingpong](/13-adv-pingpong/main.go) | A sample ping-pong table implemented in goroutine | [play](https://play.golang.org/p/hT6knhJjBXY) |
| [14-adv-subscription](/14-adv-subscription/main.go) | Subscription | [play](https://play.golang.org/p/J5cjAV-qtaR) |
| [15-bounded-parallelism](/15-bounded-parallelism/main.go) | Bounded parallelism | [play](https://play.golang.org/p/j_aq1dcGkGr) |
| [16-context](/16-context/main.go) | How to user context in HTTP client and server | [play](https://play.golang.org/p/ZKZfKtpEJqH) |
| [17-ring-buffer-channel](/17-ring-buffer-channel/main.go) | Ring buffer channel | [play](https://play.golang.org/p/aeUeCTWhgJ2) |
| [18-worker-pool](/18-worker-pool/main.go) | worker pool pattern | [play](https://play.golang.org/p/CxKoTnzb9Mx) |

0 comments on commit aaedbfe

Please sign in to comment.