Live data from Hacker News

Yahoo Starts Prompting Chrome Users to “Upgrade” to Firefox

techcrunch.com

231–237 of 237 posts

Re: Yahoo Starts Prompting Chrome Users to “Upgrade” to Firefox

#231
post #80
post #6

Earlier quoted context omitted.

agreed. the term upgrade also brings with it a connotation of being better. I am doubtful that this is this case.

It depends on what you want. If you're primarily interested in speedy javascript, process isolation across tabs (so busy tabs don't lock out the UI), or debugging web apps, I think Chrome is better. Chrome in particular seems to have a much smoother JS execution profile; it may be down to GC, or something else, but Chrome generally has fewer frames dropped for any given demo. On the other hand, Firefox is way more fe…

I'm personally of the opinion that Chrome has jumped the shark with it's emphasis on perf benchmarking and profiling tools. There's no doubt that Chrome's Dev Tools are superior to anything else out there, but real-world usage has suffered. I've seen instances where certain layouts (eg: position: fixed) cause the visible UI to get out of sync with the DOM, then 'magically' correct itself as soon as you inspect element - no doubt an artifact of over-optimizing repaints. Chrome's Pepper Flash plugin is also considerably less performant than Adobe's plugin, with multiple Chromium tickets spanning over a year. As one of the comments lower down indicates, it's awesome if you're running the latest MBPro with 16G RAM, but should you really need that for a browser? And don't even get me started on Chrome/Windows - have they finally decided to render custom fonts in a way that doesn't look like absolute crap? The Chromium thread on that bug was very insightful as to how the Chrome devs view their user base. Additionally, when it comes to rendering CSS3 effects (gradients, shadows, etc) Chrome really performs poorly compared to Firefox or Safari. Radial gradients esp. suffer from extreme banding, even on Retina displays.

Re: Yahoo Starts Prompting Chrome Users to “Upgrade” to Firefox

#232
post #28

Earlier quoted context omitted.

Yep, exactly. Google would never sink so low as to advertise.

lol.

lol at your downvotes.

just go to google.com on any browser other than chrome and you see a huge banner asking to install google chrome and experience a faster web or something.

then came back here and tell me how that is not advertising.

Re: Yahoo Starts Prompting Chrome Users to “Upgrade” to Firefox

#233
post #209

Earlier quoted context omitted.

> Make sure to let all the Opera devs working on web standards know this. I don't mean to denigrate their work, nor have I forgotten Opera's role in the fight for web standards, but in the case of Blink, their contributions pale in comparison to Google's. Check the graph at http://browserg.nom.es/#commitsByOrganization , and note that the vertical axis is not linear. Opera's commit volume to Blink is 7% of Google's.…

You purposely cut out that they are shipping shadow dom in conjunction with Mozilla. That was literally the next statement where you cut your quote. And if you continue to read the conversation this was all talked about and is basically a draft spec, they just haven't finished writing it up, but all the talking and consensus building was done and documented in the f2f minutes.

> that they are shipping shadow dom in conjunction with Mozilla

With my Mozilla developer hat on, that happens not to be the case. Which you would have known had you either read the entire linked-to thread, or even just read the mail that was linked to, which points that out explicitly in the "notwithstanding your apparently inaccurate statement about Mozilla" bit.

> That was literally the next statement where you cut your quote.

It was also a misrepresentation of what's actually going on. Quite common out of Google these days, unfortunately; we've had to call them on it publicly a number of times. Not that this is stopping them from continuing to claim that others are OK with something they're doing when that happens to not be true.

> but all the talking and consensus building was done

The only thing discussed at the CSS working group f2f was the cat and hat combinators, not the entire shadow DOM spec. And even for those, serious issues were raised later by people who were not present at the f2f.

For shadow DOM as a whole, there is no consensus at all. Mozilla is not really on board with the spec in its current form (and we've said so repeatedly and publicly, though we do at least have a plan for how to get the spec to something that we'll be OK shipping... which won't match what Google is shipping). Apple is very definitely not on board at all with the spec in its current form, and Google is not even trying to get them on board. Microsoft has basically said nothing apart from having concerns.

In addition to that, the spec doesn't match Google's implementation at all, in all sorts of ways that are obvious if you actually stop to read what the spec says.

Basically, Google implemented and shipped whatever they felt like and made a sort of attempt at specifying something or other which totally doesn't match what they shipped. And other UA vendors at best (Mozilla) plan to ship something somewhat different from what Google has shipped and at worst (Apple) think the whole thing needs to go back to the drawing board because it's just broken by design.

If you don't think that's unilaterally shipping before standardization, I'm not sure what you think it is, exactly.

Re: Yahoo Starts Prompting Chrome Users to “Upgrade” to Firefox

#234
post #97

Earlier quoted context omitted.

Does this apply when all the major browsers (save IE, though it's been a while) update unobtrusively?

I don't see how it has anything to do with how obtrusive the updates are.

you can always go to about:support and click "Reset profile..."

Re: Yahoo Starts Prompting Chrome Users to “Upgrade” to Firefox

#235
post #77

Earlier quoted context omitted.

Firefox still doesn't have per process tabs(yes I know about nightlies), so it's a no go for me.

Firefox won't have a process per tab. Even in the multiprocess versions, it has one process for the UI and one for all the tabs' content. That way it doesn't take tons of RAM for overhead if you have lots of tabs, but heavy tab content can't freeze the UI. You can change the number of tab-processes in about:config under dom.ipc.processCount.

Firefox uses compartments per domain instead, which is a great alternative to process per tab: "Some readers might wonder how compartments compare to per-tab processes as they are used by Google Chrome and Internet Explorer.

Compartments are similar in many ways, but also very different. Both processes and compartments shield JavaScript objects against each other.

The most important distinction is that processes offer a stronger separation enforced by the processor hardware, while compartments offer a pure software guarantee. However, on the upside compartments allow much more efficient cross compartment communication that processes code.

With compartments cross origin websites can still communicate with each other with a small overhead (governed by certain cross origin access policy), while with processes cross-process JavaScript object access is either impossible or extremely expensive.

In a modern browser you will likely see both forms of separation being applied. Two web sites that never have to talk to each other can live in separate processes, while cross origin websites that do want to communicate can use compartments to enhance security and performance."

You can read more about how that works at http://andreasgal.com/2010/10/13/compartments/

Re: Yahoo Starts Prompting Chrome Users to “Upgrade” to Firefox

#236

Earlier quoted context omitted.

Now that I've gotten used to them, I really like the !bang operators. They're incredibly convenient. A few of the ones I abuse constantly: !g - google !bi - bing image !yt - youtube !so - stackoverflow !w - wikipedia !py - python docs The exhaustive list is here: https://duckduckgo.com/bang.html

Why are bangs good? Why not just go to the site? Also Stackoverflow's search and many other site searches are totally rubbish. Not a bit, but totally rubbish. Here's an example: "!so c# read file" => this delivers useless results, the top result being "Reading Excel files from C#" Compare that to "stackoverflow c# read file" on google, which delivers what you actually want, with the question "Reading From a Text File…

> Why not just go to the site?

Setting DuckDuckGo as my default and using !s means I can search any of those sites without having to go to them first.

It takes a step out of the process.

Re: Yahoo Starts Prompting Chrome Users to “Upgrade” to Firefox

#237
post #141

The odd part here is that Firefox has gone back to being my primary browser. The fact that it now disables/disallows extensions the Play store doesnt like and flat out locks you from doing so manually really annoyed me. Don't try to out-Apple Apple, it doesn't win you any favor. While they aren't packaged by default, some of the tools around FF for .js work just as well as on Chrome, and the only thing hat Chrome has…

> The fact that it now disables/disallows the Play store doesnt like... I assume here you're referring to Chrome, not Firefox?

correct
Post reply on HN