<?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>Web Development by Joe Sak &#187; Photography</title>
	<atom:link href="http://www.joesak.com/category/photography/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.joesak.com</link>
	<description>Rails, HTML5, CSS3, jQuery - Thoughts, Advice &#38; Work</description>
	<lastBuildDate>Tue, 27 Jul 2010 14:10:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Online Photo Gallery, Payment &amp; Order Fulfillment: Ruby on Rails Tutorial</title>
		<link>http://www.joesak.com/2009/09/18/online-photo-gallery-payment-order-fulfillment-ruby-on-rails-tutorial/</link>
		<comments>http://www.joesak.com/2009/09/18/online-photo-gallery-payment-order-fulfillment-ruby-on-rails-tutorial/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 16:51:04 +0000</pubDate>
		<dc:creator>Joe Sak</dc:creator>
				<category><![CDATA[Custom Development]]></category>
		<category><![CDATA[Improving Code]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.joesak.com/?p=255</guid>
		<description><![CDATA[This post is a follow-up to the post on my personal blog, titled &#8220;Ruby on Rails Photo Gallery &#38; Shopping Cart with RESTful Authentication&#8221; In that article, I merely showed off what I&#8217;d done with Ruby on Rails, but I didn&#8217;t show anyone how. Well, I&#8217;ve gotten some comments from people asking me to show [...]]]></description>
			<content:encoded><![CDATA[<p>This post is a follow-up to the post on <a title="Joe Sak's Web Development Blog" href="http://www.joesak.com">my personal blog</a>, titled &#8220;<a title="Ruby on Rails Photo Gallery &amp; Shopping Cart with RESTful Authentication" href="http://www.joesak.com/2009/05/31/ruby-on-rails-photo-gallery-shopping-cart-restful-authentication/">Ruby on Rails Photo Gallery &amp; Shopping Cart with RESTful Authentication</a>&#8221; In that article, I merely showed off what I&#8217;d done with Ruby on Rails, but I didn&#8217;t show anyone how. Well, I&#8217;ve gotten some comments from people asking me to show them how to build it.</p>
<p>That&#8217;s what this post is for.</p>
<p>So on to the nitty gritty details.</p>
<p>Start with the RESTful Authentication Tutorial:</p>
<p><script src="http://gist.github.com/189148.js"></script> <a></a> Follow the README to install, but <a title="Fix #1 to RESTful Authentication Install" href="http://railsforum.com/viewtopic.php?pid=96632#p96632">READ THIS FIRST</a> to fix the ExceptionLogger error  Then <a href="http://railsforum.com/viewtopic.php?pid=99223#p99223">follow these instructions</a> to fix the OpenID plugin error  Make sure you get your <a href="http://recaptcha.net/whyrecaptcha.html">recaptcha keys</a> for the config.yml, otherwise failed login attempts will bust your application.  Fill out the config &amp; database.yml files accordingly, run your database create &amp; migrate rakes, fire up the server and make sure it looks good. Cool? Let&#8217;s move on:  <strong>Define the objects</strong> Let&#8217;s begin by pointing out what, exactly, we&#8217;ll be building this application around: <strong>Galleries </strong>of <strong>Photos </strong>that <strong>Customers</strong> can order with a private <strong>Account</strong> provided to them by an <strong>Admin</strong> who can manage the galleries and review the <strong>Orders</strong>, which are also available to their respective customers.  I will go through how to set up the following models like so:</p>
<ul>
<li>Galleries
<ul>
<li>has_many :photos</li>
<li>belongs_to :customer</li>
<li>title</li>
<li>acts_as_urlnameable (pretty URLs)</li>
</ul>
</li>
<li>Photos
<ul>
<li>belongs_to :gallery</li>
<li>paperclip attachment: image</li>
</ul>
</li>
<li>Customers
<ul>
<li>username, password, full name</li>
</ul>
</li>
<li>Orders
<ul>
<li>has_many :line_items</li>
<li>belongs_to :customer</li>
</ul>
</li>
<li>Line Items
<ul>
<li>belongs_to <img src='http://www.joesak.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> rder</li>
<li>quantity, size, price</li>
</ul>
</li>
</ul>
<p>So let&#8217;s build the Galleries first:  <script src="http://gist.github.com/189161.js"></script></p>
<p>Then edit the Gallery model:</p>
<p><script src="http://gist.github.com/189149.js"></script> That&#8217;ll be fine for now. Let&#8217;s add the Photos model with paperclip image attached:  <script src="http://gist.github.com/189151.js"></script></p>
<p>Now edit the Photo model as such:</p>
<p><script src="http://gist.github.com/189152.js"></script> You should read all about <a href="http://thoughtbot.com/projects/paperclip">the paperclip gem</a> if you need more info on this model. Basically, we&#8217;re telling it to allow image attachments to the Photo model.  Customers can be the RESTful Authentication Tutorial User model, just need to add a couple things here:  <script src="http://gist.github.com/189153.js"></script></p>
<p>Let&#8217;s worry about Orders and Line Items later. We&#8217;ll have to add a cart, too. I&#8217;ll cover it, but it is all derived from <a href="http://www.pragprog.com/titles/rails3/agile-web-development-with-rails">Agile Web Development with Ruby on Rails Third Edition</a></p>
<p>Run your rake db:migrate and confirm all is well. Delete the Galleries layout file so it uses the application layout.</p>
<p>Let&#8217;s go see http://localhost:3000/galleries and play around. Add a gallery and then go to edit it. This is where we&#8217;ll add SWFUpload. <a href="http://jimneath.org/2008/05/15/swfupload-paperclip-and-ruby-on-rails/">Follow Jim Neath&#8217;s advice for this</a>.</p>
<p>You&#8217;ll want a photos controller:</p>
<p><script src="http://gist.github.com/189155.js"></script> The create method I use is:  <script src="http://gist.github.com/189156.js"></script></p>
<p>I had no luck getting Jim Neath&#8217;s session fix working, so I put skip_before_filter :verify_authenticity_token in the Photos Controller. Bad? Yea, probably. I haven&#8217;t found a better way yet.</p>
<p>Add this code to app/views/galleries/edit.html.erb:</p>
<p><script src="http://gist.github.com/189157.js"></script> Which leads you to add the following partial: app/views/photos/_image.html.erb  <script src="http://gist.github.com/189159.js"></script></p>
<p>We&#8217;ll worry about the destroy link later, let&#8217;s integrate swfupload. <a href="http://code.google.com/p/swfupload/">Download the latest copy of SWFUpload</a>. Copy flash/swfupload.swf to public/flash (make directory first). Copy swfupload.js &amp; upload.js (in Jim Neath&#8217;s demo app) to public/javascripts. Copy Jim Neath&#8217;s swfupload.css file to public/stylesheets. Copy Jim Neath&#8217;s images/icons folder to public/images.</p>
<p>Add this code to app/views/galleries/edit.html.erb:</p>
<p><script src="http://gist.github.com/189160.js"></script></p>
<p>Yep, a lot is going on there. Reload your galleries/edit page and see if it&#8217;s still working <img src='http://www.joesak.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Ok, so this gets you to a functioning online photo gallery. Up next will be adding user accounts, a shopping cart, ordering options, customers &amp; paypal integration. Stay tuned!</p>
<p>For now, please find the <a href="http://github.com/joemsak/proofs_package">source</a> here: <a href="http://github.com/joemsak/proofs_package">http://github.com/joemsak/proofs_package</a></p>
<p>And for help on your project, visit us at <a href="http://www.simplifyadvance.com">http://www.simplifyadvance.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.joesak.com/2009/09/18/online-photo-gallery-payment-order-fulfillment-ruby-on-rails-tutorial/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Five Simple Tips to taking Better Photos</title>
		<link>http://www.joesak.com/2008/10/31/five-simple-tips-to-taking-better-photos/</link>
		<comments>http://www.joesak.com/2008/10/31/five-simple-tips-to-taking-better-photos/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 20:54:14 +0000</pubDate>
		<dc:creator>Joe Sak</dc:creator>
				<category><![CDATA[Cameras]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.joesak.com/?p=139</guid>
		<description><![CDATA[As some of you may or may not know, I have a photography hobby. Because of this, I&#8217;ve been asked by a number of people to give some easy advice on taking better photos, specifically with Point &#38; Shoot cameras. Now, I&#8217;m not a professional, just an amateur hobbyist, but I do know a few [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">As some of you may or may not know, I have a <a href="http://www.flickr.com/photos/joesak">photography hobby</a>. Because of this, I&#8217;ve been asked by a number of people to give some easy advice on taking better photos, specifically with Point &amp; Shoot cameras. Now, I&#8217;m not a professional, just an amateur hobbyist, but I do know a few things you can do to improve your photos, even if you don&#8217;t have a fancy schmancy lens or expensive camera.</p>
<p style="text-align: left;"><span id="more-139"></span></p>
<p style="text-align: left;"><strong>1. Fill the frame</strong></p>
<p style="text-align: left;">When you&#8217;re taking photos, get close to your subject. If you have a lot of background and scenery around them, they will look small and you&#8217;ll lose the focus of the picture.</p>
<p style="text-align: left;"><strong>Don&#8217;t do this:</strong></p>
<div class="mceTemp" style="text-align: left;">
<dl id="attachment_140" class="wp-caption alignnone" style="width: 510px;">
<dt class="wp-caption-dt"><a href="http://www.joesak.com/wp-content/uploads/2008/10/img_0127.jpg"><img class="size-full wp-image-140" title="Don't do this" src="http://www.joesak.com/wp-content/uploads/2008/10/img_0127.jpg" alt="Don't do this" width="500" height="666" /></a></dt>
<dd class="wp-caption-dd">Don&#8217;t do this</dd>
</dl>
</div>
<p style="text-align: left;">
<p style="text-align: left;"><strong>Do this:</strong></p>
<div class="mceTemp" style="text-align: left;">
<dl id="attachment_141" class="wp-caption alignnone" style="width: 510px;">
<dt class="wp-caption-dt"><a href="http://www.joesak.com/wp-content/uploads/2008/10/img_0128.jpg"><img class="size-full wp-image-141" title="Do this" src="http://www.joesak.com/wp-content/uploads/2008/10/img_0128.jpg" alt="Do this" width="500" height="666" /></a></p>
</dt>
<dd class="wp-caption-dd">Do this</dd>
</dl>
<p><strong>2. Composition, Composition, Composition</strong></p>
<p>What is composition? It&#8217;s the placement of the subject. It&#8217;s the story the photo tells. Composition is everything. Even with the best camera in the world, poor composition is going to ruin any photo. And even with the crappiest camera in the world, great composition will enhance any photo. Composition has a few aspects: Rule of Thirds, Simplification, Symmetry. There&#8217;s more but we&#8217;ll focus on the simple ones.</p>
<p>Rule of thirds means splitting your photo into thirds, vertically and horizontally. Place your subject in one of the cross-hairs of the imaginary lines. This makes the photo a little bit more interesting.</p>
<p>Simplification can mean a few things. It can mean having a solid background with a single object (a balloon with a blue sky), or singling out one subject out of many, like a bird in a flock. The idea is to make sure your subject is obvious. Nothing else in the picture should distract from it. And in the case of simplification, it helps if nothing else is in the picture anyway. Try mixing simplification with Rule of Thirds.</p>
<p>Symmetry is an obvious one. Weight your picture the same across an imaginary dividing line. That line can be horizontal, vertical or even diagonal. It could be 2 lines, too, with a repeating pattern.</p>
<p><strong>3. Don&#8217;t add things to your subject&#8217;s head</strong></p>
<p>I&#8217;ve seen this in a lot of pictures. Poles, trees and other things jotting right out of the subjects&#8217; heads. It&#8217;s easy to avoid and makes the picture that much better.</p>
<p><strong>Don&#8217;t do this:</strong></p>
<p><img class="size-full wp-image-142" title="Don't do this" src="http://www.joesak.com/wp-content/uploads/2008/10/img_0124.jpg" alt="Don&quot;t do this" width="500" height="666" /></p>
<p><strong>Do this:</strong></p>
<div id="attachment_143" class="wp-caption alignnone" style="width: 510px"><a href="http://www.joesak.com/wp-content/uploads/2008/10/img_0125.jpg"><img class="size-full wp-image-143" title="Do This" src="http://www.joesak.com/wp-content/uploads/2008/10/img_0125.jpg" alt="Do this" width="500" height="666" /></a><p class="wp-caption-text">Do this</p></div>
<p>Sorry for the lens flare (the rainbow effect). I didn&#8217;t see it on my screen when I took the picture. But you get the idea. Don&#8217;t let things come out of peoples&#8217; heads.</p>
<p><strong>4. Lighting &amp; Exposure. Not too dark, not too bright.</strong></p>
<p>When you take a picture, make sure the lighting is accurate for the scene. If you&#8217;re at a concert, obviously you want it to be dark, but still exposed enough to be interesting. If you&#8217;re outdoors, you don&#8217;t want your picture all washed out, and you ESPECIALLY don&#8217;t want them to be dark. So try to find a well lit area, and don&#8217;t use a flash outside. If your subject is wearing a hat, you can use a flash to fill their face with light, but turn down the intensity. Most point &amp; shoot cameras give you this option.</p>
<p><strong>Don&#8217;t do this:</strong></p>
<div id="attachment_144" class="wp-caption alignnone" style="width: 510px"><a href="http://www.joesak.com/wp-content/uploads/2008/10/img_0133.jpg"><img class="size-full wp-image-144" title="Don't do this" src="http://www.joesak.com/wp-content/uploads/2008/10/img_0133.jpg" alt="Dont do this" width="500" height="666" /></a><p class="wp-caption-text">Don&#39;t do this</p></div>
<p>This isn&#8217;t horribly underexposed, truth be told, but it doesn&#8217;t really represent how much sun we were getting.</p>
<p><strong>Do this:</strong></p>
<div id="attachment_145" class="wp-caption alignnone" style="width: 510px"><a href="http://www.joesak.com/wp-content/uploads/2008/10/img_0135.jpg"><img class="size-full wp-image-145" title="Do this" src="http://www.joesak.com/wp-content/uploads/2008/10/img_0135.jpg" alt="Do this" width="500" height="666" /></a><p class="wp-caption-text">Do this</p></div>
<p>Move your subject to a better lit area, keeping the sun to the side. If you shoot with the sun in the back, you could end up making your subject dark. If you shoot with the sun out front, you can get people squinting their eyes and possible overexposure. Also, you can see I got closer for this shot and filled the frame. It really turned out great. The dog is a bit overexposed, but I was using an iPhone so there aren&#8217;t any options. You should be able to decrease your Exp. Comp. on a digital point &amp; shoot. I also should have had Andrew move forward to cast a shadow on Bandit.</p>
<p><strong>5. Take a lot of photos, showcase only a few</strong></p>
<p>In the digital age, this is an easy but still forgotten technique. Take a lot of photos. Take hundreds of photos. Richard Stromberg at <a href="http://www.chicagophoto.org/">The Chicago Photography Center</a> teaches that if you can get 1 good shot in a roll of 36, you&#8217;re doing well. (cit. <a href="http://www.37signals.com/svn/posts/1228-a-361-ratio-is-actually-pretty-good">Matt at 37signals</a>) So get out there and shoot, shoot shoot!</p>
<p>But when you get ready to display your work to others, pick only the very best of the best. If you have 100 photos, choose 5 to 10 of the very best pictures. This is practice in restraint and taste. Pick the 5 photos that best tell the story of the day. It&#8217;s hard, at first, to let go of shots that you&#8217;ve grown attached to for one reason or another, but after a while you will be able to critique your photos and prune out all the crap. The more you practice shooting and editing, the better you get at both! In fact, the more you practice editing, the better you get at shooting.</p>
<p style="text-align: left;">That&#8217;s all I have on this subject. Good luck and have fun out there!</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.joesak.com/2008/10/31/five-simple-tips-to-taking-better-photos/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Got to try a New Lens</title>
		<link>http://www.joesak.com/2007/03/25/got-to-try-a-new-lens/</link>
		<comments>http://www.joesak.com/2007/03/25/got-to-try-a-new-lens/#comments</comments>
		<pubDate>Sun, 25 Mar 2007 22:33:29 +0000</pubDate>
		<dc:creator>Joe Sak</dc:creator>
				<category><![CDATA[Cameras]]></category>
		<category><![CDATA[Lenses]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.joesak.com/photography/got-to-try-a-new-lens/</guid>
		<description><![CDATA[Did a little photography with the cousins&#8217; dog today. Got to try out a 100mm macro lens. This has convinced me to buy a Sigma Zoom Normal-Telephoto 55-200mm f/4-5.6 DC Autofocus Lens for Canon Digital EOS. I know it&#8217;s a little on the cost-effective side, but it has good reviews and should do me well [...]]]></description>
			<content:encoded><![CDATA[<p>Did a little <a href="http://www.flickr.com/photos/joesak/sets/72157600026626416/">photography with the cousins&#8217; dog</a> today. Got to try out a 100mm macro lens. This has convinced me to buy a <a href="http://www.bhphotovideo.com/bnh/controller/home?O=12039&#038;A=details&#038;Q=&#038;sku=335762&#038;is=USA&#038;addedTroughType=categoryNavigation">Sigma Zoom Normal-Telephoto 55-200mm f/4-5.6 DC Autofocus Lens for Canon Digital EOS</a>. I know it&#8217;s a little on the cost-effective side, but it has good reviews and should do me well for some portraiture and more action shots with the dog, provided I get a clear day. f-Stop starts at 4. I&#8217;d prefer 2.8, but I can&#8217;t shell out more money for a lens right now. If this lens doesn&#8217;t work out, I&#8217;ll just return it. Please <a href="http://www.flickr.com/photos/joesak/sets/72157600026626416/">look at my photos on flickr</a> and leave me some comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.joesak.com/2007/03/25/got-to-try-a-new-lens/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Photobooth Flash</title>
		<link>http://www.joesak.com/2007/01/29/photobooth-flash/</link>
		<comments>http://www.joesak.com/2007/01/29/photobooth-flash/#comments</comments>
		<pubDate>Mon, 29 Jan 2007 06:42:28 +0000</pubDate>
		<dc:creator>Joe Sak</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.joesak.com/design/photobooth-flash/</guid>
		<description><![CDATA[This might destroy my bandwidth but I whipped up this quick little guy tonight: You can see it here I noticed lightbox doesn&#8217;t load until this flash loads. Bah.]]></description>
			<content:encoded><![CDATA[<p>This might destroy my bandwidth but I whipped up this quick little guy tonight:</p>
<p><a href="http://www.msu.edu/~dalerob1/photobooth.swf">You can see it here</a></p>
<p>I noticed lightbox doesn&#8217;t load until this flash loads. Bah.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.joesak.com/2007/01/29/photobooth-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Homemade Photobooth using Photobooth</title>
		<link>http://www.joesak.com/2007/01/27/homemade-photobooth-using-photobooth/</link>
		<comments>http://www.joesak.com/2007/01/27/homemade-photobooth-using-photobooth/#comments</comments>
		<pubDate>Sat, 27 Jan 2007 15:00:10 +0000</pubDate>
		<dc:creator>Joe Sak</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Macbook Pro]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.joesak.com/life/homemade-photobooth-using-photobooth/</guid>
		<description><![CDATA[I made a photobooth last night for our party using my Macbook Pro, the built in iSight, a USB mouse, lots of duct tape and a sheet. It was a huge success, resulting in 512 pictures. It was a lot of fun and I enjoyed making it. Here&#8217;s how I did it I prepared my [...]]]></description>
			<content:encoded><![CDATA[<p>I made a photobooth last night for our party using my Macbook Pro, the built in iSight, a USB mouse, lots of duct tape and a sheet.</p>
<p>It was a huge success, resulting in 512 pictures. It was a lot of fun and I enjoyed making it.<br />
<strong>Here&#8217;s how I did it</strong></p>
<ul>
<li>I prepared my macbook by creating a managed account that could only open Photobooth</li>
<li>I set my Macbook Pro atop my closet shelf</li>
<li>I plugged in a USB mouse</li>
<li>I used a ton of duct tape to put the mouse on the shelf&#8217;s hanger rack, and covered up the optical sensor</li>
<li>I wrote &#8220;Press Here&#8221; on the left button</li>
<li>I positioned the cursor on the &#8220;Take Picture&#8221; button</li>
<li>I hung up a sheet around the area with tape</li>
<li>I placed a lamp inside the enclosed area</li>
<li>I encouraged everyone to use it</li>
</ul>
<p><strong>And the Results</strong><br />
Here are a couple of my favorites from the night:<br />
<a href="http://www.flickr.com/photos/joesak/370555564/" title="Photo Sharing"><img src="http://farm1.static.flickr.com/149/370555564_ffaac47f55.jpg" width="500" height="375" alt="Photo 485.jpg" /></a></p>
<p><a href="http://www.flickr.com/photos/joesak/370554469/" title="Photo Sharing"><img src="http://farm1.static.flickr.com/169/370554469_e1a8860fc3.jpg" width="500" height="375" alt="Photo 412.jpg" /></a></p>
<p><a href="http://www.flickr.com/photos/joesak/370548931/" title="Photo Sharing"><img src="http://farm1.static.flickr.com/139/370548931_507fb28733.jpg" width="500" height="375" alt="Photo 148.jpg" /></a></p>
<p><a href="http://www.flickr.com/photos/joesak/370553992/" title="Photo Sharing"><img src="http://farm1.static.flickr.com/124/370553992_4d797fe8ec.jpg" width="500" height="375" alt="Photo 381.jpg" /></a></p>
<p><a href="http://www.flickr.com/photos/joesak/370555530/" title="Photo Sharing"><img src="http://farm1.static.flickr.com/178/370555530_5dbb256d0a.jpg" width="500" height="375" alt="Photo 482.jpg" /></a></p>
<p><a href="http://flickr.com/photos/joesak/sets/72157594502120007/">Go see the rest of my 512 photobooth pics</a></p>
<p><a href="http://digg.com/submit?phase=2&#038;url=http://www.joesak.com/life/homemade-photobooth-using-photobooth/&#038;title=Homemade%20Photobooth%20Using%20PhotoBooth&#038;bodytext=I%20made%20a%20photobooth%20last%20night%20for%20our%20party%20using%20my%20Macbook%20Pro,%20the%20built%20in%20iSight,%20a%20USB%20mouse,%20lots%20of%20duct%20tape%20and%20a%20sheet&#038;topic=apple"><img src="http://digg.com/img/badges/91x17-digg-button.gif" width="91" height="17" alt="Digg!" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.joesak.com/2007/01/27/homemade-photobooth-using-photobooth/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Database Caching 10/16 queries in 0.009 seconds using disk

Served from: www.joesak.com @ 2010-09-08 01:46:19 -->