<?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>Bob Rockefeller</title>
	<atom:link href="http://www.bobrockefeller.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bobrockefeller.com</link>
	<description>Photography and Macintosh tips, reviews and techniques.</description>
	<lastBuildDate>Wed, 15 Feb 2012 01:20:32 +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>Using Google Web Font Variants</title>
		<link>http://www.bobrockefeller.com/2012/02/14/using-google-web-font-variants/</link>
		<comments>http://www.bobrockefeller.com/2012/02/14/using-google-web-font-variants/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 01:20:32 +0000</pubDate>
		<dc:creator>Bob Rockefeller</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.bobrockefeller.com/?p=1477</guid>
		<description><![CDATA[With the availability of Google Web Fonts,  many web designers are taking advantage of the improved and controlled typography they allow. I did some type redesign over at Bob Rockefeller Photography using the sans-serif face Arimo for titles and headers, and the serif face Lora for body text. Making a simple font available on a [...]]]></description>
			<content:encoded><![CDATA[<p>With the availability of <a href="http://www.google.com/webfonts#HomePlace:home" target="_blank">Google Web Fonts</a>,  many web designers are taking advantage of the improved and controlled typography they allow. I did some type redesign over at <a href="http://www.bobrockefellerphotography.com/" target="_blank">Bob Rockefeller Photography</a> using the sans-serif face Arimo for titles and headers, and the serif face Lora for body text.</p>
<p>Making a simple font available on a website is a simple matter of adding a line like this at the head or your CSS file (using Arimo as an example):</p>
<p style="padding-left: 30px;"><span class="mycode">@import url(http://fonts.googleapis.com/css?family=Arimo);</span></p>
<p>Google’s website makes it easy to generate the needed code for any number of fonts and styles. And that’s where a little more knowledge is required.</p>
<p>To use the normal style of the font, your CSS just has to assign it to a rule, like this:</p>
<p style="padding-left: 30px;"><span class="mycode">font-family: 20px Arimo, sans-serif;</span></p>
<p>Notice that I’ve included the browser’s default san-serif face as a backup, in case there is something wrong with Google’s servers. At least the user will see a readable version of your site.</p>
<p>And getting to the italic version of the font is straight forward, too, just use:</p>
<p style="padding-left: 30px;"><span class="mycode">font-style: italic;</span></p>
<p>Now you need to be a little more careful for any of the “fancier” available faces, such as the different weights that Exo comes in (100, 200, 300, 400, 500, 600, 700, 800, 900). Obviously simply using:</p>
<p style="padding-left: 30px;"><span class="mycode">font-style: bold;</span></p>
<p>won’t do it alone. The “trick” is to use the font-weight property, like this:</p>
<p style="padding-left: 30px;"><span class="mycode">font-weight: 400;</span></p>
<p>or:</p>
<p style="padding-left: 30px;"><span class="mycode">font-weight: 700;</span></p>
<p>to get at the various font weights any font face may have available (assuming you’ve loaded them all back in the <span class="mycode">@import</span> step). For font faces with different weights of italics, just combine the two.</p>
<p>To be sure you’re getting the font face you want in the situation you want it, your CSS file will have to be sure to define all the situations in your design:</p>
<p style="padding-left: 30px;"><span class="mycode">strong,<br />
b {<br />
font-family: “Lora”, serif;<br />
font-weight: 700;<br />
}</span></p>
<p style="padding-left: 30px;"><span class="mycode">p em {<br />
font-family: “Lora”, serif;<br />
font-style: italic;<br />
}</span></p>
<p>That’s pretty much it. If you have any techniques to add, please add them in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bobrockefeller.com/2012/02/14/using-google-web-font-variants/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress + ProofBuddy + NextGEN Gallery</title>
		<link>http://www.bobrockefeller.com/2012/02/04/wordpress-proofbuddy-nextgen-gallery/</link>
		<comments>http://www.bobrockefeller.com/2012/02/04/wordpress-proofbuddy-nextgen-gallery/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 22:46:52 +0000</pubDate>
		<dc:creator>Bob Rockefeller</dc:creator>
				<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://www.bobrockefeller.com/?p=1303</guid>
		<description><![CDATA[After upgrading to the Developer’s Version of the WordPress framework Headway, I thought I should learn more about it by creating my photography site with it. Bob Rockefeller Photography had been running on the PhotoDeck service, but I wanted to bring the whole of it – blog, portfolio and client proofing – all together on the same [...]]]></description>
			<content:encoded><![CDATA[<p>After upgrading to the Developer’s Version of the <a href="http://wordpress.org/" target="_blank">WordPress</a> framework <a href="http://headwaythemes.com/" target="_blank">Headway</a>, I thought I should learn more about it by creating my photography site with it. <a href="http://www.bobrockefellerphotography.com/" target="_blank">Bob Rockefeller Photography</a> had been running on the <a href="http://photodeck.com/" target="_blank">PhotoDeck</a> service, but I wanted to bring the whole of it – blog, portfolio and client proofing – all together on the same server. So a project was born.</p>
<p>The decision on the platform (WordPress) and the framework (Headway) having been made, I did some research on a good portfolio system and didn’t take long to find that <a href="http://alexrabe.de/wordpress-plugins/nextgen-gallery/" target="_blank">NextGen Gallery</a> would more than do the trick. It is very powerful and adaptable, towering above the competition.</p>
<p><img class="alignright  wp-image-1315" title="ProofBuddy" src="http://www.bobrockefeller.com/wp-content/uploads/2012/02/ProofBuddy-»-Online-proofing-software-for-professional-photographers-350x72.jpg" alt="" width="280" height="58" />Finding a client proofing system wasn’t so easy. Many photographers use services such as PhotoDeck, <a href="http://www.photoshelter.com/" target="_blank">PhotoShelter</a>, <a href="http://www.smugmug.com/pro/" target="_blank">SmugMug Pro</a> and <a href="http://www.zenfolio.com/" target="_blank">Zenfolio</a>, which means the market for WordPress client proofing systems is small. What I found were <a href="http://www.proofbuddy.com/" target="_blank">ProofBuddy</a> (free for Lite and $150 for Pro), <a href="http://www.photographyorders.com/" target="_blank">Photography Orders</a> ($200), and <a href="http://cmsaccount.com/photostore/overview/" target="_blank">Photo Video Store</a> ($83). Each had their strong points and each would handle the chore, but in the end I picked ProofBuddy. I’m using the Lite version 2.0 now, but intend to upgrade to Pro when version 2.1 is released.</p>
<p>I had two main requirements for the client proofing system: it had to be easy for inexperienced clients to use and it had to be adaptable enough to be styled to match the rest of the site. With the blog, portfolio and proofing areas all running together, they needed to look like a unified whole, not three independent parts. ProofBuddy’s theme system fit the bill for adaptability – the CSS was exposed and there were template files for tweaking the HTML and PHP as needed.</p>
<p><a href="http://www.bobrockefellerphotography.com/"><img class="alignleft  wp-image-1318" title="brp" src="http://www.bobrockefeller.com/wp-content/uploads/2012/02/brp-350x338.jpg" alt="" width="245" height="237" /></a>While the proofing area is not flashy, it has all the pieces needed for a client to easily view their proofs and order the images they want in the sizes they need. The client gets automatic emails confirming the order and on any status updates. I get emails for the orders and can manage multiple clients easily from the administrative interface. There are options for me to offer discount coupons and the Pro version will allow me to sell photo packages.</p>
<p>ProofBuddy connects easily to PayPal as its only payment system, which is fine with me. Most of my work is local and clients pay me directly, anyway. Others may need the more variety payment systems offered by the other options.</p>
<p>In the end, I’m pleased with the results. My customizations are pretty well isolated from Headway, NextGEN Gallery and ProofBuddy so that updates to those key systems won’t require much design (or redesign) effort. Take a look at the <a href="http://www.bobrockefellerphotography.com/" target="_blank">Bob Rockefeller Photography</a> site and see how it all came out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bobrockefeller.com/2012/02/04/wordpress-proofbuddy-nextgen-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Genesis 1.7 vs. Headway 3.0</title>
		<link>http://www.bobrockefeller.com/2012/01/13/genesis-1-7-vs-headway-3-0/</link>
		<comments>http://www.bobrockefeller.com/2012/01/13/genesis-1-7-vs-headway-3-0/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 20:05:34 +0000</pubDate>
		<dc:creator>Bob Rockefeller</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.bobrockefeller.com/?p=1245</guid>
		<description><![CDATA[The good news for WordPress developers is that a tremendous range of professionally designed and developed themes exist that will let you get a site running quickly. Among them are “themes” that perhaps should be referred to as frameworks because they are much more than a simple theme. These frameworks allow the designer/developer to add or create child themes [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bobrockefeller.com/wp-content/uploads/2011/11/genesis.jpg" rel="lightbox[1245]"><img class="alignleft size-full wp-image-1259" title="genesis" src="http://www.bobrockefeller.com/wp-content/uploads/2011/11/genesis.jpg" alt="" width="150" height="125" /></a>The good news for <a href="http://wordpress.org/" target="_blank">WordPress</a> developers is that a tremendous range of professionally designed and developed themes exist that will let you get a site running quickly. Among them are “themes” that perhaps should be referred to as frameworks because they are much more than a simple theme. These frameworks allow the designer/developer to add or create child themes that use the framework as their base and simply add in the look required for a given site.</p>
<p><a href="http://www.bobrockefeller.com/wp-content/uploads/2011/11/sprite-1.png" rel="lightbox[1245]"><img class="size-thumbnail wp-image-1262 alignright" title="sprite-1" src="http://www.bobrockefeller.com/wp-content/uploads/2011/11/sprite-1-200x268.png" alt="" width="120" height="161" /></a>The most well known of these frameworks are probably <a href="http://diythemes.com/" target="_blank">Thesis</a>, <a href="http://www.studiopress.com/themes/genesis" target="_blank">Genesis</a> and <a href="http://headwaythemes.com/" target="_blank">Headway</a>. All of them are powerful and each are used by a great number of professionally done sites. But they are not the same. I have experience with Genesis and Headway and would like to describe how they are the same and how they are different.</p>
<h6>The Same</h6>
<p>Both Genesis and Headway provide these features in common:</p>
<ul>
<li>Advance control for Search Engine Optimization (SEO)</li>
<li>Personal and Developer licenses</li>
<li>Complete flexibility of design using HTML, PHP and CSS</li>
<li>Well structured code (especially well organized CSS classes)</li>
<li>Available child themes that are ready to go out of the box or that can be modified and customized as needed</li>
<li>Available custom widgets</li>
<li>Excellent support forums</li>
<li>A community of professional developers available for hire</li>
<li>Online documentation</li>
</ul>
<h6>Different</h6>
<p>And they are different in these ways:</p>
<ul>
<li>Extras in the developer license – Genesis gives you all their themes, those they have now and any that are developed; Headway provides special developer tutorial videos</li>
<li>Updates – Genesis provides updates free for life, Headway requires a yearly subscription</li>
<li>Design approach – Genesis is text based, Headway is visually based</li>
</ul>
<h6>Text vs. Visual</h6>
<p>It is the last of the differences that is by far the greatest differentiator between these two powerful theme frameworks. Developing in Genesis is like programming – you grab your favorite text editor (mine is <a href="http://www.panic.com/coda/" target="_blank">Coda</a>) and make the modifications and adjustments you want. Headway shares a lot in common with the web platform <a href="http://www.squarespace.com/" target="_blank">Squarespace</a>, but is based on WordPress. While you always have the option to break out the text editor and dive head first into the HTML, PHP and CSS code, the primary intention is that the bulk of your development efforts will be spent in the <a href="http://headwaythemes.com/features/visual-editor/" target="_blank">Visual Editor</a>.</p>
<p>The <a href="http://headwaythemes.com/features/visual-editor/" target="_blank">Headway Visual Editor</a> allows a designer to start from scratch and design a site using drag and drop techniques to place the building blocks of the site (the header, content, widget area, footer and such) and then simply click on the options to set the style of the elements used (fonts, colors, alignment, headings, link hovers, borders and so on). Or you can start with a child theme and modify that with the same approach.</p>
<p>The Visual Editor allows a lot of control, but not all of the control. Each block or element can only be modified in the Visual Editor using the tools Headway has created in that environment. If you want a header title to have a graphic background, for example, you can do that in the Visual Editor.</p>
<h6>Headway Version 3.0</h6>
<p>For the comparison in this article, I have discussed the just released version 3 of the Headway framework. The basic concept of Headway has not changed – it wants to be a visual design environment. Version 3 has just picked up where version 2 left off and provided more power in the Visual Editor. But version 3 is still a work in progress and does not yet include all the features of version 2. They are coming.</p>
<p>Notably, version 3 has no upgrade path for web sites from version 2. That, too is coming.</p>
<p>New with version 3 is the <a href="http://headwaythemes.com/pricing/" target="_blank">licensing and pricing</a> model. Gone is the lifetime support; now its a yearly renewal. Lucky for me I got a developer’s license before the release of version 3 so I am grandfathered in for support for life.</p>
<h6>Drag-and-Drop vs. Code</h6>
<p>I’m not a big fan of the way Headway version 3 stores CSS in the WordPress database instead of in text files that can be easily edited in Coda. And I’ve been a somewhat vocal critic of the organization and user interface of the Visual Editor. The good news, at least for me, is that you can do all your layout work (which can be very tedious in pure text) in the Visual Editor and then do your design work (CSS) in a text editor – a tip I got from <a href="http://headwayexpert.com/" target="_blank">Headway Expert</a>.</p>
<p>There’s more for me to learn since I’ve been using Genesis, and liking it, for a while now. But I started work on a new web site for my photography work and decided to use Headway together with <a href="http://leafs.341design.com.au/gallery-demo-page/" target="_blank">Gallery+</a> and <a href="http://www.proofbuddy.com/" target="_blank">ProofBuddy</a>. So far so good and it has let me really get down into the HTML and CSS behind the scenes. I’m doing most of the work using <a href="http://macrabbit.com/espresso/" target="_blank">Espresso</a> version 2 as a change of pace from Coda and a way to compare those two strong development tools.</p>
<p>So I may have a more in-depth blog post about Headway and Espresso when that project is complete.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bobrockefeller.com/2012/01/13/genesis-1-7-vs-headway-3-0/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Focus Pyramid</title>
		<link>http://www.bobrockefeller.com/2011/12/22/the-focus-pyramid/</link>
		<comments>http://www.bobrockefeller.com/2011/12/22/the-focus-pyramid/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 23:02:17 +0000</pubDate>
		<dc:creator>Bob Rockefeller</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.bobrockefeller.com/?p=1276</guid>
		<description><![CDATA[Today most of our upper end cameras have the ability to adjust focus on a lens-by-lens basis. Using that feature can eliminate the front focus and back focus problems that some report with their lens/camera combination. That’s the good news, the bad news is that you have to find a way to determine what focus [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bobrockefeller.com/wp-content/uploads/2011/12/lensalign.png" rel="lightbox[1276]"><img class="alignright size-full wp-image-1278" title="lensalign" src="http://www.bobrockefeller.com/wp-content/uploads/2011/12/lensalign.png" alt="" width="200" height="199" /></a>Today most of our upper end cameras have the ability to adjust focus on a lens-by-lens basis. Using that feature can eliminate the front focus and back focus problems that some report with their lens/camera combination. That’s the good news, the bad news is that you have to find a way to determine what focus adjustment to store in the camera for each lens.</p>
<p>One of those ways is to use the <a href="http://michaeltapesdesign.com/lensalign.html" target="_blank">LensAlign</a> system from <a href="http://michaeltapesdesign.com/" target="_blank">Michael Tapes Design</a>. I have that system and I guess I should just say that I don’t use it. For me, it’s just too big a hassle getting it all set up and aligned to the camera. Not that it doesn’t work or it’s not accurate, because I believe that it is.</p>
<p>So my lenses have ended up unadjusted in the settings of my camera. And the LensAlign sits in its box on the shelf.</p>
<p><img class="alignleft size-medium wp-image-1283" title="FocusPyramid" src="http://www.bobrockefeller.com/wp-content/uploads/2011/12/FocusPyramid-350x215.jpg" alt="" width="350" height="215" />On Twitter I started seeing tweets about something called the <a href="http://focuspyramid.com/" target="_blank">Focus Pyramid</a> from Allure Multimedia. The Focus Pyramid is much simpler in both design and use compared to the LensAlign. For one thing, the Focus Pyramid is made out of cardboard that you fold up into a pyramid yourself!</p>
<p>To use it, you just put it on a flat surface, aim your camera at it, and shoot some frames to identify where the focus point of your combination is. Give that lens a little + or a little — in the focus adjustment menus of your camera, and take another shot to confirm focus at the center of the target. They have a <a href="http://focuspyramid.com/autofocus-lens-calibration-tool-canon-nikon-sony-olympus-and-pentax-af/" target="_blank">video to show you how it works</a>.</p>
<p>The wildest thing? It cost just $9.99 as its introductory price. I couldn’t pass it up, at that price, and ordered one.</p>
<p>It works as advertised and takes just a few minutes to get a lens set up for your camera. All my lenses have been checked and adjusted (it just so happens that they all needed some about of + correction). I need to take more pictures to prove this all out, but the one’s I’ve shot so far have been focused right on the first shot at the widest lens apertures.</p>
<p>Now you surely know that a $9.99 system can’t be “just the same as” a $79.95 system. I suspect that the Focus Pyramid is less accurate because it is made of flexible cardboard and doesn’t have any system to be sure that it is, in fact, level and square to your camera’s focal plane. But it worked fine for my lenses. I don’t have any lenses with maximum apertures greater than f/2.8, so there could be trouble with f/1.4 or f/1.2 lenses, I suppose.</p>
<p>Anyway, for $9.99, you can’t lose much by trying one.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bobrockefeller.com/2011/12/22/the-focus-pyramid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pixelmator 2.0 For Photographers?</title>
		<link>http://www.bobrockefeller.com/2011/11/22/pixelmator-2-0-for-photographers/</link>
		<comments>http://www.bobrockefeller.com/2011/11/22/pixelmator-2-0-for-photographers/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 20:39:40 +0000</pubDate>
		<dc:creator>Bob Rockefeller</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.bobrockefeller.com/?p=1219</guid>
		<description><![CDATA[With the upgraded release of Pixelmator 2.0, its time to update my previous Pixelmator For Photographers? article. When I wrote that article, I thought there were a few key things missing for photographers: High pass filter Healing brush or patch tool Adjustment layers 16-bit image processing There is only rudimentary localized sharpening Huge support community [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bobrockefeller.com/wp-content/uploads/2011/11/friendly.jpg" rel="lightbox[1219]"><img class="size-medium wp-image-1220 alignright" title="friendly" src="http://www.bobrockefeller.com/wp-content/uploads/2011/11/friendly-350x194.jpg" alt="" width="350" height="194" /></a>With the upgraded release of <a href="http://www.pixelmator.com/" target="_blank">Pixelmator 2.0</a>, its time to update my previous <a title="Pixelmator For Photographers?" href="http://www.bobrockefeller.com/2011/04/24/pixelmator-for-photographers/">Pixelmator For Photographers?</a> article.</p>
<p>When I wrote that article, I thought there were a few key things missing for photographers:</p>
<div>
<ul>
<li>High pass filter</li>
<li>Healing brush or patch tool</li>
<li>Adjustment layers</li>
<li>16-bit image processing</li>
<li>There is only rudimentary localized sharpening</li>
<li>Huge support community and resources</li>
</ul>
</div>
<p>Version 2.0 has closed the gap somewhat by adding:</p>
<div>
<ul>
<li>A healing brush</li>
<li>16-bit image processing</li>
</ul>
</div>
<p>And as extras, we now have:</p>
<div>
<ul>
<li>Content aware fill (although it’s not as strong an implementation as in Photoshop yet)</li>
<li>Vector tools</li>
<li>Dodge and burn tools</li>
<li>Full Mac OS X 10.7 Lion studlyness</li>
<li>A $29.99 price on the <a href="http://www.pixelmator.com/buy/" target="_blank">Mac App Store</a></li>
</ul>
<p>I still don’t think Pixelmator is ready as a Photoshop or Photoshop Elements replacement, but at thirty bucks, it covers a lot of ground. I have it and use it for light duty image editing.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.bobrockefeller.com/2011/11/22/pixelmator-2-0-for-photographers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PocketWizard vs. RadioPopper for Nikon</title>
		<link>http://www.bobrockefeller.com/2011/09/19/pocketwizard-vs-radiopopper-for-nikon/</link>
		<comments>http://www.bobrockefeller.com/2011/09/19/pocketwizard-vs-radiopopper-for-nikon/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 11:01:00 +0000</pubDate>
		<dc:creator>Bob Rockefeller</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.bobrockefeller.com/?p=1183</guid>
		<description><![CDATA[Different than some photographers, my style of flash photography benefits from TTL control of the off camera flashes. I know many stick to manual control, but TTL works for what I do. And so I want a TTL based system that does not depend on line-of-sight or the “right” ambient light conditions. I am using the RadioPopper [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1188" class="wp-caption alignright" style="width: 160px"><img class="size-full wp-image-1188" title="RadioPopperPXReciever" src="http://www.bobrockefeller.com/wp-content/uploads/2011/09/RadioPopperPXReciever.jpg" alt="RadioPopper PX Receiver" width="150" height="150" /><p class="wp-caption-text">RadioPopper PX Receiver</p></div>
<p>Different than some photographers, my style of flash photography benefits from TTL control of the off camera flashes. I know many stick to manual control, but TTL works for what I do. And so I want a TTL based system that does not depend on line-of-sight or the “right” ambient light conditions.</p>
<p>I am using the RadioPopper PX system with my Nikon speedlights (<a href="http://www.nikonusa.com/Nikon-Products/Product/Flashes/4807/SB-900-AF-Speedlight.html" target="_blank">SB-900</a>s) and used them, before my switch to Nikon, with Canon speedlites (<a href="http://www.usa.canon.com/cusa/support/consumer/eos_slr_camera_systems/flashes/speedlite_580ex" target="_blank">580 EX</a>s). They work very well and provide all of the native Nikon (i-TTL) or Canon (E-TTL) system features because they work by intercepting the pre-flash signals, translating them into radio signals, transmitting those signals to the receiver and then decoding the radio signals back into light. Here is a past article of mine about the <a title="PocketWizard vs. RadioPopper For Canon eTTL" href="http://www.bobrockefeller.com/2010/11/13/pocketwizard-vs-radiopopper-for-canon-ettl/" target="_blank">RapioPopper PX system for Canon</a>.</p>
<p>The main reason I chose the RadioPopper PX system for my Canon flashes was due to the RF interference problems the PocketWizard ControlTL system has with Canon flash (which is not true of their PocketWizard Plus II or MultiMAX systems). Now that I’m using Nikon flashes, the PocketWizard ControlTL system is again an option as there is no such interference problem. So I wanted to document my research comparing the two systems for Nikon flashes. I don’t have the PocketWizards, so that information is based on online research.</p>
<div id="attachment_1193" class="wp-caption alignleft" style="width: 170px"><a href="http://www.bobrockefeller.com/wp-content/uploads/2011/09/MiniTT1.jpg" rel="lightbox[1183]"><img class="size-thumbnail wp-image-1193 " title="MiniTT1" src="http://www.bobrockefeller.com/wp-content/uploads/2011/09/MiniTT1-200x200.jpg" alt="PocketWizard MiniTT1" width="160" height="160" /></a><p class="wp-caption-text">PocketWizard MiniTT1</p></div>
<p>A key difference in the systems is that the PocketWizards use their own flash control “language” called <a href="http://www.pocketwizard.com/inspirations/technology/controltl/" target="_blank">ControlTL</a> (Control The Light). They work by taking the camera’s TLL signal from the camera’s hot shoe and converting that to ControlTL, transmitting that to the receiver and then sending commands to the flash through the flash’s hot shoe. Either a MiniTT1 or a FlexTT5 can be the transmitter while only the FlexTT5 can be a receiver.</p>
<p>As best I can tell, there are no radio interference problems with the Nikon flashes. That’s good because, for me, that was the no-go problem with using the PocketWizard system with Canon flashes.</p>
<div id="attachment_1202" class="wp-caption alignright" style="width: 170px"><a href="http://www.bobrockefeller.com/wp-content/uploads/2011/09/FlexTT5.jpg" rel="lightbox[1183]"><img class="size-thumbnail wp-image-1202 " title="FlexTT5" src="http://www.bobrockefeller.com/wp-content/uploads/2011/09/FlexTT5-200x200.jpg" alt="PocketWizard FlexTT5" width="160" height="160" /></a><p class="wp-caption-text">PocketWizard FlexTT5</p></div>
<p>Because PocketWizard uses ControlTL to control the remote flashes, there is not a one-to-one correspondence between Nikon i-TTL commands and ControlTL commands. In practice that means:</p>
<h6>ControlTL Can Do Some Things i-TTL Can’t</h6>
<ul>
<li><a href="http://www.pocketwizard.com/inspirations/technology/hypersync_fpsync/" target="_blank">HyperSync</a>—allows studio flash and some hot shoe flashes to sync at faster than x-sync speeds and up to 1/8000 second.</li>
<li>Simple hot shoe connections—no need for the <a href="http://shop.radiopopper.com/pxreceiverreplacementcanonmountingbracketbase-1.aspx" target="_blank">special brackets</a> the RadioPoppers use to line up with the flash control sensor on the speedlight.</li>
<li>Work without an on camera flash controller—no need for an SU-800 or a speedlight.</li>
<li>Change with firmware revisions—both the MiniTT1 and the FlexTT5 can have firmware updates (to correct bugs or to add features) made using your computer and the USB port on the devices.</li>
</ul>
<h6>i-TTL Can Do Some Things ControlTL Can’t</h6>
<ul>
<li>Separate exposure compensation and flash exposure compensation—Nikon’s i-TTL system let’s you control one separately from the other.</li>
<li>Use the SB-900 light patterns—using the Center or Even light patterns available with the SB-900 will casue exposure errors using PocketWizards.</li>
<li>Work in mirror up mode—ControlTL just won’t.</li>
<li>Allow flash repeat mode—ControlTL just won’t.</li>
<li>Mix radio and pre-flash—RadioPoppers don’t interfere with the pre-flash as PocketWizard does.</li>
<li>Control flash zones from the camera menu—you’ll need a <a href="http://www.pocketwizard.com/products/transmitter_receiver/ac3%20zonecontroller/" target="_blank">PocketWizard AC3 Zone Controller</a> for that.</li>
<li>Future “proof”—PocketWizard firmware may have to be updated for future flash and cameras.</li>
</ul>
<div id="attachment_1211" class="wp-caption alignright" style="width: 170px"><a href="http://www.bobrockefeller.com/wp-content/uploads/2011/09/PocketWizard-AC9.jpg" rel="lightbox[1183]"><img class="size-thumbnail wp-image-1211 " title="PocketWizard AC9" src="http://www.bobrockefeller.com/wp-content/uploads/2011/09/PocketWizard-AC9-200x200.jpg" alt="PocketWizard AC9" width="160" height="160" /></a><p class="wp-caption-text">PocketWizard AC9</p></div>
<p>Of course, PocketWizard’s upgradable firmware means that its abilities can expand with revisions.</p>
<p>PocketWizard also offers matching radio controls for studio strobes that allow the strobe power to be controlled from the camera (although not in TTL):</p>
<ul>
<li>AC9 AlienBees Adapter</li>
<li>PowerST4 for Elinchrom RX</li>
<li>PowerMC2 for Einstein E640 Flash</li>
</ul>
<p>So, will I be selling my RadioPopper gear and buying PocketWizard equipment? Maybe. But probably not right now. I’d like to see if RadioPopper will make another firmware upgrade to allow more of i-TTL’s features into ControlTL. Or even surpass them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bobrockefeller.com/2011/09/19/pocketwizard-vs-radiopopper-for-nikon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Three Stages of Sharpening with Aperture</title>
		<link>http://www.bobrockefeller.com/2011/09/05/three-stages-of-sharpening-with-aperture/</link>
		<comments>http://www.bobrockefeller.com/2011/09/05/three-stages-of-sharpening-with-aperture/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 18:24:44 +0000</pubDate>
		<dc:creator>Bob Rockefeller</dc:creator>
				<category><![CDATA[Aperture]]></category>
		<category><![CDATA[Translating Lightroom]]></category>

		<guid isPermaLink="false">http://www.bobrockefeller.com/?p=1143</guid>
		<description><![CDATA[Laura Shoe created a helpful blog post for Lightroom users in which she discussed Lightroom’s approach to sharpening. In many ways, Aperture handles image adjustments much like Lightroom, but they do differ a fair amount in how they deal with sharpening. This article is intended to “translate” Laura’s discussion for Aperture users. And I’ve written [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://laurashoe.com/" target="_blank">Laura Shoe </a>created a helpful blog post for Lightroom users in which she discussed <a href="http://laurashoe.com/2011/08/21/sharpening-in-lightroom-part-one-overview-and-capture-sharpening/" target="_blank">Lightroom’s approach to sharpening</a>. In many ways, Aperture handles image adjustments much like Lightroom, but they do differ a fair amount in how they deal with sharpening. This article is intended to “translate” Laura’s discussion for Aperture users. And I’ve written about <a href="http://www.bobrockefeller.com/2010/04/04/sharpening-with-aperture-3/">sharpening in Aperture</a> before, so you may want to check that out first.</p>
<p>Laura points out that many follow the advice of Bruce Fraser and Jeff Schewe in their book <em><a href="http://www.amazon.com/World-Sharpening-Photoshop-Camera-Lightroom/dp/0321637550/ref=sr_1_1?ie=UTF8&amp;qid=1315242224&amp;sr=8-1" target="_blank">Real World Image Sharpening</a></em> and apply sharpening in three stages: Capture, Creative and Output. Capture sharpening is used to offset the inherent blurring effects of digital capture devices such as cameras and scanners. Creative sharpening lets the image adjuster make overall, or more commonly localized, sharpening changes. The last step, output sharpening, is done at output and should take into account the output medium, the output device, as well as the intended viewing distance.</p>
<div id="attachment_1144" class="wp-caption alignleft" style="width: 303px"><img class="size-full wp-image-1144 " title="RAWFineTuning" src="http://www.bobrockefeller.com/wp-content/uploads/2011/09/RAWFineTuning.png" alt="RAW Fine Tuning Brick" width="293" height="249" /><p class="wp-caption-text">The RAW Fine Tuning Adjustment Brick</p></div>
<h6><strong>Capture Sharpening</strong></h6>
<p>These concepts apply equally to any image adjustment software. It is the execution that is different. Let’s start at the beginning of the process with capture sharpening. Aperture’s capture sharpening is done in the <em>RAW Fine Tuning</em> adjustment brick.</p>
<p>You’ll see the two control sliders. Sharpening (how much of a sharpening effect should be applied) and Edges (what in the image should be considered an edge and be sharpened). A setting of 0 Sharpening creates no sharpening while a setting of 1 provides the maximum effect. For Edges a setting of 0 means nothing should be considered an edge and 1 means almost everything is an edge and should be sharpened.</p>
<p>Something to note here is that Aperture is very gentle in its application of sharpening in general. And this is especially true of RAW Fine Tuning sharpening. Its a very subtle effect. Also true is that sharpening effects are best viewed at 100%—so use the loupe or the <strong>Zoom To Actual Size</strong> commend in the <strong>View</strong> menu.</p>
<p>Because capture sharpening is meant to offset the softening effect of the image capture device, one set of sharpening parameters will be “right” for any given device. Aperture lets you set those parameters as defaults for each device independently by using the <strong>Save As Camera Default</strong> command under the gear menu of the <em>RAW Fine Tuning</em> adjustment brick.</p>
<h6>Creative Sharpening</h6>
<div id="attachment_1171" class="wp-caption alignright" style="width: 308px"><img class="size-full wp-image-1171 " title="EdgeSharpen" src="http://www.bobrockefeller.com/wp-content/uploads/2011/09/EdgeSharpen.png" alt="Edge Sharpen Brick" width="298" height="95" /><p class="wp-caption-text">The Edge Sharpen Adjustment Brick</p></div>
<p>First a comment. Aperture version 3 offers two adjustment bricks for creative sharpening—<em>Edge Sharpen</em> and <em>Sharpen</em>. The <em>Sharpen</em> brick is left over from earlier versions for compatibility, but I advise against using it because the <em>Edge Sharpen</em> brick is so much better and more powerful. Forget there is a <em>Sharpen</em> brick.</p>
<p>The <em>Edge Sharpen</em> brick offers three control sliders. Again there is the Sharpening slider as well as the Edge slider. Both work the same way as the matching sliders do in the <em>RAW Fine Tuning</em> brick. But now there is the added slider for Falloff (the amount of sharpening done on the second and third of Aperture’s three pass sharpening technique). A setting of 0 Falloff means that no sharpening is applied during the second and third sharpening passes while a setting of 1 means that 100% of the first pass sharpening effect is applied on the second pass and 100% of the amount of the second pass is applied in the third. This is pretty clever because a setting on 0.5 means that 50% of the first pass sharpening effect is applied on the second pass and 50% of the amount of the second pass is applied in the third. Said another way, the third pass would use 25% of the first pass effect.</p>
<h6>Output Sharpening</h6>
<p>Printers and paper will both cause a slight blurring of the image on output . Also, images are meant to be viewed a different distances; you’d rarely expect someone to look at a 30″ x 40″ print up close, but a 3″ x 4″ web image will be seen from just a foot or two. Therefore some sharpening is often needed at this stage.</p>
<div id="attachment_1175" class="wp-caption alignleft" style="width: 277px"><img class="size-full wp-image-1175" title="PrintSharpening" src="http://www.bobrockefeller.com/wp-content/uploads/2011/09/PrintSharpening.png" alt="Image Adjustment Brick" width="267" height="172" /><p class="wp-caption-text">The Image Adjustment Brick of the Print Dialog</p></div>
<p>Aperture has an <em>Image Adjustment</em> brick in the print dialog box to control print sharpening. Unfortunately it does not have sharpening controls in its export controls.</p>
<p>For printing the sliders change names to Amount (just like the Sharpening slider elsewhere) and Radius (the distance, in pixels, that Aperture uses to evaluate sharpness). Frankly, it makes no sense to me that the print sharpening controls should be named differently and have different effects than in the <em>Edge Sharpen</em> adjustment brick.</p>
<p>Here a setting of 0 for Radius means there will be no sharpening while a setting of say, 3 would mean that sharpening would be applied up to 3 pixels away from an edge. If you want to judge the sharpening effect on screen, use the loupe tool next to the Amount and Radius sliders.</p>
<p>If you want to apply sharpening for exporting files formats such as JPEG or PNG, you’ll need to get the free export plug-in <a href="http://www.iborderfx.com/BorderFX/" target="_blank">BorderFX</a>. It, too, has Amount and Radius sliders.</p>
<h6>In General</h6>
<p>Sharpening is a very subjective adjustment, and double so for capture and creative sharpening. So you’ll have to apply the effects to your own taste an creative vision. But a good thing to remember is that less is often more for sharpening. Don’t over do it. And Aperture will help with that as all of its controls, but especially its RAW Fine Tuning sharpening, are subtle.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bobrockefeller.com/2011/09/05/three-stages-of-sharpening-with-aperture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nikon CLS Off Camera Metering</title>
		<link>http://www.bobrockefeller.com/2011/08/20/nikon-cls-off-camera-metering/</link>
		<comments>http://www.bobrockefeller.com/2011/08/20/nikon-cls-off-camera-metering/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 14:39:13 +0000</pubDate>
		<dc:creator>Bob Rockefeller</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.bobrockefeller.com/?p=1124</guid>
		<description><![CDATA[This is a topic that you don’t hear much about and that took me quit a while on Google to dig up a few blog posts and forum comments concerning it. The simple fact appears to be that Nikon’s CLS underexposes when no on camera flash is part of the lighting. To prove it to [...]]]></description>
			<content:encoded><![CDATA[<p>This is a topic that you don’t hear much about and that took me quit a while on Google to dig up a few blog posts and forum comments concerning it. The simple fact appears to be that Nikon’s CLS underexposes when no on camera flash is part of the lighting. To prove it to myself for sure, I did an experiment.</p>
<p>Here’s a couple of simple (and ugly) shots to show you what I mean. All of them were shot with my Nikon D300s and one SB-900 at 1/125 second and f/5.6. The off camera flash is just to the right of the camera, at the same height and the same distance from the subject.</p>
<div id="attachment_1127" class="wp-caption aligncenter" style="width: 360px"><a href="http://www.bobrockefeller.com/wp-content/uploads/2011/08/Take1.jpg" rel="lightbox[1124]"><img class="size-medium wp-image-1127 " title="Take1" src="http://www.bobrockefeller.com/wp-content/uploads/2011/08/Take1-350x232.jpg" alt="Take 1" width="350" height="232" /></a><p class="wp-caption-text">On Camera SB-900. Exposure is “OK.”</p></div>
<div id="attachment_1130" class="wp-caption aligncenter" style="width: 360px"><a href="http://www.bobrockefeller.com/wp-content/uploads/2011/08/Take2.jpg" rel="lightbox[1124]"><img class="size-medium wp-image-1130 " title="Take2" src="http://www.bobrockefeller.com/wp-content/uploads/2011/08/Take2-350x232.jpg" alt="Take 2" width="350" height="232" /></a><p class="wp-caption-text">Off Camera SB-900 Triggered By The Master SB-900 On Camera. Underexposed by about 1 EV.</p></div>
<div id="attachment_1131" class="wp-caption aligncenter" style="width: 360px"><a href="http://www.bobrockefeller.com/wp-content/uploads/2011/08/Take3.jpg" rel="lightbox[1124]"><img class="size-medium wp-image-1131 " title="Take3" src="http://www.bobrockefeller.com/wp-content/uploads/2011/08/Take3-350x232.jpg" alt="Take 3" width="350" height="232" /></a><p class="wp-caption-text">Off Camera SB-900 Triggered By The Master SB-900 On Camera. +1 EV Exposure Compensation On The Camera. Exposure is “OK.”</p></div>
<p>As long as the flash is on camera and is the light source for exposure, the exposure is “OK” with 0 EV exposure and 0 EV flash compensation. Using the on camera flash as only the master to trigger the off camera SB-900, the exposure is about 1 EV under. Dialing in +1 EV exposure compensation on the camera gets us back to the exposure provided by the on camera flash at 0 EV compensation.</p>
<p>Now why don’t we hear anything about that from the famous CLS flash instructors? I’m looking at you, Joe McNally. :)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bobrockefeller.com/2011/08/20/nikon-cls-off-camera-metering/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>The Switch: Canon to Nikon</title>
		<link>http://www.bobrockefeller.com/2011/08/06/the-switch-canon-to-nikon/</link>
		<comments>http://www.bobrockefeller.com/2011/08/06/the-switch-canon-to-nikon/#comments</comments>
		<pubDate>Sat, 06 Aug 2011 20:22:27 +0000</pubDate>
		<dc:creator>Bob Rockefeller</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.bobrockefeller.com/?p=1101</guid>
		<description><![CDATA[My first digital SLR was a Nikon D70 that suffered a mishap and had to be replaced. I had done a lot of research into digital SLRs and had decided on the Nikon and I liked it just fine. But when it came time to replace it, I did more research and this time on lenses. At [...]]]></description>
			<content:encoded><![CDATA[<p>My first digital SLR was a Nikon D70 that suffered a mishap and had to be replaced. I had done a lot of research into digital SLRs and had decided on the Nikon and I liked it just fine. But when it came time to replace it, I did more research and this time on lenses. At the time only Canon had the EF-S 15–85 IS and EF 70–300 IS lenses—both were reasonably priced and I wanted IS. Plus, I had a friend who shot Canon and was an excellent semi-Pro, so I could learn specifics from him and even borrow lenses from time to time.</p>
<div id="attachment_1104" class="wp-caption alignright" style="width: 210px"><img class="size-thumbnail wp-image-1104" title="D300s" src="http://www.bobrockefeller.com/wp-content/uploads/2011/08/D300s-200x150.png" alt="" width="200" height="150" /><p class="wp-caption-text">Nikon D300s DSLR</p></div>
<p>The first Canon I owned was a 350D and I really didn’t like the controls and the small size of the body. Sticking with it, I later upgraded to a Canon 30D which I liked much better. And then came a 50D and finally a 7D (which is a wonderful camera). Along the way came lenses and even the fabulous Canon EF 70–200 f/2.8L IS. So I was pretty deep in the glass and didn’t want to take the monetary loss in selling and switching.</p>
<p>But all along I remembered how the D70 handled. And I kept up with the advances in the Nikon world by reading web news and reviews. Once I started getting more advanced with my off camera flash work, I learned more about how the Nikon flash system worked (particularly the SB-900) compared to the 580EXs I was shooting. Its a highly personal thing, but the Nikon approach to photography just seems to fit me better.</p>
<div id="attachment_1107" class="wp-caption alignright" style="width: 210px"><img class="size-thumbnail wp-image-1107" title="70-200" src="http://www.bobrockefeller.com/wp-content/uploads/2011/08/70-200-200x113.png" alt="" width="200" height="113" /><p class="wp-caption-text">Nikkor AF-S 70–200 f/2.8 VRII</p></div>
<p>So the short of it is that I contacted <a href="http://www.adorama.com/catalog.tpl?op=Used" target="_blank">Adorama’s used camera department</a> for a quote on my Canon gear and decided to swallow hard and make the switch. Now in hand is the Nikon <a href="http://www.nikonusa.com/Nikon-Products/Product/Digital-SLR-Cameras/25464/D300S.html" target="_blank">D300s</a> with the <a href="http://www.nikonusa.com/Nikon-Products/Product/Power-Packs/25359/MB-D10-Multi-Power-Battery-Pack.html" target="_blank">MB-D10 battery grip</a>, two <a href="http://www.nikonusa.com/Nikon-Products/Product/Flashes/4807/SB-900-AF-Speedlight.html" target="_blank">SB-900</a>s, the <a href="http://www.nikonusa.com/Nikon-Products/Product/Camera-Lenses/2192/AF-S-DX-NIKKOR-18-200mm-f%252F3.5-5.6G-ED-VR-II.html" target="_blank">AF-S DX 18–200 VRII</a> (a great walk-around lens), the wonderful <a href="http://www.nikonusa.com/Nikon-Products/Product/Camera-Lenses/2185/AF-S-NIKKOR-70-200mm-f%252F2.8G-ED-VR-II.html" target="_blank">AF-S 70–200 f/2.8 VRII</a>, the new-ish <a href="http://www.nikonusa.com/Nikon-Products/Product/Camera-Lenses/2160/AF-S-VR-Micro-NIKKOR-105mm-f%252F2.8G-IF-ED.html" target="_blank">AF-S 100 VR Micro</a> and the <a href="http://www.sigmaphoto.com/shop/17-50mm-f28-ex-dc-os-hsm-sigma" target="_blank">Sigma DC 17–50 f/2.8 OS</a>. As you can see, I still love the IS/VR/OS lenses. And that’s the only reason I did not get the Nikon <a href="http://www.nikonusa.com/Nikon-Products/Product/Camera-Lenses/2147/AF-S-DX-Zoom-NIKKOR-17-55mm-f%252F2.8G-IF-ED.html" target="_blank">AF-S DX 17–55 f/2.8</a>.</p>
<p>That’s a pretty big switch. And its not because Canon is a poor system—quite the contrary, its first class stuff. The auto-focus system of the Canon 7D is tremendous and clears Canon of all the bad press and bad reviews of their auto-focus. And what can you say bad about the EF 70–200 f/2.8L IS? So why did I do it?</p>
<div id="attachment_1102" class="wp-caption alignleft" style="width: 154px"><img class="size-full wp-image-1102" title="SB900" src="http://www.bobrockefeller.com/wp-content/uploads/2011/08/SB900.png" alt="" width="144" height="183" /><p class="wp-caption-text">Nikon SB-900</p></div>
<p>It was a very subjective call. For me, the way Nikon uses switches for such things as metering and auto-focus modes just “feels” better than Canon’s button-and-dial approach. Their menu structure makes sense to me. And iTTL makes better flash exposures for me (not to mention the fact that the redesigned user interface on the SB-900 is very easy to use).</p>
<p>There are, of course, technical details that differ. For the most part, its a trade off—the D300s has 51 auto-focus points to the 7D’s 19, but the 7D shoots at 8 fps while the D300s does only 6 (unless you get a special battery and the battery grip), the D7 has 16 megapixels to the Nikon’s 12, but the D300s has dual memory card slots, and on and on.</p>
<p>You’ll note that none of this has anything to do with video. I don’t do video.</p>
<p>Lots of my lighting gear will work with either system, so at least I avoided the costs of changing out something. My <a href="http://www.radiopopper.com/" target="_blank">RadioPoppers</a> just needed new plastic mounting brackets, but the light stands, <a href="http://www.honlphoto.com/" target="_blank">Honl light modifiers</a>, <a href="http://fjwestcott.com/" target="_blank">Westcott equipment</a> and <a href="http://flashzebra.com/" target="_blank">miscellaneous hardware</a> all still works.</p>
<p>I have my eye on a few more things, once I recover from the initial expense. I’d like another SB-900 and the SU-800 wireless flash commander (which will make my RadioPoppers that much more capable). And I’ll be keeping my eye out to see when, or if, Nikon adds VR to their AF-S DX 17–55 f/2.8.</p>
<p>In the end, the camera does not take the picture, the photographer does. Either system will make breathtaking photographs—just scout through <a href="http://500px.com/popular" target="_blank">500px</a> and see who shoots what with which system. Or better yet, see if you can guess which system was used to take which picture. Good luck with that!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bobrockefeller.com/2011/08/06/the-switch-canon-to-nikon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coda: The Web Development App</title>
		<link>http://www.bobrockefeller.com/2011/07/10/coda-the-web-development-app/</link>
		<comments>http://www.bobrockefeller.com/2011/07/10/coda-the-web-development-app/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 18:15:09 +0000</pubDate>
		<dc:creator>Bob Rockefeller</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.bobrockefeller.com/?p=1037</guid>
		<description><![CDATA[I do dabble in HTML, CSS and WordPress from time to time. This web site is run on WordPress and the fabulous development framework Genesis using a heavily modified version of their Focus theme. And I’ll change the look of my web site when I get tired of seeing the old design, which happened again [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.studiopress.com/themes/genesis"><img class="size-full wp-image-1040 alignright" title="genesis" src="http://www.bobrockefeller.com/wp-content/uploads/2011/07/genesis.jpg" alt="" width="150" height="125" /></a>I do dabble in HTML, CSS and WordPress from time to time. This web site is run on <a href="http://wordpress.org/" target="_blank">WordPress</a> and the fabulous development framework <a href="http://www.studiopress.com/themes/genesis" target="_blank">Genesis</a> using a heavily modified version of their <a href="http://www.studiopress.com/themes/focus" target="_blank">Focus</a> theme. And I’ll change the look of my web site when I get tired of seeing the old design, which happened again this weekend.</p>
<p>In making the changes, which included switching from the <a href="http://www.studiopress.com/themes/prose" target="_blank">Prose</a> to the Focus theme, I reminded myself how much I like the web development application <a href="http://www.panic.com/coda/" target="_blank">Coda</a>. Since I don’t use the themes just as they come from StudioPress, I need to muck around with the CSS and PHP that forms the theme template. Coda is so good for that.</p>
<p><a href="http://www.panic.com/coda/"><img class="alignleft size-thumbnail wp-image-1045" title="Coda" src="http://www.bobrockefeller.com/wp-content/uploads/2011/07/Coda-200x71.png" alt="" width="200" height="71" /></a>Coda comes from the folks at <a href="http://www.panic.com/" target="_blank">Panic</a>, who make a number of other very nice Macintosh apps. Coda’s claim to fame is that it is a single window application that handles FTP file transfer, text editing, CSS editing, browser previews and even terminal commands. As a bonus, it will display reference material, right in the app, from web-based resources that you can add to. Its smooth, very Mac-like, and allows web development to move easily from task to task. Instead of using programs such as <a href="http://www.barebones.com/products/bbedit/" target="_blank">BBEdit</a>, <a href="http://www.panic.com/transmit/" target="_blank">Transmit</a> and <a href="http://macrabbit.com/cssedit/" target="_blank">CSSEdit</a> to do different tasks, you use Coda to do them all. I own all those, and I use Coda.</p>
<div id="attachment_1050" class="wp-caption alignleft" style="width: 210px"><a href="http://www.bobrockefeller.com/wp-content/uploads/2011/07/Sites.png" rel="lightbox[1037]"><img class="size-thumbnail wp-image-1050   " title="Sites" src="http://www.bobrockefeller.com/wp-content/uploads/2011/07/Sites-200x100.png" alt="" width="200" height="100" /></a><p class="wp-caption-text">The sites panel. Click all the screen shots for a bigger view.</p></div>
<p>Coda’s integration is wonderful. And it is an exception to the rule that stand-alone applications are better at what they do then an integrated application can be. That’s not to say the others don’t have features that Coda doesn’t, its just that those features are nice-to-have features and not the things that you must have to do rapid web development.</p>
<div id="attachment_1056" class="wp-caption alignright" style="width: 210px"><a href="http://www.bobrockefeller.com/wp-content/uploads/2011/07/Style.png" rel="lightbox[1037]"><img class="size-thumbnail wp-image-1056 " title="Style" src="http://www.bobrockefeller.com/wp-content/uploads/2011/07/Style-200x165.png" alt="" width="200" height="165" /></a><p class="wp-caption-text">The CSS editing panel.</p></div>
<p>Working on a web site with Coda starts off with the sites panel where I keep the links to sites that I work on most often. Once I connect to a site, Coda gives me an FTP file list view on the left and the contents of a selected file (or files) on the right. Multiple files open in multiple tabs and individual files can have multiple views (such as both the CSS editor and the text editor views of a CSS file or both the text editor and browser preview views of an HTML file).</p>
<div id="attachment_1067" class="wp-caption alignleft" style="width: 210px"><a href="http://www.bobrockefeller.com/wp-content/uploads/2011/07/Book.png" rel="lightbox[1037]"><img class="size-thumbnail wp-image-1067" title="Book" src="http://www.bobrockefeller.com/wp-content/uploads/2011/07/Book-200x165.png" alt="" width="200" height="165" /></a><p class="wp-caption-text">The books panel.</p></div>
<p>From there its pretty much smooth sailing. Double-click a file to edit, make some changes, save it, see the effect in the preview panel or in a separate web browser and then make some more changes. Coda opens and saves file straight to and from your server so there’s no need to download, edit and then re-upload. Because I do most of my web development in WordPress, I use a separate browser window to preview changes since Coda’s preview panel is only for static HTML.</p>
<div id="attachment_1074" class="wp-caption alignright" style="width: 210px"><a href="http://www.bobrockefeller.com/wp-content/uploads/2011/07/Edit.png" rel="lightbox[1037]"><img class="size-thumbnail wp-image-1074" title="Edit" src="http://www.bobrockefeller.com/wp-content/uploads/2011/07/Edit-200x160.png" alt="" width="200" height="160" /></a><p class="wp-caption-text">The text edit panel.</p></div>
<p>The books panel allows you to quickly review web-based reference material and Coda comes with quick references for HTML, CSS, JavaScript and PHP. Its easy to add more—just load in its URL.</p>
<p>The CSS editor is very nice with easy to use and clearly broken down access to all the CSS attributes available. It has lots of buttons and entry fields to make what can be tedious easy. Using very nice syntax specific text coloration, the text editor works well and is full of the little things you need to make it more than a plain text editor (things like Un/Comment Selection, Balance punctuation, and auto complete for common syntax). For my work, I haven’t wanted for features.</p>
<p>I’ve been very pleased with Coda and the workflow that it allows. Like a lot of programs these day, there is no separate Users Manual, rather it is incorporated into Coda’s help menu. That has worked fine for me partially because there’s plenty of information in there and partially because Coda is a real Mac app—you can find your way around pretty easily with no manual. Coda is available on the Mac App Store for $99.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bobrockefeller.com/2011/07/10/coda-the-web-development-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

