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.
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
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
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.🙌🏽
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
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.
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?
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
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.
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
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.
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.
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.
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
This tutorial is great for beginners like me and the content is very easy to understand. Thanks for making it available!!
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
For someone starting with GO, these seem really helpful. Subscribed.
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.🙌🏽
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
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.
Great video, btw what theme you use for vscode and font?
Wow thats one of the best beginner-oriented Go videos I have seen
Omg the capitalization as export is just hilarious ffs
"And you, young Davis; we shall watch your career with great interest." Palatine or something.
Great vid, subbed
I just refreshed my learning after seeing this concept now I know how defer keyword works in go ☺️. 😊
great content, information density is just right
the documentation 101: "the convention is to use camelCase"
me: "you know what? I'm gonna snake_case even harder"
gross
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?
Thanks, awesome stuff.
Very helpful, thanks 🙏
Exactly what i needed! Thanks!
Great video, learned a lot! This is gonna make my backend much better :)
Good video as always.
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
Which theme are u using?
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.
Great video.
"multiple returns" = returning a tuple?
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
thank you
Please help me save these jobless rust developers 😢😢😢😢😢😢I BEG
XD
🤣
What's the joke. I mean i get it but are you being sarcastic saying rust devs actually have
Go is a great language, but the Gophers fan boy are not so great...
You mention the craziest thing in Golang, it's interfaces.
Whats that Spotlight search bar in your vscode ? an extension? name please.
Cmd +p
@@bmdavis419 i mean that's pop up for me but for you it's a search bar?
@@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
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.
Great!
next video on Contexts in Go
nice
Also, it's not a good practice in Go to make setters. And totally not if you have a public field anyway.
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.
worst syntax since cobol
looks like someone never wrote java