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 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
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
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
GitHub
golang/go
go - The Go programming language
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
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
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
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
The Daily Go
A blog engine written in Go, compatible with Ghost themes.
https://github.com/kabukky/journey
#Blog #Repository
A blog engine written in Go, compatible with Ghost themes.
https://github.com/kabukky/journey
#Blog #Repository
GitHub
GitHub - kabukky/journey: A blog engine written in Go, compatible with Ghost themes.
A blog engine written in Go, compatible with Ghost themes. - kabukky/journey
The Daily Go
How to build a simple artificial neural network with Go
https://sausheong.github.io/posts/how-to-build-a-simple-artificial-neural-network-with-go
#NeuralNetwork #Blog #Guide
How to build a simple artificial neural network with Go
https://sausheong.github.io/posts/how-to-build-a-simple-artificial-neural-network-with-go
#NeuralNetwork #Blog #Guide
sausheong's space
How to build a simple artificial neural network with Go - sausheong's space
I have written a lot of computer programs in my career, most of the time to solve various problems or perform some tasks (or sometimes just for fun). For most part, other than bugs, as long as I tell the computer what to do very clearly (in whichever theโฆ
The Daily Go
Memory Optimization In Golang
https://medium.com/@edwardpie/memory-optimization-in-golang-trick-1-59c4a983d015
#trick #blog
Memory Optimization In Golang
https://medium.com/@edwardpie/memory-optimization-in-golang-trick-1-59c4a983d015
#trick #blog
Medium
Memory Optimization In Golang : Trick 1
Iโm going to be straight-forward with you in this post and the aim is to show you one way of saving memory in your Go programs.