Date: February 22nd, 2006 @ 12:28 pm

From: Phil Nelson

Subject: How To Stop Flash Files From Automatically Playing In OmniWeb

To:

After using Camino as my every day browser for many many months, I’m back on the OmniWeb train. I can’t help it. I just missed it too much. OmniWeb is to Safari/Camino what BBEdit is to TextEdit.

If you work on websites with flash content, like I sometimes do, and this flash content is often comprised of, say, animations with really shitty audio… well, you get the picture. Spending an hour working on one page of a site with flash in it, while it loops over and over and over, is enough to turn a man sour.

So, here’s how to tame Flash in OmniWeb, so you have to click any/all flash files before they play:

  1. Click OmniWeb in the menubar, and go to Preferences.
  2. Then click Ad Blocking.
  3. Make sure “From blocked URLs” is checked under “Block images and other inline content”.
  4. Click the Edit Blocked URLs List button.
  5. This screen has two boxes. In the top one should have some stuff in it already, like this: /ads\..*\.net/. Click the + button under the box, and type in swf, then click done.
  6. ???
  7. Profit.

And you’re done. Now all that awful flash content must be clicked before it plays, and you can keep that slim grasp you have on sanity for a little longer.

no comments;

Date: February 15th, 2006 @ 1:36 pm

From: Phil Nelson

Subject: Camino 1.0

To: , ,

Camino, the gecko-based web browser for OS X, hit 1.0 yesterday. Honestly, I never thought they’d hit that particular milestone, and I think they kinda rushed it. There’s no spell checking, for one thing, which is something every other browser out there has.

But, it’s still snappy, and it’s still camino. I’ve been using it as my every day browser for 6 months or so, grabbing nightlies from krmathis’ site. Camino is good, and it’s even better if you grab CamiTools and CamiScript, which makes up for a lot of the features Camino gives up to OmniWeb and Firefox out of the box.

no comments;

Date: February 9th, 2006 @ 1:14 pm

From: Phil Nelson

Subject: Sci-Pod-Fi

To: ,

Yeah, I listen to Escape Pod, what of it?

1 comment

Date: February 8th, 2006 @ 1:35 pm

From: Phil Nelson

Subject: Good Morning, World

To: ,

no comments;

Date: January 24th, 2006 @ 12:39 pm

From: Phil Nelson

Subject: Okay, So I Was Wrong

To: ,

Apparently, Bare Bones does know that Apple is no longer selling machines with OS9 on them. Just look at this screen shot:

It’s the apocalypse, I tells ya. BB’s new app, Yojimbo, is a personal organizer thing. As Shawn says, it’s a crowded market, already, but with an old-school player like Bare Bones in the picture, it can only get better.

no comments;

Date: January 18th, 2006 @ 1:55 pm

From: Phil Nelson

Subject: Dev2.0

To: ,

Here’s video evidence of Devo’s disney-produced kids album, Dev2.0. It’s Whip It again, which is apparently the only song by Devo anyone has ever heard (I’ve got 116 right now, and that’s just on my work computer). Apparently Jerry directed the video.

This is sort of filthy, but at least the kids will have something decent to listen to. I can only wonder if Penetration In The Centerfold will be on the CD. I can hope, but I doubt it.

Be Stiff, spuds.

no comments;

Date: January 17th, 2006 @ 11:53 am

From: Shawn Medero

Subject: BBEdit Tips and Tricks

To:

Garret Dimon posted a couple hints on using TextMate and I noticed most of them could also be done in BBEdit. To be clear, this isn’t meant to be a pissing match but if are using BBEdit and wondering “hey, why the hell do the TextMate folks get to have all the fun?” then you shouldn’t be.

First, let’s learn the key to being a happy and productive BBEdit user. Now, I see Phil Nelson raising his hand and I know where that is going… Look Whiskey is great, but it won’t help you bind all these crazy features to your keyboard. Find the “Set Menu Keys” item under the BBEdit menu. You’ll get a outline of BBEdit’s application menus and a method to set, delete, or re-assign key combinations to each item. Sometimes I find my favorite key-combo is taken and BBEdit will prompt you about this. It is all very simple and the time taken to configure your text editor will be well spent.

Comment Toggle

“By simply highlighting an area and pressing a simple two-key combination you can comment and uncomment a block of code. The best part is that it’s intelligent enough to know what kind of document you’re editing and use the appropriate commenting syntax.”

Easy enough, under BBEdit’s Text menu find the item called “Un/Comment Selection”. By default it is not mapped to a key which is a bit bonehead in my book, but apparently not every BBEdit user is a programmer. There’s something called… writing or copy-editing? I am not sure… sounds scary and I don’t want any part of it.

Inserting Close Element

This one is easy enough, under the Markup menu you’ll find the item “Close Current Tag” and it is already been mapped to Control-Command-C. This is really handy for non-HTML tasks like writing XSL stylesheets as well.

Easy Open & Closing HTML Tags

This one did stump for me a second and I even picked the brain of former BareBones employee John Gruber for ideas. John, who’s job at BareBones was to finish the coffee and not refill pot, came to the same conclusion I did. BBEdit doesn’t handle this exact feature out of the box (it could with a little bit of AppleScript) but there is a comparable feature “Tag Maker”.

Create a new HTML document in BBEdit and your cursor will be smack dab in the middle of the <body> tags. Now just type Command-M here to activate “Tag Maker” and it will bring up a list of all valid tags. You could start typing <table> here and it will jump you down to the tag, select it. Hit Command-M again, now you get a much shorter list of table related tags.

This isn’t really my preferred way of writing HTML, but it does work and it is especially good if you aren’t sure what tags are valid inside of an element. Such as the infamous “can I nest a <p> inside a <p>?” I get once a week. (No)

Wrap Selection in HTML Tag

Well in BBedit this isn’t as easy but it is doable by mapping your favorite key-combo to the HTML elements you commonly use from the Markup menu. Just highlight your text and hit Control-Command-L for example and it will start the process of making a list (<li>) of items from your selection. These days I use Markdown for just about anything HTML related so I can’t say I deal much with the tedious markup.

1 comment