/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

darkcoding.net
| | divan.dev
2.9 parsecs away

Travel
| | [AI summary] The author explains how understanding Go's internal data structure representations and memory management can help developers avoid common language gotchas like slice sharing and interface nil confusion.
| | golangbot.com
3.0 parsecs away

Travel
| | Arrays are collection of elements of the same type. A slice in Go is a convenient wrapper on top of array.
| | dave.cheney.net
1.8 parsecs away

Travel
| |
| | sookocheff.com
23.2 parsecs away

Travel
| Writing correct programs is hard; writing correct concurrent programs is harder. Java Concurrency in Practice. So, why bother with concurrency? A number of reasons: Concurrency provides a natural method for composing asynchronous code. Concurrency allows your program to avoid blocking user operations. Concurrency provides one of the easiest ways take advantage of multi core systems. As processor counts increase, exploiting concurrency will be an even more important facet of high performance systems.