Business Card: bowen@dwelle.org
Smoothbeats.com
KALX Berkeley    WSUM radio

WFMU radio
You found me. Work-wise, I'm CEO of AdMonsters, a professional association and conference series that I founded in 1999, co-founder of PrefPass, and co-founder of CreditCovers. I do a bunch of other things as well - have a look around. I don't really write much here though, so don't look for too much of that...

Let’s geek out a little. Liz was asking about social networking aggregators (she was, I swear), and I bet there are a bunch, but FriendFeed is the big one right now. As soon as I checked it out and set up my feed, I noticed that while there are a few of the online music services listed, there wasn’t a way to publish what I was listening to on my iTunes. However, since I already have Brandon Fuller’s awexxxome Now Playing iTunes Plugin installed, and that publishes to my own blog, I figured there had to be a way to hook Now Playing to FriendFeed. Sure enough, there is a “Ping” function built in to Now Playing that sends an HTTP POST to a given URL with the the now playing info. A quick download of the FriendFeed php API, and now a few lines of php bridge the gap and publish what’s playing on my PC to FriendFeed. Incredibly, it turns out that the FriendFeed API uses the same fieldnames that arrive in the Now Playing POST. That never happens.


require_once("~/lib/friendfeed-api/php/friendfeed.php");

define( 'FF_NICKNAME', 'XXXXXXXXX' );
define( 'FF_REMOTE_KEY', 'XXXXXXXXXXXX' );

if ($_POST['title']) {
$friendfeed = new FriendFeed( FF_NICKNAME, FF_REMOTE_KEY );
$entry = $friendfeed->publish_link( ‘Now Playing: ‘.$_POST['title'], $_POST['link'] );
}

Jun 24

“Life hack” is a goofy term, but there are a few PC tricks that work well for me and do save a lot of time. Many of them are ways to minimize using the mouse.

Mozilla/Firefox Custom Keywords/Quick Searches

Use Alt-D to move the cursor to the browser’s URL address field, then type the quick search keyword and whatever you’re searching for, and hit enter. Firefox will fill in the %s in the quicksearch bookmark URL with your search text, and then open the URL, taking you directly to the search results page. Some examples:

AutoHotKey shortcuts

AutoHotKey is an awesome free keyboard macro program that you can use to automate all sorts of things. My AutoHotKey file has all sorts of things in it - whenever I find myself typing the same thing frequently, I make an entry in the file to save time in the future. Some of the things I have in there:

  • Shorthand for commonly used words, e.g. “oppty” expands to “opportunity”, “regi” expands to “registration”, etc.
  • Signautures, email addresses, phone numbers, URL’s
  • type “euro” and get the € symbol
  • Credit card numbers - I have a macro that pastes in my CC number, and then pops up a dialog that shows expiration date and security code, so I don’t have to look it up when filling out forms…
  • F11: switch to Outlook and move focus to contact search field
  • Ctrl F11: switch to Outlook, move focus to contact search field, paste selected name, and run the search
  • F12: open selected URL
  • Ctrl F12: Google search using selected text
  • Win C: open Calculator
  • Win V: open Volume Control
  • and lots more…

Devices

PC card slot StashCard - Handy for exta SIM & SD cards.

Anagram

Anagram is a great little program that does one (or two) things really well.

  • Select some text (like an email signature) and hit Ctrl C twice in quick succession fires up Anagram, which parses the text and creates and Outlook Contact record.
  • Anagram also adds a “Copy As Text” button to Outlook, handy for pasting contact info from Outlook into emails and the like.

What’s missing? iTunes: sync between two machines

It’s way too hard to use iTunes with two machines. I have a laptop and a desktop PC, as well as a 4Gb Nano. Why doesn’t iTunes make it easy to manage a single music library across all three?

Download and import new music

  1. download mp3
  2. find download directory
  3. download album art into new album directory
  4. rename to folder.jpg
  5. import new mp3(s) into iTunes
  6. select newly imported songs/album
  7. drag album art into iTunes

Copy to second machine

  1. (keep track of new music directories)
  2. copy album directory to other machine
  3. import into iTunes on other machine

And song ratings, etc still aren’t syncronized at all. Argh!!! Any suggestions for improving that? Why can’t iTunes treat my laptop just like my iPod?

Moblog
Recent Posts

Fatal error: Call to undefined function: recent_posts() in /home/.ragamuffin/bdwelle/dwelle.org/index.php on line 214