All posts tagged workflow

Pro Photographer’s Workflow

Chase Jarvis is the author of the popular Best Camera blog and book. (His argument is/was the best camera is the one you have with you, and so the book is a collection of photographs taken with his iPhone camera. The subtext is that one should focus on such abilities as composition, lighting, and framing rather than worry about the gear/gadgets in your hand.)

Also on his website is a nice video that details his workflow. Jarvis is a professional photographer with not only a serious staff who accompany him everywhere but also a pretty serious collection of gear. Essentially, he runs all his images and video through Aperture and onto hard drives — Adobe, are you paying attention? Video! — the hard drives escalate from portable drives in the field, to small RAID drives in hotel rooms, to a serious XServe set up back at his office/studio.

The takeaway here? Backup, backup, backup. And an important corollary is many, many copies in diverse locations. (Offsite, offsite, offsite.)

A tidbit within all this is the file naming convention they use:

year/project/day/camera/shot

Example:

20100630_ProjectHere_1_S900123.Cr2

Formatting and Outputs

I do much of my non-scholarly writing in a text editor, but I still need to share what I do with others. Preferably pretty. I like to keep my options open on how to move out of MultiMarkdown into a styled output:

  • XSL:FO stands for Extensible Stylesheet Language Formatting Objects.
  • DITA is an XML architecture for designing, writing, managing, and publishing information.

There is, of course, also presentation versions, like Eric Meyer’s S5 format, which has since been extended. For a more general overview, see the Wikipedia article on S5 I’m curious about the latter, because as this sample code reveals:

<div class="slide">
 <h1>slide title</h1>
 <ul>
   <li>the first point</li>
   <li>the second point</li>
   <li>the third point</li>
 </ul>
 <div class="handout">
  ... additional material that appears
     on the handout
 </div>
</div>

The S5 format is unfortunately oriented toward the standard slide layout.