Explore >> Select a destination


You are here

benoitpasquier.com
| | www.alexedwards.net
6.1 parsecs away

Travel
| |
| | ashishkakkad.com
0.7 parsecs away

Travel
| | Codable is added with Xcode 9, iOS 11 and Swift 4. Codable is used to make your data types encodable and decodable for compatibility with external representations such as JSON. Codable use to support both encoding and decoding, declare conformance to Codable, which combines the Encodable and Decodable protocols. This process is known as making ... Read more
| | etodd.io
6.9 parsecs away

Travel
| | I wrote this article for the Sidebolt company blog. Reposting it here for your reading pleasure! Our latest gameSkyward Slotsmakes extensive use of JSON. We send Gigabytes of it flying back and forth haphazardly between client and server over a WebSocket connection. At first, we wrote code by hand to pack and unpack each message. Later on we decided that life is too short for that. In the beginning, we just dove into the JSON right where we needed it.
| | benhoyt.com
30.2 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.