How To Decide Which Bloggers to Give Press Passes To?

I got a call today from a local organization asking for a list of blogger to extend press passes to. I was familiar with the organization and have a pretty good idea who would dig what they were doing. The criteria they were most interested in was size of readership. From my email reply: “In …

Carbon Trading in the US and Minnesota

If you caught the NPR/National Geographic segment on the European carbon trading efforts you may have gotten the impression that: the price of being carbon neutral is so low (+2%) that it’s irresponsible not to pay it. a market for carbon dioxide, mandatory or otherwise, didn’t exist stateside. True on the former, false on the …

How to Automatically Link URLs in Rails

Let’s say you have a Rails app and you’d like any URLs in any plain text string to be automatically hyperlinked. Well, then you’ll need this: .gsub(/((http|https)://[a-z0-9]+([-.]{1}[a-z0-9]+)*.[a-z]{2,5}(([0-9]{1,5})?/.*)?)/, ‘<a href=’1′>1</a>’) For example: I blog at http://garrickvanburen.com Through: “I blog at http://garrickvanburen.com”.description.gsub(/((http|https)://[a-z0-9]+([-.]{1}[a-z0-9]+)*.[a-z]{2,5}(([0-9]{1,5})?/.*)?)/, ‘<a href=’1′>1</a>’) Results in: I blog at http://garrickvanburen.com

I’m trying to find the online version of…

I’m trying to find the online version of an article in Today’s PiPress. This is really hard. Searching for the author’s name doesn’t work. Copying the headline from the PDF version of the front page and pasting it into search doesn’t work. Found it. I Googled for the headline, the only result – Chuck’s posting …