Christmas in August

I’ve been eagerly anticipating for weeks now the arrival of a couple of work-related items. The first was a Timbuktu bag for my laptop. I had one of these years ago that Flock gave staff members, but it was entirely too small. It wouldn’t hold the oversize laptops I tended to get, and even if I had had a smaller laptop the thing could contain, there was precious little room for anything else in it. When I travel, I tend to have an assortment of books, cables, often a portable keyboard and stand for my laptop, etc. So the Flock bag never worked out for me.

The new bag, embroidered with the WordPress logo, could just about carry my whole trip’s worth of belongings. I requested a large backpack because I’ve been sporting a 17″ MacBook Pro for a couple of years now, and boy would this thing hold it. It’s more like the backpack wears me than like I wear it. My sense of this is exaggerated, of course, because I haven’t yet put anything in the bag, and it’s not at all broken in. I think it’ll be a great bag. (It was also stuffed with a couple of WordPress shirts and a mug.)

What makes the size all the more comical is that I have economized what I’ll be carrying around with me when I use the bag. Along with the bag, I also took delivery yesterday of a new 13″ MacBook Air, which is a good deal smaller than the 17″ MBP I’ve been lugging around. I feel like I’m working on an iPhone by comparison, and I feel as if I could tuck the thing inside one of the smaller pockets of my new bag (and lose it in there). I’ve also recently gotten a small Kindle, so that rather than porting around a behemoth laptop and several thick books, I’ve now got two slim devices and a whole bunch of empty space to carry around.

So far, I’m digging the laptop, though since I connect a bluetooth keyboard and mouse to it and use it on a stand as if it were a desktop machine, I’ve hardly taken advantage yet of its compactness. The thing is super fast, though, and so far it stays pretty cool (my other was a scorcher) and makes none of the worrisome sounds I had grown accustomed to. One of my favorite things is the MagicPad trackpad I got to go along with it. I’m still getting used to the various gestures for doing things, but once I get the appropriate muscle memory for them, I’m really going to like the way the trackpad changes my workflow. I may actually use some of the workflowy features of the new Lion OS whose cousins I’ve always dispensed with in earlier OSes. This already beats using the little bluetooth mouse I had been using, with its scroll ball that was perpetually broken for me.

Last, I recently got new business cards, which give me an odd sense of belonging (by which I mean that I feel a little out of my league here at Automattic, and having business cards and company equipment reassures me that there aren’t imminent plans to fire me). The business cards are nifty, turned sideways and featuring my ubiquitous snarly avatar and a QR code going to my gravatar profile on the back.

And that’s that. Christmas in August. Now back to work!

Concentrate

Shockingly, the company I now work for doesn’t much use email for person-to-person communication. I get many svn commit messages and various other automated notifications per day, but it’s rare to exchange email with a human being. We use irc and a special blog theme that makes it very easy to carry on threads in full view of everybody in the company. It’s great that we’re so open, but with something like 80 of these little blogs, some of which are pretty high-traffic, it can get a little overwhelming. Further, I have jabber notifications set up for many of the blogs, so that any time there’s a new post or a new comment, my instant messenger client bounces and beeps at me. When the blogs are really hopping, this absolutely kills my productivity because I’m a magpie who can’t leave the little alerts be for more than a couple of minutes.

Enter Concentrate, a neat little application that helps you do what its name suggests it might. In a nutshell, you define a thing you’d like to concentrate on (in my case “Development” and “Writing” so far) and then define a series of actions that can be performed or suppressed. You might tell it to deny you access to Facebook, for example, or you might tell it to open some app or another. Then you set a time limit, and while the timer’s ticking, you’re barred from doing the things that steal your attention.

I don’t post a lot on Twitter, and I’ve pared my contacts down pretty well, but my Twitter client does pop up alerts all the time. Paired with my IM alerts, these are very distracting. So now, when I want to spend an hour doing head-down development, I tell Concentrate that I want to concentrate on development. It shuts down my Twitter client and reminds me to disconnect from the IM network that delivers the many blog notifications I find so distracting. Then, once the allotted time has gone by, it fires my Twitter client back up and reminds me to reconnect to the IM network (I could have it just shut down the IM client, but then I lose recent history, which bugs me).

I do wish there were better ways of integrating with particular apps. For example, I might have it set a Skype status or change my irc nick to dissuade people from contacting me while I’m busy. But I suspect I can do that with AppleScript if it becomes a big enough deal to me (since Concentrate can run AppleScripts).

I’ve really struggled over the last few days with getting done some tasks that have required focused attention. This little application made my day today just terribly productive. If you’re a magpie like me, I recommend it.

Legible svn diffs in Gmail

For my day job, I now have to read many svn commit messages per day, typically via email (though a view via trac is just a click away). Gmail tries to be helpful by adding underline formatting to line additions and strikethrough formatting to removals, but the result is a nasty ball of unreadable spaghetti. I went in search of an extension that would fix this for me and found the Beanstalk SVN Diff Colorizer for Gmail, which is very nearly what I was after. I made one tiny addition of removing the text-decoration properties, and now I have beautifully legible commit emails in my gmail. I went from this:

The old, busted way to read svn diffs in Gmail.

to this:

The new, awesome way to view svn diffs in Gmail.

 

And here’s the script:

// ==UserScript==
// @name          SVN Diff Colorizer for GMail (based almost wholly on Beanstalk Diff Colorizer for Gmail - http://userstyles.org/styles/14853)
// @namespace     http://userstyles.org
// @description   Adds colorization to SVN diffs received via  Could be made to work with your webmail of choice, and probably some other SVN hosts, with minimal fuss.
// @author        Matt Gillooly
// @include       http://mail.google.com/*
// @include       https://mail.google.com/*
// @include       http://*.mail.google.com/*
// @include       https://*.mail.google.com/*
// ==/UserScript==
(function() {
var css = "ins { background-color: #cfc; text-decoration: none; }\n\n  del { background-color: #fcc; text-decoration: none; }";
if (typeof GM_addStyle != "undefined") {
        GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
        PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
        addStyle(css);
} else {
        var heads = document.getElementsByTagName("head");
        if (heads.length > 0) {
                var node = document.createElement("style");
                node.type = "text/css";
                node.appendChild(document.createTextNode(css));
                heads[0].appendChild(node);
        }
}
})();

The only change I made was to tweak the styles so that only the coloration (and not the line-through or underline text formatting) is displayed.

Whither Daryl?

Several months ago, I posted a status update on Facebook to let my friends know that my employment with my then-employer, Flock, was going to come to an end. Flock was bought by online gaming giant Zynga, and for various reasons I decided not to go along for the ride. Flock did need some ongoing help with the transition, however. We had a service and a few dozen servers online that needed to be kept up and running while things wound down. Flock asked if I’d be willing to stay onboard and help with that wind-down, and I agreed to do so.

Meanwhile, I interviewed at several places. Among them was a company named Automattic. Automattic is most famous for making WordPress (both the downloadable version and the service), though they provide other services as well.

I’m Christmas-morning excited to report that I’m a full-time Automattician as of today. I have the whimsical title “Happiness Gardener.” In a nutshell (without getting too technical about it), I’ll provide support primarily for the “Happiness” (or support) team in the form of internal tools. I imagine I’ll do some public-facing things as well, as part of assuring happiness among our users is trying to make it so that they don’t require support in the first place. I’m working with a great bunch of really smart, nice people, and I feel lucky to be invited along. After months of dragging along around my neck the albatross that Flock had become, it’s a real relief to have moved on and started a new and challenging venture.

Flock Eco Edition

Word seems to be getting out that we’re releasing an eco edition of the Flock browser for Earth Day. I haven’t tried it myself yet (we’re doing final QA on the build to make sure it’s in good enough shape to release), but I do know that it comes with all sorts of green-related links and feeds built in (it’s not clear to me whether these will be dumped in along with your existing ones if you’re already a Flock user; back up your profile first just in case) and that it has a green theme (complete with a recycle button in place of the reload button, which is kind of nifty).

Flock makes money when people use the search widgets built into the browser to search through Yahoo, and we’re opting to donate 10% of the money we make through this edition of the browser to some green cause (to be determined later by user voting). It kind of makes me think of the free rice game: Play a fun little game and give rice to starving people just by playing. Keep your search engine set to Yahoo and use our product to actually do your searching and save trees at the same time. Who knows? It could be your search for Paris Hilton that enables an ecologist to rescue a baby panda from the clutches of a poacher bent on selling its organs to a far eastern natural medicine dealer.