Explore >> Select a destination


You are here

www.juststeveking.uk
| | mariocarrion.com
10.6 parsecs away

Travel
| | What is REST API? How can we build one using Go?
| | benhoyt.com
13.3 parsecs away

Travel
| | My re-implementation of the code from the official Go tutorial 'Developing a RESTful API with Go and Gin', using only the standard library, adding tests, and fixing issues.
| | linksort.com
10.6 parsecs away

Travel
| | In writing a REST API, we have to deal with at least two types of errors. Client errors: These errors are the fault of the user, e.g., providing an invalid...
| | sookocheff.com
114.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.