<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.5" -->
<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/"
	>

<channel>
	<title>sketch</title>
	<link>http://sketch.timsvensen.com</link>
	<description>a creative design armory</description>
	<pubDate>Wed, 09 Jan 2008 15:30:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.5</generator>
	<language>en</language>
			<item>
		<title>ie button support</title>
		<link>http://sketch.timsvensen.com/2008/01/09/ie-button-support/</link>
		<comments>http://sketch.timsvensen.com/2008/01/09/ie-button-support/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 15:30:54 +0000</pubDate>
		<dc:creator>timsvensen</dc:creator>
		
		<category>ie issues</category>

		<guid isPermaLink="false">http://sketch.timsvensen.com/2008/01/09/ie-button-support/</guid>
		<description><![CDATA[ie doesn&#8217;t support the  tag correctly.

particletree.com comment
peterbe.com post

]]></description>
			<content:encoded><![CDATA[<p>ie doesn&#8217;t support the <button> tag correctly.</p>
<ul>
<li><a href="http://particletree.com/features/rediscovering-the-button-element/#comment-20726">particletree.com comment</a></li>
<li><a href="http://www.peterbe.com/plog/button-tag-in-IE">peterbe.com post</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://sketch.timsvensen.com/2008/01/09/ie-button-support/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Expandable Divs And Background Images</title>
		<link>http://sketch.timsvensen.com/2007/11/29/expandable-divs/</link>
		<comments>http://sketch.timsvensen.com/2007/11/29/expandable-divs/#comments</comments>
		<pubDate>Thu, 29 Nov 2007 18:20:11 +0000</pubDate>
		<dc:creator>timsvensen</dc:creator>
		
		<category>XHTML/CSS</category>

		<guid isPermaLink="false">http://sketch.timsvensen.com/2007/11/29/expandable-divs/</guid>
		<description><![CDATA[Solution1: Container.Top-Content-Bottom
NOTE: &#8216;position:relative&#8217; and &#8216;z-index:num&#8217; to fix IE6 issue displaying the image over the content div.

&#60;style&#62;
#container {
    background: url(tile.gif) repeat-y top left;
    width: 600px;
    margin: 30px;
}

    #container #top {
        display: inline;
      [...]]]></description>
			<content:encoded><![CDATA[<h2>Solution1: Container.Top-Content-Bottom</h2>
<p>NOTE: &#8216;position:relative&#8217; and &#8216;z-index:num&#8217; to fix IE6 issue displaying the image over the content div.</p>
<pre>
<code >&lt;style&gt;
#container {
    background: url(tile.gif) repeat-y top left;
    width: 600px;
    margin: 30px;
}

    #container #top {
        display: inline;
        float: left;
        background: url(top.jpg) no-repeat top left;
        width: 600px;
        height: 100px;
    }

    #container #content {
        position: relative;
        display: inline;
        float: left;
        z-index: 100;
        margin: -100px 25px -100px 25px;
    }

    #container #bottom {
        position: relative;
        display: inline;
        float: left;
        z-index: 1;
        background: url(bottom.jpg) no-repeat top left;
        width: 600px;
        height: 100px;
    }
&lt;/style&gt;

&lt;div id="container" class="clearfix"&gt;
    &lt;div id="top"&gt;&lt;/div&gt;
    &lt;div id="content"&gt;content goes here&lt;/div&gt;
    &lt;div id="bottom"&gt;&lt;/div&gt;
&lt;/div&gt;&lt;!-- END CONTAINER --&gt;</code>
</pre>
<h2>Solution2: Container.Content-Bottom</h2>
<p>This soultion used a very tall background image that faded to a background color. A vertical &#8220;sliding doors&#8221; techinique. Also, note the background image is &#8216;bottom left&#8217; to fix the image to the bottom of the element so as the content expands more of the image is revealed at the top. This is very similar to the above solution.</p>
<pre>
<code >&lt;style&gt;
#container {
    width: 300px;
}
    #content {
        display: inline;
        float: left;
        background: color url(container.jpg) no-repeat bottom left;
    }
    #bottom {
        display: inline;
        float: left;
        background: url(bottom.jpg) no-repeat bottom left;
        width: 300px;
        height: 10px;
}
&lt;/style&gt;

&lt;div id="container" class="clearfix"&gt;
    &lt;div id="content"&gt;content goes here&lt;/div&gt;
    &lt;div id="bottom"&gt;&lt;/div&gt;
&lt;/div&gt;&lt;!-- END CONTAINER --&gt; </code>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://sketch.timsvensen.com/2007/11/29/expandable-divs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Designing OOP : tips from Peter</title>
		<link>http://sketch.timsvensen.com/2007/10/02/designing-oop-tips-from-peter/</link>
		<comments>http://sketch.timsvensen.com/2007/10/02/designing-oop-tips-from-peter/#comments</comments>
		<pubDate>Tue, 02 Oct 2007 17:00:49 +0000</pubDate>
		<dc:creator>timsvensen</dc:creator>
		
		<category>Uncategorized</category>

		<guid isPermaLink="false">http://sketch.timsvensen.com/2007/10/02/designing-oop-tips-from-peter/</guid>
		<description><![CDATA[
 what objects will you have, what they will do (their methods), what data they will contain (their properties) and how they will interact with other objects or be used in the grand scheme of things

usually helps to think of how you can break down the problem into objects first&#8230; before going into their methods [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><font size="3"> <font color="#000000"><font>what objects will you have, what they will do (their methods), what data they will contain (their properties) and how they will interact with other objects or be used in the grand scheme of things</font></font></font></li>
<p><font size="2"></p>
<li><font size="3"><font size="3"><font color="#000000"><font>usually helps to think of how you can break down the problem into objects first&#8230; before going into their methods and properties&#8230; just think about what this object&#8217;s main purpose is</font></font></font><br />
</font></li>
<p><font size="3"><font size="2"></p>
<li><font size="3"><font color="#cc0000"><font size="2"><font color="#000000"><font size="3">a</font></font></font></font><font size="3"><font color="#000000"><font>n object should be good at doing one thing&#8230; dealing with taht type of object&#8230; you dont&#8217; want an object that just does everything</font></font></font></font></li>
<p><font size="3"></p>
<li><font size="3"><font color="#000000"><font>you want to have everything that method does &#8220;encapsulated&#8221; in the object, meaning that only it knows how to do things best&#8230; everything else that uses it is only concerned with &#8220;hey, i want this done, go do it&#8221; and it will do it and no one else has to care how it&#8217;s doing it</font></font></font></li>
<li><font size="3"> <font color="#000000"><font>if you can, it&#8217;s good to think about the different layers of the app&#8230; you&#8217;ve got the GUI side, then you have the Data side, then you&#8217;ll need somethign that controls everything&#8230;. this is the typical way of doing apps &#8212; it&#8217;s called the MVC pattern (model view controller)</font></font></font></li>
<li><a target="_blank" title="Model View Controller" href="http://en.wikipedia.org/wiki/Model-view-controller"><font color="#000000">MVC</font></a></li>
<p></font></font></font></font></ul>
<ul><font size="2"><font size="3"><font size="2"><font size="3" /></font></font></font></ul>
]]></content:encoded>
			<wfw:commentRss>http://sketch.timsvensen.com/2007/10/02/designing-oop-tips-from-peter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Learning Design from Anna</title>
		<link>http://sketch.timsvensen.com/2007/05/07/use-of-images/</link>
		<comments>http://sketch.timsvensen.com/2007/05/07/use-of-images/#comments</comments>
		<pubDate>Mon, 07 May 2007 14:59:56 +0000</pubDate>
		<dc:creator>timsvensen</dc:creator>
		
		<category>Tip</category>

		<guid isPermaLink="false">http://sketch.timsvensen.com/2007/05/07/use-of-images/</guid>
		<description><![CDATA[
Use close up pictures of people (big and in your face, with the product)
Don&#8217;t use pictures that show the backs of people who are the most prominent or the focal point.
Don&#8217;t put Red on Blue

]]></description>
			<content:encoded><![CDATA[<ul>
<li>Use close up pictures of people (big and in your face, with the product)</li>
<li>Don&#8217;t use pictures that show the backs of people who are the most prominent or the focal point.</li>
<li>Don&#8217;t put Red on Blue</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://sketch.timsvensen.com/2007/05/07/use-of-images/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Photoshop Painting</title>
		<link>http://sketch.timsvensen.com/2007/05/01/photoshop-painting/</link>
		<comments>http://sketch.timsvensen.com/2007/05/01/photoshop-painting/#comments</comments>
		<pubDate>Tue, 01 May 2007 19:37:52 +0000</pubDate>
		<dc:creator>timsvensen</dc:creator>
		
		<category>Tutorial</category>

		<guid isPermaLink="false">http://sketch.timsvensen.com/2007/05/01/photoshop-painting/</guid>
		<description><![CDATA[A list of sites with tutorials on Photoshop painting:

www.teamgt.com
neondragonart.com/dp/tutorials/


]]></description>
			<content:encoded><![CDATA[<p>A list of sites with tutorials on Photoshop painting:</p>
<ul>
<li><a title="team gt" target="_blank" href="http://www.teamgt.com/ft-tutes.htm">www.teamgt.com</a></li>
<li><a title="neon dragon art" target="_blank" href="http://neondragonart.com/dp/tutorials/">neondragonart.com/dp/tutorials/</a></li>
<li></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://sketch.timsvensen.com/2007/05/01/photoshop-painting/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Character Drawing</title>
		<link>http://sketch.timsvensen.com/2007/04/20/character-drawing/</link>
		<comments>http://sketch.timsvensen.com/2007/04/20/character-drawing/#comments</comments>
		<pubDate>Fri, 20 Apr 2007 19:43:38 +0000</pubDate>
		<dc:creator>timsvensen</dc:creator>
		
		<category>Drawing</category>

		<guid isPermaLink="false">http://sketch.timsvensen.com/2007/04/20/character-drawing/</guid>
		<description><![CDATA[
Character Drawing
Linear Knots

]]></description>
			<content:encoded><![CDATA[<ul>
<li><a target="_blank" title="fox prints - character drawing" href="http://www.foxprints.com/tracy/misc/tutorial/char_drawing.html">Character Drawing</a></li>
<li><a target="_blank" title="fox prints - linear knots" href="http://www.foxprints.com/tracy/misc/tutorial/linear_knots.html">Linear Knots</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://sketch.timsvensen.com/2007/04/20/character-drawing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>On Inspiration</title>
		<link>http://sketch.timsvensen.com/2007/04/20/on-inspiration/</link>
		<comments>http://sketch.timsvensen.com/2007/04/20/on-inspiration/#comments</comments>
		<pubDate>Fri, 20 Apr 2007 14:20:56 +0000</pubDate>
		<dc:creator>timsvensen</dc:creator>
		
		<category>Design</category>

		<category>Tip</category>

		<guid isPermaLink="false">http://sketch.timsvensen.com/2007/04/20/on-inspiration/</guid>
		<description><![CDATA[Susan L. Smith, Associate Designer, in HOW Magazine, April 2007:
The more I accept that inspiration is elusive, the less I go looking and the more I simply wait for it to find me. Sometimes, we look so hard for something that we miss it. So I’m learning to be OK with the unanswered and the [...]]]></description>
			<content:encoded><![CDATA[<p>Susan L. Smith, Associate Designer, in HOW Magazine, April 2007:</p>
<p>The more I accept that inspiration is elusive, the less I go looking and the more I simply wait for it to find me. Sometimes, we look so hard for something that we miss it. So I’m learning to be OK with the unanswered and the unpredictable and the inconsistent. I’ve realized that sometimes asking questions is more inspiring than having all the answers.
</p>
]]></content:encoded>
			<wfw:commentRss>http://sketch.timsvensen.com/2007/04/20/on-inspiration/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Beautiful Web Design</title>
		<link>http://sketch.timsvensen.com/2007/04/06/beautiful-web-design/</link>
		<comments>http://sketch.timsvensen.com/2007/04/06/beautiful-web-design/#comments</comments>
		<pubDate>Fri, 06 Apr 2007 15:50:52 +0000</pubDate>
		<dc:creator>timsvensen</dc:creator>
		
		<category>Design</category>

		<guid isPermaLink="false">http://sketch.timsvensen.com/2007/04/06/beautiful-web-design/</guid>
		<description><![CDATA[Beautiful Web Design article.

]]></description>
			<content:encoded><![CDATA[<p><a title="Beautiful Web Design" target="_blank" href="http://www.sitepoint.com/article/principles-beautiful-web-design">Beautiful Web Design</a> article.
</p>
]]></content:encoded>
			<wfw:commentRss>http://sketch.timsvensen.com/2007/04/06/beautiful-web-design/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sketching</title>
		<link>http://sketch.timsvensen.com/2007/03/26/sketching/</link>
		<comments>http://sketch.timsvensen.com/2007/03/26/sketching/#comments</comments>
		<pubDate>Tue, 27 Mar 2007 01:14:34 +0000</pubDate>
		<dc:creator>timsvensen</dc:creator>
		
		<category>Drawing</category>

		<guid isPermaLink="false">http://sketch.timsvensen.com/2007/03/26/sketching/</guid>
		<description><![CDATA[
Tips On How to Improve Your Drawing Ability
How to Draw Hair
List of Links from About.com
Improve Your Sketching

]]></description>
			<content:encoded><![CDATA[<ul>
<li><a target="_blank" title="Design Sojourn dot com" href="http://www.designsojourn.com/index.php/2006/12/08/tips-on-how-to-improve-your-drawing-ability/">Tips On How to Improve Your Drawing Ability</a></li>
<li><a target="_blank" title="How to Draw Hair" href="http://drawsketch.about.com/library/weekly/aa032303a.htm">How to Draw Hair</a></li>
<li><a target="_blank" title="about dot com link list on drawing" href="http://drawsketch.about.com/od/improveyourdrawing/Improve_Your_Drawing_Develop_Your_Drawing_Skills.htm">List of Links</a> from About.com</li>
<li><a target="_blank" title="Improve Your Sketching" href="http://ider.herts.ac.uk/school/courseware/graphics/improving_sketching.html">Improve Your Sketching</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://sketch.timsvensen.com/2007/03/26/sketching/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Image Toning</title>
		<link>http://sketch.timsvensen.com/2007/03/22/image-toning/</link>
		<comments>http://sketch.timsvensen.com/2007/03/22/image-toning/#comments</comments>
		<pubDate>Thu, 22 Mar 2007 15:08:29 +0000</pubDate>
		<dc:creator>timsvensen</dc:creator>
		
		<category>Tutorial</category>

		<guid isPermaLink="false">http://sketch.timsvensen.com/2007/03/22/image-toning/</guid>
		<description><![CDATA[Create more depth in your images with a split toning effect.  Similar to sepia, but could be creative with it as well.

Channels Pallet - choose the image that matches closest with the original, select all and copy.
Layers Pallet - new layer and paste
Add contrast to the new layer

curves
levels - bring the darks and lights in [...]]]></description>
			<content:encoded><![CDATA[<p>Create more depth in your images with a split toning effect.  Similar to sepia, but could be creative with it as well.</p>
<ol>
<li>Channels Pallet - choose the image that matches closest with the original, select all and copy.</li>
<li>Layers Pallet - new layer and paste</li>
<li>Add contrast to the new layer</li>
<ol>
<li>curves</li>
<li>levels - bring the darks and lights in to the center</li>
</ol>
<li>Select original image layer and ctrl + alt + ~  to select the highlights and inverse selection to select shadows</li>
<li>Add &#8216;Solid color&#8230;&#8217; adjustment layer, choose a dark brown sepia color, mode to multiply</li>
<li>Select original image, select highlights</li>
<li>Add &#8216;Solid color&#8230;&#8217; adjustment layer, choose a lighter brown color, mode to screen</li>
<li>Tweak solid color adjustment layers by double clicking on the colors in the layer pallet</li>
<li>New layer, merge to the layer and sharpen the image.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://sketch.timsvensen.com/2007/03/22/image-toning/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
