Archive for the ‘Updates’ Category

Google Buzz not Working for Us

11 February 2010 by Bret

Earlier this week Google released Buzz which to us feels like a social media API interface and Wave hybrid. Without going into all the details, Buzz allows you to share updates, photos and things of interest with your friends and/or the world. You can get real time updates that are integrated with your inbox and other social media accounts like Twitter and Flickr.

The concept behind Buzz sounds pretty cool. We looked into it, added it to our Gmail accounts and have connected with each other as “friends”. Okay, now what?

Here’s the problem for us. We both have Gmail accounts, to which we’ve tied other Google features like iGoogle, Reader, Webmaster Tools, and Analytics. Nothing new or revelatory about that. The part of the Google account that we use the least is Gmail, aside from a couple mailing lists.

We have nothing against Gmail, in fact we love Gmail. We’d even wear “I heart Gmail” t-shirts under our jackets on a cold day. The Spam protection rocks (Yes, rocks, I could have used bitchin’ but didn’t want to take you back that far in time), the mailbox size is amazing, and the IMAP access is nothing short of awesome. But, we love Gmail inside Google Apps where our email addresses use our own domain name not Gmail’s, and where we do most of our correspondence. Unfortunately, Buzz doesn’t work with Google Apps, yet. We’ve read rumors that it’s coming though.

The larger problem we see is that in order to use Buzz you have to have a Gmail account and use that account for all your correspondence be it business or personal. That’s not the case with Twitter, Facebook or even Flickr. We can, and do, have one Twitter account for business tied to a business email and then individual personal accounts tied to different addresses. With the other social media apps I can use any email account to keep up with friends and clients. With Buzz I can only communicate with my friends who happen to have Gmail addresses, forget AOL, Hotmail, Yahoo, Mobile Me, etc. Finally, the big downside is business correspondence. How many people who want to be taken seriously use a plain ol’ Gmail address for a business email?

Even if Buzz does get added to Google Apps our fear is that you’ll still be limited to only communication with other Google Apps or Gmail users. That leaves out a lot of clients especially medium to larger organizations that run their own Exchange servers for email.

Bottom line, is a social media feature or app good when tied so closely to a particular email provider? We don’t think so. But perhaps we’re over thinking it. Maybe Buzz isn’t supposed to be used in a business environment. Guess that’s where Twitter and Facebook will have to pick up the slack.

Manage Development Subdomains with Ghost

11 September 2009 by Bret

For the longest time I’ve been manually adding subdomains and testing URLs to my /etc/hosts file. I installed Ghost today, a great little gem that makes managing subdomains and development domains really easy. It’s all command line based, simple add, list, empty commands are used to make complicated subdomain scenarios i.e. iphone.account.domain.com really easy to manage.

Ghost will only work on *nix OS’s.

Multiple Ruby Versions for Development

10 September 2009 by Bret

We’ve been working through bug after bug in Ruby 1.9.1 and Rails 2.3.4 all in the effort of getting our new product launched. I don’t want to say we’ve given up and retreated, but rather, we’ve put Ruby 1.9.1 to the side for a while. There are just too many things that need patching and fixed just to get things to run normally.

We’re looking at Ruby Enterprise Edition by Phusion, and we’re pretty excited by the features and speed. We just want to go back, either to 1.8.7 or even 1.8.6 cause outside of 1.9.1 not only do normal things work, like sending an email from someone: John Locke < jlocke@theisland.com > instead of just a nondescript email address: jlocke@theisland.com But the site just seems way faster than when it was on 1.9.1.

To downgrade my development Ruby and make like easier when we want to return to 1.9.x, I turned to Ruby Version Manager. RVM is a great little gem written by Wayne Seguin that was just updated yesterday. RVM allows you to switch between Ruby versions, including Ruby Enterprise Edition and JRuby as well as using what RVM calls gem sets.

This allows me to install different versions of Rails against a particular version of Ruby. For example, by just typing: rvm ree -m rails234 I can set up a gem set called rails234 where I can install Rails 2.3.4 using gem install rails -v 2.3.4 and test it using Ruby Enterprise Edition. If I want to install Rails 2.3.3 I do the same thing: rvm ree -m rails233 then gem install rails -v 2.3.3

Switching between versions is as easy as rvm ree or rvm 1.9.1 You can find out more at the RVM site. But I have to say Ruby development has never been so easy. Thanks for a great gem Wayne.