That was one of the best informative videos i’ve seen on youtube for a while now, everything else is primitive skills, redundant information or a trend of discussions about “social life of programmers” .. i’m glad i found your channel, keep up the good work .. thank you!
@heshanwijerathna3 жыл бұрын
This channel is pure gold.
@rafaelfgyn283 жыл бұрын
Man... This video is TRULY amazing. Exactly what I needed. Good job once again, Steve. Keep It up!!!
@koen_reus3 жыл бұрын
Great & informative video as always Steve. I found in practice that the content-length header can't always be relied upon though. I recently built something where users could enter an image URL and it would determine the file size by looking at the content-length header. Sometimes aggressive caching systems and things like CloudFlare would mess with the header (or even omit it).
@SteveGriffith-Prof3ssorSt3v33 жыл бұрын
Yeah. There is always some developer, some proxy server, some framework, or some browser that gets in the way of what would be a simple solution. Like most things you can trust your own server and environment to do what you expect. Beyond that copious amounts of error handling.
@joaovaz34733 жыл бұрын
Wow, that's really useful and informative! Thank you for your great videos!
@NpcX-pn5xk3 жыл бұрын
Is it always the content length header available???, I heard it somewhere it didn't available when CORS Enabled
@SteveGriffith-Prof3ssorSt3v33 жыл бұрын
It doesn't matter about CORS, but it is not always available. Depends on the server. Most of the time it is there.
@saadowain35113 жыл бұрын
Hi Steve can you please explain the server sent events with code example
@SteveGriffith-Prof3ssorSt3v33 жыл бұрын
What server sent events?
@saadowain35113 жыл бұрын
@@SteveGriffith-Prof3ssorSt3v3 an alternative to ajax and web socket. Like push technology. One way communication
@SteveGriffith-Prof3ssorSt3v33 жыл бұрын
@@saadowain3511 I will eventually be making videos about push notifications.