About Lee

Author Archive | Lee

Staying flashless with Firefox 4

As mentioned previously – I’ve gone flashless. Firefox 4 makes it quite hard to do that. It has an annoying missing plugin nag-bar (another dick-bar). Well, we can get rid of that:

  1. Enter about:config in the URL bar
  2. Heed the warning then press the button if you want to continue
  3. Type ‘missing’ in the search bar within the “page”
  4. Set plugins.hide_infobar_for_missing_plugin to true
  5. Close the tab

Right, that’s that done. Now what about open in Chrome? Well using a slightly modified AppleScript:

set oldClipboard to the clipboard

tell application "Firefox" to activate

tell application "System Events"
    keystroke "l" using {command down}
    keystroke "c" using {command down}
end tell

delay 0.5

tell application "Google Chrome"
    set URL of active tab of window 1 to the clipboard
    activate
end tell

set the clipboard to oldClipboard

Yes it sucks a bit that I had to bounce via the clipboard. Bit of a quick fix, but it does work. I’m definitely open to a better script. Also, Mozilla – please please fix it for me what when I open Firefox after changing my monitor configuration, it doesn’t screw up the window.

Comments { 0 }
Video

(Subbed) Nuclear Boy うんち・おならで例える原発解説

This explains the Nuclear power plant situation in such an awesome way. Subtitled for extra awesome.

Comments { 0 }
Link

Making Twitter more secure: HTTPS

This really should be the default. If you use Twitter, you want this.

Comments { 0 }
Link

Going Flash-Free on Mac OS X, and How to Cheat When You Need It

I have now done this on my Air and I’m more than happy with it. Safari is a dream. DF is updated with a few recent update for things like Chrome linking etc.

Comments { 0 }
Link

Web Chat in 12 lines of code – NowJS

Thanks to @rcomian for the tip. Awesome use of Node.js.

Comments { 0 }
Link

Reply to Comments from Email on Github

This new feature from the Github team is just awesome. It’s about time it was added and it is a dream to use. I’ve been using it a lot! Thanks guys.

Comments { 0 }
Quote

Japan quake effects length of day and GPS coordinates

Incredibly, the earthquake in Japan was so powerful it sped up the rotation of the Earth resulting in the shrinking of a 24-hour day by 1.8 milliseconds.
Brian Osborne

To the people of Japan the effects are very real. For the rest of the world, the effects are scientifically interesting.

Comments { 0 }
Video

Behind the Splash Screen (Photoshop)

This is good, just because… they had plenty of notice to move to Cocoa. “Pulled the rug from underneath us” – riiiigggghhhtttt

Comments { 0 }
Link

Why I am not worried about Japan’s nuclear reactors

WE’RE NOT ALL GONNA DIE

Comments { 0 }
Link

The 960 Grid System Made Easy

Read this on the way in this morning (thanks @Paul_Kinlan) it is a really good overview of 960.gs.

Comments { 0 }