Displaying articles with tag firefox
Posted by hank,
Mon May 26 19:52:00 UTC 2008
I decided after reading this article, I decided to try out SWFDec instead of Adobe Flash Player. I shied away from Gnash early on since it didn’t support many newer features of Flash, and it didn’t work with YouTube. But, apparently, SWFDec works with YouTube (I just tried it), and according to the article above, my browser may use less resources now. We’ll see.
Update
Well, it turns out it crashes on my TheSixtyOne player on the right! Time to try Gnash…
Update 2
Experiment over. The OSS Flash solutions completely fail at playing the flash audio on the right. Once they get just a little more compatible, I’ll try again.
Tags: firefox
Posted by hank,
Wed Jan 09 02:00:00 UTC 2008
I got tired of not having my greasy friend around, so I changed the rdf file to work for all versions of Firefox 3. Here’s the result:
Tags: firefox
Posted by hank,
Thu Oct 25 20:30:00 UTC 2007
So, I though it would be interesting to mimic browser behavior with error pages. I decided I needed to make a page that looked exactly like the Firefox Server-not-found page. I managed to copy the source using Firebug, and I extracted the css out of the jar files on my system. Anyway, I ended up with some source for IE and some source for Firefox.
I left little invisible links in each one (search for ‘Supplies’ on the page). I also removed all the default javascript from the Firefox version and replaced the Try Again action with a simple reload one-liner.
Then, I just wrote some awesome PHP to take care of which one to load, and called it index.php:
<?php
if (preg_match('/MSIE/i', $_SERVER['HTTP_USER_AGENT'])) {
readfile("errortest-ie.html");
} else {
readfile("errortest-ff.html");
}
?>
And we’re done. Not bad, eh?
Tags: firefox
Posted by hank,
Thu Sep 06 18:38:00 UTC 2007
So Citibank is lame - they don’t think that Firefox in Linux is a supported browser, but seem to believe that it is under Windows and OSX. Well, good thing we have Greasemonkey around.
// ==UserScript==
// @name Citibank Continue
// @namespace http://www.ralree.info
// @description Makes the Citibank browser warning page go away
// @include https://web.da-us.citibank.com/cgi-bin/citifi/portal/l/l.do
// ==/UserScript==
document.getElementsByTagName('input')[0].click;
Get it here. As you can see above, it does nothing dangerous. Just clicks the damn button for you so you never have to see the unsupported browser screen again.
Tags: firefox
Posted by hank,
Fri Jul 27 08:13:00 UTC 2007
Well, we went to the firefox party:
It was pretty cool - we got some swag and stuffs.
Tags: firefox
Posted by hank,
Wed Apr 04 07:27:00 UTC 2007
OK - a little history. I wanted to write this extension some time ago, but couldn’t figure out how to make it work. Apparently, someone has spent the time to find out, and now I have to tear apart the code to find out how they did this. Anyway, this allows you to sign and encrypt any text in Firefox using GPG. It rocks. You can use the options dialog to select the private key to use. It also has support for GMail integration using little buttons instead of the right-click menu which is always available. Here’s a preview:

Tags: firefox
Posted by hardwarehank,
Tue Oct 24 15:50:00 UTC 2006
So, I was annoyed about these things:
- I couldn’t use the backspace key to go back.
- I couldn’t middle click paste links.
- I couldn’t open a whole bunch of tabs before they scrolled.
- The close buttons on each tab annoy me.
- I’d lose my session if I pushed the close button, but it would come back if I force killed.
So I fixed them all like this:
- Go to about:config.
- browser.backspace_action = 0
- middlemouse.paste = 0 and middlemouse.contentLoadURL = true
- browser.tabs.tabMinWidth = 0
- browser.tabs.closebuttons = 3
- browser.startup.page = 3
Now it’s all back to normal.
Tags: firefox
Posted by hardwarehank,
Tue Oct 24 15:13:44 UTC 2006
I updated the TinyURL plugin for Firefox to support 2.0 since the author
capped the version in the install.rdf at 1.5. It’s available
here. HORRAY!
Tags: firefox
Posted by hardwarehank,
Wed Aug 23 07:14:04 UTC 2006
So, I upgraded Typo a few days ago, and just noticed today that all my links are broken because my relative_url_root is busted. I wonder what caused that. Anyway, on a better note, I fixed Firefox to open all new windows in new tabs instead. So much better. Here’s the fix:
browser.link.open newwindow.restriction = 0
browser.link.open newwindow = 3
Now, all the calls even from javascript will divert into the ***newwindow*** setting, which opens new tabs for everything. YAY!
This info was stolen from [here](http://kb.mozillazine.org/Browser.link.open_newwindow.restriction)
###Update
Well, I contacted the #typo channel on freenode, and here’s the answer I got:
[11:39am|sprewell> hardwarehank, you should not be on trunk
[11:39am|sprewell> go back to 1230
So, here’s the solution I came to after screwing up a few times:
- Move all your custom plugins (if any) from components/plugins to somewhere safe
- Delete the components/plugins directory
- rake migrate VERSION=50
- svn up -r 1230
- If it complains about not being able to create directories, just blow away those directories too after you back up anything custom.
- Move things back in place
- mongrel_rails restart
Tags: firefox