The Daily Go
338 subscribers
53 photos
2 videos
3 files
657 links
We provide you daily Golang contents. If you want to post any content contact with us.
.
Administrators:
๐Ÿ‘‰๐Ÿป@aidenzibaei
๐Ÿ‘‰๐Ÿป@amin_khozaei

#jaryan904259
Download Telegram
The Daily Go
The Go Memory Model

The Go memory model specifies the conditions under which reads of a variable in one goroutine can be guaranteed to observe values produced by writes to the same variable in a different goroutine.

๐Ÿ’ป golng.ml/8826

#Guide #Blog #Memory
The Daily Go
The Go Gopher

Why Gopher is Golang logo ?

When we started the Go project we needed a logo, and Renee volunteered to draw it. It was featured on the first Go T-shirt and the Google Code site.

๐Ÿ’ป golng.ml/1946

#Blog #Gopher
Forwarded from Deleted Account
The Daily Go
From Golang Blog :

Go1.7.4 (released 2016/12/01) includes two security fixes. See the Go 1.7.4 milestone on our issue tracker for details.

#Release #Blog
The Daily Go
HTTP/2 is designed to address many of the failings of HTTP/1.x. Modern web pages use many resources: HTML, stylesheets, scripts, images, and so on. In HTTP/1.x, each of these resources must be requested explicitly. This can be a slow process. The browser starts by fetching the HTML, then learns of more resources incrementally as it parses and evaluates the page. Since the server must wait for the browser to make each request, the network is often idle and underutilized.

HTTP/2 Server Push ...

https://blog.golang.org/h2push

#Guide #Push #Blog
The Daily Go
Gobs of data

To transmit a data structure across a network or to store it in a file, it must be encoded and then decoded again. There are many encodings available, of course: JSON, XML, Google's protocol buffers, and more. And now there's another, provided by Go's gob package.

https://blog.golang.org/gobs-of-data

#Blog #GOB
The Daily Go
If a map isnโ€™t a reference variable, what is it?

https://dave.cheney.net/2017/04/30/if-a-map-isnt-a-reference-variable-what-is-it

#Blog #Guide