AT&T charging $9.99/month for turn-by-turn

It looks like AT&T has finally cashed in on turn-by-turn for the iphone by creating an app (itunes link) for the device that links to a monthly subscription charge for AT&T users.

att-app

The app is free, but requires a $9.99 monthly commitment.

Posted in Misc | Leave a comment

Bookmarklet: Collapse all Fieldsets in Drupal Module Page

Why do I need it?

This is a quick and easy way to clear the clutter on your Modules page in Drupal. One of the sites I’ve recently worked on easily had over 30 modules that were grouped in 10-12 fieldsets on the modules page in Drupal. When developing, sometimes you need to toggle modules and finding them in the mess can be difficult. (Of course, you can always just search the page. I’m too lazy.)

This bookmarklet lets you click one link, provided you’ve added it to your browser’s toolbar and quickly clean up the clutter the page.

Give me what I came for!

If you already know what a bookmarklet is and know how to use one, I’ll get right to it.

javascript:function collapseEm(){$(‘.collapsible’).addClass(‘collapsed’);}collapseEm();

How to use it

Easy. Copy the code, create a new bookmark and paste it in. When you click your new bookmark, the fieldsets should collapse.

It isn’t working for me

First, it requires jQuery, which should already be installed with Drupal. If for some reason you don’t have that, it won’t work.

Second, I use it in Firefox on the Mac. Let me know what browser you’re using if it doesn’t work.

There’s really nothing to it

I know. It isn’t complicated and you probably could have thought of it yourself. Hopefully it saves someone some time who wouldn’t have or couldn’t have.

Posted in Development, Drupal, jQuery | 3 Comments

Home Page Guy

I have to pass this one along for all of you web developers out there. I know my co-workers got a good chuckle out of it.

Auto Tuning from Casey Donahue on Vimeo.

Posted in Development, Misc | Tagged , , | Leave a comment

How to uninstall Xcode and iPhone SDK

From the command line type:

sudo /Developer/Library/uninstall-devtools -mode=all

You’ll need your password to use a sudo command.

The process will take a bit as it analyzes packages on your machine. Be patient and it will find and remove all Xcode and iPhone SDK components. If you’re planning on installing another version of the SDK and Xcode, you should reboot after doing so.

Posted in Development | Leave a comment