<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Kyle Moseby</title>
	<atom:link href="http://kylemoseby.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kylemoseby.com</link>
	<description></description>
	<lastBuildDate>Fri, 04 May 2012 04:40:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>SVG in jQuery Accordions</title>
		<link>http://kylemoseby.com/2012/05/nested-svg-elements-in-jquery-accordion/</link>
		<comments>http://kylemoseby.com/2012/05/nested-svg-elements-in-jquery-accordion/#comments</comments>
		<pubDate>Fri, 04 May 2012 04:28:49 +0000</pubDate>
		<dc:creator>kylemoseby</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[accordion]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[svq]]></category>

		<guid isPermaLink="false">http://kylemoseby.com/?p=851</guid>
		<description><![CDATA[If you find yourself nesting SVG elements inside a jQuery accordion, you will notice that your text elements aren&#8217;t lining up correct in Safari.  You will wonder why, spending half a day recalculating how everything is laid out, and scouring the Internet for a solution. There is a bug in how Safari renders SVG type, [...]]]></description>
			<content:encoded><![CDATA[<p>If you find yourself nesting SVG elements inside a jQuery accordion, you will notice that your text elements aren&#8217;t lining up correct in Safari.  You will wonder why, spending half a day recalculating how everything is laid out, and scouring the Internet for a solution.</p>
<p>There is a bug in how Safari renders SVG type, throw the following in a callback function:</p>
<pre class="prettyprint">if (jQuery.browser.webkit){
   jQuery('#accordionDiv svg text').attr('y', '0');
}</pre>
<h3>References</h3>
<ul>
<li><a href="http://old.nabble.com/Safari-not-showing-dynamic-SVG-content-in-accordion-td25980977s27240.html" target="_blank">Safari not showing dynamic SVG content in accordion</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kylemoseby.com/2012/05/nested-svg-elements-in-jquery-accordion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WebToLead Form with reCaptcha</title>
		<link>http://kylemoseby.com/2012/02/web2lead-contact-form-with-recaptcha/</link>
		<comments>http://kylemoseby.com/2012/02/web2lead-contact-form-with-recaptcha/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 05:30:06 +0000</pubDate>
		<dc:creator>kylemoseby</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[captcha]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[salesforce]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://kylemoseby.com/?p=603</guid>
		<description><![CDATA[Overview Originally this was going to be a simple post, putting Web-to-Lead on a WordPress page but one thing lead to another as my requirements changed.  This article could be looked at at the grouping of a couple of &#8220;mini-tutorials.&#8221;  The first one would be building a Web2Lead form in Salesforce, the second adding Captcha [...]]]></description>
			<content:encoded><![CDATA[<h3>Overview</h3>
<p>Originally this was going to be a simple post, putting Web-to-Lead on a WordPress page but one thing lead to another as my requirements changed.  This article could be looked at at the grouping of a couple of &#8220;mini-tutorials.&#8221;  The first one would be building a Web2Lead form in Salesforce, the second adding Captcha to a form using PHP, and the final being adding a Captcha form to a WordPress template.  I have laid out the article accordingly.</p>
<p><span id="more-603"></span></p>
<h3>Web-to-Lead form</h3>
<h4>Building a Web-to-Lead form in Salesforce</h4>
<ol>
<li>Once you are logged into Salesforce go to Setup &#8211; Customize &#8211; Leads &#8211; Web-to-Lead</li>
<li>Click the button &#8220;Create Web-to-Lead Form&#8221;</li>
<li>On the Create Web-to-Lead form you can select what information you want your form to collect.</li>
<li><img class="alignright size-full wp-image-727" title="Salesforce Web-to-Lead Add Fields" src="http://kylemoseby.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-21-at-4.40.37-PM.png" alt="" width="370" height="240" />To add a field select a field from the list on the right and click &#8220;Add&#8221; to move the field to the &#8220;Selected Fields&#8221; menu</li>
<li>To remove a field, select it from the menu on the left and click &#8220;Remove&#8221;</li>
<li>The &#8220;Return URL&#8221; is where users will be sent once they fill out the form.  If you are going to add a Capthca image to your form this value is irrelevant.</li>
<li>Click &#8220;Generate&#8221;</li>
<li>Once the page reloads you should see a box that contains the code for your Web2Lead form.  The code should look something like this:
<pre class="prettyprint lang-html">&lt;!--  ----------------------------------------------------------------------  --&gt;
&lt;!--  NOTE: Please add the following &lt;META&gt; element to your page &lt;HEAD&gt;.      --&gt;
&lt;!--  If necessary, please modify the charset parameter to specify the        --&gt;
&lt;!--  character set of your HTML page.                                        --&gt;
&lt;!--  ----------------------------------------------------------------------  --&gt;

&lt;META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=UTF-8"&gt;

&lt;!--  ----------------------------------------------------------------------  --&gt;
&lt;!--  NOTE: Please add the following &lt;FORM&gt; element to your page.             --&gt;
&lt;!--  ----------------------------------------------------------------------  --&gt;

&lt;form action="https://www.salesforce.com/servlet/servlet.Web-to-Lead?encoding=UTF-8" method="POST"&gt;

&lt;input type=hidden name="oid" value="xxxxxxxxxxxxxx"&gt;
&lt;input type=hidden name="retURL" value="http://"&gt;

&lt;!--  ----------------------------------------------------------------------  --&gt;
&lt;!--  NOTE: These fields are optional debugging elements.  Please uncomment   --&gt;
&lt;!--  these lines if you wish to test in debug mode.                          --&gt;
&lt;!--  &lt;input type="hidden" name="debug" value=1&gt;                              --&gt;
&lt;!--  &lt;input type="hidden" name="debugEmail" value="kyle@kylemoseby.com"&gt;     --&gt;
&lt;!--  ----------------------------------------------------------------------  --&gt;

&lt;label for="first_name"&gt;First Name&lt;/label&gt;&lt;input  id="first_name" maxlength="40" name="first_name" size="20" type="text" /&gt;&lt;br&gt;

&lt;label for="last_name"&gt;Last Name&lt;/label&gt;&lt;input  id="last_name" maxlength="80" name="last_name" size="20" type="text" /&gt;&lt;br&gt;

&lt;label for="email"&gt;Email&lt;/label&gt;&lt;input  id="email" maxlength="80" name="email" size="20" type="text" /&gt;&lt;br&gt;

&lt;label for="company"&gt;Company&lt;/label&gt;&lt;input  id="company" maxlength="40" name="company" size="20" type="text" /&gt;&lt;br&gt;

&lt;label for="city"&gt;City&lt;/label&gt;&lt;input  id="city" maxlength="40" name="city" size="20" type="text" /&gt;&lt;br&gt;

&lt;label for="state"&gt;State/Province&lt;/label&gt;&lt;input  id="state" maxlength="20" name="state" size="20" type="text" /&gt;&lt;br&gt;

&lt;input type="submit" name="submit"&gt;

&lt;/form&gt;</pre>
</li>
<li>Copy this code.</li>
</ol>
<p>&nbsp;</p>
<h4>Putting form into WordPress page/widget</h4>
<p>Once you have that code you can paste it anywhere that you would like on your site.  Keep in mind that this is HTML code and you need to make sure you putting it somewhere where it will be processed as HTML.  You can run into problems if you paste that code into WordPress&#8217; (or any other platforms) Rich Text Editor.</p>
<p>Obvious places to embed a Web-to-Lead form:</p>
<ol>
<li>WordPress Pages/Post &#8211; Make sure that when you are copying this code you are using the &#8220;HTML&#8221; editor and not the Visual editor</li>
<li>WordPress widgets &#8211; Just use the &#8220;Text&#8221; Widget, paste in embed code and place on your site<img class="alignright size-full wp-image-731" title="Web-to-Lead in a WordPress Text Widget" src="http://kylemoseby.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-21-at-5.03.32-PM.png" alt="" width="439" height="439" /></li>
<li>WordPress Themes &#8211; Place code anywhere you would like in your theme.</li>
</ol>
<h3>Adding reCaptcha</h3>
<p>Once I got my Web-to-Lead form up on my site, it only took a few days before I started to get bogus spam submissions on my form.  Adding <a href="http://www.google.com/recaptcha/learnmore" target="_blank">reCaptcha</a> was surprisingly easy.  The first step is to download the <a href="http://code.google.com/p/recaptcha/downloads/list?q=label:phplib-Latest" target="_blank">PHP library</a> and sign up for a <a href="https://www.google.com/recaptcha/admin/create" target="_blank">reCaptcha key</a>.  Once you have completed this upload the library to your server.</p>
<h4>Building reCaptcha Form</h4>
<p>There are only two lines of code needed to load a Capthcha image in a WordPress Theme.</p>
<ol>
<li>The first is an include statement that loads the Capthca Library, you might have to change the path depending on where you uploaded the lobrary:
<pre class="prettyprint lang-php">require_once("recaptchalib.php");</pre>
</li>
<li>And the second that renders the important code, obviously you are gonna pass your Public key to the recaptcha_get_html function:
<pre class="prettyprint lang-php">echo recaptcha_get_html("YOUR-PUBLIC-KEY");</pre>
</li>
<li>In your Wed-to-Lead form embed code from above paste those lines where you want the reCaptcha image to show up.  You can see an example on my <a href="http://kylemoseby.com/contact/">contact page</a>.</li>
<li>You should now have a captcha field on your form.</li>
<li>Now point the form action to the verification page that you uploaded (mine is at http://kylemoseby.com/verify).</li>
</ol>
<h4>Verifying reCaptcha Image and Submitting to SFDC</h4>
<p>Once the Captcha input has been verified it is posted to Salesforce cia <a href="http://php.net/manual/en/book.curl.php" target="_blank">cURL</a>.</p>
<pre class="prettyprint lang-php">  &lt;?php
  require_once('recaptchalib.php');
  $privatekey = "<span style="color: red;">your_private_key</span>";
  $resp = recaptcha_check_answer ($privatekey,
                                $_SERVER["REMOTE_ADDR"],
                                $_POST["recaptcha_challenge_field"],
                                $_POST["recaptcha_response_field"]);

  if (!$resp-&gt;is_valid) {
    // What happens when the CAPTCHA was entered incorrectly
    die ("The reCAPTCHA wasn't entered correctly. Go back and try it again." .
         "(reCAPTCHA said: " . $resp-&gt;error . ")");
  } else {
    // Your code here to handle a successful verification
  }
  ?&gt;</pre>
<ol>
<ol>
<li>First we have to start the skeleton of what we want to do based upon whether Captcha was submitted correctly</li>
<li>Then you have a setup your cURL statements to submit to Salesforce.  These will vary depending on what field you selected above.  To get you started mine were as follows;</li>
</ol>
</ol>
<pre class="prettyprint lang-php">$fields = array(
'oid'=&gt;"xxxxxxxxxxxxxx",</pre>
<pre class="prettyprint lang-php">'first_name'=&gt;urlencode($first_name),
'last_name'=&gt;urlencode($last_name),
'email'=&gt;urlencode($email),
'xxxxxxxxxxxxxx'=&gt;urlencode($message)</pre>
<pre class="prettyprint lang-php">);</pre>
<h4>Customizing</h4>
<p>ReCaptcha&#8217;s site has good documentation on <a href="http://code.google.com/apis/recaptcha/docs/customization.html">customizing the look of reCaptcha</a>. This is done by adding the following code with your custom parameters before your form:</p>
<pre class="prettyprint lang-html">&lt;script type="text/javascript"&gt;
   var RecaptchaOptions = {
	theme : 'clean',
	tabindex : 5
   };
&lt;/script&gt;</pre>
<h3>References:</h3>
<ol>
<li><a href="http://code.google.com/apis/recaptcha/intro.html" target="_blank">reCaptcha Docs</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://kylemoseby.com/2012/02/web2lead-contact-form-with-recaptcha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pu-erh Tea</title>
		<link>http://kylemoseby.com/2011/11/pu-erh-tea/</link>
		<comments>http://kylemoseby.com/2011/11/pu-erh-tea/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 23:07:51 +0000</pubDate>
		<dc:creator>kylemoseby</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://kylemoseby.com/?p=632</guid>
		<description><![CDATA[Just bought a cake of Pu-erh (???) from Floating Leaves in Ballard, in my opinion the best Chinese tea shop in the Seattle are.]]></description>
			<content:encoded><![CDATA[<p>Just bought a cake of <a href="http://en.wikipedia.org/wiki/Puer_tea" target="_blank">Pu-erh</a> (<a title="wiktionary:?" href="http://en.wiktionary.org/wiki/%E6%99%AE">?</a><a title="wiktionary:?" href="http://en.wiktionary.org/wiki/%E6%B4%B1" target="_blank">?</a><a title="wiktionary:?" href="http://en.wiktionary.org/wiki/%E8%8C%B6">?</a>) from <a href="http://floatingleaves.com" target="_blank">Floating Leaves</a> in Ballard, in my opinion the best Chinese tea shop in the Seattle are.</p>
<p class="flickrTag_container"><a href="http://farm7.static.flickr.com/6101/6339080357_052530b8cc_z.jpg" class="flickr" title="" rel="lightbox"><img src="http://farm7.static.flickr.com/6101/6339080357_052530b8cc_b.jpg" alt="Puer Tea" class="flickr large photo" /></a></p>
<p class="flickrTag_container"><a href="http://farm7.static.flickr.com/6041/6339832516_63ac248110_z.jpg" class="flickr" title="" rel="lightbox"><img src="http://farm7.static.flickr.com/6041/6339832516_63ac248110_b.jpg" alt="Puer Tea" class="flickr large photo" /></a></p>
<p class="flickrTag_container"><a href="http://farm7.static.flickr.com/6050/6339084593_870e9199df_z.jpg" class="flickr" title="" rel="lightbox"><img src="http://farm7.static.flickr.com/6050/6339084593_870e9199df_b.jpg" alt="Puer Tea" class="flickr large photo" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://kylemoseby.com/2011/11/pu-erh-tea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Satsop</title>
		<link>http://kylemoseby.com/2011/10/satsop/</link>
		<comments>http://kylemoseby.com/2011/10/satsop/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 21:40:44 +0000</pubDate>
		<dc:creator>kylemoseby</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://kylemoseby.com/?p=619</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p class="flickrTag_container"><a href="http://farm7.static.flickr.com/6156/6188452870_987cb82d3f_z.jpg" class="flickr" title="&lt;a href=&quot;http://en.wikipedia.org/wiki/WNP-3_and_WNP-5&quot; rel=&quot;nofollow&quot;&gt;en.wikipedia.org/wiki/WNP-3_and_WNP-5&lt;/a&gt;" rel="lightbox"><img src="http://farm7.static.flickr.com/6156/6188452870_987cb82d3f_b.jpg" alt="Satsop Nuclear Power Station" class="flickr large photo" /></a></p>
<p><span id="more-619"></span><p class="flickrTag_container"><a href="http://farm7.static.flickr.com/6171/6187919361_cc2bfe279e_z.jpg" class="flickr" title="Satsop Nuclear Power Station" rel="lightbox[f01eb520332d2d6debebd7097bc91d07]"><img src="http://farm7.static.flickr.com/6171/6187919361_cc2bfe279e_s.jpg" alt="Satsop Nuclear Power Station" class="flickr square set" /></a><a href="http://farm7.static.flickr.com/6156/6188452870_987cb82d3f_z.jpg" class="flickr" title="Satsop Nuclear Power Station" rel="lightbox[f01eb520332d2d6debebd7097bc91d07]"><img src="http://farm7.static.flickr.com/6156/6188452870_987cb82d3f_s.jpg" alt="Satsop Nuclear Power Station" class="flickr square set" /></a><a href="http://farm7.static.flickr.com/6167/6187935299_57b66bb517_z.jpg" class="flickr" title="Satsop Nuclear Power Station" rel="lightbox[f01eb520332d2d6debebd7097bc91d07]"><img src="http://farm7.static.flickr.com/6167/6187935299_57b66bb517_s.jpg" alt="Satsop Nuclear Power Station" class="flickr square set" /></a><a href="http://farm7.static.flickr.com/6180/6188462690_c1c203f41d_z.jpg" class="flickr" title="Satsop Nuclear Power Station" rel="lightbox[f01eb520332d2d6debebd7097bc91d07]"><img src="http://farm7.static.flickr.com/6180/6188462690_c1c203f41d_s.jpg" alt="Satsop Nuclear Power Station" class="flickr square set" /></a><a href="http://farm7.static.flickr.com/6155/6187961175_f0b591a413_z.jpg" class="flickr" title="Satsop Nuclear Power Station" rel="lightbox[f01eb520332d2d6debebd7097bc91d07]"><img src="http://farm7.static.flickr.com/6155/6187961175_f0b591a413_s.jpg" alt="Satsop Nuclear Power Station" class="flickr square set" /></a></p></p>
]]></content:encoded>
			<wfw:commentRss>http://kylemoseby.com/2011/10/satsop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOLGA</title>
		<link>http://kylemoseby.com/2010/01/holga/</link>
		<comments>http://kylemoseby.com/2010/01/holga/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 09:47:05 +0000</pubDate>
		<dc:creator>kylemoseby</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://kylemoseby.com/?p=530</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://kylemoseby.com/wp-content/uploads/2010/01/4315267808_9e18b9dd23_b.jpg"><img class="aligncenter size-full wp-image-533" title="4315267808_9e18b9dd23_b" src="http://kylemoseby.com/wp-content/uploads/2010/01/4315267808_9e18b9dd23_b.jpg" alt=""  /></a><span id="more-530"></span><br />
<img class="aligncenter size-full wp-image-532" title="4314532939_83eb9e4f3f_b" src="http://kylemoseby.com/wp-content/uploads/2010/01/4314532939_83eb9e4f3f_b.jpg" alt=""  /><img src="http://kylemoseby.com/wp-content/uploads/2010/01/4314532651_2eb736278a_b.jpg" alt="" title="4314532651_2eb736278a_b" class="aligncenter size-full wp-image-531" /></p>
]]></content:encoded>
			<wfw:commentRss>http://kylemoseby.com/2010/01/holga/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Garfunkle &amp; Oates at the Rebar</title>
		<link>http://kylemoseby.com/2009/08/garfunkle-oates-at-the-rebar/</link>
		<comments>http://kylemoseby.com/2009/08/garfunkle-oates-at-the-rebar/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 07:08:21 +0000</pubDate>
		<dc:creator>kylemoseby</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://kylemoseby.com/?p=430</guid>
		<description><![CDATA[Photos from the recent Garfunkle &#38; Oates show in Seattle at the Rebar.  Nick Thune opened the sold out show. This was the song that Garfunkle &#38; Oates closed with.]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px initial initial;" title="Garfunkle &amp; Oates" src="http://kylemoseby.com/wp-content/uploads/2009/08/WEB-3850933123_439e2b1f9e_b-8-23-2009.jpg" alt="Garfunkle &amp; Oates" /></p>
<p><span id="more-430"></span>Photos from the recent Garfunkle &amp; Oates show in Seattle at the Rebar.  Nick Thune opened the sold out show.</p>
<p><img style="border: 0px initial initial;" title="Sold Out" src="http://kylemoseby.com/wp-content/uploads/2009/08/WEB-3851718338_f1fbbc3414_b-8-23-2009.jpg" alt="Sold Out" /></p>
<p><img style="border: 0px initial initial;" title="Nick Thune" src="http://kylemoseby.com/wp-content/uploads/2009/08/WEB-3851609786_a40a5a3ce4_b-8-23-2009.jpg" alt="Nick Thune" /></p>
<p><img style="border: 0px initial initial;" title="Nick Thune" src="http://kylemoseby.com/wp-content/uploads/2009/08/WEB-3851610750_bd7237da46_b-8-23-2009.jpg" alt="Nick Thune" /></p>
<p><img class="alignnone size-full wp-image-431" title="Garfunkle &amp; Oates" src="http://kylemoseby.com/wp-content/uploads/2009/08/WEB-3850820551_90bc547eb0_b-8-23-2009.jpg" alt="Garfunkle &amp; Oates" /></p>
<p><img style="border: 0px initial initial;" title="Garfunkle &amp; Oates" src="http://kylemoseby.com/wp-content/uploads/2009/08/WEB-3850829429_28f000d85f_b-8-23-20091.jpg" alt="Garfunkle &amp; Oates" /></p>
<p><img class="alignnone size-full wp-image-435" title="Backstage" src="http://kylemoseby.com/wp-content/uploads/2009/08/WEB-3851608440_365e7e892b_b-8-23-2009.jpg" alt="Backstage" /></p>
<p><img class="alignnone size-full wp-image-433" title="Nick Thune" src="http://kylemoseby.com/wp-content/uploads/2009/08/WEB-3850841453_b2cc892da3_b-8-23-2009.jpg" alt="Nick Thune" /></p>
<p>This was the song that Garfunkle &amp; Oates closed with.</p>
<p><object id="ordie_player_e0436f153d" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="400" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="key=e0436f153d" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://player.ordienetworks.com/flash/fodplayer.swf" /><param name="name" value="ordie_player_e0436f153d" /><param name="quality" value="high" /><embed id="ordie_player_e0436f153d" type="application/x-shockwave-flash" width="480" height="400" src="http://player.ordienetworks.com/flash/fodplayer.swf" quality="high" name="ordie_player_e0436f153d" allowscriptaccess="always" allowfullscreen="true" flashvars="key=e0436f153d"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://kylemoseby.com/2009/08/garfunkle-oates-at-the-rebar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Junk Yard</title>
		<link>http://kylemoseby.com/2009/07/junk-yard/</link>
		<comments>http://kylemoseby.com/2009/07/junk-yard/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 09:30:09 +0000</pubDate>
		<dc:creator>kylemoseby</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://kylemoseby.com/?p=383</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p class="flickrTag_container"><a href="http://farm3.static.flickr.com/2549/3661637561_0f567d4b38_z.jpg" class="flickr" title="" rel="lightbox"><img src="http://farm3.static.flickr.com/2549/3661637561_0f567d4b38_b.jpg" alt="Junk Yard" class="flickr large photo" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://kylemoseby.com/2009/07/junk-yard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Denver Comedy Works Part 2</title>
		<link>http://kylemoseby.com/2009/07/denver-comedy-works-part-2/</link>
		<comments>http://kylemoseby.com/2009/07/denver-comedy-works-part-2/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 09:19:48 +0000</pubDate>
		<dc:creator>kylemoseby</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://kylemoseby.com/?p=375</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><p class="flickrTag_container"><a href="http://farm4.static.flickr.com/3312/3544056588_869d57db8c_z.jpg" class="flickr" title="" rel="lightbox"><img src="http://farm4.static.flickr.com/3312/3544056588_869d57db8c_b.jpg" alt="Natasha Leggero" class="flickr large photo" /></a></p><br />
<span id="more-375"></span><br />
<p class="flickrTag_container"><a href="http://farm4.static.flickr.com/3620/3520786075_4e73230cc2_z.jpg" class="flickr" title="Natasha Leggero at the Denver Comedy Works. - &lt;a href=&quot;http://www.natashaleggero.com&quot;&gt;www.natashaleggero.com&lt;/a&gt;" rel="lightbox"><img src="http://farm4.static.flickr.com/3620/3520786075_4e73230cc2_b.jpg" alt="Natasha Leggero" class="flickr large photo" /></a></p><br />
<p class="flickrTag_container"><a href="http://farm4.static.flickr.com/3554/3515853597_59a8afbdd4_z.jpg" class="flickr" title="Taping Nick Thune's Comedy Central compact disc." rel="lightbox"><img src="http://farm4.static.flickr.com/3554/3515853597_59a8afbdd4_b.jpg" alt="Peter Ross Stephens" class="flickr large photo" /></a></p><br />
<p class="flickrTag_container"><a href="http://farm4.static.flickr.com/3610/3515849329_4ab52dc645_z.jpg" class="flickr" title="Taping Nick Thune's Comedy Central compact disc." rel="lightbox"><img src="http://farm4.static.flickr.com/3610/3515849329_4ab52dc645_b.jpg" alt="Nick Thune" class="flickr large photo" /></a></p><br />
<p class="flickrTag_container"><a href="http://farm3.static.flickr.com/2594/3662439228_72d883fe30_z.jpg" class="flickr" title="Backstage at the Denver Comedy Works" rel="lightbox"><img src="http://farm3.static.flickr.com/2594/3662439228_72d883fe30_b.jpg" alt="Nick Thune " class="flickr large photo" /></a></p><br />
<p class="flickrTag_container"><a href="http://farm3.static.flickr.com/2567/3661639175_4acab3dd9c_z.jpg" class="flickr" title="" rel="lightbox"><img src="http://farm3.static.flickr.com/2567/3661639175_4acab3dd9c_b.jpg" alt="Nick Thune" class="flickr large photo" /></a></p></p>
]]></content:encoded>
			<wfw:commentRss>http://kylemoseby.com/2009/07/denver-comedy-works-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sasquatch 2009</title>
		<link>http://kylemoseby.com/2009/06/sasquatch-2009/</link>
		<comments>http://kylemoseby.com/2009/06/sasquatch-2009/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 09:15:12 +0000</pubDate>
		<dc:creator>kylemoseby</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://kylemoseby.com/?p=369</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><p class="flickrTag_container"><a href="http://farm3.static.flickr.com/2423/3581098248_b83941d639_z.jpg" class="flickr" title="I feel like I was only able to capture 10% of this show.  Check out there stuff out on Drag City - &lt;a href=&quot;http://www.dragcity.com&quot;&gt;www.dragcity.com&lt;/a&gt;" rel="lightbox"><img src="http://farm3.static.flickr.com/2423/3581098248_b83941d639_b.jpg" alt="Monotonix at Sasquatch" class="flickr large photo" /></a></p><br />
<span id="more-369"></span><br />
<p class="flickrTag_container"><a href="http://farm3.static.flickr.com/2465/3581096928_783688fc2c_z.jpg" class="flickr" title="I feel like I was only able to capture 10% of this show.  Check out there stuff out on Drag City - &lt;a href=&quot;http://www.dragcity.com&quot;&gt;www.dragcity.com&lt;/a&gt;" rel="lightbox"><img src="http://farm3.static.flickr.com/2465/3581096928_783688fc2c_b.jpg" alt="Monotonix at Sasquatch" class="flickr large photo" /></a></p><br />
<p class="flickrTag_container"><a href="http://farm4.static.flickr.com/3563/3580285931_2697ffd706_z.jpg" class="flickr" title="I feel like I was only able to capture 10% of this show.  Check out there stuff out on Drag City - &lt;a href=&quot;http://www.dragcity.com&quot;&gt;www.dragcity.com&lt;/a&gt;" rel="lightbox"><img src="http://farm4.static.flickr.com/3563/3580285931_2697ffd706_b.jpg" alt="Monotonix at Sasquatch" class="flickr large photo" /></a></p><br />
<p class="flickrTag_container"><a href="http://farm3.static.flickr.com/2458/3566961751_48e7747083_z.jpg" class="flickr" title="Maybe the coolest dad and kid combo.  This was at the Monotonix show." rel="lightbox"><img src="http://farm3.static.flickr.com/2458/3566961751_48e7747083_b.jpg" alt="Sasquatch" class="flickr large photo" /></a></p><br />
<p class="flickrTag_container"><a href="http://farm3.static.flickr.com/2468/3567771166_58392ddf14_z.jpg" class="flickr" title="This guy got paid to $10 to do a backflip - &lt;a href=&quot;http://www.nickthune.com&quot; rel=&quot;nofollow&quot;&gt;www.nickthune.com&lt;/a&gt;" rel="lightbox"><img src="http://farm3.static.flickr.com/2468/3567771166_58392ddf14_b.jpg" alt="Nick Thune & Backflip" class="flickr large photo" /></a></p><br />
<p class="flickrTag_container"><a href="http://farm4.static.flickr.com/3572/3558317557_ed54e22b99_z.jpg" class="flickr" title="" rel="lightbox"><img src="http://farm4.static.flickr.com/3572/3558317557_ed54e22b99_b.jpg" alt="Bon Iver at Sasquatch Festival" class="flickr large photo" /></a></p><br />
<p class="flickrTag_container"><a href="http://farm4.static.flickr.com/3577/3559127694_19ecbd69a1_z.jpg" class="flickr" title="Nick Thune preforms at the comedy tent" rel="lightbox"><img src="http://farm4.static.flickr.com/3577/3559127694_19ecbd69a1_b.jpg" alt="Nick Thune at Sasquatch Festival" class="flickr large photo" /></a></p></p>
]]></content:encoded>
			<wfw:commentRss>http://kylemoseby.com/2009/06/sasquatch-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recording in Cottage Grove</title>
		<link>http://kylemoseby.com/2009/06/recording-in-cottage-grove/</link>
		<comments>http://kylemoseby.com/2009/06/recording-in-cottage-grove/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 05:33:18 +0000</pubDate>
		<dc:creator>kylemoseby</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://kylemoseby.com/?p=354</guid>
		<description><![CDATA[I recently went into Richard Swift's studio with Nick Thune and Kate Micucci to play some steel and take some pictures.]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-362" title="Kate Micucci &amp; Nick Thune" src="http://kylemoseby.com/wp-content/uploads/2009/06/3599898800_145546da37_b1.jpg" alt="Kate Micucci &amp; Nick Thune " /><br />
<span id="more-354"></span><br />
<p class="flickrTag_container"><a href="http://farm4.static.flickr.com/3657/3595196694_96f12fed81_z.jpg" class="flickr" title="In Richard Swift's studio - &lt;a href=&quot;http://www.richardswift.us&quot; rel=&quot;nofollow&quot;&gt;www.richardswift.us&lt;/a&gt;" rel="lightbox"><img src="http://farm4.static.flickr.com/3657/3595196694_96f12fed81_b.jpg" alt="Drums" class="flickr large photo" /></a></p><br />
<p class="flickrTag_container"><a href="http://farm4.static.flickr.com/3313/3595196222_b07c67aba7_z.jpg" class="flickr" title="Kate Micucci recording at Richard Swift's studio for the upcoming Nick Thune CD - &lt;a href=&quot;http://www.katemicucci.com/&quot; rel=&quot;nofollow&quot;&gt;www.katemicucci.com/&lt;/a&gt;" rel="lightbox"><img src="http://farm4.static.flickr.com/3313/3595196222_b07c67aba7_b.jpg" alt="Kate Micucci" class="flickr large photo" /></a></p><br />
<p class="flickrTag_container"><a href="http://farm3.static.flickr.com/2467/3595143286_a176d56f4f_z.jpg" class="flickr" title="&lt;a href=&quot;http://www.richardswift.us&quot; rel=&quot;nofollow&quot;&gt;www.richardswift.us&lt;/a&gt;" rel="lightbox"><img src="http://farm3.static.flickr.com/2467/3595143286_a176d56f4f_b.jpg" alt="Richard Swift" class="flickr large photo" /></a></p><br />
<p class="flickrTag_container"><a href="http://farm4.static.flickr.com/3297/3594234746_97c7c263bd_z.jpg" class="flickr" title="Kate Micucci at Richard Swift's studio in Oregon to record on Nick Thune's upcoming CD - &lt;a href=&quot;http://www.katemicucci.com/&quot; rel=&quot;nofollow&quot;&gt;www.katemicucci.com/&lt;/a&gt;" rel="lightbox"><img src="http://farm4.static.flickr.com/3297/3594234746_97c7c263bd_b.jpg" alt="Kate Micucci" class="flickr large photo" /></a></p></p>
]]></content:encoded>
			<wfw:commentRss>http://kylemoseby.com/2009/06/recording-in-cottage-grove/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

