<?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>paul schreiber &#187; photography</title>
	<atom:link href="http://paulschreiber.com/blog/category/photography/feed/" rel="self" type="application/rss+xml" />
	<link>http://paulschreiber.com</link>
	<description>tagline goes here</description>
	<lastBuildDate>Wed, 18 Jan 2012 04:06:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Aperture batch export AppleScript</title>
		<link>http://paulschreiber.com/blog/2010/02/03/aperture-batch-export-applescript/</link>
		<comments>http://paulschreiber.com/blog/2010/02/03/aperture-batch-export-applescript/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 23:08:17 +0000</pubDate>
		<dc:creator>paulschreiber</dc:creator>
				<category><![CDATA[photography]]></category>
		<category><![CDATA[tech]]></category>
		<guid isPermaLink="false">http://paulschreiber.com/blog/?p=1025</guid>
		<description><![CDATA[While in Australia and New Zealand, I shot a ton of photos. Normally, my photos sit on a hard drive and no one sees them. I wanted to make sure that didn&#8217;t happen this time. First, I grouped the photos &#8230; <a href="http://paulschreiber.com/blog/2010/02/03/aperture-batch-export-applescript/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>While in <a href="http://www.flickr.com/photos/paul/collections/72157623299505602/">Australia</a> and <a href="http://www.flickr.com/photos/paul/collections/72157623343283460/">New Zealand</a>, I shot a ton of photos.</p>
<p>Normally, my photos sit on a hard drive and no one sees them. I wanted to make sure that didn&#8217;t happen this time. </p>
<p>First, I grouped the photos in to folders in the Finder. Then, I created a new project in Aperture and imported all of the folders as albums. Then, I went through each folder and rated the photos. If a photo was 4 or 5 stars, I deemed it good enough for flickr.</p>
<p>I wrote the following AppleScript to find the albums, iterate through them, and export JPEGs of all the photos I had starred.</p>
<style type="text/css">
    p.p1 {font: 11.5px Monaco}
    span.s1 {color: #1135f9}
    span.s2 {color: #007618}
    span.s3 {color: #ff2b91}
    span.s4 {color: #8190e1}
    span.s5 {color: #945114}
    span.s6 {color: #d21919}
  </style>
<p class="p1"><span class="s1">property</span> <span class="s2">basePath</span> : <span class="s3">&#8220;harddrive:Users:me:some_photos:&#8221;</span></p>
<p><span class="s1">with timeout of</span> <span class="s3">600</span> <span class="s4">seconds</span><br />
Â  <span class="s1">tell</span> <span class="s4">application</span> <span class="s3">&#8220;Aperture&#8221;</span><br />
Â  Â  <span class="s1">set</span> <span class="s2">myProject</span> <span class="s1">to</span> <span class="s1">get</span> project <span class="s3">&#8220;some_project&#8221;</span><br />
Â  Â  <span class="s1">set</span> <span class="s2">myAlbums</span> <span class="s1">to</span> <span class="s1">every</span> album <span class="s1">of</span> myProject <span class="s1">whose</span> <span class="s1">name</span> <span class="s1">starts with</span> <span class="s3">&#8220;NZ&#8221;</span><br />
Â  Â  <span class="s1">set</span> <span class="s2">albumCount</span> <span class="s1">to</span> <span class="s1">count</span> <span class="s1">items</span> <span class="s1">in</span> myAlbums<br />
Â  Â  <span class="s5">&#8211;set myAlbums to items 16 through albumCount of myAlbums<br />
</span>Â  Â  <br />
Â  Â  <span class="s1">repeat</span> <span class="s1">with</span> currentAlbum <span class="s1">in</span> myAlbums<br />
Â  Â  Â  <span class="s1">set</span> <span class="s2">folderName</span> <span class="s1">to</span> <span class="s1">name</span> <span class="s1">of</span> currentAlbum <span class="s1">&amp;</span> <span class="s3">&#8221; selects&#8221;</span><br />
Â  Â  Â  <br />
Â  Â  Â  <span class="s1">set</span> <span class="s2">imageList</span> <span class="s1">to</span> (<span class="s1">every</span> image <span class="s6">version</span> <span class="s1">in</span> currentAlbum <span class="s1">whose</span> main rating <span class="s1">is greater than</span> <span class="s3">3</span>)<br />
Â  Â  Â  <br />
Â  Â  Â  <span class="s1">try</span><br />
Â  Â  Â  Â  <span class="s1">tell</span> <span class="s4">application</span> <span class="s3">&#8220;Finder&#8221;</span> <span class="s1">to</span> make new folder <span class="s1">at</span> basePath <span class="s1">with</span> <span class="s4">properties</span> {<span class="s6">name</span>:folderName}<br />
Â  Â  Â  <span class="s1">end try</span><br />
Â  Â  Â  <br />
Â  Â  Â  export imageList <span class="s1">to</span> basePath <span class="s1">&amp;</span> folderName using export setting <span class="s3">&#8220;JPEG &#8211; 50% of Original Size&#8221;</span><br />
Â  Â  <span class="s1">end repeat</span><br />
Â  <span class="s1">end tell</span><br />
<span class="s1">end timeout</span></p>
]]></content:encoded>
			<wfw:commentRss>http://paulschreiber.com/blog/2010/02/03/aperture-batch-export-applescript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Iâ€™m on Schmap</title>
		<link>http://paulschreiber.com/blog/2008/06/21/i%e2%80%99m-on-schmap/</link>
		<comments>http://paulschreiber.com/blog/2008/06/21/i%e2%80%99m-on-schmap/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 16:05:55 +0000</pubDate>
		<dc:creator>paulschreiber</dc:creator>
				<category><![CDATA[photography]]></category>
		<category><![CDATA[web]]></category>
		<guid isPermaLink="false">http://paulschreiber.com/blog/?p=617</guid>
		<description><![CDATA[Schmap, an online city guide, has published several of my photos. In San Francisco: Gemma Hayes at Cafe du Nord And elsewhere:]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.schmap.com/">Schmap</a>, an online city guide, has published several of my photos. In San Francisco:</p>
<ul>
<li><a href="http://www.schmap.com/?m=iphone#uid=sanfrancisco&#038;sid=entertainment_livemusic&#038;p=7114&#038;i=7114<br />
&#8220;>Melissa Rapp at the Hotel Utah</a>
</li>
<li><a href="http://www.schmap.com/?m=iphone#uid=sanfrancisco&#038;sid=entertainment_concerts&#038;p=6623&#038;i=6623">Peter Adams at the Great American Music Hall</a>
</li>
<li><a href="http://www.schmap.com/?m=iphone#uid=sanfrancisco&#038;sid=entertainment_livemusic&#038;p=338936&#038;i=338936_2<br />
&#8220;>Gemma Hayes at Cafe du Nord</a>
</li>
</ul>
<p>And elsewhere:</p>
<ul>
<li><a href="http://www.schmap.com/?m=iphone#uid=newyork&#038;sid=restaurants_seafood&#038;p=15649&#038;i=15649<br />
&#8220;>Aquagrill</a> (NYC)
</li>
<li><a href="http://www.schmap.com/?m=iphone#uid=austin&#038;sid=restaurants_french&#038;p=14299&#038;i=14299_1">Chez Nous</a> (Austin)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://paulschreiber.com/blog/2008/06/21/i%e2%80%99m-on-schmap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TEDTalks: Blaise Aguera y Arcas</title>
		<link>http://paulschreiber.com/blog/2007/08/18/tedtalks-blaise-aguera-y-arcas/</link>
		<comments>http://paulschreiber.com/blog/2007/08/18/tedtalks-blaise-aguera-y-arcas/#comments</comments>
		<pubDate>Sat, 18 Aug 2007 14:01:43 +0000</pubDate>
		<dc:creator>paulschreiber</dc:creator>
				<category><![CDATA[photography]]></category>
		<category><![CDATA[tech]]></category>
		<guid isPermaLink="false">http://paulschreiber.com/blog/2007/08/18/tedtalks-blaise-aguera-y-arcas/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><!--cut and paste--><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="432" height="285" id="VE_Player" align="middle"><param name="movie" value="http://static.videoegg.com/ted/flash/loader.swf"></param><param NAME="FlashVars" VALUE="bgColor=FFFFFF&#038;file=http://static.videoegg.com/ted/movies/BLAISEAGUERAYARCAS-2007_high.flv&#038;autoPlay=false&#038;fullscreenURL=http://static.videoegg.com/ted/flash/fullscreen.html&#038;forcePlay=false&#038;logo=&#038;allowFullscreen=true"></param><param name="quality" value="high"></param><param name="allowScriptAccess" value="always"></param><param name="bgcolor" value="#FFFFFF"></param><param name="scale" value="noscale"></param><param name="wmode" value="window"><embed src="http://static.videoegg.com/ted/flash/loader.swf" FlashVars="bgColor=FFFFFF&#038;file=http://static.videoegg.com/ted/movies/BLAISEAGUERAYARCAS-2007_high.flv&#038;autoPlay=false&#038;fullscreenURL=http://static.videoegg.com/ted/flash/fullscreen.html&#038;forcePlay=false&#038;logo=&#038;allowFullscreen=true" quality="high" allowScriptAccess="always" bgcolor="#FFFFFF" scale="noscale" wmode="window" width="432" height="285" name="VE_Player" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></param></object></p>
]]></content:encoded>
			<wfw:commentRss>http://paulschreiber.com/blog/2007/08/18/tedtalks-blaise-aguera-y-arcas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anya Marina house concert photos</title>
		<link>http://paulschreiber.com/blog/2007/02/09/anya-marina-house-concert-photos/</link>
		<comments>http://paulschreiber.com/blog/2007/02/09/anya-marina-house-concert-photos/#comments</comments>
		<pubDate>Fri, 09 Feb 2007 07:15:05 +0000</pubDate>
		<dc:creator>paulschreiber</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[photography]]></category>
		<guid isPermaLink="false">http://paulschreiber.com/blog/2007/02/09/anya-marina-house-concert-photos/</guid>
		<description><![CDATA[Eric Carter and Enric Teller posted some photos of last month&#8217;s fantastic Anya Marina house concert.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dizzypixel.com/photo/AnyaMarina">Eric Carter</a> and <a href="http://flickr.com/photos/cirne/sets/72157594500572069/">Enric Teller</a> posted some photos of last month&#8217;s <em>fantastic</em> Anya Marina house concert.</p>
]]></content:encoded>
			<wfw:commentRss>http://paulschreiber.com/blog/2007/02/09/anya-marina-house-concert-photos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My flickr profile widget</title>
		<link>http://paulschreiber.com/blog/2007/01/30/my-flickr-profile-widget/</link>
		<comments>http://paulschreiber.com/blog/2007/01/30/my-flickr-profile-widget/#comments</comments>
		<pubDate>Tue, 30 Jan 2007 23:54:58 +0000</pubDate>
		<dc:creator>paulschreiber</dc:creator>
				<category><![CDATA[photography]]></category>
		<guid isPermaLink="false">http://paulschreiber.com/blog/2007/01/30/my-flickr-profile-widget/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://flickr.com/photos/37996608105@N01/"><img width="500" height="100" src="http://bighugelabs.com/flickr/profilewidget/randomint/000000/ffffff/37996608105@N01.jpg" alt="Paul Schreiber. Get yours at bighugelabs.com/flickr" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://paulschreiber.com/blog/2007/01/30/my-flickr-profile-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>flickr: toys and inspiration</title>
		<link>http://paulschreiber.com/blog/2006/02/21/flickr-toys-and-inspiration/</link>
		<comments>http://paulschreiber.com/blog/2006/02/21/flickr-toys-and-inspiration/#comments</comments>
		<pubDate>Tue, 21 Feb 2006 08:16:26 +0000</pubDate>
		<dc:creator>paulschreiber</dc:creator>
				<category><![CDATA[photography]]></category>
		<category><![CDATA[web]]></category>
		<guid isPermaLink="false">http://paulschreiber.com/blog/2006/02/21/flickr-toys-and-inspirating/</guid>
		<description><![CDATA[fun flickr toys that let you make calendars, billboards, fortune cookies and more out of your photos. fantastically beautiful high speed photos of water, sparks and motion. and lightning.]]></description>
			<content:encoded><![CDATA[<p><a href="http://flagrantdisregard.com/flickr/">fun flickr toys</a> that let you make calendars, billboards, fortune cookies and more out of your photos.</p>
<p>fantastically beautiful <a href="http://www.flickr.com/groups/highspeed/">high speed photos</a> of water, sparks and motion. and <a href="http://www.flickr.com/groups/storms/">lightning</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://paulschreiber.com/blog/2006/02/21/flickr-toys-and-inspiration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>time&#8217;s best photos of 2005</title>
		<link>http://paulschreiber.com/blog/2006/01/07/times-best-photos-of-2005/</link>
		<comments>http://paulschreiber.com/blog/2006/01/07/times-best-photos-of-2005/#comments</comments>
		<pubDate>Sun, 08 Jan 2006 04:32:50 +0000</pubDate>
		<dc:creator>paulschreiber</dc:creator>
				<category><![CDATA[photography]]></category>
		<guid isPermaLink="false">http://paulschreiber.com/blog/2006/01/07/times-best-photos-of-2005/</guid>
		<description><![CDATA[Time magazine&#8217;s best photos of 2005.]]></description>
			<content:encoded><![CDATA[<p><cite>Time</cite> magazine&#8217;s <a href="http://www.time.com/time/yip/2005/index.html">best photos of 2005</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://paulschreiber.com/blog/2006/01/07/times-best-photos-of-2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>photos of the year</title>
		<link>http://paulschreiber.com/blog/2005/12/22/photos-of-the-year/</link>
		<comments>http://paulschreiber.com/blog/2005/12/22/photos-of-the-year/#comments</comments>
		<pubDate>Fri, 23 Dec 2005 06:48:18 +0000</pubDate>
		<dc:creator>paulschreiber</dc:creator>
				<category><![CDATA[journalism]]></category>
		<category><![CDATA[photography]]></category>
		<guid isPermaLink="false">http://paulschreiber.com/blog/2005/12/22/photos-of-the-year/</guid>
		<description><![CDATA[Reuters 2005 photos of the year.]]></description>
			<content:encoded><![CDATA[<p><a href="http://photos.reuters.com/Pictures/galleries/showcases/showcase_slide.asp?storyID=632702912668906250&#038;urlStr=/pictures/&#038;directory=/configData/Pictures/&#038;edition=US">Reuters 2005 photos of the year</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://paulschreiber.com/blog/2005/12/22/photos-of-the-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>d70 focus chart</title>
		<link>http://paulschreiber.com/blog/2005/09/25/d70-focus-chart/</link>
		<comments>http://paulschreiber.com/blog/2005/09/25/d70-focus-chart/#comments</comments>
		<pubDate>Mon, 26 Sep 2005 05:06:25 +0000</pubDate>
		<dc:creator>paulschreiber</dc:creator>
				<category><![CDATA[photography]]></category>
		<guid isPermaLink="false">http://paulschreiber.com/blog/2005/09/25/d70-focus-chart/</guid>
		<description><![CDATA[test your Nikon D70 for back focus problems.]]></description>
			<content:encoded><![CDATA[<p><a href="http://md.co.za/d70/chart.html">test your Nikon D70</a> for back focus problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://paulschreiber.com/blog/2005/09/25/d70-focus-chart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>lisa wiseman photography</title>
		<link>http://paulschreiber.com/blog/2005/09/11/lisa-wiseman-photography/</link>
		<comments>http://paulschreiber.com/blog/2005/09/11/lisa-wiseman-photography/#comments</comments>
		<pubDate>Sun, 11 Sep 2005 23:24:13 +0000</pubDate>
		<dc:creator>paulschreiber</dc:creator>
				<category><![CDATA[photography]]></category>
		<guid isPermaLink="false">http://paulschreiber.com/blog/2005/09/11/lisa-wiseman-photography/</guid>
		<description><![CDATA[for google&#8217;s benefit: lisa wiseman.]]></description>
			<content:encoded><![CDATA[<p>for google&#8217;s benefit: <a href="http://www. lisawiseman.com/">lisa wiseman</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://paulschreiber.com/blog/2005/09/11/lisa-wiseman-photography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

