DHH wrote an insightful post recently that highlights the importance of a work/life balance. I feel exactly the same way as David. I spent many years burning the midnight oil constantly and tirelessly working on “being 90% done for 90% of the time.” For me, it’s work to get out of that mode, but when I do, I do seem to accomplish more.
From the experience I’ve had working with family people, I’ve found an amazing ability to get stuff done when the objectives are reasonably clear, the work appears to have meaning, and if it can be done within the scope of what should constitute a work week. When there are real constraints on your time, like you have to pickup the kids or make them dinner or put them to bed, it appears to bring a serenity of focus to the specific hours dedicated to work.
This is what companies need, startups or not. They need constraints and especially constraints on how often you can play the hero card to Get This Very Important Project Done. Most projects are just not that important and most things just shouldn’t be done anyway, despite how good of an idea you feel it is in the heat of the moment.
We who choose to surround ourselves with lives even more temporary than our own, live within a fragile circle, easily and often breached. Unable to accept its awful gaps, we still would live no other way. We cherish memory as the only certain immortality, never fully understanding the necessary plan….
Blogging is work. And I already have a lot of it. That’s why this blog is stale, stale, stale. Is there a chance I can freshen it up? I suppose. I am looking for an independent place (i.e., not my work blog) to write about stuff… and FriendFeed isn’t enough. I need to be able to publish code like so…
class Feeds::PeopleController < Feeds::BaseController
before_filter :person_in_context, :only => [:show, :friends]
# GET /feeds_peoples/1/friends
# GET /feeds_peoples/1/friends.xml
def friends
@friends = @person.friends
respond_to do |format|
format.xml
end
end
# GET /feeds_peoples/1
# GET /feeds_peoples/1.xml
def show
respond_to do |format|
format.xml
end
end
end
Anyway, I suppose I should start being productive with my blog again.