Пікірлер
@Knqneal1
@Knqneal1 20 сағат бұрын
I Love him in BLACK
@naranyala_dev
@naranyala_dev Ай бұрын
the new "react"
@HarmeetSingh0013
@HarmeetSingh0013 Ай бұрын
amazing..... superb talk and in-depth.
@minthukyaw8451
@minthukyaw8451 Ай бұрын
that is awesome
@hexeking1337
@hexeking1337 2 ай бұрын
stopped watching after i heared "php isnt dead" lol xD
@smartguy3k
@smartguy3k 2 ай бұрын
Thank you.
@lydiastepanek
@lydiastepanek 2 ай бұрын
learned a lot from this talk!
@MuruganandhanPeramagound-zk6my
@MuruganandhanPeramagound-zk6my 3 ай бұрын
A very good explanation.
@Cr4zy4pple
@Cr4zy4pple 3 ай бұрын
very concise and clear to understand, very helpful conference, thank you
@TreeLuvBurdpu
@TreeLuvBurdpu 3 ай бұрын
The hardest thing about framework free is finding the right search term to find the topic by. I'VE BEEN LOOKING FOR THIS!
@xeviltimxy
@xeviltimxy 3 ай бұрын
Awesome talk! Thank you
@gabrielpato8841
@gabrielpato8841 3 ай бұрын
Great stuff, man. Thank you for this
@mdnoverflow
@mdnoverflow 4 ай бұрын
git repository of these examples would be appreciated
@mdnoverflow
@mdnoverflow 4 ай бұрын
The greatest one with the greatest and enough full examples! the only question which remains why `Promises queue` takes priority over `process.nextTick` after getting into `Promise.queue`, is it because of `Promises` are inside `V8` and `process.nextTick` is part of `Node` ?
@jeetchheda8916
@jeetchheda8916 4 ай бұрын
so you're telling me i Can't use postgresql yet for serverless cloudflare workers ?
@sumanth3036
@sumanth3036 4 ай бұрын
What is that music at the starting?
@GoatCS
@GoatCS 4 ай бұрын
At seventy mile an hour on the freeway that is
@GoatCS
@GoatCS 4 ай бұрын
Audio is bad
4 ай бұрын
What an insightful talk. Thanks so much!
@whiteinge
@whiteinge 4 ай бұрын
Amazing presentation and presenter. Clear delivery, clear slides.
@aidanbenbow6682
@aidanbenbow6682 5 ай бұрын
Great talk! I'm also trying to make the world a better place through learning JS in order to help me achieve my ultimate goal of sharing with people about the hope and transformation Jesus makes in your life if you repent and believe in him!
@nehoha
@nehoha 5 ай бұрын
Great educational video. Thank you! I wish we had to use only synchronous code with the ability to run it in parallel (or pseudo-parallel).
@guseynismayylov1945
@guseynismayylov1945 6 ай бұрын
I solved this problem by Async Tree Pattern
@prat_0501
@prat_0501 6 ай бұрын
Thank you so much for this talk! ❤
@enterte
@enterte 6 ай бұрын
Is it posible we can get this sample codes and images
@termireum
@termireum 7 ай бұрын
very useful
@saantonandre
@saantonandre 7 ай бұрын
thanks for the talk Kyle, based and JSpilled as always
@user-du9mg3mv8u
@user-du9mg3mv8u 7 ай бұрын
Well,... don't get me wrong. It's a great presentation, nice delivery, but the content is pornography and you should view it as such. First understand the problem then understand the proposed solutions. The thing that I am trying to convey is _in software development there is no substitute for thinking_. No amount of _do this don't do that_ is going to make you a better, or even a decent programmer. Those are training wheels for juniors.
@irfanbabar8424
@irfanbabar8424 7 ай бұрын
You nailed it, For me, the best and most accurate explanation for eventloop.
@Sylvadorr
@Sylvadorr 7 ай бұрын
I did not understand why setImmediate callback always executes first if it is called from thread pool callback. It kind of does not make sense. I thought it would also create a callback that would be executed the next loop after timers, but somehow it looks like it doesn't wait for the next loop, when created within the thread pool callback
@tracyevans7886
@tracyevans7886 7 ай бұрын
'promo sm'
@ChrisAthanas
@ChrisAthanas 8 ай бұрын
Great presentation
@weroro
@weroro 8 ай бұрын
15:13 It's easy. As a rule of thumb, innerHtml is slow because the browser needs to reparse the html (even though it is being set to '' ). element.removeChild , however, directly modifies the DOM without any parsing needed. Therefore removeChild is faster.
@whiteinge
@whiteinge 8 ай бұрын
Great presentation. Asynchronous coding is hard -- it's counter-intuitive and has many edge cases -- yet we have to deal with it day-in and day-out. The last thing we needed was yet another syntax. Especially one that doesn't add any new capabilities and comes with a whole bunch of brand new edge-cases. Also loved the outro. Promises were a great syntactical improvement over callbacks but they're a woefully inadequate primitive compared with other async primitives.
@Mmm77769
@Mmm77769 8 ай бұрын
Hey we gotta get lunch soon man!
@whiteinge
@whiteinge 8 ай бұрын
Good overview and advice here. useEffect is both counter-intuitive and a big foot-gun. It's not (just) that the docs are misleading but that it was badly designed and probably should have been "baked" longer before releasing it to the public. The Hooks API is syntactically nice (shorter, setup and cleanup are colocated, and explicit-ish dependencies), but semantically they are a nightmare (heavily dependent on React's internal scheduler (which nobody is familiar with and isn't obvious from general JavaScript knowledge), inconsistent use of variable closure, inconsistent execution semantics for hook arguments, no explicit dependency notifications, plus all the usual pitfalls of JavaScript's equality comparison. Hooks that wrap or depend on other hooks only aggregate all those drawbacks. I fear the Hooks API is the beginning of the end for React.
@mfpears
@mfpears 8 ай бұрын
0:00 Imperative vs declarative code 4:00 React is not unidirectional 5:30 React is an MVC framework 6:42 Imperative doesn't scale 7:55 Imperative violates separation of concerns 8:46 Overview 9:15 Declarative code is less buggy 9:30 Declarative code is easier to debug 9:47 Declarative code is easier to understand 10:10 Declarative = reactive = unidirectional 10:41 Flux async/effects aren't unidirectional 11:02 Redux's syntactic Grand Canyon 12:12 Imperative code, tempting dead-end 13:07 Declarative needs easy tools 15:03 Have a declarative mindset
@omri9325
@omri9325 8 ай бұрын
The example at 10:05 is not how fetch works, it returns a promise, .json will fail
@whiteinge
@whiteinge 8 ай бұрын
Comment unclear. What are you trying to say?
@UniqName
@UniqName 7 ай бұрын
Yes. Good catch. I rewrote these slides probably a dozen times, so I'm actually quite happy with how few mistakes there are. Hopefully the point is still valid though. 😅
@jacksonbingham
@jacksonbingham 8 ай бұрын
Thanks UtahJS for having me! It was a great Conference!
@EklakDangaura
@EklakDangaura 8 ай бұрын
Indeed, these are things which every developer should know despite their level of experience.
@AbhishekKumar-hr1sr
@AbhishekKumar-hr1sr 8 ай бұрын
How can I get access to these slides?
@luispuentes6392
@luispuentes6392 9 ай бұрын
Awesome talk 🤩
@dan_le_brown
@dan_le_brown 9 ай бұрын
Great Video! Super proud of myself for being able to predict most of the deterministic results. Seems like my goal to solidify my node js understanding is paying off 😌
@luserdroog
@luserdroog 9 ай бұрын
Nit: in the "blank canvas" code, a self-closing tag like "<body />" is valid only in XML, not HTML. It should be "<body></body>".
@barathadhithya2442
@barathadhithya2442 10 ай бұрын
Hey Warren. Awesome presentation. Where could I find the source code ?
@_ademmeral
@_ademmeral 10 ай бұрын
24:28 :D :D :D :D :D :D :D i'm cracked up :D
@haritssyah7434
@haritssyah7434 10 ай бұрын
Can I get the slide from the presentation? Looks like the presentation is not finished, and I am curious about the rest of the slide which is not presented. Thank You.
@SRG-Learn-Code
@SRG-Learn-Code 11 ай бұрын
Here is the full talk: v=93_knuo_VQs
@onielsantiago7433
@onielsantiago7433 11 ай бұрын
Thank you very much. Muchas gracias. The best explanation I ever heard aboout this issue. La mejor explicación que he escuchado sobre este asunto.
@runonce
@runonce Жыл бұрын
Thank you, great talk!
@John_Fx
@John_Fx Жыл бұрын
he got a Si in spanish? sounds good to me!