Video: Go Build flags #golang https://golangnews.com/stories/3050-video-go-build-flags
Here's my writeup about using @TensorFlow with @golang to break a captcha in a @blacklightai challenge, published a… https://twitter.com/i/web/status/946413994243448832
Twitter
Natalie
Here's my writeup about using @TensorFlow with @golang to break a captcha in a @blacklightai challenge, published at the @GopherAcademy Advents blog! Not only this is my first attempt with #TensorFlow, but this is also my first technical post \o/ #go #golang…
Why Should #PHP Guys Learn #Golang? http://bit.ly/2CeJQvo #webdevelopment #AppDev https://pbs.twimg.com/media/DSHbGGCUMAAYqge.jpg
Web and Mobile App Development Company | Laitkor Info Solutions
Why Should PHP Guys Learn Golang? | Web and Mobile App Development Company | Laitkor Info Solutions
Go, or Golang is an open source community featuring fast, reliable, and scalable productive languages and is created by Google.
libmqtt の go binding #golang / “GitHub - goiiot/libmqtt: MQTT 3.1.1 client lib with Pure Go” http://htn.to/rhMThWk
GitHub
goiiot/libmqtt
libmqtt - MQTT 3.1.1 client lib with Pure Go
spf13/afero (1.0.1): A FileSystem Abstraction System for #Golang https://mdy.io/gh/spf13/afero
GitHub
spf13/afero
afero - A FileSystem Abstraction System for Go
Why the Go compiler has no warnings: “If it's worth complaining about, it's worth fixing in the code. Having the co… https://twitter.com/i/web/status/946534732908679169
Twitter
John Arundel
Why the Go compiler has no warnings: “If it's worth complaining about, it's worth fixing in the code. Having the compiler generate warnings can make compilation noisy, masking real errors that should be fixed.” https://t.co/FAQeOu9WTs /via @bradfitz #golang
If you've never played with concurrency in #golang the best way to get started is to start simple. Very basic concu… https://twitter.com/i/web/status/946740345404035074
Twitter
Mat Ryer
If you've never played with concurrency in #golang the best way to get started is to start simple. Very basic concurrency for beginners in Go https://t.co/sNR5bRbZK1
Video: Write Once, Run Anywhere - Go for DevOps #devops #linuxconf #golang https://golangnews.com/stories/2534
★ vim-go v1.16 is released with denite.vim support, multiple :GoTest enhancements and tons fixes & improvements. T… https://twitter.com/i/web/status/946785161466834944
Twitter
Fatih Arslan
★ vim-go v1.16 is released with denite.vim support, multiple :GoTest enhancements and tons fixes & improvements. This is our biggest release ever! Check out changelog: https://t.co/8iqAY9IA16 #golang #vim
setting up everything to start the new year with #100daysofcode , tackling #reactjs #es6 #javascript #golang planni… https://twitter.com/i/web/status/946531627521445889
Twitter
Phanor Coll 🇻🇪
setting up everything to start the new year with #100daysofcode , tackling #reactjs #es6 #javascript #golang planning a couple of projects .. practice makes perfect!! everything will begin on January 1st 2018. 😀🇻🇪🇻🇪🇻🇪 https://t.co/GupztiLE3S
Master Go: The most advanced and easy to learn language
#golang #go #nodejs #python #java #ruby #programming… https://twitter.com/i/web/status/946749168588124160
#golang #go #nodejs #python #java #ruby #programming… https://twitter.com/i/web/status/946749168588124160
Twitter
ReactDOM
Master Go: The most advanced and easy to learn language #golang #go #nodejs #python #java #ruby #programming #codenewbie #indiedev https://t.co/xtHTQ4unS4
Writing #microservices in #golang part 5! Utilising message brokers in Go-micro and NATS: https://ewanvalentine.io/microservices-in-golang-part-5/… https://twitter.com/i/web/status/946745666151337985
Ewan Valentine
Create versatile Microservices in Golang - part 5 of 10 part series
Part five of a ten part series in creating microservices in golang. Using technologies such as Docker, Kubernetes, CircleCI, go-micro, MongodDB and more.
TIL this is not a valid #golang program:
package main
func main() {
var s []int
len(s)
}
because… https://twitter.com/i/web/status/946619811471249408
package main
func main() {
var s []int
len(s)
}
because… https://twitter.com/i/web/status/946619811471249408
Twitter
Caleb Spare
TIL this is not a valid #golang program: package main func main() { var s []int len(s) } because of the exception for built-ins at https://t.co/2eGIiXi261.
Very interesting #podcast 'Language Design with Brian Kernighan' at @software_daily #Software #development… https://twitter.com/i/web/status/946710214673354752
Twitter
Vlad Bezden
Very interesting #podcast 'Language Design with Brian Kernighan' at @software_daily #Software #development #cplusplus #javascript #golang #softwaredevelopment #unix #java https://t.co/P2LmHd8Q6D
Video: The Future Of Go - talk by @rob_pike and Q&A #go2 #golang https://golangnews.com/stories/2528
Simple SSH Harvester in #Golang. It piggybacks the SSH certificate callback functions to harvest certificates and h… https://twitter.com/i/web/status/946910143270309889
Twitter
Parsia Hakimian
Simple SSH Harvester in #Golang. It piggybacks the SSH certificate callback functions to harvest certificates and host info. https://t.co/W0A3WxXkpj
Tensorflow and Go https://blog.gopheracademy.com/advent-2017/tensorflow-and-go/ #tensorflow #golang #go #machinelearning #deeplearning #ml
Gopheracademy
TensorFlow and Go
This year I helped organize several online security challenges, one of which is Blacklight. Among the things I was asked to do, was creating a POC for a specific challenge, to prove that it’s possible to solve in a reasonable time.
#golang pop quiz: what does the following program log?
package main
import (
"fmt"
"log"
"strings"
)
func… https://twitter.com/i/web/status/946905445393874944
package main
import (
"fmt"
"log"
"strings"
)
func… https://twitter.com/i/web/status/946905445393874944
Twitter
Dave Cheney
#golang pop quiz: what does the following program log? package main import ( "fmt" "log" "strings" ) func main() { r := strings.NewReader("") defer fmt.Println("done") _, err := https://t.co/uwM9C240Og(make([]byte, 1)) if err != nil { log.Fatal(err) } }