4:30 minutes of my own back channel. Quicktime Here’s the recording of the full event: http://www.ustream.tv/recorded/563535
Author Archives: Garrick van Buren
Snippet: Copy MySQL Databases Over SSH
I needed to copy a database and the idea of backing it up just to re-import1 seemed like double the work. Here’s a snippet to pipe a mysqldump into a remote database. Keep an eye on the user names and passwords – you’ll need 3 sets; one for the database your copying, one to get …
Summer Camp Hookie
On this beautiful Saturday, I missed PublicRadioCamp. Unfortunate for many reasons, including – many of my favorite people in town were there. Hell, some of my favorite people in town organized it. Instead, I had one of the best days ever with my family. Our Day Sleep until after 7am Pick up a few things …
Ruby on Rails Snippet for Changing Relative Paths to Absolute
If you have a bunch of text containing relative path hyperlinks, and you’d like to change to them to absolute paths, you might find this snippet helpful. content = “some text with a <a href=’/path/to/relative_link/’>relative link</a>” link = “http://somedomain.com/” content.gsub(/=(‘|”)//, ‘=1*/’).gsub(/*//, link.match(/(http|https)://[w.]+//)[0]) The asterisk ‘*’ is a hackey placeholder for the actual link swapped in …
Continue reading “Ruby on Rails Snippet for Changing Relative Paths to Absolute”
Book Curation
“…we are going smaller, we are going less.” – Bodo von Hodenberg, bookseller – Bildschöne Bücher, Berlin Germany BTW – I found this link on my economics reading list in Cullect which proves (at least to me) that good curation is about both depth and discovery.
Quoted in APM’s ‘The Pork Wars on YouTube’
As part of APM’s Public Insight Journalism program, I was interviewed as about the use of sites like YouTube for political issues (vs. campaigns) – specifically in the context of the recent tennis match between animal rights groups vs farm industry groups. Here’s the bit of my interview they used on-air and online. “Garrick Van …
Continue reading “Quoted in APM’s ‘The Pork Wars on YouTube’”
Jon Gordon’s Twin Cities Coffee WiFi Google Map Started
Jon Gordon‘s going to be in the Twin Cities for a while and he thought it’d be fun to review the local selection of independent coffee + wifi shops. As part of that effort, I’ve started a Google Map for listing and pin-pointing these places. There’s also a handful of invites floating around to for …
Continue reading “Jon Gordon’s Twin Cities Coffee WiFi Google Map Started”
Something New In the Air
Two of my favorite people are starting new podcast projects in the next week. Kris Smith formerly of Croncast will be launching Life in the Can next Friday, still with Betsy on the other mic. Dave Slusher is launching the Reality Break podcast a couple days later. Both projects are aiming to be more sponsorship-friendly …
Diversified Rhino Guarding
“If you’re building on someone else’s platform, whenever they are down, you are down. There is no way around that.” – Brian Breslin on why TwitBin development is stalled. A year ago, I wrote about my hesitation of building on someone else’s platform. Since then, I launched Cullect. Which is nothing if not built atop …
The State of Dense Comparisons
One of my biggest pet peeves is comparisons of the U.S to other countries – especially European countries – to show how the U.S. is “behind” in some nationwide attribute like healthcare, broadband speeds/adoption, public transit. My first issue with these comparisons is one of scale. The United States is closer to the European Union …