Cool – Opera Company of Philadelphia at Reading Terminal Market

June 23, 2010 by · Leave a Comment 

The Opera Company of Philadelphia gives an impromptu performance at Reading Terminal Market. I know…another off topic post but too cool to resist.

Philly Startup Leaders Starter Stories – Farid Naib

June 18, 2010 by · Leave a Comment 

Nice talk by Farid Naib of DDC.

Detroit – Hope you Survive…:)

June 18, 2010 by · Leave a Comment 


Having grown up in an industrial town on the Great Lakes I should really keep my mouth shut.  Also, I know this is off topic having nothing to do with technology, business, entrepreneurship or anything else we discuss here…but it was too funny to pass up.

Thanks to Hak5 for putting this gem on my radar.  Trust your technolust!

Gabriel Weinberg Interview – Duck Duck Go

June 14, 2010 by · 2 Comments 

This is a cool interview if you can make it through the somewhat lengthy sponsor plug at the beginning.  It’s a discussion with Gabriel Weinberg, a Philadelphia area entrepreneur and founder of Duck Duck Go (among others).  Very cool to see how the revenue ramp up on web ventures can go.  This was posted on Mixergy.

Sorry, I tried to embed the video, but the embed code from their video hosting platform just plain didn’t work.  Still, Mixergy is worth a visit so check it out here:

http://mixergy.com/gabriel-weinberg-duck-duck-go-interview/

Deploying a Hobo Rails App on Heroku

June 11, 2010 by · 2 Comments 

In my previous post I created my first Hobo application.  I wanted to show off the fruits of the 5 minutes of hard labor to my partner, so I decided to push it to Heroku.  I ran into some problems because I’m using Rails 2.3.8, which Heroku hasn’t deployed for general use.  It is available on their bamboo stack.

After much fumbling and my inability to get the .gems file right (because of gem dependencies of Hobo) I decided to give Gem Bundler a try and it magically solved all my problems.

Here’s what I did…

Install Gem Bundler (gem install bundler).

Create a Gemfile with the following:

source :gemcutter
gem 'rails', '2.3.8'
gem 'hobo', '1.0.1'

Then to bundle your gems, run bundle install from your app directory.  When Gem Bundler is done crunching, the next thing to do is get it up to Heroku.  Since I needed to run this on their Bamboo stack, I had to create an app specifically for that stack.

First things first, add everything you need to your git repository (Heroku explains how to do this).

To create a Bamboo stack application, just run

heroku create --stack bamboo-ree-1.8.7 --remote appname

…then push your git up to Heroku…

git push appname master

…you’ll notice a lot of activity while Heroku installs gems.  Hobo is a pretty complete framework so it uses a ton of them.  Grab a snack while you wait.

Finally, just migrate your database…

heroku rake db:migrate --app heroku-app-name

Make sure you use the app name Heroku uses.

That’s it!  I had my Hobo app running in just a few minutes.  If you’re using a Rails version that doesn’t require the Bamboo stack, it should be even easier using the normal Heroku deployment tricks.  I’m glad to see Gem Bundler will be the default gem management tool for Rails 3.  It definitely made my life a lot easier.

New Post on the BiP Blog – Wired App for iPad

June 9, 2010 by · Leave a Comment 

Check out my take on the new Wired app for iPad.

http://bip.softwarejewel.com/technology/wired-app-for-ipad-definitely-the-future-of-media-4077/

Hobo Application Builder for Rails

June 6, 2010 by · 2 Comments 

I was roaming the interwebs seeing what was new in the world of improved generator scripts and scaffolding in Railsland and found Hobo. I’m completely blown away so far.

Having come from doing web development in .NET or Java, Rails in comparison is a huge shortcut to getting something up and running.  Hobo is an additional layer of get-it-up-fast goodness that’s just friggin incredible.  I came home from visiting family today and had checked out the introductory video on the Hobo site and came home anxious to try it.

I’m running Rails 2.3.8, which is newer than the latest version of Hobo so I was a bit concerned about compatibility.  To test it out, I have been wanting to put together an application for our enterprise to keep a vault of all of our business ideas.  Longer term I was thinking of making a Digg like feature so everyone can vote up or down the ideas, challenge monetization schemes, etc. and may the best ideas win.

First things first, using Hobo I made a simple app that allows users to register and create business idea records in the database.  It took a grand total of 5 minutes including bathroom breaks.

Here’s the command line action from start to finish to create my initial ideavault application:

sudo gem install hobo
hobo ideavault
script/generate hobo_model_resource businessidea name:string description:text revenuemodel:text technolgysummary:text
script/generate hobo_migration

The Hobo migration script has a couple of questions which I answered as described in the tutorial.  Then I just fired up the server and my hobo app magically appeared…

Hobo uses it’s default templates to give the initial style to the pages and is easily changed.  The first user you create is an admin user unless you modify the code that does that.  I went ahead and created myself as the first user and clicked on the Businessideas tab (I’m actually regretting choosing that as the name now that I see it on the UI, but I’m sure I can change it easily enough on the tab).

My new Hobo app cheerfully welcomed me as a new user and I was able to create new business ideas to my heart’s content.

Hobo created all of the infrastructure for user creation and authentication.  The Account menu provides the ability to change passwords, etc.

I can’t wait to find out what else Hobo can do.  I downloaded the free PDF books from the Hobo site.  I expected them to have been cobbled together in a weekend over many beers, but these are market quality, professional publications.

I’ll continue to flesh out this application using Hobo and will post my adventures.  In the mean time I encourage any Rails developer to check this one out.

The Wisdom of Steve Jobs from All Things D

June 5, 2010 by · Leave a Comment 

It’s fun when Steve Jobs gives a real interview.  Apple keynotes are highly scripted and he doesn’t give interviews very often, but it’s usually fun when he does.  Here’s some entertainment from the All Things D conference a week or so ago.

My favorite part is near the end.  I’m sick of the War on Flash nonsense but this is worth suffering through.  I think he puts things into perspective when he says a lot of people pay Apple to make great products by deciding what goes into them and what doesn’t.  If they succeed, people buy them…if not they don’t.  Oh, and they’re selling one iPad every 3 seconds.

Fun stuff…