Archive for October, 2007

White House Tour

Dana and I, along with some of her friends, had the pleasure of touring the White House’s West Wing last Wednesday. We were both very excited, despite our obvious disagreements with the current occupiers of 1600 Pennsylvania Ave NW. We’re very thankful to the kind White House staffer whom offered to give us the tour, he’s an incredibly nice guy. The feeling walking the halls is pretty electric, as you imagine the conversations that have taken place and decisions made in its corridors.

Here’s a sample photo, but you can view the few that turned out over at Flickr.

Interactive Album Covers

Sgt. Pepper’s Lonely Hearts Club Band CoverI mentioned previously that Amazon launched an mp3 store. While I applaud their efforts in releasing music files without digital restrictions on their use, I personally am much more inclined to buy a CD, and even more inclined to buy vinyl, because I love having the full-size artwork to peruse while listening to the record.

However, Wired Magazine’s Listening Post, points to an alternative album cover of The Beatles Sgt. Pepper’s Lonely Hearts Club Band by the Oxford Dictionary of National Biographies that makes digital album sales much more appealing.

Oxford has built a page where you can hover over the images of various individuals on the covers, and clicking on many will bring you to a biography of that individual. It’s a great way to advertise their service, but an even better demonstration of the promise of creative thinking in music sales.

Vinyl Isn’t Dead

Listening Post does a little math that goes to show that vinyl is far from dead:

EBay Users Buy/Sell over 3 Million Vinyl Records Per Year on Listening Post

- EBay users buy and sell 6 vinyl records every minute (or one every 10 seconds).

Updated iTunes-LAME for use with iTunes 7.4.2

I love the ease of Blacktree’s iTunes-LAME application. It makes ripping CDs in high-quality incredibly easy. LAME (LAME Ain’t no Mp3 Encoder), is an encoder that allows for ripping CDs at high-quality compression ratios, given you the most “bang for your buck” in your audio files.

Unfortunately, Blacktree’s current version of iTunes-LAME didn’t support the latest iTunes version (currently 7.4.2), causing a bit of panic when I went to rip some CDs last night. Thankfully, Blacktree has an updated version on their Google Code site, which works perfectly. Apple discontinued AppleScript Support in the latest versions of iTunes, but you can simple treat iTunes-LAME as a stand-alone application and it works fine.

Creating Automatically Updating Webpages with XML and PHP

XML (eXtensible Markup Language) is a method of publishing data from a web page that allows that data to be automatically updated when the content on the page changes. For instance, blogs publish XML feeds when a new story is added; a podcast is basically an XML feed that points to a new audio file. This is incredibly helpful if you want to pull data from somewhere else, but you don’t want to have to re-write your page when someone else’s content changes.

As I mentioned in my previous post, I’ve been using Cork’d to keep track of my wine drinking and storage. Cork’d has a great feature of keeping your journal and cellar separate, but an even better feature whereby they publish each as XML feeds. I thought that it would be cool to have this data listed here, but I had tried to parse XML with PHP, and I failed miserably the last time (PHP is the language that WordPress, which powers this site, is built on).

I was lucky in trying to build these particular pages, because WordPress has a built-in XML parser. I was able to use this code to pull in the data from Cork’d, and publish here in the wine section:


< ?php require_once (ABSPATH . WPINC . '/rss-functions.php');
$url = 'http://corkd.com/feed/journal/bmh';
$rss = fetch_rss( $url );
if ( $rss ) {
echo "Title: " . $rss->channel['title'] . <”p>”;
echo “<ul>”;
$i = 1;
foreach ($rss->items as $item) {
$href = $item['link'];
$title = $item['title'];
$description = $item['description'];
echo “<li>$title<br />$description</li>”;
if ($i == 5 ) break;
$i = $i + 1;
} echo “</ul>”; } ?>

I want more, more, mmmooorrre…

“Cellar”

It’s no surprise I like vino. I’ve been searching for a way to keep track of wines that I own, and those that I drink, and for now I’ve settled on the website Cork’d. One of the coolest features about Cork’d is that they publish the list of wines that are in your cellar, as an XML feed.

This made it very convenient for me to create a new page here - my cellar.

“What? Northworst lose your luggage?”

is what the clerk at my hotel said Saturday night. I’ve had problems with Northwest before, but this was my worst so far.

I planned to catch the last Fargo connection Friday night from DC. When I got to Washington National airport on Friday night, the gate attendant told me that my flight was going to be delayed at least an hour. Thankfully, she was kind enough to book me on the first flight out of Minneapolis Saturday morning (at 9:15 am), but I naively thought I might still make my connection. Of course, I didn’t. Northwest was kind enough to put me up in a hotel on Friday night (as they should have), but missing a connection and having to reschedule an otherwise pleasant weekend was incredibly frustrating. To make matters worse, Northwest wasn’t able to get my luggage onto my new flight 11 hours after my scheduled departure from MPLS, and I didn’t receive it until 9:15 pm Saturday night. Argh.

Use My Photo? Not Without Permission - New York Times

The New York Times has an interesting piece about some lawsuits involving Flickr and Creative Commons. The section I find interesting is the paragraph explaining Creative Common’ role in the suit. Creative Commons is a non-profit organization that seeks to educate individuals on intellectual property and copyright issues, and also to offer alternatives to the typical copyright structures:

The lawsuit, filed by the Changs’ lawyer, Ryan Zehl, from the Houston law firm Fitts Zehl, also names Creative Commons. Mr. Zehl said, “as the creator of this new license, they have an obligation to define it succinctly.”

Additionally:

He said that the term “commercial use” was too vague to inform users of the license.

The photos in the suit were licensed as attribution-commercial under Creative Commons. As one might guess, “attribution” requires the user of this particular piece of art to give the original artist credit. “Commercial” means that the photo can be used for commercial purposes.

As Lawrence Lessig says:

the part about us is puzzling. It says we failed to instruct the photographer adequately, but the first question is, ‘do you want to allow commercial uses?

I certainly hope that this judge doesn’t hold CC liable for any of this, because that’s just garbage.

Listening Habits

I’m a big fan of Last.fm as a resource for tracking my music listening habits. However, Last.fm calculates your listening charts based upon the number of times you play tracks by a certain artist. For instance, if I listen to 25, 2-minute tracks by Artist A, they’ll appear higher in my list than Artists B, whose 10-minute tracks I’ve listened to 20 times.

This is where the Last.fm Normaliser comes in. It calculates your Last.fm data against the minutes you’ve spent listening to artists and rearranges your charts appropriately. Mine don’t seem to move too significantly, but the changes are important, and I think they more accurately reflect my listening habits.

Take a peak for yourself.

Here’s a comparison of the two charts:

Last.fm’s default rankings:

  1. M. Ward
  2. Boards of Canada
  3. Wilco
  4. Andrew Bird
  5. The Appleseed Cast

The Normalizer’s rankings:

  1. Boards of Canada
  2. Mogwai
  3. Andrew Bird
  4. M. Ward
  5. Wilco

Geek sidenote: I see that this page is built with ColdFusion (the page ends in .cfm) - I’d love to see this guy’s CFML, because I’m fairly familiar with the language and it would be interesting to see how he wrote the code to query Last.fm’s database.

Radiohead Fans Aren’t Thieves

Compiler sites Radiohead’s publicist saying that most Radiohead fans are paying close to retail for their new album (which Radiohead is offering to its fan for whatever the fans want to pay for it).

It’ll be interesting to see (if we ever do), whether or not this is accurate. After much debate I’ve decided to download the album, in hopes that Radiohead will offer a more US friendly version for the discbox-set, as opposed to the current price of 40GBP (approximately $80USD).