<?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>dirtystylus</title>
	<atom:link href="http://dirtystylus.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dirtystylus.com</link>
	<description></description>
	<lastBuildDate>Wed, 25 Apr 2012 14:39:21 +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>Responsive Images Test</title>
		<link>http://dirtystylus.com/2012/04/24/responsive-images-test/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=responsive-images-test</link>
		<comments>http://dirtystylus.com/2012/04/24/responsive-images-test/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 03:48:37 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Photos]]></category>
		<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://dirtystylus.com/?p=1080</guid>
		<description><![CDATA[Update 2012-04-25: Seeing as how the script actually checks for the rendered width of the image, not the actual browser width, I was stuck trying to figure out how to keep the “medium” size for images at 300&#215;300 but still serve those for users all the way up to 500px. I originally had a max-width: [...]]]></description>
			<content:encoded><![CDATA[<p><em><strong>Update 2012-04-25</strong>: Seeing as how the script actually checks for the rendered width of the image, not the actual browser width, I was stuck trying to figure out how to keep the “medium” size for images at 300&#215;300 but still serve those for users all the way up to 500px. I originally had a <strong>max-width: 100%</strong> declaration for images (which is a fairly common practice for images in responsive designs), but reviewing the Viewport Industries example I’ve removed that declaration up until the media query I’ve set at 600px. This way I can set a width threshold of 500px for the medium size, even though the native size of the image is 300px wide. Because the image is now allowed to scale past its native size the script now correctly detects when it has scaled past the 500px threshold I’ve set, and then it serves up the larger size. That way most smaller-screen devices get the medium size.</em></p>
<hr />
<p>This is a test of the <a href="http://viewportindustries.com/blog/automatic-responsive-images-in-wordpress/">responsive images technique outlined by Viewport Industries</a>. Originally I thought that the <a href="https://github.com/joshje/Responsive-Enhance">Responsive Enhance script</a> was checking the screen width, but looking at the script it appears to check the width of the image. So for this example WordPress generates a 300px wide “medium” version which I’ve modified to B &amp; W for easy identification. When the image renders at smaller than <strike>300px</strike> 500px you should get a black &amp; white version of the image, everyone else should get the full-size version. That’s how I understand it, at least.</p>
<div class="figure"><a href="http://dirtystylus.com/wp-content/uploads/2012/04/Mark_Llobrera_23469.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/Mark_Llobrera_23469-300x225.jpg" alt="Feet" title="Feet" data-fullsrc="http://dirtystylus.com/wp-content/uploads/2012/04/Mark_Llobrera_23469-1024x768.jpg" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://dirtystylus.com/2012/04/24/responsive-images-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dinner at Yang Ming</title>
		<link>http://dirtystylus.com/2012/04/24/dinner-at-yang-ming/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dinner-at-yang-ming</link>
		<comments>http://dirtystylus.com/2012/04/24/dinner-at-yang-ming/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 02:43:46 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://dirtystylus.com/?p=1074</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="figure"><a href="http://dirtystylus.com/wp-content/uploads/2012/04/Mark_Llobrera_23500.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/Mark_Llobrera_23500-1024x768.jpg" alt="Dinner at Yang Ming" title="Dinner at Yang Ming" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://dirtystylus.com/2012/04/24/dinner-at-yang-ming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debugging is All About Baselines</title>
		<link>http://dirtystylus.com/2012/04/20/debugging-is-all-about-baselines/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=debugging-is-all-about-baselines</link>
		<comments>http://dirtystylus.com/2012/04/20/debugging-is-all-about-baselines/#comments</comments>
		<pubDate>Fri, 20 Apr 2012 20:28:11 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Technology's Betrayal]]></category>
		<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://dirtystylus.com/?p=1062</guid>
		<description><![CDATA[This started out as a quick post for a particularly obscure CSS/Media Query bug for IE 7—or so I thought. It ended up being a quick reminder on why debugging is all about limiting the number of variables at play. I was encountering a weird situation where a background shorthand stack was failing in IE [...]]]></description>
			<content:encoded><![CDATA[<p>This started out as a quick post for a particularly obscure CSS/Media Query bug for IE 7—or so I thought. It ended up being a quick reminder on why debugging is all about limiting the number of variables at play.</p>
<p>I was encountering a weird situation where a <strong>background</strong> shorthand stack was failing in IE 7, but only when wrapped in a media query. I was using <a href="http://modernizr.com/">modernizr 2.0.6</a>, which had respond.js baked in. So a background declaration like this was failing:</p>
<pre><code>@media only screen and (min-width: 500px) {
    ul li {
        background: rgb(233,233,233);
        background: rgba(233,233,233,.8);
    }
}
</code></pre>
<p>If I took away the <strong>RGBA</strong> declaration the background color would be properly applied. Other properties seemed to take properly, so I was left scratching my head.</p>
<p>With that information in hand, I set about trying to isolate the issue. I downloaded a fresh copy of <a href="http://html5boilerplate.com/">HTML5Boilerplate</a> and set to work. It ended up that I couldn’t replicate the bug I had been facing when boiling the markup down to a single unordered list and minimal CSS. But I was also seeing <em>all</em> declarations in my media queries fail. After some thrashing about,  I read the release notes and this jumped out:</p>
<blockquote><p>
  Respond.js is no longer available by default.
</p></blockquote>
<p>Well, I’ll be. So that explained why my test cases were failing in IE 7 <em>and</em> 8: the media query polyfills were no longer included with modernizr. I pulled a fresh copy of <a href="https://github.com/scottjehl/Respond">respond.js</a>, threw that in, and the bug I started out with no longer occurred. That meant that my bug was probably a result of an older respond.js version, or a result of that being wrapped up in modernizr.</p>
<p>So, a hard lesson re-learned about debugging: <em>When investigating a bug, try to make sure you’re working from a baseline that mirrors the situation where you found it. I was starting from a baseline that didn’t mirror the one that had the bug, since I was using modernizr 2.5.3 (vs 2.0.6). In this case using a newer version of modernizr compounded the confusion further because it no longer included respond.js, a <strong>major</strong> difference.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://dirtystylus.com/2012/04/20/debugging-is-all-about-baselines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Off to Work</title>
		<link>http://dirtystylus.com/2012/04/19/off-to-work/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=off-to-work</link>
		<comments>http://dirtystylus.com/2012/04/19/off-to-work/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 21:57:50 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://dirtystylus.com/?p=1059</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="figure"><a href="http://dirtystylus.com/wp-content/uploads/2012/04/off-to-work.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/off-to-work-1024x767.jpg" alt="Off to Work" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://dirtystylus.com/2012/04/19/off-to-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>City Hall and the El</title>
		<link>http://dirtystylus.com/2012/04/18/city-hall-and-the-el/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=city-hall-and-the-el</link>
		<comments>http://dirtystylus.com/2012/04/18/city-hall-and-the-el/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 14:00:40 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Cameras]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://dirtystylus.com/?p=1033</guid>
		<description><![CDATA[Two more Pinwide shots from the end of yesterday:]]></description>
			<content:encoded><![CDATA[<p>Two more <a href="http://wanderlustcameras.com/products/pinwide.html">Pinwide</a> shots from the end of yesterday:</p>
<div class="figure"><a href="http://dirtystylus.com/wp-content/uploads/2012/04/pinwide-city-hall.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/pinwide-city-hall-1024x768.jpg" alt="City Hall" title="City Hall"/></a></div>
<div class="figure"><a href="http://dirtystylus.com/wp-content/uploads/2012/04/pinwide-subway.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/pinwide-subway-1024x768.jpg" alt="El" title="El" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://dirtystylus.com/2012/04/18/city-hall-and-the-el/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wanderlust Pinwide On the Street</title>
		<link>http://dirtystylus.com/2012/04/17/wanderlust-pinwide-on-the-street/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wanderlust-pinwide-on-the-street</link>
		<comments>http://dirtystylus.com/2012/04/17/wanderlust-pinwide-on-the-street/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 15:12:48 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Cameras]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://dirtystylus.com/?p=1014</guid>
		<description><![CDATA[Stopped just south of City Hall to experiment with the Pinwide outdoors in bright sunlight. This first one was probably the best of the bunch, with the ghost of a woman crossing in the middle of the street layered on top of another woman standing on the concrete island in the background: 5 seconds, ISO [...]]]></description>
			<content:encoded><![CDATA[<p>Stopped just south of City Hall to experiment with the <a href="http://wanderlustcameras.com/products/pinwide.html">Pinwide</a> outdoors in bright sunlight. This first one was probably the best of the bunch, with the ghost of a woman crossing in the middle of the street layered on top of another woman standing on the concrete island in the background:</p>
<div class="figure">
    <a href="http://dirtystylus.com/wp-content/uploads/2012/04/pinwide_2.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/pinwide_2-1024x768.jpg" alt="Pinwide 5s" title="Pinwide 5s" /></a><br />
    <small class="legend">5 seconds, ISO 100</small>
</div>
<p>Five seconds appeared to be the sweet spot. I actually started out with a 15-second exposure, but that looked something like someone opened a rip in the universe on Broad Street.</p>
<div class="figure">
    <a href="http://dirtystylus.com/wp-content/uploads/2012/04/pinwide_1.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/pinwide_1-1024x767.jpg" alt="Pinwide 15s" title="Pinwide 15s" /></a><br />
    <small class="legend">15 seconds, ISO 100</small>
</div>
<p>Two seconds, on the other hand, is just a bit too dim:</p>
<div class="figure">
    <a href="http://dirtystylus.com/wp-content/uploads/2012/04/pinwide_3.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/pinwide_3-1024x768.jpg" alt="Pinwide 2s" title="Pinwide 2s" /></a><br />
    <small class="legend">2 seconds, ISO 100</small>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dirtystylus.com/2012/04/17/wanderlust-pinwide-on-the-street/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Marshmallow Peep S’mores</title>
		<link>http://dirtystylus.com/2012/04/09/marshmallow-peep-smores/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=marshmallow-peep-smores</link>
		<comments>http://dirtystylus.com/2012/04/09/marshmallow-peep-smores/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 02:18:29 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://dirtystylus.com/?p=990</guid>
		<description><![CDATA[Some photos from my mother-in-law’s Peep S’more experiment: dark chocolate and marshmallow Peeps. My daughter, niece, and nephew were all very excited, hovering around the oven as they waited for the Peeps to broil. Toby waiting for Peep S’mores Grace waiting Results Success]]></description>
			<content:encoded><![CDATA[<p>Some photos from my mother-in-law’s Peep S’more experiment: dark chocolate and marshmallow Peeps. My daughter, niece, and nephew were all very excited, hovering around the oven as they waited for the Peeps to broil.</p>
<div class="figure">
<a href="http://dirtystylus.com/wp-content/uploads/2012/04/P4063156.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/P4063156-1024x768.jpg" alt="Peep S’mores" title="Peep S’mores" /></a>
</div>
<div class="figure">
<a href="http://dirtystylus.com/wp-content/uploads/2012/04/P4063159.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/P4063159-1024x1024.jpg" alt="Waiting for S’mores" title="Waiting for S’mores" /></a><br />
<small class="legend">Toby waiting for Peep S’mores</small>
</div>
<div class="figure">
<a href="http://dirtystylus.com/wp-content/uploads/2012/04/P4063162.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/P4063162-768x1024.jpg" alt="Waiting for S’mores" title="Waiting for S’mores" /></a><br />
<small class="legend">Grace waiting</small>
</div>
<div class="figure">
<a href="http://dirtystylus.com/wp-content/uploads/2012/04/P4063168.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/P4063168-1024x768.jpg" alt="Peep S’mores" title="Peep S’mores" width="640" height="480" class="size-large wp-image-1002" /></a><br />
<small class="legend">Results</small>
</div>
<div class="figure">
<a href="http://dirtystylus.com/wp-content/uploads/2012/04/P4063176.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/P4063176-768x1024.jpg" alt="" title="" /></a><br />
<small class="legend">Success</small>
</div>
<div class="figure">
<a href="http://dirtystylus.com/wp-content/uploads/2012/04/P4063178.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/P4063178-1024x768.jpg" alt="" title="" /></a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dirtystylus.com/2012/04/09/marshmallow-peep-smores/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Springtime in Vienna</title>
		<link>http://dirtystylus.com/2012/04/06/springtime-in-vienna/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=springtime-in-vienna</link>
		<comments>http://dirtystylus.com/2012/04/06/springtime-in-vienna/#comments</comments>
		<pubDate>Fri, 06 Apr 2012 00:45:59 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Cameras]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://dirtystylus.com/?p=962</guid>
		<description><![CDATA[Selective focus on micro-4/3rds can be hard to achieve, but the 45mm/f1.8 makes things easier Spring is for photography—everything’s blooming and colors come back full-force. Took the camera out into my in-laws’ backyard. Lately I’ve decided to hunker down and learn the ins-and-outs of this E-P2 that I got just before Sophie was born. I’ve [...]]]></description>
			<content:encoded><![CDATA[<div class="figure">
<a href="http://dirtystylus.com/wp-content/uploads/2012/04/P4052997.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/P4052997-1024x768.jpg" alt="Bloom" title="Bloom"  /></a><br />
<small class="legend">Selective focus on micro-4/3rds can be hard to achieve, but the 45mm/f1.8 makes things easier</small>
</div>
<p>Spring is for photography—everything’s blooming and colors come back full-force. Took the camera out into my in-laws’ backyard. Lately I’ve decided to hunker down and learn the ins-and-outs of this E-P2 that I got just before Sophie was born. I’ve stuck to two lenses, the Panasonic 14mm/f2.5, and the Olympus 45mm/f1.8. The 45mm in particular has become my favorite lens. It’s a touch long, but the results have made me pretty happy.</p>
<p>I haven’t made extensive use of the E-P2’s Art Filters before, so I perched on the top of the sloping backyard and took this photo of my in-laws’ house using the Diorama (Tilt/Shift) filter:</p>
<div class="figure"><a href="http://dirtystylus.com/wp-content/uploads/2012/04/P4053060.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/P4053060-1024x768.jpg" alt="Diorama Art Filter" title="Diorama Art Filter" /></a><br />
<small class="legend">From up the hill (taken with the 14mm/f2.5)</small>
</div>
<p>You can see my daughter and my father-in-law in miniature in the foreground. I like the effect; it seems to work well with scenes like this.</p>
<p>I took another one using the Pinhole filter:</p>
<div class="figure">
<a href="http://dirtystylus.com/wp-content/uploads/2012/04/P4053061.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/P4053061-1024x768.jpg" alt="Pinhole Filter" title="Pinhole filter" /></a>
</div>
<p>The Pinhole filter reminds me more of my old Lomo LC-A—with the extreme vignetting at the corners—than an actual pinhole photograph. Not sure I’ll use it much, especially since I have the Pinwide lens to play with.</p>
<p>A proper portrait from the 45mm/f1.8:</p>
<div class="figure">
<a href="http://dirtystylus.com/wp-content/uploads/2012/04/P4053020.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/P4053020-768x1024.jpg" alt="Amelia" title="Amelia" /></a><br />
<small class="legend">Amelia in her awesome hat</small>
</div>
<p>One of the other things I like about the E-P2 is the different aspect ratios to choose from. I set it to square for a spell:</p>
<div class="figure">
<a href="http://dirtystylus.com/wp-content/uploads/2012/04/P4053054.jpg"><img src="http://dirtystylus.com/wp-content/uploads/2012/04/P4053054-1024x1024.jpg" alt="Blossoms" title="Blossoms"  /></a>
</div>
<p>It blows me away that you can get an E-P2 body <a href="http://www.cameta.com/Olympus-Pen-E-P2-Micro-4-3-Digital-Camera-Body-Black-Outfit-Box-60687-kits.cfm">for just $249 these days</a>. We’re talking about a camera that was ~$800 just a few years ago. It proves once again that if you’re willing to surf just slightly behind the leading edge you can get some absolutely fantastic bargains.</p>
<p>I do miss having a proper viewfinder, though, and while AF on the E-P2 is pretty snappy in good light it gets pretty slow in low light. It seems like Olympus has <a href="http://robinwong.blogspot.com/2012/03/olympus-om-d-e-m5-review-batu-caves-kl.html">addressed both of those issues with the E-M5</a>; hopefully those will be going for a song when I’m ready for a new camera body. Until then I have to remind myself that the limiting factor on most people’s photography is rarely (if ever) equipment-related.</p>
]]></content:encoded>
			<wfw:commentRss>http://dirtystylus.com/2012/04/06/springtime-in-vienna/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clearing out Drupal Modules</title>
		<link>http://dirtystylus.com/2012/03/28/clearing-out-drupal-modules/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=clearing-out-drupal-modules</link>
		<comments>http://dirtystylus.com/2012/03/28/clearing-out-drupal-modules/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 20:46:43 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Technology's Betrayal]]></category>
		<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://dirtystylus.com/?p=949</guid>
		<description><![CDATA[Ran into an interesting situation today attempting to update a few custom modules on a client’s site. I deactivated and uninstalled the modules in the admin console, and then deleted the module folders. They were still showing up in the module list after that, however. Did some searching on the web and found this thread, [...]]]></description>
			<content:encoded><![CDATA[<p>Ran into an interesting situation today attempting to update a few custom modules on a client’s site. I deactivated and uninstalled the modules in the admin console, and then deleted the module folders. They were still showing up in the module list after that, however. Did some searching on the web and found this thread, which mentions how modules <a href="http://drupal.org/node/981282">may still have entries in the database</a>. That thread suggested clearing out the module references from the “system” table in the database.</p>
<p>I felt sure this was the situation I was facing, so I ran through those steps and had the site’s sysadmin clear out the database references. But even after doing that the modules were still showing up in the list.</p>
<p>In the end it turns out it wasn’t database entries. When deploying my files the sysadmin had moved all the old modules into a folder under the <strong>sites/all/modules</strong> folder. So I think Drupal was recursively pulling those old module versions from that nested folder. The sysadmin had claimed he simply replaced all the folders with the build I gave him, but clearly that wasn’t the case.</p>
]]></content:encoded>
			<wfw:commentRss>http://dirtystylus.com/2012/03/28/clearing-out-drupal-modules/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Luminous Landscape on the Fuji X-Pro 1</title>
		<link>http://dirtystylus.com/2012/03/21/luminous-landscape-on-the-fuji-x-pro-1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=luminous-landscape-on-the-fuji-x-pro-1</link>
		<comments>http://dirtystylus.com/2012/03/21/luminous-landscape-on-the-fuji-x-pro-1/#comments</comments>
		<pubDate>Wed, 21 Mar 2012 16:15:01 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Cameras]]></category>

		<guid isPermaLink="false">http://dirtystylus.com/?p=944</guid>
		<description><![CDATA[The report sounds very much like reviews of the X100: beautiful camera and files balanced by some quirks and middling performance. The photos made by that 35/f1.4 look very, very nice. Part 1 Part 2]]></description>
			<content:encoded><![CDATA[<p>The report sounds very much like reviews of the X100: beautiful camera and files balanced by some quirks and middling performance.</p>
<p>The photos made by that 35/f1.4 look very, very nice.</p>
<p><a href="http://www.luminous-landscape.com/reviews/cameras/fuji_x_pro1_review.shtml">Part 1</a></p>
<p><a href="http://www.luminous-landscape.com/reviews/cameras/.shtml">Part 2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dirtystylus.com/2012/03/21/luminous-landscape-on-the-fuji-x-pro-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

