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…
Yahoo Starts Prompting Chrome Users to “Upgrade” to Firefox
231–237 of 237 posts
Re: Yahoo Starts Prompting Chrome Users to “Upgrade” to Firefox
#232Earlier quoted context omitted.
Yep, exactly. Google would never sink so low as to advertise.
lol.
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
#233Earlier 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.
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
#234Re: Yahoo Starts Prompting Chrome Users to “Upgrade” to Firefox
#235Earlier 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.
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
#236Earlier 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…
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
#237The 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?