Tweets
- Tweets, current page.
- Tweets & replies
- Media
You blocked @inancgumus
Are you sure you want to view these Tweets? Viewing Tweets won't unblock @inancgumus
-
Pinned Tweet
#LearnGoProgramming Yearly Recap 2017 What's inside? + All articles from 2017 + 2017 and 2018 goals Some stats: + I wrote 100,000 words in total (After edits: 20,000 words in total) + 2.500+ unique people followed me in total Enjoy! https://blog.learngoprogramming.com/2017-yearly-recap-5349f6d7d67b …#golangpic.twitter.com/xuTaOdj3Bg
Thanks. Twitter will use this to make your timeline better. UndoUndo -
Prevent bugs: Declare constants by skipping the first one. type status int const ( _ status = iota running paused stopped ) var st status // now, zero-value isn't `running`
#golangThanks. Twitter will use this to make your timeline better. UndoUndo -
String values are not utf-8. Only string literals are utf-8. I just saw a wrong stackoverflow answer with dozens of votes as if it's the correct answer. So, I wanted to share this.
#golangThanks. Twitter will use this to make your timeline better. UndoUndo -
D. Letterman: “How did you know so much about computers?” Grace Hopper: “I didn’t, it was the first one”
#programmingpic.twitter.com/Lxiw6HCBgI
Thanks. Twitter will use this to make your timeline better. UndoUndo -
Thanks. Twitter will use this to make your timeline better. UndoUndo
-
Thanks. Twitter will use this to make your timeline better. UndoUndo
-
How to save the princess?
#toggl#javascript#c#csharp#java#lisp#golang#pascal#php#programming
pic.twitter.com/KeT79lkwjc
Thanks. Twitter will use this to make your timeline better. UndoUndo -
What does this
#golang program print? package main import "fmt" //
retweet: if you like it
var ( a = 1; b, c = 2, a+b )
var _ = func() int { a = 2; return a }()
func main() {
fmt.Print(a+b+c)
}Thanks. Twitter will use this to make your timeline better. UndoUndo -
Thanks. Twitter will use this to make your timeline better. UndoUndo
-
Don't fight with
#golang, embrace it. Then you will be happy and productive wizard.#programmingThanks. Twitter will use this to make your timeline better. UndoUndo -
Thanks. Twitter will use this to make your timeline better. UndoUndo
-
Inanc Gumus Retweeted
I am searching for a role as a Senior Backend Engineer
Ideally you work with Go, Docker, Kubernetes.
I’m happy to relocate
More details:https://pliutau.com/page/hire-me/ Thanks. Twitter will use this to make your timeline better. UndoUndo -
Are you 30+ and a programmer? Is this still true? https://newrepublic.com/article/117088/silicons-valleys-brutal-ageism … (from 2014 by
@noamscheiber)Thanks. Twitter will use this to make your timeline better. UndoUndo -
Why do you want to learn
#golang or what pulled you to Go in the first place?Thanks. Twitter will use this to make your timeline better. UndoUndo -
I think that not every
#developer is a#programmer.Thanks. Twitter will use this to make your timeline better. UndoUndo -
However, there's a fallacy in the text: "typedef" is not "type alias".
Show this threadThanks. Twitter will use this to make your timeline better. UndoUndo -
I've just read a very good comparison between Rust & Go. http://julio.meroh.net/2018/07/rust-vs-go.html …
#rustlang#golangShow this threadThanks. Twitter will use this to make your timeline better. UndoUndo -
Inanc Gumus Retweeted
Here's an announcement for a new library from the
#golang team that I'll be presenting on later today: "Portable Cloud Programming with Go Cloud" https://blog.golang.org/go-cloudThanks. Twitter will use this to make your timeline better. UndoUndo -
What does this program print? If you know "why" of the answer please comment. package main import "fmt" func main() { var f float64 = 1.0 << 53 fmt.Print(f == f+1) }
#golangThanks. Twitter will use this to make your timeline better. UndoUndo -
With
#golang 1.11beta2, experimental web assembly package is released. https://tip.golang.org/pkg/syscall/js/ Cool.Thanks. Twitter will use this to make your timeline better. UndoUndo -
I've been happily living inside my
$GOPATH/src... Go modules, I'm looking at you... (I know it's not default "yet").#golanghttps://groups.google.com/forum/#!topic/golang-dev/a5PqQuBljF4 …Thanks. Twitter will use this to make your timeline better. UndoUndo
Loading seems to be taking a while.
Twitter may be over capacity or experiencing a momentary hiccup. Try again or visit Twitter Status for more information.
I tweet
Evil quizzes are back.
What does this program print?
package main
import "fmt"
func main() {
i := fmt.Sprintf("%p", &[0]int{})
s := fmt.Sprintf("%p", &struct{}{})
if i == s {
fmt.Print("OMG!")
}
}