Learn Golang Channels For Beginners By Example

preview_player
Показать описание
Learn how to program in Golang! Answering all your questions! In this stream, I will teach you everything about channels in golang.

📢 I am also building a Discord community! Feel free to join if you are willing to learn about blockchain, web3, Defi, and quantitative trading. Or just hang out and chat.

► Support me on PATREON and get access to exclusive lessons, tutorials, and LIVE streams

► Join my Discord community for free education

► Follow me on GitHub

► Follow me on Twitter

#golang
Рекомендации по теме
Комментарии
Автор

👉 Join the Discord community for blockchain, web3, Defi, and quant trading education:

TIMESTAMPS
00:00 Intro
02:49 Channel basics
14:50 Channel read/write protection

Thanks for watching!

anthonygg_
Автор

Buffered channels will only block if the buffer is full. If you do not provide a buffer, it will always be full. Well said.

brethagen
Автор

Your channel makes Go feel way simpler—like Feynman explaining code!

msh
Автор

I think one point of confusion at the beginning where talking about blocking operations is when Anthony mentions that an unbuffered channel is like creating a buffered channel with length of 1. Really it's like creating a channel with length of 0. That's why adding anything to unbuffered blocks whereas adding "Bob" and "Alice" to a channel of length 2 does not block.

hutxhy
Автор

Bravo! Just seen 1k Subs in 3 Months Congrats 👍

anshkumargarhewal
Автор

Starting to learn Go cause node & react gives me headache, frontend is not for me

arijitroy
Автор

Thanks for the video, greetings from Argentina! 🙌

nictes
Автор

select is a switch statement for channels

SaiyanJin
Автор

Thanks Man for these really gives fundamentals knowledge everytime learns something new from you.

Way to high value engineers 🍻

anshkumargarhewal
Автор

thanks man, you contents are really great

raambasnet
Автор

I love GO and am fairly new to it... I love your style of teaching and am glad theres new tutorials to watch. Your cursor jumping around drives me mad though lol.

rogerramjet
Автор

Great content, thank you! except, I feel bad when I saw you keep typing wrong characters from your keyboard...

深夜酒吧
Автор

thanks for great content, which mic and keyboard do you use :) ? thanks.

kamilbabayev
Автор

I feel like he's a former starcraft player or something

nw
Автор

Can someone tell why am I getting
# command-line-arguments
.\channel.go:9:12: undefined: NewServer

when trying to create Server object inside channel.go file

Pruthvirajhawale-zw