New York Times Anti-Open Source Bias

In a recent article by Ashlee Vance in the New York Times, we see a clear bias against the Open Source community. Let’s look at three of his comments and I will point out the neutral equivalents that he should have used.

First he says, “Look out, lobbyists: Here come the open-source zealots.” Zealots is a biased word giving the impression of extremists or radicals. The neutral word would be advocates. So an unbiased rewrite would be, “Look out, lobbyists: Here come the open-source advocates.” Is the New York Times suppose to be neutral? I think so.

And he further claims that the group Open Source for America seeks to “push open-source software on the United States government.” Oh, now the “zealots” are pushy. Just because a group now has a voice in Washington they are pushy? So an unbiased rewrite would be, “Some of the world’s largest technology companies have banded together in a bid to promote open-source software in the United States government.” “Promote” is neutral, “push” is inflammatory.

Last example, “Regardless of their affiliation, open-source types have demonstrated a fondness for backing free software in a vocal, often argumentative manner.” It seems that Ashlee Vance views people of the open source community as argumentative and vocal zealots who are pushing their agenda down the throat of the United States government. Can anyone say stereo-typing? Too much philosophy and not enough reporting. Maybe that is fine for The Register, where Ashlee Vance was an editor, but I guess I expect more from the New York Times.

Notice how these comments sound is we use proprietary instead of open source. “Look out, lobbyists: Here come the proprietary zealots. Some of the world’s largest technology companies have banded together in a bid to push proprietary software on the United States government…. Regardless of their affiliation, proprietary types have demonstrated a fondness for backing closed software in a vocal, often argumentative manner.” One could argue these statements are just as true, maybe even more so. Microsoft and Apple have dominated the governmental scene. Now open source has a voice.

Link to Orginal
http://bits.blogs.nytimes.com/2009/07/23/open-source-backers-march-on-washington/

My Favorite Firefox Plugins

The following are my favorite Firefox pluggins:

  1. Download status – a must for those who hate the default downloader
  2. BetterSearch – Enhances Google.
  3. Delicious Bookmarks – I never lose links to great sites.
  4. BetterPrivacy – Super Cookie Safeguard plugin
  5. Flagfox – It shows what country a website is from
  6. Wired Marker – It highlights text in web pages

Firefox Mousewheel Problem (Fix Found)

Firefox has started the most annoying bug. Everytime I scroll to the top of the page it sends be to the previous site I visited. Then in that previous site I have to scroll down just a bit and scroll back up and it takes me back to my original site. I have disabled all my plugins and am using the default theme. I have uninstalled it and renamed the .mozilla folder in my home directory so all my settings were gone (I am using Ubuntu 9.04 with Firefox 3.0.11). And it still does it. Then I edited the about:config file a number of times with no success. They were all default before. Which leads me suspect that it may be something in Ubuntu. There are a few reports of the bug. It seems that it only effects ps/2 mice. I guess this is a great opportunity for me to try chrome.

LINKS OF REPORTS
http://forums.mozillazine.org/viewtopic.php?f=7&t=1145865
http://support.mozilla.com/tiki-view_forum_thread.php?locale=fi&comments_parentId=376329&forumId=1
http://ubuntuforums.org/showthread.php?p=7543961
https://answers.launchpad.net/ubuntu/+source/firefox-3.0/+question/36040

THE NEW FIX
The problem is the KVM switch. I unplugged it and it stopped. Just going to use two mice instead.

THE OLD FIX
I have managed to fix the problem. It appears that it might be an x-org setting? See below:
http://www.linuxquestions.org/questions/linux-software-2/mozilla-firefox-mouse-scroll-wheel-behavior.-475209/

Here is what you need to do:
1. In the terminal type: sudo gedit
2. Enter password. This will give your text editor root privileges, which you will need.
3. Then open the xorg.conf file located at root level: etc/X11/
4. Add the following to the very end of the page:
Section “InputDevice”
Identifier “Mouse0”
Driver “mouse”
Option “Protocol”    “auto”
Option “Device”     “/dev/input/mice
Option “Buttons”     “5”
Option “ZAxisMapping”  “4 5”
Option “CorePointer”
Option “SendCoreEvents” “true”
EndSection

5. Then save the file.
6.  Type in the terminal: sudo dpkg-reconfigure -phigh xserver-xorg
7. Reboot and reinstall your video drivers (System>Administration>Hardware Drivers).

Please let me know if there is an easier way. It is a pain to do this and xorg keeps resettling.