Mozilla's Goodger on Firefox's Future 470
An anonymous reader writes "The New Zealand Herald has an interview with Ben Goodger, lead engineer for Firefox at the Mozilla foundation. In it he describes how he got started, his reasons for Firefox's existence and what the future may hold for the little browser that could."
My Wishlist for FireFox (Score:5, Interesting)
2. Firefox renders slashdot correctly, since this is the site that promotes it the most.
Keep up the good work!
Re:My Wishlist for FireFox (Score:5, Funny)
Re:My Wishlist for FireFox (Score:2)
Re:My Wishlist for FireFox (Score:2)
No, I didn't. It would be even better if they updated for 2004, but just to 2001 would do... :)
Re:My Wishlist for FireFox (Score:5, Insightful)
Slashdot doesn't even need to update to 2001; all they need to do is _correctly_ support any real version of HTML - any one would do; as long as it's valid. I'll hold my breath - I look stunning in blue.
Re:My Wishlist for FireFox (Score:4, Informative)
Re:My Wishlist for FireFox (Score:3, Funny)
I think you are probably right. And so does somebody else! [w3.org]
HTML is as good as XHTML (Score:3, Interesting)
Deprecation is not a matter of opinion in the world of webstandards :)
HTML 4.01 and XHTML 1.0 offer exactly the same capabilities, only XHTML offers ease of use inside XSLT based publishing systems. Anyone else might just as well go on writing HTML 4.01.
What matters is that you write valid HTML, and that you separate style and structure, farming out all presentation to the linked style sheet. So I agree with the sentiment to use 'Strict with CSS'.
I see a
Re:HTML is as good as XHTML (Score:3, Interesting)
Deprecation is not a matter of opinion in the world of webstandards
Is that why the W3C site isn't written in HTML 4.01? Is that why people who make build websites for a living (like myself) code XHTML?
Just
Re:My Wishlist for FireFox (Score:5, Funny)
No, the IT theme is meant to be like that
Re:My Wishlist for FireFox (Score:3, Funny)
Re:My Wishlist for FireFox (Score:2)
Re:My Wishlist for FireFox (Score:5, Funny)
The content is the only thing matters is the content anyway. If it's so bad, why don't you make your own front end for the RSS feed? That's the true Open Source way! Plus, what if someone tries to access
Better safe than sorry.
Real Men (Score:3, Funny)
Yeah! And real men read web pages using only cat, parsing the HTML in their heads!
Re:My Wishlist for FireFox (Score:5, Interesting)
The RSS feed doesn't include the full article summary, it limits the length.
Makes the RSS much less useful IMHO.
Editors - any chance of changing that?
XSLT and XSL-FO (Score:3, Interesting)
XSLT is for tranforming XML data between different XML formats or sometimes from XML to non-XML formats. It doesn't have much to do with "structuring layout". (I routinely use XSLT to transform Simplified Docbook into HTML, LaTeX and XSL-FO)
XSL-FO, on the other hand, is an XML application for describing (loosely) typesetting parameters. It's actually almost parallel with CSS in purpose, but CSS is more rich in functions relating to on-screen interactive content, like support for links and behaviors. XSL-FO
Re:My Wishlist for FireFox (Score:3, Interesting)
I'm also starting to get annoyed at the lack of progress here. I mean, slashcode is an open-source project, right? Isn't one of the reasons to use open-source because it's faster-moving then closed-source? Slashcode hasn't moved anywhere at all in years...
The ONLY change we've had in years is a few new sections, all of which have TERRIBLE eye-hurting colors (Games, IT for instance.)
Even worse, some features (like filtering-out specific topics) have been
Re:My Wishlist for FireFox (Score:3, Funny)
Re:My Wishlist for FireFox (Score:2)
Amen to that. Back in the early mozilla days, rendering bugs seemed to be a big priority. How many versions of firefox now have gone by with the slashdot bug unfixed? Or is it a problem with slashdot's html?
Slashdot's code... (Score:2)
Damien
Re:Slashdot's code... (Score:2)
Re:Slashdot's code... (Score:3, Informative)
This makes the page render properly without the extra bandwidth usage.
Re:My Wishlist for FireFox (Score:5, Insightful)
Is this a problem with Firefox or with Slashdot?
As for Firefox taking the #1 spot, I would love to see that. There are a few things I've had difficulty achieving in Firefox that work in IE, but none of them are necessary (collapsing DIV when display set to none, for example).
One day, my boss will choke on his "we should just design for Microsoft IE and if it doesn't work in your Mozilla then maybe you shouldn't use it." Bastard.
Re:My Wishlist for FireFox (Score:3, Informative)
Is this a problem with Firefox or with Slashdot?
Um, you must be new here. I can't remember how many comments I've seen bitching about that. Put simply, it's a FF rendering bug which we've had for ages and
Re:My Wishlist for FireFox (Score:3, Insightful)
Um, you must be new here. I can't remember how many comments I've seen bitching about that. Put simply, it's a FF rendering bug which we've had for ages and can be solved by doing Ctrl-Scroll Wheel Up and then Ctrl-Scroll Wheel Down.
So, wait, it's a bug in slashdot's code, but then firefox changes the way it renders the page if you twiddle a nob? Shouldn't firefox consistently render it the same (broken) way every time?
Re:My Wishlist for FireFox (Score:5, Informative)
Re:My Wishlist for FireFox (Score:5, Informative)
In theory, yes. Unfortunately, there's a class of bugs called "reflow" bugs - reflow is basically the incremental rendering of pages as more of the HTML is downloaded.
When certain things happen at certain times, in certain orders, the layout ends up getting rendered incorrectly until you force a reflow (you can do this by changing the text size, resizing the window, etc).
The problem with these bugs is that they're very hard to track down. A lot of the time, you can't reproduce them on a [faster|slower] connection, and if the developers aren't experiencing it, they're stuck.
Re:My Wishlist for FireFox (Score:3, Interesting)
Precisely the case. From what I understand, it was caused by a race condition, a class of problems that popup when multiple threads (or processes) work in parallel on the same resources. Such bugs are very subtle and hard to reproduce, as they depend a lot on external conditions.
I used to get this problem at
Re:Computer science is not a science yet. (Score:3, Interesting)
1) Yes it's a hack. Yes it's better to actually find the cause of the problem. I hate hacks as much as the next guy - but to the user it would solve all these "reflow bugs" easily and simply. There is nothing to stop them being fixed in the background and for this hack to eventually be taken out. But to a user, if a page looks screwed up, and it doesn't in internet explorer, it's firefox's fault.
Make it a prefere
Re:My Wishlist for FireFox (Score:4, Informative)
For the record...
Slashdot does emit code to an HTML standard, it just happens to be HTML 3.2. That's a standard. Call it "outdated" if you like but if it works, it works, right? Isn't that the point of standards, you don't have to change them every time something new comes along?
We're hoping to move to XHTML in the future (sometime within the next year, for sure, I hope) but like everything else it goes on our priority list based on resource-cost and benefit. There are bugs that need to be squashed, meaningful features to be added, and performance improvements we need to put into place that come first.
Honestly XHTML will probably just save us a little bandwidth and make the site look a little prettier, but only the hardcore readers will notice the difference, at least if we do it right. The only real long-term benefit will be to us coders -- it should let us rip out kludgy old code, but of course that's almost as tedious as writing it in the first place, so it's a mixed win.
Yes, it's a mozilla bug [mozilla.org], not a Slash code bug. They've known about it for a year, but it's fixed now, yay.
No, it doesn't help that someone else took a static rendering of our homepage and converted it to CSS. That's a fun experiment but of course it's very different to change the code to emit HTML to a different standard.
A shout out to Peter and Shane here for working on the XHTML theme :)
OK, resume flaming us and our sucky HTML, Offtopics all around! :)
Your HTML is NOT valid 3.2 (Score:3, Informative)
Oh, and since you've BLOCKED [w3.org] the w3c validator, I had to go through a Coral Cache link.
Re:My Wishlist for FireFox (Score:3, Informative)
You really don't emit HTML 3.2 though - more like a a bastardized form of it. It fails horribly with the 3.2 validator here [htmlhelp.com]. And blocking the W3C Validator is a bit of a giveaway too, surely?
You are wrong, it is not valid HTML 3.2. (Score:3, Informative)
Despite slashdot's attempts to block the w3c validator, it's still quite trivial to run it against the source code.
File: Slashdot News for nerds, stuff that matters.htm
Encoding: iso-8859-1
Doctype: HTML 3.2
Errors: 180
This page is not Valid HTML 3.2!
Re:My Wishlist for FireFox (Score:3, Informative)
Slashdot does emit code to an HTML standard, it just happens to be HTML 3.2.
Nice try, Jamie. That'd be why the W3C Validator [w3.org] reports 207 validation errors on Slashdot's front page, eh? The HTML is absolutely rancid with unbalanced start/end tags, it's a miracle anything renders it properly.
Of course, you've done your best to hide this, haven't you? If anyone wants to try plugging "http://slashdot.org" into that validator, you'll get a "403 Forbidden" error - yep, the fine folks at Slashdot have blocked
Re:My Wishlist for FireFox (Score:3, Informative)
The only real long-term benefit will be to us coders
Not true - valid XHTML has other advantages. For example, it's much easier for devices such as PDAs and phones and programs such as screen readers to parse and make sense of. Bandwidth savings is also relevant to users. Some of us, sometimes, are on slow connections. It's been well proven that having a site respond faster, even when the response is under a second to start with, makes the user experience much better.
Re:My Wishlist for FireFox (Score:3, Interesting)
Re:Oh? Then why do you block wc3 validator? (Score:4, Insightful)
Grr. Armchair web developers are so frustrating.
Re:My Wishlist for FireFox (Score:3, Informative)
I thought we nailed all the unencoded ampersands, though, I'll check that out. Eventually :)
The commercial professionals who are lending a hand are the Peter and Shane I mentioned earlier. Peter started work on an XHTML theme earlier this year and has made some great progress.
Re:My Wishlist for FireFox (Score:3, Informative)
Re:My Wishlist for FireFox (Score:5, Informative)
No. It was a bug in Fire Fox.
There's two separate arguments going on here.
The first is "Is Firefox bugged?" and the answer was "Well, it was, but it was fixed." It depended on network timing, I think, because it was intermittent. There's also another aspect to this, which is that the bug was in bug quirk compatibility mode... so if Slashdot's HTML wasn't old crap, it would never have occured at all. But it was still a bug.
The second argument is "Is Slashdot generating valid HTML code?" The answer is "No." Jamie argues that it is valid, just HTML 3.2 instead of 4.0. However, anyone running the validator can prove this wrong easily -- it's not valid HTML 3.2, either. This isn't really that big a deal, since being technically correct was much less important in HTML 3.2, but it is always annoying to have someone bald face lie to you.
It may have been that slashdot was the only site to demonstrate the bug (I think it was in 0.7, but I could be wrong), but I doubt it. It was indeed a Firefox bug, and not just a bug in the Slashdot HTML. But that does not mean the Slashdot HTML is valid.
I hope that helps. This is confusing. :)
Re:My Wishlist for FireFox (Score:3, Funny)
But seriously, I am getting current articles from the feed.
firefox (Score:2, Funny)
Re:firefox (Score:5, Funny)
Re:firefox (Score:4, Funny)
Alright, it's make fun of Techefnet's comments day! Here we go...
Thats so unfear.
Techefnet does not fear the undead, but he sure unfears the dead!
That sucked. Damn. Forget I said anything...
Re: (Score:2, Insightful)
Only 3 days (Score:5, Informative)
Re:Only 3 days (Score:5, Funny)
Process for Takeover (Score:5, Funny)
2) Integrate into Windows Explorer and tell judges it can't be ripped out
My best sig is this one.
Re:Process for Takeover (Score:2, Interesting)
Re:Process for Takeover (Score:5, Funny)
Yeah, it'd also be interesting if Hell started importing ice.
Re:Process for Takeover (Score:4, Funny)
I think they already do that. It's the export market you wanna keep an eye on.
Re:Process for Takeover (Score:3, Funny)
Server is slow already... (Score:4, Informative)
17.09.2004
By PAUL BRISLEN
The web browser wars are over and Microsoft won, right?
Well someone's forgotten to tell Ben Goodger and his team at the Mozilla Foundation because this Kiwi software engineer is taking market share from Internet Explorer (IE) with Firefox, the browser that's smaller yet smarter than anything else available.
Goodger, back in New Zealand this week visiting family and friends, works for the Mozilla Foundation and has been the lead engineer on Firefox throughout its development.
He began while still at the University of Auckland waiting for the launch of Netscape 5.0.
"I used Netscape 4.0 and basically was just designing web pages and doing web development work."
The wait for version 5.0 was a long one and when Netscape finally ceased development work on its browser and opened up the source code to the Mozilla Foundation, Goodger found himself taking time off to work in the US on the browser itself.
Today he leads a relatively small team of engineers who are hard at work preparing for the release of Firefox version 1.0 and the Kiwi input is hard to miss.
The code names for the previous versions of Firefox include Three Kings, Royal Oak, One Tree Hill and Greenlane.
Firefox has generated an enormous amount of interest among hardcore internet users around the world and for the first time has taken market share away from Microsoft's Internet Explorer.
Goodger said the figures themselves varied depending on the source but US-based web training organisation W3Schools claimed IE 6.0 peaked in May of this year with 72.6 per cent market share among its "early adopter" users and had fallen back to 68.3 per cent in August.
That's the first time IE has declined in market share since its release and could mark the turning point for the browser community.
The mainstream audience is still firmly in the grasp of IE, however, with figures in excess of 90 per cent reported by several different organisations.
Most, however, report that IE is losing ground to Mozilla-based browsers and most of those switching are using Firefox.
In its first day of release the latest version of Firefox was downloaded more than 300,000 times.
So what is it about Firefox that's attracting users? Goodger said it was a combination of things.
"Some like the added features, some like the smaller size of the browser. It really depends."
Goodger is quick to point out that while Firefox is smaller than other browsers, that doesn't mean it's a "lite" version of a browser.
"It's fully featured. In fact if anything it's got more features that people use than many browsers."
Goodger and his team have been working with one goal in mind: to make a browser that makes the internet simple again.
"Do you remember how it was when you first went online? It was easier to search for things, easier to find things, there were fewer annoyances.
"That's what we want to get back to."
Goodger said Firefox gave users the chance to block pop-up windows, the bane of many users' lives, but went beyond that.
Because the browser was not tied in to the operating system, something Microsoft touted as a benefit for IE users, it was not prone to the same security vulnerabilities as IE.
"We also wanted to make the searching experience much easier for users."
Consequently Firefox has a Google search box built in and allows users to search within a web page simply by typing in the word they're looking for without having to launch a separate search box.
Goodger's favourite feature, however, is Firefox's smart keywords utility.
"It's something that's a little bit hidden so people have been slow to find it but when they do it blows them away."
Users might, for example, regularly use the company phone book online so Firefox allows them to add that search to their browser.
"So you can
That title... (Score:5, Funny)
It just sounds DIRTY... If there was some guys Goodger in my future, I'd certainly try to do something about it...
Re:That title... (Score:3, Funny)
Firefox v. IE (Score:5, Insightful)
Congrats to the Mozilla folks for thinking out of the box and trying to create something that users wanted.
Re:Firefox v. IE (Score:4, Interesting)
If you install it as the default browser, then it breaks updates (completely for Office). If you don't install it as default, then it frequently doesn't come up (any time a URL is launched via a shell command, which is more often that you might think)
In the end, I feel like I now need to maintain TWO seperate browsers with constant security updates (Yes, for FF too) and security settings to cover 99% the same functionality. I opined before that I also don't believe that FF is all that secure. Several surprising default settings and demonstrably anti-security minded UI features make it a little frightning.
In the end, all I really want is a browser to look at webpages, period. This was in fact a main factor for the creation of FF, to have a simple fast browser based on the Moz engine. Well it is so simple and so virtually identical to IE that there really doesn't seem to be a point in using it on Windows...
On Linux though, It's the shiz-nit! Well, with tightened security settings (hust like IE) and as long as you don't go DLing 500 plugins, it only took one to crash it for me
Re:Firefox v. IE (Score:5, Insightful)
yes it does [mozilla.org]
Re:Firefox v. IE (Score:4, Interesting)
Max
Re:Firefox v. IE (Score:3, Interesting)
My friend once got into a debate with me over Opera and Firefox, and it got down to him finally saying that despite how wonderful Firefox was and everything, he'll stick to Opera because he liked the ads! Well, I promptly directed him to a site [squarefree.com] where you can install ads for Firefox as well.
Why those suburbs? (Score:5, Funny)
Firefox IE (Score:5, Informative)
My favorite one : WeatherFox! (URL:http://weatherfox.mozdev.org/). Crafteh (wish I knew his real name) developped this beauty following my suggestion on the MozillaZine forum and did an AWESOME job. Weather prediction anywhere in the world in your status bar... soooo usefull! Use it!
Better handling of extensions (Score:5, Interesting)
If firefox is to hit mainstream, some of the more popular plugins need to be incorporated directly into the product. At the very least, offer for download a chunky version with lots of stuff already installed. But even that won't cut it. Some features, like tabbed browsing, can't just be added on as extensions because they interact badly with other extensions.
Also, there are backward-compatibility problems with each new release. Developers of open-source extensions aren't going to keep updating their work, so supporting at least the more important extensions should be considered essential from a release perspective, and perhaps they should be incorporated into the core project where possible.
There's nothing wrong with an extension arhcitecture per se. In fact, they have worked very well in open source, e.g. Eclipse and Linux. And that's true for firefox too. However, the management of extensions requires careful consideration. In Firefox's case, there's room for improvement.
(BTW maybe this has nothing to do with the interview but it's slashdotted, that's my excuse for waffling on.)
Re:Better handling of extensions (Score:3, Insightful)
Dare I say it? ...TBE (Score:4, Interesting)
Lemmy start a small laundry list of TBE's perks though:
-Single window mode (EVERYTHING opens in a new tab)
-Drag & Drop tab rearranging (its just common sense)
-Undo close tab (possibly the BEST feature of the entire extension. I use it daily)
-Modifyable tab bar (move it around, scroll it, make it double layered, etc)
-Customized tab behavior for new links (hypertext/bookmarks/history/javascript/external apps/etc: choose if they open a new window, tab, or load in an existing one. Very nice for steamlining your browsing experience.)
-Tab grouping (including pretty colours!)
-Tab locking (lock a tab to a specific page)
-Auto reloading of tabs
I could go on and on... TBE is like everything AND the damn kitchen sink (which is why some people seem to have a seething hatred of it). Really though, would it kill Mozilla to add just a few of the more popular features? I know extensions are supposed to be this big, grand, wonderful idea, but I think a LOT more people (especially average joe's) would be appreciative rather than pissed off to have a couple more handy dandy features. You've got to remember that if you want your browser to go mainstream, its got to have a bit of a "smack you in the face" slant for all the little old ladies and joe-sixpacks out there that aren't gonna spend an hour sifting through the extension library. Leave the "OMG my browzer has NO bloat n' runs 1.00283% fastr on my AMD becuz I compiel'd it myself" to the geeks who know and love that kind of stuff.
Just my $0.02 anyways. In the meantime i'm just gonna keep loving the hell out of this browser. Firefox RULES! \o/
I suggested to my boss today........ (Score:5, Interesting)
I came back with, "More administration than cleaning and recleaning spyware and adware from users' machines on a daily basis? Symantec and Adaware are supposed to come out with a corporate solution in Q2-05 at the cost of roughly $20-30 a seat. This would cost us nothing but the time we spend orchestrating a rollout."
I could see the gears turning, which was encouraging.
Re:I suggested to my boss today........ (Score:3, Funny)
Re:I suggested to my boss today........ (Score:5, Insightful)
Without knowing the particulars of your boss, this is generally not a good approach to convincing a PHB you want something done.
A suggestion:
Instead of planning "comebacks" for when boss says "no", present your ideas in such a way that he says "yes" the first time. Changing a "no" to a "yes" is a lot harder than extracting a "yes" in the first place.
Write down how many hours a day you spend cleaning spyware off computers (a) then give a half page summary of your proposed solution and the number of hours (b) it would take to install, debug it etc. Be as honest as possible with the time. Show boss that after x=f(a,b) days you will be ahead and have more time to work on projects and thus cut costs (use the word MONEY somewhere) in his department.
Managers are usually goaled on revenue... and thus these are the terms in which you have to express things in order to get that "yes" the first time.
Re:I suggested to my boss today........ (Score:3, Interesting)
Changing a "no" to a "yes" is a lot harder than extracting a "yes" in the first place.
I think my father's advice is even better:
"Sometimes, it's easier to beg forgiveness than to get permission."
Re:I suggested to my boss today........ (Score:3, Informative)
SUS is only one of many patch management/deployment solutions, and SUS only (only!) deploys Windows 2k/XP/2k3 security patches, critica
GOOD Improvements (Score:5, Insightful)
All too often software developers add things that seem good to them, but which the end user finds irritating or just confusing. Opera is a good case in point, with lots of gee whiz cool features that I just never got around to using. That has never happened to me with Mozilla or Firefox.
It seems that with every release I'll find some new little feature that suddenly becomes essential, or at least enhances my browsing experience in some nice way, but without detracting from other things.
The latest was the search bar that pops up at the bottom of the screen when searching in the page. How brilliant! After years of search boxes popping up on top of the text that you're reading, someone figured to drop it in a place that wasn't intrusive.
Sure, there are still things that I would like changed - like moving more of the configuration away from the "about:" system, but all in all I just like Firefox and find that its greatest feature is that it doesn't get in my way - it just does the job and lets me concentrate on content.
Re:GOOD Improvements (Score:5, Interesting)
I installed the new version of Firefox the day it was released, and didn't notice anything different. I went to search for something, hit ctrl-f, typed normally, and found it, no problems.
About ten seconds later I suddenly realized "wait a second, where was the search box?" I hit ctrl-f again and . . . basically stared in total surprise.
It's brilliant. It's simple. I can't think of a single downside beyond "will people think to look for it there". Kudos to the Firefox team.
The only setting change I need now is something to prompt for overwrite when I try to create two identically-named bookmarks - this is a feature I use all the time in IE, and it's literally the only thing keeping me from switching over to Mozilla 100%.
Re:GOOD Improvements (Score:3, Informative)
Speak for yourself. Not everyone is into the new and "in" stripped-down software craze. You may love it, but you only represent yourself, not everyone else.
That is Mozilla (SeaMonkey), actually. It's what Firef
mozilla browser was bloated, firefox is not (Score:5, Insightful)
The other contenders for a fast browser (konqueror and opera) don't render pages correctly a lot of the time. Konqueror's KDE daemons make it slower to start up. Opera's banners make it rather annoying to use.
Code names (Score:3, Interesting)
LiveHTTPHeaders (Score:5, Interesting)
Oh, yeah, the pop-up blocking is great too, so is tabbed browsing.
Re:LiveHTTPHeaders (Score:3, Informative)
There's a equivalent (free) tool for Internet Explorer called Fiddler [fiddlertool.com]. In addition to viewing HTTP traffic it has a framework for programatically 'fiddling' with requests and responses [fiddlertool.com].
Ethereal [ethereal.com] will let you view HTTP traffic regardless of which browser you are using, however it takes a bit of getting used to.
Nonetheless, if you're using Firefox, LiveHTTPHeaders is definitely the way
Plugins Don't Work Seamlessly (Score:4, Interesting)
I've installed Firefox on the computers of two relatives, both have inquired about the problems rendering USA Today's contents. Unable to solve the problem I had to tell them to use IE. Yuck! I will gladly forego using photo galleries on USA Today in favor of using this browers but others won't.
Re:Plugins Don't Work Seamlessly (Score:3, Insightful)
Consider how easy it is to install extensions to the browser; click, install, restart browser. (emphasis mine)
There's a problem right there! Yes, it is more difficult to program frameworks that load/unload plugins dynamically, but it certainly is possible.
What happens to the net when everyone has AdBlock? (Score:5, Interesting)
Does this mean an huge impending change in the way advertising works on the internet? Will companies like the NYT, who make a lot of money from ads, start embedding advertisements in ways such that AdBlocking them with regexp filters would also block out the non-ad images?
Re:What happens to the net when everyone has AdBlo (Score:5, Insightful)
Sites (like Yahoo, IGN etc) are already making you step through ad pages before seeing content. Sometimes you can block that too, but sometimes not.
The more we fight against ads, the more annoying and intrusive the ads will become
Think AdBlock will always be a niche (Score:5, Insightful)
I'd rather have sites stay around longer because they are supported by advertising revenue. I don't mind a few ads as a price, and I would mind whatever payment scheme would have to replace them.
But that's just my personal stance. In the larger sense, I think that the populace at large does not care about ads so much that they seek out blocking solutions, or would even go to the effort of using an ad blocker if they could. After all, the US populace is exposed to ads so often we are just about blind to them anyway.
Popups are a differnt matter as they generate constant unpleasant irritation, and people do go to great lengths to eliminate irritations from their lives.
Who should i blame then... (Score:5, Funny)
Then i read that its not Slashdot
Then i read that it actually is
So can i continue blaming
many thanks for your invaluable opinions.
Unfair comparison (Score:4, Informative)
Firefox Setup 1.0PR.exe - 4,742,005 bytes
Opera 7.54 - ow32enen754.exe - 3,666,195 bytes
People should stop comparing Firefox to IE, that's really unfair, its like comparing a power-plant based on nuclear fuel with one based on coal. It is a difference in age.
However when we compare Firefox with Opera we can clearly see that Opera is a smaller download, it includes a very smart (the smartest I've used) email client, a news reader and an IRC client.
The day when Firefox/Mozilla will have a email client as smart as Opera's M2 and it will be every bit as accessible as it is now M2 is the day I will consider switching. Till that day I'll still be an Opera fan with all the other browser installed as an alternative.
Re:I just swithced a coworker today! (Score:3, Funny)
Re:I just swithced a coworker today! (Score:2)
Only 5-6? (Score:2)
5-6? Consider yourself lucky that you didn't have to deal with 100 times that amount.
Re:Only 5-6? (Score:4, Funny)
Re:Only 5-6? (Score:3, Funny)
I'd suggest that you put off preaching to the masses until you've finished the more important task of completing English 101.
Either that, or apply for a job as a Slashdot editor. In two sentences you've managed to make an excellent case concerning your qualifications.
Max
Re:Firewall Port (Score:5, Funny)
Re:I just swithced a coworker today! (Score:3, Funny)
Re:Won't help (Score:5, Informative)
Firefox blocks popups out of the box, doesn't support ActiveX at all, doesn't let you run EXE files directly without saving them first, isn't tied with explorer.exe, etc. How many sites do you know that have spyware which affects Firefox?
I know of none. Can you point me to any please? The only site I've come across which could cause issues is http://www.xpehbam.biz/5 which loads a java class which exploits the Microsoft JVM (NB: not Firefox), and installs a dialer. If you're running the SUN JVM, you are of course safe.
Re:Won't help (Score:4, Informative)
I suppose the lesson is don't run proprietary software that requires a crack. I think I'm going to setup a user for browsing and a user for mail on my linux box, so my home dir is safe in case I do something retarded, since even the brightest people can be boneheaded some of the time.
Re:Won't help (Score:3, Interesting)
If you average catching between 1-3 trojans a day that come by the way of Firefox, which of course means you are
Re:Won't help (Score:5, Insightful)
Re:Won't help (Score:4, Insightful)
While there's no panacea, and this is no time to relax our security vigilance, there's no question that firefox is a much safer choice of browser than ie - to deny that is just plain silly.
Re:Won't help (Score:3, Insightful)
now install firefox on the other and leave the other using ie.
now, put average guys to look for porno on the computers... after couple of hours which one is going to be absolutely infested and which one isn't? which of these computers you can use without getting mysterious popups?
sure even firefox can't help you from getting spyware you intented to install(bonzi and whatever)..
Re:Won't help (Score:3)
BTW, shame on whoever modded the parent troll. We can have an intelligent debate here over the relative merits of using Firefox instead of IE. Disagreeing with popular opinion on /. does not make one a tr
Re:Smart Keywords (Score:5, Informative)
Go to a site that has an input box for doing a search (eg. dictionary.com). Right click in the input box and select "Add a keyword for this search
I've been using it for 1/2 hour and I'm hooked. This will save heaps of time here at work. Eg 'pb joe' to look up joe in the phonebook on the intranet - no need to go to the page.
I've tried converting some people to Firefox before. I haven't had much luck (tabbed browsing etc didn't do it for them - go figure.) But it seems like this feature might just do it for one of my colleagues.
Also note, there should be a bookmark in you 'Quick Searches' bookmark folder that will give more info.
Re:Firefox rant (Score:3, Informative)
Define "we". A lot of people actually like full-featured programs that can be used without having to browse through tons of extensions to get more functionality.
Mouse gestures, properly handled tabbed browsing, fast forward, proper zoom, sessions, continue where you left off when you close