<?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>Matthew Gruman &#187; Design</title>
	<atom:link href="http://matthewgruman.com/category/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://matthewgruman.com</link>
	<description>Matthew Gruman&#039;s Personal Site</description>
	<lastBuildDate>Sun, 01 Jan 2012 18:12:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Hulku</title>
		<link>http://matthewgruman.com/hulku/</link>
		<comments>http://matthewgruman.com/hulku/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 18:12:23 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://matthewgruman.com/?p=745</guid>
		<description><![CDATA[gruman.me/hulku]]></description>
			<content:encoded><![CDATA[<p><a href="http://gruman.me/hulku/"><img src="images/hulku.png" alt="Hulku" /></a></p>
<p><a href="http://gruman.me/hulku/">gruman.me/hulku</a></p>
]]></content:encoded>
			<wfw:commentRss>http://matthewgruman.com/hulku/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gruman Design and Development</title>
		<link>http://matthewgruman.com/gruman-design-and-development/</link>
		<comments>http://matthewgruman.com/gruman-design-and-development/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 23:54:12 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://matthewgruman.com/?p=707</guid>
		<description><![CDATA[I&#8217;ve redesigned my portfolio.]]></description>
			<content:encoded><![CDATA[<p><a href="http://grumandd.com"><img src="images/grumandd.png" /></a></p>
<p>I&#8217;ve redesigned <a href="http://grumandd.com">my portfolio</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://matthewgruman.com/gruman-design-and-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Distinct Variation(s): Graphic Design &amp; Web Development</title>
		<link>http://matthewgruman.com/distinct-variations-graphic-design-web-development/</link>
		<comments>http://matthewgruman.com/distinct-variations-graphic-design-web-development/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 20:03:37 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[distinct variation(s)]]></category>
		<category><![CDATA[gruman]]></category>
		<category><![CDATA[matthew]]></category>

		<guid isPermaLink="false">http://www.matthewgruman.com/?p=425</guid>
		<description><![CDATA[I finally put up a portfolio!]]></description>
			<content:encoded><![CDATA[<p><a href="http://distinctvariations.com" title="link to Distinct Variation(s)"><img src="http://www.matthewgruman.com/wp-content/uploads/2009/03/picture-19.png" alt="Distinct Variation(s)" title="Distinct Variation(s)" width="520" height="428" class="alignnone size-full wp-image-426" /></a></p>
<p>I finally put up <a href="http://distinctvariations.com" title="link to Distinct Variation(s)">a portfolio</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://matthewgruman.com/distinct-variations-graphic-design-web-development/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>In Defense of Horizontal CSS</title>
		<link>http://matthewgruman.com/in-defense-of-horizontal-css/</link>
		<comments>http://matthewgruman.com/in-defense-of-horizontal-css/#comments</comments>
		<pubDate>Sun, 06 Jan 2008 02:49:43 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[horizontal]]></category>
		<category><![CDATA[vertical]]></category>

		<guid isPermaLink="false">http://matthewgruman.com/?p=269</guid>
		<description><![CDATA[Over the past couple of months, I&#8217;ve read a number of articles about formatting CSS. To my surprise, there&#8217;s actually a large debate about horizontal VS vertical formatting. Vertical formatting, like I&#8217;m used to, looks like this: abbr, acronym { border-bottom: 1px dotted #666; cursor: help; font-style: normal; } Horizontal formatting rewrites that same rule [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past couple of months, I&#8217;ve read a number of articles about formatting <acronym title="Cascading Style Sheets">CSS</acronym>. To my surprise, there&#8217;s actually a large debate about horizontal VS vertical formatting. Vertical formatting, like I&#8217;m used to, looks like this:</p>
<p><code>abbr, acronym {<br />
border-bottom: 1px dotted #666;<br />
cursor: help;<br />
font-style: normal;<br />
}</code></p>
<p>Horizontal formatting rewrites that same rule as:</p>
<p><code>abbr, acronym {border-bottom: 1px dotted #666; cursor: help; font-style: normal;}</code></p>
<p>At first glance, individual properties are much easier to parse vertically; and this is true when it comes to small style sheets.</p>
<h3>Huge Style Sheet</h3>
<p>Some people separate their CSS into separate sheets: one for structure, one for fonts, etc. I got in the habit of using tab-styling/comments in my CSS and prefer not to make it modular; this works great for the average CSS. With large sites that have a large number of styles however, it starts to get a bit ridiculous. I&#8217;m a neurotic adjuster and constantly access and change my CSS throughout the development of a site. And, while I like to think I&#8217;m well-organized/structured, I also have the habit of throwing random styles in random places and forgetting about proper tabbing until it&#8217;s too late. Leaves me with a mess of a CSS that needs lots of time to work with, and too much maintenance.</p>
<p>I&#8217;ve been working on a database entry system that&#8217;s going to be used by a lot of different students, so static appearance and usability are incredibly important. My CSS was approaching 1000 lines and I just couldn&#8217;t deal with it anymore, so I tried converting it to a horizontal format. It was one of those shave-off-all-your-hair moments (&#8220;why did you close the program Matthew! You can&#8217;t even Undo anymore! We&#8217;re all doomed!&#8221;) But then I looked at the length: ~150 lines.</p>
<h3>Alphabetization</h3>
<p>That first day I started working with the horizontal sheet was the day I stopped doing things vertically. The amount of time I&#8217;m able to save by quickly scanning is incredible. While I thought declarations would be difficult to parse, they&#8217;ve actually given me a good reason to keep them alphabetical &#8212; and this makes ALL the difference. </p>
<p>We usually see alphabetization in list form, but it&#8217;s surprisingly easy when it&#8217;s in-line, too. Just choose a random place in the string and scan left and right; there&#8217;s the property you were looking for. Another benefit of alphabetization is portability: anyone taking over from you will have an easier time understanding your work.</p>
<p>Think of it like putting your alarm clock on the other side of your bedroom. You know logically you should get up when it goes off (alphabetize), but sometimes it&#8217;s just not going to work out if you&#8217;re close enough to hit snooze (vertical CSS).</p>
<h3>Hooray for Horizontal</h3>
<p>I&#8217;m about to start work on renovating the first major website I ever made with CSS. I kid you not, it&#8217;s ~2000 lines long and is probably responsible for the deaths of a million helpless children. You can bet that the first thing I&#8217;m doing is a reformat.</p>
]]></content:encoded>
			<wfw:commentRss>http://matthewgruman.com/in-defense-of-horizontal-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Logo</title>
		<link>http://matthewgruman.com/new-logo/</link>
		<comments>http://matthewgruman.com/new-logo/#comments</comments>
		<pubDate>Tue, 01 Jan 2008 22:18:48 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[logos]]></category>

		<guid isPermaLink="false">http://matthewgruman.com/?p=262</guid>
		<description><![CDATA[Logo Design I am not a good logo designer. Logo designers are a very special breed of designers who need to focus an incredible amount of time, research, and effort into what might end up as simple as a swoosh. Three of North America&#8217;s most easily recognizable logos are as minimal as possible: ABC and [...]]]></description>
			<content:encoded><![CDATA[<h3>Logo Design</h3>
<p>I am not a <em>good</em> logo designer. Logo designers are a very special breed of designers who need to focus an incredible amount of time, research, and effort into what might end up as simple as a swoosh. Three of North America&#8217;s most  easily recognizable logos are as minimal as possible:</p>
<p><img src="/images/famous_logos.gif" alt="Logos for ABC, the Gap, and Nike" class="centered" /></p>
<p>ABC and Nike have taken everyday things (the first three letters of the alphabet, a swoosh) and managed to brand them. Gap, like Nickelodeon (orange), have actually managed to brand <em>colour</em>. None of this is an accident.</p>
<h3>Design Process</h3>
<p>My logo design process involved creating a number of goals:</p>
<ol>
<li>This is <em>my</em> personal website, so it has to be representative of that.</li>
<li>It is for the web.</li>
<li>It has to include green. In this case: #078C00.</li>
<li>It should be minimal enough to fit in with my site design.</li>
</ol>
<p>Goal one was the hardest, and will always require the most effort for any logo design. If I was working for a corporate client, it would have to be as representative of their company as mine should be for me. The first part of meeting this goal was a self-indulgent period of reflection.</p>
<h4>Insulin</h4>
<p>I&#8217;ve been a Type One diabetic since 1992 and have recently started using an insulin pump; this is on my mind a lot lately. I have always been fascinated with theoretical cell structures. I&#8217;m also a big science geek who once considered majoring in Biology.</p>
<p><img src="/images/hexamer.jpg" alt="Insulin Hexamer" class="centered" /></p>
<p>I thought it would be a good idea to use insulin in the logo, but to what end? I made some sketches involving syringes, liquids, etc.; but nothing worked. Then I started Googling around and found a generated image of insulin hexamers on <a href="http://en.wikipedia.org/wiki/Insulin">Wikipedia</a> that I absolutely loved, so I brought it into Illustrator and started making shapes.</p>
<h4>Illustrator</h4>
<p>Adobe Illustrator is my program of choice for graphic design. I love the non-destructive editing process, and years of working in various mediums/sizes have given me a great appreciation for vector-based images.</p>
<p>I started by focusing on the outer triad (I think that&#8217;s carbon), but wasn&#8217;t feeling anything I came up with. Then I started looking at the inner structure (zinc, I think) and sketched a few ideas from there. From there, it was a matter of anal adjustments (at work, my reputation is &#8220;if you need something done, give it to Matthew; he&#8217;ll be finished in a half hour, but then he&#8217;ll spend the rest of the day adjusting everything pixel-by-pixel&#8221;) until it <em>felt</em> right.</p>
<h3>The New Logo</h3>
<p><img src="/images/mg_logo_static.gif" class="centered" alt="matthewgruman.com logo" /></p>
<h3>Goals Revisited</h3>
<ol>
<li>The insulin is obvious; but the green &#8212; and the fact that the logo looks like a flower &#8212; is a reflection of my environmentalism, the plants I take care of, and my favourite colour.</li>
<li>It&#8217;s size and minimal colours make it very web-friendly.</li>
<li>Green: #078C00; Red: #980738.</li>
<li>I feel that the addition of red works very well.</li>
</ol>
<h3>Reflection</h3>
<p>I&#8217;m happy with the logo for now. As I said, I&#8217;m not a <em>good</em> logo designer, so this was really a way to continue learning the logo design process. I intend to actively make changes to get more comfortable with identity branding.</p>
<h3>Update</h3>
<p>I had a chat with <a href="http://dartography.blogspot.com">Dany</a> about my logo, and he voiced similar concerns to the ones I had. I decided to rework a couple of my other ideas, and ended up sketching out something new.</p>
<h4>Newer New Logo</h4>
<p><img src="/images/logo_hex.gif" alt="logo for mg.com" class="centered" /></p>
]]></content:encoded>
			<wfw:commentRss>http://matthewgruman.com/new-logo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>D-Artography</title>
		<link>http://matthewgruman.com/d-artography/</link>
		<comments>http://matthewgruman.com/d-artography/#comments</comments>
		<pubDate>Mon, 31 Dec 2007 23:33:48 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[dany]]></category>
		<category><![CDATA[geshan]]></category>

		<guid isPermaLink="false">http://matthewgruman.com/?p=258</guid>
		<description><![CDATA[Interesting little post on the current trend of Green and White here: www.matthewgruman.com Matthew is a Creative Person with some of the most clear ideas on design, both on the whole as well as personal approaches to it. He&#8217;s a fantastic human, designer, and musician. He is also has the largest collection of my artwork [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>
Interesting little post on the current trend of Green and White here:</p>
<p>www.matthewgruman.com</p>
<p>Matthew is a Creative Person with some of the most clear ideas on design, both on the whole as well as personal approaches to it. He&#8217;s a fantastic human, designer, and musician. He is also has the largest collection of my artwork in the world.</p>
<p>D.
</p></blockquote>
<p>I&#8217;ve always said that <a href="http://dartography.blogspot.com/2007/12/green.html">Dany</a> is incredibly insightful.</p>
]]></content:encoded>
			<wfw:commentRss>http://matthewgruman.com/d-artography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Little Optimum</title>
		<link>http://matthewgruman.com/little-optimum/</link>
		<comments>http://matthewgruman.com/little-optimum/#comments</comments>
		<pubDate>Sun, 30 Dec 2007 17:33:35 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[little optimum]]></category>
		<category><![CDATA[miniatures]]></category>
		<category><![CDATA[thomas doyle]]></category>

		<guid isPermaLink="false">http://matthewgruman.com/?p=248</guid>
		<description><![CDATA[&#8220;Little Optimum&#8221;, from Thomas Doyle&#8216;s Reclamation series.]]></description>
			<content:encoded><![CDATA[<p><img src="/images/lit_1.jpg" alt="Miniatures" class="centered" /><br />
<img src="/images/lit_4.jpg" alt="Miniatures" class="centered" /></p>
<p>&#8220;Little Optimum&#8221;, from <a href="http://www.thomasdoyle.net/">Thomas Doyle</a>&#8216;s Reclamation series.</p>
]]></content:encoded>
			<wfw:commentRss>http://matthewgruman.com/little-optimum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Realistic Piggy Bank</title>
		<link>http://matthewgruman.com/realistic-piggy-bank/</link>
		<comments>http://matthewgruman.com/realistic-piggy-bank/#comments</comments>
		<pubDate>Sat, 29 Dec 2007 17:34:02 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[derrick wang]]></category>
		<category><![CDATA[piggy bank]]></category>

		<guid isPermaLink="false">http://matthewgruman.com/?p=245</guid>
		<description><![CDATA[Yanko, via Gizmodo.]]></description>
			<content:encoded><![CDATA[<p><img src="/images/piggy3.jpg" alt="Piggy Bank that has dead fetuses inside when you break it open" class="centered" /></p>
<p><a href="http://www.yankodesign.com/index.php/2007/12/28/don%e2%80%99t-break-the-piggybank/">Yanko</a>, via <a href="http://gizmodo.com/338630/designer-piggybank-is-disgustingly-clever">Gizmodo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://matthewgruman.com/realistic-piggy-bank/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

