<?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>Jeremy Carlson</title>
	<atom:link href="http://jeremycarlson.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jeremycarlson.com</link>
	<description>independent graphic + web designer // Louisville, Colorado</description>
	<lastBuildDate>Tue, 07 May 2013 20:54:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Sister Carmen Web Site</title>
		<link>http://jeremycarlson.com/sister-carmen-web/</link>
		<comments>http://jeremycarlson.com/sister-carmen-web/#comments</comments>
		<pubDate>Tue, 09 Apr 2013 20:05:57 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[identity]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://jeremycarlson.com/?p=792</guid>
		<description><![CDATA[I built Sister Carmen&#8217;s original site in WordPress 1.5. By 2012, it was time to re-think everything. The friendly, engaging new site ties more clearly to the Center&#8217;s brand, while the responsive design ensures mobile users can access the full site with ease.]]></description>
			<content:encoded><![CDATA[<p>I built Sister Carmen&#8217;s original site in WordPress 1.5. By 2012, it was time to re-think everything. The friendly, engaging new site ties more clearly to the Center&#8217;s brand, while the responsive design ensures mobile users can access the full site with ease.</p>
]]></content:encoded>
			<wfw:commentRss>http://jeremycarlson.com/sister-carmen-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Square Colored Bullets with a Consistent Size Across Platforms</title>
		<link>http://jeremycarlson.com/square-colored-bullets-with-a-consistent-size-across-platforms/</link>
		<comments>http://jeremycarlson.com/square-colored-bullets-with-a-consistent-size-across-platforms/#comments</comments>
		<pubDate>Sat, 07 Apr 2012 19:38:33 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Write]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[quicktip]]></category>

		<guid isPermaLink="false">http://www.jeremycarlson.com/?p=784</guid>
		<description><![CDATA[Can we have colored bullets without having to produce a little graphic? Can they be square please?]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t write very often. So I suppose that when I do, it should be of consequence.</p>
<p>Nah, I just happened to be narrowing down a technique the other day for a specific issue, and thought I had something unique to contribute. Here, in a nutshell, is the task:</p>
<p>Can we have colored bullets without having to produce a little graphic?</p>
<p>Yes, we can, as <a href="http://lea.verou.me" title="CSS Sorceress">Lea Verou</a> answered when a user <a href="http://stackoverflow.com/questions/5306640/how-to-define-the-color-of-bullets-in-ul-li-lists-via-css-without-using-any-im" title="How to define the Color of Bullets in UL/LI Lists via CSS, WITHOUT using any image bullets or any span tag?">asked this question on Stack Overflow</a>. You give the <code>li</code> element <code>list-style: none</code>, natch. And then you add a bullet with the CSS <code>:before</code> declaration.</p>
<p>The CSS looks like this:</p>
<p class="outset left two">(Note: You also need to set a negative text-indent—Lea suggests -.7em—and left padding. If you aren&#8217;t saving your stylesheets as UTF-8, you&#8217;ll also need to use the escaped unicode character for the bullet, like-a-dis: <code>content: "\2022; ";</code>)</p>
<pre>
li:before {
    content: "• ";
    color: red; /* or whatever color you prefer */
}
</pre>
<style type="text/css">
#content .example1 { padding: 0 30px; }
#content .example1 li { list-style: none }
#content .example1 li:before {
    content: "• ";
    color: red;
}
</style>
<p>This gives us the following:</p>
<ul class="example1">
<li>Example</li>
</ul>
<p>The Stack Overflow thread goes on to mention using a square (■) instead of a disc, which is exactly what I needed for a client&#8217;s site. But I quickly noticed that the font-size of the square in different browsers and platforms was radically different:</p>
<div id="attachment_812" class="wp-caption alignnone" style="width: 610px"><img src="http://jeremycarlson.com/wp/wp-content/uploads/square-bullets-compare.gif" alt="" title="Comparing Square Bullets" width="600" height="227" class="size-full wp-image-812" /><p class="wp-caption-text">The square bullets were looking different across browsers. For this client, that would not do.</p></div>
<p>Huh. The main issue was Windows vs. Mac. If we are going to avoid adding little square bullet images (the old way) this has to be more reliable &#038; consistent than this.</p>
<p>One eyebrow furrow later, (okay maybe more than that) I thought—different font? So what would be cross-platform? Using a handy CSS font-family list developed by (ref?), I maniacally set up square bullets in different font-sizes for comparison (<a href="http://jeremycarlson.com/example/square-bullets.htm">See example</a>) and found that across browsers, the following font-stack was the most consistent:</p>
<pre>
font-family: AppleGothic, "Lucida Sans", Impact, Verdana, sans-serif;
</pre>
<p>It was also consistently too small. The best bullet look utilized this CSS:</p>
<pre>
ul { padding: 0 30px; }

li { list-style: none; }

li:before {
    font-family: AppleGothic, "Lucida Sans", Impact, Verdana, sans-serif;
    content: '■';
    color: red;
    float: left;
    width: 1em;
    margin: .5em -1.2em;
    font-size: 60%;
}
</pre>
<style type="text/css">
#content .example2 { padding: 0 30px; }
#content .example2 li {
list-style: none;
}
#content .example2 li:before {
    font-family: AppleGothic, "Lucida Sans", Impact, Verdana, sans-serif;
    content: '■';
    color: red;
    float: left;
    width: 1em;
    margin: .5em -1.2em;
    font-size: 60%;
}
</style>
<p>And there we have it:</p>
<ul class="example2">
<li>Square bullets, colored differently from the text, without images.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jeremycarlson.com/square-colored-bullets-with-a-consistent-size-across-platforms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WRA web redesign</title>
		<link>http://jeremycarlson.com/wra-web/</link>
		<comments>http://jeremycarlson.com/wra-web/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 17:03:33 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.jeremycarlson.com/?p=765</guid>
		<description><![CDATA[I have worked with Western Resource Advocates on numerous projects over the years, and their cause is dear to my heart. I was delighted to help WRA update their website. We accomplished a lot on a small budget.]]></description>
			<content:encoded><![CDATA[I have worked with Western Resource Advocates on numerous projects
over the years, and their cause is dear to my heart. I was
delighted to help WRA update their website. We accomplished a lot
on a small budget.]]></content:encoded>
			<wfw:commentRss>http://jeremycarlson.com/wra-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto Draft</title>
		<link>http://jeremycarlson.com/</link>
		<comments>http://jeremycarlson.com/#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
		
		<guid isPermaLink="false">http://www.jeremycarlson.com/?p=764</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://jeremycarlson.com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extract Source Images from a PDF in Photoshop</title>
		<link>http://jeremycarlson.com/extract-source-images-from-a-pdf-in-photoshop/</link>
		<comments>http://jeremycarlson.com/extract-source-images-from-a-pdf-in-photoshop/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 00:12:00 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Write]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[quicktip]]></category>

		<guid isPermaLink="false">http://www.jeremycarlson.com/?p=751</guid>
		<description><![CDATA[Wish your client sent you original JPEGs instead of that PDF? You know, it really isn't a problem.]]></description>
			<content:encoded><![CDATA[<p>
  How come I didn't notice this sooner?
</p>
<p>
  You can extract images, as is, directly from a <abbr title=
  "Portable Document Format">PDF</abbr> file, in Photoshop. I knew
  it had the ability to open a <abbr title=
  "Portable Document Format">PDF</abbr> and turn into a rasterized
  image, and that has been helpful from time to time.
</p>
<p>
  But, try this:
</p>
<ol>
  <li>In Photoshop, Go to File-&gt;Open, and select a
    <abbr title="Portable Document Format">PDF</abbr> with images
    in it.
  </li>
  <li>You should get an "Import PDF" dialog box, with options for
  how to crop the page, resolution, and so on.
  </li>
  <li>In the upper left, you should see radio buttons to select
  pages or ... HMMMMMM ... <em>images</em>. Choose images instead
  of pages, and suddenly your cropping and sizing options are
  grayed out. But you will see a list of all the images embedded in
  the PDF:<br>
    <img src=
    "http://www.jeremycarlson.com/wp/wp-content/uploads/extract-images-from-pdf-600.jpg"
    alt="screenshot" title="Extract Images from a PDF in Photoshop"
    width="600" height="405" class=
    "alignnone size-full wp-image-760">
  </li>
</ol>
<p>
  Isn’t that hunky-dory?
</p>
<p>
  Pick an image from the list, and press 'OK'. You will open up the
  actual image embedded in the PDF. This is why the options are all
  grayed-out—you aren’t changing anything about the image.
</p>
<p>
  Now you can work your evil ways on that l’il image. Oh no, don’t
  thank me.
</p>]]></content:encoded>
			<wfw:commentRss>http://jeremycarlson.com/extract-source-images-from-a-pdf-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mandolin On My Fence: Poster-Making Magic</title>
		<link>http://jeremycarlson.com/drew-emmitt-poster-process/</link>
		<comments>http://jeremycarlson.com/drew-emmitt-poster-process/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 00:28:00 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Write]]></category>

		<guid isPermaLink="false">http://www.jeremycarlson.com/?p=679</guid>
		<description><![CDATA[I was pleased to work on two posters for Louisville’s Street Faire last summer. The first poster I worked on took on an epic quality as a simple idea grew thorny, complicated, and ultimately, quite beautiful. As I was getting this site finally live, I wanted to look back at what I did. If you [...]]]></description>
			<content:encoded><![CDATA[<p class="lead">
  I was pleased to work on two posters for Louisville’s <a href=
  "http://www.downtownlouisvilleco.com/street-faire/">Street
  Faire</a> last summer. The first poster I worked on took on an
  epic quality as a simple idea grew thorny, complicated, and
  ultimately, quite beautiful. As I was getting this site finally
  live, I wanted to look back at what I did.
</p>
<p>
  If you just want to see the completed poster, you can find it
  <a href=
  "http://www.jeremycarlson.com/drew-emmitt-poster/">here</a>.
  Otherwise, read on.
</p>
<p>
  Drew Emmitt is a Colorado native, part of Leftover Salmon, and
  someone whose music you’d think I would know better. A local
  favorite tune he wrote with Leftover Salmon is "Gold Hill Line,"
  for crying out loud. But I didn’t really know his stuff. So first
  I picked up his new album, <a href=
  "http://www.google.com/search?q=drew+emmitt+long+road" title=
  "find it on Google">Long Road</a>, and started listening. (it is
  really good, by the way)
</p>
<p>
  The distinctive shape of Drew’s mandolin became my inspiration
  for a poster. Somehow I wanted to take that shape and, I don’t
  know, carve it in stone, paint it, something. I searched for
  pictures, found one to trace, and that was the beginning.
</p>
<p class="outset left two">
  And then I started looking at the paint peeling off the fence
  outside my window. And I had my idea. I drew a grid on some large
  sheets of paper, and taped them up to the fence:
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/tape-paper-on-fence.jpg"
  alt="" title="tape-paper-on-fence" width="420" height="607"
  class="alignnone size-full wp-image-682">
</p>
<p class="outset left two">
  Then I searched for a photo that gave me a clear shot of Drew’s
  mandolin, and traced it in Illustrator.
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/mandolin-initial-trace.jpg"
  alt="" title="mandolin-initial-trace" width="559" height="409"
  class="alignnone size-full wp-image-680">
</p>
<p class="outset left two">
  The perspective needed tweaking, so I experimented with the shape
  on its own to find the right feel:
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/mandolin-alternate-shapes.gif"
  alt="" title="mandolin-alternate-shapes" width="400" height="400"
  class="alignnone size-full wp-image-681">
</p>
<p class="outset left two">
  I exaggerated the lighting levels of the fence picture so I could
  find the grid lines, plotted the points in Illustrator, and
  overlaid the distorted grid with the mandolin shape:
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/pink-mandolin-on-paper.jpg"
  alt="" title="pink-mandolin-on-paper" width="376" height="600"
  class="alignnone size-full wp-image-683">
</p>
<p class="outset left two">
  The grid allowed me to distort the vector art until I had an
  image which looks funny straight on, but, when shot from the
  correct spot (gaff tape on the concrete marking the points of the
  tripod, tripod locked in lowest setting—the marks stayed there
  for weeks). I printed this and then used it as a guide to draw
  onto the paper on the fence.
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/pink-mandolin-keystoned.gif"
  alt="" title="pink-mandolin-keystoned" width="500" height="292"
  class="alignnone size-full wp-image-684">
</p>
<p class="outset left two">
  Then I really got to work. With a utility knife, I carved the
  distorted mandolin shape out of the fence, and then stripped the
  paint back, leaving the peeling paint in the shape of the
  mandolin.
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/shadow-on-fence.jpg"
  alt="" title="shadow-on-fence" width="399" height="600" class=
  "alignnone size-full wp-image-685">
</p>
<p class="outset left two">
  Finally, I had an image with the composition I wanted. The
  diagonal line of the fence and the mandolin shape gave me dynamic
  areas for type, and the whole image had a nice, laid back late
  summer afternoon feel. Just right for the Faire.
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/mandolin-on-fence1.jpg"
  alt="" title="mandolin-on-fence1" width="399" height="600" class=
  "alignnone size-full wp-image-686">
</p>
<p class="outset left two">
  It was time to work on the type. I had considered carving
  letters, but that seemed plain crazy. The simple mandolin shape
  had already eaten up most of a day in carving alone. So I found
  other ways to go crazy. So I drew some letters on paper, and then
  traced them in pen to clean them up:
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/lettering-process_01.jpg"
  alt="" title="lettering-process_01" width="600" height="300"
  class="alignnone size-full wp-image-702">
</p>
<p class="outset left two">
  I thought they looked so-so, but a little cheesy. Not really that
  tight yet. So I traced them in Illustrator, straightening and
  cleaning things as I went, adding flourishes, and skewing the
  type upwards a bit to fit better into the poster:
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/lettering-process_02.gif"
  alt="" title="lettering-process_02" width="600" height="300"
  class="alignnone size-full wp-image-703">
</p>
<p class="outset left two">
  After dropping the type into the poster, I thought the type had
  gotten too sterile, so I printed out the type, and then—madness
  beginning to really show here—<em>re-traced</em> the inner and
  outer lines of the letters with a graph pencil.
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/lettering-process_03.jpg"
  alt="" title="lettering-process_03" width="600" height="300"
  class="alignnone size-full wp-image-704">
</p>
<p class="outset left two">
  I then scanned that back in, and did clean up work in Photoshop.
  I had to find the solids:
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/lettering-process_04.gif"
  alt="" title="lettering-process_04" width="600" height="300"
  class="alignnone size-full wp-image-705">
</p>
<p class="outset left two">
  The lines needed some clean-up, but they had the roughness I
  wanted:
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/lettering-process_05.jpg"
  alt="" title="lettering-process_05" width="600" height="300"
  class="alignnone size-full wp-image-706">
</p>
<p class="outset left two">
  Finally I took the type back into Illustrator, used the Live
  Trace feature to trace the art, and I had my tight, clean, dirty,
  rough letters. Smmmokin!
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/lettering-process_06.gif"
  alt="" title="lettering-process_06" width="600" height="300"
  class="alignnone size-full wp-image-707">
</p>
<p>
  The poster was looking pretty good, but lacked a little oomph.
  The lighting didn’t quite feel right. And the mandolin didn’t
  really stand out as much as I had expected. I ended up scraping
  off more paint to make the shape more prominent, and then I had
  another idea.
</p>
<p class="outset left two">
  I had occasionally been using my iPod Nano as a flashlight,
  flicking a button to see my way down the steps. What about using
  that with a long exposure on the camera? This might look really
  cool.
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/night-exposures_01.jpg"
  alt="" title="night-exposures_01" width="598" height="455" class=
  "alignnone size-full wp-image-726">
</p>
<p class="outset left two">
  I also have a solar hanging lantern with 6 yellow LEDs I got from
  my sister a few years back, and I brought it into the mix in
  different ways:
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/night-exposures_02.jpg"
  alt="" title="night-exposures_02" width="598" height="454" class=
  "alignnone size-full wp-image-727">
</p>
<p class="outset left two">
  All the setup. Might as well take more, experiment:
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/night-exposures_03.jpg"
  alt="" title="night-exposures_03" width="598" height="455" class=
  "alignnone size-full wp-image-728">
</p>
<p class="outset left two">
  AAANNNNNDDDD some more. Oh - looks like the moon’s coming up. I
  think we’re done.
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/night-exposures_04.jpg"
  alt="" title="night-exposures_04" width="598" height="455" class=
  "alignnone size-full wp-image-729">
</p>
<p class="outset left two">
  Now remember, all of these shots were taken from exactly the same
  spot, and I never changed the zoom. So I was able to stack them
  up in Photoshop, set each layer’s transparency to
  <em>lighten</em>, and experiment until I had the right blend of
  images. Dang, looks like fire’s coming out of that there
  mandolin!
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/mandolin-light-effects.jpg"
  alt="" title="mandolin-light-effects" width="300" height="451"
  class="alignnone size-full wp-image-724">
</p>
<p class="outset left two">
  I put it all together and proudly showed it to Mark Zaremba, who
  had commissioned the poster, and who had final say. His first
  take: "This is wicked, but, um, Drew Emmitt doesn’t play heavy
  metal!"
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/drew-emmit-band-fiery2.jpg"
  alt="" title="drew-emmit-band-fiery2" width="300" height="444"
  class="alignnone size-full wp-image-732">
</p>
<p class="outset left two">
  REALLY?!? I thought I was done. But, he was right. So I tried a
  few more things:
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/drew-emmit-band-2.jpg"
  alt="" title="drew-emmit-band-2" width="300" height="450" class=
  "alignnone size-full wp-image-695">
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/drew-emmit-band-3.jpg"
  alt="" title="drew-emmit-band-3" width="300" height="450" class=
  "alignnone size-full wp-image-733">
</p>
<p class="outset left two">
  "It’s still ... just ... creepy," Mark told me, after some
  experimenting. "The trees are just not friendly. You’ve got to
  put in a nice sky."
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/drew-emmit-band-4.jpg"
  alt="" title="drew-emmit-band-4" width="300" height="450" class=
  "alignnone size-full wp-image-734">
</p>
<p class="outset left two">
  So, finally, I had to do what I really did <strong>not</strong>
  want to do: cut out the fence in Photoshop.
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/cutting-out-fence.jpg"
  alt="" title="cutting-out-fence" width="450" height="300" class=
  "alignnone size-full wp-image-737">
</p>
<p class="outset left two">
  That, a decent starry sky image from somewhere, and a LITTLE MORE
  WORK, got me to a more friendly glowing mandolin image.
</p>
<p>
  <img src=
  "http://www.jeremycarlson.com/wp/wp-content/uploads/new-night-sky-layers.jpg"
  alt="" title="new-night-sky-layers" width="511" height="456"
  class="alignnone size-full wp-image-735">
</p>
<p>
  And finally, <a href="/drew-emmitt-poster/">we were there</a>.
</p>
<p>
  Phew.
</p>]]></content:encoded>
			<wfw:commentRss>http://jeremycarlson.com/drew-emmitt-poster-process/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>African Gate CD Packaging</title>
		<link>http://jeremycarlson.com/african-gate/</link>
		<comments>http://jeremycarlson.com/african-gate/#comments</comments>
		<pubDate>Fri, 28 Jan 2011 18:35:00 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[packaging]]></category>

		<guid isPermaLink="false">http://www.jeremycarlson.com/?p=715</guid>
		<description><![CDATA[West African artist Selasee puts out some delicious grooves, and I got totally hooked on his new CD while working on it. African Gate gets a lot of play in our house.]]></description>
			<content:encoded><![CDATA[West African artist Selasee puts out some delicious grooves, and I
got totally hooked on his new CD while working on it. <a href=
"http://www.selasee.com/CD_african_gate.html">African Gate</a> gets
a lot of play in our house.]]></content:encoded>
			<wfw:commentRss>http://jeremycarlson.com/african-gate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drew Emmitt Poster</title>
		<link>http://jeremycarlson.com/drew-emmitt-poster/</link>
		<comments>http://jeremycarlson.com/drew-emmitt-poster/#comments</comments>
		<pubDate>Fri, 28 Jan 2011 18:05:15 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[illustration]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[posters]]></category>

		<guid isPermaLink="false">http://www.jeremycarlson.com/?p=711</guid>
		<description><![CDATA[Poster for Drew Emmitt’s performance at the Louisville Downtown Street Faire, July 30, 2010. Yes, I actually carved it out of my fence.]]></description>
			<content:encoded><![CDATA[Poster for Drew Emmitt’s performance at the Louisville Downtown
Street Faire, July 30, 2010. Yes, I actually <a title=
"story and pictures at 11" href=
"/drew-emmitt-poster-process/">carved it out of my fence</a>.]]></content:encoded>
			<wfw:commentRss>http://jeremycarlson.com/drew-emmitt-poster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s with the WordPress editor?</title>
		<link>http://jeremycarlson.com/whats-with-the-wordpress-editor/</link>
		<comments>http://jeremycarlson.com/whats-with-the-wordpress-editor/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 22:47:28 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Write]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.jeremycarlson.com/?p=669</guid>
		<description><![CDATA[Man, I'm having all sorts of problems. At this point, I'm using the Raw HTML plugin, so I can write in HTML. I don't really want to write in HTML, but it took me 20 minutes to get that last post working correctly. I've been working on design stuff, not the mechanics of simple writing, [...]]]></description>
			<content:encoded><![CDATA[<p>
  Man, I'm having all sorts of problems.
</p>
<p>
  At this point, I'm using the <a href=
  "http://wordpress.org/extend/plugins/raw-html/">Raw HTML</a>
  plugin, so I can write in HTML. I don't really <em>want</em> to
  write in HTML, but it took me 20 minutes to get that last post
  working correctly. I've been working on design stuff, not the
  mechanics of simple writing, apparently to my detriment.
</p>
<p>
  This is almost as bad as, ahem, Microsoft WORD. I'm just saying.
</p>]]></content:encoded>
			<wfw:commentRss>http://jeremycarlson.com/whats-with-the-wordpress-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Release 3.0</title>
		<link>http://jeremycarlson.com/release30/</link>
		<comments>http://jeremycarlson.com/release30/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 22:14:15 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Write]]></category>

		<guid isPermaLink="false">http://www.jeremycarlson.com/?p=656</guid>
		<description><![CDATA[My god, I hope I don't take this long again. It has rough edges, but it was time to get this site out into the open and let it breathe. I started exploring how to re-do the old site in May, 2007. Wait, as I check file creation dates, it looks like I first created [...]]]></description>
			<content:encoded><![CDATA[<p>
  My god, I hope I don't take this long again.
</p>
<p>
  It has rough edges, but it was time to get this site out into the
  open and let it breathe.
</p>
<p>
  I started exploring how to re-do the old site in May, 2007. Wait,
  as I check file creation dates, it looks like I first created
  some sort of comp in October 2006! Ideas were kicking around, but
  I wasn't making any headway. And when my 20-Year High School
  Reunion was popping up in August '08, I just didn't want to show
  my old site, so I whipped out a very basic "interim" site showing
  a few portfolio pieces, which I figured would be there for a
  couple of months, and I'd get my shit together.
</p>
<blockquote>
  <p class="quote">
    <span class="openquote">‘</span>Life is what happens to you
    when you're busy making other plans.<span class=
    "closequote">’</span>
  </p>
  <p class="author">
    —John Lennon
  </p>
</blockquote>
<p>
  Well, it took a little longer than that.
</p>
<p>
  And at the end, am I happy? Well, SORTA. No, not really. I want
  to re-work already. At least I hope that the framework will allow
  changes on the fly a lot more, you know, like a website.
</p>
<p>
  Anyways, there we have it.
</p>
<p>
  More to come soon, I hope :)
</p>]]></content:encoded>
			<wfw:commentRss>http://jeremycarlson.com/release30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
