Find your *prefs.js* file (the location varies by Operating System), and add the following line: user_pref("general.useragent.override", "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3"); If you are on a Mac, the file is in: /home/[your username]/Library/Application Support/[application name] /Profiles/[your profile]/prefs.js
Thursday, July 15, 2010
Netflix with Prism - mozilla-labs-prism | Google Groups
Tuesday, July 13, 2010
SourceForge.net: globonote
GloboNote - Desktop note taking program
GloboNote is a simple and easy to use desktop note taking program(Sticky Note). It lets you organize your ideas, ToDOs, reminders in one place and allows you to find it easily. GloboNote can be run in any OS that has Java 6 installed.
List of Features:
- Platform Independent. Run on any OS that has Java 6 or higher installed.
- Set Alarms. Remind yourself of important events. Set recurring alarm, play custom sound(*.wav, *.aiff or *.mp3).
- Build-in Calculator. Enter the calculation in the note then press F2.
- Organize notes in group. Display/Hide notes according to group.
- Customize notes. Change color, font, behavior of your note.
- Create note templates and load it using hotkeys(ALT-1 to ALT-4).
- Search Notes. Locate your notes using the search tool. Search while you are typing.
- Attach files on note then double click to launch it.
- Attach images on notes.
- Paste image(screenshot) from clipboard to note.
- Support for URLs handling. (Ctrl-)Click on the URL and the appropriate application will be launched.
- Find/Replace the content of the note
- Make note to always stay on top of other window.
- Make note to auto rollup when not used.
- Support for rich text editing with bold, italic, colour etc.
- Restore deleted notes.
- Lock note to prevent unintended editing or deletion of note
- Export note as plain text
- Print note
Very handy! So far, I like it tons better than Mac Stickies.
Technology Review: Blogs: Guest Blog: Privacy-Protecting Search Engine Challenges Google
Google, a company with 20,000 employees and $24 billion in revenue in 2009, is being challenged--by a guy in Philadelphia.
Gabriel Weinberg is the coder behind Duck Duck Go. It's a search engine that is profoundly--some might say radically--private. Unlike Google, it doesn't build a user profile for you, store your IP address, or collect any other information that could ever tie a particular search to you.
That makes it impossible, for example, for a future more-evil version of Weinberg (or his company, were someone to buy it) to exploit that data by selling it to advertisers without your permission (as Digg, MySpace, Facebook, and others have done). Or for the company to accidentally make search data public so that someone can connect whole strings of searches to the individuals who conducted them (as was done with AOL data in 2006). Or for a more intrusive U.S. or foreign government to successfully subpoena your search history.
Better yet, as of a few days ago, Duck Duck Go searches plug a gaping security hole few users have ever thought of--the fact that every time you conduct a search on Google, your search terms are passed to the site(s) you click on after conducting that search.
To understand why that's important, Google something you'd rather was kept private, and click on the top search result. Now the webmaster of that site has both the terms you used to find that site and your IP address. As the RIAA has illustrated, this is another way to identify you directly.
Of course, what's a search engine worth if it doesn't give useful results? Surprisingly, considering its (so far) modest scope, this is an area where Duck Duck Go also shines. Apparently, one of the forces that motivated Weinberg to build it was the creeping ascendancy of spammy pseudo-content on Google. Duck Duck Go feels like a more-cultivated version of the web--fast, informative results without all the dross.
While it has its own web crawler and web index, Duck Duck Go also pulls results from Microsoft's Bing and Yahoo's BOSS search APIs, so a lot of what you're getting are results you could find on those search engines, anyway. What sets DDG apart, however, is the way those results are parsed, re-ordered, and displayed on a page that feels like it was built by a designer instead of an ubernerd. In other words, in some ways it's a better user experience, and with an array of customizations sure to please the internet-savvy designer / hacker / open source geek that are sure to be its early adopters.
Its search rendered friendly and usable again--and most importantly, totally private. After all, your web browser has an anonymous / incognito mode--shouldn't your search engine have one too?
Raving Web marketer idiot
Friday, June 11, 2010
No Wireless Network When Logged Out | keyongtech
I was wondering how to connect automatically to a wireless network using Intel PROSet/Wireless Software . . . and here's the answer! Use the administrator tool!
VMware Communities: Workstation Installer Hang 6.5.3 and ...
I just encountered a hang installing Workstation on Ubuntu Karmic.
Symptom: you are running a an install using 6.5.3 bundle and you get to "Configuring VMWare Player" and then everything stops indefinitely.
Cause: the installer runs vmware-modconfig-console which produces enough output with some kernels that the python engine deadlocks is command piplining during the compile.
Technical Details: It is always dangerous for a linux/unix program to use the pipe-based "run a sub-command" library calls if it isn't ready to read all the output in one thread while waiting for the command to complete in another. Normally such commands should either be reading the result text or redirecting that result text to /dev/null. The naieve version just runs the command and waits for the result. But if the result text is larger than the system pipe buffer size, the command will block while trying to send its output, and the command never finishes. With the command waiting for the parent to read the data, and the parent waiting for the command to finish, the whole shebang just comes to a stop.
Why this is happening: The current driver patches for the 2.6.31 kernels produce a lot of warning messages about the symbols _MSVC_VER and __FREE_BSD__ being not defined. This never happened before, and whoever wrote the installer never tried it against a long stream of output. So with the new warning stream the compile and the installer deadlock as above.
Workaround: There are three phases to the work around; It is necessary to catch and kill the compile step; this, in turn would cause the installer to back out the installation, so you have to stop that from happening; then you have to compile the modules manually.
Steps:
1) open two command windows.
2) become root in one of those windows. i.e. "su -". (If you havn't set your root password in Ubuntu use "sudo su -" and your login password)
3) in the root-ed window run "while true; do killall -9 vmware-modconfig-console; sleep 1; done" this wil try, once each second, to kill the module compile step. Ignore the stream of not-found messages.
4) in the non-root window run the install with sudo and the --ignore-errors argument; i.e. "sudo ./VMware-Workstation-6.5.3-185404.i386.bundle --ignore-errors". This will take a little longer than usual because of the continuous killall above, don't sweat it.
5) once the installer finishes go back to the root window and do a control-C to stop the kill loop.
6) In the root window run "vmware-modconfig --console --install-all" to install the modules.
Caveats and Tips:
a) Once you have a hung installer session you have to kill the python command that is running the installer. Think of that as a step-0 if it comes up. 8-)
b) If the installer still hangs, the kill loop may not be fast enough; start over but leave the 'sleep 1;' out of the kill loop. It will slow down the install even more, but it is more likely to catch the command in time.
ASIDE: It woudl be nice if the installer had a don't compile the modules step...
Hopefully the installer will be fixed soon.
I'm having this problem also. Tried strace, lsof, now trying this solution. Thanks in advance, guy!
Monday, June 7, 2010
Trying to get .Xdefaults working in Fedora 10 + KDE
Very helpful! Trying this out on Fedora 10, KDE, and Xorg. Manually setting "XENVIRONMENT=~/.Xdefaults".
in reference to: Debian: Accepting .Xdefaults by default - software.itags.org (view on Google Sidewiki)