Impressions of JSConf India 2023
8:11
Пікірлер
@evald80
@evald80 Күн бұрын
Now, i hate javascript even more!
@stylewithcss
@stylewithcss Күн бұрын
they removed `<input type="checkbox" switch />`
@mfrancisco_850
@mfrancisco_850 2 күн бұрын
I don't know about her story it seems a little too outlandish
@seeh_chess
@seeh_chess 3 күн бұрын
3:28 wonder bit about the concept. we already could see the loop is over by value is emty? and whey not send done: true when last element is send?
@YeetYeetYe
@YeetYeetYe 4 күн бұрын
This is not even close to being accurate. No mention of the micro-task queue for promises. This is literally not how the event loop works. You're missing a gigantic portion of it.
@dzarbela1470
@dzarbela1470 5 күн бұрын
Anyone have a link to talk mentioned at 14:18?
@UtkarshThakur-b7q
@UtkarshThakur-b7q 5 күн бұрын
hey nice video
@NathanielClemens
@NathanielClemens 6 күн бұрын
Thanks for sharing! Just a quick off-topic question: I have TRC20 USDT in my OKX wallet and I have the recovery phrase: 【pride pole obtain together second when future mask review nature potato bulb】. What is the best way to transfer them to Binance?
@kuhaniresti
@kuhaniresti 6 күн бұрын
my framework don’t use moustache due to performance issue, vue also suffers the same on especially on having multiple directives within the same template or element
@eliesoued1828
@eliesoued1828 9 күн бұрын
I am a big fan of this talk. I always go back to it when I when to remember how the javascript runtime environment works. I was looking back at the video and something struck me. The sentence : "Javascript is a single threated non blocking asynchronous concurent language" Thinking about it, it doesn't seem quite right to me. The fact that javascript is executed in a non blocking asynchrounous concurent way is not due to the javascript language itself but to the javascript run time environment. A better way to say it would be: "JavaScript is a single-threaded language, but its runtime environment enables non-blocking, asynchronous, and concurrent behavior." no?
@DrewStephenson-k2y
@DrewStephenson-k2y 9 күн бұрын
I share this with all of my teams. I think its the most overlooked and valuable things a js dev can learn
@EmilyRose0
@EmilyRose0 9 күн бұрын
He looks so much better here without glasses and all that hair.
@eonryan8491
@eonryan8491 9 күн бұрын
16:10
@grijjly6091
@grijjly6091 11 күн бұрын
why she keep crying
@yt_shuvo
@yt_shuvo 12 күн бұрын
Still relevant
@anubhavray5987
@anubhavray5987 15 күн бұрын
Thank you for such a wonderful explanation.
@UtkarshThakur-b7q
@UtkarshThakur-b7q 15 күн бұрын
good session
@UtkarshThakur-b7q
@UtkarshThakur-b7q 15 күн бұрын
hey its a good session
@bti4129
@bti4129 15 күн бұрын
What a joke
@penyepongNASA
@penyepongNASA 20 күн бұрын
oh sorry i came here too late
@ShaneLikesCake
@ShaneLikesCake 21 күн бұрын
This is a fantastic talk and explains things clearly. 10 years of JavaScript / TypeScript development and am only learning how it truly works now.
@adityamishra7711
@adityamishra7711 23 күн бұрын
well, now as you may see, i was here..........
@rakhymbeksagyn2835
@rakhymbeksagyn2835 24 күн бұрын
I didn't get a few things here, I hope someone smart is gonna help me with that: 1. at 16:00 she shows an assembly code, but as I understand and as she mentioned before TurboFan generates machine code eventually, not an assembly? 2. at 22:40 author says about benchmarks and that right-side code (ES6) is a lot slower than the left-side code (ES5 equivalent), but later at 23:40 author says that -"we can use ES6 feature without having to worry about perfomance". Why first she said ES6 is slower, but later it is okay and do not worry? I hope I just misunderstood.
@Pwndrift
@Pwndrift 9 күн бұрын
assembly code == machine code
@zendr0
@zendr0 24 күн бұрын
Gold content ❤
@samgedam0
@samgedam0 24 күн бұрын
It's almost 2025 and its still relevant.
@EmrahIsovic
@EmrahIsovic 25 күн бұрын
I haven't heard such a good explanation in a long time.
@michaelthunderosa
@michaelthunderosa 25 күн бұрын
Excellent talk. All killer, no filler.
@johnmugo3415
@johnmugo3415 29 күн бұрын
amazing explanation
@blackcoder2510
@blackcoder2510 Ай бұрын
Js engine need to be multiple threaded and have option of GC
@dmltdev
@dmltdev Ай бұрын
Great talk, thanks a lot!
@AhmetKırgan
@AhmetKırgan Ай бұрын
I wonder if she knows what she is wearing around her neck is not just a fashionable piece of textile.
@mariomario4676
@mariomario4676 Ай бұрын
would like to see more of these :D
@andyl9920
@andyl9920 Ай бұрын
Teach us pure css for responsive webpages. No media queries and no frameworks
@danser_theplayer01
@danser_theplayer01 Ай бұрын
In that simple example of a for loop, you know how many threads you have and how much countting you have to do. Just split the work between threads, have them start at 0 and 100mln each and then sum up the number and write it to the buffer at the very end. Atomics are expensive and constantly writing to memory is expensive (can only write by going all the way to the RAM each time). Atomics are only good for synchronising threads like in an estafette race. Sometimes you need a mutex to defer all threads untill the current lock holder finishes doing everything it needed to (not just one addition). And sometimes you just need a bit of logic to properly distribute the work.
@fraineralex
@fraineralex Ай бұрын
and here i am, clapping for the tenth time after this ryan dahl guy explains his "tiny" project called node.js from over a decade ago
@moralebianco
@moralebianco Ай бұрын
6 years ago when I fisrt found this video I didn't know JavaScript or English. Now I program in at least 5 languages and speak English and more. Don't waste your time!
@TobiasThor-i6d
@TobiasThor-i6d Ай бұрын
Too much so-called "humour" and off-topic nonsense for my taste. Just get to the point and stop wasting time.
@tasia-m9f
@tasia-m9f Ай бұрын
Thanks for sharing such valuable information! A bit off-topic, but I wanted to ask: My OKX wallet holds some USDT, and I have the seed phrase. (alarm fetch churn bridge exercise tape speak race clerk couch crater letter). How should I go about transferring them to Binance?
@itshappening100
@itshappening100 Ай бұрын
Legend
@carefree_ladka
@carefree_ladka Ай бұрын
Some features we need in JavaScript which are important: 1) TreeSet 2) TreeMap 3) MultiSet 4) SortedList 5) Stack 6) Queue 7) Dequeue 8) Heap/Priority Queue As a frontend developer I use JavaScript for DSA and my coding interviews but JS lacks these basics data structures. I think as the language is evolving, we must add these features to it.
@freakintruder
@freakintruder Ай бұрын
14:16 dude tried his best to control himself😅
@odonml
@odonml Ай бұрын
Gran evento !!!!
@armanrozika
@armanrozika Ай бұрын
one thing that opened my mind was when i realized that rendering (in vdom) != painting (in browser).
@user-up4wj9vi3w
@user-up4wj9vi3w Ай бұрын
i finally understand what it is, thank you
@nathancovey
@nathancovey Ай бұрын
Came here from the Odin Project. This video is gold
@aj.arunkumar
@aj.arunkumar Ай бұрын
this talk is like Oppenheimer inventing atomic bomb. the world changed after this
@mrnabby4178
@mrnabby4178 Ай бұрын
Finally I understood event loop.
@powerhour4602
@powerhour4602 Ай бұрын
Please refer to the something about mega man video
@maxmu9331
@maxmu9331 Ай бұрын
I have to say, the video has great content, but the voice for some reason is irritating my ears, maybe it's because of the bad mic.
@stingray2107
@stingray2107 Ай бұрын
Great talk, loved your jokes