Ohio Edison Plant

I went to the Ohio Edison plant today to see if I could get some photos of the demolition in progress. I couldn’t get quite as close as I hoped but still managed to get some shots. I heard there were photos taken inside the building before demolition, if I can ever find them I’ll post a link.

Springfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power PlantSpringfield Power Plant

Carriage Hill

Went to Carriage Hill Park yesterday and walked around. It’s a nice place, it was larger than I expected. I didn’t get to see the whole park but walked through the working farm and on a few of the trails. If you are looking for an outdoor trek north of Dayton give it a try.

Carriage Hill FarmsCarriage Hill FarmsCarriage Hill FarmsCarriage Hill FarmsCarriage Hill FarmsCarriage Hill FarmsCarriage Hill FarmsCarriage Hill FarmsCarriage Hill FarmsCarriage Hill FarmsCarriage Hill FarmsCarriage Hill FarmsCarriage HillCarriage Hill

Razor Set

Took these at home because I needed to shoot something and couldn’t think of any thing else. Though “Morning Ritual” is a little laughable if you have seen my face since the 7th grade.

Morning RitualMorning RitualSetup Shot

Great Smoky Mountains National Park

A few shots from last weekend’s trip to Great Smoky Mountains National Park with the family. It was a gorgeous weekend, fantastic weather and got to spend some time with the family.

DSC_0107DSC_0117DSC_0128Panorama1DSC_5605DSC_5627DSC_0009Panorama2DSC_0098windowDSC_0112DSC_0114DSC_0118DSC_0130DSC_0134DSC_0142DSC_0145DSC_0157

Light Painting

I have seen this done well and done poorly, but I wanted to try it out. After trying it I added a few more in the “poor” category. But it was still a fun side trip from my usual strobes.
Side note, may want to wear your ninja outfit so your Casper legs don’t show up in some of the shots.

DSC_0006DSC_0016DSC_0028DSC_0033DSC_0005DSC_0034DSC_0004

Embedding Web Fonts with ColdFusion

After reading some about embedding fonts I decided to try my hand at embedding fonts in CSS using ColdFusion. I was pretty pleased with the result.  This will not work in IE since Microsoft chooses not to recognize the @font-face property in CSS, for more information on a possible work around for that I recommend reading Jon Tan’s post. I think the hard part of this right now is finding the right font with the right usage license.

Example (Sorry IE…)

The quick brown fox jumps over the lazy dog

Since this is wordpress I used an external style sheet, the code in which is pretty simple.

Code


<cffile action="readBinary" file="#expandPath('./IDAutomation.otf')#" variable="myBinaryFile">
<cfset myFont = toBase64(myBinaryFile)>
<cfcontent type="text/css" reset="yes">@charset "utf-8";
/* CSS Document */
@font-face {
font-family: "IDAutomation";
src: url("data:font/opentype;base64,<cfoutput>#myFont#</cfoutput>");
}
.barcode {
font-family: "IDAutomation", serif;
}

Weekend in Nashville

A few mobile shots from hanging out in Nashville over the weekend. Seeing some of the sights and hanging out at the taste of Nashville event.

IMG_20100605_114120IMG_20100605_110637IMG_20100605_111035IMG_20100605_111129IMG_20100605_111527IMG_20100605_111248IMG_20100605_111645IMG_20100605_111722IMG_20100605_111901IMG_20100605_111908IMG_20100605_112011IMG_20100605_112018IMG_20100605_112321IMG_20100605_112428IMG_20100605_112437IMG_20100605_112503IMG_20100605_112811IMG_20100605_113048IMG_20100605_113917

Just one more reason we are Springfield…

Springfield Tire Fire

I have long said that the fictional Simpsons Springfield is where I live. Just one more real life event to prove it.

Coldfusion Cached Image Rendering

I recently had the need to do some client side file caching for static files and images. Not usually a problem, just setup IIS to expire after X days for that directory. But for this site profile images were stored in the database, so coldfusion would have to control the cache headers on image render.

I attached the code for imageRender.cfm which adds two headers

< cfheader
name="Expires"
value="#GetHttpTimeString(dateadd('d', 30, Now()))#"
/>
< cfheader
name="Last-Modified"
value="#GetHttpTimeString(qry_imageRender.lastModified)#"
/>

The render page then does a check to see if the file has been modified before it outputs the file to the client and if it can sends a not modified header. This saves quite a bit of server traffic and as a result lowers the load time for a typical page view on the site.

This could work for any type of page but especially helpful when serving images or other large static files. Hope this helps someone, as most of my initial google searches showed how to not cache a script.

2010 Hermes Awards

Some shots of the Real Art after party, and a few of the nine Hermes awards real art took home.

2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards2010 Hermes Awards

Switch to our mobile site