By far the best intro to go I've seen. Pure gold! 🙌🏻
@sameerajmani75388 жыл бұрын
Slides for this talk: talks.golang.org/2016/applicative.slide#1
@serignesow9338 жыл бұрын
Thanks Sameer for all your contributions
@hitzhangjie6 жыл бұрын
Thank you very much for sharing
@neilclay58354 жыл бұрын
Go routines in combination with closures and channels == total awesomeness
@germandiagogomez6 жыл бұрын
I started not liking Go the first time I saw it. But I must say that for writing servers it is amazing and almost unbeatable.
@maxproske19506 жыл бұрын
That was an amazing demo. I loved learning facts about visibility/type declarations/what's enforced by the compiler, as I was learning!
@nisachannel70776 жыл бұрын
Minor correction. Java Generics were introduced in Java 5, not Java 4. Great introduction to Go, specially for someone with a background in Java.
@elidrissii6 жыл бұрын
Absolutely great presentation.
@kamalabuhenamostafa7 жыл бұрын
Well introduction of Go
@Luix5 жыл бұрын
Amazing the tricks to improve performance
@पापानटोले5 жыл бұрын
Is it 21st century Erlang?
@TheSrishanbhattarai7 жыл бұрын
Great demo!
@boot-strapper7 жыл бұрын
Really great demo!
@AvindraGoolcharan3 жыл бұрын
9:45 where does Rust fit into this paradigm? :)
@sirnawaz3 жыл бұрын
It belongs close to C and C++... just above C++.
@ricochetojosdemiel11 ай бұрын
Excelente
@deNudge3 жыл бұрын
I always thought, this should be Japanese (pronounced "sekai"), also meaning "world"...
@Wuselol7 жыл бұрын
Sameer looks a bit like a real life version of Eli Vance from Half Life :D
@jamesbond98105 жыл бұрын
developing countries are going to use huawei 5G so they do not have limitation for network, however....you understand...who has the limitation for network in the future. :)
@harish15086 жыл бұрын
What is the guarantee that my private data in my Go app is not there by Google??
@brendanhonea14325 жыл бұрын
Go is an open source language. That's your guarantee
@netizentrotter5145 жыл бұрын
What's the guarantee that your private data in a Java Application is not being exposed to Oracle?
@ekowcharles78906 жыл бұрын
Scala = Java++ Hahahaha
@kefsound4 жыл бұрын
NEVER
@Simon-xi8tb2 жыл бұрын
do not do what the title says
@llothar687 жыл бұрын
I found it impossible to use because it has no C macro preprocessor. Please add it and i start using it ..... :-)
@walter0bz7 жыл бұрын
many people would use it *because* it has no C macro preprocessor :)However I agree a sanitised macro system (see Rust) is useful. But what if they allowed 'typeless functions' to behave like macros?(like a simplified generic) it wouldn't breach their simplicity much
@Wren69916 жыл бұрын
GCC has a "preprocess only" option. Shove your Go code through GCC first if you really want C macros. One extra line in your makefile!