Great video Ben. I’ve really been enjoying your channel lately. I’ve just started learning Go and backend development a few weeks ago. I’ve been doing front end for a long time. I find your videos like this one really helpful in understanding some of the concepts and features of Go.
@backendfyi Жыл бұрын
I have been doing frontend for a long time and it's beginning to grow on me. I switched to go recently and i chanced on channel. great one and a new fan
@rmmiro2 жыл бұрын
Congrats on the initiative to building these tutorials, it makes it much easier for people to get into GO, and your style of teaching is very practical. Keep going and the channel will grow for sure
@sahilchhugh297411 ай бұрын
For someone starting with GO, these seem really helpful. Subscribed.
@snoozybara5 ай бұрын
This tutorial is great for beginners like me and the content is very easy to understand. Thanks for making it available!!
@richardamare35752 жыл бұрын
I've just recently came across your channel and I must say there so much quality content. Specially being so transparent with your InsiderViz examples. Thank you for sharing with us.🙌🏽
@MattBidewell2 жыл бұрын
"And you, young Davis; we shall watch your career with great interest." Palatine or something. Great vid, subbed
@case6339 Жыл бұрын
I love those concepts/conventions type of content when learning new stuff. Please include more for more advanced topics as well. Quickest I grasped something in a while was with this video. Thanks.
@abhiramsatpute Жыл бұрын
You are covering great topics with these 10-15 min vids! They are also super informative for people who have knowledge in other languages to get a grip on Go ! Cheers
@adriancruz2822 Жыл бұрын
Wow thats one of the best beginner-oriented Go videos I have seen
@hakim_jazuli Жыл бұрын
the documentation 101: "the convention is to use camelCase" me: "you know what? I'm gonna snake_case even harder"
@BlueIsLeet9 ай бұрын
gross
@ddruganov Жыл бұрын
Omg the capitalization as export is just hilarious ffs
@HiepDuong-q8f Жыл бұрын
great content, information density is just right
@lakshmitech47022 жыл бұрын
I just refreshed my learning after seeing this concept now I know how defer keyword works in go ☺️. 😊
@franmaric2 жыл бұрын
Great video, learned a lot! This is gonna make my backend much better :)
@foodlfg5 ай бұрын
what is the use case for "func(s Showcase)" - referencing the struct by value? because the compiler is clearly not complaining about this. you can still call the SetName method of the struct. SetName can read the values of the struct but cant modify them?
@ashutoshkaushik91182 жыл бұрын
Exactly what i needed! Thanks!
@AbdulWahab-ev2ct7 ай бұрын
Great video, btw what theme you use for vscode and font?
@IkraamDev2 жыл бұрын
Good video as always.
@joerivde Жыл бұрын
Very helpful, thanks 🙏
@Xe054 Жыл бұрын
I love the scoping feature (capital letters) in Go compared to JavaScript. No need to worry about writing "export" for each function or learn different standards such as CJS or ESM.
@GeorgeDonnelly8 ай бұрын
Thanks, awesome stuff.
@irahazda9 ай бұрын
Just a suggestion, you should really explain the concept of multiple returns before explaining the concept of := reassignments. The := reassignments concept is making use of the multiple returns concept so for those who are new to Golang might be confused on the a, err := foo() syntax
@danya1_javed Жыл бұрын
Which theme are u using?
@kvelez Жыл бұрын
Great video.
@vitorhmtts Жыл бұрын
"multiple returns" = returning a tuple?
@promisesheggs88633 ай бұрын
it doesn't work that way in Go unfortunately. Multiple returns are independent values and both must be accessed because not accessing a variable is invalid in Go, unlike in Python where multiple returns = a tuple
@CheefCoach Жыл бұрын
You mention the craziest thing in Golang, it's interfaces.
@abdu58222 жыл бұрын
Whats that Spotlight search bar in your vscode ? an extension? name please.
@bmdavis4192 жыл бұрын
Cmd +p
@abdu58222 жыл бұрын
@@bmdavis419 i mean that's pop up for me but for you it's a search bar?
@bmdavis4192 жыл бұрын
@@abdu5822 for me its CMD + p = "Go to file" which is the searchbar at the top of my screen, you can find it in keyboard shortcuts
@abdu58222 жыл бұрын
Thanks, man for your replies but after a bit of googling, I found out Its enabled by adding "window.commandCenter": true," in user setings.json or the UI.
@abdu58222 жыл бұрын
next video on Contexts in Go
@fredrickdenga75522 жыл бұрын
Please help me save these jobless rust developers 😢😢😢😢😢😢I BEG
@bmdavis4192 жыл бұрын
XD
@esra_erimez Жыл бұрын
🤣
@Usernotknown21 Жыл бұрын
What's the joke. I mean i get it but are you being sarcastic saying rust devs actually have
@HiepDuong-q8f Жыл бұрын
Go is a great language, but the Gophers fan boy are not so great...
@naranyala_dev Жыл бұрын
thank you
@paralaxa4 ай бұрын
nice
@mr.x5582 Жыл бұрын
Great!
@adicide9070 Жыл бұрын
Also, it's not a good practice in Go to make setters. And totally not if you have a public field anyway.
@adicide9070 Жыл бұрын
Ok, I'll just say the new keyword and builtin is useless. I've never seen it used in out production code. we just use var to have things initialized to zero values, including nils for pointer types. For a language that likes to have a single way of doing things, "new" is doubly useless.