Тёмный
Alex Mux
Alex Mux
Alex Mux
Подписаться
Test Like a Pro in Go!
5:09
28 дней назад
Write Better GO Code: Composition
4:07
3 месяца назад
Learn Python Fast: Full Tutorial
54:51
4 месяца назад
Learn VIM Fast: Full Tutorial
10:01
10 месяцев назад
Setup Neovim Fast with Awesome Results
6:11
11 месяцев назад
Learn GO Fast: Full Tutorial
1:07:53
Год назад
Learn GO Fast: Building an API
12:05
Год назад
Комментарии
@ezekieljills
@ezekieljills 7 часов назад
this is perfect tutorial
@goonza93
@goonza93 День назад
Thanks for the crash course! Note: I think there is a typo at 23:10, I was following along and the make function says it takes int32[] and I had an error until I swapped to []int32 like the variable definition
@could9774
@could9774 2 дня назад
Argon2 use instead bcrypt it better? For hashed password
@MrAv3rag3
@MrAv3rag3 3 дня назад
Feels like python but better. I like it, will keep learning 👍🏽
@maksymbaranovskyi8362
@maksymbaranovskyi8362 3 дня назад
Oh god, no bs, no water, the guy is just throwing THE INFO right in our faces. Thank you! <3
@bernardpineda1653
@bernardpineda1653 6 дней назад
Thanks!
@mr_mux408
@mr_mux408 5 дней назад
Thank you for the support!!
@bernardpineda1653
@bernardpineda1653 6 дней назад
I'm only half way through this tutorial and it's currently the best tutorial I've seen so far about Go. I've also started reading 2 separate books, and this is absolutely way better. Thank you!
@mr_mux408
@mr_mux408 5 дней назад
Awesome, I am glad it is a format people are finding useful! Thanks for the Super and thanks for watching 😊
@H3Cki
@H3Cki 6 дней назад
When the video ended I was like "damn, wow", never before have I seen a tutorial that was so concise yet covered not only the main topic but also explained all side topics with great examples and visualizations. That gave me a better understanding of the whole flow, not just the code itself (cookies, csrf, base64, hashing), I also understood not only "what" and "how" but also "why". It's clear that you really know what you're talking about and have a lot of experience. I've seen countless tutorials and this is the first time I wrote a comment and first time I really felt like I shouldn't get this much value for free.
@somerandomdude-UWU
@somerandomdude-UWU 6 дней назад
3:51, well... it can work.
@YawPythonAkoto
@YawPythonAkoto 8 дней назад
i have to admit this is the best tutorial BY FAR that i have ever studied! straight to the point detail equipped with memes make it top tier !! Thank you for doing the Lords Work 😂😂
@moisesmelo1959
@moisesmelo1959 9 дней назад
6:29
@sebastianopperman
@sebastianopperman 9 дней назад
Watchout @anthonygg_, someone here is becoming a new favourite Go content creator :D
@張揚鑫-f8x
@張揚鑫-f8x 9 дней назад
Like Csharp😮
@pai-ef4yk
@pai-ef4yk 9 дней назад
Do you have github sir? I really want to learn the above code
@OneManArmy_XD
@OneManArmy_XD 9 дней назад
The random gifs are really distracting and pointless in my opinion.
@paramveersingh2
@paramveersingh2 10 дней назад
Fireship but with long form content
@BalkanLeaksArchive
@BalkanLeaksArchive 10 дней назад
Pls what your nvim config ide share it
@Derek-j4n
@Derek-j4n 11 дней назад
what a master class !! No wasting time by typing in real time. Very very well made tutorial.
@leozhang7593
@leozhang7593 11 дней назад
At first, thank you for this amazing tutorial. I have a question arised at around 39:40: in the function square(thing2 *[5]float64)..., the return statement "return *thing2" actually returns a copy of the modified thing1. Consequently the result var and thing1 have different memory addresses. Am I right? If I am, I am afraid by returning a [5]float64 cannot save memories. I am a beginner to go, so please kindly pardon my possible mistakes.
@guilherme5094
@guilherme5094 11 дней назад
👍
@nabinsaud4688
@nabinsaud4688 11 дней назад
Also don't forget to update the github link
@bpdkuikel
@bpdkuikel 11 дней назад
More and more go contents please
@jub0bs
@jub0bs 12 дней назад
Good video. I like how, if you eschew any kind of Web framework and stick with the net/http package, applying one or more middleware on top of a handler is just plain function composition; no magic. But no mention of jub0bs/cors ("perhaps the best CORS middleware for Go") in a video about Go middleware?! Unacceptable! 😅
@IAmTheMainCharacter
@IAmTheMainCharacter 12 дней назад
Hey Love your videos, please also make a video on how you make videos
@RobertGagnier
@RobertGagnier 13 дней назад
Really concise and easy to follow along with guide. Well done!
@shauryajha3038
@shauryajha3038 14 дней назад
Waiting for more videos from you 🙌🏻
@Kainpets22
@Kainpets22 15 дней назад
Tactical comment to make the algorithm recommend this tutorial to more people. Great work!
@AlexGarcia-ir7fl
@AlexGarcia-ir7fl 15 дней назад
You got me into GO, and now explain to me user auth when I need it. Great work, dude!
@adamchehab3685
@adamchehab3685 15 дней назад
can you share your nvim config and theme pls?
@PanTek-r8g
@PanTek-r8g 15 дней назад
Nice statusline too
@satishkumarrayavarapu5054
@satishkumarrayavarapu5054 15 дней назад
you are aswsome
@AlexRyan-pj9us
@AlexRyan-pj9us 16 дней назад
In my opinion, a better approach is to use JWTs. Access-JWTs are better for performance since they are client based and don't rely on the database for validation, and more secure if stored in memory. Refresh-JWTs for continuous login, stored in cookies but you don't really need CSRF tokens to protect them since modern browsers have "SameStite=strict" attribute, you can still add CSRF token if you don't wanna rely on the browser for token-protection and that won't add overhead since Refresh-JWTs are long-life tokens flipped once every week or so. Nice video. You gained a sub lol. 🤍
@jodux6883
@jodux6883 16 дней назад
Thanks a lot for this video, it is very well explained and those pictures of memory were really helpful.
@mr_mux408
@mr_mux408 15 дней назад
I’m glad it helped! Yea I like that part too tbh 😀
@jodux6883
@jodux6883 16 дней назад
Хвала!
@mr_mux408
@mr_mux408 15 дней назад
хвала вам пуно!
@andriodenavarrete4495
@andriodenavarrete4495 16 дней назад
Amazing tutorial, quick, easy and great!
@marlonmarcello
@marlonmarcello 16 дней назад
Just discovered your channel Alex and I am so glad I did. This was really well explained and super easy to folow. Thanks a lot! Keep the Go videos coming please, I'd love to see an updated API tutorial with all of the above using the new mux in the std library.
@LordNapeZ
@LordNapeZ 16 дней назад
How do you make those code animation ?
@mr_ky6767
@mr_ky6767 16 дней назад
how can a content can be this effective and high quality you deserve more 👏👏👏👏👏
@pmsanthosh
@pmsanthosh 16 дней назад
Jwt and oauth comparison too pls
@anubhavsamantaYT
@anubhavsamantaYT 16 дней назад
Great content man ! was looking for golang authentication.
@Do-you-even-code-bro
@Do-you-even-code-bro 17 дней назад
Thanks a lot for the content. Do you ever think of doing the 1 hour crash courses for other languages? They saved me a lot when working on projects that came out randomly.
@mr_mux408
@mr_mux408 16 дней назад
Thanks for watching. The thing is they take a loooot of time to do, and they are therefore a bit of a risk as they may not do well (see my python tutorial :) ). But I might some day
@Do-you-even-code-bro
@Do-you-even-code-bro 16 дней назад
@@mr_mux408 That's understandable.
@whiteshadow7810
@whiteshadow7810 17 дней назад
keep going , don;t make subscribers and watch make you sad , its time to be viral , greeting from me to you and Thank you a lot , and i hope you read my words and i hope it supports you , and we need more videos like middle-ware and logging and rate limit in golang
@mr_mux408
@mr_mux408 17 дней назад
Greetings 🫡, thanks, I always love to hear video ideas it helps out!
@lubaxd3265
@lubaxd3265 17 дней назад
I don't get how well you make videos. It's quick and easy