<?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>Stephen Wyatt Bush Blog</title>
	<atom:link href="http://stephenwyattbush.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://stephenwyattbush.com/blog</link>
	<description>wyattdanger</description>
	<pubDate>Sat, 11 Jul 2009 16:12:50 +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>Going to Shut Down and Improve</title>
		<link>http://stephenwyattbush.com/blog/?p=258</link>
		<comments>http://stephenwyattbush.com/blog/?p=258#comments</comments>
		<pubDate>Sat, 11 Jul 2009 16:12:50 +0000</pubDate>
		<dc:creator>Stephen Bush</dc:creator>
		
		<category><![CDATA[General]]></category>

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

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

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

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

		<guid isPermaLink="false">http://stephenwyattbush.com/blog/?p=258</guid>
		<description><![CDATA[I think it&#8217;s time that I shut down this site and redesign. This site was great at the time it was built: I was just beginning to understand the web and web design. Now I am ready to create a more engaging site, one with more dynamic content and smarter presentation. 
]]></description>
			<content:encoded><![CDATA[<p>I think it&#8217;s time that I shut down this site and redesign. This site was great at the time it was built: I was just beginning to understand the web and web design. Now I am ready to create a more engaging site, one with more dynamic content and smarter presentation. </p>
]]></content:encoded>
			<wfw:commentRss>http://stephenwyattbush.com/blog/?feed=rss2&amp;p=258</wfw:commentRss>
		</item>
		<item>
		<title>Coding Thesis Piece in PHP</title>
		<link>http://stephenwyattbush.com/blog/?p=253</link>
		<comments>http://stephenwyattbush.com/blog/?p=253#comments</comments>
		<pubDate>Wed, 15 Apr 2009 03:50:49 +0000</pubDate>
		<dc:creator>Stephen Bush</dc:creator>
		
		<category><![CDATA[BFA Thesis]]></category>

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

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

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

		<category><![CDATA[Senior Thesis]]></category>

		<category><![CDATA[Social Media]]></category>

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

		<category><![CDATA[Web Development]]></category>

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

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

		<category><![CDATA[stephen bush]]></category>

		<category><![CDATA[Stephen Wyatt Bush]]></category>

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

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

		<guid isPermaLink="false">http://stephenwyattbush.com/blog/?p=253</guid>
		<description><![CDATA[Note: This post is a follow-up to Coding Thesis Piece in Javascript
The Markup Including PHP

&#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&#62;
&#60;html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"&#62;
    &#60;head&#62;
        &#60;title&#62;PHP Test&#60;/title&#62;
        &#60;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /&#62;
        &#60;meta http-equiv=refresh content="7; URL=index.php" /&#62;
        &#60;link rel = "stylesheet" type = "text/css" href = "thesis.css" /&#62;
        &#60;script type="text/javascript" [...]]]></description>
			<content:encoded><![CDATA[<p><em><strong>Note: This post is a follow-up to <a title="Previous Article on Piece" href="http://stephenwyattbush.com/blog/?p=238">Coding Thesis Piece in Javascript</a></strong></em></p>
<h4><span style="color: #808080;">The Markup Including PHP<br />
</span></h4>
<pre><strong>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"&gt;
    &lt;head&gt;
        &lt;title&gt;PHP Test&lt;/title&gt;
        &lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /&gt;
        &lt;meta http-equiv=refresh content="7; URL=index.php" /&gt;
        &lt;link rel = "stylesheet" type = "text/css" href = "thesis.css" /&gt;
        &lt;script type="text/javascript" src = "script.js"&gt; &lt;/script&gt;
    &lt;/head&gt;

    &lt;body&gt;
        &lt;div id = "tweets"&gt;
            &lt;p&gt;
                &lt;?php
</strong>                <em>// Call Flickr's API and return JSON object, it comes wrapped inside jsonFlickrApi();</em><strong>
                $flickrResponse = file_get_contents("http://www.flickr.com/services/rest/?method=
                       flickr.photos.getRecent&amp;api_key={apikey}&amp;format=json&amp;per_page=1", true);

</strong><em>                // Remove the "jsonFlickrApi(" from the beginning of the JSON object</em><strong>
                $flickrJSON = str_replace("jsonFlickrApi({", "{", $flickrResponse); 

</strong><em>                // Remove the closing ")" from the JSON object</em><strong>
                $flickrJSON = substr_replace($flickrJSON,"",-1);

</strong><em>                // Run PHP's json_decode(); function to turn JSON object in PHP array</em><strong>
                $json_flickrObject = json_decode($flickrJSON);

</strong><em>                // Create variables containing the values of nodes needed to construct Flickr img URL</em><strong>
                $farm = $json_flickrObject-&gt;photos-&gt;photo[0]-&gt;farm;
                $id = $json_flickrObject-&gt;photos-&gt;photo[0]-&gt;id;
                $server = $json_flickrObject-&gt;photos-&gt;photo[0]-&gt;server;
                $secret = $json_flickrObject-&gt;photos-&gt;photo[0]-&gt;secret;

</strong>                // Call Twitter's API, return JSON object<strong>
                $twitterResponse = file_get_contents("http://search.twitter.com/search.json?q=the&amp;rpp=1",
                       true);

</strong><em>                // Run PHP's json_decode(); function to turn JSON object into PHP array</em><strong>
                $json_tweetObject = json_decode($twitterResponse);

</strong><em>                // Extract "text" from the first index of array "results" inside $tweetObject</em><strong>
                print ($json_tweetObject-&gt;results[0]-&gt;text);
                ?&gt;
            &lt;/p&gt;
            &lt;div id="img"&gt;
                &lt;?php
</strong><em>                // Insert needed variables into string to create &lt;img&gt; tag to Flickr image</em><strong>
                echo "&lt;img src=\"http://farm$farm.static.flickr.com/$server/$id"._."$secret.jpg\" alt=\
                     "Flickr Image\" /&gt;";
                ?&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/body&gt;
&lt;/html&gt;
</strong></pre>
<h4><span style="color: #808080;">What&#8217;s Changed, Why It Matters</span></h4>
<p><span style="color: #808080;"><span style="color: #000000;">Building the page to be independent of Javascript is advantageous from an accessibility standpoint, particularly in that it allows the document to function properly even if a user&#8217;s browser has Javascript disabled, or if Javascript malfunctions due to another open window. Because PHP is a server-side scripting language, all functionality is taken care of before information is sent to the browser. I&#8217;d display a working model of this version but my host doesn&#8217;t have PHP5 installed, therefore the json_decode(); function does not work properly. However, just know that it renders the same, the key differece being that the source code displays all HTML generated by the PHP, whereas the previous version did not. Scripting on the server-side also keeps my api key (and any other important information in other cases) hidden from view of any user who uses the &#8220;view source&#8221; command. </span></span><span style="color: #808080;"><span style="color: #000000;">This project has been an exciting learning experience. This is my second attempt to code anything with PHP, I&#8217;m glad to say it worked out in only a couple hours. </span></span><span style="color: #808080;"><span style="color: #000000;">Enjoy! Questions? Comments?<br />
</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://stephenwyattbush.com/blog/?feed=rss2&amp;p=253</wfw:commentRss>
		</item>
		<item>
		<title>Coding Thesis Piece in Javascript</title>
		<link>http://stephenwyattbush.com/blog/?p=238</link>
		<comments>http://stephenwyattbush.com/blog/?p=238#comments</comments>
		<pubDate>Wed, 15 Apr 2009 02:34:44 +0000</pubDate>
		<dc:creator>Stephen Bush</dc:creator>
		
		<category><![CDATA[BFA Thesis]]></category>

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

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

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

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

		<category><![CDATA[Social Media]]></category>

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

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

		<category><![CDATA[Web Development]]></category>

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

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

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

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

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

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

		<category><![CDATA[stephen bush]]></category>

		<category><![CDATA[Stephen Wyatt Bush]]></category>

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

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

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

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

		<guid isPermaLink="false">http://stephenwyattbush.com/blog/?p=238</guid>
		<description><![CDATA[Note: This post serves to address the creation of my piece in the 2009 UTC Senior Show, previously covered in this article.
The HTML

The markup for this document is relatively short and simple. It serves to create a template into which the Javascript can inject content.  Both tweets and images are later inserted into #tweets via [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em>Note: This post serves to address the creation of <a title="The Piece" href="http://stephenwyattbush.com/thesis/piece.html">my piece</a> in the 2009 UTC Senior Show, previously covered in <a title="Previous Article on Piece" href="http://stephenwyattbush.com/blog/?p=213">this article</a>.</em></strong></p>
<h4><span style="color: #808080;">The HTML</span></h4>
<pre></pre>
<p><span style="color: #808080;"><span style="color: #000000;">The markup for this document is relatively short and simple. It serves to create a template into which the Javascript can inject content.  Both tweets and images are later inserted into #tweets via javascript, using jQuery&#8217;s DOM manipulation to create &lt;p&gt; and &lt;img&gt; tags.<br />
 </span></span></p>
<pre><span style="color: #808080;"><strong><span style="color: #000000;">&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"&gt;
    &lt;head&gt;
        &lt;meta http-equiv="content-type" content="text/html; charset=utf-8" /&gt;
        &lt;title&gt;Stephen Bush Thesis&lt;/title&gt;
        &lt;link type = "text/css" rel = "stylesheet" href = "style.css" /&gt;
        &lt;script src="jquery-1.3.1.js" type="text/javascript"&gt;&lt;/script&gt;
        &lt;script type="text/javascript" src="script.js"&gt;&lt;/script&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;div id="tweets"&gt; &lt;/div&gt;
    &lt;/body&gt;
&lt;/html&gt;</span></strong>
</span></pre>
<h4><span style="color: #808080;">The Javascript</span></h4>
<p>The javascript uses the jQuery library, a solid foundation upon which to build the AJAX functionality of this site. The script first creates arrays for both photos and tweets, then establishes the functions which will retrieve and parse data from Flickr and Twitter, and then injects the results in the HTML.</p>
<pre><span style="color: #000000;"><em>// Create arrays</em></span>
<strong>var tweets = new Array();
var photos = new Array();</strong>

<span style="color: #000000;"><em>// Create &lt;p&gt; and &lt;img&gt; tags in #tweets. If each photo in the array has been used, reuse the first.</em></span>
<strong>function processData(){
    $("#tweets").html("&lt;p&gt;" + tweets.shift() +  "&lt;/p&gt;&lt;img src='" + photos.shift() + "' /&gt;")

    if (photos.length){
        var preload = new Image();
        preload.src = photos[0];
    }   
}</strong>

<em><span style="color: #000000;">// Call Flickr's API and return the most recent x photos from the public timeline in JSON format.
// Loop through the results in array, selecting nodes from the JSON to construct the URL of respective Flickr image.</span></em>
<strong>function getRecentPhotos(){
    $.getJSON("http://www.flickr.com/services/rest/?method=flickr.photos.getRecent&amp;api_key={apikey}&amp;format=json&amp;per_page=14&amp;jsoncallback=?", function(data){
        $.each(data.photos.photo, function(i, item){   
            photos[i] = "http://farm" + item.farm + ".static.flickr.com/" + item.server + "/" + item.id + "_" + item.secret + ".jpg";
        });
    });       
}</strong>
<span style="color: #000000;"><em>
// Call Twitter's API and return the public timeline in JSON format
// Loop through each tweet in the array, extracting the text node from each.</em></span>
<strong>function getRecentTweets(){
    $.getJSON("http://search.twitter.com/search.json?q=the&amp;callback=?", function(data){
            $.each(data, function(i, results) {
            tweets[i] = "" + results.text + "";
        });
    });
}</strong>

<span style="color: #000000;"><em>// Once the window has loaded, execute processData() each 7 seconds, injecting new content into the template.</em></span>
<strong>$(window).load( function() {
    processData();
    setInterval(processData, 7000);
});</strong>

<span style="color: #000000;"><em>// When the document is ready, initialize AJAX Setup, do not cache.
// Return a new set of photos every 50 seconds
// Return a new set of tweets every 61 seconds</em></span>
<strong>$(document).ready( function() {
    $.ajaxSetup({cache: 0 });
    setInterval(getRecentPhotos, 50000);   
    getRecentPhotos();
    setInterval(getRecentTweets, 61000);   
    getRecentTweets();
});</strong></pre>
<h4><span style="color: #808080;">The CSS</span></h4>
<p><span style="color: #808080;"><span style="color: #000000;">Cascading Style Sheets give style to the document, centering the tweets and images in a fixed-width frame in the center of the page. The background color becomes black and the text is set in white Lucida Grande. Also a slight gradient .png file is placed behind the content inside the frame. The html <em>bottom-margin</em> </span></span><span style="color: #808080;"><span style="color: #000000;"><em>1px </em></span></span><span style="color: #808080;"><span style="color: #000000;">hack ensures that the scroll bar is always present on the right of the browser to avoid shifting the image left on longer pages.</span><br />
</span></p>
<pre><span style="color: #808080;"><span style="color: #000000;"><strong>#tweets {
margin-top: 50px;
margin-left: auto;
margin-right: auto;
border: 1px solid gray;
width: 500px;
padding: 10px;
background-image: url(gradient.png);
}

p {
font-family: Lucida Grande, Helvetica Neue, Helvetica, Sans-Serif;
font-size: 20px;
line-height: 26px;
color: white;   
float: left;
width: 500px;
height: auto;
display: block;
margin: 0 auto;
padding-bottom: 10px;
}

img {
width: 500px;
height: auto;
clear: left;
}

body {
background-color: black;
}

html {
height: 100%;
margin-bottom: 1px;
}</strong>
</span></span></pre>
<h4><span style="color: #808080;"><span style="color: #000000;"><span style="color: #808080;">The Result</span><br />
</span></span></h4>
<p>This piece was displayed in UTC&#8217;s Cress Fine Arts Gallery during the 2009 Senior Show, a collection of works from graduating students of painting and graphic design. It filled a small side gallery and was projected to such a size that images were 5 feet wide, not just 500 pixels.</p>
<p>The finished product behaves like a slideshow of image and caption, with one random tweet paired with one random image every seven seconds. The downfall of this code is that if a user has javascript disabled or javascript should be disrupted by another browser window, the application fails to function at all. To address this, I will recreate the functionality of this piece in PHP in my next post. Enjoy! </p>
<p><a href = "http://stephenwyattbush.com/thesis/piece.html">View the piece online.</a></p>
<div id="attachment_243" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-243" title="Browser Sample" src="http://stephenwyattbush.com/blog/wp-content/uploads/2009/04/sample_fullscreen-300x187.png" alt="Sample" width="300" height="187" /><p class="wp-caption-text">Sample</p></div>
]]></content:encoded>
			<wfw:commentRss>http://stephenwyattbush.com/blog/?feed=rss2&amp;p=238</wfw:commentRss>
		</item>
		<item>
		<title>Designing the Physical Portfolio</title>
		<link>http://stephenwyattbush.com/blog/?p=234</link>
		<comments>http://stephenwyattbush.com/blog/?p=234#comments</comments>
		<pubDate>Tue, 07 Apr 2009 19:05:35 +0000</pubDate>
		<dc:creator>Stephen Bush</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Graphic Design]]></category>

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

		<category><![CDATA[Print Process]]></category>

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

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

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

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

		<category><![CDATA[Art Department]]></category>

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

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

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

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

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

		<category><![CDATA[portofolio review]]></category>

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

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

		<category><![CDATA[Stephen Wyatt Bush]]></category>

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

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

		<guid isPermaLink="false">http://stephenwyattbush.com/blog/?p=234</guid>
		<description><![CDATA[The files that will be printed and assembled to make my physical portfolio are now complete. After they are assembled they will live in a slick-looking aluminum case, and will be supplemented by my cleanly soon-to-be-designed resume and some leave-behind materials for the Portfolio Review coming soon.
View the work online.
Each file features a few images [...]]]></description>
			<content:encoded><![CDATA[<p>The files that will be printed and assembled to make my physical portfolio are now complete. After they are assembled they will live in a slick-looking aluminum case, and will be supplemented by my cleanly soon-to-be-designed resume and some leave-behind materials for the Portfolio Review coming soon.</p>
<h4><a href = "http://is.gd/rfOJ">View the work online.</a></h4>
<p>Each file features a few images of the work, a brief description of the work, a list of deliverables presented to the client, a list of skills exercised in completing the project, details on when the project was completed, and itemized descriptions of each image. Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://stephenwyattbush.com/blog/?feed=rss2&amp;p=234</wfw:commentRss>
		</item>
		<item>
		<title>Senior Thesis Show 1 2009</title>
		<link>http://stephenwyattbush.com/blog/?p=213</link>
		<comments>http://stephenwyattbush.com/blog/?p=213#comments</comments>
		<pubDate>Fri, 03 Apr 2009 04:28:31 +0000</pubDate>
		<dc:creator>Stephen Bush</dc:creator>
		
		<category><![CDATA[BFA Thesis]]></category>

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

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

		<category><![CDATA[Graphic Design]]></category>

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

		<category><![CDATA[Senior Thesis]]></category>

		<category><![CDATA[Social Media]]></category>

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

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

		<category><![CDATA[Web Development]]></category>

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

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

		<category><![CDATA[Art Department]]></category>

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

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

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

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

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

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

		<category><![CDATA[sol lewitt]]></category>

		<category><![CDATA[Stephen Wyatt Bush]]></category>

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

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

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

		<guid isPermaLink="false">http://stephenwyattbush.com/blog/?p=213</guid>
		<description><![CDATA[Preface
Senior Thesis Show 1 has launched and is currently on display in the Cress Gallery in the Fine Arts Center. This marks the culmination of my BFA experience at the University of Tennessee at Chattanooga. My piece, an exploration in the formation of meaning and the relation between image and text, is on display in [...]]]></description>
			<content:encoded><![CDATA[<h4>Preface</h4>
<p>Senior Thesis Show 1 has launched and is currently on display in the <a href="http://oneweb.utc.edu/~artdept/cressgallery/">Cress Gallery</a> in the Fine Arts Center. This marks the culmination of my BFA experience at the University of Tennessee at Chattanooga. My piece, an exploration in the formation of meaning and the relation between image and text, is on display in the side gallery. Running from a hidden computer, it projects the contents of <a href="http://stephenwyattbush.com/thesis/piece.html">this page</a> on a web browser onto a large canvas. It is accompanied by ambient music from <a href="http://somafm.com">SomaFM</a>&#8217;s Drone Zone. The artist statement further covers what the project is about:</p>
<h4>Artist Statement</h4>
<blockquote><p>
<strong>Untitled</strong><br />
Stephen Bush<br />
XHTML, CSS, Javascript<br />
<em>The idea becomes a machine that makes the art</em>. – Sol Lewitt</p>
<p>In an attempt to explore the construction of meaning, images, text, and sound are combined, bereft of context. In and of themselves, each element is a container and messenger of its own accord. When the three conjoin, a new essence is offered to the viewer for interpretation. To allow for thorough investigation of this idea, live streams of images, text, and music are drawn from unconnected social media sources. Repeated observation of this process establishes a narrative; transient and unending.</p>
</blockquote>
<h4>Melding Art and Programming</h4>
<p>The piece began as an attempt to examine the impact that each individual variable and consideration of design can have on information. I planned to create posters and books exploring every possible combination of a set of variables, such as font, font-weight, font-style, color, scale, image, and more. Realizing that this would be time consuming and would not teach me anything new, I decided to pursue writing a program to combine the elements for me. After exploring this idea for a while, I instead tapped into application programming interfaces (APIs) of established social media sites (<a href="http://twitter.com/wyattdanger">Twitter</a> and <a href="http://flickr.com/photos/stephenbush">Flickr</a>) with Javascript to provide the content to be randomly combined. All code involved will be covered in a later blog post, so get excited!</p>
<h4>Presentation on Process</h4>
<p>Before opening the gallery, all graphic design majors gave 5 minute Keynote presentations about our work. This served as an excellent opportunity to refine our public speaking skills and to clearly communicate our project concepts to the audience before our pieces had even been viewed. Slides will soon be posted to Slideshare, accompanied by another sweet blog post about the presentation. It was pretty much exciting and fantastic.</p>
<h4>Outstanding Turnout</h4>
<p>In advertising for this exhibition, our class turned not only to traditional means of fliers and postcards (which were beautifully designed by classmates), but also to social media. Utilizing Twitter &amp; <a href="http://www.facebook.com/events.php?ref=sb#/event.php?eid=61899956862">Facebook</a>, I personally invited over 700 people to the opening. This was certainly the most packed house that the Cress Gallery has ever hosted, and I think the spectators came for more than just the free food!</p>
<h4>In Closing</h4>
<p>Thanks to all who came to support us. The work will be on display in the gallery for another week, so if you are in the area, I greatly encourage you to check it out! Also the second show opens April 10th, and promises to be just as great. The UTC Art Department produces some truly talented and motivated individuals, come be a part of the exciting UTC and Chattanooga Arts Community.</p>
<div id="attachment_218" class="wp-caption alignleft" style="width: 510px"><img class="size-full wp-image-218" title="Me and My Project" src="http://stephenwyattbush.com/blog/wp-content/uploads/2009/04/3402510809_dbfc25d8a0.jpg" alt="Photo By Jessi Taylor" width="500" height="333" /><p class="wp-caption-text">Photo By Jessi Taylor</p></div>
]]></content:encoded>
			<wfw:commentRss>http://stephenwyattbush.com/blog/?feed=rss2&amp;p=213</wfw:commentRss>
		</item>
		<item>
		<title>Highlights of SXSW 2009</title>
		<link>http://stephenwyattbush.com/blog/?p=205</link>
		<comments>http://stephenwyattbush.com/blog/?p=205#comments</comments>
		<pubDate>Tue, 24 Mar 2009 13:42:39 +0000</pubDate>
		<dc:creator>Stephen Bush</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Graphic Design]]></category>

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

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

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

		<category><![CDATA[Social Media]]></category>

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

		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[Web Development]]></category>

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

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

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

		<category><![CDATA[business cards]]></category>

		<category><![CDATA[Christopher Schmitt]]></category>

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

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

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

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

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

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

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

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

		<category><![CDATA[stephen bush]]></category>

		<category><![CDATA[Stephen Wyatt Bush]]></category>

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

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

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

		<category><![CDATA[web standards]]></category>

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

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

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

		<guid isPermaLink="false">http://stephenwyattbush.com/blog/?p=205</guid>
		<description><![CDATA[South By Southwest proved to be a memorable and exciting experience, a high point in my college career. It proved an incredible opportunity to meet both the people whose work I&#8217;ve admired for years, and those unfamiliar to me. The combination its welcoming atmosphere, geek community, and incredible programming made South By Southwest completely awesome. [...]]]></description>
			<content:encoded><![CDATA[<p>South By Southwest proved to be a memorable and exciting experience, a high point in my college career. It proved an incredible opportunity to meet both the people whose work I&#8217;ve admired for years, and those unfamiliar to me. The combination its welcoming atmosphere, geek community, and incredible programming made South By Southwest completely awesome. Here are a <a href="http://www.flickr.com/photos/stephenbush/3381187120/">few photos </a>I took.</p>
<p><strong>Favorite Things About SXSW 2009</strong></p>
<ul>
<li>Living and commuting with <a href="http://www.glendathegood.com/blog/">Glenda Simms</a></li>
<li>Watching <a title="Flickr Video" href="http://www.flickr.com/photos/stephenbush/3381094464/">Pouncer</a> get inside a hamster ball</li>
<li>Meeting <a title="Varick" href="http://twitter.com/varick">Varick</a> and <a title="Travis" href="http://twitter.com/rockthenroll">Travis</a> of <a title="ngenWorks" href="http://www.ngenworks.com/">ngenWorks</a> and <a title="Happy Webbies" href="http://www.happywebbies.com/">Happy Webbies</a> at the Houston Airport</li>
<li>Dinner with the <a title="Opera" href="http://opera.com">Opera</a> folks – Thomas, Chris, Henny, Lawrence, Chaals</li>
<li>Hanging out with <a title="Chris David Mills" href="http://dev.opera.com/author/974138">Chris Mills</a>, talking web, beer, and metal</li>
<li>Meeting Fellow Chattanooga <a href="http://easy-designs.net/">Aaron Gustafson</a></li>
<li>Seeing Watchmen and meeting <a href="http://superfluousbanter.org/">Dan Rubin</a></li>
<li>Everything You Know About Web Design is Wrong presentation by <a href="http://twitter.com/uxcrank">@uxcrank</a></li>
<li>Meeting the guys from <a href="http://clearleft.com/">ClearLeft</a> – <a href="http://www.andybudd.com/">Andy</a>, <a href="http://paulannett.co.uk/">Paul</a>, and <a href="http://adactio.com/">Jeremy</a></li>
<li>Paul&#8217;s <a href="http://paulannett.co.uk/sxsw09">Presentation</a></li>
<li>The fact that SXSWi has more attendees than <a href="http://www.utc.edu/">UTC</a> has students</li>
<li>Meeting <a href="http://bobulate.com/">Liz Danzico</a> and discussing SVA&#8217;s <a href="http://interactiondesign.sva.edu/">MFA Interaction Design</a> program</li>
<li><a href="http://robweychert.com/"> Rob Weychert.</a></li>
<li>Receiving a compliment on my business card from <a href="http://www.davidcarsondesign.com/">David Carson</a></li>
<li>Seeing the premier of <a href="http://www.objectifiedfilm.com/">Objectified</a></li>
<li>Eating with Paul, Jason, Regina, and others of <a href="http://www.apple.com/">Apple.com</a></li>
<li>Happy <a href="http://www.cogaoke.com/">Cogaoke</a>!</li>
<li>Meeting IE8 Architect Chris Wilson</li>
<li>Knowing <a href="http://aarronwalter.com">Aarron Walter</a></li>
<li><a href="http://blueflavor.com">Blue Flavor</a> guys and the <a href="http://97bottles.com">97 Bottles</a> Party</li>
<li><a href="http://slash25.com/">Patrick</a> and his kilt</li>
<li>Watching <a href="http://teachtheweb.com/blog/">Leslie</a> present</li>
<li>Watching <a href="http://interact.webstandards.org/">WaSP Interact</a> unveil itself</li>
<li>Getting involved in the web ed discussion <a href="http://search.twitter.com/search?q=sxswed">#sxswed</a></li>
<li>Meeting <a href="http://www.zeldman.com/">Jeffrey Zeldman</a></li>
<li>PF Changs with some incredible people whom I adore and admire</li>
<li>Meeting new Chattanoogans <a href="http://www.themattharris.com/">The Matt Harris</a> and<a href="http://cindyli.com/"> Cindy Li</a></li>
<li>Dinners with <a href="http://www.duoh.com/">Geert</a> and <a href="http://veerle.duoh.com/">Veerle</a></li>
<li>Fortune cookie reading &#8220;A golden egg of opportunity falls into your lap this month.&#8221;</li>
<li>Wine and cheese party hosted by <a href="http://bulletproofajax.com/">Jeremy Keith</a></li>
<li>Being included in inclusive events by Chris Mills, <a href="http://www.kenneth.himschoot.com/blog/">Kenneth Himschoot</a>, Aarron Walter, Aaron Gustafson, <a href="http://shauninman.com">Shaun Inman</a>, Rob Weychert, and all the wonderful people who were good to me</li>
<li>Talking with Damien Schaefer of <a href="http://www.herosion.com/">Herosion</a></li>
<li>Meeting<a href="http://jasonsantamaria.com"> Jason Santa Maria</a></li>
<li>Meeting<a href="http://www.principlesofbeautifulwebdesign.com/"> Jason Beaird</a></li>
<li>Zen Gardening with <a href="http://www.mezzoblue.com/">Dave Shea</a></li>
<li>All the kind people of <a href="http://careers.yahoo.com/universityinterns.php">Yahoo!</a> Especially Will and Micah</li>
<li>Browser Wars panel, particularly Chaals&#8217;s responses</li>
<li>Being able to approach and talk to <em>anybody</em></li>
<li>Dinner with the <a href="http://tubatomic.com/">Tubatomic</a> guys</li>
<li>Finally meeting the Tubatomic guys</li>
<li>Color Angels panel</li>
<li>Celebrating four months, no cigs. And not caving at the parties.</li>
<li>Thinking at some point that a <a href="http://twitter.com/wyattdanger/status/1343272877">fanny pack would be cool</a></li>
<li>Hearing about <a href="http://wiki.github.com/stubbornella/oocss">OOCSS</a> straight from <a href="http://wiki.github.com/stubbornella/oocss">Nicole</a></li>
<li>St. Patrick&#8217;s Day in Austin</li>
<li>Margaritas at 2pm at the Iron Cactus</li>
<li>Cajun platter with Veerle, Geert, Jeremy Keith, Jessica, Dave Shea, and Nicole</li>
<li>Table drawing with Veerle</li>
<li>Achieving Nerdvana</li>
<li>Being able to approach <em>anybody</em> and talk JS debugging, css, html, etc.</li>
<li>Buying an iPod touch to keep up with <a href="http://twitter.com/wyattdanger">Twitter</a> during SXSW</li>
<li>Playing Shaun&#8217;s <a href="http://shauninman.com/horrorvacui/">Horror Vacui </a>the entire flight back</li>
<li>Following up with the great people I met</li>
<li>Feeling full of energy and inspiration</li>
<li>Looking forward to the future</li>
<li>Planning next year&#8217;s SXSW excursion</li>
<p>There is likely more than I can remember. The entire SXSW experience was incredible. I thank <a href="http://morellc.com">Leslie</a>, <a href="http://www.christopherschmitt.com/">Christopher</a>, and <a href="http://glendathegood.com">Glenda</a> for their roles in making South by a possibility for me. It was truly inspiring, exciting, and something I hope to do again.</ul>
]]></content:encoded>
			<wfw:commentRss>http://stephenwyattbush.com/blog/?feed=rss2&amp;p=205</wfw:commentRss>
		</item>
		<item>
		<title>RSS Makes My Life Better</title>
		<link>http://stephenwyattbush.com/blog/?p=195</link>
		<comments>http://stephenwyattbush.com/blog/?p=195#comments</comments>
		<pubDate>Tue, 03 Mar 2009 07:15:58 +0000</pubDate>
		<dc:creator>Stephen Bush</dc:creator>
		
		<category><![CDATA[General]]></category>

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

		<category><![CDATA[Professional Practice]]></category>

		<category><![CDATA[Social Media]]></category>

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

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

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

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

		<category><![CDATA[Graphic Design]]></category>

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

		<category><![CDATA[Leslie Jensen-Inman]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://stephenwyattbush.com/blog/?p=195</guid>
		<description><![CDATA[The Morning Paper
Recently, for some reason unbeknown to me, I subscribed for four months of my local paper. I thought I might wake up in the morning, toast some buttered bread, brew some fresh coffee, and settle down with the paper while the sun rose and filled my kitchen. No, let&#8217;s be honest. That vision [...]]]></description>
			<content:encoded><![CDATA[<h4>The Morning Paper</h4>
<p>Recently, for some reason unbeknown to me, I subscribed for four months of my local paper. I thought I might wake up in the morning, toast some buttered bread, brew some fresh coffee, and settle down with the paper while the sun rose and filled my kitchen. No, let&#8217;s be honest. That vision is quite idealistic. The papers pile up in my driveway. Each morning I hurriedly drive over it, and in the evening I give it a good &#8220;because I paid for it&#8221; once-over. Subscribing seemed like a good idea, really. <a href="http://www.amazon.com/Getting-College-Career-Things-Before/dp/006114259X">Getting From College To Career</a> even told me to subscribe to a newspaper. I do love the <a href="http://www.nytimes.com/services/xml/rss/index.html">New York Times</a>, especially the <a href="http://www.nytimes.com/pages/magazine/index.html">Sunday edition magazine</a>. I&#8217;ll shell out $5 for that each week. When I am ready for news on a daily basis, however, I do not open the paper. I browse my RSS Feed.</p>
<p><strong>What is RSS?</strong> <a href="http://wyattdanger.tumblr.com/post/83065374/video-rss-in-plain-english-common-craft">Click here for a primer.</a></p>
<h4>Google is Great, Google is Good</h4>
<p>I use Google&#8217;s feed reader, a natural extension of <a href="http://www.google.com/s2/profiles/111504082610285995689">my dependency on Gmail and Google services</a>. Google&#8217;s Reader allows me to <a href="http://www.google.com/reader/shared/16013126563678490467">share interesting stories</a> with friends, to search for my favorite subjects, and to sort my feeds with custom tags.</p>
<h4>My Favorite Feeds</h4>
<ul>
<li><strong>Favorite Feeds By Category</strong></li>
<li><strong>Typography</strong> <a href="http://www.typographyserved.com/rss">Typography Served</a> </li>
<li><strong>Design Inspiration</strong> <a href="http://www.formfiftyfive.com/?feed=rss2">FormFiftyFive</a> </li>
<li><strong>Brand &#038; Identity</strong> <a href="http://www.google.com/reader/atom/user%2F16013126563678490467%2Fstate%2Fcom.google%2Freading-list">BrandNew</a></li>
<li><strong>Upcoming Internet News</strong> <a href="http://feeds2.feedburner.com/Mashable">Mashable</a> </li>
<li><strong>Extensive Resources</strong> <a href="http://rss1.smashingmagazine.com/feed/">Smashing Magazine</a> </li>
<li><strong>Cool Dudes My Age</strong> <a href="http://feeds2.feedburner.com/hellyeahdude">HellYeahDude</a> </li>
<li><strong>Inspirational Young Designer</strong> <a href="http://feeds2.feedburner.com/justcreativedesignblog">Jacob Cass</a></li>
<li><strong>Chattanooga News</strong> <a href="http://chattarati.com/feed/">Chattarati</a> </li>
</ul>
<h4>Really Simple Syndication, In Conclusion</h4>
<p>I hope this serves as inspiration to those of you who are unfamiliar or unenthusiastic about feed readers. My RSS feed is something I look forward to checking each morning, afternoon, evening, and night. It is the future of news delivery. I no longer go out to visit my favorite sites, they come to me.</p>
]]></content:encoded>
			<wfw:commentRss>http://stephenwyattbush.com/blog/?feed=rss2&amp;p=195</wfw:commentRss>
		</item>
		<item>
		<title>Album Artwork Facebook Meme</title>
		<link>http://stephenwyattbush.com/blog/?p=180</link>
		<comments>http://stephenwyattbush.com/blog/?p=180#comments</comments>
		<pubDate>Tue, 24 Feb 2009 04:26:36 +0000</pubDate>
		<dc:creator>Stephen Bush</dc:creator>
		
		<category><![CDATA[Graphic Design]]></category>

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

		<category><![CDATA[Social Media]]></category>

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

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

		<category><![CDATA[Web Design]]></category>

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

		<category><![CDATA[album art]]></category>

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

		<category><![CDATA[cd cover]]></category>

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

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

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

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

		<category><![CDATA[stephen bush]]></category>

		<category><![CDATA[Stephen Wyatt Bush]]></category>

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

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

		<guid isPermaLink="false">http://stephenwyattbush.com/blog/?p=180</guid>
		<description><![CDATA[As a child, I absolutely loved viewing the artwork and typography contained within a newly purchased CD. When I first learned about Graphic Design as a profession, it was the desire to design album artwork that interested me. Within the past week I have been sucked into a Facebook meme revolving around album art creation.
The [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">As a child, I absolutely loved viewing the artwork and typography contained within a newly purchased CD. When I first learned about Graphic Design as a profession, it was the desire to design album artwork that interested me. Within the past week I have been sucked into a Facebook meme revolving around album art creation.</p>
<h4 style="text-align: left;">The Meme</h4>
<p style="text-align: left;"><em>This is a fun way to waste 5-10 minutes (or more if you actually want to be creative).</em></p>
<p style="text-align: left;"><em>Make your band&#8217;s album cover meme:</em></p>
<p style="text-align: left;"><em>1 - </em><strong>Go to Wikipedia.</strong><em> Hit “random”<br />
or click http://en.wikipedia.org/wiki/Special:Random<br />
The first random Wikipedia article you get is the name of your band.</em></p>
<p style="text-align: left;"><em>2 - </em><strong>Go to Quotations Page</strong><em> and select &#8220;random quotations&#8221;<br />
or click http://www.quotationspage.com/random.php3<br />
The last four or five words of the very last quote on the page is the title of your first album.</em></p>
<p style="text-align: left;"><em>3 - </em><strong>Go to Flickr </strong><em>and click on “explore the last seven days”<br />
or click http://www.flickr.com/explore/interesting/7days<br />
Third picture, no matter what it is, will be your album cover.</em></p>
<p style="text-align: left;"><em>4 - </em><strong>Use Photoshop</strong><em> or similar to put it all together.</em></p>
<p style="text-align: left;"><em>5 - </em><strong>Post it to FB</strong><em> with this text in the &#8220;caption&#8221; or &#8220;comment&#8221; and TAG the friends you want to join in.</em></p>
<h4 style="text-align: left;">The Results</h4>
<p style="text-align: left;">I found it incredibly fun to sit down and design just for the sake of designing. This meme afforded me the chance to play with type, make some outlandish design decisions, and distract myself from impending deadlines. Posting the items to a <a title="Album Art Exercises Facebook Group" href="http://www.facebook.com/photo.php?pid=32397521&amp;id=56702902#/group.php?gid=51630288995">Facebook group</a> dedicated to these memes made the experience all the more enjoyable.</p>
<div class="mceTemp" style="text-align: left;">
<dl id="attachment_181" class="wp-caption alignnone" style="width: 520px;">
<dt class="wp-caption-dt"><img class="size-full wp-image-181" title="cd1" src="http://stephenwyattbush.com/blog/wp-content/uploads/2009/02/cd1.png" alt="cd1" width="510" height="auto" /></dt>
<dd class="wp-caption-dd" style="text-align: left;">My First. I&#8217;m starting to believe that nearly anything looks good with Gotham. Gotham + Breasts is a natural extension of this idea.</dd>
</dl>
</div>
<div class="mceTemp" style="text-align: left;">
<dl id="attachment_182" class="wp-caption alignnone" style="width: 520px;">
<dt class="wp-caption-dt"><img class="size-full wp-image-182" title="cd2" src="http://stephenwyattbush.com/blog/wp-content/uploads/2009/02/cd2.jpg" alt="Like an old Gospel group at Christmas time. On this one I wanted to achieve the vintage record look inspired by Mat Turner." width="510" height="510" /></dt>
<dd class="wp-caption-dd" style="text-align: left;">Like an old Gospel group at Christmas time. Or The Sound of Music. On this one I wanted to achieve the vintage record look inspired by Mat Turner.</dd>
</dl>
</div>
<p style="text-align: left;">
<div id="attachment_185" class="wp-caption alignnone" style="width: 520px"><img class="size-full wp-image-185" title="StoneyLake" src="http://stephenwyattbush.com/blog/wp-content/uploads/2009/02/cd31.jpg" alt="As I child, I absolutely loved viewing the artwork and typography contained within a newly purchased CD. When I first learned about Graphic Design as a profession, it was the desire to design album artwork that interested me. Within the past week I have been sucked into a Facebook meme revolving around album art creation. The Meme  This is a fun way to waste 5-10 minutes (or more if you actually want to be creative).  Make your band's album cover meme:  1 - Go to Wikipedia. Hit “random” or click http://en.wikipedia.org/wiki/Special:Random The first random Wikipedia article you get is the name of your band.  2 - Go to Quotations Page and select &quot;random quotations&quot; or click http://www.quotationspage.com/random.php3 The last four or five words of the very last quote on the page is the title of your first album.  3 - Go to Flickr and click on “explore the last seven days” or click http://www.flickr.com/explore/interesting/7days Third picture, no matter what it is, will be your album cover.  4 - Use Photoshop or similar to put it all together.  5 - Post it to FB with this text in the &quot;caption&quot; or &quot;comment&quot; and TAG the friends you want to join in. The Results   cd1     My First. I'm starting to believe that nearly anything looks good with Gotham.     Like an old Gospel group at Christmas time. On this one I wanted to achieve the vintage record look inspired by Mat Turner.     Like an old Gospel group at Christmas time. Or The Sound of Music. On this one I wanted to achieve the vintage record look inspired by Mat Turner.  I found it really difficult to apply text to the beautiful Flickr image I got on this one. So I masked it and applied some nasty drop shadow for kicks. Reminds me of that Youtube video.. &quot;Because it's fun, it's fun to do bad things.&quot;     I found it really difficult to apply text to the beautiful Flickr image I got on this one. So I masked it and applied some nasty drop shadow for kicks. Reminds me of that Youtube video.. &quot;Because it's fun, it's fun to do bad things.&quot;" width="510" height="auto"  /><p class="wp-caption-text">I found it really difficult to apply text to the beautiful Flickr image I got on this one. So I masked it and applied some nasty drop shadow for kicks. Reminds me of that Youtube video.. &quot;Because it&#39;s fun, it&#39;s fun to do bad things.&quot;</p></div>
<div class="mceTemp" style="text-align: left;">
<dl id="attachment_185" class="wp-caption alignnone" style="width: 520px;">
<dt class="wp-caption-dt"> <img class="size-full wp-image-186" title="cd4" src="http://stephenwyattbush.com/blog/wp-content/uploads/2009/02/cd4.jpg" alt="Cooper seemed like a fun typeface to play with for achieving that old record look. " width="510" height="auto" /></dt>
<dd class="wp-caption-dd" style="text-align: left;">Cooper Black is an awesome typeface. It&#8217;s one I wish I could use more. </dd>
</dl>
</div>
<p style="text-align: left;">
<div class="mceTemp" style="text-align: left;">
<dl id="attachment_187" class="wp-caption alignnone" style="width: 520px;">
<dt class="wp-caption-dt"><img class="size-full wp-image-187" title="cd5" src="http://stephenwyattbush.com/blog/wp-content/uploads/2009/02/cd5.jpg" alt="I used some whack typeface made out of images of sponges.. toyed with hue to create rainbow gradients, and made a cute sticker. Lazar Zakind is a chess badass. Grilled Cheese FTW!" width="510" height="auto" /></dt>
<dd class="wp-caption-dd" style="text-align: left;">I used some whack typeface made out of images of sponges.. toyed with hue to create rainbow gradients, and made a cute sticker. Lazar Zakind is a chess badass. Grilled Cheese FTW!</dd>
</dl>
</div>
<p style="text-align: left;">Grilled Cheese FTW. Seriously, what can I say after that?</p>
]]></content:encoded>
			<wfw:commentRss>http://stephenwyattbush.com/blog/?feed=rss2&amp;p=180</wfw:commentRss>
		</item>
		<item>
		<title>Enjoying the Tumblr</title>
		<link>http://stephenwyattbush.com/blog/?p=169</link>
		<comments>http://stephenwyattbush.com/blog/?p=169#comments</comments>
		<pubDate>Tue, 17 Feb 2009 16:58:45 +0000</pubDate>
		<dc:creator>Stephen Bush</dc:creator>
		
		<category><![CDATA[General]]></category>

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

		<category><![CDATA[Social Media]]></category>

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

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

		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://stephenwyattbush.com/blog/?p=169</guid>
		<description><![CDATA[A New Blog
I recently set up my own Tumblr account. I like Tumblr as a way to connect and share with friends. Not only does Tumblr make it easy to share interesting links, images, quotes, conversations, and videos, it also imports my latest Tweets and Diggs.
Easier to Use
As a web designer and developer, I must [...]]]></description>
			<content:encoded><![CDATA[<h4>A New Blog</h4>
<p>I recently set up <a href="http://wyattdanger.tumblr.com">my own Tumblr account</a>. I like Tumblr as a way to connect and share with friends. Not only does Tumblr make it easy to share interesting links, images, quotes, conversations, and videos, it also imports my latest <a href="http://twitter.com/wyattdanger">Tweets</a> and <a href="http://digg.com/users/damnawesome817">Diggs</a>.</p>
<h4>Easier to Use</h4>
<p>As a web designer and developer, I must use and test social media platforms. After trying many, <a href="http://tumblr.com">Tumblr</a> stands out above the rest. Rather than producing lengthy blog posts, Tumblr enables users to quickly share the best of the Internet. <a href="http://treypiepmeier.com">Trey Piepmeier</a>, Nashville-based web developer says,</p>
<blockquote><p>&#8220;Tumblr is one of the most enjoyable platforms for both development and everyday use. Easy enough that you actually use it.&#8221;</p></blockquote>
<p>View <a href="http://trey.tumblr.com">Trey&#8217;s Tumblog.</a> Also check out some of these other fantastic sites built on Tumblr: <a href="http://brokershandsontheirfacesblog.tumblr.com/">Brokers With Hands on Their Faces Blog</a>, <a href="http://www.laserportraits.net/">Laser Portraits</a>, and <a href="http://mashable.tumblr.com/">Mashable</a>.  </p>
<h4>The Tumblr Dash</h4>
<p><img src="http://stephenwyattbush.com/blog/wp-content/uploads/2009/02/tumblrdash.png" alt="tumblrdash" title="tumblrdash" width="600" height="184" class="alignleft size-full wp-image-170" /></p>
<p>The Tumblr Dash is simple, intuitive, and a pleasure to use. Further, customizing the look and feel of your Tumblr blog is easy. You can implement preset Tumblr themes and then customize your HTML and CSS easily. The Tumblr interface makes layout customization a pleasure. It&#8217;s hard to put into words just how much I like this service. </p>
<h4>Make Your Own</h4>
<p>Go ahead. Visit Tumblr and set up your own account. You may be surprised at just great the service is.</p>
<h4>Further Reading</h4>
<ul>
<li><a href="http://www.davidville.com/">Creators of Tumblr</a></li>
<li><a href="http://vimeo.com/2841524?pg=embed&#038;sec=2841524">Video detailing new Tumblr features</a></li>
<li><a href="http://mashable.com/2009/01/26/tumblr-themes/">A Showcase of Great Tumblr Themes</a></li>
<li><a href="http://mashable.com/2009/01/11/tumblr-tumblelog/">A List of the Best Tumblogs</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://stephenwyattbush.com/blog/?feed=rss2&amp;p=169</wfw:commentRss>
		</item>
		<item>
		<title>SXSWi Prep: Business Cards</title>
		<link>http://stephenwyattbush.com/blog/?p=136</link>
		<comments>http://stephenwyattbush.com/blog/?p=136#comments</comments>
		<pubDate>Mon, 16 Feb 2009 00:17:42 +0000</pubDate>
		<dc:creator>Stephen Bush</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Print Process]]></category>

		<category><![CDATA[Professional Practice]]></category>

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

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

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

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

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

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

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

		<category><![CDATA[business cards]]></category>

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

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

		<category><![CDATA[stephen bush]]></category>

		<category><![CDATA[Stephen Wyatt Bush]]></category>

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

		<guid isPermaLink="false">http://stephenwyattbush.com/blog/?p=136</guid>
		<description><![CDATA[Designing Business Cards
In preparing for South by Southwest Interactive in March, I am working to polish my professional image. It is important that I have business cards ready to hand out to the exciting people I will meet. In creating these cards, I originally looked back to my busines cards created in Professional Prep class [...]]]></description>
			<content:encoded><![CDATA[<h4>Designing Business Cards</h4>
<p>In preparing for <a href = "http://sxsw.com/interactive">South by Southwest Interactive </a>in March, I am working to polish my professional image. It is important that I have business cards ready to hand out to the exciting people I will meet. In creating these cards, I originally looked back to my busines cards created in Professional Prep class last Spring.</p>
<h4>The Old</h4>
<p><img src="http://stephenwyattbush.com/blog/wp-content/uploads/2009/02/old_identity1.png" alt="old_identity1" title="old_identity1" width="600" height="auto" class="alignleft size-full wp-image-145" /><br />
<img src="http://stephenwyattbush.com/blog/wp-content/uploads/2009/02/old_identity2.png" alt="old_identity2" title="old_identity2" width="600" height="auto" class="alignleft size-full wp-image-148" /><br />
<img src="http://stephenwyattbush.com/blog/wp-content/uploads/2009/02/old_identity3.png" alt="old_identity3" title="old_identity3" width="600" height="auto" class="alignleft size-full wp-image-151" /></p>
<p>These are three of a series of five color combinations of business cards. The color combinations were rather wild, using bright and neon colors in jarring combinations. I think the largest influences on their design was my recent trip to NYC and the amount of early &#8217;90s Hip Hop I was listening to each day.The logo was designed during this assignment, built on the triangular grid clearly indicated on these cards.</p>
<h4>The New</h4>
<p><img src="http://stephenwyattbush.com/blog/wp-content/uploads/2009/02/bcard_upload.png" alt="bcard_upload" title="bcard_upload" width="600" height="auto" class="alignleft size-full wp-image-137" /></p>
<p>The new card is consistent with the branding of my website: gray tones and a bright orange, using Akzidenz Grotesk. On the whole the redesigned cards are intended to be simpler, cleaner, and sharper. I am still using the same logomark because I like the angularity and the grid it is built upon. </p>
<h4>The Real Deal</h4>
<p>I ordered the cards through an online vendor, <a href="http://www.uprinting.com/">Uprinting</a>. The process of ordering was easy, I needed to prep the standard-sized cards with a bleed at 300dpi jpeg format. Simple enough. Business cards will make a great addition to my personal brand and my ability to market myself. Look out, SXSWi.</p>
]]></content:encoded>
			<wfw:commentRss>http://stephenwyattbush.com/blog/?feed=rss2&amp;p=136</wfw:commentRss>
		</item>
	</channel>
</rss>
