Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:What do they spend the money on? (Score 1) 161

Browsers are pretty complicated, yes. Things like low-latency high-performance VMs, hardware-accelerated video pipelines, plus the details, like actual HTML parsing, CSS layout, a network stack, and so forth. Also, what matters is not just the complication but how fast you're trying to change things, and people are adding new things (flexbox, more complicated CSS layout modes, mode DOM APIs, etc) faster than ever before.

But also, in addition to a browser Mozilla is working on FirefoxOS, which involves a whole separate bunch of developers, since it's not like the browser developers are writing things like the dialer app for FirefoxOS. Also, you need QA, not just developers.

And yes, Mozilla has 1000-ish employees, for what it's worth.

It's not just Mozilla. If I look at https://www.openhub.net/p/chro... I see on the order of 600 committers with commits in the last month. And that's not even counting whoever is working on the non-open-source parts of Chrome. And not counting, again, QA and so forth.

And the worst part is, this is not a new development. Microsoft had over 1000 people working on IE6 in 1999, according to http://ericsink.com/Browser_Wa...

So yes, browsers, complicated.

Comment Re:Chrome Soon? FireFox on the other-hand... (Score 1) 67

The "let" keyword is not the same thing as "let blocks" and "let expressions".

The keyword looks like this:

    let x = 5;

and is in ES6. A let block or let expression (neither of which is in ES6) looks like this:

    let (x = 5) alert(x);

so that "x" is only in scope for the duration of the let block. It's syntactic sugar for:

{
    let x = 5;
    alert(x);
}

Comment Re:Chrome for Android and Safari for iOS? (Score 4, Informative) 74

> So, they're running Android and iOS on your
> computer to run the same binaries as those
> platforms?

No. "They" are allowing you to connect your Android or iOS device to your computer (likely via USB), then debugging the on-device browser using the Firefox debugger running on your computer. That way you're debugging the thing you actually want to debug, but using the same developer tools you're using for your other debugging, and which therefore you're already familiar with.

Privacy

Terrorists Used False DMCA Claims To Get Personal Data of Anti-Islamic Youtuber 389

An anonymous reader writes German newspaper FAZ reports (google translated version) that, after facing false DMCA claims by "FirstCrist, Copyright" and threatened by YouTube with takedown, a youtuber running the German version of Islam-critic Al Hayat TV had to disclose their identity in order to get the channel back online. Later, the channel staff got a mail containing a death threat by "FirstCrist, Copyright", containing: "thank you for your personal data. [...] take care your house gets police protection!" Employee names are now on Al Qaeda black lists.

Comment Re:The Nobel Prize Committee blew it (Score 2) 276

I happen to know someone who won the Economics prize, and even ended up going to Sweden for some of the award week. The economics medal is technically different, as you say, but is treated identically in a functional sense. That is to say, the winners all appear together at various ceremonies, are all given the same considerations and support, speak at the same events and so on. Press coverage also often fails to point out the distinction.

(In contrast, the Peace prize is awarded differently, has different event and ceremonies, etc., etc.)

Based on these observations, I've started thinking of economics medal as equivalent to the others in every objective sense that matters.

Slashdot Top Deals

Real Programmers don't eat quiche. They eat Twinkies and Szechwan food.

Working...