<?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>ABSTRACT HUMAN</title>
	<atom:link href="http://abstracthuman.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://abstracthuman.com</link>
	<description>This is my { jason hartsell  } portfolio/blog site and I operate under the design alias of Abstract Human. I’m a professional web designer from Dallas, TX and when I’m not designing web sites I enjoy illustrating and taking pictures.</description>
	<lastBuildDate>Mon, 19 Jul 2010 13:55:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Simple hMenu with jQuery</title>
		<link>http://abstracthuman.com/simple-hmenu-with-jquery/</link>
		<comments>http://abstracthuman.com/simple-hmenu-with-jquery/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 02:17:34 +0000</pubDate>
		<dc:creator>Abstract Human</dc:creator>
				<category><![CDATA[myposts]]></category>

		<guid isPermaLink="false">http://abstracthuman.com/?p=660</guid>
		<description><![CDATA[ I recently had to develop a drop down navigation with horizontal subnavs and wanted to create something simple and easy to modify using&#8230;]]></description>
			<content:encoded><![CDATA[<p>I recently had to develop a drop down navigation with horizontal subnavs and wanted to create something simple and easy to modify using jQuery/CSS.</p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2010/07/slide-menu.jpg" alt="" title="slide-menu" width="503" height="60" class="nostyle" /></p>
<p><a href="http://abstracthuman.com/tuts/hmenu" target="_blank"><strong>VIEW DEMO HERE</strong></a></p>
<hr/>
<p><strong>LINK jQuery:</strong></p>
<p>Absolute &#8211; &lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js&#8221;&gt;&lt;/script&gt;</pre>
<p>Or Relative - &lt;script type="text/javascript" src="jquery-1.4.2.min.js"&gt;&lt;/script&gt;</p>
<p>You can download the latest version of <a href="http://jquery.com" target="_blank"><strong>jQuery HERE</strong></a></p>
<hr/>
<p><strong>THE HTML:</strong></p>
<p>Below we can see that this menu uses a basic unordered list setup and we position the subnavs so that we can center them easily under the parent nav item.</p>
<pre>
&lt;ul id="main-nav"&gt;
    &lt;li&gt;&lt;a href="javascript:;"&gt;Link&lt;/a&gt;
        &lt;div class="subnav"&gt;
             &lt;ul style="position: relative; left: 130px;"&gt;
                &lt;li&gt;&lt;a href="javascript:;"&gt;Link&lt;/a&gt;&lt;/li&gt;
                &lt;li&gt;&lt;a href="javascript:;"&gt;Link&lt;/a>&lt;/li&gt;
                &lt;li&gt;&lt;a href="javascript:;"&gt;Link&lt;/a&gt;&lt;/li&gt;
             &lt;/ul&gt;
        &lt;/div&gt;
   &lt;/li&gt;
&lt;/ul&gt;
</pre>
<hr/>
<p><strong>THE CSS:</strong></p>
<p><a href="http://abstracthuman.com/tuts/hmenu/hmenu.css" target="_blank"><strong>VIEW THE CSS HERE</strong></a></p>
<hr/>
<p><strong>THE jQuery:</strong></p>
<p>We can use slideToggle to animate the subnav drop downs.</p>
<pre>
$(document).ready(function() {
    $('#main-nav li .subnav').hide();
    $('#main-nav li').hover(function() {
        $(this).find('a').addClass('active');
        $(this).find('.subnav').slideToggle(80);
    }, function() {
        $(this).find('a').removeClass('active');
        $(this).find('.subnav').slideToggle(80);
        });
    });
</pre>
<hr/>
<p>I hope you enjoyed this tutorial. Please feel free to modify and improve upon this simple hMenu. If you have any questions or comments please feel free to list them in the comments field below.</p>
<p><a href="http://abstracthuman.com/tuts/hmenu/hmenu.zip" target="_blank"><strong>DOWNLOAD THE SOURCE FILES HERE</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://abstracthuman.com/simple-hmenu-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CS5, HTML5 vs Flash, and JavaScript</title>
		<link>http://abstracthuman.com/cs5-html5-vs-flash-and-javascript/</link>
		<comments>http://abstracthuman.com/cs5-html5-vs-flash-and-javascript/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 04:03:45 +0000</pubDate>
		<dc:creator>Abstract Human</dc:creator>
				<category><![CDATA[myposts]]></category>

		<guid isPermaLink="false">http://abstracthuman.com/?p=616</guid>
		<description><![CDATA[CS5, HTML5 vs Flash, Grids, and JavaScript are the main subjects rotating in the techie side of my brain these days. I watched the Adobe CS5&#8230;]]></description>
			<content:encoded><![CDATA[<p>CS5, HTML5 vs Flash, Grids, and JavaScript are the main subjects rotating in the techie side of my brain these days. I watched the Adobe CS5 video stream the other day and it seems to have some major updates. I think that the Content Aware feature in PhotoShop looks amazing along with many of the other updates such as the new painting features in PhotoShop and Illustrator. With the emergence of Flash Catalyst, designers may continue to bring Flash to the forefront in video/audio/interactive technology on the web. It&#8217;s become the battle of Apple vs Adobe, Standards (HTML5) vs Flash. It&#8217;s definitely the talk of the town, especially since the announcement of Apple&#8217;s iPad not supporting Flash. This is a really interesting time for developers and designers alike. One thing I know is that as technology enhances and merges into multiple platforms, that gives me more mediums to work in and maintain work. It&#8217;s all a matter of focusing on certain practices that you believe will push you to the next level.  I&#8217;m glad I&#8217;ve decided to focus on JavaScript in the meantime, which I have no doubt will be around for the long haul. If Flash goes away completely, then what will happen to all the amazing movie sites and extremely interactive architecture sites? </p>
<p>I&#8217;ve started to design more and more with grids and intend to start checking out some actual development grids to use in the browser. I&#8217;m open to suggestions. I&#8217;ve heard some talk about Blueprint CSS. I would also love to hear about what&#8217;s going on in your techie mind and any comments you may have about any of these subjects.</p>
<p>Here are some posts/sites that I&#8217;ve been viewing on these subjects:</p>
<p><a href="http://www.webdesignerdepot.com/2010/04/adobe-creative-suite-5-brings-sexy-back/" target="_blank">CS5 Brings Sexy Back</a><br />
<a href="http://www.smashingmagazine.com/2009/08/04/designing-a-html-5-layout-from-scratch/" target="_blank">HTML 5 Layout From Scratch</a><br />
<a href="http://html5doctor.com/" target="_blank">HTML5 Doctor</a><br />
<a href="http://dev.w3.org/html5/spec/Overview.html" target="_blank">W3C HTML5</a><br />
<a href="http://html5gallery.com/" target="_blank">HTML5 Gallery</a><br />
<a href="http://perishablepress.com/press/2009/07/19/power-of-html5-css3/" target="_blank">Power of HTML5 and CSS3</a><br />
<a href="http://www.smashingmagazine.com/2009/07/16/html5-and-the-future-of-the-web/" target="_blank">HTML5 and the Future of Web</a><br />
<a href="http://spyrestudios.com/css-grid-systems/" target="_blank">CSS Grid Systems</a><br />
<a href="http://net.tutsplus.com/tutorials/javascript-ajax/crockford-on-javascript-the-complete-series/" target="_blank">Crockford on Javascript</a><br />
<a href="http://net.tutsplus.com/tutorials/html-css-techniques/html-5-and-css-3-the-techniques-youll-soon-be-using/" target="_blank">HTML 5 and CSS3: The Techniques You&#8217;ll Soon Be Using</a><br />
<a href="http://www.smashingmagazine.com/2010/04/12/the-gradual-disappearance-of-flash-websites/" target="_blank">The Gradual Disappearance of Flash Web Sites</a><br />
<a href="http://www.projekktor.com/" target="_blank">Projekktor</a><br />
<a href="http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-html5-features-you-should-be-using-right-now/" target="_blank">HTML5 Features you Should be Using Right Now</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://abstracthuman.com/cs5-html5-vs-flash-and-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac Mail RSS Feeds</title>
		<link>http://abstracthuman.com/mac-mail-rss-feeds/</link>
		<comments>http://abstracthuman.com/mac-mail-rss-feeds/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 02:14:08 +0000</pubDate>
		<dc:creator>Abstract Human</dc:creator>
				<category><![CDATA[myposts]]></category>

		<guid isPermaLink="false">http://abstracthuman.com/?p=605</guid>
		<description><![CDATA[I'm a huge hoarder of internet resources. If you've ever checked out <a href="http://delicious.com/rifftoned" target="_blank">my delicious</a> account you would know what I'm talking about. I love&#8230;]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a huge hoarder of internet resources. If you&#8217;ve ever checked out <a href="http://delicious.com/rifftoned" target="_blank">my delicious</a> account you would know what I&#8217;m talking about. I love book resources as well, but online resources don&#8217;t take up any space and I can take them wherever I go. My fairly recent purchase of a Mac Pro laptop has pretty much saved my arse. It has been my primary computer since my place was destroyed by a busted pipe in January. I plan on upgrading my desktop once I get it all set back up to Snow Leopard and the latest Mac Mail. I love the new Mac Mail feature to add RSS feeds. I&#8217;m sure there are lots of other mail programs that have been doing this for a while, but I enjoy the ease of use Mac Mail offers. Now that it has RSS feeds I can keep up on all the latest trends in my field and keep track of all my other interests (science, news, technology, etc). Of course you can cater it to your taste and should of course take advantage of RSS Feeds. It streamlines the information from your favorite resources and makes life much easier. Personally, I would rather get a glimpse of my favorite sites, blogs, and other resources before going to the actual sites. Let me know how you hoard your resources, which resources you follow, and what inspires you to keep doing what you do. </p>
<p><a href="http://www.apple.com/macosx/" target="_blank"><img src="http://abstracthuman.com/wp-content/uploads/2010/03/macmailrss.jpg" alt="" title="macmailrss" width="503" height="532" class="nostyle" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://abstracthuman.com/mac-mail-rss-feeds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Belated 2010 Resolutions</title>
		<link>http://abstracthuman.com/belated-2010-resolutions/</link>
		<comments>http://abstracthuman.com/belated-2010-resolutions/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 17:12:26 +0000</pubDate>
		<dc:creator>Abstract Human</dc:creator>
				<category><![CDATA[myposts]]></category>

		<guid isPermaLink="false">http://abstracthuman.com/?p=587</guid>
		<description><![CDATA[Well last year was another successful year and I have learned so much since then. Although I didn't learn as much AS3 as I'd like&#8230;]]></description>
			<content:encoded><![CDATA[<p>Well last year was another successful year and I have learned so much since then. Although I didn&#8217;t learn as much AS3 as I&#8217;d like to have this past year I did exercise, get outside more and spend/save my money a little wiser. You can see my resolutions from last year here &#8211; <a href="http://abstracthuman.com/belated-09-resolutions/">Belated-09-Resolutions</a>. As times press forward and technology shifts, I get inspired by new things and develop new goals. My new goals for this year also include seeing more sunlight (aka Disc Golf), but in the professional world of geekiness that I love, I will be wrapping my head around more and more JavaScript / JQuery. I am deep into the 5th Edition of the Definitive Guide and have other books that I will be following shortly after I get through this one. I am attempting to step into more of the programmer&#8217;s world and unify my creativity with the technical. I have been quite lazy on my blog posts lately, which may have been due to that fact that I&#8217;ve been so busy, or maybe because my condo got flooded by a pipe upstairs (luckily my computers were ok) and have been dealing with insurance companies for the past month, or some other mysterious reason I don&#8217;t know of, but here I am posting again in the new year. To wrap up a post that needs to be no longer, I will share with you the books I intend to read through. I would appreciate any links to great JavaScript resources, books, or anything else on the subject matter. Thanks!</p>
<p><a href="http://www.amazon.com/JavaScript-Definitive-Guide-David-Flanagan/dp/0596101996/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1264957187&amp;sr=8-1" target="_blank"><img class="nostyle" title="js-definitive-guide" src="http://abstracthuman.com/wp-content/uploads/2010/01/js-definitive-guide.jpg" alt="" width="122" height="159" /></a> <a href="http://www.amazon.com/Learning-jQuery-1-3-Jonathan-Chaffer/dp/1847196705/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1264957216&amp;sr=1-1-spell" target="_blank"><img class="nostyle" title="learning-jquery" src="http://abstracthuman.com/wp-content/uploads/2010/01/learning-jquery.jpg" alt="" width="122" height="159" /></a> <a href="http://www.amazon.com/Object-Oriented-JavaScript-high-quality-applications-libraries/dp/1847194141/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1264957246&amp;sr=1-1" target="_blank"><img class="nostyle" title="oop-js" src="http://abstracthuman.com/wp-content/uploads/2010/01/oop-js.jpg" alt="" width="122" height="159" /></a> <a href="http://www.amazon.com/JavaScript-Design-Patterns-Recipes-Problem-Solution/dp/159059908X/ref=sr_1_2?ie=UTF8&amp;s=books&amp;qid=1264957277&amp;sr=1-2" target="_blank"><img class="nostyle" src="http://abstracthuman.com/wp-content/uploads/2010/01/pro-js-design-patterns.jpg" alt="" width="122" height="159" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://abstracthuman.com/belated-2010-resolutions/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Support Independent Film</title>
		<link>http://abstracthuman.com/support-independent-film/</link>
		<comments>http://abstracthuman.com/support-independent-film/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 21:09:34 +0000</pubDate>
		<dc:creator>Abstract Human</dc:creator>
				<category><![CDATA[myposts]]></category>

		<guid isPermaLink="false">http://abstracthuman.com/?p=575</guid>
		<description><![CDATA[My brother Ryan Hartsell and his film partners Justin Hilliard and Arianne Martin have just come back from a month long road trip&#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://abstracthuman.com/wp-content/uploads/2009/12/ghost.jpg" alt="ghost" title="ghost" width="503" height="377" class="nostyle" /></p>
<p>My brother Ryan Hartsell and his film partners Justin Hilliard and Arianne Martin have just come back from a month long road trip promoting their movie, <a href="http://www.theothersideofparadisemovie.com" target="_blank">The Other Side of Paradise</a>. With valiant and enduring efforts they have managed to get into multiple film festivals, winning awards, and have also obtained a week long theatrical in New York. Also to mention they have recently been added onto Apple.com Trailers for the second time. <a href="http://www.apple.com/trailers/independent/theothersideofparadise/" target="_blank">View Here</a>. I ask in support of independent film, family, friends, and of course this entertaining film, that you purchase tickets for the theatrical release in New York. Even if you can&#8217;t attend or are not in the New York area please support independent film as a donation. Purchase a ticket for a NYC show (show receipt) &#038; you&#8217;ll get a copy of the soundtrack!!! So for those out-of-towners, you won&#8217;t be walking away empty handed. Plus, the soundtrack is amazing!</p>
<p>Just select a showtime on a date from 12/18-24th &#8211;  <a href="http://www.movietickets.com/house_detail.asp?house_id=216&#038;rdate=12/18/2009" target="_blank"><strong>Purchase Tickets Here</strong></a></p>
<p><strong>Other Links:</strong><br />
<a href="http://www.theothersideofparadisemovie.com/" target="_blank">Official Movie Site</a><br />
<a href="http://www.theothersideofparadisemovie.com/stanton/" target="_blank">The Soundtrack by Stanton Site</a><br />
<a href="http://3thumbsupdoc.com"  target="_blank">3 Thumbs Up Documentary Site</a><br />
<a href="http://www.apple.com/trailers/independent/theothersideofparadise/" target="_blank">Apple Trailers</a><br />
<a href="http://www.quadcinema.com" target="_blank">New York Theater Quad Cinema</a></p>
]]></content:encoded>
			<wfw:commentRss>http://abstracthuman.com/support-independent-film/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>30 Vintage Horror Movie Posters</title>
		<link>http://abstracthuman.com/30-vintage-horror-movie-posters/</link>
		<comments>http://abstracthuman.com/30-vintage-horror-movie-posters/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 03:40:01 +0000</pubDate>
		<dc:creator>Abstract Human</dc:creator>
				<category><![CDATA[myposts]]></category>

		<guid isPermaLink="false">http://abstracthuman.com/?p=534</guid>
		<description><![CDATA[Since Halloween is around the corner and happens to be one of my favorite times of year (October), I decided to post some amazing and&#8230;]]></description>
			<content:encoded><![CDATA[<p>Since Halloween is around the corner and happens to be one of my favorite times of year (October), I decided to post some amazing and inspirational horror movie posters. As an artist, an avid horror movie watcher and designer, I really enjoyed creating this post. This post is not in review of the actual movies that the posters represent, but the design quality, illustration, and natural aesthetics they demonstrate. Happy Halloween and enjoy!</p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/ape-man.jpg" alt="ape-man" title="ape-man" width="503" height="753" class="nostyle" /></p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/atom-age-vampire.jpg" alt="atom-age-vampire" title="atom-age-vampire" width="503" height="732" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/barracuda.jpg" alt="barracuda" title="barracuda" width="503" height="752" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/body-snatchers.jpg" alt="body-snatchers" title="body-snatchers" width="503" height="772" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/brain-eaters.jpg" alt="brain-eaters" title="brain-eaters" width="503" height="387" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/bride-of-frankenstein.jpg" alt="bride-of-frankenstein" title="bride-of-frankenstein" width="503" height="748" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/creature-from-the-black-lagoon.jpg" alt="creature-from-the-black-lagoon" title="creature-from-the-black-lagoon" width="503" height="774" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/curse-of-the-werewolf.jpg" alt="curse-of-the-werewolf" title="curse-of-the-werewolf" width="503" height="746" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/dawn-of-the-dead.jpg" alt="dawn-of-the-dead" title="dawn-of-the-dead" width="503" height="750" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/dracula.jpg" alt="dracula" title="dracula" width="503" height="774" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/eaten-alive.jpg" alt="eaten-alive" title="eaten-alive" width="503" height="756" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/elm-street.jpg" alt="elm-street" title="elm-street" width="503" height="774" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/evil-dead.jpg" alt="evil-dead" title="evil-dead" width="503" height="758" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/forbidden-planet.jpg" alt="forbidden-planet" title="forbidden-planet" width="503" height="774" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/frankenstein-meets-wolf-man.jpg" alt="frankenstein-meets-wolf-man" title="frankenstein-meets-wolf-man" width="503" height="750" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/halloween.jpg" alt="halloween" title="halloween" width="503" height="720" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/killer-shrews.jpg" alt="killer-shrews" title="killer-shrews" width="503" height="756" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/lc-dracula.jpg" alt="lc-dracula" title="lc-dracula" width="503" height="668" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/madman-mars.jpg" alt="madman-mars" title="madman-mars" width="503" height="596" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/man-planet-x.jpg" alt="man-planet-x" title="man-planet-x" width="503" height="759" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/mummy.jpg" alt="mummy" title="mummy" width="503" height="770" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/night-of-the-living-dead.jpg" alt="night-of-the-living-dead" title="night-of-the-living-dead" width="503" height="740" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/piranha.jpg" alt="piranha" title="piranha" width="503" height="758" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/return-of-the-living-dead.jpg" alt="return-of-the-living-dead" title="return-of-the-living-dead" width="503" height="762" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/saucer-men.jpg" alt="saucer-men" title="saucer-men" width="503" height="799" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/tarantula.jpg" alt="tarantula" title="tarantula" width="503" height="751" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/the-blob.jpg" alt="the-blob" title="the-blob" width="503" height="781" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/war-of-the-worlds.jpg" alt="war-of-the-worlds" title="war-of-the-worlds" width="503" height="787" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/white-zombie.jpg" alt="white-zombie" title="white-zombie" width="503" height="746" class="nostyle" /> </p>
<p><img src="http://abstracthuman.com/wp-content/uploads/2009/10/wolf-man.jpg" alt="wolf-man" title="wolf-man" width="503" height="392" class="nostyle" /></p>
]]></content:encoded>
			<wfw:commentRss>http://abstracthuman.com/30-vintage-horror-movie-posters/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>My Color Tools</title>
		<link>http://abstracthuman.com/my-color-tools/</link>
		<comments>http://abstracthuman.com/my-color-tools/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 03:43:13 +0000</pubDate>
		<dc:creator>Abstract Human</dc:creator>
				<category><![CDATA[myposts]]></category>

		<guid isPermaLink="false">http://abstracthuman.com/?p=521</guid>
		<description><![CDATA[Designing web sites has as much to do with color than pretty pictures, type treatment or anything else. Often, as designers, we will get&#8230;]]></description>
			<content:encoded><![CDATA[<p>Designing web sites has as much to do with color than pretty pictures, type treatment or anything else. Often, as designers, we will get most everything else correct in the eyes of our clients except the colors. I have spent more time with a client about one hex value than the entire design. Have you ever gone back and forth over a background color? It all seems crazy sometimes, but with colors and everything else we must be patient and collective when communicating with our clients. For a great post on constructive criticism and how to respond to it, visit <a href="http://www.smashingmagazine.com/2009/10/01/how-to-respond-effectively-to-design-criticism/" target="_blank">How To Respond Effectively To Design Criticism</a> on Smashing Magazine. This post is about colors though, so let&#8217;s continue.</p>
<p>Every designer uses color differently, obviously some better than some. I&#8217;ll admit, choosing colors is not my strongest suit, but because of modern day apps and tools, I have a more confident and effective outlet for choosing colors on my projects. These tools also help me to experiment and try new things. Apps in general have streamlined my whole creative thought process. Let&#8217;s get to the good stuff. Below are a list of the color apps I use to extend my creativity. If you&#8217;re not already using these for your color palettes, ideas, and/or brainstorming process, then I suggest you get on board. </p>
<p><strong><a href="http://kuler.adobe.com" target="_blank">Kuler</a></strong></p>
<p><a href="http://kuler.adobe.com" target="_blank"><img src="http://abstracthuman.com/wp-content/uploads/2009/10/kuler.jpg" alt="kuler" title="kuler" width="503" height="324" class="nostyle" /></a></p>
<p>You can visit <a href="http://kuler.adobe.com" target="_blank">Kuler Online</a> or if you have, I believe CS3 on up, you can use the Kuler Extension under Windows/Extensions/Kuler within the Adobe Software.</p>
<p><strong><a href="http://colorschemedesigner.com" target="_blank">Color Scheme Designer</a></strong></p>
<p><a href="http://colorschemedesigner.com" target="_blank"><img src="http://abstracthuman.com/wp-content/uploads/2009/10/colorschemedesigner.jpg" alt="colorschemedesigner" title="colorschemedesigner" width="503" height="329" class="nostyle" /></a></p>
<p>Unlike Kuler being a Flash App, <a href="http://colorschemedesigner.com" target="_blank">Color Scheme Designer</a> is an amazing jquery app online that allows you to visualize how type will look on top of certain colors as well as pick awesome color palettes. You can check it out.</p>
<p>Here are two must buy iPhone apps for designing with color on the go.</p>
<p><strong><a href="http://maddysoft.com/iphone/palettes/" target="_blank">Palettes</a></strong></p>
<p><a href="http://maddysoft.com/iphone/palettes/" target="_blank"><img src="http://abstracthuman.com/wp-content/uploads/2009/10/palettes.jpg" alt="palettes" title="palettes" width="503" height="179" class="nostyle" /></a></p>
<p>The <a href="http://maddysoft.com/iphone/palettes/" target="_blank">Palettes</a> app allows you to not only create color palettes, but also maintain and organize your palettes. What&#8217;s really cool is that wherever you go, you can create a palette on the fly whether its from a web site, a photograph, or one you might subconsciously or consciously develop.</p>
<p><strong><a href="http://www.cliqcliq.com" target="_blank">CliqCliq Colors</a></strong></p>
<p><a href="http://www.cliqcliq.com" target="_blank"><img src="http://abstracthuman.com/wp-content/uploads/2009/10/cliqcliq.jpg" alt="cliqcliq" title="cliqcliq" width="503" height="322" class="nostyle" /></a></p>
<p><a href="http://www.cliqcliq.com" target="_blank">CliqCliq Colors</a> is another great iPhone app for generating color palettes. It has a different method of scaling color values than Palettes. Between these two apps, I&#8217;m set and have plenty of options on getting ideas for my next projects whether professional or personal. </p>
<p>Thanks. I hope you enjoyed this post. I would love to hear about your color stories, apps, extensions, and methods to developing awesome color schemes.</p>
]]></content:encoded>
			<wfw:commentRss>http://abstracthuman.com/my-color-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browser For The Better</title>
		<link>http://abstracthuman.com/browser-for-the-better/</link>
		<comments>http://abstracthuman.com/browser-for-the-better/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 06:32:21 +0000</pubDate>
		<dc:creator>Abstract Human</dc:creator>
				<category><![CDATA[myposts]]></category>

		<guid isPermaLink="false">http://abstracthuman.com/?p=514</guid>
		<description><![CDATA[Finally, even Microsoft gets it. Even Microsoft wants you to stop using IE6 (especially) and IE7. I have to tip my hat to them and encourage&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.browserforthebetter.com" target="_blank"><img src="http://abstracthuman.com/wp-content/uploads/2009/09/browserforthebetter.jpg" alt="browserforthebetter" title="browserforthebetter" width="503" height="347" class="nostyle" /></a></p>
<p>Finally, even Microsoft gets it. Even Microsoft wants you to stop using IE6 (especially) and IE7. I have to tip my hat to them and encourage Microsoft&#8217;s exposure to get this word out. If you like helping people then pass this on for each time someone downloads IE8 from this site, Microsoft will send out 8 meals to people in need. If someone upgrades from IE6 to IE8, then the donation will be doubled. It looks like even Microsoft has kicked dead browsers such as IE6 to the curb and so should you if you haven&#8217;t already. Make your life and my life easier. This site uses background PNGS! I am curious though to see if they even bothered fixing this for IE6, which at first glance I think they&#8217;ve moved on. This site is unable to load in IE netrenderer. I am probably preaching to the choir and at this point many of my recent clients have moved on, but for those that continue to use it then I will pass this site on in an attempt to feed the hungry and kill off IE6 for good.</p>
<p><a href="http://www.browserforthebetter.com" target="_blank">View Site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://abstracthuman.com/browser-for-the-better/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozilla Service Week</title>
		<link>http://abstracthuman.com/mozilla-service-week/</link>
		<comments>http://abstracthuman.com/mozilla-service-week/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 04:53:51 +0000</pubDate>
		<dc:creator>Abstract Human</dc:creator>
				<category><![CDATA[myposts]]></category>

		<guid isPermaLink="false">http://abstracthuman.com/?p=506</guid>
		<description><![CDATA[Mozilla has been working since day one to develop a browser that would reach out to the people and cater to their needs. For the past&#8230;]]></description>
			<content:encoded><![CDATA[<p>Mozilla has been working since day one to develop a browser that would reach out to the people and cater to their needs. For the past three years, Mozilla Firefox has lead the browser stats and has continued to develop and improve with the user in mind. It&#8217;s no wonder that so many people are loyal to this browser. Sure nothing is perfect. Firefox can often bog down because of extension and/or traffic overload, and because of constant version updates but the Mozilla team is building a team amongst the community for the community. They are building utensils that make life and learning online easier. Especially as a web designer/developer I have found it very useful to have many of these utensils. I can&#8217;t go a day without using Firebug and other tools provided by Mozilla. </p>
<p><a href="http://mozillaservice.org" target="_blank"><img src="http://abstracthuman.com/wp-content/uploads/2009/08/mozillaserviceweek.jpg" alt="mozillaserviceweek" title="mozillaserviceweek" width="503" height="116" class="nostyle" /></a></p>
<p>Mozilla service week is coming up and you can help out. Bring the world together as the internet makes life better. Mozilla service week is a week set aside for designers, developers, and organizations to reach out and help make life easier through the internet. Whether you know how to design, teach someone how to set up a the internet, develop a promotional website, or whatever it may be involving computers, the internet, and people in need, Mozilla wants to know your stories and wants you to donate your hours if available to help those in need. Because of things like this, I can see Firefox being on top for some time to come if they continue these values and put people first.</p>
]]></content:encoded>
			<wfw:commentRss>http://abstracthuman.com/mozilla-service-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diablo III</title>
		<link>http://abstracthuman.com/diablo-iii/</link>
		<comments>http://abstracthuman.com/diablo-iii/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 02:18:40 +0000</pubDate>
		<dc:creator>Abstract Human</dc:creator>
				<category><![CDATA[myposts]]></category>

		<guid isPermaLink="false">http://abstracthuman.com/?p=499</guid>
		<description><![CDATA[Where have I been? Have I been working too hard to have missed this site and information on another Diablo game? Although release plans&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blizzard.com/diablo3" target="_blank"><img src="http://abstracthuman.com/wp-content/uploads/2009/08/diablo.jpg" alt="diablo" title="diablo" width="503" height="345" class="nostyle" /></a></p>
<p>Where have I been? Have I been working too hard to have missed this site and information on another Diablo game? Although release plans are not in sight based on the FAQ section of this site, I am so excited to get my hands on Diablo 3 when it does come out. It&#8217;s most likely going to be extremely hard to get a copy at first. I write this blog post in an effort to have all of you remind me and inform me on updates for Diablo 3. I might pay an arm and a leg.</p>
<p>Diablo 3 developers have plans for many new and exciting features. Many of which are listed on this site. Damn, how long has it been since Diablo 2 came out? This brings me back. Oh and this site may load a little sluggishly, but it is supreme I think. I love the ominous intro and slick flash implementation. Its not the most amazing site I&#8217;ve seen, but it is very cool and worth checking out for the site itself and the actual game of course.</p>
<p>Cheers!</p>
<p><a href="http://www.blizzard.com/diablo3" target="_blank">View Site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://abstracthuman.com/diablo-iii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
