<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Skylar Anderson</title>
	
	<link>http://goskylar.com</link>
	<description>Web Design, Facebook Application Development, AJAX, User Interface | Indianapolis, IN</description>
	<lastBuildDate>Thu, 23 Jul 2009 01:34:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/SkylarAnderson" /><feedburner:info uri="skylaranderson" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Hyphenating Strings with jQuery</title>
		<link>http://feedproxy.google.com/~r/SkylarAnderson/~3/how6A9iVwbY/</link>
		<comments>http://goskylar.com/2009/07/hyphenating-strings-with-jquery/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 17:13:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[hyphenating]]></category>
		<category><![CDATA[jQuery Plugin]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://goskylar.com/?p=92</guid>
		<description><![CDATA[Over the course of the past couple weeks, my need for a method of string hyphenating DOM objects has arisen quite often. Any UI developer that has to deal with user input with limited space will know that this can be a big pain. Like a true software engineer, I searched the interwebs to see [...]]]></description>
			<content:encoded><![CDATA[<p>Over the course of the past couple weeks, my need for a method of string hyphenating DOM objects has arisen quite often.   Any UI developer that has to deal with user input with limited space will know that this can be a big pain.  Like a true software engineer, I searched the interwebs to see if there were any existing plugins to handle this for me.  Shockingly, I found no viable solutions, so I wrote my own jQuery Plugin to handle the hyphenating.</p>
<h3><a href="http://goskylar.com/wp-content/demos/jquery.hyphenate/">Jump to the jQuery Hyphenate Demo</a></h3>
<h3><a href="http://goskylar.com/wp-content/uploads/2009/07/jquery.hyphenate.zip">Download the Source Code</a></h3>
<p><strong>Requirements</strong></p>
<ul>
<li><a href="http://jquery.com">jQuery</a></li>
<li><a href="#">The jQuery.Hyphenate Plugin</a></li>
</ul>
<p>In the head of your document, be sure to include your references to the jQuery library and the Hyphenate Plugin:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">  &lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery-1.3.2.js&quot;&gt;&lt;/script&gt;
  &lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery.hyphenate.js&quot;&gt;&lt;/script&gt;</pre></div></div>

<p>Following that, we can instantiate our plugin on any dom element:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">jQuery<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
  <span style="color: #006600; font-style: italic;">// Document is ready</span>
  $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'div.hyphen'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">hyphenate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #006600; font-style: italic;">// Hyphenate all divs with a class of 'hyphen'</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>By default, the plugin will hyphenate the strings based off the current width of the element we are hyphenating.  You can, however, pass in an optional oWidth parameter to define a width for the element.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">jQuery<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
  <span style="color: #006600; font-style: italic;">// Document is ready</span>
  $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'div.hyphen'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">hyphenate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> oWidth <span style="color: #339933;">:</span> <span style="color: #CC0000;">100</span> <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #006600; font-style: italic;">// Hyphenate all divs with a class of 'hyphen' to a width of 100px</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>This plugin works best with block level elements (DIV, P, H1, LI), but can also work on inline elements (SPAN, EM, STRONG), just note that the plugin will modify them to block level via <em>display:block</em>.</p>
<h3>Known Issues</h3>
<p>This plugin is in its initial release, so please do not consider this a complete and polished plugin.</p>
<ul>
<li>Nested DOM elements will be removed.  If you are performing a hyphenation on a DIV that has child SPANs or As, then those elements will be removed, though there inner-text will remain.</li>
</ul>
<p>Please enjoy!  Feel free to leave comments and suggestions below, and don&#8217;t forget to come back often to check for updates.</p>
<img src="http://feeds.feedburner.com/~r/SkylarAnderson/~4/how6A9iVwbY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://goskylar.com/2009/07/hyphenating-strings-with-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://goskylar.com/2009/07/hyphenating-strings-with-jquery/</feedburner:origLink></item>
		<item>
		<title>To die for image rollovers with jQuery Parallax</title>
		<link>http://feedproxy.google.com/~r/SkylarAnderson/~3/33JPNw4chfM/</link>
		<comments>http://goskylar.com/2009/07/to-die-for-image-rollovers-with-jquery-parallax/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 21:50:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Image Rollovers]]></category>
		<category><![CDATA[Sexy UI]]></category>

		<guid isPermaLink="false">http://goskylar.com/?p=66</guid>
		<description><![CDATA[The basic principal of parallax is the creation of an artificial 3D space through subtle movements on varying 2D planes.  Basically we can create a faux 3D environment with 2D elements.]]></description>
			<content:encoded><![CDATA[<p>The visual technique of <em>parallax</em> has been around computer graphics for some time.  The basic principal of parallax is the creation of an artificial 3D space through subtle movements on varying 2D planes.  Basically we can create a faux 3D environment with 2D elements.</p>
<p>Enough with the chit-chat.  Parallax can best be described by seeing it in action:<br />
<h3><a href="http://goskylar.com/wp-content/demos/jquery_parallax/">View the Parallax Demo</a></h3>
<p>Parallax is typically used for creating captivating 3d scenes and landscapes, but here we&#8217;ll use it just to create some really nice image rollovers.</p>
<h1>On with the tutorial</h1>
<p><strong>Requirements</strong></p>
<ul>
<li>Basic understanding of HTML/CSS</li>
<li>Basic understanding of creating PNG transparency</li>
<li><a href="http://jquery.com">jQuery</a></li>
<li><a href="http://webdev.stephband.info/parallax.html">jQuery &#8211; Parallax Plugin</a> by <a href="http://stephband.info/">Stephen Band</a></li>
</ul>
<p>Feel free to <a href="http://goskylar.com/wp-content/uploads/2009/07/parallax.zip">download the entire project here.</a></p>
<h3>Step 1. Design your image</h3>
<p>Using Photoshop, or your image editor of choice so long as it supports .PNG alpha transparency, create an interesting design including several elements.  You can create a scene like <a href="http://webdev.stephband.info/parallax.html">Stephen did</a> or something simple like my <a href="http://goskylar.com/wp-content/demos/jquery_parallax/">demo.</a></p>
<p>  Be sure to keep your design <strong>larger</strong> than you plan on using it in the final product.</p>
<div id="attachment_73" class="wp-caption alignnone" style="width: 510px"><img src="http://goskylar.com/wp-content/uploads/2009/07/step1.jpg" alt="jquery image rollover with parallax - step1" title="parallax_step1.jpg" width="500" height="500" class="size-full wp-image-73" /><p class="wp-caption-text">Image Rollovers with jQuery Parallax - Step 1</p></div>
<h3>Step 2. Set up your layers</h3>
<p>Now pull apart your document, creating a 24-bit PNG for each layer. In my example I made three layers:<br />
<strong>Layer 0 </strong> &#8211; The background: bg.png<br />
<strong>Layer 1 </strong> &#8211; The guides: guides.png<br />
<strong>Layer 2 </strong> &#8211; Text: name.png</p>
<p><img src="http://goskylar.com/wp-content/uploads/2009/07/Picture-1.png" alt="24-bit png transparency" title="24-bit png transparency" width="305" height="184" class="alignnone size-full wp-image-76" /></p>
<h3>Step 3. HTML</h3>
<p>Now, with a separate PNG for each layer in our parallax, we can create a new HTML document with the following code in the body.</p>

<div class="wp_syntax"><div class="code"><pre class="xhtml" style="font-family:monospace;">&lt;div id=&quot;parallax&quot;&gt;
        &lt;!-- Layer 0 // Background --&gt;
  	&lt;div style=&quot;width:500px; height:500px;&quot;&gt;
  		&lt;img src=&quot;bg.png&quot; alt=&quot;&quot; /&gt;
  	&lt;/div&gt;
&nbsp;
        &lt;!-- Layer 1 // Guides --&gt;
  	&lt;div style=&quot;width:500px; height:500px;&quot;&gt;
  		&lt;img src=&quot;guides.png&quot; alt=&quot;&quot; /&gt;
  	&lt;/div&gt;
&nbsp;
        &lt;!-- Layer 2 // Text --&gt;
  	&lt;div style=&quot;width:500px; height:500px;&quot;&gt;
  		&lt;img src=&quot;name.png&quot; alt=&quot;&quot;/&gt;
  	&lt;/div&gt;
 &lt;/div&gt;</pre></div></div>

<p>Set the size of each DIV equal to the size of the image it is holding.</p>
<h3>Step 4. CSS</h3>
<p>We use CSS to define the window in which our parallax will render.  Place the following rule in your stylesheet.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#parallax</span> <span style="color: #00AA00;">&#123;</span> 
  <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">overflow</span><span style="color: #00AA00;">:</span><span style="color: #993333;">hidden</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">400px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<h3>Step 4. Make it come alive with jQuery</h3>
<p>In the head of your document, be sure to include the jQuery and jQuery.paralax libraries:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;script type=&quot;text/javascript&quot; src=&quot;jquery-1.3.2.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;jquery.jparallax.js&quot;&gt;&lt;/script&gt;</pre></div></div>

<p>Now we can add our jQuery:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>	
	$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#parallax'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">jparallax</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
		<span style="color: #006600; font-style: italic;">// Options</span>
	<span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
	<span style="color: #009900;">&#123;</span>xtravel<span style="color: #339933;">:</span> <span style="color: #3366CC;">'30px'</span><span style="color: #339933;">,</span> ytravel<span style="color: #339933;">:</span> <span style="color: #3366CC;">'30px'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #006600; font-style: italic;">// Layer 0 : bg.png</span>
	<span style="color: #009900;">&#123;</span>xtravel<span style="color: #339933;">:</span> <span style="color: #3366CC;">'50px'</span><span style="color: #339933;">,</span> ytravel<span style="color: #339933;">:</span> <span style="color: #3366CC;">'60px'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #006600; font-style: italic;">// Layer 1 : guides.png</span>
	<span style="color: #009900;">&#123;</span>xtravel<span style="color: #339933;">:</span> <span style="color: #3366CC;">'200px'</span><span style="color: #339933;">,</span> ytravel<span style="color: #339933;">:</span> <span style="color: #3366CC;">'80px'</span><span style="color: #009900;">&#125;</span> <span style="color: #006600; font-style: italic;">// Layer 2 : name.png</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Each line of {options} creates a unique set of rules for that layer.  Reduce the xtravel/ytravel values in order to lessen the parallax effect.  Background layers <strong>move less</strong> than foreground layers so make sure their xtravel/ytravel values are smaller than foreground layers.  Feel free to tweak these numbers as you see fit.  jQuery Parallax supports a multitude of options, consult the <a href="http://webdev.stephband.info/parallax.html">plug-in page for more information</a>.</p>
<p>And that&#8217;s it!  You should have something very similar to <a href="http://goskylar.com/wp-content/demos/jquery_parallax/">my completed demo.</a>  If not, please post a comment or drop me an email and I can help you out.  Enjoy.</p>
<img src="http://feeds.feedburner.com/~r/SkylarAnderson/~4/33JPNw4chfM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://goskylar.com/2009/07/to-die-for-image-rollovers-with-jquery-parallax/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		<feedburner:origLink>http://goskylar.com/2009/07/to-die-for-image-rollovers-with-jquery-parallax/</feedburner:origLink></item>
		<item>
		<title>23 of the Best Looking iPhone Microsite designs</title>
		<link>http://feedproxy.google.com/~r/SkylarAnderson/~3/RYI47cPS1d8/</link>
		<comments>http://goskylar.com/2009/07/24-of-the-best-looking-iphone-microsites/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 00:16:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design Inspiration]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Microsite]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://goskylar.com/?p=45</guid>
		<description><![CDATA[iPhone apps are obviously all the craze, with their seemingly unlimited functionality and sexy UI's.  Fortunately for designers, the iPhone's success has warranted an onslaught of nicely designed iPhone microsites, definitely worth taking note of. ]]></description>
			<content:encoded><![CDATA[<p>iPhone apps are obviously all the craze, with their seemingly unlimited functionality and sexy UI&#8217;s.  Fortunately for designers, the iPhone&#8217;s success has warranted an onslaught of nicely designed iPhone microsites, definitely worth taking note of.  Below are 23 of the best.</p>
<p><a href="http://www.ubiubi.mobi/"><br />
<h2>Ubiubi</h2>
<p></a><br />
<a href="http://www.ubiubi.mobi/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-1.jpg"></a></p>
<p><a href="http://birdfeedapp.com/"><br />
<h2>Birdfeed</h2>
<p></a><br />
<a href="http://birdfeedapp.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-2.jpg"></a></p>
<p><a href="http://www.gobible.com/"><br />
<h2>Go Bible</h2>
<p></a><br />
<a href="http://www.gobible.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-3.jpg"></a></p>
<p><a href="http://www.2udoku.com/"><br />
<h2>2udoku</h2>
<p></a><br />
<a href="http://www.2udoku.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-4.jpg"></a></p>
<p><a href="http://dockyard.be/"><br />
<h2>Dockyard</h2>
<p></a><br />
<a href="http://dockyard.be/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-5.jpg"></a></p>
<p><a href="http://feedafever.com/"><br />
<h2>Fever</h2>
<p></a><br />
<a href="http://feedafever.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-6.jpg"></a></p>
<p><a href="http://www.everyblock.com/"><br />
<h2>EveryBlock</h2>
<p></a><br />
<a href="http://www.everyblock.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-7.jpg"></a></p>
<p><a href="http://spendly.com/"><br />
<h2>Spendly</h2>
<p></a><br />
<a href="http://spendly.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-8.jpg"></a></p>
<p><a href="http://spiffingapps.com/"><br />
<h2>Spiffing</h2>
<p></a><br />
<a href="http://spiffingapps.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-9.jpg"></a></p>
<p><a href="http://tapbots.com/weightbot/"><br />
<h2>Weightbot</h2>
<p></a><br />
<a href="http://tapbots.com/weightbot/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-10.jpg"></a></p>
<p><a href="http://www.digdeepfitness.com/"><br />
<h2>Big Deep Fitness</h2>
<p></a><br />
<a href="http://www.digdeepfitness.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-11.jpg"></a></p>
<p><a href="http://www.wherecloud.com/products.html"><br />
<h2>Reportage</h2>
<p></a><br />
<a href="http://www.wherecloud.com/products.html"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-12.jpg"></a></p>
<p><a href="http://www.pokeseo.com/"><br />
<h2>Pokeseo</h2>
<p></a><br />
<a href="http://www.pokeseo.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-13.jpg"></a></p>
<p><a href="http://www.realmacsoftware.com/littlesnapper/iphone/"><br />
<h2>Little Snapper</h2>
<p></a><br />
<a href="http://www.realmacsoftware.com/littlesnapper/iphone/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-14.jpg"></a></p>
<p><a href="http://tearoundapp.com/"><br />
<h2>Tea Round</h2>
<p></a><br />
<a href="http://tearoundapp.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-15.jpg"></a></p>
<p><a href="http://www.thermometerapp.com/"><br />
<h2>Thermometer</h2>
<p></a><br />
<a href="http://www.thermometerapp.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-16.jpg"></a></p>
<p><a href="http://baristaapp.com/"><br />
<h2>Barista App</h2>
<p></a><br />
<a href="http://baristaapp.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-17.jpg"></a></p>
<p><a href="http://marketcircle.com/daylitetouch/"><br />
<h2>Daylite Touch</h2>
<p></a><br />
<a href="http://marketcircle.com/daylitetouch/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-18.jpg"></a></p>
<p><a href="http://www.ishotsapp.com/"><br />
<h2>iShots</h2>
<p></a><br />
<a href="http://www.ishotsapp.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-19.jpg"></a></p>
<p><a href="http://www.mockdraftapp.com/"><br />
<h2>Mock Draft</h2>
<p></a><br />
<a href="http://www.mockdraftapp.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-20.jpg"></a></p>
<p><a href="http://www.parkingapp.com/"><br />
<h2>Parking App</h2>
<p></a><br />
<a href="http://www.parkingapp.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-21.jpg"></a></p>
<p><a href="http://www.ticatacgames.net/static/iphone_teaser/"><br />
<h2>Tic a Tac Poker</h2>
<p></a><br />
<a href="http://www.ticatacgames.net/static/iphone_teaser/"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-22.jpg"></a></p>
<p><a href="http://tapku.com/to-do_lists.html"><br />
<h2>Where To?</h2>
<p></a><br />
<a href="http://tapku.com/to-do_lists.html"><img src="http://goskylar.com/wp-content/uploads/2009/07/iphone/Picture-23.jpg"></a></p>
<h3>Conclusion</h3>
<p>I believe there is something to be learned from iPhone microsite design.  Whether it&#8217;s brevity, clear communication, large calls to action, or just plain captivating, these designers got it right.</p>
<img src="http://feeds.feedburner.com/~r/SkylarAnderson/~4/RYI47cPS1d8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://goskylar.com/2009/07/24-of-the-best-looking-iphone-microsites/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://goskylar.com/2009/07/24-of-the-best-looking-iphone-microsites/</feedburner:origLink></item>
		<item>
		<title>28 Beautiful Organic Websites</title>
		<link>http://feedproxy.google.com/~r/SkylarAnderson/~3/iSynifxDvmU/</link>
		<comments>http://goskylar.com/2009/07/28-beautiful-organic-websites/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 02:25:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design Inspiration]]></category>
		<category><![CDATA[Organic Web Design]]></category>

		<guid isPermaLink="false">http://goskylar.com/?p=26</guid>
		<description><![CDATA[Going beyond the casual drop shadow and texture highlight, organic web design shatters the traditional website grid with the heavy use of textures, photography, and illustrations. ]]></description>
			<content:encoded><![CDATA[<p>Going beyond the casual drop shadow and texture highlight, organic web design shatters the traditional website grid with the heavy use of textures, photography, and illustrations.  Here are 28 of the best designed organic websites you&#8217;ll find out there today.</p>
<p><a href="http://foodincmovie.com/"><br />
<h2>Hungry For Change</h2>
<p></a><br />
<a href="http://foodincmovie.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-1.jpg"></a></p>
<p><a href="http://www.huxleyprairiefest.com/"><br />
<h2>Prairie Fest 2009</h2>
<p></a><br />
<a href="http://www.huxleyprairiefest.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-2.jpg"></a></p>
<p><a href="http://www.juandiegovelasco.com/"><br />
<h2>Juan Diedo Velasco</h2>
<p></a><br />
<a href="http://www.juandiegovelasco.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-3.jpg"></a></p>
<p><a href="http://literarybohemian.com/"><br />
<h2>Literary Bohemian</h2>
<p></a><br />
<a href="http://literarybohemian.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-4.jpg"></a></p>
<p><a href="http://designhippy.com/"><br />
<h2>The Design Hippy</h2>
<p></a><br />
<a href="http://designhippy.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-5.jpg"></a></p>
<p><a href="http://www.cedevitago.com/"><br />
<h2>Cedevita Go!</h2>
<p></a><br />
<a href="http://www.cedevitago.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-6.jpg"></a></p>
<p><a href="http://labs.dragoninteractive.com/"><br />
<h2>Dragon Interactive</h2>
<p></a><br />
<a href="http://labs.dragoninteractive.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-7.jpg"></a></p>
<p><a href="http://www.fontex.org/"><br />
<h2>Font ex</h2>
<p></a><br />
<a href="http://www.fontex.org/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-8.jpg"></a></p>
<p><a href="http://www.juliusmattsson.com/"><br />
<h2>Julius Mattson</h2>
<p></a><br />
<a href="http://www.juliusmattsson.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-9.jpg"></a></p>
<p><a href="http://www.kashmircreative.com/"><br />
<h2>Kashmir Creative</h2>
<p></a><br />
<a href="http://www.kashmircreative.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-10.jpg"></a></p>
<p><a href="http://innermetrogreen.com/"><br />
<h2>Inner Metro Green</h2>
<p></a><br />
<a href="http://innermetrogreen.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-11.jpg"></a></p>
<p><a href="http://www.outlawdesignblog.com/"><br />
<h2>Outlaw Design</h2>
<p></a><br />
<a href="http://www.outlawdesignblog.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-12.jpg"></a></p>
<p><a href="http://tearoundapp.com/"><br />
<h2>Tea Around</h2>
<p></a><br />
<a href="http://tearoundapp.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-13.jpg"></a></p>
<p><a href="http://ditley.com/"><br />
<h2>Ditley</h2>
<p></a><br />
<a href="http://ditley.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-14.jpg"></a></p>
<p><a href="http://www.dannydiablo.de/"><br />
<h2>Danny Diablo</h2>
<p></a><br />
<a href="http://www.dannydiablo.de/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-15.jpg"></a></p>
<p><a href="http://www.progressivered.com/"><br />
<h2>Progressive Red</h2>
<p></a><br />
<a href="http://www.progressivered.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-17.jpg"></a></p>
<p><a href="http://www.adf.lt/"><br />
<h2>Archstudio</h2>
<p></a><br />
<a href="http://www.adf.lt/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-18.jpg"></a></p>
<p><a href="http://corvusart.com/"><br />
<h2>Corvus Design Studio</h2>
<p></a><br />
<a href="http://corvusart.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-19.jpg"></a></p>
<p><a href="http://www.agote.lt/"><br />
<h2>Agote</h2>
<p></a><br />
<a href="http://www.agote.lt/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-20.jpg"></a></p>
<p><a href="http://www.peter-pearson.com/"><br />
<h2>Peter Pearson</h2>
<p></a><br />
<a href="http://www.peter-pearson.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-21.jpg"></a></p>
<p><a href="http://www.viralfilmfestival.ch/"><br />
<h2>Viral Film Festival</h2>
<p></a><br />
<a href="http://www.viralfilmfestival.ch/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-22.jpg"></a></p>
<p><a href="http://www.61pixels.com/"><br />
<h2>Todd Adams</h2>
<p></a><br />
<a href="http://www.61pixels.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-23.jpg"></a></p>
<p><a href="http://cpeople.ru/"><br />
<h2>Creative People</h2>
<p></a><br />
<a href="http://cpeople.ru/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-24.jpg"></a></p>
<p><a href="http://www.australia2018-2022.com.au/"><br />
<h2>Australia FIFA Bid</h2>
<p></a><br />
<a href="http://www.australia2018-2022.com.au/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-25.jpg"></a></p>
<p><a href="http://www.piratalondon.com/"><br />
<h2>Pirata</h2>
<p></a><br />
<a href="http://www.piratalondon.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-26.jpg"></a></p>
<p><a href="http://snopp.no/"><br />
<h2>Snopp</h2>
<p></a><br />
<a href="http://snopp.no/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-27.jpg"></a></p>
<p><a href="http://www.worldnudeday.com/"><br />
<h2>World Nude Day</h2>
<p></a><br />
<a href="http://www.worldnudeday.com/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-28.jpg"></a></p>
<p><a href="http://www.noeldesign.net/"><br />
<h2>Terry Noel</h2>
<p></a><br />
<a href="http://www.noeldesign.net/"><img src="http://goskylar.com/wp-content/uploads/2009/07/organic/Picture-29.jpg"></a></p>
<img src="http://feeds.feedburner.com/~r/SkylarAnderson/~4/iSynifxDvmU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://goskylar.com/2009/07/28-beautiful-organic-websites/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://goskylar.com/2009/07/28-beautiful-organic-websites/</feedburner:origLink></item>
		<item>
		<title>The strategy of pricing freelance web work</title>
		<link>http://feedproxy.google.com/~r/SkylarAnderson/~3/mPysPDt2ORk/</link>
		<comments>http://goskylar.com/2009/07/the-strategy-of-pricing-freelance-web-work/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 23:55:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freelancing]]></category>
		<category><![CDATA[Pricing]]></category>
		<category><![CDATA[proposals]]></category>

		<guid isPermaLink="false">http://goskylar.com/?p=12</guid>
		<description><![CDATA[Learning to evaluate not only what your time is worth, but what value you present to a client is challenging.  Here are some strategies that can help even the most seasoned of freelancers.]]></description>
			<content:encoded><![CDATA[<p>The most common question I get from friends and fellow colleagues is &#8220;Am I charging enough?  Am I charging too much?&#8221;  Truth is, no one can tell you what your time is worth but yourself.  You can, however, have a couple strategies when determining your rates.</p>
<p><img class="alignnone size-full wp-image-21" title="hammer" src="http://goskylar.com/wp-content/uploads/2009/07/hammer.jpg" alt="hammer" width="500" height="281" /></p>
<h2>Strategy 1: The Hammer</h2>
<p>This anecdote adds to the point that <strong>It&#8217;s not about the time spent on a project, It&#8217;s about the value of the service rendered.</strong></p>
<blockquote><p>The manager of a manufacturing plant who, unable to solve a mechanical breakdown, sent for the retired engineer who had installed the machinery. Following a brief inspection, the engineer took a hammer and hit a pipe which did the trick. The next day the engineer submitted a bill for $1,000 to a horrified manager. Above the protests at the charge for a solitary hammer-blow the retired engineer explained, “Only $1.00 of it is for hitting the pipe. The other $999 is for knowing where to hit it.”</p></blockquote>
<p>We can easily put this into web terms.  Let&#8217;s say you have a client that needs a social/community portal with user profiles, user blogs, a forum, and a custom theme.  Little does the client know, but I could hack their site together in a matter of minutes with Drupal, phpBB, and a couple plug&#8217;n'play modules.  Now do I charge them a pro-rated amount based off my typical hourly wage or do I charge based off the <strong>value of the website I just built</strong>?</p>
<p><img class="alignnone size-full wp-image-21" title="picasso" src="http://goskylar.com/wp-content/uploads/2009/07/picasso.jpg" alt="picasso" /></p>
<h2>Strategy 2: Picasso in the Park</h2>
<p>The moral of this story is that a service with higher price tag is not necessarily a scam.  Consider this often quoted story about Picasso:</p>
<blockquote><p>Legend has it that Pablo Picasso was sketching in the park when a bold woman approached him.</p>
<p>“It’s you — Picasso, the great artist! Oh, you must sketch my portrait! I insist.”</p>
<p>So Picasso agreed to sketch her. After studying her for a moment, he used a single pencil stroke to create her portrait. He handed the women his work of art.</p>
<p>“It’s perfect!” she gushed. “You managed to capture my essence with one stroke, in one moment. Thank you! How much do I owe you?”</p>
<p>“Five thousand dollars,” the artist replied.</p>
<p>“B-b-but, what?” the woman sputtered. “How could you want so much money for this picture? It only took you a second to draw it!”</p>
<p>To which Picasso responded, “Madame, it took me my entire life.”</p></blockquote>
<p>That story gives me shivers every time I hear it it&#8217;s so true.  What many clients and freelancers sometimes fail to realize is that sometimes an hourly rate just isn&#8217;t the most effective metric for invoicing. <em>Expertise must come into consideration.</em></p>
<h2>Convincing a client your worth that much</h2>
<p>The beautiful thing about the internet is how easy it can be for anyone, and I mean <a href="http://www.myspace.com" target="_blank">anyone</a> to publish themselves.  <strong>Don&#8217;t let the ease at which you can publish to the internet mitigate the value of what you are doing for a client</strong>.  If a client fails to see the value in what you are proposing, then it&#8217;s time to educate them!</p>
<p>Prove to the client that what you are proposing is an investment, and they will be less hesitant to hire you.</p>
<h3>Websites have real value</h3>
<p>Show the client how their website is an <em>extension</em> of their entire business:  sales, marketing, customer service, and especially PR.  A website is akin to digital plot of land with the potential for millions of users.</p>
<h3>Give them the right perspective</h3>
<p>Put your project rates in with the same context as other popular media vectors.  How much would a client expect to pay for traditional media space?  For a TV ad, a billboard, or a magazine space?  Is a weeks worth of newspaper ads worth more than a website that can persist indefinitely?</p>
<h3>Be the confidence man</h3>
<p>Most clients have little or no experience working with freelancers and will often try to barter to a lower rate.  In fact, no matter how low your rates are, clients will typically <em>always try to challenge it</em>.  It&#8217;s important to remain confident in your pricing, not budging on your rate, but instead offering up the fact of &#8220;Oh really?  I&#8217;ve found my prices to be quite competitive in this area.&#8221;</p>
<p>A surprised, yet confident, demeanor will calm a client and reassure that you&#8217;re worth your rate.</p>
<h2>In conclusion..</h2>
<p>The sooner you as a freelancer can determine the <strong>value of what you do</strong> versus the value of your time, the sooner you can begin confidently scaling your rates as you see fit.  This is an important issue in web work, so keep an eye out for more posts on adding value to your work.</p>
<img src="http://feeds.feedburner.com/~r/SkylarAnderson/~4/mPysPDt2ORk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://goskylar.com/2009/07/the-strategy-of-pricing-freelance-web-work/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://goskylar.com/2009/07/the-strategy-of-pricing-freelance-web-work/</feedburner:origLink></item>
		<item>
		<title>Oh, so I made a blog.</title>
		<link>http://feedproxy.google.com/~r/SkylarAnderson/~3/Yxg-qkFndeA/</link>
		<comments>http://goskylar.com/2009/07/oh-so-i-made-a-blog/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 22:45:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://goskylar.com/?p=4</guid>
		<description><![CDATA[So yes, I created a blog.  Despite all odds, and in particular, despite the fact that I am outrageously busy working on projects that are yet to be seen. ]]></description>
			<content:encoded><![CDATA[<p>So yes, I created a blog.  Despite all odds, and in particular, despite the fact that I am outrageously busy working on projects that are yet to be seen.  Truth be told, it&#8217;s because of my constant busyness that I believe I can make what I do more valuable and more personal by making note and maybe even help others learn along the way.  I have learned a lot of odds and ends in my young (yet action packed) career as a Web Designer, Web Developer, and now UI developer.</p>
<h2>So why make a blog?</h2>
<p>I spend a lot of time monitoring web trends including (but not limited to) web design, web standards, PHP development (CodeIgniter of course), client side frameworks (Flex, Mootools, jQuery), social applications, and monetizing.  Much of what I discover will be discussed here.</p>
<h2>About this template</h2>
<p>I built the WP template rather quickly so there may be some UI bugs here and there.  I apologize in advance for that.  I would, however, like to thank Kyle Neath at <a href="http://warpspire.com/hemingway/" target="_blank">Warspire</a> for developing the wonderful theme Hemingway, which became the foundation for this template as it stands.  I think there is something to be said for a designer that can take risks with minimalism all the while maintaining elegance, so here I am with my attempt at minimalis elegance in this theme.</p>
<h2>So where&#8217;s your portfolio?</h2>
<p>The conception of this blog also signifies what I would call &#8220;career realignment&#8221;.   I am basically moving away from being a service provider, or freelancer, and instead I am moving towards living off a product-based business.  In the meantime, I am gainfully employed at a great company, ExactTarget.  So with no potential employers/clients to impress, I don&#8217;t see any purpose on keeping my portfolio online.  If you are still interested in seeing it, you may email me.</p>
<img src="http://feeds.feedburner.com/~r/SkylarAnderson/~4/Yxg-qkFndeA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://goskylar.com/2009/07/oh-so-i-made-a-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://goskylar.com/2009/07/oh-so-i-made-a-blog/</feedburner:origLink></item>
	</channel>
</rss>
