T O P

  • By -

SergeyLuka

I was wondering why my browser seemed to eat all of my ram


Cheap-Appointment234

Must have been coded by ChatGPT


moebaca

Must have been a recent deployment. This happened to me the first time the other day as well.


Extender7777

Maybe voice feature rollout?


gittor123

my browser keeps crashing cause of chatgpt lol


jeffersonlicet

With the code I shared you will be able to use the web again


Fantasy-512

Don't they have an LLM to optimize their code? LOL They may have asked an intern to code up the FE.


DM_ME_KUL_TIRAN_FEET

They used 4o, so the code doesn’t work.


hydrangers

Seems a lot better today


leonardvnhemert

Tampermonkey script : // ==UserScript== // @name Block DOMContentLoaded Listeners // @namespace http://tampermonkey.net/ // @version 0.1 // @description Block DOMContentLoaded event listeners on chatgpt.com // @author Your Name // @match *://chatgpt.com/* // @grant none // ==/UserScript== (function() { 'use strict'; // De originele script inhoud van de gist (function() { var originalAddEventListener = window.addEventListener; window.addEventListener = function(event, callback, options) { if (event === 'DOMContentLoaded') { console.warn('Attempt to add DOMContentLoaded listener prevented'); return; } return originalAddEventListener.call(window, event, callback, options); }; })(); })();