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.
I have long said that the fictional Simpsons Springfield is where I live. Just one more real life event to prove it.
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.
I started messing with some new post processing techniques. I like where it’s going so far. Even if I don’t end up using the final product it’s good to see how some of the process affects the final image. Below a half and half example shows distressing and colorizing an image that was black and white.

Real Art Christmas Party from Justin Dunham on Vimeo.
The memory card filled up quick so I don’t have as much of it captured as I would have liked, but cool anyhow.
Scored a trip to the SEC Championship game with my bro Rob, had a great time. I hope to get some more of the pics up soon, but tonight I left my camera at work.
I bottled 5 gallons of Irish Stout last night. The flat taste wasn’t bad, it had a bit more hop flavor than I was expecting but still balanced. Color was near black, surprised me a bit even though the recipe says as much.
I under estimated the bottles I would need and ended up filling my 64 oz growler, in addition to the 32-12oz and 8-22oz bottles. I have never bottled in a container that large, especially with a twist off but it would have been thrown out so I thought I would give it a try. I have read it may not carb as well but we’ll see in about a month.
Side note: I received my Belgian Abt 12 kit from Austin Homebrew. I’m pretty excited to get this batch started but I think it’s going to have to wait till next week. Just too busy with catching up after being out of town and the Real Art Christmas party this weekend.