I Heart Ruby

Yes, I also heart a lot of other programming languages. But the timing of joining the company I did (a Ruby shop) and diving into the Ruby world which by nature is more entrepreneurial and experience design oriented than a lot of other language environments, probably saved me from burning out and just molding myself into the corner of some giant consuming corporate IT position.

So I guess, more to the point...

I Heart the youthful vibrant community of the startup tech world

Hopefully I can now give back to that community that has re-impassioned me and I've got a laundry list of projects, ideas, and technical experiments that I'm going to try to commit to posting. I also have some soon to launch start-up projects I'm co-founding that I'll be announcing over the course of the next year, so stay tuned!

class MeController < ApplicationController
        
  def a_new_page
    @me = Person.find_by_name('Bret Kittle')
          
    happy_developer = HappyDev.new(:person_id => @me.id)
    happy_developer.save
          
    render :partial => @me.web_url
          
  end
        
end