For me, this was one of the most useful episodes so far, on a tool I have mostly avoided thus far. Also it felt like reading a suspense novel after every “success.” Thanks for the great walkthrough!
@jakearchibald3 жыл бұрын
I've added a link to the leaky version of Squoosh in the description, in case you want to follow along
@itsdevdom3 жыл бұрын
These episodes could be an hour long and I wouldn't mind. Great content as always!
@mc-ty4br3 жыл бұрын
I feel like we're passively/partly enabling Apple to keep on slowing down the web by supporting its browser. Sometimes, I just wanna add a banner telling people to use a proper browser. In my last job I had a native datepicker, and for safari, i had a input/text with clickable question mark next to it that alerted "your browser does not support date pickers, please enter date manually dd-mm-yyyy"
@dhkatz_3 жыл бұрын
This seems like an uninformed answer. All three major browsers do a great job in certain areas and less than great in others. None of the development teams *want* any of these bugs to exist, they're bugs. Safari is usually not too slow to fix things like this anyways.
@gabrielmachado7315 Жыл бұрын
I work on a big typescript application, and memory leaks haunt us from all places, kind of 70% us, 20% libraries, 10% browsers fault. Sometimes I think it would be easier if we write everything in C.
@technikhil3143 жыл бұрын
Am I the only one who likes video before watching it fully? My mind after watching this video: Lets run and analyze memory on every site that we have created. :)
@jakearchibald3 жыл бұрын
Everyone should do this, I reckon
@technikhil3143 жыл бұрын
@@jakearchibald Yup Cant agree more. I would spread the word for you for free. But there is hardly anyone who listens to me :)
@HazzMan24093 жыл бұрын
Jake and Surma are the Messi and Ronaldo of the software dev world 😄 Constantly amazed by their smarts and I’m thrilled that they share it with us mere mortals!
@saidooubella2 жыл бұрын
They're more like Chet and Romain from Android staff!
@wladmeixner763 жыл бұрын
Exactly the procrastination I needed while learning for my exams, really glad to see you’re back!
@switchfoot-77773 жыл бұрын
Haven't watched fully yet. But last mem leak issue i had was related to Audio context, the mem used there cannot be seen in devtools and must use taskmanager. That day i learnd that mp3 loaded into an js context takes 10x the filesize in mem.
@jakearchibald3 жыл бұрын
Decoded audio will always take up more space than compressed audio (like decoded images in this episode), but please file a bug about the lack of attribution in devtools!
@cintron3d3 жыл бұрын
Really informative and entertaining as always, so glad you're back!
@robertosantanaperdomo93883 жыл бұрын
Wow, guys! Keep it up with this format, I loved it. It has been one of the episodes I've learned the most and I can actually use this to solve my everyday problems.
@spidfire3 жыл бұрын
Epic, I never know how to tame the memory tab. Could you maybe do other features of the inspector in following episodes?
@luluakram3 жыл бұрын
that safari memory usage,, 1.2 GB by the end.. that's just surprising. thank you for the video, super helpful.
@dynamics3 жыл бұрын
Yay! Thank you! Google Chrome Developers series is my favorite! 😄
@autodidact25902 жыл бұрын
It's great learning things. Awesome explanation. If video gets longer.please keep it following video as part - 2 so on. It's helps alot in understanding the things under the hood.
@SudharshaunMugundan3 жыл бұрын
I like how they gently pulled the leg of Safari and Firefox :P
@LeeSmith-cf1vo3 жыл бұрын
I'm liking the new "studio", although those raining artifacts are really annoying. I think it would be useful to have a similar episode to this but talking about the DOM itself. How can we minimise the memory usage when we have a very large DOM? Also, it seems like it would be useful if those memory tools had a button that can remove from the snapshot anything that is _only_ referenced by the console
@r0ger803 жыл бұрын
its funny that even a google channel makes fun of Chrome`s memory usage problem xD
@kalleguld3 жыл бұрын
It's not a problem, it's a feature. Since everything you do should be on the web anyway, the browser might just as well use all your memory :)
@mc-ty4br3 жыл бұрын
That was worth the wait. Thank you all, it was great 👌
@gouravkhator3 жыл бұрын
Both were event listeners, that's great
@duncan-dean3 жыл бұрын
Such a good episode!
@hashzones3 жыл бұрын
very useful and interesting, memory leaks debugging is always dev-time leaks :S
@tkv5593 жыл бұрын
Wow this feels great, learn many things here
@victornpb3 жыл бұрын
The trash can with an X in the top right is a CollectGarbage button in Safari
@jakearchibald3 жыл бұрын
hah, I think I assumed that was "delete". Same UI problem as Chrome.
@NitinPasumarthy3 жыл бұрын
Another insightful conversation / presentation. Thank you! Is there a way to detect these leaks in production via RUM?
@ctna211 Жыл бұрын
Insightful and lovely convsersation! thanks.
@shamsartem3 жыл бұрын
guys you are the best. this content is pure gold
@krasimirk3 жыл бұрын
Wow great. nice point of logging in console is breaking memory usage. keep going
@shubhamlatiyan79723 жыл бұрын
Awesome information guys
@waldemarenns48743 жыл бұрын
4:18 - my favorite scene 🤯😂😂😂
@thomasmeerpohl24383 жыл бұрын
the studio seems professional but the audio is somehow bad.
@jakearchibald3 жыл бұрын
Yeah, we had some sound issues in this series, sorry about that.
@weizhiyang6873 Жыл бұрын
This is really helpful video! Thanks a lot!
@riddixdan55723 жыл бұрын
Would be awesome if we could do something similar in node.
@FallingDreamFlowingSand3 жыл бұрын
Thanks for this episode, it was very informative.
@pdkama3 жыл бұрын
nice content, well presented. Thanks
@DenisTRUFFAUT3 жыл бұрын
Great episode !
@mayankvora81162 жыл бұрын
What a great explanation 👍
@GiovanniOrlandoi72 жыл бұрын
Great video!
@ehsankhorasani_3 жыл бұрын
Thank you very much. it was so much informative
@CyberAcidPlanet3 жыл бұрын
The big question is: do we have to remove listeners from elements that are going to be removed from DOM or are they automatially destroyed if the element is garbage collected after removal?
@GuskiS3 жыл бұрын
DOM nodes always cleanup after themselves, meaning that listeners are removed/freed. However, working in a world of components, it is easy to forget to handle global listeners properly. In React it is generally done in useEffect callback function.
@SimonBuchanNz3 жыл бұрын
Event emitters are pretty much literally just an array of listeners, so it's less "cleaning up after themselves" and more the GC just tosses the lot out at the same time. In practice the GC is just making things easier: you still have the basic problem of having to ensure that you have a protocol for ensuring things are cleaned up after they are no longer used (at least you don't have the problem of making sure they aren't cleaned up before they are used!)
@dav_kat3 жыл бұрын
Where is upvote 100 times button
@aymanpatel58623 жыл бұрын
So you use a memory leak profiler to find a memory leak in your app only to find memory leak in the profiler itself. 😂
@jakearchibald3 жыл бұрын
haha not just the profiler, it was a leak in Safari in general!
@wmhilton-old3 жыл бұрын
Oh Safari
@PierreSoubourou3 жыл бұрын
excellent ! and quite readable even on smartphone ;-)
@ZMYaro3 жыл бұрын
May I ask what set-up you are using to control your slides with a Joy-Con? 👀
@jakearchibald3 жыл бұрын
It's just bluetooth, so it connects as a gamepad. Then we're using the gamepad API in the browser to pick up button presses.
@ZMYaro3 жыл бұрын
@@jakearchibald Oh, I didn't realize Joy-Cons map like regular gamepads-thanks!
@rishabhanand42703 жыл бұрын
you guys are the best
@avi987173 жыл бұрын
I didn't get what is unfoldable thing at 10:49 . Can some explain.
@jakearchibald3 жыл бұрын
The bit where is displayed? That's the JS console
@rajshekharmishra91517 ай бұрын
Really interesting 👍
3 жыл бұрын
15:55 😂
@delulu69693 жыл бұрын
Is window.matchMedia any more performant than window.onResize? Or it depends?
@jakearchibald3 жыл бұрын
Roughly the same in terms of performance I imagine. I went for matchMedia because it followed what we were doing in CSS
@SaurabhKumar-ee6dj3 жыл бұрын
Is it possible to use ram for cache not my ssd
@jakearchibald3 жыл бұрын
--disk-cache-dir lets you change the location of the cache, and you could create a ramdisk for this if you wanted. I don't know what you're trying to gain from that, and I don't recommend it, but that's all I know.
@SaurabhKumar-ee6dj3 жыл бұрын
@@jakearchibald thank uou so much sir ❤
@BipinOli902 жыл бұрын
Fantastic
@firiasu3 жыл бұрын
Nice subject!
@mishasawangwan66523 жыл бұрын
safari is the new ie
@jimiscott3 жыл бұрын
No more bedrooms!
@jakearchibald3 жыл бұрын
Hey, there was only ever one bedroom. Unless you think I sleep in my study? Which… I guess is believable.
@dassurma3 жыл бұрын
You just wait. I’ll demand that there’s a bed on our set!
@Manish-fm5iv3 жыл бұрын
Interesting...
3 жыл бұрын
Am I the only one seeing the artifacts in the video?
@jakearchibald3 жыл бұрын
What kind of artifacts? What quality are you watching at?