Good explanations and very good editing! Maybe make an advanced Go video going into templates, Go routines and channels? Another idea might be an intro to vim and vim motions
@FloWoelki9 ай бұрын
Thank you for the feedback, always appreciate any feedback! Yes, I've actually got some sort of advanced go (including a go video about concurrency) in the pipeline as well :) But thank you for the ideas about vim and vim motions! If you also have more ideas, always feel free to share them :) Thanks again!
@higiniofuentes25513 ай бұрын
More than zero to hero, is a refresher video if you know already GO!
@PedroCarvalho-qf4bw5 ай бұрын
Really enjoying your videos, learning a lot about go
@FloWoelki4 ай бұрын
So awesome to hear! :)
@codingcrashkurse64299 ай бұрын
Nice editing skills you developed Florian. Are you using premiere pro?
@FloWoelki9 ай бұрын
Danke dir :) No I am using Davinci Resolve for all of the motion graphics + editing.
@sarangs7229 ай бұрын
Explanations for Interface section were hard to follow and honestly I didn't understand anything in that. Everything else was pretty good!
@FloWoelki9 ай бұрын
Thank you for the feedback! I'll do an extra video where I go into more detail about the differences between structs and interfaces. But, if you come from a different OOP language, it's basically the same thing. So interfaces define just some sort of contracts without the logic. That means, that interfaces separate "what" a type should do from "how" it does it. Hope that helps :)
@neneodonkor9 ай бұрын
@@FloWoelki Yea it was too short. Need more clarification.
@higiniofuentes25513 ай бұрын
Thank you for this very useful video!
@FloWoelki3 ай бұрын
Glad it was helpful! :)
@pavloburyanov58424 ай бұрын
so.. x = append(x, 6) is O(n), correct?
@pavloburyanov58424 ай бұрын
oh. I think I get: it just creates new pointer to same mem address but larger offset
@FloWoelki4 ай бұрын
It's not always O(n). Whenever `n` gets bigger, it is more unlikely that reallocations (O(n)) happen. So the average amortized time complexity is O(1) whereas the worst case time complexity is O(n).
@lutfiikbalmajid4 ай бұрын
Best explanation ever
@FloWoelki4 ай бұрын
Thank you so much :)
@LeviElekes9 ай бұрын
thanks for the video
@FloWoelki9 ай бұрын
I am glad you've liked it :)
@AbdulWahab-ev2ct6 ай бұрын
That looks great. Is it Dank Mono?
@FloWoelki6 ай бұрын
What do you specifically mean?
@AbdulWahab-ev2ct6 ай бұрын
@@FloWoelki Font you are using on terminal?
@FloWoelki6 ай бұрын
@@AbdulWahab-ev2ct Got it! I use the Monaspace font. Hope that helps :)
@TechDoctorMalayalam6 ай бұрын
Great video
@FloWoelki6 ай бұрын
Glad you enjoyed it!
@ktappdev5 ай бұрын
Thank you sir
@FloWoelki5 ай бұрын
Sure thing :)
@alHailHale9 ай бұрын
This is so good, can you do one for Rust?
@FloWoelki9 ай бұрын
Thank you! :) I think this one could be really hard, especially because there is so much to explain for Rust :D But let's see, maybe I can break down the most important concepts in Rust into 15 minutes.
@alHailHale9 ай бұрын
@FloWoelki That would be amazing. This video was perfect because it didn't try to summarise everything but rather focused on the core concepts and patterns. But yeah, I understand you, idiomatic rust can be very different from other languages.
@simonkalu6 ай бұрын
@@FloWoelki i literally fell on the fell when I read "I think this one could really hard because there is so much to explain in RUST"... Rust is not for the weak. Well, said