More Firefox

So, I’ve been chasing this annoying bug where Firefox will use the Windows Media Player 6.4 plugin instead of the WMP 9 one. Then it only gets the decoders from WMP 6.4, not all the spiffy new ones from WMP 9.
Well, seems I should have been searching the mozillazine forums more, as it’s answered on this page.

Of course, these come with their own set of bugs: #193883, #201843.

perl code

I’m working on a webform to compare the tax impacts of various levels of 403(b) deductions. And I can tell its been some time since I wrote any perl or even any web forms. But, I’m using some cool data structures:

my %monthly = (
        single  => [ 26767, 12392, 5708, 2567,  808, 221, 0 ],
        married => [ 27175, 15463, 9838, 5396, 1858, 667, 0 ],
        );

Hopefully I’ll get this figured out in the next couple nights.