<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Chris Valleskey</title>
	<atom:link href="http://chrisvalleskey.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://chrisvalleskey.com</link>
	<description>Developer, Designer, etc.</description>
	<lastBuildDate>Wed, 28 Jul 2010 05:53:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Facebook</title>
		<link>http://chrisvalleskey.com/2010/07/facebook/</link>
		<comments>http://chrisvalleskey.com/2010/07/facebook/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 05:53:57 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chrisvalleskey.com/?p=532</guid>
		<description><![CDATA[I visit Facebook more often than I would care to admit. Maybe it&#8217;s because I&#8217;m tech-savvy, or maybe it&#8217;s because I love clicking the little red update notifications. In any case, while I was visiting the site tonight I noticed&#8230;]]></description>
			<content:encoded><![CDATA[<p>I visit Facebook more often than I would care to admit. Maybe it&#8217;s because I&#8217;m tech-savvy, or maybe it&#8217;s because I love clicking the little red update notifications. In any case, while I was visiting the site tonight I noticed something called the Friend Finder on the home page&#8217;s sidebar.</p>
<p>Here&#8217;s what it looks like in case you don&#8217;t know what I&#8217;m talking about:</p>
<p><img src="http://chrisvalleskey.com/wp-content/uploads/2010/07/fbfriendfinder.png" alt="Facebook Friend Finder" title="fbfriendfinder" width="257" height="148" /></p>
<p>Now, I don&#8217;t know how popular this Friend Finder tool is. All I know is that I&#8217;ve never used it. And after refreshing the page a couple times only to see the friends change inside the box, I started to wonder something: Have these friends, the ones it says have used it…<strong>actually used it?</strong></p>
<p><em>Nope!</em></p>
<p>I asked a few of my friends that were listed if they had ever used the service, and every one of them said they hadn&#8217;t. Now, I know I&#8217;m not alone when I say that some of the ways Facebook uses our information is wrong, and maybe even unethical. Honestly, this bothers me. Facebook used my friends, who hadn&#8217;t even used the service, to try and get me to use it.</p>
<p>What kind of company does that?</p>
]]></content:encoded>
			<wfw:commentRss>http://chrisvalleskey.com/2010/07/facebook/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>HTML5 Graph</title>
		<link>http://chrisvalleskey.com/2010/07/html5-graph/</link>
		<comments>http://chrisvalleskey.com/2010/07/html5-graph/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 05:58:11 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Project]]></category>

		<guid isPermaLink="false">http://chrisvalleskey.com/?p=470</guid>
		<description><![CDATA[An experiment I did with the <code>&#60;canvas&#62;</code> tag and JavaScript. Example page and download included!]]></description>
			<content:encoded><![CDATA[<p>I started this project after I heard about the <code><a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html">&lt;canvas&gt;</a></code> tag that was included in the HTML5 spec. Since I wanted to learn more about HTML5 and the new things in it, I decided to focus on this particular tag and use it as a learning experience.</p>
<p>If you don&#8217;t know anything about the <code>&lt;canvas&gt;</code> tag, it&#8217;s basically a blank slate that you can use to draw and display pretty much anything you want. Since JavaScript is used to define what is displayed, if you&#8217;re wanting to learn a bit more about JavaScript and future web topics (like I did), this is a great place to start.</p>
<p>Before we get started, if you want to see how the graph will look, here&#8217;s an example page that lets you check out some of the different features it has:</p>
<p><a href="http://chrisvalleskey.com/dev/graph/" class="btn">HTML5 Graph Example</a></p>
<h3>How to use the graph</h3>
<p>If you&#8217;ve ever worked with jQuery plugins, the way the graph works will be pretty familiar to you. However, please note: This does <strong>not</strong> require jQuery or any other JavaScript library to work.</p>
<h4>Step 1: Adding the scripts</h4>
<p>To load the script, you&#8217;ll need to add in a line to the top of your site&#8217;s code, inside the <code>&lt;head&gt;</code> tag, like this:</p>
<div class="code">
<div>&lt;script type=&quot;text/javascript&quot; src=&quot;js/cv_graph.js&quot;&gt;&lt;/script&gt;</div>
<div>&lt;script type=&quot;text/javascript&quot;&gt;</div>
<div>window.onload = function() {</div>
<div>	g_graph = new Graph(</div>
<div>	{</div>
<div>		&#39;id&#39;: &quot;firstgraph&quot;,</div>
<div>		&#39;strokeStyle&#39;: &quot;#819C58&quot;,</div>
<div>		&#39;fillStyle&#39;: &quot;rgba(64,128,0,0.25)&quot;,</div>
<div>		&#39;call&#39;: function(){return ( Math.floor(Math.random()*50 + 25));}</div>
<div>	});</div>
<div>}</div>
<div>&lt;/script&gt;</div>
</div>
<p>A couple of notes about the code:</p>
<ul>
<li>Be sure to change the src attribute on the first line so that it links to cv_graph.js.</li>
<li><strong>&#8216;id&#8217;</strong>: The id of the <code>&lt;canvas&gt;</code> tag that the graph will load in to.</li>
<li><strong>&#8216;strokeStyle&#8217;</strong>: The color of the graph&#8217;s line.</li>
<li><strong>&#8216;fillStyle&#8217;</strong>: The fill color of the graph&#8217;s line.</li>
<li><strong>&#8216;call&#8217;</strong>: Function that is loaded to produce the number that will be displayed. The one above picks a random number between 25 and 75.</li>
</ul>
<p>There are many more options that you can add to the graph to stylize it the way you want, but for this demonstration I&#8217;m just going to keep it pretty simple.</p>
<h4>Step 2: Creating the canvas</h4>
<p>Now the code will be loaded, so place a &lt;canvas&gt; anywhere on your page. Make sure you set the width and height attributes, and give it an id. Here&#8217;s an example:</p>
<div class="code">
<div>&lt;canvas id=&quot;firstgraph&quot; width=&quot;600&quot; height=&quot;200&quot;&gt;&lt;/canvas&gt;</div>
</div>
<p>After you have these two steps done, load up the page and see it work! Obviously, this will not work in Internet Explorer (<a href="http://arstechnica.com/microsoft/news/2010/06/ie9-platform-preview-3-video-audio-canvas-and-fonts-too.ars">yet!</a>), so you&#8217;re going to have to use a modern web browser to experience this awesomeness.</p>
<p>If you want to try the graph out on your own site, or to just play around with, click the download button below to grab the source file:</p>
<p><a href="http://chrisvalleskey.com/wp-content/uploads/2010/07/cv_graph.js.zip" class="btn-dl">Download cv_graph.js.zip (3kb)</a></p>
<h4>One last note</h4>
<p>For you guys who like to dig through the source, know that the graph can take static data instead of a constant stream of values. Also, it&#8217;s pretty easy to hook it up to server scripts so you can get different information. For example: I was able to create a graph that grabbed the local temperature every 30 minutes from a php script.</p>
<p>I plan on writing a blog post that will cover the more advanced features of the graph so that everyone can use them without having to read through the source code. Expect to see it soon.</p>
<p>As always, feel free to comment below!</p>
]]></content:encoded>
			<wfw:commentRss>http://chrisvalleskey.com/2010/07/html5-graph/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fillerama</title>
		<link>http://chrisvalleskey.com/2010/06/fillerama/</link>
		<comments>http://chrisvalleskey.com/2010/06/fillerama/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 04:09:19 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[Futurama]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://chrisvalleskey.com/?p=443</guid>
		<description><![CDATA[Fillerama is a simple filler text generator. Instead of using latin for text, however, it uses Futurama quotes.]]></description>
			<content:encoded><![CDATA[<p><a href="http://chrisvalleskey.com/fillerama/"><img src="http://chrisvalleskey.com/wp-content/uploads/2010/06/fillerama_1.jpg" alt="" title="fillerama_1" width="770" height="310" /></a></p>
<p>This is a simple filler text generator. What makes it different or unique is that it takes quotes from characters in the animated series Futurama. If you don&#8217;t know much about the show, it&#8217;s pretty awesome, and I suggest you start watching it. In any case, here&#8217;s the link to the project:</p>
<p><a href="http://chrisvalleskey.com/fillerama/" class="btn small">Check out Fillerama</a></p>
<h3>And in case you were wondering&hellip;</h3>
<ul>
<li>I intend to have a sort of structure and consistency for how my future project pages will look. Sorry if you think it looks bland.</li>
<li>The talented and awesome <a href="http://twitter.com/SomePoorSchmuck">Matt Sauter</a>, who helped me come up with the idea, has pledged to illustrate a suitable design for the page. I&#8217;m not going to bother him about it, though. Well, not too much.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://chrisvalleskey.com/2010/06/fillerama/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>The Lonely Amoeba</title>
		<link>http://chrisvalleskey.com/2010/05/the-lonely-amoeba/</link>
		<comments>http://chrisvalleskey.com/2010/05/the-lonely-amoeba/#comments</comments>
		<pubDate>Sun, 30 May 2010 01:01:41 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chrisvalleskey.com/?p=429</guid>
		<description><![CDATA[For our final Computer Illustration project this past Spring we were asked to make three illustrations that told a story. After thinking about it for a long time, I got a weird idea out of (seemingly) nowhere. My idea was&#8230;]]></description>
			<content:encoded><![CDATA[<p>For our final Computer Illustration project this past Spring we were asked to make three illustrations that told a story. After thinking about it for a long time, I got a weird idea out of (seemingly) nowhere. My idea was to tell a story of an amoeba who was lonely, but then, unexpectedly, found a friend.</p>
<p>The first frame is of the amoeba. As you can tell, he is sad because everyone else has a friend except for him.</p>
<p><img src="http://chrisvalleskey.com/wp-content/uploads/2010/05/amoeba_1.jpg" alt="" title="Amoeba 1" width="530" height="404" class="alignnone size-full wp-image-433" /></p>
<p>The second frame is of the amoeba in a sort of shock. Something is happening to him, but he doesn&#8217;t know what it is. Also, he has a strange pinkish-purple mass coming out of his side.</p>
<p><img src="http://chrisvalleskey.com/wp-content/uploads/2010/05/amoeba_2.jpg" alt="" title="Amoeba 2" width="530" height="404" /></p>
<p>The third frame shows that the strange pink glob was&hellip;a friend! Now the lonely amoeba is lonely no more. The end.</p>
<p><img src="http://chrisvalleskey.com/wp-content/uploads/2010/05/amoeba_3.jpg" alt="" title="Amoeba 3" width="530" height="404" /></p>
<p>Well, I hope you liked my short story. I do not consider myself an illustrator by any means, but I am happy with the way the project turned out. Feel free to leave a comment about it below!</p>
]]></content:encoded>
			<wfw:commentRss>http://chrisvalleskey.com/2010/05/the-lonely-amoeba/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Nighttime Panoramas</title>
		<link>http://chrisvalleskey.com/2010/05/nighttime-panoramas/</link>
		<comments>http://chrisvalleskey.com/2010/05/nighttime-panoramas/#comments</comments>
		<pubDate>Wed, 05 May 2010 21:32:24 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://chrisvalleskey.com/?p=389</guid>
		<description><![CDATA[For my final project in my Photo 2 class, I decided to take panorama shots at night. Also, I decided that the shots would be taken in recognizable places around campus and around Huntington. My first idea for the project&#8230;]]></description>
			<content:encoded><![CDATA[<p>For my final project in my Photo 2 class, I decided to take panorama shots at night. Also, I decided that the shots would be taken in recognizable places around campus and around Huntington. My first idea for the project was to take really long exposure shots of the stars and capture how they moved across the sky, but my attempt at this was a failure. So, I decided to do something a little different, but still keep the nighttime aspect of my original concept. I think they turned out pretty well!</p>
<p><strong>Campus at night</strong></p>
<p class="pull-2"><img src="http://chrisvalleskey.com/wp-content/uploads/2010/05/panorama_1.jpg" alt="Panorama 1" width="930" height="280" /></p>
<p>Before I had my final plan for what my project was going to be focused on, I walked around campus and took some shots of the roads, grass, and lights. After playing around with my camera&#8217;s settings, I was amazed to see how colorful the shots turned out to be, even though it was pretty dark out. Among other things, I took a couple cool photographs of lights. You might see them sometime on my <a href="http://www.flickr.com/photos/cvalleskey/">flickr</a> account eventually!</p>
<p>When I got back to my room, I stitched the shots I took of the road together and realized how awesome the picture looked when merged. Because of this, I went out the next night with a couple of my friends to take more shots around Huntington. This time, I knew I wanted to take panoramas, so I brought with me a tripod.</p>
<p><strong>Next to the town hall</strong></p>
<p class="pull-2"><img src="http://chrisvalleskey.com/wp-content/uploads/2010/05/panorama_2.jpg" alt="Panorama 2" width="930" height="280" /></p>
<p>The finished shots, when printed out, are 26&#8243; x 8&#8243;. I chose this size because it&#8217;s the biggest I can go without having to buy a separate sheet of matte board for each shot. Hey, I&#8217;m a college student, and those boards are expensive!</p>
<p><strong>Intersection</strong></p>
<p class="pull-2"><img src="http://chrisvalleskey.com/wp-content/uploads/2010/05/panorama_3.jpg" alt="Panorama 3" width="930" height="280" /></p>
<p>All in all, I had a great experience doing these shots. A lot of the times when I see panoramas, they are taken in the day. I wanted to do something a little different, but still show off the visual eye-candy associated with panoramic shots. I think taking the shots during the night helped boost that effect.</p>
<p>As always, let me know what you think in the comments section below! And please, don&#8217;t hesitate to give negative feedback. That&#8217;s how I grow.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrisvalleskey.com/2010/05/nighttime-panoramas/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Next: A BowTie theme</title>
		<link>http://chrisvalleskey.com/2010/04/next-a-bowtie-theme/</link>
		<comments>http://chrisvalleskey.com/2010/04/next-a-bowtie-theme/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 23:01:22 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Project]]></category>

		<guid isPermaLink="false">http://chrisvalleskey.com/?p=362</guid>
		<description><![CDATA[A theme I created for the application BowTie, an iTunes desktop controller for OS X.]]></description>
			<content:encoded><![CDATA[<p>This is a <a href="http://bowtieapp.com">BowTie</a> theme I created. I based it off of the included &#8220;Tab Horizontal Mini&#8221; theme. Feel free to download it below and let me know what you think!</p>
<p><a href="http://chrisvalleskey.com/wp-content/uploads/2010/04/Next.bowTie.zip" class="btn-dl">Download Next, a theme for BowTie.</a></p>
<h3>Screenshots</h3>
<p><img src="http://chrisvalleskey.com/wp-content/uploads/2010/04/next-1.jpg" alt="Next: A BowTie Theme" /></p>
<p><img src="http://chrisvalleskey.com/wp-content/uploads/2010/04/next-2.jpg" alt="Next: A BowTie Theme" /></p>
<p><img src="http://chrisvalleskey.com/wp-content/uploads/2010/04/next-3.jpg" alt="Next: A BowTie Theme" /></p>
]]></content:encoded>
			<wfw:commentRss>http://chrisvalleskey.com/2010/04/next-a-bowtie-theme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New design, and some other things</title>
		<link>http://chrisvalleskey.com/2010/03/new-design-and-some-other-things/</link>
		<comments>http://chrisvalleskey.com/2010/03/new-design-and-some-other-things/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 20:08:58 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://new.chrisvalleskey.com/?p=304</guid>
		<description><![CDATA[I liked my old site&#8217;s design. It was clean, stayed true to the grid I put it on, and overall felt like a great accomplishment for me to finally put it all together. However, there were some problems with it.&#8230;]]></description>
			<content:encoded><![CDATA[<p>I liked my old site&#8217;s design. It was clean, stayed true to the grid I put it on, and overall felt like a great accomplishment for me to finally put it all together. However, there were some problems with it. Because of this, I&#8217;ve decided to update my site with a new design.</p>
<p>The old site was made as a partial experiment. Before creating it, I had never written a WordPress theme. By coincidence, I had recently created a clean looking design for the site. I decided the best thing to do would be to create for myself a new site, and at the same time learn how to use WordPress by writing my first theme.</p>
<p><span id="more-304"></span></p>
<p><strong>One of the first iterations of the old site&#8217;s design:</strong></p>
<p><img src="http://chrisvalleskey.com/wp-content/uploads/2010/03/cv_old_header.jpg" alt="" title="cv_old_header" /></p>
<p>I will miss my old site&#8217;s design, but I am looking forward to using this new one. Under the hood, this theme is much faster. The old site was horribly hard to modify, since I had no idea of how to properly write a WordPress theme back then!</p>
<p>Another change that you might notice is that I no longer have a Portfolio page. One reason I did this was that my old site wasn&#8217;t set up very well to make additions to the Portfolio section. Also, I felt like I wasn&#8217;t presenting my work as well as I should have, and I would rather not show my work at all than to display it in a poor manner.</p>
<p>Eventually, I plan on making a new page on this new site that will replace the Portfolio page. Instead of just posting a couple of pictures and a few lines of text, I plan on writing out my entire design process. An example of what I plan to do can be seen on my recent posting of the <a href="http://chrisvalleskey.com/design-process-department-of-visual-arts-website/">design process of the DOVA website</a>. Look for more of these types of posts here in the future.</p>
<p>I plan on making changes to this site in the near future, so don&#8217;t freak out if things seem out of place. To end this post, I&#8217;m going to finish by showing a few designs I came up with for my site that didn&#8217;t make the cut. Enjoy!</p>
<p><strong>My attempt at a 24 pixel line-height, and all serif fonts:</strong></p>
<p><img src="http://chrisvalleskey.com/wp-content/uploads/2010/03/cv_fail_1.jpg" alt="" /></p>
<p><strong>A very obvious grid layout:</strong></p>
<p><img src="http://chrisvalleskey.com/wp-content/uploads/2010/03/cv_fail_2.jpg" alt="" /></p>
<p><strong>The design I made months before making this one:</strong></p>
<p><img src="http://chrisvalleskey.com/wp-content/uploads/2010/03/cv_fail_3.jpg" alt="" /></p>
<p><strong>A clean design I just recently came up with:</strong></p>
<p><img src="http://chrisvalleskey.com/wp-content/uploads/2010/03/cv_fail_4.jpg" alt="" /></p>
<p>Note: You will definitely see these designs be integrated in the future with either this site or others.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrisvalleskey.com/2010/03/new-design-and-some-other-things/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>HU Student Widget</title>
		<link>http://chrisvalleskey.com/2010/02/hu-student-widget/</link>
		<comments>http://chrisvalleskey.com/2010/02/hu-student-widget/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 19:36:13 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Project]]></category>
		<category><![CDATA[Huntington University]]></category>
		<category><![CDATA[school]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://new.chrisvalleskey.com/?p=310</guid>
		<description><![CDATA[The HU Student Widget is an OS X Dashboard widget I created to display a student's meal and chapel info.]]></description>
			<content:encoded><![CDATA[<p><img src="http://chrisvalleskey.com/wp-content/uploads/2010/02/bowtie_1.jpg" alt="" title="bowtie_1" width="800" height="300" /></p>
<p>About a year ago I made a widget for checking your chapel credits and meal plan info. Well, I&#8217;m sure lots of you haven&#8217;t seen it before since I posted it on facebook. So, I&#8217;m posting it on here and will link to this post from now on. Below is the download link along with a cool picture of the widget in action.</p>
<p><a href="http://chrisvalleskey.com/wp-content/uploads/2010/02/HUwidget.zip" class="btn-dl">Download the HUwidget</a></p>
<p>Please, let me know if you have any problems with it, and feel free to let me know how it works for you. Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://chrisvalleskey.com/2010/02/hu-student-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Process: Department of Visual Arts Website</title>
		<link>http://chrisvalleskey.com/2009/12/design-process-department-of-visual-arts-website/</link>
		<comments>http://chrisvalleskey.com/2009/12/design-process-department-of-visual-arts-website/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 02:29:49 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Department of Visual Arts]]></category>
		<category><![CDATA[DOVA]]></category>
		<category><![CDATA[Huntington University]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://chrisvalleskey.com/?p=194</guid>
		<description><![CDATA[For my Web Design class at school we were asked to come up with a site for our final project. Our first step was to decide what our subject would be for our website. The first idea that I thought&#8230;]]></description>
			<content:encoded><![CDATA[<p>For my Web Design class at school we were asked to come up with a site for our final project. Our first step was to decide what our subject would be for our website.</p>
<p>The first idea that I thought of was more of a commentary on the class as a whole; I wanted to make a site about web standards and good web design practices. If you&#8217;ve talked to me at all about the class you&#8217;ll know what I&#8217;m talking about. In the future I might write about it so everyone can know what we went through (It really was <em>that</em> bad). This idea was actually taken and made into a <a href="http://hudesign.info">website</a> with my roommate <a href="http://twitter.com/jakeshirkey">Jake</a>. Although the site is now stagnant, for the time that we were updating it we had a good time and learned a lot of things.</p>
<p><span id="more-194"></span></p>
<p>My second idea was to do a design (well more of a redesign since it was already made, but not put online yet) of the Department of Visual Arts website for the art department at my school. This idea I knew would take a lot of work, and would require a lot of time outside of class for me to get it done, especially since we were assigned our final project about 3 weeks before it was due! As you can probably guess from the title of this post, this is the option that I decided to do.</p>
<p>The process I went through is similar to what is explained in an article written by UXMAG called <a href="http://www.uxmag.com/design/86/the-layers-of-design-the-style-layer">The Layers of Design: the style layer</a>. In it the article describes the layers of design when creating a website. I have grouped my process into the layers that they described.</p>
<div class="post-image">
<h3>Information Architecture</h3>
<p>This layer is all about defining what content will be on the site, and where it should be placed so that the user can get to the information that they want quick and without problems. I wanted to have a complete navigation of the site in the footer so that the visitor could quickly jump to any page on the site with a single click. Also, I wanted to have contact info on every page so that the viewer could quickly click on any page to see contact info. To visualize this, I created several wireframes to show how content could be placed on the site. This is the wireframe I created for the homepage.</p>
<p><img src="http://chrisvalleskey.com/wp-content/uploads/2009/12/dova_wireframe.jpg" alt="" title="dova_wireframe" width="670" height="787" class="alignnone size-full wp-image-210" />
</div>
<div class="post-image">
<h3>Interface Behaviors</h3>
<p>Among other things, I really wanted this site to &#8220;pop&#8221; visually. One of the things I did to achieve this was to have a stylized drop-down menu for several of the menu items on the top navigation.</p>
<p><img src="http://chrisvalleskey.com/wp-content/uploads/2009/12/dova_dropdown1.jpg" alt="" title="dova_dropdown" width="670" height="380" class="alignnone size-full wp-image-224" />
</div>
<div class="post-image">
<h3>Visual Hierarchy of the Content</h3>
<p>For the home page, I decided on putting featured gallery pictures and other important things into a slideshow. Also, older galleries or featured items were placed into smaller, but still visually important boxes. Lastly, the navigation and contact info at the bottom allows the visitor to quickly access any other page on the site, or see how to contact the school. On each page I tried to make it as noticeable as possible that certain things like titles and such were important.</p>
<p>This is the finished design of the home page, which I created in Photoshop. The colors I used were picked to try and provide as much contrast between each other, but without making your eyes hurt! I also tried to use some green in the design, since that is the school&#8217;s main color.</p>
<p><img src="http://chrisvalleskey.com/wp-content/uploads/2009/12/dova_design.jpg" alt="" title="dova_design" width="670" height="787" class="alignnone size-full wp-image-208" />
</div>
<div class="post-image">
<h3>Layout</h3>
<p>Ever since I learned about grid systems, I&#8217;ve been meticulously designing on a grid. Some people might say that a grid is restrictive, but I think that&#8217;s crazy. If anything, grids provide a framework that, if used correctly, can really make a big impact on your designs.</p>
<p>Below is the home page with the grid visible. I used a grid of 12 columns, each one 60 pixels wide, and with a 20 pixel right margin on each of them except the last. This added up to make the page a total of 940 pixels wide, which is small enough to fit on a 1024&#215;768 monitor.</p>
<p><img src="http://chrisvalleskey.com/wp-content/uploads/2009/12/dova_grid.jpg" alt="" title="dova_grid" width="670" height="787" class="alignnone size-full wp-image-209" />
</div>
<div class="post-image">
<h3>Style</h3>
<p>The site&#8217;s background is almost white, but with a touch of green. I originally planned for the colors of the site to change according to the seasons, and if the site was actually developed I would probably turn that idea into a reality. As I said before, I wanted to make the site&#8217;s design pop, but I also wanted to ensure that it was accessible and readable (after all, who wants to read something if it gives you a headache!). To do this, I decided on putting textual content in a white box, and used a dark grey for the text.</p>
<p><img src="http://chrisvalleskey.com/wp-content/uploads/2009/12/dova_style.jpg" alt="" title="dova_style" width="670" height="380" class="alignnone size-full wp-image-227" />
</div>
<h4>In Conclusion</h4>
<p>This project took a lot of time, but it&#8217;s probably one of the first projects I&#8217;ve creating for a class that I can actually look back on and appreciate. I spent a ton of time on it, and I&#8217;m amazed that I was able to get it completed in time. I hope you guys like it as well!</p>
<p>If you want, feel free to <a href="http://www.chrisvalleskey.com/dova/">check out the complete site</a>. If you have anything to say about the site or the process I went through when creating it, feel free to post a comment below!</p>
]]></content:encoded>
			<wfw:commentRss>http://chrisvalleskey.com/2009/12/design-process-department-of-visual-arts-website/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Ordered Some Shirts</title>
		<link>http://chrisvalleskey.com/2009/12/ordered-some-shirts/</link>
		<comments>http://chrisvalleskey.com/2009/12/ordered-some-shirts/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 04:23:27 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[matt sauter is awesome]]></category>
		<category><![CDATA[shirts]]></category>
		<category><![CDATA[threadless]]></category>

		<guid isPermaLink="false">http://chrisvalleskey.com/?p=172</guid>
		<description><![CDATA[So&#8230;the awesome and cool Matt Sauter surprised me today with an early Christmas gift, and I can now say I am going to be the proud owner of my first five Threadless tshirts! Since I was excited and all, and&#8230;]]></description>
			<content:encoded><![CDATA[<p>So&#8230;the awesome and cool Matt Sauter surprised me today with an early Christmas gift, and I can now say I am going to be the proud owner of my first five <a href="http://threadless.com">Threadless</a> tshirts! Since I was excited and all, and knowing that I have not updated my blawg in a while, I have decided to show off the shirts I got.</p>
<p><span id="more-172"></span></p>
<hr />
<p><a href="http://www.threadless.com/product/2064/Art_Is_My_Weapon">Art Is My Weapon</a></p>
<p> <a href="http://www.threadless.com/product/2064/Art_Is_My_Weapon"><img src="http://chrisvalleskey.com/wp-content/uploads/2009/12/artismyweapon.jpg" alt="Art Is My Weapon" title="Art Is My Weapon" width="450" height="400" /></a></p>
<hr />
<p><a href="http://www.threadless.com/product/1450/When_Pandas_Attack">When Pandas Attack</a></p>
<p> <a href="http://www.threadless.com/product/1450/When_Pandas_Attack"><img src="http://chrisvalleskey.com/wp-content/uploads/2009/12/whenpandasattack.jpg" alt="When Pandas Attack" title="When Pandas Attack" width="450" height="400" /></a></p>
<hr />
<p><a href="http://www.threadless.com/product/1629/Breakthrough">Breakthrough</a></p>
<p> <a href="http://www.threadless.com/product/1629/Breakthrough"><img src="http://chrisvalleskey.com/wp-content/uploads/2009/12/breakthrough.jpg" alt="Breakthrough" title="Breakthrough" width="450" height="400" /></a></p>
<hr />
<p><a href="http://www.threadless.com/product/1354/Mister_Mittens_Big_Adventure">Mister Mitten&rsquo;s Big Adventure</a></p>
<p> <a href="http://www.threadless.com/product/1354/Mister_Mittens_Big_Adventure"><img src="http://chrisvalleskey.com/wp-content/uploads/2009/12/mistermittensbigadventure.jpg" alt="Mister Mitten&rsquo;s Big Adventure" title="Mister Mitten&rsquo;s Big Adventure" width="450" height="400" /></a></p>
<hr />
<p><a href="http://www.threadless.com/product/2015/Art_No_War">Art No War</a></p>
<p> <a href="http://www.threadless.com/product/2015/Art_No_War"><img src="http://chrisvalleskey.com/wp-content/uploads/2009/12/artnowar.jpg" alt="Art No War" title="Art No War" width="450" height="400" /></a></p>
<hr />
<p>Thanks again Matt!</p>
]]></content:encoded>
			<wfw:commentRss>http://chrisvalleskey.com/2009/12/ordered-some-shirts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
