<?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/"
	>

<channel>
	<title>Michael Fields</title>
	<atom:link href="http://mfields.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://mfields.org</link>
	<description>Art + Web + Design in Portland, Oregon</description>
	<pubDate>Sat, 25 Apr 2009 19:34:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Add Default Images to Many Popular Magazine Style Themes</title>
		<link>http://mfields.org/2009/04/25/add-default-images-to-many-popular-magazine-style-themes/</link>
		<comments>http://mfields.org/2009/04/25/add-default-images-to-many-popular-magazine-style-themes/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 19:33:38 +0000</pubDate>
		<dc:creator>mfields</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[default]]></category>

		<category><![CDATA[image]]></category>

		<category><![CDATA[magazine]]></category>

		<category><![CDATA[monezine]]></category>

		<category><![CDATA[theme]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://mfields.org/?p=316</guid>
		<description><![CDATA[I have recently answered a couple of questions in the WordPress Support Forums dealing with adding default thumbnails to posts in a few &#8220;magazine style&#8221; themes. These themes have been really popular for as long as I can remember and they all seem to have a similar method for displaying thumbnails next to a post [...]]]></description>
			<content:encoded><![CDATA[<p>I have recently answered a couple of questions in the <a href="http://wordpress.org/support/">WordPress Support Forums</a> dealing with adding default thumbnails to posts in a few &#8220;magazine style&#8221; themes. These themes have been really popular for as long as I can remember and they all seem to have a similar method for displaying thumbnails next to a post excerpt on the theme&#8217;s front page. </p>
<p><span id="more-316"></span></p>
<p>The thumbnail is added via <a href="http://codex.wordpress.org/Using_Custom_Fields">Custom Field</a>. If you log into WordPress and navigate to the <strong>Add New Post</strong> screen, you will see that there is a <strong>Custom Fields</strong> box when you scroll down a bit. The magazine style themes that I have come across allow you to enter a Custom Field Name/Value pair to associate an image to the current post which will display next to the excerpt on the blog&#8217;s front page. This usually looks something like:</p>
<p><img src="http://mfields.org/wp-content/uploads/wordpress-custom-fields-dialog.gif" alt="wordpress-custom-fields-dialog" title="wordpress-custom-fields-dialog" width="550" height="247" class="alignnone size-full wp-image-327" /></p>
<p>This system works very well and has been adopted by many theme authors. But what happens when no image path is entered as a Custom Field? What if an invalid path is entered into the Custom Field? Well, this depends on how the theme was coded&#8230;</p>
<p>The first <a href="http://wordpress.org/support/topic/263776">forum post that I answered</a> was from <strong>tyankee</strong> whom had the following problem with the <a href="http://web2feel.com/monezine-theme/">Monezine Theme</a>: </p>
<blockquote><p>&#8230;when you don&#8217;t add that custom field to the post, a black image shows up. I&#8217;d like a default image to show up&#8230;</p></blockquote>
<p>This is rather easy to correct,  lets take a look at the code which displays the thumbnail. The following was taken from lines 22 and 23 of the current version&#8217;s index.php file <em>(this code is inside <strong>The Loop</strong>)</em>.</p>
<p><pre><code>&lt;?php $screen = get_post_meta($post-&gt;ID,&#039;screen&#039;, true); ?&gt;
&lt;img src=&quot;&lt;?php echo ($screen); ?&gt;&quot; width=&quot;160&quot; height=&quot;100&quot; alt=&quot;&quot;&nbsp;&nbsp;/&gt;</code></pre></p>
<p>This code has three possible outcomes:</p>
<ol>
<li>A valid image url will be echoed - An image will be displayed on the page.</li>
<li>An invalid image url will be echoed - No image will be displayed.</li>
<li>An empty string will be echoed - No image will be displayed.</li>
</ol>
<p>We can improve this code by defining a default image url and adding a bit of logic:</p>
<p><pre><code>&lt;?php // License: GPL
$custom_field_name = &#039;screen&#039;;
$default_image_url = &#039;http://example.com/my-default-image.jpg&#039;;

$post_specific_image_url = get_post_meta( $post-&gt;ID, $custom_field_name, true );

if( !empty( $post_specific_image_url ) &amp;&amp; $image_data = @getimagesize( $post_specific_image_url ) )
&nbsp;&nbsp;$image_url = $post_specific_image_url;
elseif( !empty( $default_image_url ) &amp;&amp; $image_data = @getimagesize( $default_image_url ) )
&nbsp;&nbsp;$image_url = $default_image_url;
else
&nbsp;&nbsp;$image_url = &#039;&#039;;
&nbsp;&nbsp;
if( $image_data )
&nbsp;&nbsp;print &#039;&lt;img src=&quot;&#039; . $image_url . &#039;&quot; width=&quot;&#039; . $image_data[0] . &#039;&quot; height=&quot;&#039; . $image_data[1] . &#039;&quot; alt=&quot;&quot; /&gt;&#039;;
?&gt;</code></pre></p>
<p>This will only print a result if an image url is defined (either as a Custom Field or as the value of $default_image_url) and if that url points to a valid image file.</p>
<p>If you are using a magazine theme which utilizes this or similar functionality, feel free to use the code I posted above.</p>
]]></content:encoded>
			<wfw:commentRss>http://mfields.org/2009/04/25/add-default-images-to-many-popular-magazine-style-themes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Redirect Users to Homepage Instead of Dashboard after Logging into WordPress</title>
		<link>http://mfields.org/2009/04/24/redirect/</link>
		<comments>http://mfields.org/2009/04/24/redirect/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 22:47:26 +0000</pubDate>
		<dc:creator>mfields</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[quick-fix]]></category>

		<guid isPermaLink="false">http://mfields.org/?p=298</guid>
		<description><![CDATA[Sick of having your blog&#8217;s users sent to the Dashboard after they log in? Here&#8217;s a quick way to redirect all registered users to your blog&#8217;s homepage. Just add the following code to your theme&#8217;s functions.php file.
&#60;?php
add_filter( &#039;login_redirect&#039;, &#039;mf_redirect_login&#039; );
function mf_redirect_login( $c ) {
&#160;&#160;return get_bloginfo( &#039;url&#039; );
}
?&#62;
]]></description>
			<content:encoded><![CDATA[<p>Sick of having your blog&#8217;s users sent to the Dashboard after they log in? Here&#8217;s a quick way to redirect all registered users to your blog&#8217;s homepage. Just add the following code to your theme&#8217;s functions.php file.</p>
<p><pre><code>&lt;?php
add_filter( &#039;login_redirect&#039;, &#039;mf_redirect_login&#039; );
function mf_redirect_login( $c ) {
&nbsp;&nbsp;return get_bloginfo( &#039;url&#039; );
}
?&gt;</code></pre></p>
]]></content:encoded>
			<wfw:commentRss>http://mfields.org/2009/04/24/redirect/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Art Shows for February</title>
		<link>http://mfields.org/2009/01/30/art-shows-february-2009/</link>
		<comments>http://mfields.org/2009/01/30/art-shows-february-2009/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 00:47:20 +0000</pubDate>
		<dc:creator>mfields</dc:creator>
		
		<category><![CDATA[Art]]></category>

		<category><![CDATA[breeze block]]></category>

		<category><![CDATA[fine grind]]></category>

		<category><![CDATA[love]]></category>

		<category><![CDATA[voyeur]]></category>

		<guid isPermaLink="false">http://mfields.org/?p=215</guid>
		<description><![CDATA[Hi. Just wanted to let you know that I have a few upcoming shows that open in February. New work at all three shows. Much thanks to Joe, Paige and Anna for having me be a part of all this. I&#8217;m really stoked to be making new work and showing it again&#8230; seeing as that [...]]]></description>
			<content:encoded><![CDATA[<p>Hi. Just wanted to let you know that I have a few upcoming shows that open in February. New work at all three shows. Much thanks to Joe, Paige and Anna for having me be a part of all this. I&#8217;m really stoked to be making new work and showing it again&#8230; seeing as that I&#8217;ve been on a 6 month hiatus from painting :) Anyway, all info is below. Hope to see you at one of these shows.</p>
<div class="clear" style="height:2em"></div>
<h2>100 BONES @ Breeze Block</h2>
<p><img src="http://mfields.org/promo/2009-01-22/bones.jpg" class="alignright " alt="0" /></p>
<p><strong>What it is:</strong> It&#8217;s the second annual 100 Bones show at Breeze Block which features artwork that is $100.00 and under.</p>
<p><strong>Why you gotta check it out: </strong> I&#8217;ll be showing 4 brand new pieces 8&#8243; x 8&#8243; priced from $40.00 - $100.00. Plus - there will be a grip of really cool artwork by other folks. <a href="http://breezeblockgallery.com/">Breeze Block</a> is a great store + gallery that recently moved from <a href="http://www.artonalberta.org/">Alberta-land</a> to East Burnside. They have rad handmade stuff from local creative-type-people, cool art books and zines + fashionable fashion-stuff. The creatures sewn from bicycle inner-tube rubber are among my favorite things one can find here&#8230;</p>
<p><strong>When it is:</strong> Friday, February 6th from 6-10pm</p>
<p><strong>Breeze Block Gallery</strong><br />
1847 E. Burnside, Ste. C<br />
Portland, OR<br />
<a href="http://breezeblockgallery.com/">breezeblockgallery.com</a></p>
<p><strong>Featuring:</strong> <a href="http://unclemildred.blogspot.com/">Mildred</a>, <a href="http://thegoodfoot.com/gallery/exhibit/32/michael-frank/1637/">Michael Frank</a>, Paul Estrada, <a href="http://www.uspacegallery.com/megadamson.html">Meg Adamson</a>, <a href="http://www.justinlovato.com">Justin Lovato</a>, <a href="http://eardrums4eyelids.com/">Ashley Montague</a>, Joe Polillo and <a href="http://mfields.org/">Me</a>.</p>
<div class="clear" style="height:2em"></div>
<h2>HAND CRAFTED</h2>
<p>(curated by J. Shea)</p>
<p><img src="http://mfields.org/promo/2009-01-22/hand-crafted.jpg" class="alignright" alt="0" /></p>
<p><strong>What it is:</strong> It&#8217;s the first art show at a great little cafe on the corner of SE 39th and Lincoln ( Lincoln is halfway between Hawthorne and Division).</p>
<p><strong>Why you gotta check it out: </strong> I&#8217;ll have a brand new piece in the show + there will be wicked-awesome stuff from a great selection of local talent.</p>
<p><strong>When it is:</strong> Saturday, February 7th from 6-10pm</p>
<p><strong>Fine Grind Art Cafe</strong><br />
2035 SE 39th Avenue<br />
Portland, OR<br />
<a href="http://pdxfinegrind.com/">pdxfinegrind.com</a></p>
<p><strong>Featuring:</strong> <a href="http://www.blainefontana.com/">Blaine Fontana</a>, Bryon Schroeder, <a href="http://www.myspace.com/habermanart">Chris Habberman</a>, Chris Wellock, Christofer Ross, <a href="http://jshea9.com/">J. Shea</a>, <a href="http://poboyart.com/">Jason Brown</a>, <a href="http://jessereno.com/">Jesse Reno</a>, <a href="http://www.reppeteaux.com/">Lesley Reppeteaux</a>, <a href="http://www.ryanbubnis.com/">Ryan Bubnis</a>, <a href="http://timothykarpinski.com/">Tim Karpinski</a>, <a href="http://tomkeating-art.blogspot.com/">Tom Keating</a> and <a href="http://mfields.org/">Me</a>.</p>
<div class="clear" style="height:2em"></div>
<h2>Voyeur @ The Love Show</h2>
<p>(curated by <a href="http://ohdivine.com/">Anna Todaro</a>)</p>
<p><img src="http://mfields.org/promo/2009-01-22/love.jpg" class="alignright" alt="0" /></p>
<p><strong>What it is: </strong> The Voyeur show consists of pieces of eyes that stare out from the painting at the audience. The <a href="http://launchpadgallery.org/loveshow4">Love Show</a> is a group showcase of works focusing on the topic of love. This year, the Voyeur Show will be a part of the Love Show&#8230; One might deduct that it will be an exhibition of lovely eyes&#8230; perhaps it will!</p>
<p><strong>Why You Shouldn&#8217;t Miss This Show: </strong>This show will consist of a collection of work created by individuals who organize art shows/websites/books/projects. Plus, Voyeur will be contained within the ginormous <a href="http://launchpadgallery.org/loveshow4">Love Show</a> which will have like a bazillion pieces. Not to be missed!</p>
<p><strong>Opens:</strong> Friday, February 13th from 7pm - Midnight</p>
<p><strong>Olympic Mills</strong><br />
107 SE Washington Street<br />
Portland, OR</p>
<p><strong>Featuring:</strong></p>
<ul>
<li><a href="http://www.shannonbowley.com/">Flora S. Bowley</a> curator of &#8220;Thirty!&#8221; Shows</li>
<li><a href="http://poboyart.com/">Jason Brown</a> curator of <a href="http://thegoodfoot.com/gallery/">The Goodfoot</a></li>
<li><a href="http://www.calsk8.com/zeitgeist/">Paul Fujita</a> curator of <a href="http://www.calsk8.com/zeitgeist">Zeitgeist Gallery</a></li>
<li><a href="http://www.myspace.com/habermanart">Chris Haberman</a> curator of <a href="http://www.myspace.com/olympicmillsart ">Olympic Mills</a> and <a href="http://www.myspace.com/eastbankart ">East Bank</a> among other things</li>
<li><a href="http://arashikami.deviantart.com/">Kaebel Hashitani</a> curator of <a href="http://www.sequentialartgallery.com/">Sequential Art Gallery</a></li>
<li><a href="http://launchpadgallery.org/">Ben Pink</a> curator of <a href="http://launchpadgallery.org/">Launchpad Gallery</a></li>
<li>Kelly Rauer of Portland Art Center</li>
<li><a href="http://backspacepdx.tribe.net/photos/58892312-1e37-4564-bc03-7daea7415663">Eric Robison</a> curator of <a href="http://backspace.bz/">Backspace</a></li>
<li><a href="http://pdxart.blogspot.com/">Richard Schemmerer</a> editor of <a href="http://pdxart.blogspot.com/">pdxart</a></li>
<li><a href="http://www.the100thmonkeystudio.com/3478.html">Beth Ann Short</a> co-founder of <a href="http://www.the100thmonkeystudio.com/">100th Monkey Studio</a></li>
<li><a href="http://www.myspace.com/rakeart">Jeremy Tucker</a> curator of Rake Art Gallery</li>
<li><a href="http://cathiejoyyoung.com/home.html">Cathy Joy Young</a> curator of <a href="www.myspace.com/galleryparadiso">Vino Paridiso</a></li>
<li><a href="http://mfields.org/">Me</a> editor of <a href="http://www.anothersky.org/in-print/invision2/">Invision series</a></li>
</ul>
<p><strong>Why is the flier spelled wrong: </strong> Hmmm&#8230; yes I did make the flier, yes there is a hideous spelling mistake on it. Now, I&#8217;m inclined to blame symmetry, or perhaps my lack of a proper education, but no&#8230; neither of these are right. I blame the fact that my sketch book lacks a spell checker. I mean come on people, this <em>is</em> the 21st century and all&#8230;.</p>
<div class="clear" style="height:2em"></div>
]]></content:encoded>
			<wfw:commentRss>http://mfields.org/2009/01/30/art-shows-february-2009/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordPress: How to create a separate page for your blog posts while using a static homepage.</title>
		<link>http://mfields.org/2009/01/29/wordpress-how-to-create-a-seperate-page-for-your-blog-posts-while-using-a-static-homepage/</link>
		<comments>http://mfields.org/2009/01/29/wordpress-how-to-create-a-seperate-page-for-your-blog-posts-while-using-a-static-homepage/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 03:23:12 +0000</pubDate>
		<dc:creator>mfields</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://mfields.org/?p=233</guid>
		<description><![CDATA[In a default installation of WordPress, the Front Page will display a list of all published posts sorted in descending order by &#8220;Post Date&#8221;. This works great if you want your WordPress installation to function as a &#8220;blog&#8221;, but what do you do if you want your installation to function as a &#8220;website&#8221; with a [...]]]></description>
			<content:encoded><![CDATA[<p>In a default installation of <a href="http://wordpress.org/">WordPress</a>, the Front Page will display a list of all published posts sorted in descending order by &#8220;Post Date&#8221;. This works great if you want your WordPress installation to function as a &#8220;blog&#8221;, but what do you do if you want your installation to function as a &#8220;website&#8221; with a &#8220;blog&#8221; inside it? Fortunately, this functionality is built into WordPress and only takes a few minutes to get up and running. Please read below for instructions. This tutorial assumes that you are using a fresh installation of WordPress (installed at &#8220;web root&#8221;) with the default theme. Don&#8217;t fret if this is not your current situation, the instruction below will work on any WordPress blog&#8230; you just might need to do a bit of work depending on the theme you are using :)</p>
<p><span id="more-233"></span></p>
<h2>Create Your Front Page</h2>
<p>Log into your <a href="http://codex.wordpress.org/Administration_Panels">Administration Panels</a> and from the left-hand sidebar click <a href="http://codex.wordpress.org/Pages_Add_New_SubPanel">Pages</a> -> Add New. Enter a title and content and click the &#8220;Publish&#8221; button. Appropriate titles for this page can be &#8220;Home&#8221;, &#8220;Welcome&#8221;, &#8220;Index&#8221;, anything that you like really. For the sake of this tutorial, let&#8217;s say you called your Front page &#8220;Welcome&#8221;.</p>
<h2>Create Your Posts Page</h2>
<p>Just like the previous step: from the left-hand sidebar click Pages -> Add New and create a page that will serve as your site&#8217;s &#8220;Blog&#8221; page. All we really <em>need</em> to do here is add a title and click the &#8220;Publish&#8221; button. Appropriate titles for this page can be &#8220;News&#8221;, &#8220;Blog&#8221;, &#8220;Posts&#8221;, anything that makes sense to you. For the sake of this tutorial, let&#8217;s say you called your Posts page &#8220;blog&#8221;.</p>
<h2>Update Your Settings</h2>
<p>From the left-hand sidebar navigate to: Settings -> Reading. The first from element on this page is &#8220;Front Page Displays&#8221;. In a default install, the &#8220;Your Latest Posts&#8221; radio button will be checked. For our purposes, we will select &#8220;A static page&#8221;. Right below these two radio button fields, There are two dropdown boxes: <strong>&#8220;Front page&#8221;</strong> and <strong>&#8220;Posts page&#8221;</strong>. We want to select the pages that we have just created for each dropdown box. Please see the image below for clarification. Oh yeah, don&#8217;t forget to press the &#8220;Save Changes&#8221; button at the bottom of the page!</p>
<p><img src="http://mfields.org/wp-content/uploads/reading-settings.gif" alt="reading-settings" title="reading-settings" width="550" height="203" class="alignnone size-full wp-image-242" /></p>
<h2>Check-out Your Site</h2>
<p>Navigate to your live WordPress installation to see your changes in action. You should be able to visit http://example.com/ and see your &#8220;Front Page&#8221; and visit http://example.com/blog/ to see your &#8220;Posts Page&#8221;.</p>
<h2>Help, It Didn&#8217;t Work For Me!!!!</h2>
<p>Sorry &#8217;bout that:) Lets take a look under the hood of your theme and see if there is something blocking us. Navigate to your installation&#8217;s current theme&#8217;s directory. Something like <code>/wp-content/themes/my-current-theme/</code> If you see a home.php file in this directory, then the above process will not work. We will need to turn this home.php file into a <a href="http://codex.wordpress.org/Pages#Page_Templates">Page Template</a>, assign this new Page Template to our &#8220;Welcome&#8221; page and finally delete home.php</p>
<h2>Creating the Page Template</h2>
<p>This is a lot easier than it sounds, but before you begin, please <strong>back up your theme&#8217;s files!!!!</strong> First, open a new file in a text-editor and save it to your theme&#8217;s folder. I like to name all my template files with a prefix of &#8220;t-&#8221;. For this example, I would name this new file &#8220;t-homepage.php&#8221;. Next thing to do is to add a few lines at the top of this file so that WordPress will recognize it as a Page Template. Add the following text and save your document.</p>
<p><pre><code>&lt;?php
/*
Template Name: Custom Homepage
*/
?&gt;
</code></pre></p>
<h2>Add the Contents of home.php to Our Custom Page Template</h2>
<p>Now we will copy all of the code from home.php and paste them into t-homepage.php under the code we just added and save your t-homepage.php. It is now time to delete home.php from our theme&#8217;s directory on our live site. We will also need to upload t-homepage.php to our server.</p>
<p>Why delete this file? Well, basicly when this file is present in an WordPress Theme, it will be used to create the Front Page, basically, it will override all of the steps we have taken above. </p>
<h2>Assign the Custom Page Template to Our Front Page</h2>
<p>From the left-hand sidebar click Pages -> Edit and select your Front Page from the list. On the right-hand sidebar, you will see a section titled &#8220;Attributes&#8221; (It&#8217;s the second box from the top) under &#8220;Template&#8221; choose the &#8220;Custom Homepage&#8221; option and click the &#8220;Update Page&#8221; button.</p>
<h2>In Conclusion</h2>
<p>Well, I hope that this tutorial helps you to gain better understanding of how your WordPress Blog works. Please let me know if this this was useful to you by posting a comment below! Thanks for reading!</p>
<h2>Related Resources</h2>
<ul>
<li><a href="http://www.wordpresshostingtips.com/wp-video-tutorials/how-to-creating-a-static-page-for-your-blog/">How to Create a Static Page for Your Blog</a></li>
<li><a href="http://codex.wordpress.org/Template_Hierarchy">Template Hierarchy</a></li>
<li><a href="http://www.themelab.com/2008/04/28/you-dont-need-a-blog-on-your-front-page/">You Don&#8217;t Need A Blog on Your Front Page</a></li>
<li><a href="http://www.youtube.com/watch?v=IAi3ZM1h4SY">How To Create A Custom WordPress Page Template</a></li>
]]></content:encoded>
			<wfw:commentRss>http://mfields.org/2009/01/29/wordpress-how-to-create-a-seperate-page-for-your-blog-posts-while-using-a-static-homepage/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Poster for Blue Cranes</title>
		<link>http://mfields.org/2009/01/02/new-poster-for-blue-cranes/</link>
		<comments>http://mfields.org/2009/01/02/new-poster-for-blue-cranes/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 00:18:22 +0000</pubDate>
		<dc:creator>mfields</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[blue cranes]]></category>

		<category><![CDATA[poster]]></category>

		<category><![CDATA[wayne horvitz]]></category>

		<guid isPermaLink="false">http://mfields.org/?p=140</guid>
		<description><![CDATA[ Fuck yeah! Really excited about this! First gig poster ever. I know the picture on the left is kinda small, but you can click on it to see a larger version.
A bit about the concept: The first thing that came to mind with the project was to have a large blue bird (symbolizing the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mfields.org/wp-content/uploads/blue-cranes-wayne-horvitz.jpg"><img src="http://mfields.org/wp-content/uploads/blue-cranes-wayne-horvitz-97x150.jpg" alt="blue-cranes-wayne-horvitz" title="blue-cranes-wayne-horvitz" width="97" height="150" class="alignleft size-thumbnail wp-image-144" /></a> <strong>Fuck yeah!</strong> Really excited about this! First gig poster ever. I know the picture on the left is kinda small, but you can click on it to see a larger version.</p>
<p><strong>A bit about the concept:</strong> The first thing that came to mind with the project was to have a large blue bird (symbolizing the <a href="http://bluecranesmusic.com/">Blue Cranes</a>) feeding music to a bunch of baby birds (representing the audience). I ran this idea across Joe (Tenor Sax - Blue Cranes)  and he had a different interpretation of this idea: The larger bird would symbolize <a href="http://waynehorvitz.net/">Wayne Horvitz</a> while the smaller birds would represent the Blue Cranes. He then went on to explain that the Blue Cranes perform an arrangement &#8220;<a href="http://www.last.fm/music/Wayne+Horvitz/_/Love,+Love,+Love">Love Love Love</a>&#8220;, one of Wayne&#8217;s <a href="http://waynehorvitz.net/scores/index.html">compositions</a>. A while back, someone had shown Wayne a recording of the Blue Crane&#8217;s version of the song and it was very well received. This opened up a correspondence between the two musical acts and eventually they set a date to play together in Portland. That date is Saturday, January 31st at <a href="http://thegoodfoot.com/music/">The Goodfoot</a>.</p>
<p><span id="more-140"></span></p>
<h3>The Composition</h3>
<p>The composition took on a few different forms along the way. The goal was to preserve the concept as much as possible. Sounds easy right? Well, not for me!!! This goes against <strong>everything</strong> I do when I <a href="http://mfields.org/art/">paint</a>. When I&#8217;m making a painting, I have no preconceived idea&#8230; I just create mess on top of mess - adding lines here and there until something emerges - kinda like a self created &#038; administered <a href="http://en.wikipedia.org/wiki/Rorschach_inkblot_test">Rorschach Test</a> - only my paintings possess more colors and, when it really comes down to it, I have absolutely no love for psychology :).</p>
<p>Here are a few drawings in consecutive order. The third drawing from the left shows the actual wing used in the final design. I learned a very important lesson with this wing&#8230; Never draw on ruled paper again. EVER! The blue lines are easy enough to remove once scanned in, but the ink bleeds like you wouldn&#8217;t believe causing tedious cleanup work.</p>
<p><a href="http://mfields.org/wp-content/uploads/composition.jpg"><img src="http://mfields.org/wp-content/uploads/composition-500x167.jpg" alt="composition" title="composition" width="500" height="167" class="alignnone size-medium wp-image-141" /></a></p>
<h3>The Hat</h3>
<p>This is the one distinguishing feature that I had to work with. A quick Google search produced a number of <a href="http://images.google.com/images?q=wayne+horvitz&#038;btnG=Search+Images">pictures of Wayne</a> wearing a hat of some sort. So I had to figure out how to draw a hat. People never believe me when I tell them that I don&#8217;t know how to draw very well, no one ever listens, but here&#8217;s a bit of proof: I ended up drawing 5 hats until I got one that I liked.</p>
<p>Although it sounds like I&#8217;m bitching, there&#8217;s something to be said about drawing things over and over again: sometimes it produces things that you would not have thought about otherwise. <strong>Case in point:</strong> The Piano Hat. Hat drawing #2 shows me trying to add some secondary embellishment to the bottom of the hat ribbon which visually registered as piano keys. Due to the fact that Wayne is a pianist, this turned out to be a perfect fit. </p>
<p><a href="http://mfields.org/wp-content/uploads/hats.jpg"><img src="http://mfields.org/wp-content/uploads/hats-500x326.jpg" alt="hats" title="hats" width="500" height="326" class="alignnone size-medium wp-image-142" /></a></p>
<h3>The Music Staff</h3>
<p>This part was fun&#8230; and only took two iterations to get to an acceptable state. The music is the first 6 bars to the melody of <a href="http://www.last.fm/music/Wayne+Horvitz/_/Love,+Love,+Love">Love Love Love</a>. You can see from the composition drawings above that this was originally supposed to be a worm, but I really couldn&#8217;t figure out how to get the notes into the shape of a worm while retaining the readability of the music, Oh well, I like this better anyways.</p>
<p><a href="http://mfields.org/wp-content/uploads/music-notes.jpg"><img src="http://mfields.org/wp-content/uploads/music-notes-500x298.jpg" alt="music-notes" title="music-notes" width="500" height="298" class="alignnone size-medium wp-image-143" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mfields.org/2009/01/02/new-poster-for-blue-cranes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>November&#8217;s Cold Chain</title>
		<link>http://mfields.org/2008/11/07/novembers-cold-chain/</link>
		<comments>http://mfields.org/2008/11/07/novembers-cold-chain/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 00:20:59 +0000</pubDate>
		<dc:creator>mfields</dc:creator>
		
		<category><![CDATA[Art]]></category>

		<category><![CDATA[birthday]]></category>

		<category><![CDATA[blue cranes]]></category>

		<category><![CDATA[book]]></category>

		<category><![CDATA[jesse reno]]></category>

		<guid isPermaLink="false">http://mfields.org/?p=134</guid>
		<description><![CDATA[Made of Wet Boots and Rain
Figured I should update my site a little more often. So, sit back, relax and enjoy the ride! Just be sure to keep your arms, legs and head inside while we&#8217;re in motion. No need to adjust your seat into the full upright and locked position though&#8230; You should be [...]]]></description>
			<content:encoded><![CDATA[<h3>Made of Wet Boots and Rain</h3>
<p>Figured I should update my site a little more often. So, sit back, relax and enjoy the ride! Just be sure to keep your arms, legs and head inside while we&#8217;re in motion. No need to adjust your seat into the full upright and locked position though&#8230; You should be comfortable, but there&#8217;s no need for decapitation.</p>
<h3>Shiny Black Ravens</h3>
<p><a href="http://myspace.com/bluecranes"><img class="alignleft size-thumbnail wp-image-136" title="Sleepy Time for the Blue Cranes?" src="http://mfields.org/wp-content/uploads/blue-cranes-150x99.jpg" alt="The Blue Cranes: photo by Chris Hudson" width="150" height="99" /></a> Actually, how &#8217;bouts shiny <a href="http://myspace.com/bluecranes">Blue Cranes</a>? I know it deviates from the lyrics a bit, but whatca-gonna-do? I was hanging out over at The <a href="http://thegoodfoot.com/">Goodfoot</a> last night when I was asked to do a <a href="http://gigposters.com/">Gig Poster</a> for one of their upcoming shows. Totally stoked! Not only have I wanted to make a gig poster for the longest time, but I get to make one for a rad band too. I first saw the Blue Cranes at <a href="http://www.galleryhomeland.org">Gallery Homeland</a> a few months back and the show was killer. Definately worth checking out live.  I&#8217;ve already started laying out the design in my head and I got a great feeling about this one! I&#8217;ll keep you posted with updates.</p>
<h3>On Chimney Smoked Lanes</h3>
<p><a rel="attachment wp-att-135" href="http://mfields.org/2008/11/07/novembers-cold-chain/gf-drink-and-draw/"><img class="alignleft size-thumbnail wp-image-135" title="untitled" src="http://mfields.org/wp-content/uploads/gf-drink-and-draw-150x149.jpg" alt="untitled" width="150" height="149" /></a>While at the Goodfoot, it was time for a solo session of Drink and Draw. What do you get when you cross-breed a few Oly&#8217;s, a 6&#8243;x6&#8243; piece of bristol paper and a micron pen? Just take a look to your left&#8230; you can click on it too and leave comments and stuff&#8230; You know you want to leave comments and stuff. If I had to title this drawing, it would probably be something in the neighborhood of: &#8220;bearded man with under-bite reaches for intangible treasure while his third-eyed wrapped in peacock feathers stares into the great beyond&#8221;. And this is reason #3 why this drawing will remain untitled.</p>
<h3>November Seems Odd</h3>
<p><img src="http://mfields.org/wp-content/uploads/my-guitar.jpg" alt="My Guitar" title="My Guitar" width="200" height="200" class="alignleft size-full wp-image-138" /> This is my guitar. There are many like it but this one is mine. My guitar is my best friend. It is my life. I must master it as I must master my life. Without me, my guitar is useless. Without my guitar I am useless&#8230; well, maybe not exactly&#8230; but it&#8217;s really cool! I&#8217;m stoked to have an electric guitar again&#8230; even if it is the cheapest, rottenest, won&#8217;t go in tune at all, impossible to intonate piece of s**t on the planet. It&#8217;s still awesome! I think it&#8217;s been 6 or 7 years since I had one and now you better watch out, cuz I&#8217;m gonna rock your face off! Wait, no I&#8217;m not. Yes I am. No I&#8217;m not. Yes I am&#8230; Reader, you&#8217;d better skip to the next heading while I sort this out with myself.</p>
<h3>You&#8217;re My Firing Squad</h3>
<p><a href="http://jessereno.com/forward"><img class="alignleft size-thumbnail wp-image-137" title="Forward - Like a Flower that Only Desires to Blossom" src="http://mfields.org/wp-content/uploads/jesse-reno-forward-150x149.jpg" alt="Forward - Like a Flower that Only Desires to Blossom" width="150" height="149" /></a> Forward - Like a Flower that Only Desires to Blossom. This is the title of a new book from <a href="http://jessereno.com/">Jesse Reno</a>. This is the second book I&#8217;ve put together for Jesse. Forward&#8230; features 40 full-color pages, is perfect bound (this is fancy book-people terms for paperback), and will be available for mass consumption in about a week or so. Check out the <a href="http://jessereno.com/forward/">online preview</a> and pre order one today! Related side note&#8230; I&#8217;ll be making my own book soon!!! I still have to hunt down a few pieces to photograph for inclusion, I&#8217;m hoping to have it together early January. Keep your eyes peeled.</p>
<h3>November</h3>
<p><a href='http://mfields.org/wp-content/uploads/cake.gif'><img src="http://mfields.org/wp-content/uploads/cake-150x133.gif" alt="Cake" title="Cake" width="150" height="133" class="alignleft size-thumbnail wp-image-139" /></a> Last, but certainly not least: HAPPY FRICKEN BIRTHDAY!!!! That&#8217;s right folks. November is the magic month whence your humble narrator was cast into this cruel cruel word almost 28 years ago&#8230; Oh it&#8217;s not that bad, yes it is, no it&#8217;s not&#8230;. Jesus Christ! Stop arguing! It&#8217;s downright embarrassing.</p>
]]></content:encoded>
			<wfw:commentRss>http://mfields.org/2008/11/07/novembers-cold-chain/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HAPPY HALLOWEEN!!!!!</title>
		<link>http://mfields.org/2008/10/29/happy-halloween/</link>
		<comments>http://mfields.org/2008/10/29/happy-halloween/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 01:00:12 +0000</pubDate>
		<dc:creator>mfields</dc:creator>
		
		<category><![CDATA[Random]]></category>

		<category><![CDATA[halloween]]></category>

		<guid isPermaLink="false">http://mfields.org/?p=132</guid>
		<description><![CDATA[
Yep&#8230;
that&#8217;s right&#8230;
HALLOWEEN!!!!
]]></description>
			<content:encoded><![CDATA[<p><a href='http://mfields.org/wp-content/uploads/happy-halloween.jpg'><img src="http://mfields.org/wp-content/uploads/happy-halloween.jpg" alt="Happy Halloween" title="Happy Halloween" width="400" height="351" class="size-medium wp-image-133" /></a></p>
<p>Yep&#8230;<br />
that&#8217;s right&#8230;<br />
HALLOWEEN!!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://mfields.org/2008/10/29/happy-halloween/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordCamp Comes to Portland</title>
		<link>http://mfields.org/2008/09/11/wordcamp-comes-to-portland/</link>
		<comments>http://mfields.org/2008/09/11/wordcamp-comes-to-portland/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 05:10:57 +0000</pubDate>
		<dc:creator>mfields</dc:creator>
		
		<category><![CDATA[Stuff to do]]></category>

		<category><![CDATA[wordcamp]]></category>

		<guid isPermaLink="false">http://mfields.org/?p=129</guid>
		<description><![CDATA[
They&#8217;re having one of these crazy WordCamp thingies here in Portland at the end of September&#8230; September 27th to be exact. So&#8230; if you like the WordPress, and you live in or around Portland, OR&#8230; you should sign up here. It costs $10&#8230; but they promise to feed you two meals, hook you up with [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.wordcampportland.org/'><img src="http://mfields.org/wp-content/uploads/wordcamp-pdx.jpg" alt="" title="WordCamp Portland" width="500" height="142" class="alignnone size-full wp-image-130" /></a></p>
<p>They&#8217;re having one of these crazy <a href="http://weblogtoolscollection.com/archives/2008/01/29/what-is-wordcamp/">WordCamp</a> thingies here in Portland at the end of September&#8230; September 27th to be exact. So&#8230; if you like the <a href="http://wordpress.org/">WordPress</a>, and you live in or around Portland, OR&#8230; you should <a href="http://www.wordcampportland.org/register/">sign up here</a>. It costs $10&#8230; but they promise to feed you two meals, hook you up with a t-shirt and they even add your name to this cool <a href="http://www.wordcampportland.org/attendees/">list of attendees</a>. I&#8217;m usually totally against paying money just to enter a building&#8230; but the folks putting together <a href="http://www.wordcampportland.org/">WordCamp PDX</a> are really hooking it up:) See ya there!</p>
]]></content:encoded>
			<wfw:commentRss>http://mfields.org/2008/09/11/wordcamp-comes-to-portland/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Art Updates July 2008</title>
		<link>http://mfields.org/2008/07/13/art-updates-july-2008/</link>
		<comments>http://mfields.org/2008/07/13/art-updates-july-2008/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 04:55:26 +0000</pubDate>
		<dc:creator>mfields</dc:creator>
		
		<category><![CDATA[Art]]></category>

		<guid isPermaLink="false">http://mfields.org/?p=125</guid>
		<description><![CDATA[Invision2 Show + Release Party

This Last Thursday ( July 31st ) at The Goodfoot we will be having a release party for Invision 2 - A Collection of Visual Art from Portland + Beyond. There are a bunch of great artists in the new book and they will all have work on display. Come check [...]]]></description>
			<content:encoded><![CDATA[<h2>Invision2 Show + Release Party</h2>
<p><a href='http://mfields.org/wp-content/uploads/invision-2-card-front-600.jpg'><img src="http://mfields.org/wp-content/uploads/invision-2-card-front-600-500x354.jpg" alt="Invision2 Artists List" title="Invision2 Artists List" width="500" height="354" class="alignnone size-medium wp-image-126" /></a></p>
<p>This Last Thursday ( July 31st ) at <a href="http://thegoodfoot.com/">The Goodfoot</a> we will be having a release party for Invision 2 - A Collection of Visual Art from Portland + Beyond. There are a bunch of great artists in the new book and they will all have work on display. Come check it out from 5pm-2am.</p>
<p><strong>Invision</strong><br />
Released: September 6th, 2007<br />
Published by: Another Sky Press<br />
Order: <a href="http://www.anothersky.org/main/order-form/">anothersky.org</a><br />
Featuring the work of: Kendra Binney, Ryan Bodiroga, Paul Fujita, Chris Haberman, Scott Wayne Indiana, Tim Karpinski, Tom Keating, Charlie Alan Kraft, Asley Montague, Dan Ness, Jesse Reno &#038; Keith Rosson.</p>
<p><strong>Invision 2</strong><br />
Released: July 31st, 2008<br />
Published by: Another Sky Press<br />
Preorder: <a href="http://www.anothersky.org/main/order-form/">anothersky.org</a><br />
Featuring the work of: Erik Abel, Ashley Anson, Damon Ayers, Jason Brown, Michael Fields, Justin Gorman, Jason Graham, Michael Edward McGovern, Russel Short, David Stein, Alisha Wessler &#038; Eric Wixon.</p>
<h2>DRAW</h2>
<p><a href='http://draw.artpdx.com/'><img src="http://mfields.org/wp-content/uploads/draw-1-114x150.gif" alt="" title="draw-1" width="114" height="150" class="alignleft size-thumbnail wp-image-128" /></a>I have started up a new series of art shows that I will be curating (with friends) in the Portland Metro area. The first show is currently up and on display at <a href="http://thelifeart.com/">The Life</a> in Old Town. They have gallery hours on Fridays from 12-5 PM and Saturday from 1 - 5 PM. If your in the neighborhood during these times, you should stop by and check out the show. If there is no chance that you will be in town and still want to see the pieces - I have uploaded a few to the new <a href="http://draw.artpdx.com">DRAW site</a>. The site is still in it&#8217;s early stages of development, but  it is fully functional as is. </p>
]]></content:encoded>
			<wfw:commentRss>http://mfields.org/2008/07/13/art-updates-july-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Back Online</title>
		<link>http://mfields.org/2008/07/08/back-online/</link>
		<comments>http://mfields.org/2008/07/08/back-online/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 05:29:59 +0000</pubDate>
		<dc:creator>mfields</dc:creator>
		
		<category><![CDATA[Art]]></category>

		<guid isPermaLink="false">http://mfields.org/?p=123</guid>
		<description><![CDATA[After some strange-ness with my domain registrar, mfields.org is back online. 
]]></description>
			<content:encoded><![CDATA[<p>After some strange-ness with my domain registrar, mfields.org is back online. </p>
]]></content:encoded>
			<wfw:commentRss>http://mfields.org/2008/07/08/back-online/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
