<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">

  <title><![CDATA[adamwiggall.com]]></title>
  <link href="http://adamwiggall.com/atom.xml" rel="self"/>
  <link href="http://adamwiggall.com/"/>
  <updated>2012-01-16T14:34:33-05:00</updated>
  <id>http://adamwiggall.com/</id>
  <author>
    <name><![CDATA[Adam Wiggall]]></name>
    
  </author>
  <generator uri="http://octopress.org/">Octopress</generator>

  
  <entry>
    <title type="html"><![CDATA[Using Pow alongside MAMP Pro]]></title>
    <link href="http://adamwiggall.com/blog/2012/01/13/using-pow-alongside-mamp-pro/"/>
    <updated>2012-01-13T15:47:00-05:00</updated>
    <id>http://adamwiggall.com/blog/2012/01/13/using-pow-alongside-mamp-pro</id>
    <content type="html"><![CDATA[<p>Like a lot of devs these days I run a local version of the websites that I work on under version control to safeguard and streamline my development process. For a few years now I have been using <a href="http://www.mamp.info/" title="MAMP site">MAMP Pro</a> to handle the stack on my machine, as almost all of the work I have been doing has been php, mySQL, Apache based.</p>

<p>Not long after starting to use Ruby on Rails I found <a href="http://pow.cx/" title="Knock Out Rails &amp; Rack Apps Like a Superhero.">Pow</a> and really liked its simplicity and ease of use. However, out of the box it doesn&#8217;t play nicely with MAMP and you will not be able to access MAMP based sites if Pow is running.</p>

<p>This post details how to get them working <em>together</em>.</p>

<!-- more -->


<h3>Adding Pow into the mix</h3>

<ul>
<li>Before installing Pow you need to <a href="https://github.com/37signals/pow/wiki/Running-Pow-with-Apache" title="Running Pow with Apache">follow these instructions</a> on setting up the Pow configuration so that it doesn&#8217;t take over port 80 from Apache.</li>
<li>Once that is done you can install Pow in the normal way&#8230;
<code>curl get.pow.cx | sh</code> <a href="https://github.com/37signals/pow/wiki/Installation">from Pow installation docs</a></li>
<li>Pow is now installed. <strong>Note</strong> if you have already installed Pow removing it will not affect any of your settings, so don&#8217;t be afraid of losing work if you need to <a href="http://pow.cx/manual.html#section_1.2" title="Uninstalling Pow">uninstall</a>.</li>
</ul>


<h3>Configuring &#8216;Pow&#8217; as a host on MAMP Pro</h3>

<ul>
<li>Open up MAMP Pro and go to Hosts.</li>
<li>Add a new host, name it Pow (name not important, nor is the disc location)</li>
<li>Click the &#8216;Advanced&#8217; button and enter the following details into &#8216;Customized Virtual Host General Settings&#8217;</li>
</ul>


<figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
<span class='line-number'>2</span>
<span class='line-number'>3</span>
<span class='line-number'>4</span>
<span class='line-number'>5</span>
<span class='line-number'>6</span>
</pre></td><td class='code'><pre><code class=''><span class='line'>ServerName pow
</span><span class='line'>  ServerAlias *.dev
</span><span class='line'>
</span><span class='line'>  ProxyPass / http://localhost:20559/
</span><span class='line'>  ProxyPassReverse / http://localhost:20559/
</span><span class='line'>  ProxyPreserveHost On</span></code></pre></td></tr></table></div></figure>


<ul>
<li>Now hit Apply which will update your config and restart the server.</li>
<li>Once restarted you should have MAMP Pro and Pow sharing nicely.</li>
</ul>


<p>The settings are basically directing all requests for urls that end in <code>.dev</code> directly to the port that Pow is listening on. Now you can use them both without having to make any further configuration changes. Just remember not to name any of your MAMP based sites with <code>.dev</code> at the end, because that won&#8217;t end well.</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Redirects, Octopress and Heroku]]></title>
    <link href="http://adamwiggall.com/blog/2012/01/05/redirects-octopress-and-heroku/"/>
    <updated>2012-01-05T22:53:00-05:00</updated>
    <id>http://adamwiggall.com/blog/2012/01/05/redirects-octopress-and-heroku</id>
    <content type="html"><![CDATA[<p>If you change the technology that your website is built on there is a good chance that you will want or need to re-factor during the transition. If you change the URL structure then it&#8217;s prudent to make sure that the old URLs get mapped to the new.</p>

<p>This post details how I achieved that moving from a PHP/Apache based <a href="http://expressionengine.com">ExpressionEngine</a> install, to <a href="http://octopress.org">Octopress</a> running on <a href="http://nginx.org/">nginx</a>, hosted at <a href="http://www.heroku.com/">Heroku</a>.</p>

<!-- more -->


<p><strong>An admission to start with</strong>, I&#8217;ve been using Apache since I got started on the web, the first hour (or so) of trouble-shooting a mod_rewrite issue on a non apache based server has been written off as one of those mistakes I won&#8217;t make again. <em>Hopefully</em>.</p>

<h3>301 Redirects</h3>

<p>I decided to use the Octopress default url structure of <em>example.com/blog/yyyy/mm/dd/post-title</em> which differed from the structure that I had in place on my old blog of <em>example.com/weblog/entry/post_title</em>. To ensure that Google and my old readers were still able to find the posts they have crawled, indexed and bookmarked I had to put a redirect in place telling users that the url for the resource they were requesting had changed permanently.</p>

<p>Tons of googling left me empty handed until I came across <a href="http://www.scottw.com/octopress-customizations">this post by Scott Watermasysk</a> talking about his Octopress customizations. Scott gives a high level view of his changes and invites people to check out his <a href="https://github.com/scottwater/scottw.com">full source code on Github</a>.</p>

<h3>Using rack-rewrite to create redirects</h3>

<p>In essence we can handle the redirect in the rack up file <code>config.ru</code> through a gem called <a href="https://github.com/jtrupiano/rack-rewrite">rack-rewrite</a>. Rack-rewrite is a gem that is&#8230;</p>

<blockquote><p>a rack middleware for defining and applying rewrite rules. In many cases you can get away with rack-rewrite instead of writing Apache mod_rewrite rules</p></blockquote>


<p>That&#8217;s good, because we can&#8217;t use Apache, and the implementation is straightforward.</p>

<p>First off, edit you <code>Gemfile</code> to include <code>rack-rewrite</code> as shown in line 19.</p>

<figure class='code'><figcaption><span>Gemfile  </span></figcaption>
 <div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
<span class='line-number'>2</span>
<span class='line-number'>3</span>
<span class='line-number'>4</span>
<span class='line-number'>5</span>
<span class='line-number'>6</span>
<span class='line-number'>7</span>
<span class='line-number'>8</span>
<span class='line-number'>9</span>
<span class='line-number'>10</span>
<span class='line-number'>11</span>
<span class='line-number'>12</span>
<span class='line-number'>13</span>
<span class='line-number'>14</span>
<span class='line-number'>15</span>
<span class='line-number'>16</span>
<span class='line-number'>17</span>
<span class='line-number'>18</span>
<span class='line-number'>19</span>
</pre></td><td class='code'><pre><code class='ruby'><span class='line'><span class="n">source</span> <span class="s2">&quot;http://rubygems.org&quot;</span>
</span><span class='line'>
</span><span class='line'><span class="n">group</span> <span class="ss">:development</span> <span class="k">do</span>
</span><span class='line'>  <span class="n">gem</span> <span class="s1">&#39;rake&#39;</span>
</span><span class='line'>  <span class="n">gem</span> <span class="s1">&#39;rack&#39;</span>
</span><span class='line'>  <span class="n">gem</span> <span class="s1">&#39;jekyll&#39;</span>
</span><span class='line'>  <span class="n">gem</span> <span class="s1">&#39;rdiscount&#39;</span>
</span><span class='line'>  <span class="n">gem</span> <span class="s1">&#39;pygments.rb&#39;</span>
</span><span class='line'>  <span class="n">gem</span> <span class="s1">&#39;RedCloth&#39;</span>
</span><span class='line'>  <span class="n">gem</span> <span class="s1">&#39;haml&#39;</span><span class="p">,</span> <span class="s1">&#39;&gt;= 3.1&#39;</span>
</span><span class='line'>  <span class="n">gem</span> <span class="s1">&#39;compass&#39;</span><span class="p">,</span> <span class="s1">&#39;&gt;= 0.11&#39;</span>
</span><span class='line'>  <span class="n">gem</span> <span class="s1">&#39;rubypants&#39;</span>
</span><span class='line'>  <span class="n">gem</span> <span class="s1">&#39;rb-fsevent&#39;</span>
</span><span class='line'>  <span class="n">gem</span> <span class="s1">&#39;stringex&#39;</span>
</span><span class='line'>  <span class="n">gem</span> <span class="s1">&#39;liquid&#39;</span><span class="p">,</span> <span class="s1">&#39;2.2.2&#39;</span>
</span><span class='line'><span class="k">end</span>
</span><span class='line'>
</span><span class='line'><span class="n">gem</span> <span class="s1">&#39;sinatra&#39;</span><span class="p">,</span> <span class="s1">&#39;1.2.6&#39;</span>
</span><span class='line'><span class="n">gem</span> <span class="s1">&#39;rack-rewrite&#39;</span>
</span></code></pre></td></tr></table></div></figure>


<p>Now you can make your edits to the <code>config.ru</code> file to insert your redirects.</p>

<figure class='code'><figcaption><span>config.ru  </span></figcaption>
 <div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
<span class='line-number'>2</span>
<span class='line-number'>3</span>
<span class='line-number'>4</span>
<span class='line-number'>5</span>
<span class='line-number'>6</span>
<span class='line-number'>7</span>
<span class='line-number'>8</span>
<span class='line-number'>9</span>
<span class='line-number'>10</span>
<span class='line-number'>11</span>
<span class='line-number'>12</span>
<span class='line-number'>13</span>
<span class='line-number'>14</span>
<span class='line-number'>15</span>
<span class='line-number'>16</span>
<span class='line-number'>17</span>
<span class='line-number'>18</span>
<span class='line-number'>19</span>
<span class='line-number'>20</span>
<span class='line-number'>21</span>
<span class='line-number'>22</span>
<span class='line-number'>23</span>
<span class='line-number'>24</span>
<span class='line-number'>25</span>
<span class='line-number'>26</span>
<span class='line-number'>27</span>
<span class='line-number'>28</span>
<span class='line-number'>29</span>
<span class='line-number'>30</span>
</pre></td><td class='code'><pre><code class='ruby'><span class='line'><span class="nb">require</span> <span class="s1">&#39;bundler/setup&#39;</span>
</span><span class='line'><span class="nb">require</span> <span class="s1">&#39;sinatra/base&#39;</span>
</span><span class='line'><span class="nb">require</span> <span class="s1">&#39;rack-rewrite&#39;</span>
</span><span class='line'>
</span><span class='line'><span class="c1"># The project root directory</span>
</span><span class='line'><span class="vg">$root</span> <span class="o">=</span> <span class="o">::</span><span class="no">File</span><span class="o">.</span><span class="n">dirname</span><span class="p">(</span><span class="bp">__FILE__</span><span class="p">)</span>
</span><span class='line'>
</span><span class='line'><span class="n">use</span> <span class="no">Rack</span><span class="o">::</span><span class="no">Rewrite</span> <span class="k">do</span>
</span><span class='line'>  <span class="n">r301</span> <span class="sr">%r{^/weblog/entry/memorial_cup_2009/?$}</span><span class="p">,</span> <span class="s1">&#39;/blog/2009/05/27/memorial-cup-2009/&#39;</span>
</span><span class='line'><span class="k">end</span>
</span><span class='line'>
</span><span class='line'><span class="k">class</span> <span class="nc">SinatraStaticServer</span> <span class="o">&lt;</span> <span class="no">Sinatra</span><span class="o">::</span><span class="no">Base</span>
</span><span class='line'>
</span><span class='line'><span class="n">get</span><span class="p">(</span><span class="sr">/.+/</span><span class="p">)</span> <span class="k">do</span>
</span><span class='line'>  <span class="n">send_sinatra_file</span><span class="p">(</span><span class="n">request</span><span class="o">.</span><span class="n">path</span><span class="p">)</span> <span class="p">{</span><span class="mi">404</span><span class="p">}</span>
</span><span class='line'><span class="k">end</span>
</span><span class='line'>
</span><span class='line'><span class="n">not_found</span> <span class="k">do</span>
</span><span class='line'>  <span class="n">send_sinatra_file</span><span class="p">(</span><span class="s1">&#39;404.html&#39;</span><span class="p">)</span> <span class="p">{</span><span class="s2">&quot;Sorry, I cannot find </span><span class="si">#{</span><span class="n">request</span><span class="o">.</span><span class="n">path</span><span class="si">}</span><span class="s2">&quot;</span><span class="p">}</span>
</span><span class='line'><span class="k">end</span>
</span><span class='line'>
</span><span class='line'><span class="k">def</span> <span class="nf">send_sinatra_file</span><span class="p">(</span><span class="n">path</span><span class="p">,</span> <span class="o">&amp;</span><span class="n">missing_file_block</span><span class="p">)</span>
</span><span class='line'>  <span class="n">file_path</span> <span class="o">=</span> <span class="no">File</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="no">File</span><span class="o">.</span><span class="n">dirname</span><span class="p">(</span><span class="bp">__FILE__</span><span class="p">),</span> <span class="s1">&#39;public&#39;</span><span class="p">,</span>  <span class="n">path</span><span class="p">)</span>
</span><span class='line'>  <span class="n">file_path</span> <span class="o">=</span> <span class="no">File</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="n">file_path</span><span class="p">,</span> <span class="s1">&#39;index.html&#39;</span><span class="p">)</span> <span class="k">unless</span> <span class="n">file_path</span> <span class="o">=~</span> <span class="sr">/\.[a-z]+$/i</span>
</span><span class='line'>  <span class="no">File</span><span class="o">.</span><span class="n">exist?</span><span class="p">(</span><span class="n">file_path</span><span class="p">)</span> <span class="p">?</span> <span class="n">send_file</span><span class="p">(</span><span class="n">file_path</span><span class="p">)</span> <span class="p">:</span> <span class="n">missing_file_block</span><span class="o">.</span><span class="n">call</span>
</span><span class='line'><span class="k">end</span>
</span><span class='line'>
</span><span class='line'><span class="k">end</span>
</span><span class='line'>
</span><span class='line'><span class="n">run</span> <span class="no">SinatraStaticServer</span>
</span></code></pre></td></tr></table></div></figure>


<p>The only changes here to the current stock Octopress are line 3 to require <code>rack-rewrite</code>, and then the magic happens in the <code>use Rack::Rewrite</code> block (lines 8, 9 &amp; 10 above)&#8230;</p>

<figure class='code'> <div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
<span class='line-number'>2</span>
<span class='line-number'>3</span>
</pre></td><td class='code'><pre><code class='ruby'><span class='line'><span class="n">use</span> <span class="no">Rack</span><span class="o">::</span><span class="no">Rewrite</span> <span class="k">do</span>
</span><span class='line'>  <span class="n">r301</span> <span class="sr">%r{^/weblog/entry/memorial_cup_2009/?$}</span><span class="p">,</span> <span class="s1">&#39;/blog/2009/05/27/memorial-cup-2009/&#39;</span>
</span><span class='line'><span class="k">end</span>
</span></code></pre></td></tr></table></div></figure>


<p>Here we are returning a 301 status code <code>r301</code> if the regular expression we pass <code>%r{^/weblog/entry/memorial_cup_2009/?$}</code> matches the request. Along with the code we instruct the user agent to head to the new url <code>'/blog/2009/05/27/memorial-cup-2009/'</code>.</p>

<p>You can add as many rules as you need, and you can be more adventurous with your pattern matching if need be.</p>

<p>Then you need to jump to the root of your project on the command line and <code>bundle</code> for the gem to be installed and ready to go. Now <code>rake generate</code> your site and test. All being well it won&#8217;t be long before your new indexes are updated for all concerned.</p>

<p><strong>Note</strong> Subsequent edits made to <code>config.ru</code> may not take if you re-generate your site. I had to restart the server for edits to take.</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Blogging with Octopress]]></title>
    <link href="http://adamwiggall.com/blog/2012/01/04/moving-to-octopress/"/>
    <updated>2012-01-04T14:10:00-05:00</updated>
    <id>http://adamwiggall.com/blog/2012/01/04/moving-to-octopress</id>
    <content type="html"><![CDATA[<p>One thing I have been promising myself recently is more blogging, mainly about code and my renewed passion for it. I&#8217;ve also been looking to simplify as much as I can in my life, so, why not tackle both at the same time?</p>

<p>So, more blogging, simply.</p>

<!-- more -->


<h3>Branching Out</h3>

<p>I recently built my first commercial application in <a href="http://rubyonrails.org/" title="The main Ruby on Rails site">Ruby on Rails</a> under the expert guiding hand of <a href="https://twitter.com/#!/stevenbristol" title="Twitter Profile">Steven Bristol</a> from <a href="http://lesseverything.com" title="His company site">LessEverything</a>. Using Rails, and more so Ruby has been a real eye opener to alternative ways to build, test and deploy to the web, and I have loved every minute of it.</p>

<p>So, resisting the temptation to re-invent the wheel and build my own blogging tool in Rails (and understanding that it is a very big hammer for some really small nails) I looked into some alternatives.</p>

<h3>Start spreading the news</h3>

<p>My initial research led me to <a href="http://www.sinatrarb.com/" title="Song pun intended">Sinatra</a> as a very suitable candidate. Lightweight, built in Ruby and some neat ways of avoiding the need for a database and lots of other unnecessary overhead. A section of <a href="http://oreilly.com/catalog/0636920019664/" title="Sinatra Up and Running - O'Reilly Media">a great book</a> I read covered that very topic, so I was almost ready to dive into that when I found <a href="http://octopress.org/" title="A blogging framework for hackers">Octopress</a>, &#8220;A blogging framework for hackers&#8221;.</p>

<p>An hour or two of research and then the discovery of <a href="https://twitter.com/#!/jcroft/status/154409445428969474">this tweet</a> was all I needed.</p>

<h3>Deployment in 18 minutes</h3>

<p>The time it took me to clone the <a href="https://github.com/imathis/octopress" title="Github Link">repo</a>, put some settings into a <a href="http://www.yaml.org/" title="Official YAML site">YAML</a> file and deploy to this site was literally 18 minutes. That includes getting a local version of the site running (using the excellent <a href="http://pow.cx" title="Rack server for Mac OS X">Pow</a>).</p>

<p>I know there is still lots to be done, and I have to re-route the DNS to make it all official, but come on, 18 minutes, and I barely have a &#8216;hacker&#8217; badge.</p>

<h3>Wrapped in tenticles</h3>

<p>So here I am, writing a post using <a href="http://daringfireball.net/projects/markdown/" title="Daring Fireball">Markdown</a> in <a href="http://code.google.com/p/macvim/" title="MacVim for the Mac">MacVim</a>, checking my work on localhost through a <a href="http://rack.rubyforge.org/">Rack</a> server in a version controlled application which will serve my site through my account at <a href="http://www.heroku.com/">Heroku</a>.</p>

<p>It feels very liberating, and whilst it may not necessarily sound simple, it feels like exactly the <em>right amount of tool for the job</em>.</p>

<p>I&#8217;ll keep you posted.</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Reshooting Wedding Photos]]></title>
    <link href="http://adamwiggall.com/blog/2009/10/23/reshooting-wedding-photos/"/>
    <updated>2009-10-23T16:22:00-04:00</updated>
    <id>http://adamwiggall.com/blog/2009/10/23/reshooting-wedding-photos</id>
    <content type="html"><![CDATA[<p><img class="_c" src="http://adamwiggall.com/images/posts/wedding_reshoot_002-600x400.jpg" width="600" height="368" title="&#34;The Bride & Groom&#34;" alt="&#34;The Bride & Groom&#34;"></p>

<p>I was recently approached by Caitlin who was disappointed with how her wedding photographs had turned out. The shots that had been taken on the day were okay, but there was nothing there that really made her feel special, not one shot that she and her husband wanted to hang on the wall. Could I take some for them and give them something to remember?</p>

<!-- more -->


<p>The answer was definitely yes. The opportunity to take shots of a real bride and groom away from the stress and strain of the wedding day would be a great way to spend a Sunday evening. No pressure, no rush to get to the meal, no drunken uncles or narcissistic aunts to do the &#8216;artistic direction&#8217;. Oh and the ability to call it all off if the weather wasn&#8217;t exactly as we wanted. What more could I want?</p>

<p>At this point I want to say how much I admire people who dare to make a living from wedding photography (especially if they aren&#8217;t that good with a camera). It is a stressful and tough place to take photos, and you get very limited opportunities to get the key shots. However, most wedding photographers charge so much money that the consumer believes that the tough environment has been evaluated and that the photographer can thrive within it. This too commonly is not the case, but this isn&#8217;t about bashing working professionals.</p>

<p><img class="_c" src="http://adamwiggall.com/images/posts/wedding_reshoot_004-600x400.jpg" width="600" height="368" title="&#34;The Bride & Groom&#34;" alt="&#34;The Bride & Groom&#34;"></p>

<p>So, I get a stress free situation, with perfect weather and if I may, an attractive couple in front of the lens. I&#8217;m heading for drama on this one, just waiting for the sun to lower behind the rolling fairways of MetroWest Golf Club, then, we&#8217;re going to get some shots.</p>

<p><img class="_c" src="http://adamwiggall.com/images/posts/wedding_reshoot_001-600x400.jpg" width="600" height="368" title="&#34;The Bride & Groom&#34;" alt="&#34;The Bride & Groom&#34;"></p>

<p>They were comfortable in front of the lens almost immediately, and once we had a few warm up shots done we all started to get into our swing. Thanks as well to Kelly (lights) and Jeff (fluffer) for coming down and helping out.</p>

<p><img class="_c" src="http://adamwiggall.com/images/posts/wedding_reshoot_003-600x400.jpg" width="600" height="368" title="&#34;The Bride & Groom&#34;" alt="&#34;The Bride & Groom&#34;"></p>

<p>The sky turned a fantastic shade as it fell down to the horizon and things got really pretty.</p>

<p><img class="_c" src="http://adamwiggall.com/images/posts/wedding_reshoot_005-600x400.jpg" width="600" height="368" title="&#34;The Bride & Groom&#34;" alt="&#34;The Bride & Groom&#34;"></p>

<p>And then when it was pretty much dark, I managed to get my favorite shot of the day.</p>

<p><img class="_c" src="http://adamwiggall.com/images/posts/wedding_reshoot_006-600x400.jpg" width="600" height="368" title="&#34;The Bride & Groom&#34;" alt="&#34;The Bride & Groom&#34;"></p>

<p>Caitlin and Kristien love the shots, and we are now going through which ones they want for prints. They finally have something they can proudly hang on their wall.</p>

<p>If there is a moral to this tale I would say that it is extremely tough to take really high quality shots on a wedding day, the photographers that are truly capable, are so sought after that their price puts them out of reach of most couples. If you are talking to a wedding photographer ask them whether they can do a separate shoot like this, or ask me.</p>

<p>If you were disappointed with your wedding photos, and you want to put that right, contact me and we&#8217;ll go out on a beautiful day and put it right.</p>

<p>Thanks Caitlin and Kristien, you were fantastic to be with for the day!</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Review of Zack Arias One Light Workshop]]></title>
    <link href="http://adamwiggall.com/blog/2009/07/13/review-of-zack-arias-one-light-workshop/"/>
    <updated>2009-07-13T14:00:00-04:00</updated>
    <id>http://adamwiggall.com/blog/2009/07/13/review-of-zack-arias-one-light-workshop</id>
    <content type="html"><![CDATA[<p><img class="_c" src="http://adamwiggall.com/images/posts/julia_one_light_03-600x400.jpg" width="600" height="400" title="&#34;Julia&#34;" alt="&#34;Julia&#34;"></p>

<p>Last week I drove to Decatur, Georgia to attend the One Light Workshop run by highly talented photographer Zack Arias. The course is an intensive one-day event that sets out to teach students solid techniques for using (one) off camera flash. I have been blown away by Zack&#8217;s work, and this was a chance to get face to face with a unique talent, how could I have been anywhere else?</p>

<p>The course is aimed at photographers that have at least an intermediate knowledge of the technical aspects of the medium, and want to expand their abilities by having options (more on that later).</p>

<!-- more -->


<p>The night before the course there was a mixer for students and local photographers. Zack invited some friends from the photography world along including Mark Climie, a wedding photographer we can all look up to. We all had a few beers and got chatting about the excitement we all shared for the following day.</p>

<h3>SO, WHAT&#8217;S COVERED?</h3>

<ul>
<li>Equipment</li>
<li>Exposure Control</li>
<li>Modifiers</li>
<li>Shooting</li>
<li>Post Production</li>
</ul>


<h3>EQUIPMENT</h3>

<p>Zack&#8217;s been around the photography world for 13 years, and failed miserably once. He uses this failure as a benchmark and sets out to help others by being candid about where he went wrong. And for Zack he failed due to too much GAS (Gear Acquisition Syndrome). He ran up debt &#8211; which put strain on his marriage, which put strain on his family, which put strain on his work, you get the picture&#8230; (it&#8217;s refreshing to hear someone experiencing such success being so forthright and humble).</p>

<p>So, he talked about using the bare minimum needed to get the job done (hence the name, One Light), and how to change the mentality that &#8216;just one more piece of equipment&#8217; will make all of the difference. He encourages students to buy just one type of modifier (60&#8221; shoot thru umbrella by the way) and work with it until they know it inside out. Learn to use it in many different ways and know the capabilities and limits of it before even thinking about anything else. Same goes for lenses and camera bodies. Just because something else was released after you bought your camera doesn&#8217;t make it obsolete. All really wise words, and I had the feeling that most of us there (12 students) had already been dropping coin unnecessarily due to bad GAS, so lesson learnt.</p>

<p>So, a camera with a Pocket Wizard (or similar) on it, a flash (TTL not required, it&#8217;s all manual here) again with a Pocket Wizard, a stand, an umbrella and off you go. Zack then showed us a few shots with that very set up which would turn most photographic &#8216;pros&#8217; into sobbing wrecks. Total cost of lighting around $249 not including the Wizards (alternatives are available) So, we know what the gear needs to be, now what do we do with it?</p>

<h3>EXPOSURE CONTROL</h3>

<p>This is it, this is the reason that most photographers shy away from flash, the tiger in the bag, don&#8217;t get it out it&#8217;s going to bite you, argh, the end of the world is nigh. Well, Zack will tell you otherwise, and then he&#8217;ll tell you that you need to know that only five things influence the light.</p>

<ol>
<li>Shutter Speed</li>
<li>Aperture</li>
<li>Flash Power</li>
<li>Flash to Subject Distance</li>
<li>ISO</li>
</ol>


<p>That&#8217;s it, nothing more, nothing less. If you can remember five things (in roughly the order they are above) then you are well on your way to international recognition and unlimited wealth. Probably. Possibly. Not.
I won&#8217;t go into each of them here, but the premise is simple. It&#8217;s a five way &#8216;teeter-totter&#8217; (Zack&#8217;s words) between them (and ISO not so much normally) to get the results that you need. Keep calm, think slowly through the list, know what is being effected by what, change the appropriate setting and try again.
As Zack points out, we aren&#8217;t curing cancer with our cameras, so when it goes wrong we need to get things in perspective. Pause, think, know your equipment, then get back to it.</p>

<h3>MODIFIERS</h3>

<p>These are the things that change the light, whether it be a soft-box, a grid, an umbrella or a beauty dish (not covered on One Light, but possibly in One Light II?) none are better than the others, but all are going to get you a different result and are suited to certain circumstances.</p>

<p>Want to light your model with a soft silky blanket of light wrapped around her features? Go for the softbox, make it the biggest you&#8217;ve got and get it as close as you dare. Need to chisel out some features on the next Rap Supastar? Get the grid out, get it up above and watch the stadiums fill.</p>

<p>Zack then shows ways in which the modifiers can be adapted to make a big difference, I won&#8217;t reveal them here, but you won&#8217;t be finding them in any traditional lighting book at the mall.</p>

<h3>SHOOTING</h3>

<p>Okay, so we have been sitting and listening for a couple of hours at this point, raising questions, getting great answers, having a laugh and generally feeling good about life. Now we need to step up, get some shots taken and put the theory into practice.</p>

<p>Two models were booked for the day Julia and John. Both had the patience of saints, and both needed them.</p>

<p>Zack walked us through a few scenarios, showing us how he would approach the shot, positioning of the light, flash power, aperture, shutter speed etc then we were up.</p>

<p>Split into two groups of six and working two different scenarios. It took us all a couple of goes to get comfortable (eleven of your peers and a photographic genius in the room gets the pulse racing) but once we settled in we got it all going in the right direction. All of this was happening in Zack&#8217;s studio, a controlled environment, a good starting point.</p>

<p>A quick break for supper then we hit the road, heading out to a favorite spot of Zack&#8217;s. And this is where I think we all learnt the most.</p>

<p>We were shooting as the sun fell, bringing drama and depth to our shots. And this is why shooting with off camera flash gives you options. I have included a shot I took to demonstrate what the scene looked like without lighting, and then a shot taken ten minutes later with lighting that has received only minor exposure alterations in Lightroom. There is no way to get the scene to look like that without flash, and no way with it stuck on the top of your camera.
So if a photographer tells you they only shoot &#8216;available light&#8217;, tell them they need to have a light in their bag available (or just book me).</p>

<p><img class="_c" src="http://adamwiggall.com/images/posts/options_with_light-600x300.jpg" width="600" height="400" title="&#34;Lighting Options&#34;" alt="&#34;Lighting Options&#34;"></p>

<p>Image 1 shows how the evening was looking, image 2 shows you what difference lighting makes (ten minutes after image 1 was taken), image three is twenty minutes later still.</p>

<p>With the sun setting time was limited, twelve photographers all looking for a piece of the action, but we rallied together sharing settings, holding equipment, to make sure we all had memorable shots to go home with.</p>

<p>We then returned to the studio to discuss the shoot, eat pizza and prepare for a &#8216;freestyle&#8217; session where we wouldn&#8217;t have Zack setting up.</p>

<p>In groups of four we spread out inside and out to work our own particular vision of magic. This again was invaluable, interacting with peers and getting a fresh perspective on the shot.</p>

<h3>3 A.M.</h3>

<p>That&#8217;s the one in the morning that I haven&#8217;t seen since my early thirties. But that was the time we finished, because Zack wanted to answer every question anyone had.</p>

<p>This summarizes his approach perfectly; be honest and give everything you can, even at three in the morning.</p>

<h3>SUMMARY</h3>

<p>I attended this workshop having already purchased Zack&#8217;s DVD about the very same subject. I had used some techniques I had learnt from the DVD before I went to Georgia. Somewhere in my mind I was concerned that the course would be a live version of the DVD. I needn&#8217;t have, yes there was material from the DVD in the course, yes there were things I had covered and knew, but in no way did I see this as an issue.</p>

<p>As Zack says on the course, &#8220;you will be learning about light for the rest of your life&#8221;, I make him right on that.</p>

<p>I encourage anyone who is serious about becoming a better photographer to attend this course, it will separate you from your competition and help you give your clients a greater choice and something very special. You will however have to wait, as all of this year&#8217;s courses are fully booked with a line of people on the reserve list.</p>

<p>In the meantime you can follow Zack on Twitter, read his blog and get into his way of thinking, you won&#8217;t regret it.</p>

<h3>THANKS</h3>

<p>My heartfelt thanks go out to Zack for sharing his knowledge, but I would also like to thank his wife Meghan, who is without doubt, his rock. Also a big shout out to Erik, Zack&#8217;s studio manager for doing the hard work behind the scenes. And also to Hawke Danger Arias for showing me what I have to look forward to in three weeks time. My love to you all.</p>

<p>I leave you with three of my favorite images from the day.</p>

<p><img class="_c" src="http://adamwiggall.com/images/posts/julia_one_light_01-600x400.jpg" width="600" height="400" title="&#34;Julia&#34;" alt="&#34;Julia&#34;"></p>

<p>Julia, 28&#8221; softbox camera left.</p>

<p><img class="_c" src="http://adamwiggall.com/images/posts/john_one_light_01-600x400.jpg" width="600" height="400" title="&#34;John&#34;" alt="&#34;John&#34;"></p>

<p>John in the car lot at 2.00 a.m. 28&#8221; softbox, high, camera right.</p>

<p><img class="_c" src="http://adamwiggall.com/images/posts/julia_one_light_02-600x400.jpg" width="600" height="400" title="&#34;Julia&#34;" alt="&#34;Julia&#34;"></p>

<p>Julia, softbox again. Note: this is a hand held 1.3 second exposure focused using a flashlight (5D MKII woes). No color alteration</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Time for Photography starting with Ted Murphy]]></title>
    <link href="http://adamwiggall.com/blog/2009/06/23/time-for-photography-starting-with-ted-murphy/"/>
    <updated>2009-06-23T13:24:00-04:00</updated>
    <id>http://adamwiggall.com/blog/2009/06/23/time-for-photography-starting-with-ted-murphy</id>
    <content type="html"><![CDATA[<p><img class="_c" src="http://adamwiggall.com/images/posts/ted_murphy-001-600x368.jpg" width="600" height="368"></p>

<p>When this site was originally put together it was purely for personal posts. That was three years ago, and during that time my life has changed.</p>

<!-- more -->


<p>I am now earning a living on a freelance basis, developing websites and taking photographs. As such, this site will be changing over the next month to display my photographic portfolio. If you are here because of my photography, I welcome you, and will give you more to look at very soon. I start with one of my biggest advocates, <a href="http://ted.me/">Ted Murphy</a>.</p>

<p>Ted&#8217;s a great guy to have to shoot, he&#8217;s fearless in front of the lens. We had a really fun afternoon in the Orlando sun, making images for Ted&#8217;s new portfolio.</p>

<p>Ted has just published <a href="http://www.ted.me/image/">this blog post</a> detailing why he believes that using a professional photographer is critical to one&#8217;s image. The post backs up <a href="http://sethgodin.typepad.com/seths_blog/2009/04/the-power-of-a-tiny-picture-how-to-improve-your-social-network-brand.html">what was said</a> earlier this year by veteran blogger and marketing expert <a href="http://sethgodin.typepad.com/">Seth Godin</a>.</p>

<p>In short, both are saying that if you are serious about your image, then a professional photographer should be the one taking your photo. If you want to hire me to do that for you, please get in touch.</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Memorial Cup 2009]]></title>
    <link href="http://adamwiggall.com/blog/2009/05/27/memorial-cup-2009/"/>
    <updated>2009-05-27T12:13:00-04:00</updated>
    <id>http://adamwiggall.com/blog/2009/05/27/memorial-cup-2009</id>
    <content type="html"><![CDATA[<p><img class="_c" src="http://adamwiggall.com/images/posts/memorial_cup-001-600x368.jpg" width="600" height="368" title="&#34;A minute's silence&#34;" alt="&#34;A minute's silence&#34;"></p>

<p>On Sunday May 24th 2009, the footballing family of St. Andrews Tavern turned out to compete in the 2009 Memorial Cup.</p>

<!-- more -->


<p>And after an early strike from our Gaz (not pictured due to the ferocity and promptness of the goal) the Americans slowly carved out a victory.</p>

<p>Following the game an unusually large amount of beer was consumed at the tavern and many happy people went home with great prizes donated by friends and family.</p>

<p>To see the photos from the game, visit the Memorial Cup 2009 photos on my flickr page. Eric, Chris, Jeremy. We miss you so much, and we would have loved for you to be there on Sunday playing alongside us.</p>

<p>If you have memories that you would like to share, please leave them in the comments below.</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Jeremy Bullas Rest In Peace]]></title>
    <link href="http://adamwiggall.com/blog/2009/04/21/jeremy-bullas-rest-in-peace/"/>
    <updated>2009-04-21T10:01:00-04:00</updated>
    <id>http://adamwiggall.com/blog/2009/04/21/jeremy-bullas-rest-in-peace</id>
    <content type="html"><![CDATA[<p><img class="_c" src="http://adamwiggall.com/images/posts/jeremy_bullas-001-600x368.jpg" width="600" height="368" title="&#34;Portrait of Jeremy&#34;" alt="&#34;Portrait of Jeremy&#34;"></p>

<p>Tragically on Sunday 19th April 2009 Jeremy lost his life, suffering a heart attack after a game of soccer at Lake Sylvan, Orlando Florida. He leaves behind the love of his life Mary Jo, and three children, Alix, Sophie and Jack.</p>

<p>I have been very blessed to be able to call Jeremy a friend for the past few years, a blessing I know that many people here are glad to have shared.</p>

<!-- more -->


<p>When I first met Jeremy it was immediately apparent that we shared many of the same experiences as younger men, including football, music and where we had grown up to name but a few.</p>

<p>We spent lots of time talking about the olden days of Friday nights out after work, going to the match on a Saturday-or trying to catch the results in the window of Reddifusion when the lads were away, playing sports in the snow and rain, a curry on the way home then falling asleep on the night service; that type of thing. The conversations were always alive with characters and color, vivid memories from a man who had really enjoyed and made the most of growing up with great family and great friends.  I always cherished the chance to talk with Jeremy as did a lot of you here today, and it is a shared loss that we won&#8217;t have that chance again.</p>

<p>But we do have the opportunity to take heart from the memories of those times, times that are now more precious than we may have realized, and forever reserve a place in our hearts for the smile, warm welcome, intelligent insight, wit and banter that made Jeremy so special.  It would be remiss of me to stand here without talking about Jeremy the footballer, and whilst I acknowledge he was a first class cricketer, and raconteur, I know his first love was kicking a pigs bladder around (but enough of his run-ins with the police in Manchester).</p>

<p>I have a photo of Jeremy playing in the Memorial Cup last year heading the ball, it&#8217;s kind of blurry and he is on his tip toes with the opposition two or three feet in the air all around him, and although he knew it would never make the cover of Four-Four-Two, he was proud of that photo, proud that he had won the ball; beaten if only for a instant, men half his age, and despite any question marks over his aerial prowess, Jeremy knew that for that moment he was on top. Memories of Terry Butcher with his head in bandages or Stuart Pearce putting the penalty demon to bed against Spain in &#8216;96 flashing through one&#8217;s mind, all when the boy from Staffordshire made that little patch of Apopka his own. I was so pleased that it brought him joy, he deserved it. It&#8217;s therefore so very bittersweet that a man who loved the beautiful game so much, would spend his last hours on the pitch.</p>

<p>And a man with a simpler approach to the game couldn&#8217;t be found. In Jeremy&#8217;s words and I quote, &#8216;Look for the people wearing the same colored shirts as you, look for the one who is nearest and has space around him, give him the ball&#8217;. After a few pints it became apparent that there was actually more to it than that, and that Robson and Venebles missed out by favoring Gascoigne to boss the English midfield over the &#8216;Hednesford Harrier&#8217;, but the sentiment was always clear, do the simple things well and everything else will take care of itself.</p>

<p>And what is the simplest thing? Love? Love for family, love for friends. Those of us who knew him best saw that love had taken him to a new level in the past couple of years. A renewed and invigorated Jeremy basking in the relationship that he and Mary-Jo had created, being marveled by Jack, Sophie and Alix on a daily basis. Like the proverbial &#8216;duck to water&#8217; Jeremy had fully embraced all of the responsibilities and duties required of him to be involved so closely with such a wonderful family. Discussions of the weekend&#8217;s games took up a lot less of our regular lunches, the talk was more about the future than the past, the planned vacations, the homework, the growing pains and best of all, the opportunities. I think that Jeremy finally felt complete, taking pleasure in shaping the new pieces of his puzzle; making it all fit.</p>

<p>Mary-Jo, Jack, Sophie, Alix, he adored you all, you opened up a very special place for him and I know he would like me to thank you for that on his behalf. Again it so bittersweet.  We are all going to share memories today, and we all feel a common sense of loss and confusion over why he was taken away. The pain of the loss will be with us for some time, but it will subside, the joy that Jeremy brought to us all will wash it away. So as I eluded to earlier; let&#8217;s hang on to that joy and carry it with us, keeping the memory, the very soul of a good friend alive long after today, he would&#8217;ve done the same for any one of us.  Cheers Jez.</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Rus and Claire's Wedding]]></title>
    <link href="http://adamwiggall.com/blog/2008/11/17/rus-and-claires-wedding/"/>
    <updated>2008-11-17T12:17:00-05:00</updated>
    <id>http://adamwiggall.com/blog/2008/11/17/rus-and-claires-wedding</id>
    <content type="html"><![CDATA[<p><img class="_c" src="http://adamwiggall.com/images/posts/rus_and_claire-001_1-600x368.jpg" width="600" height="368" title="&#34;Rus and Claire&#34;" alt="&#34;Rus and Claire&#34;"></p>

<p>Friends and Family gathered at the Maitland Art Center on November 14th 2008 at 5.00 p.m. to bear witness to the marriage of Claire Kohake and Rus Azar. I was there to take the photos (and have a drink).</p>

<!-- more -->


<p>Dave and Rosie were there to see the departure of their daughter, and the safe delivery to the hands of Rus, proudly watched by his parents Fred and Cheri.</p>

<p>The wonderful (as long as you are not trying to take photos) setting of the Maitland Art Center, candle lit for the proceedings, was a perfect backdrop for the nuptials. Sibling support was provided in the shape of Beth and Dave Jr for the Kohakes, and Ram for the Azars.</p>

<p>Then a smattering of beauties led by Jackie &#8220;Onassis&#8221; Hayter to ensure embarrassing stories could be retold at the excellent reception thrown later at the &#8216;K&#8217; Restaurant in College Park (thanks for the excellent service and food K).</p>

<p>Thank you Claire and Russ for furthering my photographic education, specifically the lessons on &#8216;How to Photograph in Complete Darkness&#8217; and &#8216;Shooting in a Ten Foot Wide Room Without Casting Shadows&#8217;.</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Bye Nan]]></title>
    <link href="http://adamwiggall.com/blog/2008/08/30/bye-nan/"/>
    <updated>2008-08-30T11:50:00-04:00</updated>
    <id>http://adamwiggall.com/blog/2008/08/30/bye-nan</id>
    <content type="html"><![CDATA[<p><img class="_c" src="http://adamwiggall.com/images/posts/nan-001-600x368.jpg" width="600" height="368" title="&#34;Nan at home&#34;" alt="&#34;Nan at home&#34;"></p>

<p>My dearest little nan has left us.</p>

<!-- more -->


<p>She is part of some of the earliest memories I possess, looking after my sister and me on a Friday evening whilst Mom and Dad worked, and the only person I knew with an outside toilet, in winter it was bitter out there, best to wait till we got home.</p>

<p>We are all going to miss Doris Mortiboy. Whether it will be the cheeky grin that spread across her face every time someone said a little swear word, or perhaps the automation of putting on the kettle whenever she heard a doorbell ring, there was so much to get attached to.</p>

<p>A lady from a working class background, a single mother for many years, and a hard worker, rarely did she have time to roll down her sleeves. She always found something to do, clean, move or boil (normally water). Even during her last years in care she would be a favorite, nursing staff eager to help her and listen out for the occasional cuss (followed of course, by the grin).</p>

<p>It was sad to see the body and mind slowly giving into age, but I don&#8217;t think I ever saw the spirit dampened. Her grandchildren, and great grandchildren always lit her up, it wasn&#8217;t difficult to put a smile on her face, and for me that was the reason she was so special.</p>

<p>So my little nan, I&#8217;m coming to say goodbye to you for the last time, it will be very tough and it will be very special. Just like you.</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Dave and Agata's Wedding]]></title>
    <link href="http://adamwiggall.com/blog/2007/09/29/dave-and-agatas-wedding/"/>
    <updated>2007-09-29T12:26:00-04:00</updated>
    <id>http://adamwiggall.com/blog/2007/09/29/dave-and-agatas-wedding</id>
    <content type="html"><![CDATA[<p><img class="_c" src="http://adamwiggall.com/images/posts/dna-001-600x368.jpg" width="600" height="368" title="&#34;The happy couple&#34;" alt="&#34;The happy couple&#34;"></p>

<p>On September 29th this year, we all went to Thornton Park to bear witness to the marriage of our good friends, Dave and Agata.</p>

<!-- more -->


<p>The venue was The Veranda in Thornton Park, and a fabulous day was had by all.
A wet start to the day didn&#8217;t seem to dampen anyone&#8217;s spirits as a who&#8217;s who of Central Florida&#8217;s finest gathered around the venue for what was billed as &#8220;Dave&#8217;s Luckiest Day Ever&#8221;.</p>

<p>A solid line-up of bridesmaids, Sami (head girl), Winnie &amp; Jen kept Agata sedated for much of the morning to ward of any &#8216;last minute thoughts of leaving the country&#8217;, whilst ensuring in traditional style that she didn&#8217;t lay eyes on David (reason obvious to all anyone who has seen him).</p>

<p>A more beautiful bride has yet to be seen. Tadek &amp; Marysia Paszkiewicz made the long ride from Poland (no doubt to try to change her mind) and were a pleasure to behold.</p>

<p>A very proud father and no guesses where Agata gets her looks from when you see her mother. Passers-by thought Series Seven of the Sopranos was being filmed when the Dell&#8217;Olio&#8217;s landed from the North-East. Most relieved no doubt, &#8216;Don&#8217; Dominic Dell&#8217;Olio (father of the groom) to ensure that little David (now confirmed as not the other way) could one day take over the family business without the whispering.</p>

<p>Alibis are always welcome, so Don Dom packed in Uncle Art and the crew to ensure it would stand up in court. Good work by Michael (best-man), Michael and Doug ensured that the groom arrived sober and clean shaven. Master of Ceremonies, Charlie &#8216;You&#8217;ll learn something today&#8217; Wilshire, led the sermon beautifully, not delving too far into astro-physics to loose too many of the gathered.</p>

<p>Once the formalities were over, an open-bar, a tent and a dance floor ensured that a good time was had by all. The rain didn&#8217;t get in the way of anyone&#8217;s fun, and just for good measure, when everyone had dried off, everyone got in the pool (fully clothed).</p>

<p>On behalf of everyone at the ceremony, Sage and I would like to thank all who helped along the way, but most of all to Dave and Agata for being such great hosts and wonderful friends. We hope that your marriage lasts through all of your years and we are proud to say that we are your friends.</p>

<p>Lots of Love, Adam and Sage xoxoxoxoxox</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Chris]]></title>
    <link href="http://adamwiggall.com/blog/2007/05/10/chris/"/>
    <updated>2007-05-10T11:43:00-04:00</updated>
    <id>http://adamwiggall.com/blog/2007/05/10/chris</id>
    <content type="html"><![CDATA[<h2>Christopher Paul Levitt</h2>

<p><img class="_c" src="http://adamwiggall.com/images/posts/chris_1-600x418.jpg" width="600" height="418" title="&#34;Chris at the football field&#34;" alt="&#34;Chris at the football field&#34;"></p>

<p>8/14/1977 — 5/6/2007, St. Andrews Tavern and Coed Football Team Mate. Rest in Peace.</p>

<p>Our world here in Orlando has been rocked this week by the very unexpected and wasteful taking of life.</p>

<!-- more -->


<p>We are all in mourning. Our thoughts and prayers go out to his family and friends during this difficult and painful time. He was, and will always be, one of the people you never forget. Many of us today are feeling emotions that are awash with shock, pain, hurt and sadness. Emotions that, in time, will be replaced with memories of a good friend and team mate.</p>

<p>Chris was a guy with character, a quick whit and a permanent smile. He always entertained with tales of his great adventures, of which there were many.</p>

<p>He will be sadly missed at the pub, and on the field, where he was always guaranteed to give 100% (and usually more!). Only one week ago he scored a cracker of a goal that he relived with us all many times, a goal that apparently would have ensured a trial for his beloved Leeds United.</p>

<p>And he was always there to back you up, whether on the pitch or elsewhere, we were always thankful for that. The whole St. Andrews Family of patrons, players, staff and friends mourn a great loss today, as do so many others who had the fortune to have Chris in their lives, rest in peace mate.</p>

<p>Please leave your thoughts, comments and anecdotes to our beloved and faithful team mate, friend and colleague. The one, and only, Chris Levitt.</p>
]]></content>
  </entry>
  
  <entry>
    <title type="html"><![CDATA[Hey Mom]]></title>
    <link href="http://adamwiggall.com/blog/2007/02/15/hey-mom/"/>
    <updated>2007-02-15T11:55:00-05:00</updated>
    <id>http://adamwiggall.com/blog/2007/02/15/hey-mom</id>
    <content type="html"><![CDATA[<p><img class="_c" src="http://adamwiggall.com/images/posts/mom_and_dad-001-600x368.jpg" width="600" height="368" title="&#34;Mom and Dad in Florida&#34;" alt="&#34;Mom and Dad in Florida&#34;"></p>

<p>My mom has been going to the hospital for the past couple of months. This is because her doctors have suspected that she has cancer. She has had tests and results, but until now no-one was sure.</p>

<p>Today though, that all changed&#8230;</p>

<!-- more -->


<p>And today is the start of a new phase of life for you.</p>

<p>I cannot imagine how you will get to sleep tonight, finally knowing the identity of the intruder that has gained access to the most precious of places.
I sit here in America, five hours behind all that is happening, and whilst I sit and write these lines I see you, lying awake, and worrying. Worrying what is left for you, what you can now accomplish, wondering whether you will ever again feel complete happiness, your mind free from the cloud that has come into view. Unsure as to how this will all play out.</p>

<p>Mom, I want you to be brave, I want you to face this battle with grit and determination, it could be a tough one, but I know you are up to it. I&#8217;ve seen the look when you aren&#8217;t going to back down, and it works, so show this one the door, and give it a real hard kick on the way out.</p>

<p>I wish I could help you with the pain, we all wish we could eat some of it for you, but we can only stand and watch. But never, ever forget, you have always tried to do everything right for everyone that you love, and that counts.</p>

<p>I&#8217;m going to lie awake tonight too, you aren&#8217;t alone.</p>
]]></content>
  </entry>
  
</feed>

