I love this. There’s a tendency to believe that a visual problem (or perceived problem) with a website requires a redesign to fix, and then going through a long, complicated, expensive process that usually doesn’t solve the problems. It’s like not liking the paint color on your walls so you demolish the whole house. It’s done entirely because people can’t think of anything except “Redesign!” It’s almost always a mistake.

The One Good Thing About Google+

There’s a lot to hate about Google Plus. Google has been ridiculously pushy about a product that offers very little that other products don’t. The design is poor—one post with a couple comments takes up the entire real estate—and the mobile app pushes an “immersive” experience, as though that’s what we really needed. Circles are high-maintenance and the wrong way to go about content management and Google is pushing us all do to more: more people in your circles, follow more people and brands, join more communities. MORE.

But there is one good thing about Google+, and that’s that it acts as the glue between all Google products, most notably your contacts, where your address book is updated with the people who are in your circles. Even if the social side of Google+ fails, that connection is still highly valuable, and it’s important that people both keep their information current and that they expose it to at least their Friends circle.

Of course, this is what a lot of the initial arguments in favor of Google+ put forward: that it’s not a social network, but a way to link everything together. That doesn’t account for why Google has been so forceful with the social aspects of Plus, though. If it’s not a social network—if it’s not a Facebook clone—then why are they launching communities, Pages, and pushing us to put more people into our circles?

Here’s to hoping that they’ll continue to make the contact aspect even more useful, even if they don’t do the same for the social parts.

“I’m not exactly a stranger to technology, but at a certain point, this stops being fun. Really what I want to do with this site is publish my writing and photography. As far as I’m concerned, the technology should stay out of the way. As much as I want to be a control freak and build my own platform to my heart’s content, I would rather write and photograph than be a system administrator.”

New Year, New Platforms, New Site — Sterling Zumbrunn Visuals

Great post (with some quality software recommendations) that hits the nail on the head about how I feel about tech: I’m curious about it and love exploring, but when it more maintenance than creation, it’s no longer useful to me.

“The new features are built on the belief that sharing purchases matters more than sharing mere interest in music. A purchase signals a level of interest that’s much greater than the interest that goes into a stream or a like. Anybody can listen to music these days, but not just anybody will actually part with money for it.”

Exclusive: Bandcamp Adds User Pages, Gets Social | Billboard.biz

I love this concept of “high-friction sharing” that Bandcamp is going with. It’s more risky, sure, but a knowing share is worth much more than an ignorant share.

Quickly archive old email in your Gmail inbox

A couple of months ago, Gmail created some new search operators that allow you to find emails that are older than x number of days or weeks. I was thrilled to read this, assuming that it would mean I could get the feature of Gmail that I’d long been hoping for: a filter that automatically archives old messages from my inbox, meaning that I would no longer have to go through my old email and archive it manually.

Unfortunately, that still doesn’t work. You can create a filter with the new search operators, but since filters (apparently) only work on incoming email, your filter just sits there, doing nothing.

But I did find a way to combine these new search operators with the Quick Links lab feature to at least make it easier to archive older read messages in my inbox. Here’s the recipe:

  1. Turn on Quick Links if you haven’t already (go to Settings, then click Labs, then search for Quick Links and enable them and click Save).
  2. In the Gmail search box at the top, type in this search term:
            in:inbox is:read older_than:14d
  3. In the Quick Links area, click “Add Quick Link”, which will create a new entry for you and will allow you to give it a title (I called mine “Old Inbox Messages”).

Once you’ve done that, archiving older inbox messages is as simple as opening up the Quick Links box, clicking on “Old Inbox Messages”, clicking the checkbox up at the top to select all messages that match that search and then archiving them. Yes it would be nice to have it be automatic, but this is still a lot better.

Also: I also created an Unread Messages Quick Link (“is:unread”), which can be really handy when getting back from a vacation and going through all the email that’s piled up in all your different folders.

Simple find-and-replace using regular expressions in Dreamweaver

It’s a simple problem, but one I came across often in Dreamweaver: how to change out a set of tags while leaving the text between the tags intact. Here it is for reference.

If you to change:

<div id=”messy_header”><div class=”messy_headline”>This Is A Headline</div></div>

to:

<div class=”clean_headline”>This Is A Headline</div>

Then this is what you put in the search and replace dialog in Dreamweaver (regular expressions in bold), making sure to check off the “Use regular expression” option:

Find: <div id=”messy_header”><div class=”messy_headline”>(.*)</div></div>

Replace: <div class=”clean_headline”>$1</div>

I don’t doubt that there are tons of better solutions (not to mention better software). If you have a better solution…well, that’s why installed comments here. Fire away.