Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:Switch Proxy Tool (Score 3, Informative) 284

This is why people complain about bloat...what is the point of this junk? Weren't there already addons/themes that let you do this kind of stuff?

It's the first step toward replacing Firefox's old theme system with a better one, where themes are smaller and easier to create. (It's not there yet, since you can't replace buttons, only backgrounds.)

While we have both systems in place, it might seem like "bloat", but in the long term it will allow Firefox to use significantly less memory and have a simpler user interface around installing themes. It's a fight against bloat.

I hope that mouseover to change style stuff only works on mozilla domains

Correct, it only works on sites that are whitelisted for extension installation. By default, the only whitelisted sites are the mozilla sites for extensions and themes.

Comment Ideas from a Mozilla contributor (Score 1) 310

Pick a large, active open-source project and try to help with the problems its developers have. You will be loved.

Here are some of the problems I'm aware of within the Mozilla project.

Speed of development

'make' doesn't scale. An incremental build, even with no changes, takes at least a minute. (In contrast, just checking whether any files have changed takes 'hg' less than 10 seconds.) Maybe help us move to 'scons', or help improve 'pymake', or just help us get our dependency generation right.

'ld' is slow. Once a developer makes a change to any c++ file, the incremental build is going to take several minutes while the linker uses up all her RAM. Maybe help us move to another linker such as 'gold', and contribute any necessary changes back to the 'gold' project.

'hg' merges are confusing. hg's developer-facing user interface could be improved, both while doing a merge and after doing a merge.

Automated testing

We've built an interesting interface around hg-pushlog (which is itself a Mozilla extension to hg) and buildbot that lets us see which tests failed after each change. I'd love to see these tools generalized to the point where other open-source projects can use it and contribute back to it.

As we require unit and integration tests for more and more components of Firefox, we're finding that a small number of tests failing intermittently can make it difficult to move quickly. We could use better tools for tracking test failures, and for record-and-replay debugging to help us figure out the intermittent failures, and probably for other things we haven't thought of.

Programming languages

We need a decent low-level programming language. Something that lets programmers implement sneaky fast algorithms, but lets programmers do it without constantly shooting themselves in the foot with security holes. Something you'd want to write (difficult parts of) a web browser or OS in.

I don't know if the answer is adding more and more to the type system (like in Cyclone), or integration of assertions with static analysis (like in D), or simply making it easy to integrate low-level code with high-level code (like in C#, or with ctypes or jsctypes).

Mozilla is doing interesting things with custom static analysis of C++ code.

Making collaboration tools support workflow and GTD

We have a crash analysis system and a bug-tracking system with lots of information, but the workflow is poor, so much of the information is not acted upon.

It's hard to come up with a good workflow (and make the tools support that workflow) in a large project where many of the contributors are volunteers who decide themselves what to work on, but I think we can do better.

Comment Re:So what was the code from? (Score 1) 145

You push off the updates and say "never" or "ask me later," and you are completely ignored because it starts updating when you restart your browser regardless of what you checked.

There are no "never" or "ask me later" buttons on the dialog I think you're talking about. There's a "Restart Firefox now" button and a "Later" button. The "Later" button installs the update the next time you start Firefox.

Incredibly patronizing.

Perhaps, but the alternative is far worse for the vast majority of users.

Makes it hard to run an old version.

If you want to test multiple versions, or manage Firefox versions for all of an organization's computers, it's best to turn off Firefox's built-in updater. Then you don't even have to deal with prompts.

Comment Re:Google dodged the point (Score 1) 150

Yes, Chrome Frame increases your attack surface, because by default, it lets each site choose whether to use IE's engine or Chrome's engine. But I see Chrome Frame as a temporary measure to allow intranet sites to be updated one at a time. From that perspective, it's safer in the long run than remaining stuck with IE6.

Furthermore, if you configure Chrome Frame to force one engine or the other for all non-intranet sites, it's about as secure as whichever engine you pick. More to the point, it's then safer than having everyone use both IE and Chrome, because a site can encourage users to try opening it in the other browser just by looking broken.

Comment Re:the problem with one-click upgrades (Score 3, Insightful) 103

That problem isn't specific to 1-click updates. It exists equally with 0-click updates (like Firefox's minor updates) and 50-click updates (like WordPress used to have).

You can improve the security of updates by using multiple layers of software protection (e.g. https AND code-signing). You can't improve security by increasing human involvement in the update process and then blaming users who update while the site is hacked. Increasing human involvement just makes it slower and limits the kinds of software protection you can use.

Comment Y chromosome is special (Score 3, Interesting) 309

The Y chromosome doesn't get to recombine, so measuring the mutation rate of the Y chromosome only gives us a limited understanding of mutations in general.

Lack of recombination means you don't get to measure mutations that consist of genes being brought together for the first time in an individual. It also eliminates entire classes of accidental mutations. On the other hand, it removes the opportunity for some types of in-cell DNA repair.

Furthermore, the Y chromosome is less interesting than most. It contains very few working genes, precisely because it is not subject to the most important DNA repair mechanism of all: sexual reproduction.

Slashdot Top Deals

Physician: One upon whom we set our hopes when ill and our dogs when well. -- Ambrose Bierce

Working...