Why I Auto-Renew Domain Names

A couple weeks back, I had this idea for a new web app. Like so many of these ideas – I wrote it down. Just to get it out of my head.

This afternoon, I get an email from my sister describing the need for a web app not unlike the one I wrote down earlier.

So, I took a few minutes after dinner and started looking for available domain/code names for the project. Nothing that I’d be proud of. Nothing that would really resonate with me as I built it. Nothing that would continually remind me of the attitude and purpose of the site.

Then, the moment I walked away from the search, I remembered…

I already have the perfect domain. And I just renewed it.

This new project is both a perfect fit for the domain name and easier to prototype.

Smiles.

Published
Categorized as General

The need for a new news system

Earlier this week, a natural gas main ruptured on the other side of the block.

Our block and half a dozen other surrounding blocks were evacuated.

There were no 30 foot flames shooting into the air. Just the constant sounds of gas leaking into the atmosphere at high pressure.

It could have been worse.

Much worse.

But it wasn’t – so word of the rupture and evacuation was isolated. A couple general sentences in the Star Tribune, Twitter, and KSTP through out the day.

Communication to the affected families. I sensed the fire department was getting frustrated at repeating himself to each citizen that walked up.

Then again how would he have communicated status of the repair to ~60 evacuated households?

My Proposal for an Open-Source Community News Platform

Published
Categorized as General

Tracking Flash Movie Plays with Google Analytics

If you’re looking for a quick way to track when Flash movies (or anything else in <object> <embed> tags) are played – this works for me:

Quick overview: create a new div with an onClick action and put the Flash movie inside it.

Then in the movie’s <object> tag – add <param name="wmode" value="transparent" /> and in the <embed> tag add this attribute wmode="transparent"

The wmode declarations allow the click in the Flash movie to pass through to the enclosing div and trigger the onClick.

Like this:
<div onClick="_gaq.push(['_trackEvent', 'Videos', 'MovieName', 'PageName']);">
<object...>
<param name="movie" value="http://path.to.swf" />
...
<param name="wmode" value="transparent" />
<embed wmode="transparent" ..." />
</object>
</div>

Published
Categorized as General