Тёмный
Code With Ryan
Code With Ryan
Code With Ryan
Подписаться
Hi there. I'm Ryan, and I like to code.
Using the Vision Pro as a Software Engineer
9:27
3 месяца назад
The Programming Trifecta
5:18
8 месяцев назад
Will ChatGPT take our jobs?
5:40
Год назад
Golang vs. Rust: Which is Better?
12:40
Год назад
Advanced Golang: Deadlocks Explained
6:00
2 года назад
My Failed VR Mech Game Project (UE4)
2:58
2 года назад
Комментарии
@brianbutton6346
@brianbutton6346 День назад
Well done. Clean. Something I will use. Thanks.
@lordkrythic6246
@lordkrythic6246 2 дня назад
8:52 they call a Magazine a Clip, even though we haven't used clips since ww2 with the M1. I find it absolutely fascinating that people still consistently make this mistake, when it should be common knowledge what the difference between a magazine and a clip is.
@bbqchickenrobot3
@bbqchickenrobot3 5 дней назад
Node a serious thing? For who? Script kiddies?
@Technocyper1917
@Technocyper1917 7 дней назад
W‏here can I download these codes
@jytvreal
@jytvreal 2 дня назад
It's closed
@Technocyper1917
@Technocyper1917 День назад
@@jytvreal
@Technocyper1917
@Technocyper1917 День назад
@@jytvreal But where can I find ready-made programming projects to see the functions and basics I learned, so I can understand when to use them in C++?
@styloxcrypto
@styloxcrypto 7 дней назад
very good video
@psyferinc.3573
@psyferinc.3573 8 дней назад
thanks man
@KhalilPatiwala3
@KhalilPatiwala3 9 дней назад
I tried implementing SSE on my website, with Next.js as the client and Express.js as the server. It worked smoothly locally, but when I deployed it on GCP, it didn't function correctly. The server was able to send messages, but the client wasn't able to receive them. Can you help me understand why this isn't working?
@keyonlewis7574
@keyonlewis7574 10 дней назад
RU-vidr: when he say statefulness me: flutter is that you
@andreujuanc
@andreujuanc 10 дней назад
I like the format of this video. Subscribed.
@jameslund6781
@jameslund6781 12 дней назад
keep the videos coming ryan!!
@fadhlirahim
@fadhlirahim 13 дней назад
what a voice!
@Dyanosis
@Dyanosis 15 дней назад
One small tweak to thinking about the latency of Microservices - They are communicating (hopefully) over an intranet, not the internet. The problem with 3rd party APIs (like, say, using Google for Oauth) is that you have to traverse the internet to access it. To be clear about what I'm saying, here's an example: Accessing data from a microservice is like going to your neighbor's house in the same neighborhood (within a specific distance, like 1/4 of a mile, let's say). Accessing data from a 3rd party service, like Google Oauth, is like having to get on the highway. One is much less busy and a much shorter route while the other is a much longer route and potentially packed with traffic. Not saying that there is no latency with an intranet, but it's negligible compared to 3rd party services.
@Ea_Nasir_The_Akkadian
@Ea_Nasir_The_Akkadian 15 дней назад
Using the SharedArrayBuffered requires some particular HTTP header?
@codecaine
@codecaine 16 дней назад
10:03
@sharjeelahmed7913
@sharjeelahmed7913 16 дней назад
To think that it all started with a Hello World at first and built into this
@rogerangel9457
@rogerangel9457 17 дней назад
Damn bro made me subscribe. 2024 I'm learning Go
@yashbhatt4498
@yashbhatt4498 17 дней назад
How you guys learn c++ (i'm learning c++ for about 1 year) And I can't understand by watching things like this... It's frustrating😭
@MilitaryInsights
@MilitaryInsights 17 дней назад
Yo man thanks for informative vid Can i get source code for the game please Thanks in advanc bro <3
@thisisreallyme3130
@thisisreallyme3130 18 дней назад
.? What is the extra empty parenthesis at 2:34? Just after the go function datachan .
@MaxStudioCG2023
@MaxStudioCG2023 18 дней назад
so you didnt leave for us a link to get that code :l ...that's sad
@CrusaderGeneral
@CrusaderGeneral 22 дня назад
unless you need duplex, forget about sockets.. sse is way simpler and less demanding on networks and servers.. actually, I was struggling to get socketio app to run on azure app service, then this video reminded me about SSE, which I completely forgot, even though I have been working with signalr for a decade.. nodejs+sse is all anyone really needs.. there is no real need to push messages from client to server, they already have a tech for that, its called REST. One more thing, sockets doesnt support auth headers, which means you have to pass the JWT in the QS. This is a serious security vulnerability, no matter what the "experts" say.. SSE, you can pass the JWT right in the Auth header.. and thank you my friend for pulling me out of the endless loop of docker, azure, app services, bla bla bla
@andyyarys4467
@andyyarys4467 23 дня назад
Thank You! All very clarify and helpful.
@notrumur
@notrumur 24 дня назад
im pretty new to coding but after playing the PC ports of these old GTA games, is it even worth looking at the source code still? they wouldnt really meet up with todays standards.
@elvispalace
@elvispalace 26 дней назад
more videos plz
@muhammadfahad3483
@muhammadfahad3483 28 дней назад
Is not this parrallel?
@tankdempsey2433
@tankdempsey2433 28 дней назад
Yo , how do I get the codes program file ?
@60RPM
@60RPM 28 дней назад
Nice - had heard of the EventSource API while picking through MDN but never knew how they worked server side
@AndyTandy
@AndyTandy 29 дней назад
Your voice quality is really crisp, what's the microphone model?
@_-pw7yt
@_-pw7yt 29 дней назад
Please modify the code and make it swiming
@jeuxdeau2009
@jeuxdeau2009 29 дней назад
Thanks bro
@mdzidane9620
@mdzidane9620 Месяц назад
astonishing
@user-nz4og2tj2i
@user-nz4og2tj2i Месяц назад
One needs -a server endoint -them headers -a while loop running on the endpoint. -inside the loop an async function that awaits for your viewmodel (body) task to be complete. -a singleton SseService. -a private constructor with inside of it a subscription to a home made server side event. -a function that triggers the event. -a SemaphoreSlim or a TaskCompletionSource to handle concurrent acces. Hallelujah !!! Oh and the event source in Javascript (the endpoint ) to update da client ui with your beautiful viewmodel of course. And to close the event source in the beforeupload event (also js) 😅
@user-nz4og2tj2i
@user-nz4og2tj2i Месяц назад
Forgot to mention the result: One gets server side events triggerred on actual events.
@siamimam2109
@siamimam2109 Месяц назад
I wish my college professors gave us real life examples like this!! They taught us inheritance, class, object etc but never really taught us how they are implemented in the real world.
@YoubaBakhouche
@YoubaBakhouche Месяц назад
ofc no github repo link for idk what reason
@EvilMrMahler69
@EvilMrMahler69 Месяц назад
are those 8 space tabs? :(
@andi_decha
@andi_decha Месяц назад
gta3 is cool.
@hater8818
@hater8818 Месяц назад
Code looks so clean and readable)))) Violating every single thing in clean code and solid))))
@Martial_Monkey
@Martial_Monkey Месяц назад
Ah, the good old C++ (C++98?) without all the fancy, confusing, "modern" C++ stuff.
@trentvlak
@trentvlak Месяц назад
Nodejs doesn't support BLM anymore so I can't in good conscience use them.
@herbertpimentel
@herbertpimentel Месяц назад
Thank you very much, I did lost an amazing job opportunity because I could not explain exactly it. You did it sou clearly that next time I will no fail 😅
@aquss33
@aquss33 Месяц назад
at this point rockstar should just release code for their really old games (before gta 4), nobody pays for them anymore, everyone owns a pirated copy for pc and anyone can pirate them for old consoles... Many people even have revere engineered code for many of their games (or even original code for gta 5), I can't imagine that releasing gta sa code for example would hurt sales of san andreas, since nobody bought that game in the last 10 years lol
@ahsanulhasan31
@ahsanulhasan31 Месяц назад
JUST AFTER LOOKING AT THE CODE YOU CAN SAY THAT THIS AIN'T R* PRODUCED CODE! CZ IT AIN'T SHlTTY BUGGY UNREADABLE BRAINFCUK OF A CODE!
@yamen_727
@yamen_727 Месяц назад
معقول لهذه درجة سهل قراءة الكود خاص بالعاب روكستار؟ اذن لماذا يقولون تسرب كود مصدري للعبة جي تي اي فايف اذا كان يمكن قراءتها بسهولة؟
@body_clock
@body_clock Месяц назад
how do you have your terminal come down from the top like that?
@coldcrushforce
@coldcrushforce Месяц назад
Very useful thank you
@scotts6264
@scotts6264 Месяц назад
Epic video
@moccomocco
@moccomocco Месяц назад
Awesome. I was facing this same issue. The only better thing here is if you can show how you put this on a cloud platform.
@krolmuch
@krolmuch Месяц назад
wow it tells you are black. nothing important derieved from this video. you just read it like an audiobook.
@1apostoli
@1apostoli Месяц назад
i feel like this guy would destroy me in smash bros
@Tarekconqueso
@Tarekconqueso Месяц назад
is my comment really an event ? checking out the dev tools dont mind me