7 common mistakes in Go and when to avoid them by Steve Francia (Docker)

  Рет қаралды 260,457

Data Council

Data Council

Күн бұрын

Steve Francia talks about most common mistakes in Go #golang and how to avoid them.
ABOUT DATA COUNCIL:
Data Council (www.datacouncil.ai/) is a community and conference series that provides data professionals with the learning and networking opportunities they need to grow their careers. Make sure to subscribe to our channel for more videos, including DC_THURS, our series of live online interviews with leading data professionals from top open source projects and startups.
FOLLOW DATA COUNCIL:
Twitter: / datacouncilai
LinkedIn: / datacouncil-ai
Facebook: / datacouncilai
Eventbrite: www.eventbrite.com/o/data-cou...

Пікірлер: 87
@hz8711
@hz8711 2 жыл бұрын
These kinds of talks where the presenter is a true expert in his field.
@marioskrlec6595
@marioskrlec6595 4 жыл бұрын
I'm on a Go youtube lectures spree and every time a finish one of them, I wanna refactor all the code I've done so far :)
@prakashsharma-uv4pj
@prakashsharma-uv4pj 4 жыл бұрын
Please share the channel url
@moriumbegum4180
@moriumbegum4180 3 жыл бұрын
P
@shiskeyoffles
@shiskeyoffles 2 жыл бұрын
@@prakashsharma-uv4pj ??
@graysonelias8334
@graysonelias8334 2 жыл бұрын
You probably dont care but does someone know a tool to log back into an Instagram account?? I was dumb forgot my password. I appreciate any tips you can offer me!
@MrSkinkarde
@MrSkinkarde 2 жыл бұрын
Why don’t you make actual code ?
@bryanenglish7841
@bryanenglish7841 3 жыл бұрын
Still easily one of the best Go "best practices" video on youtube
@chmod0644
@chmod0644 9 жыл бұрын
Good talk. Hugo powers my blog, and I love it!
@guitaripod
@guitaripod Жыл бұрын
Good talk. It's cool to watch this in 2022, as it can be considered ancient relative to Go's lifetime
@jengo1
@jengo1 7 жыл бұрын
Fantastic talk! I am new to go and had no idea on the proper way to handle errors. I am off to fix my code :D
@impaque
@impaque 6 жыл бұрын
Great stuff, thanks for the lecture!
@naikrovek
@naikrovek 5 жыл бұрын
There needs to be a book on these. He's racing through concepts that could use a lot more detail.
@malcolmgdavis
@malcolmgdavis Ай бұрын
Pointer vs. Value discussion: Based on the Method vs. Function discussion, ADT should be strictly adhered to. Operations that modify the ADT are modeled as functions that take the old state as an argument and return the new state as part of the result. In other words, a function should enforce immutability. The ADT approach helps with concurrency, making the code cleaner and easier to read. As an API user, I shouldn't worry about the state changing when I pass a structure. Of course, the pure ADT model's problem is memory consumption. That's why ADT models are generally implemented in VMs that can routinely find old structures without references and remove them from memory.
@CheyneWallace
@CheyneWallace 5 жыл бұрын
Really great talk. Thanks for this
@castmetal
@castmetal Жыл бұрын
Thank you very much! Great presentation to us!
@brucewang2072
@brucewang2072 5 жыл бұрын
Very helpful, Steve!
@xmlviking
@xmlviking 8 жыл бұрын
Excellent talk I really appreciated the code examples :) Nicely done sir.
@kkmingming
@kkmingming 5 жыл бұрын
You are a rock star!!!
@DenisG631
@DenisG631 5 жыл бұрын
Methods not necessary imply mutation, therefore generating shortcodes (13:00) can be a method as well, maybe even a lazy var which is instantiated only once. Languages like C++/Swift have const/mutating keywords for indicating a method mutating or not mutating its fields
@WesRoberts42
@WesRoberts42 4 жыл бұрын
I agree, the method vs function idea smells like a false dichotomy
@youtux2
@youtux2 4 жыл бұрын
Yeah I remember the "const" keyword in C++ to declare methods that would not write to the object state... Thanks for mentioning :)
@daniellee3987
@daniellee3987 Жыл бұрын
Agreed. Say if there are bunch of functions that always reference the same data type to perform some computation, naturally I would feel its more cohesive if those functions and the data belongs together, the data being the state and functions being the methods.
@skylvid
@skylvid 6 жыл бұрын
Awesome talk. Good sound too.
@nano_sweet
@nano_sweet 4 жыл бұрын
I sincerely believe that io.Reader and io.Writer are the two most powerful interfaces in the language. They're so underrated that it kind of makes me sad.
@BRUHItsABunny
@BRUHItsABunny 4 жыл бұрын
i used to dislike them until i finally understood Go polymorphism
@richardchaven
@richardchaven 3 жыл бұрын
ahhh. it makes me remember my younger days with TStrings ...
@mateoleoncamacho3222
@mateoleoncamacho3222 Жыл бұрын
Agreed. And nice pfp btw.
@AndreiDinTheHouse
@AndreiDinTheHouse 3 жыл бұрын
Pointers vs values - it's not just about usage. "If you want to share it, use a pointer" is a pretty contextless way to describe an issue that can easily become sensitive. Don't share unless you absolutely need to is a better way because otherwise a good starter is: I'll share because it's more flexible and I'll see about it later. But memory allocation is an important point as overusing pointers is a sure way to shoot yourself in the foot sooner rather than later.
@malinyamato2291
@malinyamato2291 7 жыл бұрын
great sensei .... got me up to speed on docker.
@mikei4min
@mikei4min 7 жыл бұрын
Great!
@shahmiBro1
@shahmiBro1 5 жыл бұрын
great talk;
@jss672006
@jss672006 4 жыл бұрын
Experience and intuition possibly avoid errors in first place. Not to mentioned unit testing.
@yotubecreators47
@yotubecreators47 5 жыл бұрын
Thaaaaank you, some one should collect all these pull request reviews and upload it in one website with git diff + comments :D
@toofracing7104
@toofracing7104 Жыл бұрын
Really good stuff!
@pengdu7751
@pengdu7751 4 жыл бұрын
great talk
@omonkerman
@omonkerman 6 жыл бұрын
COOL. GOT IT!!! 😆
@classicguy7813
@classicguy7813 2 жыл бұрын
Sirrrr, it is great 👍
@romand1979
@romand1979 6 жыл бұрын
In the example for using functions over methods when no side effects are intended I'd argue that *Page should be Page instead - its a clearer argument for expressing no side-effects when you have a value receiver where side effects are not possible.
@xleelxz
@xleelxz 6 жыл бұрын
TL;DR - Big Page cost twice the memory if passed by value. The readability is a bonus, but for large Pages, passing a pointer, even without modifying it, tends to be faster and more memory-efficient than passing by value and inevitably having the whole Page copied.
@romand1979
@romand1979 6 жыл бұрын
Thanks. I'm just learning Golang but I love the idea of immutability.
@jeeplin6529
@jeeplin6529 7 жыл бұрын
i am from china. and learn a lot from this video. tkx
@notangryjustdismayed
@notangryjustdismayed 6 жыл бұрын
i am from canada, and i also learned a lot from this video.
@XYZ-ee8fl
@XYZ-ee8fl 6 жыл бұрын
I am a Chinese living in Canada, I learned two tons from this video.
@ngocha5354
@ngocha5354 6 жыл бұрын
I thought China banned KZbin?
@Harry-qh5rt
@Harry-qh5rt 6 жыл бұрын
I'm Canadian living in Canada and dereferencing a pointer is faster than resolving a variable name to value (symbols table lookup, making a copy of the data, etc). If you have the need for speed, then grab a dog and make it a pointer! Equally important is that reference by value is making a copy of the data, and then you get into the deep copy versus shallow copy issues (not sure yet how GO handles this). Major pain in the ass. I am new to GO, but not to C and other object oriented languages (e.g. smalltalk, C#, etc.). The trade off always has been speed versus code manageability. So you have to ask yourself, do you feel lucky? Well, do ya punk?
@arnold6644
@arnold6644 5 жыл бұрын
im from china too, and learn now. by the way , we blocked youtube, but we never block knowledge
@watcher8582
@watcher8582 5 жыл бұрын
Thanks
@MaximeFRYSOU
@MaximeFRYSOU 4 жыл бұрын
If a method is supposed to modify the state (vs functions), how come you wouldn't use a pointer in a receiver...?
@danaadalaide5648
@danaadalaide5648 4 жыл бұрын
Just to be clear, maps are the only issue with concurrent access. A quick fix is to use sync.Map, but in a lot of cases using a drop-in replacement using a slice of struct{k,v string m Mutex} is slightly faster as you only need to lock on write with a high load of concurrent access.
@alexanderzhang3972
@alexanderzhang3972 4 жыл бұрын
受益匪浅。
@saimonshaplygin7867
@saimonshaplygin7867 3 жыл бұрын
My video tags and descriptions: 1) Don't user interfaces 3:19 2) Don't use io.Reader & io.Writer 6:24 3) Requiring brod interface 8:44 4) Method vs function 10:41 5) Pointer Vs Value 14:58 6) Error is does not a string 16:56 7) To be safe or not to be 22:14 P.S. Top secret skill: 24:56
@sanketg10
@sanketg10 5 жыл бұрын
Really good talk! I learnt a lot. Am coming from Python!
@a0um
@a0um Жыл бұрын
Hey, if I may ask: how many years of Python coding have you done? What made you want to try Go? Are you still doing Go?
@danaadalaide5648
@danaadalaide5648 4 жыл бұрын
Also, internally.. Channels use mutexes anyway, so its not necessarily a bad thing to use..
@causeno1048
@causeno1048 7 жыл бұрын
9:49: I would argue that this design principle applies to OO interfaces just as well.
@MrTripi
@MrTripi 6 жыл бұрын
interface segregation.
@mister-ace
@mister-ace 2 жыл бұрын
@@MrTripi yep
@robfielding8566
@robfielding8566 8 жыл бұрын
the real problem with not using a reader is that the buffers might be really large.
@pavelerokhin1512
@pavelerokhin1512 Жыл бұрын
nice!
@PetrGladkikh
@PetrGladkikh 4 жыл бұрын
Almost all of them are not actually Go-specific mistakes. In particular those are the same for most JVM languages.
@johnnybravo4045
@johnnybravo4045 2 жыл бұрын
The 8:30 slides shows that the code is not correct. Marshalling in a computer science is the process of transforming the memory representation of an object into a data format suitable for storage or transmission. In above slide the logic is actually doing the opposite. It transforms data coming from storage or transmission (in Reader) into memory representation v.config (out). The function in Viper should be called unmarshalConfig.
@JacquesBoscq
@JacquesBoscq 4 жыл бұрын
*gling* *gling* *gling* :}
@MariusKavaliauskas
@MariusKavaliauskas 8 жыл бұрын
why are p.BaseFileName() and p.lineNumRawContentStart() not functions but methods? (at 13:04)
@user-th3th7no9s
@user-th3th7no9s 4 жыл бұрын
how should i understand "time is ticking"?
@gemini_537
@gemini_537 4 жыл бұрын
It is about concurrency, if it uses pointer instead of value, another goroutine might modify the value while this one is running.
@TV20
@TV20 4 жыл бұрын
If you use time as pointer, some milisecond may elapsed untill t.sec and t.nsec call and that will cause function never works as expected. thats why you must use as value to copy current value and compare it in function
@goat5249
@goat5249 3 жыл бұрын
Alright, you convinced me. I'm going to stop watching videos and go fail now!
@dabbopabblo
@dabbopabblo Жыл бұрын
I don’t know if I’d say go is a new language anymore
@brians7100
@brians7100 Жыл бұрын
In Java, almost everything is a pointer.. things are passed by reference by default with the exception of primitive unboxed numerics
@aisi0o0taisi
@aisi0o0taisi 4 жыл бұрын
Am I a complete noob or did you forgot to explain why those patterns are mistakes?
@doufuwang
@doufuwang 5 жыл бұрын
After reading some pieces of Go code of Ethereum I finally land here.
@ailuros_
@ailuros_ 4 жыл бұрын
Except the fastest static site generator is not "Hugo" anymore but "Zola" (written in Rust). Good talk btw
@levani7851
@levani7851 3 жыл бұрын
wild Francesc appears at the end
@bukhorimuslim3412
@bukhorimuslim3412 4 жыл бұрын
Biggest Mistake; Not Makimg Mistakes
@9ShivamSharma
@9ShivamSharma 4 жыл бұрын
12:53 NO
@malcolmgdavis
@malcolmgdavis Ай бұрын
The method vs. function debate is absurd. The presenter needs to learn or spend time with OO programming. Class methods don't have to be logically connected to states. I developed in C during the 80s. The problem with structs is that the data is the point of coupling. The class hides data. In OO, the focus is on behavior and not the state. The OO state can be anywhere and can change. The strategy allows the implementation of the module to be changed without disturbing the client programs.
@moneyluser5711
@moneyluser5711 6 жыл бұрын
too slow and fluffy to be useful
dotGo 2015 - Rob Pike - Simplicity is Complicated
23:12
dotconferences
Рет қаралды 151 М.
Rob Pike: What Golang Got Right & Wrong
29:23
ThePrimeTime
Рет қаралды 116 М.
100❤️
00:20
Nonomen ノノメン
Рет қаралды 48 МЛН
La final estuvo difícil
00:34
Juan De Dios Pantoja
Рет қаралды 29 МЛН
ПАРАЗИТОВ МНОГО, НО ОН ОДИН!❤❤❤
01:00
Chapitosiki
Рет қаралды 2,6 МЛН
Concurrency is not Parallelism by Rob Pike
31:22
gnbitcom
Рет қаралды 119 М.
Beginners Should Think Differently When Writing Golang
11:35
Anthony GG
Рет қаралды 91 М.
Gopherfest 2015 | Go Proverbs with Rob Pike
22:29
The Go Programming Language
Рет қаралды 239 М.
The Why of Go
48:47
InfoQ
Рет қаралды 173 М.
The TRUTH About Golang Backend Frameworks
6:31
Melkey
Рет қаралды 97 М.
Google I/O 2012 - Go Concurrency Patterns
51:27
Google for Developers
Рет қаралды 795 М.
GothamGo 2018 - Things in Go I Never Use by Mat Ryer
24:53
Nation Confrences
Рет қаралды 84 М.
Golang UK Conference 2016 - Mat Ryer - Idiomatic Go Tricks
27:57
GopherCon UK
Рет қаралды 66 М.
Carregando telefone com carregador cortado
1:01
Andcarli
Рет қаралды 2,2 МЛН
Apple, как вас уделал Тюменский бренд CaseGuru? Конец удивил #caseguru #кейсгуру #наушники
0:54
CaseGuru / Наушники / Пылесосы / Смарт-часы /
Рет қаралды 4,6 МЛН
Iphone or nokia
0:15
rishton vines😇
Рет қаралды 566 М.