Slashdot Mirror


Slashdot Asks: Why Are Browsers So Slow? (ilyabirman.net)

Designer Ilya Birman writes: I understand why rendering a complicated layout may be slow. Or why executing a complicated script may be slow. Actually, browsers are rather fast doing these things. If you studied programming and have a rough idea about how many computations are made to render a page, it is surprising the browsers can do it all that fast. But I am not talking about rendering and scripts. I am talking about everything else. Safari may take a second or two just to open a new blank tab on a 2014 iMac. And with ten or fifteen open tabs it eventually becomes sluggish as hell. Chrome is better, but not much so. What are they doing? The tabs are already open. Everything has been rendered. Why does it take more than, say, a thousandth of a second to switch between tabs or create a new one? Opening a 20-megapixel photo from disk doesn't take any noticeable amount of time, it renders instantaneously. Browsers store their stuff in memory. Why can't they just show the pixels immediately when I ask for them? [...] Unfortunately, modern browsers are so stupid that they reload all the tabs when you restart them. Which takes ages if you have a hundred of tabs. Opera was sane: it did not reload a tab unless you asked for it. It just reopened everything from cache. Which took a couple of seconds. Modern browsers boast their rendering and script execution performance, but that's not what matters to me as a user. I just don't understand why programmers spend any time optimising for that while the Chrome is laughably slow even by ten-years-old standards.Do you agree with Birman? If yes, why do you think browsers are generally slow today?

81 of 766 comments (clear)

  1. Why they are slow? by nospam007 · · Score: 5, Insightful

    Because we need a canvas-blocker add-on and a flash-blocker add-on and a cookie warning remover add-on and add-ons to remove all the ads on the page and we need add-ons to remove the dozens of trackers to protect our privacy and also add-ons that remove all the social buttons (twitter, FB, etc) which share our behavior even if we are not a member and add-ons that remove all the javascripts that load popups, do unwanted refreshs and Greasemonkey to make some pages readable and remove the ads that are inside the articles and we need an add-on to circumvent the anti-adblockers and .....

    1. Re:Why they are slow? by nucrash · · Score: 5, Interesting

      Pretty much this.

      I feel that so many websites have gone to insane levels on ad loading that the web has become almost unusable by some standards.

      Yes, I say that with at minimum, 12 tabs open, but most problems I have are around specific ad revenue driven, ad block loathing sites.

      --
      Place something witty here
    2. Re:Why they are slow? by JaredOfEuropa · · Score: 5, Informative

      It's not just ads; a lot of websites pull in JS helper scripts from other sources (instead of hosting local copies of their own). And those sources do not always have the best performance.

      --
      If construction was anything like programming, an incorrectly fitted lock would bring down the entire building...
    3. Re:Why they are slow? by SQLGuru · · Score: 5, Interesting

      The idea of not hosting your own local copy is that if everyone uses a common source for the library, then the browser should already have that resource cached even if it's the first time you hit the page. For large enough libraries that the Google CDN (or another CDN) includes it, it's worth it.

      https://developers.google.com/...
      https://www.asp.net/ajax/cdn
      https://www.keycdn.com/support...

      Now, for obscure libraries, you're better off hosting your own so that you can control the version and not worry about the referenced script changing/moving/breaking stuff.

    4. Re:Why they are slow? by Anonymous Coward · · Score: 5, Informative

      Using a good, fast third party source

      LOL

      I see what you did there.

      Also, I just clicked on AdBlock Plus --> Open Blockable Items. There are 31 scripts on this page.

      31 MOTHERFUCKING SCRIPTS ON ONE PAGE!!! You people are insane.

    5. Re:Why they are slow? by npslider · · Score: 4, Insightful

      It's like watching a 7 minute television program in the space of an hour, divided up every 5 seconds by commercial breaks.. and trying to record the whole thnig sans commercials on an old-school VHS deck.

    6. Re:Why they are slow? by Anonymous Coward · · Score: 4, Informative

      The web is unusable. When loading any website containing content intending to be read (news article, blog post, &c.), I poise my mouse over the "reader mode" button and stab it the very instant it appears.

      I will not even try to read content on pages with moving shit in the side-bars, dropping-down menu bars, random crap that unpredictably overrides scrolling, popups sliding up and over and all around the fucking place, sometimes minutes after the page finished loading because they know that's how they can irritate you into looking at it.

      If the reader mode button doesn't show up, I don't even bother trying to use the page. I just close it.

    7. Re:Why they are slow? by fnj · · Score: 2

      Safari runs a web page as it's own process for security reasons.

      Isn't process creation on the order of a millisecond or so on a modern computer?

      Bingo. It's actually well under a millisecond for fork + exit on current hardware. More when you add exec including dynamic linking, but still on the order of milliseconds. Much, much faster than you could blink your eyes. It is completely specious to suggest that thread-per-tab or process-per-tab has any detectable effect whatever on real-world performance.

    8. Re:Why they are slow? by fuzzyfuzzyfungus · · Score: 5, Interesting

      This would involve admitting the (arguably ugly; but undeniable) truth that web pages have become a somewhat dysfunctional software development platform; but it'd be nice to see browser caching mechanisms that don't just treat giant JS libraries as a special case of cacheable assets generally and hope for the best; and instead offered something more in the vein of what Linux package managers do.

      If you host your own; the user ends up downloading a copy even if it is identical to the one they pulled from somebody else for a different site that uses the same library. If you avail yourself of Google's...generous...hosted offer, the user is more likely to cache; but then every load of your page also involves a chat with Team Mountain View.

      Ideally, you'd specify that you use JSLibXYZ, with cryptographic has and/or signature specified, and at least one source for a client who doesn't have it to get a copy; but the user's browser could make use of JSLibXYZ from any source, so long as the hash and signature match, since that provides assurance that it's the same thing. Caching mechanisms based on domain of origin are sensible enough for assets that are likely to be site specific(pictures, stylesheets, etc.); but, like it or not, giant javascript libraries, many shared across a large number of otherwise unrelated sites, have a lot more in common with dlls than with images; and it would be handy if they were treated as being a different case. With hashes and/or signatures, you could ensure integrity even in cross-site sharing situations; allow caching to work regardless of how the site operator has set up script hosting, and end the choice between 'serve yourself, lose out of caching/let google do it, get caching but add a 3rd party to everything you do'.

    9. Re:Why they are slow? by mysidia · · Score: 5, Interesting

      It's not just ads; a lot of websites pull in JS helper scripts from other sources (instead of hosting local copies of their own). And those sources do not always have the best performance.

      What we should do is get the web standards updated to add a Rule:

      Remotely-loaded scripts (Loading from a different server) must specify a SHA256 sum in the Script tag such as
        <script src="https://example.com/mycode.js" integrity="sha256-7d774a8ff0e73f2791c3a12dfc3ef1f9a1a640d470584b9b9222d395e8519fc5">

      If the hashcode is not specified, then the script will not be run.

      If the hashcode IS specified, then it can be cached by any 3rd party.
      The URL becomes "Advisory", and Popular hashcodes can be distributed by Amazon, Google, or your local ISP.

      There should be a way to have a DNS suffix DNS record to specify local object-caching servers that can be queried by code.

      Caching is permanent. An outage of the original source server has no affect.

    10. Re:Why they are slow? by holophrastic · · Score: 5, Insightful

      You're wrong. I've been doing this for three decades now. If you're serving a page to a client, sending them to a third-party to get the library always sucks. Even if they've already got the library disk-cached, it's actually slower to access the disk cache, and check the cache age, and verify that there isn't a newer library version (did you know the browser often goes round-trip just to check?) than it does to simply serve the library in-line.

      Serving the library yourself can still run in parallel, and it often reuses the same primary connection, so it's about as fast as your server can handle.

      Now you're going to mention the browser's memory cache, instead of disk cache. First, nowadays, with each-tab-in-a-separate-sandboxed-process, those memory caches ain't as fast as they once were. But even when they are, you just ain't a'gonna beat in-line scripts.

      Benchmark it yourself. Serve 100KB of javascript in-line, in the middle of your html file. Compare that to a separate src= js file. Mid-stream, in an HTML file of another 100KB, the javascript runs at full download speed, with full text transmission compression. Those 100KB easily compress down to 50KB, more often 25KB, mid-transmission, and at any modern residential bandwidth, you're talking about the tiniest of fractions of a second. No disk access, no file handles, no separate rendering processes, no sandboxes, and, most importantly, no virus scanners, no swapping.

      But it does eat up your server's bandwidth costs.

      If you're huge, amazon style, then you want to off-load cycles and bits anywhere you can. If you're not huge, then the added 10% bandwidth costs mean nothing to you.

    11. Re:Why they are slow? by holophrastic · · Score: 4, Informative

      Stop instructing your browser to block things. You don't need an add-on to define network connections. Start telling your network stack where to not find them:

      HOSTS-level blocking
      http://winhelp2002.mvps.org/ho...

      And if that's not enough, look into PAC files. You won't be disappointed.

    12. Re:Why they are slow? by Anonymous Coward · · Score: 2, Insightful

      > If you're serving a page to a client, sending them to a third-party to get the library always sucks.

      You're clearly retarded. It'd serve from cache.

    13. Re:Why they are slow? by Bartles · · Score: 4, Funny

      What's the addon that removes all the socials buttons? I need that one.

    14. Re:Why they are slow? by bmo · · Score: 5, Insightful

      >somewhat dysfunctional

      DOOM was 16MB. A whole game in 3D with full on-the-fly animation and sound effects and music. That was amazing for the time when Myst was a game that served up mostly static images.

      A web page mostly serves up text, static images, and sometimes video.

      Yet this needs 16MB to be downloaded to be functional, somehow.

      >somewhat dysfunctional

      Try completely dysfunctional

      Oh, and to the assholes who put in autoplay video that you can't turn off/pause: die. in. a. fire. Your pages actually last 5 seconds in my browser tab, and I'm sure this is the other case with people who are either on mobile, or just simply want to be quiet.

      --
      BMO

    15. Re:Why they are slow? by bmo · · Score: 3, Informative

      That should have a "less than" sign in front of the "5 seconds"

      --
      BMO

    16. Re:Why they are slow? by lgw · · Score: 5, Interesting

      You're talking about fast, as seen by the user. They don't care about that at all - they're optimizing for fast as seen by the server: less bandwidth. Anything they can offload is a win, no matter how much the user experience sucks.

      --
      Socialism: a lie told by totalitarians and believed by fools.
    17. Re:Why they are slow? by Impy+the+Impiuos+Imp · · Score: 4, Insightful

      Chatty scripting requiring lots of back and forth. Serving up the ads first before content, trying to make sure the ads are seen. Interacting with ad customization services to eke out an additional fraction of a cent. Scripting that downloads higher quality video in a sidebar ad than the real site. Flash or other crap that runs at CPU max load rather than 99% of it, because the browser makers want that fastest script award and to hell with lockup.

      --
      (-1: Post disagrees with my already-settled worldview) is not a valid mod option.
    18. Re:Why they are slow? by lgw · · Score: 4, Funny

      Huh - this didn't summon APK. Maybe he's taking a week off for Christmas.

      --
      Socialism: a lie told by totalitarians and believed by fools.
    19. Re:Why they are slow? by npslider · · Score: 4, Funny

      Just imagine every wall in that doom game filled with dynamic ads for health insurance (before you are fragged of course), places to comment on which weapon you like better (to be posted to social media)... oh and the whole game is just a conglomeration of Adobe flash videos.

    20. Re:Why they are slow? by fnj · · Score: 5, Informative

      OK, I just benchmarked 1000 forks in C++ on the lowest-end desktop Sandy Bridge Core i3-2120T running at a reduced frequency of 1.6 GHz. I got 89,130: a whopping 89.13 microseconds per fork.

      #include <chrono>
      #include <iostream>
      #include <unistd.h>

      #define N 1000

      int main()
      {
          auto start = std::chrono::system_clock::now();
          for (int i = 0; i < N; ++i)
          {
              int pid;
              if (!(pid = fork())) {
                  exit(0);
              } // std::cout << pid << '\n';
          }
          auto stop = std::chrono::system_clock::now();
          auto elapsed = std::chrono::duration_cast<std::chrono::microseconds>(stop - start);
          std::cout << elapsed.count() << " microseconds for " << N << " forks\n";
          return 0;
      }

    21. Re:Why they are slow? by JustAnotherOldGuy · · Score: 2

      You're wrong. I've been doing this for three decades now. If you're serving a page to a client, sending them to a third-party to get the library always sucks.

      I agree, partly for the same reasons and partly for different reasons.

      Extra lookups to remote sites suck- more time, more misdirection, etc.
      You run the risk that the remote site has been compromised and is now serving up something malicious.
      Similarly, you run the risk of MITM stuff taking place.
      If they upgrade some file and it introduces an incompatibility it may very well break something on your site.
      If the remote site is down, guess what? So is your site.

      I always host my own library files, period. GeoIP tables, javascript libraries, etc etc etc...if you're on my site, everything you need will be coming from my site. Basically, if I can host it then I will. The only exceptions are certain DNS/Whois lookups.

      --
      Just cruising through this digital world at 33 1/3 rpm...
    22. Re:Why they are slow? by fuzzyfuzzyfungus · · Score: 3, Insightful

      No disagreement here on the quality of craftsmanship that goes into the average webpage. On the other hand; can you imagine how...glorious...the web would be if everyone who didn't have John Carmack on staff still needed to hammer out a bunch of clever tricks in C to get a site up and running?

      It isn't at all elegant; but unless someone discovers a way to churn out good programmers with unprecedented efficiency, I can't say too many mean things about tools that let terrible programmers get merely bad results, since we appear to demand more software than we have talent to supply.

    23. Re:Why they are slow? by ArhcAngel · · Score: 5, Informative

      Looking at RequestPolicy this page redirects to 41 other sites.

      41 MOTHERFUCKING REDIRECTS ON ONE PAGE!!! You people are insane.

      --
      "A person is smart. People are dumb, panicky dangerous animals and you know it." - K
    24. Re:Why they are slow? by tepples · · Score: 3, Informative

      Forking a non-trivial program may incur more practical lag than forking a trivial program, as more copy-on-write pages have to get duplicated once the forked process starts running.

    25. Re:Why they are slow? by profke · · Score: 5, Informative

      Ghostery

    26. Re:Why they are slow? by Anonymous Coward · · Score: 5, Insightful

      I really don't mean to attack you personally (really, I don't) but your post is a great example of a huge and growing problem in society in general: people who are very very sure of themselves, write well, sound authoritative, but are WRONG.

      Most, if not all, of your argument is based on fast network. Far too many programmers these days just assume huge network bandwidth. They think nothing (MS) of starting a "background" update process which can try to download GIGABYTES of unwanted crap.

      News flash: not everyone has 10GB Internet, Core i7 or better CPU, 16 GB RAM, 1 TB SSD, etc.

      And stop the arrogant attitude of telling everyone they're using dinosaur computers, to "upgrade" everything, etc. By expecting everyone to be on fast Internet, etc., you're shutting out a chunk of your market. I've stopped using many major news sites because a redesign not only looks terrible (if it's readable at all) or takes so long to load it's a waste of my time. The advertisers need to know this, right?

      My poor mom bought a "smart" phone (Android) 18 months ago. Several well-meaning (over-confident, sure they know everything tech) "helped" her by installing many apps. She did not buy a huge data plan, and in 1 month was dozens of times over her data limit- just in the apps constantly 1) phoning home, and 2) updating themselves. The provider was kind enough to forgive her and she gave me the phone.

      And while I'm at it, how about an International law stating that NO website will ever be allowed to download, stream, or otherwise hog network bandwidth without the users 100% knowledge AND permission. Example: I'm trying to read a news article, and an unwanted window starts playing a video without my request nor permission.

      How about ALWAYS, with NO exception, asking the user how much bandwidth they are OK giving up? How about testing network bandwidth BEFORE doing huge downloads? And don't forget latency while you're linking nested .js from around the world.

      About 60-70% of my browsing is done on Old Opera (11.x) because you would be stunned at how much faster most websites are with javascript OFF. I know, all too well, how many websites barely work, or not at all, with javascript turned off. I've studied the code and I see they render in javascript to force you to turn it on because their trackers and ad popups need javascript.

    27. Re:Why they are slow? by holophrastic · · Score: 5, Informative

      My first e-mail address had a comma in it, and token rings sucked for a lot of reasons. That's how long I've been developing web-sites.

      But I didn't say I've been building web-site for three decades. I said, quite obviously, that I've been serving pages to clients for three decades.

      You may be way too young to understand the difference between real-world practical and academic history, but the world wide web was not the start of the internet, the internet was not the start of networking, and networking was not the start of serving pages to clients.

      Caching's been around for a very long time. If you want to learn about the benefits of caching, and the pitfalls, you want to look at archive caches, not transmission caches. When access involves an elevator, or a truck, you quickly learn what does and does not make sense.

      Here's a perspective for you. When accessing a cache from a warehouse two miles away involves a truck, you get to consider the effects of rush hour traffic. So when your third-party server caches your javascript file, you get to consider that it isn't geographically in the same place as your primary server, meaning that not only does your client need to hit "another" server, with another connection, another keep-alive, and another set of caches, but it also needs to get there, through an ISP channel full of traffic. You've just doubled the amount of traffic globally. You can't ever bet on it being fast. You can only hope.

      So, of course, you have a basement cache of your warehouse cache -- i.e. the disk cache. Elevators don't have traffic; or so you say. But the warehouse is full -- always, because that's what a warehouse is. So you get to search stacks and shelves and indexes. You get to have organizational training, and inventory days. Welcome to the magic of disk thrashing. The file table is incredibly slow in terms of file handles. Welcome to WAD files. Defragging is the inventory day, by the way.

      So now you've got your reliable cache, that's only reliable under minimal load. Perfect. But some things get accessed often. So you keep a copy upstairs in the filing cabinet. But the filing cabinet is small. So you shuttle different cabinets up and down per day. Today you need the green cabinet. Tomorrow, the red. And life is good. Welcome to swap files -- memory to disk and back.

      Now you've got employees shuttling cabinets, with dollies, and elevators, and warehouses, and trucks, and traffic. And here's the kicker. You haven't eaten yet! You've got a dozen staff, countless duplicate copies of files, trucks, buildings, elevators, desks. But you haven't done a lick of revenue-generating work yet.

    28. Re:Why they are slow? by holophrastic · · Score: 2

      Google doesn't care how long it takes your page to load. It doesn't know how important the page is, so it could never judge two pages based on size alone. What google very-much does care about is how long it takes your page to render "something". Put your scripts at the end of the file. Output your logo very quickly, before you do any real server-side work. I promise the top one inch of your web-site can be the very same all the time.

    29. Re:Why they are slow? by bmo · · Score: 2

      *runs away screaming"

      --
      BMO

    30. Re:Why they are slow? by holophrastic · · Score: 5, Interesting

      Dell machines are usually designed to be quiet. That's why things are slow. But that's a different story.

      You aren't working cradle-to-grave. hitting the local disk isn't about the disk speed. Those 15ms can be zero for this discussion. Similarly, the ping to the site of 125ms is meaningless. Here's what happens, cradle-to-grave:

      Scenario 1, live streaming:
      connect to site: 125 ms
      download 200KB of html and javascript, compressed to 100KB, 1s

      Scenario 2, external file:
      connect to site: 125ms
      download 100KB of html, compressed to 50KB, 1s
      download 100KB of javascript, compressed to 50KB, 1s

      Scenario 3, external file cached:
      connect to site: 125ms
      download 100KB of html, compressed to 50KB, 1s
      wait for disk to be available, access disk for 100KB of javascript, wait for disk to spin up, 15ms
      wait for virus scan, read cache meta data, determine that our cache file isn't already too old, 1s
      HEAD the web-site file, to compare meta data, check to see that our cache is good enough, 1s
      -- look at all of the side-work involved, and we're still hitting the site much of the time to check the cache anyway!

      Scenario 4, external site
      connect to site: 125ms
      download 100KB of html, compressed to 50KB, 1s
      connect to second site: 125ms
      download 100KB of javascript, compressed to 50KB, 1s

      Scenario 5, external site, cached
      connect to site: 125ms
      download 100KB of html, compressed to 50KB, 1s
      wait for disk to be available, access disk for 100KB of javascript, wait for disk to spin up, 15ms
      wait for virus scan, read cache meta data, determine that our cache file isn't already too old, 1s
      connect to second site: 125ms
      HEAD the web-site file, to compare meta data, check to see that our cache is good enough, 1s
      -- now we have side work, a second connection, traffic everywhere

      And all of this gets even worse when you realize that the connection to your primary site is keep-alived for your entire visit -- minutes at a time -- but to your secondary site, you're lucky to get a full second. Add all of the other hardware that you're using, in terms of disk, cpu, virus scanners. Now add the entire local permission system, cooling system, throttling systems, battery savers, and you're now conflicting with everything else running in the background.

    31. Re: Why they are slow? by fisted · · Score: 2

      You also [have] no control over transparent caching proxy servers used by your ISP,

      Yes, you do. It's called https.

    32. Re:Why they are slow? by amicusNYCL · · Score: 2

      He might just be submitting his latest $100 forum post. That $100 he got 8 years ago has stretched far enough, daddy needs a new sock.

      --
      "Our two-party system is like a bowl of shit looking at itself in a mirror." - Lewis Black
    33. Re:Why they are slow? by TheRaven64 · · Score: 2

      fork() exploits the MMU by marking every page in the parent process as readonly, then sharing these pages with the child process. There is no immediate copying of memory.

      That's not quite true: at the very least, the top stack frame will be copied immediately. That set of MMU updates also isn't cheap on a modern multicore system (you have to flush all of the relevant pages from all of the TLBs). More importantly, there's a lot of in-kernel state for a process (e.g. file descriptor tables) that gets duplicated when you fork a process.

      --
      I am TheRaven on Soylent News
  2. Opera is NOT sane. by snarfies · · Score: 5, Insightful

    >Opera was sane: it did not reload a tab unless you asked for it. It just reopened everything from cache

    No. That is NOT sane, normal, or desired.

    Webpages are live. If I want to look at a chached version, I'll save the webpage locally. If I'm pointing a browser at an address, I expect a current webpage. If it takes all of three seconds to give me that, I think that's okay.

    1. Re:Opera is NOT sane. by DigiShaman · · Score: 2, Informative

      Now that they're owned by the Chinese, fuck Opera.

      Try Brave. It's very very fast, and blocks all sorts of crap. It's based on the Chromium browser

      https://www.brave.com/

      --
      Life is not for the lazy.
    2. Re:Opera is NOT sane. by YoungManKlaus · · Score: 2

      > It's based on the Chromium browser

      fuck that then, the only good engine was Presto back in the days. Anything else is crap when it comes to heavy workloads.

    3. Re:Opera is NOT sane. by MasseKid · · Score: 4, Informative

      I disagree, when reopening the entire browser it is a perfectly legitimate use case to go back exactly where you were. Opera has long had the feature to tell the browser to automatically reload a page every X seconds, Minutes, or hours. So if you're use case is you need to constantly need updates on the current thing being hosted, Opera already does what you want. Now, perhaps there is a misunderstanding of what the summary is talking about in terms of reopening a tab. This is only occurs when you reopen a group of saved tabs (generally from the last time you closed it). This does not occur if you simply type an address, click a bookmark, or any other "normal" method of opening a link.

  3. This totally breaks the rendering speed. by Parker+Lewis · · Score: 4, Informative

    I agree with the summary. Basically, we have faster engines for rendering for HTML and JS, but the UI is really slow. IE family is the worst in this aspect.

    On Firefox (my default browser), a nice boost in tabs rendering is made turning off the tab animation: changing "browser.tabs.animate" to false in about:config.

    1. Re:This totally breaks the rendering speed. by ckatko · · Score: 5, Interesting

      The UI is not slow.

      What's slow is the fact you're loading MEGABYTE APPLICATIONS full of commands through the web that have to be processed before display.

      Go to a 90's era website with HTML3.2. Watch how magically fast everything is displayed.

      Check out the old website, "Internet Explorer is Evil":

      http://toastytech.com/evil/

      Watch how magically fast the animated GIF backgrounds display. How magically instantaneous the text renders. Why? NO CSS. NO JAVASCRIPT. No 5 MB app being downloaded.

      And even then CSS and JS don't have to be slow. But people designing these websites simply don't give a shit about speed. Have you ever tried to load a Google Document on a Netbook with an Atom processor? Apparently a dual-core CPU with 2 GB of RAM isn't enough TO DISPLAY TEXT and if you try and multi-task it'll bring your computer to a complete halt. I've literally had to panic close tabs in Linux with my netbook with Google Docs open with other tabs, because if it starts getting laggy, it'll quickly get to the point it freezes the whole computer (>15 seconds between mouse moving) and it's actually faster to reboot the entire thing. (SSD ftw.)

  4. Browsers are NOT slow by Yvan256 · · Score: 5, Informative

    It's web pages that are filled with useless javascript libraries that people think they still need to use for cross-browser support even though Internet Explorer is long dead.

    It's web pages that are filled with useless ads that run their own scripts, sometimes with their own libraries too, fetched from multiple servers.

    It's web pages that are filled with useless tracking scripts, sometimes with their own libraries too, fetched from multiple servers.

    It's web pages that are filled with huge animated GIFs that should be in video form instead.

    It's web pages that are filled with auto-loading, auto-playing videos, jamming our connection to download something we don't even want to see instead of downloading the web page we're trying to read.

    Disable plug-ins. Disable javascript. You'll see how fast browsers really are.

    1. Re:Browsers are NOT slow by Calydor · · Score: 5, Insightful

      I am trying to figure out what part of what you wrote (which is all true, mind you) explains why opening a new tab in Chrome or Firefox has to take as long as it does.

      --
      -=This sig has nothing to do with my comment. Move along now=-
    2. Re:Browsers are NOT slow by Calydor · · Score: 2

      Opening the tab is also more or less instant for me.

      Then a couple of seconds later the search bar appears.

      Three to five seconds later the snapshots of the most commonly visited websites.

      I have no idea how displaying one large image, a text input field and eight (presumably locally saved) thumbnails can take upwards of ten seconds.

      --
      -=This sig has nothing to do with my comment. Move along now=-
  5. Why make them faster when most people... by Anonymous Coward · · Score: 4, Insightful

    obviously don't care about painfully sluggish programs. Just look at the number of people that find Windows acceptable despite being horrifically slow. If you can get away with inefficient and poor code, why spend the extra money to hire decent programmers to make something not slow. There's no reason why Windows should take tens of minutes after boot before it becomes usable or why clicking on a Windows should usually take more than a full second, but because people keep giving Microsoft piles of cash for giving us crap, they have no reason to fix it.

  6. They're not by kwerle · · Score: 5, Insightful

    Possibilities:
    * You have too many slow addons enabled
    * You are out of RAM
    * The page is slow (big/complex)
    * Your network connection is slow/saturated
    * Their network connection is slow/saturated
    * You are out of CPU (unlikely)

  7. Browsers are fine by sjbe · · Score: 5, Interesting

    Do you agree with Birman? If yes, why do you think browsers are generally slow today?

    Not really, no. Tabs open up basically instantly on the computer I'm typing this with. Doesn't matter much which browser I'm using either. I'm almost always limited either by the bandwidth of my internet connection or the slowness of the database on the other end of the line. I hear people bitching about this browser or that one being "slow" and I frankly have no idea what they are talking about. If you have an even vaguely recently built computer with reasonable hardware then it is a non problem. I also see comparisons between the browsers which claim this one or that one is faster and I simply don't see any meaningful difference. The only difference between them to me is the user interface and what bugs I run into. If there are speed differences they are simply too small for me to care.

    Now he did say "hundreds of tabs" which is probably the root of the problem. My guess is that he's overtaxing his computer and running out of RAM. If you have hundreds of tabs open then you are Doing It Wrong.

    I have a 2012 vintage Mac Mini and it runs just fine. Safari, Firefox, Chrome, doesn't matter. I'm typing this on a PC with a Intel i5 chip and an adequate amount of RAM and it's fine no matter what browser I use. I mostly use Firefox but I'm pretty agnostic about which browser to use as long as it works and I can block ads and trackers adequately. So no I don't think there is a problem with browser speed as a general proposition. I do think people can do stupid things that slow down browsers significantly.

    1. Re:Browsers are fine by Allicorn · · Score: 4, Insightful

      "Wrong" is harsh, I agree, but I do wonder about folks that have so many tabs open. Isn't that what bookmarks are for? You're obviously not flipping between 100+ pages in the course of a single /task/. How often do you look at the 99th least frequent of those tabs? Is that frequency worth the resource load of having the page loaded vs loading the page on demand? Is it genuinely faster to find a tiny little tab in a - presumably - rather squashed cluster of 100+ than it is to find a bookmark on a menu and have it load or am I envisioning what 100+ tabs looks like completely, heh, well, "wrong", because I don't do it myself?

      Again, not saying "wrong" at all - just saying I'm one of those users that closes every tab after looking at the page. My average tab count over the course of a day's work is probably three - so having 100+ tabs just seems unfamiliar to me.

      Also, you say it recently became difficult. That's in a particular browser? Any idea what changed?

      --
      OMG!!! Ponies!!!
    2. Re:Browsers are fine by npslider · · Score: 4, Insightful

      I'd say it's a very individual thing.

      Some people think in a straight line, others more like a tree branch. The 'straight liners' only need to keep a few tabs open at a time to follow the single mental thread they are following. Those who quickly branch out and multitask will inevitably have numerous tabs open.

      It's like the case of the spouse who is talking on the phone, feeding the baby, cooking dinner, and folding laundry compared to the other spouse, having a hard time focusing on the football game while reaching for another beer...

    3. Re:Browsers are fine by 0100010001010011 · · Score: 2

      engine to the redline before every shift

      And yet in some use cases that's the desired behavior.

      complaining that your car overheats is wrong

      And Michael Schumacher would have good grounds to go back to his engineering team and tell them they screwed up.

      But I repeat myself. Why is it "wrong"? Because you don't use your tools the way others do doesn't mean that either case is wrong. It means that some tools are poorly designed for some use cases.

    4. Re:Browsers are fine by Whorhay · · Score: 3, Insightful

      I'm pretty sure it's more about mental focus and self discipline. Our minds don't actually let us multitask, at best we switch tasks very rapidly. But I suppose that's being pedantic.

      My wife usually has dozens of tabs open when I look at her computer. She opens articles and such that she wants to read later in a new tab and moves on. I do the same thing when perusing my news feed. The difference is that I usually go and read those articles within a couple hours and close them out. She will stay occupied with other things and end up with tabs that she opened weeks ago still hanging there. When I have an article that I just don't have time for I'll bookmark it and close the tab. Youtube actually has a feature that I love and use the hell out of, and that is the 'watch later' button.

      Neither of us focuses particularly well. I just exercise some self discipline for up to 30 seconds per evening and don't end up with a computer bogged down by dozens of extra browser processes.

    5. Re:Browsers are fine by EETech1 · · Score: 3, Interesting

      When I'm verifying electrical drawings, I often have over 100 tabs open.
      Imagine a machine with 20 different sensors. First you have the data sheets for the sensors open to find the pinout. Then you have one for the cable, perhaps two to find the wire color, then one for the mating plug that connects the cable to the junction box, then one for the junction box itself, then one for the cable that connects the junction box to the PLC card terminal block, then one for the PLC card that plugs into that terminal block. You can easily get six to eight tabs open for each sensor. Granted there may be more than one sensor to each junction box, but I often will keep duplicates of those tabs open so I do not have to find the other tab when working with a specific sensor to save time, double check my part numbers, and avoid looking at the wrong one.

      I will often have multiple browsers open, one for each subsystem, with hundreds of tabs open in each.

      Admittedly I may be odd, but it works better for me than printing them all out.

      Cheers.

  8. Form over Function, thats why by sciengin · · Score: 4, Informative

    Or as this article puts it more eloquently:

    https://medium.com/@eshan/the-...

    With open source software like Firefox it is more a failure of having the right people (engineers) at the right positions (the decision making ones). Instead they are left chasing the latest widget "feature" that no one ever asked for.
    For a long time I thought that the "standard" Firefox was already bad, until I switched to my Tablet 80% of the time: Firefox for Android is just plain torture. Multiple crashes every day. Most of the time when clicking on a text field or adress bar, FF apparently hates those. other times its idling and crashes for no reason. Not to mention its hunger for memory. Unfortunately it is the only browser there that has all the features I need via addons (Mostly adblock and noscript). Opera is much better, unfortunately its adblocking is faulty and it does not recognize my hardware keyboard at all.

    I remember my wikiwalks back in 2005-2007: I used to have 50-130 tabs open and nothing bad happened. That was on a Laptop from 2004 with a single core CPU. So really, it has gone downhill by orders of magnitude.

  9. If you want to know, measure it. by jcr · · Score: 4, Insightful

    Check out the WebKit project, build it yourself, and run it under Xcode's profiling tools.

    -jcr

    --
    The only title of honor that a tyrant can grant is "Enemy of the State."
  10. Re:Why is everything so damn slow? by tepples · · Score: 2

    For one thing, users expect to see thumbnails of huge images, sync status badges on Dropbox or other online backup services, multilingual filenames written in scripts whose coverage requires multiple fonts, etc.

  11. Re:Why are they so slow? by arth1 · · Score: 2

    Yes, pages explicitly saying do-not-cache for most if not all elements by default, in order to placate advertisers and trackers is one of the main reasons. Combined with going to https, which defeats proxy caching[*] and needs extra computation, the experience is much slower.

    [*]: This is why Google pushes and advocates https so much - don't be fooled into thinking they truly care about your privacy. Really, they make money on selling your private information and history. With proxy caching, they can't tell whether one person has viewed an element or a hundred, all behind the same proxy. The advertisers want to know that.

    But part of it is code bloat too, with so many abstraction layers that every job takes orders of magnitude more work than needed.

  12. Awkwardly repurposed... by fuzzyfuzzyfungus · · Score: 2

    There may well be some missed opportunities that I'm in no way qualified to comment on; but at least part of the "browser performance goes to hell when you have a zillion tabs open"/"it takes ages to restore a zillion tabs on restart" trouble seems likely to be connected to the fact that web pages have, somewhat awkwardly, evolved from being pretty much pure markup with a small sprinkling of javascript(which had the advantage, both for inexpensive background storage and quick restoration, of being nearly stateless, aside from any form fields that had been filled in; and could be stored or re-rendered from cached assets at your convenience); to being pretty much full applications, with lots of state all over the place; and often a variety of assumptions on the server side about what the client side is doing and vice versa. You can put such a page on ice; or dump it and re-render it from cached assets; but if you do, don't be surprised if you get dumped to a login screen or the page ignores most of what you've saved on its behalf and starts xmlhttp-request-ing anything that might have changed since it has been away.

    If you feed them retro websites, or sites designed by people with classic taste, contemporary browsers are faster than a bat out of hell with rocket boosters. That just doesn't help you against modern websites; which are both bloated(typically with slow-as-hell 3rd party ad code, just to add injury to insult); and still somewhat awkwardly trying to move from a caching model mostly designed to keep pictures from being unnecessarily retransmitted to something suitable for letting full applications pick up where they left off.

  13. Inability to RTFA by tepples · · Score: 2

    And then end up getting modded down for making uninformed comments on account of not having read the featured article. Several sites admit that they can't tell tracking blocking (such as privacy.trackingprotection.enabled which uses Disconnect's list) from ad blocking, such as WIRED, The Atlantic, and the INQUIRER, and sites like Slashdot continue to link to stories on these sites.

  14. Re:Why are they so slow? by tepples · · Score: 2

    HTTPS doesn't "defeat" a caching proxy near the client. It only requires users of said proxy to take the step of trusting the proxy's root certificate. The one thing it "defeats" is an intercepting proxy that tries to hide its existence from its users.

  15. Re:Because Use Cases by Dixie_Flatline · · Score: 5, Insightful

    Uh, I have 23 tabs open in one window and 39 in another (Vivaldi). I have a dozen open in MS Edge. Lots of them are work related or reference tabs. My Vivaldi tabs are things that I'm reading or things that I always keep open.

    I'm not unusual. When I walk past other people's machines, everyone has dozens upon dozens of tabs open.

    I get that I'm a huge nerd and that my use case is often niche, but browsers are just as much work tools as entertainment tools these days. It IS a useful test case. Hundreds of tabs is maybe pushing it, but it's definitely conceivable.

    Most of the webpages that I have open ARE static content--they're a news story or a review or something that doesn't immediately need updating. It makes it much faster to load. Only a few things like Reddit or Facebook need a lot of refreshing.

  16. Deep stacks by Bryan+Ischo · · Score: 5, Insightful

    I don't know the specific code in question, but I have seen enough code to have a theory.

    Long-lived software projects that implement programs with complex features (and web browsers have an astounding array of features), especially those that interact directly with users, who put programs into a position of continually having to respond to extremely complex sets of inputs (just think of how many valid inputs there are to a web browser at any one moment), tend towards a style of implementation that can best be described as "layers upon layers upon layers of framework".

    One aspect of programming that many engineers are, in my experience, not very good at, is deciding when to simplify frameworks versus making them more complex. I think it comes from a fear that many people have of painting themselves into a corner -- we've all seen code so inflexible that it makes extending it at a later time difficult, and I think that many people respond by going too far in the opposite direction - to avoid painting themselves into a corner, they put 100 doors in every room so that there is always a way out.

    The end result is that every aspect of the complex program is designed to be extensible well beyond anything that will ever likely occur in practice. And the interactions between these complex layers of framework become so complex themselves that new layers have to be invented just to try to simplify things and allow any hope of rationally moving forward.

    So what you end up with is incredibly deep stacks of function calls for almost any action, as various extensibility layers are passed through, along with the layers that consolidate previously implemented extensibility layers into simplified layers that more directly match the actual requirements of the program.

    I have occasionally seen stack traces from programs like Firefox, and I expect Chrome is no different, and the depth of the stack at the point of a crash is always somewhat breathtaking. You may end up going 30 - 40 layers deep before you actually get to a piece of code that has a tangible effect on the state of the program.

    Now imagine that a particular user input requires running through a function that has to call out to several parts of another framework layer, and you're going to be paying the deep stack penalty multiple times.

    What you end up with is a large code base that does everything necessary, but in a way that is embellished to a nearly pathological degree, where every action takes 10 - 20 times longer than it would had that action been encoded much more directly and with far fewer framework layers.

    The advantage of such a large code base is that it has enough flexibility to rarely, if ever, require a complete redesign as new feature requirements come up.

    The disadvantage is that it will never operate as efficiently as a more directly coded program, and you get user interfaces that require executing literally billions of machine instructions just to effect fairly simple changes to its internal state machine.

    That's your web browser.

  17. a better question... by Lumpy · · Score: 2

    Why are most websites so badly designed and so bloated they load slow?

    Slashdot before 2.0 was screaming fast. Then they introduced all the JSON garbage that slowed it down. It's all about being pretty over functional.

    --
    Do not look at laser with remaining good eye.
  18. Re:Because Use Cases by johannesg · · Score: 5, Insightful

    I don't think that's the standard use case for testing, nor should it be. What the hell are you doing with that many tabs open.

    Speak for yourself. I normally open a bunch of websites I read, and then just middle-click to open the articles I find interesting in separate tabs. You can quite easily end up with dozens of articles. I wouldn't consider that to be unusual at all.

  19. Browsers are fine. Web design is a disaster. by gestalt_n_pepper · · Score: 2

    As long as web sites pack every possible space with bandwidth sucking animations. As long as refresh is used with wild abandon by incompetent web designers, browsers will appear slow.

    --
    Please do not read this sig. Thank you.
  20. Re:Because Use Cases by ckatko · · Score: 2

    Use case example?

    I'm searching for X programming topic. I enter it into Google.

    Because I'm not a moron, I hold control-click and load all top-ten results in tabs. I then quickly compare-and-contrast them to make sure I getting the complete picture and not a heavily biased, tunnel-vision answer.

    TADA.

    Also, I open windows for separate "tasks" and tabs for related information to those tasks. (For example, one window is personal tabs like YouTube music and Gmail.) By time I end a work day, I've had over 180 tabs open. I use OneTab to store blocks of interesting tabs for later. Great for saving RAM on a netbook too.

    And what happens if Chrome crashes, OR, I accidentally hit Control-Shift-Q (kill ALL CHROME TABS) instead of Control-Shift-W (kill all tabs in a single window.) Well, now I've got to RELOAD EVERYTHING holding control-shift-T until all the tabs I need come back.

    I'm not arguing that Chrome should cache everything you do. But the idea that this use case never shows up is just plain silly. Maybe you should learn to multitask more before claiming other people never do.

  21. Re:Add RAM? by tepples · · Score: 4, Informative

    I've done that. Even after maxing my laptop at 2 GB and replacing the HDD with an SSD, some things remain slow. The CPU graph shows one core maxed out (Firefox 50, which disables e10s because of add-ons) or both cores maxed out (Firefox 51 beta, which uses e10s), which wouldn't happen if it were swapping. I'd replace my laptop, but a new 10" has been hard to find for the past four years (except for laptops that run Chrome OS and beg the user at every boot to wipe Crouton).

  22. Far-future Expires: header by tepples · · Score: 2

    What you are missing is that even if the browser has the library cached, it still much reach out to the server to see if it has the latest version

    Not if the version number is in the URL. Then the CDN can serve the library with an Expires: header with a value years in the future.

  23. IE 6 only uses 64 megs by Billly+Gates · · Score: 3, Insightful

    Just saying ...

  24. First Post! by PPH · · Score: 4, Funny

    What do you mean, 'slow'?

    --
    Have gnu, will travel.
  25. Re:Because Use Cases by bfpierce · · Score: 2

    And each one of them doing background work just like a regular application would, at least nowadays. Ask the idiots designing the pages and loading in a bunch of crap, not the browser writer.

    If I were running 300 programs on my OS sucking up 100% of the CPU would you call me daft? Sure as shit you would.

  26. Blame SSL/TLS by Miamicanes · · Score: 2

    Much of the recent blame should be placed on the new universality of using SSL/TLS for everything.

    The problem is, negotiating a cold SSL/TLS handshake from scratch takes a certain amount of time... and there's very little you can do to speed it up with current standards. Adding certificate-revocation lookups compounds the problem and adds even more time. In the past, a site that "used SSL" might need to do one or two key exchanges for one or two different hosts. Now, a single page might require a dozen or more key exchanges... and some of those key exchanges might not even be known by the browser to be necessary until after it's done the first few (because some script delivered via https references some other asset via https on a different host).

    SSL/TLS itself is generally a good thing... but the WAY it's currently being used was NEVER seen as a realistic use case 20 years ago when it was first implemented. Simply put, SSL/TLS key exchange and CRL doesn't scale well in their current form.

    This is also part of the reason why it's so common to end up with "five bars of LTE signal strength, but no working data-connectivity" -- mobile apps are "chatty" to begin with, and many of them do a shit job of keeping https sessions alive between requests, so every single background https request requires yet another new handshaking and revocation-lookup. In areas where you have a cell site with limited backhaul connectivity and occasional surges in the number of users (say, a cell tower near a large state park serviced by only a T-1 line or two... on July 4th, when 60,000 people might descend on the park for a few hours), the endless key exchange traffic ITSELF can almost fully-saturate the tower's backhaul capacity.

  27. Time to first byte and javascript by SmSlDoo · · Score: 2

    There are several different phases involved in loading a web page. The first is how long it takes for the site to actually send the response to your request. If it takes 5 seconds to request index.php, there is not anything the browser can do to fix this. Caching and optimizing code will help, unfortunately most sites are build on a CMS (ie wordpress), and most designers / admin do not know how to optimize this properly. If this is slow it is usually either bad code, or trying to store entirely too much stuff in the database. Some, very poorly designed, sites will also make remote calls to external servers, this is painfully slow.

    After the html is sent to the browser, the browser will start the rendering process. This involves loading all CSS and Javascript files referenced in the html. Old logic was to move the javascript to the footer to ensure they load after the main content is loaded. Unfortunately, with new browsers this does not matter. They will delay rendering of the content until all javascript is loaded on a site. This is to avoid information being moved around on the screen when files are finally loaded.

    Hopefully, most designers will move their expensive javascript functions to a $(document).ready function but that only speeds the page display up after the javascript files have been loaded. Beyond that the best thing that designers can do for javascript heavy sites is defer the loading of their javascript. This allows the html to render before attempting to load javascript. Not all libraries support this, namely jquery, by default. But it will help speed up the time from the request to the time something is displayed on the screen.

    With all of these methods, the time that it takes to completely load and render all content on the page will be about the same. But, from the users point of view, the page will appear to be loading faster.

  28. BROWSER SUCK! by tuorum · · Score: 2

    I've complained and complained about how poor the performance of Firefox and Chrome and IE Javascript and CSS rendering engines to every board that they have!! I just can't get them to fix the speed with my desire to have 15 javascript frameworks and 38 custom stylesheets and have those automatically generate all the text in my site in a specific location so that I can resize the screen and have things bounce around and look just a little bit different in case someone with a mobile phone happens to come across my page and managed to get it loaded into the mobile browser before the render engine the browser to run out of memory and be killed by the operating system!!!!!

    When you write up a nice block of text, browsers are super duper fast. Add in some images: still super fast. Add some basic javascript: cool beans, they can handle that. Some CSS to make things pretty? SURE! Oh, you want to lump in a generic framework of 800 functions, of which you really only need to use 10 of them, and an associated set of stylesheets that are then rewritten by parts of said JS Framework to draw out 13 little buttons? Well, that's going to work but your going to pay a price.

    Web developers, do the internet a favor and test your pages on a browser running in a virtualmachine with 25% of 1 CPU and 512MB of memory, and force the network speed down to 2-4Mbps. And on that same VM, profile the page to see how it's render performance is handled. Then fix the page until it works there. Please, use all the JS files you want, but if your page takes more then 3 seconds to fully render, you're doing a disservice to the whole web.

    And go away with any "upgrade your computer" BS. No one's using a C64 here. If you're page can render in 3 seconds on that VM, imagine what it will do on a modern PC.

  29. This post makes me feel old by zifn4b · · Score: 3, Insightful

    Ok, I am very astonished by this question "Why are browsers so slow?" which since you're most likely a millenial you might as well re-phrase the question as "Why are browsers slow AF?"

    No offense but you obviously have no idea what a slow browser really is. Try Netscape 6 or IE6 and let me know if you think Chrome is still slow. First of all, are you sure you can attribute all the slowness to the browser itself? Did you crack open the modern browser developer tools that we all have now (hint: Firebug and Chrome developer tools didn't used to exist until a few years ago) and look at the network tab or equivalent to make sure that the web server/REST service/whatever isn't taking a long time to serve back data? Better yet try profiling your own javascript code with console.log, console.time/console.timeEnd. Since you can use an identifier, you can even do it asynchronously, how fancy is that? I seriously doubt you've done any of these exercises because most modern browsers take javascript, compile it into native code and cache which is about the fastest you're going to get javascript to run. Microsoft completely rewrote it's rendering engine multiple times the latest of which is Edge. Firefox, Chrome and Safari have all had similar efforts. I've been a web developer for a number of years and I can tell you, the stuff we have now is lightning fast.

    You try serving up a web page to Netscape Navigator using a cgi-bin perl script from an old version of Apache and let us know if you think modern tech is still slow.

    It just appalls me. No matter how much better we make technology there is always a generation that comes along and tells us all of our effort are crap because they think everything needs to be bigger, better, faster. If you want to complain, you get engaged and make it what you think it ought to be. Until then you have no room to complain if you're just going to comment from the peanut gallery. Gah.

    --
    We'll make great pets
  30. People are crap at multitasking by sjbe · · Score: 2

    Why is that "Wrong"? Because your brain doesn't work that way? That's how I've always browsed and only recently did it become terrible.

    It's "Wrong" in the sense that just because you can do something it doesn't mean it is a good idea. Your brain doesn't work that way either even if you think it does. People are demonstrably terrible at multitasking. That's why we can't talk on the phone and drive at the same time safely. You cannot possibly convince me that you are doing anything productive with most of those tabs. It's merely a form of hoarding. Opening that many tabs chews up a ton of memory and then you complain that things get slow? Of course it gets slow! What else would you expect?

    Now it's your prerogative to run your browser any way you want but don't whine to me that it gets slow when you are doing something that very predictably should result in it running poorly. Furthermore don't pretend I'm stupid enough to believe that you are maximizing productivity by opening dozens of tabs you cannot possibly be actively working with.

  31. Re:Why are they so slow? by arth1 · · Score: 2

    If the endpoint's certificate doesn't check out, the proxy server refuses to issue its own certificate for that site.

    That doesn't tell you what's wrong. And it always hides the real security details, showing the proxy server's security details instead.

    And doesn't help if you need to access a site for which you have the CA but the proxy doesn't.

    In practice, https pretty much defeats proxy caching. Which Google just loves.

  32. Slow? by WillAffleckUW · · Score: 2

    I don't get why you think they're slow.

    My Mosaic browser works ultra fast.

    --
    -- Tigger warning: This post may contain tiggers! --
  33. HTML tables are too slow by WaffleMonster · · Score: 2

    One consistent performance problem I see across browsers is large tables take forever to render even with static column attributes. You can load an excel spreadsheet with tens of thousands of rows instantaneously.

    The same data in a table pegs a core and consumes a GB or more of RAM with minutes or more delay. Often as the number of rows increase there is a huge corresponding drop-off in performance until it becomes practically unusable.

    Otherwise I have no real issues with browser performance. Sure browsers like IE do the darndest things you've ever seen sometimes including getting so slow as to be unusable when display large ASCII text files. That's right.. not complex HTML but text rendered as TEXT.

    Browsers are like everything else. The EE's give us incredible hardware and we go out of our way to waste it with lazy sloppy coding simply because it's cheaper not to care.

    Browsers are the same way.. all kinds of hard work on fancy algorithms and optimizing performance ... obliterated by "developers" who think HTML/JavaScript/CSS are "too hard" and instead insist on piling on layer upon layer, framework upon framework, widget after widget, piecemeal XMLHttpRequest after XMLHttpRequest, fill site with social media bugs, cross site trackers, ads/malware, use third party bugs to get web stats because you are too lazy to install a stats package to analyze your own access logs. Some sites just enjoy selling out their customers to stalking firms who often cross sell-out customers to other stalking firms leading to hilarious trees of connections when accessing a single page. Yet others are completely oblivious to what is going on behind the scenes.

    Web sites written by people who care about wasting their users time load instantaneously. It's amazing. Never really had issues with browsers themselves not being responsive divorced from the bullshit occurring within them. I'm not really sure how what is being described by TFA is even possible given so much runs in separate process/memory space these days.

  34. hundreds of tabs? by j2.718ff · · Score: 2

    I think I found your problem:

    Which takes ages if you have a hundred of tabs.

    I can't imagine my browser being remotely functional if I had hundreds of tabs open.

  35. Re:Because Use Cases by belthize · · Score: 2

    Virtual desktops.

    I generally have 6 to 8 virtual desktops, each dedicated to a particular type of task or project.
    Within each desktop I typically have a browser, 2 or 3 if the browsers are showing fundamentally different things.
    Within each browser I'll have anywhere from 1 to 6 (rarely more) tabs on different slants on the same topic.

    So if I'm working on AWS that would be in a virtual desktop. I might have one browser for dynamic stuff (like their console) and one for documentation. The documentation browser may well have 6 tabs. When I'm not using the browser I icon-ify it.

    Trivial, at least for me, to keep things sorted that way. I know if I'm on desktop X then I'll have a browser dedicated to X, if I don't see it then it's been icon-ified.

  36. Re:Because Use Cases by oji-sama · · Score: 3, Informative

    I use the Tree Style Tab extension in Firefox. Not only I get the tabs on the left side of the screen with easily readable titles, the child tabs are found in the tree creating simple organization automatically. Not sure if I would give up adblock or the tree style tabs if I had to choose

    --
    It is what it is.
  37. Too many 3rd party scripts being called. by Kernel+Kurtz · · Score: 4, Insightful

    Even with no-script (or especially with it as may be the case), I try to load a page. It partially works, but needs some scripts to work properly. I tell no-script to allow all this page, but then when it reloads it wants even more scripts from more places. Tell no-script OK again, and then when it reloads, it still wants more, or some of them change.

    Sometimes takes 3 or 4 tries allowing and reloading just to get pages to render by the time I've approved the 50 other sites they want to load content from.

    Generally speaking, I try to avoid websites that go overboard this way, but it is sadly getting to be way too common. Sometimes the no-script list is so long I have to scroll through it.........