Categories
Etc

I could have saved $2

Silly me. I go and buy Feist’s album The Reminder right before Amazon opens up the MP3 store and I can have it a couple bucks cheaper, already encoded ad with no jewel case or physical media to deal with.

Goodbye iTunes Music store. Until all your stuff is DRM free, I won’t be buying anything from you.

Categories
Work

Twitter tracking as customer support?

Ever since twitter released their tracking feature, we’ve been watching for mentions of Bloglines. I’ve noticed a couple things:

  1. People are really surprised and usually quite happy when they twitter about Bloglines and get a response from an engineer. I love surprising people. :)
  2. Lots of folks are twittering about Bloglines in languages other than English. Which really isn’t surprising given how many of our users are from outside the US.

We’re watching… Keep on twittering!

Categories
Etc

Congrats to Garrett & Joanna!

Woohoo! C’mon man, the planning is the fun part!

Categories
Work

Bloglines β tweaks up on userstyles.org

I took all of my mods to the Bloglines beta and made them available on userstyles.org. Happy hacking!

Categories
Work

More Bloglines beta style hacking – Making big images fit

One problem I have with some feeds, especially photoblogs and comics, is images that are too wide for the new beta interface. I’m a bit odd (I think) in that I like to run with my browser window less than full screen (I have a 1440 x 900 and a 1920 x 1200 screen). I’m generally running with Firefox or Camino at about 800 or 900px wide, which has a number of benefits. It reduces the line size for sites with fluid layouts, making things easier to read, and it allows me to have a couple browsers open side by side by side across the two screens. With this setup, I have about 620px left for article content.

The problem is some feeds have images in them that are quite a bit wider than 620px. To solve this, I use the following bit of CSS with Stylish to fix things up:

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("http://beta.bloglines.com/b/view") {
.templateText img {
  max-width: 100% !important;
}
}