<?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>Woork Up</title>
	
	<link>http://woorkup.com</link>
	<description>A fresh charge of  creativity</description>
	<lastBuildDate>Thu, 19 Nov 2009 21:31:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Woork" type="application/rss+xml" /><feedburner:emailServiceId>Woork</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>jQuery Lesson Series: How to Implement Your First Plugin</title>
		<link>http://feedproxy.google.com/~r/Woork/~3/qZb3x2MvoS0/</link>
		<comments>http://woorkup.com/2009/11/19/jquery-lesson-series-how-to-implement-your-first-plugin/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 20:38:52 +0000</pubDate>
		<dc:creator>Bilal Çınarlı</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://woorkup.com/?p=1295</guid>
		<description><![CDATA[Building a jQuery plugin is relatively easy if you know the basics. In this article we are going to build a simple plugin which highlights (actually blinks) the link, paragraph, span or any text element on the page.]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/RUYlC3E50yjfj0p4yV6Ms_pDzbE/0/da"><img src="http://feedads.g.doubleclick.net/~a/RUYlC3E50yjfj0p4yV6Ms_pDzbE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/RUYlC3E50yjfj0p4yV6Ms_pDzbE/1/da"><img src="http://feedads.g.doubleclick.net/~a/RUYlC3E50yjfj0p4yV6Ms_pDzbE/1/di" border="0" ismap="true"></img></a></p><p><img src="http://woorkup.com/wp-content/uploads/2009/11/jquery-lesson-05.jpg" alt="jquery-lesson-05" title="jquery-lesson-05" width="658" height="100" class="alignnone size-full wp-image-1314" /></p>
<div class="adsense"></div>
<p>Building a jQuery plugin is relatively easy if you know the basics. In this article we are going to build a simple plugin which highlights (actually blinks) the link, paragraph, span or any text element on the page.<br />
<style type="text/css">a.blinking { color: green; } span.blinking { color: red; } p.blinking { color: blue; }</style>
<p><script type="text/javascript" src="http://woorkup.com/wp-content/tutorials/js/jql05.js"></script> For a printable reference guide to the jQuery API I suggest you to download this interesting <a href="http://woorkup.com/2009/09/26/jquery-1-3-visual-cheat-sheet/"> jQuery Visual Cheat Sheet</a> designed by Antonio Lupetti or take a look at the official <a href="http://docs.jquery.com/">jQuery documentation</a>.</p>
<h2>How to start implementing a plug-in</h2>
<p>First start with an empty jQuery plugin template.</p>
<div class="codex"><pre><code>(function($){
&nbsp;&nbsp;&nbsp;&nbsp;$.fn.woorkBlink = function(){
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// all plugin stuff will be here
&nbsp;&nbsp;&nbsp;&nbsp;};
})(jQuery);</code></pre></div>
<p>I always start with this structure and fill the blanks as the building goes on. In details, first and last lines are for registering our plugin to jQuery. Our actual plugin starts with the second line. <em><code>$.fn.woorkBlink</code></em> defines the plugin name. So you can call it as <em><code>$(target).woorkBlink();</code></em>.</p>
<p>After naming the plugin, we need to find all target elements in our page by using <a href="http://docs.jquery.com/Core/each">each()</a> function. <em><code>each()</code></em> executes the called function for every target element in the page.</p>
<div class="codex"><pre><code>return this.each(function(){
&nbsp;&nbsp;&nbsp;&nbsp;var $e = $(this);
});</code></pre></div>
<p>where <em><code>$(this)</code></em> means the target elements in the page and by defining a variable <code>$e</code>, we call the target element freely everywhere in the plugin. This finishes the needed setup for plugin. Now lets blink our texts.</p>
<p>Blinking is a repeating action which executes a certain function in a defined time interval, lets say in every 1.5 seconds. We need to simply create a function which adds a &#8216;blinking&#8217; class to the target element, then waits for half of our interval and removes the &#8216;blinking&#8217; class to complete the action. Then we repeat the function in every 1.5 seconds with <a href="http://www.w3schools.com/jsref/met_win_setinterval.asp">setInterval()</a> function. setInterval() function&#8217;s usage is like this</p>
<div class="codex"><code>setInterval(your_function_to_execute(), time_interval_in_milliseconds);</code></div>
<p>Here is the jQuery code what we are trying to do.</p>
<div class="codex"><pre><code>setInterval(function(){
&nbsp;&nbsp;&nbsp;&nbsp;$e.addClass(&#039;blinking&#039;).animate({ opacity: 100 }, 750).queue(function(){
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$e.removeClass(&#039;blinking&#039;);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$e.dequeue();
&nbsp;&nbsp;&nbsp;&nbsp;});
&nbsp;&nbsp;&nbsp;&nbsp;},
1500);</code></pre></div>
<p><a href="http://woorkup.com/author/admin/">Antonio</a> previousy mentioned about <code>addClass()</code>, <code>removeClass()</code> functions in <a href="http://woorkup.com/2009/11/06/jquery-lessons-series-manipulate-css-classes/">Manipulating CSS Classes</a> lesson and <code>animate()</code> function in <a href="http://woorkup.com/2009/10/22/jquery-lessons-series-how-to-implement-animations-of-css-properties/">this</a> lesson. But the usage of <code>animate()</code> function is a bit different in here. I used it for only nothing but the waiting for 750 milliseconds.</p>
<p>There are two new functions which we were not mentioned previously, <code>queue()</code> and <code>dequeue()</code>.  <code>The queue()</code> function, queues and waits the execution of functions until the end of previous actions. In our example, <code>queue()</code> function waits to removing &#8216;blinking&#8217; class until the a<code>animate()</code> function finished, and by d<code>dequeue()</code>, we removed our actions from the queue.</p>
<p>Overall code for the plugin is as follows;</p>
<div class="codex"><pre><code>(function($){
&nbsp;&nbsp;&nbsp;&nbsp;$.fn.woorkBlink = function(){
&nbsp;&nbsp;&nbsp;&nbsp;return this.each(function(){

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var $e = $(this);

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;setInterval(function(){
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$e.addClass(&#039;blinking&#039;).animate({ opacity: 100 }, 750).queue(function(){
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$e.removeClass(&#039;blinking&#039;);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$e.dequeue();
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; });
&nbsp;&nbsp;&nbsp;&nbsp;},
1500);
});
};
})(jQuery);</code></pre></div>
<p>To spicing up our effect, add some css for different text elements like</p>
<div class="codex"><pre><code>a.blinking { color: green; }
span.blinking { color: red; }
p.blinking { color: blue; }</code></pre></div>
<p>Resulting a blinking link will have green color, text will have red and a paragraph will blue color. The final html will look like.</p>
<p>Here is the CSS code:</p>
<div class="codex"><pre><code>a { color: black;&nbsp;&nbsp;}
a.blinking { color: green; }
span.blinking { color: red; }
p.blinking { color: blue; }</code></pre></div>
<p>Here is the JavaScript code:</p>
<div class="codex"><pre><code>$(function(){
&nbsp;&nbsp;&nbsp;&nbsp;$(&quot;.highlight&quot;).woorkBlink();
});

(function($){
$.fn.woorkBlink = function(){
return this.each(function(){

&nbsp;&nbsp;&nbsp;&nbsp;var $e = $(this);

&nbsp;&nbsp;&nbsp;&nbsp;setInterval(function(){
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$e.addClass(&#039;blinking&#039;).animate({ opacity: 100 }, 750).queue(function(){
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$e.removeClass(&#039;blinking&#039;);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$e.dequeue();
&nbsp;&nbsp;&nbsp;&nbsp; });
},
1500);
});
};

})(jQuery);</code></pre></div>
<p>and here is the HTML code:</p>
<div class="codex"><pre><code>&lt;a href=&quot;http://woorkup.com&quot; class=&quot;highlight&quot;&gt;Woork Up&lt;/a&gt;

&lt;span class=&quot;highlight&quot;&gt;This is a blinking text&lt;/span&gt;
&lt;span&gt;This is a normal text&lt;/span&gt;

&lt;p class=&quot;highlight&quot;&gt;Woork Up is a web community about Web Design, 
Tech News and Digital Inspiration with tutorials, code snippets, reviews 
of products and services for web designers and developers, and daily fresh 
news provided by users. Woork Up is currently available by invite only. 
&lt;span class=&quot;highlight&quot;&gt;This is a blinking text inside a blinking 
paragraph&lt;/span&gt;.&lt;/p&gt;</code></pre></div>
<p>where all text elements with a <code>highlight</code> class blink by changing their color.</p>
<h2>Demo</h2>
<p><a href="http://woorkup.com" class="highlight">Woork Up</a></p>
<p><span class="highlight">This is a blinking text</span><br />
<span>This is a normal text</span></p>
<p class="highlight">Woork Up is a web community about Web Design,<br />
Tech News and Digital Inspiration with tutorials, code snippets, reviews<br />
of products and services for web designers and developers, and daily fresh<br />
news provided by users. Woork Up is currently available by invite only.<br />
<span class="highlight">This is a blinking text inside a blinking<br />
paragraph</span>.</p>

<div style="font-size:0px;height:0px;line-height:0px;margin:0;padding:0;clear:both"></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Woork?a=qZb3x2MvoS0:NYQgM4t9R1c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Woork?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=qZb3x2MvoS0:NYQgM4t9R1c:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Woork?i=qZb3x2MvoS0:NYQgM4t9R1c:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=qZb3x2MvoS0:NYQgM4t9R1c:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Woork?i=qZb3x2MvoS0:NYQgM4t9R1c:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=qZb3x2MvoS0:NYQgM4t9R1c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Woork?i=qZb3x2MvoS0:NYQgM4t9R1c:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=qZb3x2MvoS0:NYQgM4t9R1c:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Woork?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Woork/~4/qZb3x2MvoS0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://woorkup.com/2009/11/19/jquery-lesson-series-how-to-implement-your-first-plugin/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		<feedburner:origLink>http://woorkup.com/2009/11/19/jquery-lesson-series-how-to-implement-your-first-plugin/</feedburner:origLink></item>
		<item>
		<title>Typographic Inspiration from TypeGoodness</title>
		<link>http://feedproxy.google.com/~r/Woork/~3/LOV-jam3uhQ/</link>
		<comments>http://woorkup.com/2009/11/18/font-type-inspiration-from-typegoodness/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 21:15:33 +0000</pubDate>
		<dc:creator>Graham Smith</dc:creator>
				<category><![CDATA[Tech News]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://woorkup.com/?p=1272</guid>
		<description><![CDATA[I only discovered TypeGoodness a few weeks ago, yet it is now become one of my most visited websites. Frequent updates, with articles covering many aspects of font and typography. An excellent variety of topics with the occasional free font for good measure.]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/yueWdi3Xd2ikYDBoJ0qPYRtnQQE/0/da"><img src="http://feedads.g.doubleclick.net/~a/yueWdi3Xd2ikYDBoJ0qPYRtnQQE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/yueWdi3Xd2ikYDBoJ0qPYRtnQQE/1/da"><img src="http://feedads.g.doubleclick.net/~a/yueWdi3Xd2ikYDBoJ0qPYRtnQQE/1/di" border="0" ismap="true"></img></a></p><p><img src="http://woorkup.com/wp-content/uploads/2009/11/typegoodness.jpg" alt="typegoodness" title="typegoodness" width="658" height="300" class="alignnone size-full wp-image-1289" /></p>
<div class="adsense"></div>
<p>Type and Font Inspiration from TypeGoodness &#8211; I only discovered <a title="TypeGoodness Website" href="http://typegoodness.com/" target="_blank" rel="nofollow">TypeGoodness</a> a few weeks ago, yet it is now become one of my most visited websites. Frequent updates, with articles covering many aspects of font and typography. An excellent variety of topics with the occasional free font for good measure.<br />
Just when you thought you had an adequate selection of typographic and font related RSS feeds, new sites pop up without mercy. The incredible thing with the Internet is that there are so many doors still waiting to be unopened, by new unsuspecting people. Visit one new website, check out their blog roll and you nearly always find that next new &#8216;gem&#8217;. I make it my ritual, when I visit a brand new website or blog, to check out their recommended links or &#8216;friends blog roll&#8217;. It&#8217;s a great way to find those &#8216;underground&#8217; or &#8216;niche&#8217; websites and blogs.</p>
<p>This is how I came across <strong>Typegoodness</strong>. For the life of me I cannot recall with path lead me to find it, but I know it was through checking out the links recommended on other sites. And I realise it&#8217;s not a &#8216;new&#8217; site per sai, and I am also sure many of you already have been aware of it. But for those that have not, I know you will enjoy it as much as I do.</p>
<p>I have linked back to <a title="TypeGoodness Website" href="http://typegoodness.com/" target="_blank" rel="nofollow">TypeGoodness</a> a number of times now on both my own website, <a title="UK Logo and Brand Identity Designer" href="http://imjustcreative.com/" target="_blank">ImJustCreative</a> and my <a title="ImJustCreative Tumblr Blog" href="http://imjustcreative.tumblr.com/" target="_blank">Tumblr</a> and <a title="ImJustCreative Posterous Blog" href="http://imjustcreative.posterous.com/" target="_blank">Posterous</a> blogs.</p>
<h2>About TypeGoodness</h2>
<p>From the horses mouth so to speak: Typegoodness was created by Frederik Samuel to focus on all the beautiful typography around the world. This is a showcase, as well as a resource of inspiration and finding anything related to type. We cover anything from Digital, to Print, to showcasing free fonts.<br />
You can also find TypeGoodness on <a title="TypeGoodness Twitter" href="http://twitter.com/typegoodness" target="_blank" rel="nofollow">Twitter</a></p>
<h2>Submit Articles</h2>
<p>As well as just reading articles, you can also sign-up to TypeGoodness and post your own articles. I have not yet done this, so am unsure about how easy it is to do so. But it&#8217;s something that could be worth checking out if tend to find new typographic treasures and like to share them with everyone else. If you have not yet visited <a title="TypeGoodness Website" href="http://typegoodness.com/" target="_blank" rel="nofollow">TypeGoodness</a>, then it could be worth doing. A healthy dose of archived posts will keep you busy for a while whilst you catch up.</p>

<div style="font-size:0px;height:0px;line-height:0px;margin:0;padding:0;clear:both"></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Woork?a=LOV-jam3uhQ:xuP8sawccLM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Woork?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=LOV-jam3uhQ:xuP8sawccLM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Woork?i=LOV-jam3uhQ:xuP8sawccLM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=LOV-jam3uhQ:xuP8sawccLM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Woork?i=LOV-jam3uhQ:xuP8sawccLM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=LOV-jam3uhQ:xuP8sawccLM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Woork?i=LOV-jam3uhQ:xuP8sawccLM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=LOV-jam3uhQ:xuP8sawccLM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Woork?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Woork/~4/LOV-jam3uhQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://woorkup.com/2009/11/18/font-type-inspiration-from-typegoodness/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://woorkup.com/2009/11/18/font-type-inspiration-from-typegoodness/</feedburner:origLink></item>
		<item>
		<title>Four reasons why new websites flop</title>
		<link>http://feedproxy.google.com/~r/Woork/~3/SsvnmWOkUK8/</link>
		<comments>http://woorkup.com/2009/11/18/four-reasons-why-new-websites-flop/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 20:49:46 +0000</pubDate>
		<dc:creator>Marc Hindley</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[how-to]]></category>

		<guid isPermaLink="false">http://woorkup.com/?p=1258</guid>
		<description><![CDATA[Websites are bringing in more and more businesses to companies which are feeling the pinch of the global recession. And new companies are realising that a website is as important, if not more so than every other aspect of their business. But it pays to get it right. Following these four principles will help you generate a more successful website.]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/_qsEWCSdRcmNT1UNih-wRUkvo1c/0/da"><img src="http://feedads.g.doubleclick.net/~a/_qsEWCSdRcmNT1UNih-wRUkvo1c/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_qsEWCSdRcmNT1UNih-wRUkvo1c/1/da"><img src="http://feedads.g.doubleclick.net/~a/_qsEWCSdRcmNT1UNih-wRUkvo1c/1/di" border="0" ismap="true"></img></a></p><div class="adsense"></div>
<p>Websites are bringing in more and more businesses to companies which are feeling the pinch of the global recession. And new companies are realising that a website is as important, if not more so, than every other aspect of their business. But it pays to get it right. </p>
<p>Following these four principles will help you generate a more successful website.</p>
<div style="text-align:center;"><img src="http://woorkup.com/wp-content/uploads/2009/11/nsf.gif" width="602" height="266"/></div>
<h2>Bad marketing</h2>
<p>Websites can fail in the same way as real-world businesses, but established businesses sometimes don&#8217;t have enough understanding of how websites work.<br />
Websites don&#8217;t sell themselves. Open a new bricks-and-mortar shop in the middle of town and you&#8217;ll get a few passers-by popping in to see something they&#8217;ve never seen before, but if they don&#8217;t actively promote themselves, they&#8217;re likely to go out of business very soon.<br />
The same is true with a website. Once a site is launched, and even before, active promotion is vital to its success.</p>
<div style="text-align:center;"><img src="http://woorkup.com/wp-content/uploads/2009/11/nsf1.gif" width="602" height="266"/></div>
<p><strong>Tips:</strong><br />
Make sure your marketing strategy promotes the website in advance of its launch. Have a pre-launch site on your domain, with incentives and calls to action, and actively get people to visit. An ISP&#8217;s default domain holding  page is a marketing disaster.<br />
Don&#8217;t spend all your budget on development and leave inadequate funds for marketing. Budget for a 50/50 split.<br />
Consider investing in in-house training for web-marketing skills such as article-submission, blogging, etc.<br />
Don&#8217;t make the mistake of thinking that adding your domain name to your stationery is enough.<br />
Remember off-line marketing will sometimes produce better results in some cases.</p>
<h2>Poor usability</h2>
<p>Poor usability is more important for new site because 100% of your visitors will be new to it. In the same way you wouldn&#8217;t litter your bricks-and-mortar shop with obstacles, don&#8217;t put any on your website, such as flash intros and unnecessary sign-up forms. Usability can be improved by in-house testing using friends and family, but you need to know what you&#8217;re looking for in a usability test. Colour appreciation isn&#8217;t one of them.</p>
<div style="text-align:center;"><img src="http://woorkup.com/wp-content/uploads/2009/11/nsf2.gif" width="602" height="266"/></div>
<p><strong>Tips:</strong><br />
Find out what people want from your site, that is the number one objective. Make sure the thing they want is easy to find. And I mean real easy.<br />
Remember, people will find it easier to walk out of your web shop than your real shop.<br />
Use your friends and family to help with usability testing. They are people, right?<br />
Don&#8217;t ask them what they think of the site. They will judge it as a work of art. Ask them to do things, then ask them &#8216;was it easy&#8217;, &#8216;did you get stuck&#8217;, etc.</p>
<h2>No confidence in your site</h2>
<p>A site must exude success and fulfillment. People will stay on your site if they feel confident that you can supply what they need. And they will spend their money when they have that confidence. Customers will be less likely to spend if anything breaks their confidence.</p>
<div style="text-align:center;"><img src="http://woorkup.com/wp-content/uploads/2009/11/nsf3.gif" width="602" height="266"></div>
<p><strong>Tips:</strong><br />
ALWAYS include information about your company under &#8216;About us&#8217; and contact details including phone number if you are selling on your site. If you hide your phone number, what else are you hiding?<br />
Make sure all your pages follow a consistent design and that buying pages don&#8217;t take you off to another site (trusted payment gateways excluded).<br />
Include promises such as <em>delivery within three days</em> or <em>price match</em>. Confidence improves when promises are stated.</p>
<h2>Somebody else does it better</h2>
<p>Research your market. Somebody else may already be doing what you do. They may have already gained the confidence in their customer. Will their customers suddenly switch to you? Your service must be better, faster, cheaper than your competitors.</p>
<div style="text-align:center;"><img src="http://woorkup.com/wp-content/uploads/2009/11/nsf4.gif" width="602" height="266"/></div>
<p><strong>Tips:</strong><br />
Have a unique selling point, such as free delivery. If your competitors are not doing free delivery, they may switch.<br />
Publish testimonials from satisfied cutomers. They are your best PR.<br />
Brand your product with your name. When people search for the product they will search for your brand.</p>

<div style="font-size:0px;height:0px;line-height:0px;margin:0;padding:0;clear:both"></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Woork?a=SsvnmWOkUK8:n79Ra0h3byU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Woork?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=SsvnmWOkUK8:n79Ra0h3byU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Woork?i=SsvnmWOkUK8:n79Ra0h3byU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=SsvnmWOkUK8:n79Ra0h3byU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Woork?i=SsvnmWOkUK8:n79Ra0h3byU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=SsvnmWOkUK8:n79Ra0h3byU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Woork?i=SsvnmWOkUK8:n79Ra0h3byU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=SsvnmWOkUK8:n79Ra0h3byU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Woork?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Woork/~4/SsvnmWOkUK8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://woorkup.com/2009/11/18/four-reasons-why-new-websites-flop/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://woorkup.com/2009/11/18/four-reasons-why-new-websites-flop/</feedburner:origLink></item>
		<item>
		<title>Exploring PHP Frameworks: CodeIgniter</title>
		<link>http://feedproxy.google.com/~r/Woork/~3/PYvoQ08C-DM/</link>
		<comments>http://woorkup.com/2009/11/17/exploring-php-frameworks-codeigniter/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 19:51:45 +0000</pubDate>
		<dc:creator>Stu Green</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://woorkup.com/?p=1234</guid>
		<description><![CDATA[A PHP framework is a platform which enables developers to quickly build web applications without having to re-invent the wheel every time they want to, for example, insert data securely in to a database. This article looks at CodeIgniter (http://codeigniter.com), an open-source PHP framework which in my opinion is fantastic.]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/7YktsDlUpNmwSNuYKV4rEn-oAJ4/0/da"><img src="http://feedads.g.doubleclick.net/~a/7YktsDlUpNmwSNuYKV4rEn-oAJ4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/7YktsDlUpNmwSNuYKV4rEn-oAJ4/1/da"><img src="http://feedads.g.doubleclick.net/~a/7YktsDlUpNmwSNuYKV4rEn-oAJ4/1/di" border="0" ismap="true"></img></a></p><p><img src="http://woorkup.com/wp-content/uploads/2009/10/php-framework-1.jpg"></p>
<div class="adsense"></div>
<p>I thought I would share with you my experience of PHP frameworks, and in particular a framework called CodeIgniter which I have been using a lot recently. A PHP framework is a platform which enables developers to quickly build web applications without having to re-invent the wheel every time they want to, for example, insert data securely in to a database. This article looks at <em>CodeIgniter</em> (<a href="http://codeigniter.com" rel="nofollow">http://codeigniter.com</a>), an open-source PHP framework which in my opinion is fantastic.</p>
<h2>The need for a framework</h2>
<p>I am an English web developer who has been in the business for over 10 years. I started my business when I was just 17 and started coding in PHP when I was 21. I built my first PHP web application, which was a search engine for musicians,  completely from scratch in 2003. It has since become a major success and I still proud of it, though when I look at the code I would love to re-build it knowing what I know today.</p>
<p>After working for many clients and after looking to try to develop my own ideas I soon realised that I was spending a lot of time re-producing the same code snippets on different sites. For example, by 2004-2005 I had written my own database interaction class as well as other functions which made life a lot easier when building websites, for example a function that formatted dates nicely.</p>
<p>This effectively was my own framework, but it suffered from not being very well organised and not very efficient. What I really needed was a tidy way of structuring my code, for example being able to separate my database interaction files from my view files which just dealt with logic (if statements) and the HTML. I had to wait a few years for the right solution.</p>
<h2>Making those little ideas become a reality</h2>
<p>I often get ideas for websites, some crazy and some simple. Most of them got written down and forgotten about because of the time required to build the ideas in to fully functioning websites. That was all until I discovered CodeIgniter in 2008. CodeIgniter in their own words: &#8220;is a powerful PHP framework with a very small footprint, built for PHP coders who need a simple and elegant toolkit to create full-featured web applications. If you&#8217;re a developer who lives in the real world of shared hosting accounts and clients with deadlines, and if you&#8217;re tired of ponderously large and thoroughly undocumented frameworks.&#8221;<br />
In other words it&#8217;s a solution that provides most of, if not all of the tools you need to build your ideas in to websites. After downloading CodeIgniter, looking at their demo tutorials and actually having a play with it myself, I was very impressed indeed and realised I could make my ideas become a reality in very little time.</p>
<h2>What about the other frameworks?</h2>
<p>Before I jump in to my own opinions about how wonderful CodeIgniter is, let&#8217;s take a moment to explore the other frameworks out there. I am aware that there will be developers reading this who do not share my views and believe that the framework they use is best for them. I need to just point out that my findings and experiences of the different PHP frameworks have lead me to believe that CodeIgniter is best for me in my situation, but might not necessarily be the best for you in your situation.</p>
<p>Other PHP frameworks I have come across are:</p>
<p><a href="http://www.symfony-project.org">Symfony</a> is a <em>very</em> powerful framework with functions for practically everything. I worked at an agency that used this framework and though I delved into it a little bit, I never fully could understand it (also the manual for Symfony was very big and heavy!). However it was just right for the website that it powered and I know that a lot of big and well known websites use Symfony. Symfony isn&#8217;t that easy to install and does have a steep learning curve.</p>
<p><a href="http://cakephp.org">CakePHP</a>, as far as I&#8217;m aware is very similar to CodeIgniter, so is easy to install and well documented. I have to say I haven&#8217;t tried CakePHP but would recommend you look also at this open-source framework as well as CodeIgniter if you want to make some comparisons between the two.</p>
<p><a href="http://framework.zend.com">Zend</a> in their own words, &#8220;is based on simplicity, object-oriented best practices, corporate friendly licensing,     and a rigorously tested agile codebase&#8221;. Zend is rather complicated and expects you to know quite a bit about coding, so is perfect for people who understood the previous sentence. Howerful Zend is also very powerful, widely used and supported by a large community.</p>
<p>Take also a look at this post: <a href="http://woorkup.com/2009/10/10/top-best-php-frameworks-to-build-quickly-complex-web-applications/">Best PHP Frameworks to build quickly complex web applications</a></p>
<h2>Designers who are also developers</h2>
<p>I don&#8217;t claim to be a hardcore PHP programmer and know plenty of programmers who are total experts in PHP. I would say that I&#8217;m more of a designer who became a developer. As a result of that I sometimes struggle trying to understand something like Zend or Symfony, as you found out above. What I needed was a framework that really explained everything clearly to me, was built specifically for people like me but also had a large community of users in the same boat as me.</p>
<p>I found CodeIgniter had all of these things. The minute I first landed on their website I knew that they had designed their framework with people like me in mind. After downloading and playing with CodeIgniter on my local machine I began to read their documentation and was worried that was where it would all end, but instead I found the documentation on their website really easy to understand and very clearly laid out.</p>
<p>I had soon built an idea that had been running around in my head in to a fully functional website, with user login, avatar upload, questions and answers submission and a very basic CMS. I built that entire website in a weekend, thanks to CodeIgniter. Every time I got stuck I simply searched the community forums, or asked a question and got a response very quickly, and that was only when I couldn&#8217;t find the answer I was looking for in the documentation, which was quite a rare occurence.</p>
<h2>Tidy code makes all the difference</h2>
<p>Tidy code, but also code you can re-use makes all the difference. CodeIgniter uses something called &#8220;MVC&#8221; which stands for &#8220;Model &#8211; View &#8211; Controller&#8221;. The idea behind this is you can separate your database functions (&#8221;model&#8221;), from your view files which contain your HTML (&#8221;view&#8221;), and link the two together (&#8221;controller&#8221;).</p>
<p>By using this practice your code is tidy and re-usable. For example, when building my questions &amp; answers website I could simply just copy and paste the database call which selected all my users, rename the table name in a single line of code, then I would instantly have another function which selected all the questions. By using their &#8220;Active Record&#8221; class, you can easily put a &#8216;where statement&#8217; in which only selects records from a certain category, for example.</p>
<p>After building one of my ideas in an entire website in just 3 days, I quickly found my dusty book of other old ideas and realised I could build these in to websites in very little time. How exciting!</p>
<h2>Just have fun!</h2>
<p>I suggest you download CodeIgniter, install it and have a play. Even if you don&#8217;t know much about PHP or programming I can guarantee that you will soon pick up enough of the basics that you will have a basic blog up and running in very little time, providing you follow their tutorials and documentation carefully.</p>
<p>Who knows, you might even end up putting your PHP developer that you hire in at a very expensive rate out of a job! Then again, if we all stick to what we are <em>really</em> good at doing, maybe not &#8211; but you can still have a lot of fun trying!</p>

<div style="font-size:0px;height:0px;line-height:0px;margin:0;padding:0;clear:both"></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Woork?a=PYvoQ08C-DM:F9bfBfmxkAA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Woork?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=PYvoQ08C-DM:F9bfBfmxkAA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Woork?i=PYvoQ08C-DM:F9bfBfmxkAA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=PYvoQ08C-DM:F9bfBfmxkAA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Woork?i=PYvoQ08C-DM:F9bfBfmxkAA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=PYvoQ08C-DM:F9bfBfmxkAA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Woork?i=PYvoQ08C-DM:F9bfBfmxkAA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=PYvoQ08C-DM:F9bfBfmxkAA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Woork?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Woork/~4/PYvoQ08C-DM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://woorkup.com/2009/11/17/exploring-php-frameworks-codeigniter/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		<feedburner:origLink>http://woorkup.com/2009/11/17/exploring-php-frameworks-codeigniter/</feedburner:origLink></item>
		<item>
		<title>No Hope for the Verizon iPhone</title>
		<link>http://feedproxy.google.com/~r/Woork/~3/nm_aJzfiUB0/</link>
		<comments>http://woorkup.com/2009/11/16/nope-hope-for-the-verizon-iphone/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 23:08:36 +0000</pubDate>
		<dc:creator>Lawrence Altaffer</dc:creator>
				<category><![CDATA[Tech News]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Sprint]]></category>
		<category><![CDATA[T-mobile]]></category>
		<category><![CDATA[Verizon]]></category>

		<guid isPermaLink="false">http://woorkup.com/?p=1238</guid>
		<description><![CDATA[Though there have been many rumors floating around for the past few years about Apple moving from the decidedly unstable and lethargic AT&#38;T network to the generally satisfying network of Verizon, I'm here to tell you it ain't gonna happen.  ]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/_xFs7IPTBpdJ9HnYEaK_6F0JE9A/0/da"><img src="http://feedads.g.doubleclick.net/~a/_xFs7IPTBpdJ9HnYEaK_6F0JE9A/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_xFs7IPTBpdJ9HnYEaK_6F0JE9A/1/da"><img src="http://feedads.g.doubleclick.net/~a/_xFs7IPTBpdJ9HnYEaK_6F0JE9A/1/di" border="0" ismap="true"></img></a></p><div class="adsense"></div>
<p>Though there have been many rumors floating around for the past few years about Apple moving from the decidedly unstable and lethargic AT&amp;T network to the generally satisfying network of Verizon, I&#8217;m here to tell you it ain&#8217;t gonna happen. As recently as two weeks ago rumors sprang up again this time with photos of  parts of what looks to be a smaller version of the iphone.  At the same time Verizon was in the middle of its advertising campaign slamming both AT&amp;T and the Apple iPhone. It immediately surprised me that these two things would be happening at the same time.  Would Apple really be ok with it&#8217;s hopeful future partner slamming its pride and joy? Doubtful.</p>
<p>Apple is well known for freezing out people who speak against it.  John Carmack, co-founder of ID Software, was quoted by the blog <a href="http://www.tuaw.com" target="_blank">TUAW</a> saying: &#8220;I&#8217;ll be invited up on stage for a keynote one month and then I&#8217;ll say something they don&#8217;t like and I can be blacklisted for six months.&#8221;</p>
<p>Even going back to the Intel relationship that took so long to cultivate, you can see how Apple&#8217;s hurt feelings and stubborn way of doing business ruffled feathers.  Much of this delay was caused by the ill-tempered words said between the two company heads.</p>
<p>Apple has proven that it&#8217;s partners will either play by their rules or not play at all.  Everyone should remember that Apple went to Verizon first with the plan of the iPhone. But Verizon acted like Verizon, never quick to adopt new and unproven handsets.  They passed and so Apple went to AT&amp;T.  Without even seeing the proto-type AT&amp;T agreed to Apple&#8217;s plan.  AT&amp;T was in need of some revenue and had faith in the-way-of-the-Jobs.</p>
<p>There is nothing to suggest that Apple has forgotten the snub by Verizon and at this point there is no real reason for Apple to partner with Verizon. There are other options.  Both Sprint and T-mobile would certainly benefit more than Verizon by getting the next generation iPhone.</p>
<p>Sprint has the leading 4G network and has committed to moving past 3G in a major way with their WIMAX network.  They also have reasonable all-you-can-eat plans in place and have shown they are willing to take risky steps in order to separate themselves from the competition.  If Sprint was to get the iPhone they would almost certainly be propelled into the front past AT&amp;T.  Sprint would, of course, have to avoid the same pitfalls that befell AT&amp;T.  Spotty network coverage, even in highly populated areas, being the biggest factor.  If they don&#8217;t then both Apple and Sprint could see a large backlash from unhappy customers that may have just switched from AT&amp;T hoping that Apple had finally found a fitting network provider for their beloved handheld.</p>
<p>T-mobile, in my opinion, has the most potential for not only improving its customer base and market share here in the US, but also for improving the iPhone itself.  T-mobile has just unveiled a new set of all-you-can-eat plans that are advertised at starting at half the price of its competitors and with any luck would be able to create a similarly competitive plan for the iPhone.  I would hope that Apple would seriously consider building in UMA capabilities so that iPhone could work like the UMA BlackBerry&#8217;s that T-mobile already runs.  T-mobile might be the only cell network provider that is not afraid of letting their customers use open Wi-Fi networks to take calls, thus not using their allotted minutes. This feature would also help eliminate the argument about T-mobile&#8217;s less than amazing coverage area. Even rural areas have Wi-Fi.  Imagine an iPhone that automatically switched to using the Wi-Fi network of your office or home and no longer cost you precious minutes&#8230;.ah, what a wonderful dream. T-mobile is huge in the rest of the world and is hungry to capture more of the US market. Getting the iPhone on their side would be a massive win for the company.</p>
<p>Both Sprint and T-mobile would also be more likely to let Apple be Apple and control what it wants to control. Verizon has recently been quoted as saying that they are still hungry for the iPhone, and there is no doubt that the iPhone would benefit from its pre-existing network.  But Verizon should have done their homework and focused their ads on the AT&amp;T and not the Apple iPhone.</p>
<p>Now, with all that said, I will admit that Apple has a tendency for misdirection and proven the power of rumors, especially rumors that last for years, to create frothing early adopters, but I don&#8217;t see them playing nice with Verizon anytime soon.  Apple has the power to choose and to bend its partner&#8217;s into the shape that they want.  Verizon has been and continues to be a very rigid company who is known for not bending to any imposed will.</p>

<div style="font-size:0px;height:0px;line-height:0px;margin:0;padding:0;clear:both"></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Woork?a=nm_aJzfiUB0:2wj4D4Xm1uE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Woork?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=nm_aJzfiUB0:2wj4D4Xm1uE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Woork?i=nm_aJzfiUB0:2wj4D4Xm1uE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=nm_aJzfiUB0:2wj4D4Xm1uE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Woork?i=nm_aJzfiUB0:2wj4D4Xm1uE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=nm_aJzfiUB0:2wj4D4Xm1uE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Woork?i=nm_aJzfiUB0:2wj4D4Xm1uE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=nm_aJzfiUB0:2wj4D4Xm1uE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Woork?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Woork/~4/nm_aJzfiUB0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://woorkup.com/2009/11/16/nope-hope-for-the-verizon-iphone/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://woorkup.com/2009/11/16/nope-hope-for-the-verizon-iphone/</feedburner:origLink></item>
		<item>
		<title>Useful Tips Every Web Designer Should Know About SEO</title>
		<link>http://feedproxy.google.com/~r/Woork/~3/hPrlYAXeaNI/</link>
		<comments>http://woorkup.com/2009/11/16/useful-tips-every-web-designer-should-know-about-seo/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 22:10:52 +0000</pubDate>
		<dc:creator>Antonio Fullone</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://woorkup.com/?p=1242</guid>
		<description><![CDATA[I have worked as web designer and <em>SEO</em>, then I realized how important is, for a web designer, have  at least, a basic knowledge of SEO. How many web designers, when are working on a layout, thinks about SEO?  How many web designers really know the importance of the Page Rank? How many know that the massive use of Ajax can affect, negatively, the ranking of a page? This post is a roundup of simple and useful tips about SEO that every web designer should know.]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/3tqlGPb3kgAoWlLFrMfGBZ5GpQI/0/da"><img src="http://feedads.g.doubleclick.net/~a/3tqlGPb3kgAoWlLFrMfGBZ5GpQI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/3tqlGPb3kgAoWlLFrMfGBZ5GpQI/1/da"><img src="http://feedads.g.doubleclick.net/~a/3tqlGPb3kgAoWlLFrMfGBZ5GpQI/1/di" border="0" ismap="true"></img></a></p><div class="adsense"></div>
<p>In the process of developing a web site, there are many professional profiles that  work on it, one of these is the <em>SEO</em> profile (Search Engine Optimization). If you are working in a web agency, usually there&#8217;s a professional profile that works only on search engine optimization, giving you the freedom to work with image editing, (x)html and css. But if you are a freelance, then you should spare money and do this your self.</p>
<p>I have worked as web designer and <em>SEO</em>, then I realized how important is, for a web designer, have  at least, a basic knowledge of SEO. How many web designers, when are working on a layout, thinks about SEO?  How many web designers really know the importance of the Page Rank? How many know that the massive use of Ajax can affect, negatively, the ranking of a page?</p>
<p>Yes, I think that every web designer, or developer, should know SEO. Ok you don&#8217;t need to know all the &#8220;secrets&#8221; behind the search engine optimization, but have a basic knowledge of SEO can help you in your freelance (and not only) work and receive more praises  from your client.</p>
<p>Explain SEO in just a post is impossible, so I made a <strong>list</strong> of <strong>tips</strong>, <strong>tools</strong> and suggestion for a good optimization of a web page , that every one can do although is not a SEO.</p>
<h2>Use Google Webmaster Tools</h2>
<p><img src="http://woorkup.com/wp-content/uploads/2009/11/webmaster_central_logo.gif" alt="Webmaster Central Logo" title="Webmaster Central Logo" width="314" height="40" style="float:right; margin-left:14px;"/>This is a must! The <a href="http://www.google.com/webmasters/">Google Webmaster Central</a> is the best tools to help you improve the ranking of your websites. You can submit your sitemaps (xml), monitor your websites, keywords, ranking, and a lots of other factors that affect the ranking of a page. If you make web sites I really suggest you to register a google account and start using it.</p>
<h2>Find the right keywords</h2>
<p>Find the right keywords to optimize your web site ins the mainly part of the <em>SEO workflow</em>. Usually the suggestion comes from the customers, but in internet you can find a lots of tools that helps you to find the right keywords,one of this is the <em>AdWords keywords tool</em>.<br />
<img src="http://woorkup.com/wp-content/uploads/2009/11/seo2.gif" width="658" height="346"/><br />
This tool is used a lots from the SEO for find the right keywords, for use this tool must have a Google AdWords account (you can use your google webmaster tool account).</p>
<p>The tools help yu to choose the right keywords, analyze the trends, or you can also use  the<a href="http://www.google.com/sktool/#"> search-based keyword tool</a></p>
<h2>Keywords or keyphrases?</h2>
<p>The SEO world is always in changing, or better said, evolution, with the definitive die of the meta keywords&#8217;s importance, and the &#8220;evolution&#8221; of the internet user, the keyphrases are always more used and for my projects I prefer optimize for keyphrases and not for just only words. Here some further readers about this question:</p>
<p><a href="http://www.ucanseo.com/OnPageSEO/SEOKeywordandSEOKeyPhraseSelection.aspx" rel="nofollow">Keywords and Keyphrases</a><br />
<a href="http://www.quantawebdesign.com/tips/niches.html" rel="nofollow">Identify Your Niche and Targeted Keywords</a></p>
<h2>Choose the right domain</h2>
<p>The domain name is really  important, or better is important to have at least one key in your domain name. This will  increase your rank for the related key. So, try to choose the domain thinking about the key you will go to use for promote the web site. Here some further readers:</p>
<p><a href="http://www.seomoz.org/blog/how-to-choose-the-right-domain-name" rel="nofollow">12 Rules for Choosing the Right Domain Name</a><br />
<a href="http://www.entrepreneur.com/ebusiness/gettingstarted/article199478.html" rel="nofollow">Choose the Right Domain Name</a><br />
<a href="http://www.smashingmagazine.com/2009/05/02/the-effective-strategy-for-choosing-right-domain-names/" rel="nofollow">The effective strategy for choosing right domain names</a></p>
<h2>Google trends</h2>
<p>Google trends is a good way to monitoring the of the search trends evolution located for country.</p>
<p><img src="http://woorkup.com/wp-content/uploads/2009/11/seo4.gif" width="658" height="429"/></p>
<h2>Title tag</h2>
<p>The tag title is the most important tag, the keyword or keyphrase should be in the title. The title  should not be  more than 60 characters (some one say&#8230; ) and describe the page, the relevance of a keyword in the title is really important for all the most used search engines.</p>
<p><img src="http://woorkup.com/wp-content/uploads/2009/11/seo3.gif" width="658" height="334"/></p>
<h2>Keywords Tag</h2>
<p>As <a href="http://googlewebmastercentral.blogspot.com/2009/09/google-does-not-use-keywords-meta-tag.html" rel="nofollow">Google confirmed</a>, but this was already known, the meta tags keywords is not relevant for ranking, The meta tag <em>keywords</em> is useless.</p>
<h2>Description Tag</h2>
<p>The description tag is really important! Yes, I know,  is not important for increase  for the ranking, this is true, but is what google show in the SERP, if the page has not description tag, the bot will take the first part of text, so can&#8217;t be good.</p>
<p><img src="http://woorkup.com/wp-content/uploads/2009/11/seo1.gif" width="658" height="334"/></p>
<p>Write a brief but good description, for each page, trying in a few words to describe the purpose of page. So is not important for your ranking, but, of course is a tag that you should consider for increase and attract more   visitors.</p>
<h2>Layout and SEO</h2>
<p>Can a layout affect the ranking? yes, take care when you are designing a layout and remember always the first SEO rule: <strong>content is the king</strong>. </p>
<p><img src="http://woorkup.com/wp-content/uploads/2009/11/2-columns-layout.gif" width="337" height="223" style="float:right;"/>The classical two columns blog layout is a perfect layout for SEO! Gives to the content the priority , and in the source code too,  and the sidebar is after the content. This is one of the lots of reason that make WordPress a really friendly search engine blog.</p>
<h2>Write semantic  and correct code</h2>
<p>Write semantic and validated source code help the <em>crawler</em> to better read and interpret the page. Have a validate source code and semantic code help to increase the ranking, of course.</p>
<p>Div&#8217;s <em><code>id</code></em> and <em><code>class</code></em> names are important and relevant, try always to use the right and correct name for this, for example use:</p>
<div class="codex"><code>&lt;div id=&quot;header&quot;&gt;&lt;/div&gt;</code></div>
<p>rather than:</p>
<div class="codex"><code>&lt;div id=&quot;head&quot;&gt;&lt;/div&gt;</code></div>
<p>For the navigation bar use the following code:</p>
<div class="codex"><code>&lt;div id=&quot;nav&quot;&gt;&lt;/div&gt;</code></div>
<p>rather than:</p>
<div class="codex"><code>&lt;div id=&quot;menu&quot;&gt;&lt;/div&gt;</code></div>
<p>Use the alt for the images, put a brief description of the picture or the name and use the <em><code>&lt;ul&gt;</code></em> tag for menu:</p>
<div class="codex"><pre><code>&lt;ul&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href=&quot;#&quot;&gt;text link&lt;/a&gt;&lt;/li&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href=&quot;#&quot;&gt;text link&lt;/a&gt;&lt;/li&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href=&quot;#&quot;&gt;text link&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</code></pre></div>
<p>Use <code>header</code>, <code>h1</code>, <code>h2</code>, <code>h3</code>, <code>em</code> (emphasis)  and <code>bold</code> for keywords. This doesn&#8217;t mean that you have to apply a bold to each words in the contents, but rather means that you have to write simply the text applying the right format to a paragraph. <em><code>h1</code></em> is a title, you shouldn&#8217;t use it for a entire paragraph, or you shouldn&#8217;t use a <code>span</code> tag for a menu list as above.</p>
<p>Create a good internal links structure, linking the pages and use the anchor text in the link for keywords.</p>
<div class="codex"><code>&lt;a href=&quot;about&quot; title=&quot;short bio about Antonio Fullone&quot;&gt;Antonio Fullone bio&lt;/a&gt;</code></div>
<p>The <em>anchor text</em> is really important, the title attribute too. Try always, when is possible, to link the pages and put the keywords in the anchor.</p>
<p>Take also a look at this <a href="http://woorkup.com/2009/10/12/fast-paper-no-01-html-quick-guidelines/">Fast Paper</a> with some useful HTML quick guidelines:</p>
<p><img src="http://woorkup.com/wp-content/uploads/2009/10/fp-b.jpg"></p>
<h2>The speed</h2>
<p>A quickly load help the bot in the process of  indexing the page in his database, a clean source code,  image compressing and external request affect the speed of the web site and the indexing from the bot.</p>
<h2>Avoid splash page</h2>
<p>If is not necessary avoid the splash page.</p>
<h2>Flash and Ajax</h2>
<p>A massive use of Flash, or Ajax can decrease the ranking, so pay attention to not abuse of this technologies.</p>
<h2>Conclusion</h2>
<p>This post is just an overview about <strong>SEO</strong>. A post can&#8217;t be enough to explain the multitude of this &#8220;world&#8221;, what is SEO and how apply it at your pages. but I hope after this reader that you, if you didn&#8217;t, take care about <strong>SEO</strong> when start a new project. And for finish a collection of plugins, software and tools for <strong>SEO</strong>.</p>
<h2>Plugin and Addons.</h2>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/3036" rel="nofollow">SEO quake extension</a><br />
<a href="http://tools.seobook.com/firefox/rank-checker/" rel="nofollow">Rank Checker</a><br />
<a href="http://tools.seobook.com/seo-toolbar/" rel="nofollow">SEO Toolbar</a><br />
<a href="http://www.rankquest.com/download-toolbar.html" rel="nofollow">RankQuest SEO toolbar</a><br />
<a href="http://seopen.com/firefox-extension/index.php" rel="nofollow">SEO Open</a><br />
<a href="http://developer.yahoo.com/yslow/" rel="nofollow">Yslow for Firebug</a><br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/2279" rel="nofollow">Niche Watch Tool 2.0</a><br />
<a href="http://chrispederick.com/work/user-agent-switcher/" rel="nofollow">User Agent Switcher</a></p>
<h2>Software</h2>
<p><a href="http://www.webceo.com/" rel="nofollow">Web Ceo</a><br />
<a href="http://www.link-assistant.com/" rel="nofollow">Link assistant</a></p>
<h2>Tools online</h2>
<p><a href="http://www.google.com/webmasters/" rel="nofollow">Google Webmasters central</a><br />
<a href="http://www.google.com/analytics/" rel="nofollow">Google Analytics</a><br />
<a href="http://www.seomoz.org/tools" rel="nofollow">Seomoz tools</a><br />
<a href="http://www.seocompany.ca/tool/seo-tools.html" rel="nofollow">136 SEO tools</a><br />
<a href="http://www.seochat.com/seo-tools/" rel="nofollow">SEO chat tools</a><br />
<a href="http://www.avangate.com/articles/online-seo-tools_79.htm" rel="nofollow">68 Online SEO Tools and Resources</a><br />
<a href="http://www.iwebtool.com/multirank" rel="nofollow">Multi rank checker</a><br />
<a href="http://www.webuildpages.com/seo-tools/keyword-density/" rel="nofollow">Key word density analysis tool</a></p>

<div style="font-size:0px;height:0px;line-height:0px;margin:0;padding:0;clear:both"></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Woork?a=hPrlYAXeaNI:hyFxRL6iREA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Woork?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=hPrlYAXeaNI:hyFxRL6iREA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Woork?i=hPrlYAXeaNI:hyFxRL6iREA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=hPrlYAXeaNI:hyFxRL6iREA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Woork?i=hPrlYAXeaNI:hyFxRL6iREA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=hPrlYAXeaNI:hyFxRL6iREA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Woork?i=hPrlYAXeaNI:hyFxRL6iREA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=hPrlYAXeaNI:hyFxRL6iREA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Woork?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Woork/~4/hPrlYAXeaNI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://woorkup.com/2009/11/16/useful-tips-every-web-designer-should-know-about-seo/feed/</wfw:commentRss>
		<slash:comments>48</slash:comments>
		<feedburner:origLink>http://woorkup.com/2009/11/16/useful-tips-every-web-designer-should-know-about-seo/</feedburner:origLink></item>
		<item>
		<title>Win a Google Wave Invite with woorkup.com</title>
		<link>http://feedproxy.google.com/~r/Woork/~3/qdd09Hf68Pk/</link>
		<comments>http://woorkup.com/2009/11/15/win-a-google-wave-invite-with-woorkup-com/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 21:17:55 +0000</pubDate>
		<dc:creator>Antonio Lupetti</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Products]]></category>

		<guid isPermaLink="false">http://woorkup.com/?p=1196</guid>
		<description><![CDATA[We have <em>8 invites</em> for Google Wave! If you want to receive an invite the only thing you have to do is to leave here an original comment about Woork Up and retweet this post! Simple, no?]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/fdM-EIOnmAitQ7msPlxxVxKyX34/0/da"><img src="http://feedads.g.doubleclick.net/~a/fdM-EIOnmAitQ7msPlxxVxKyX34/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/fdM-EIOnmAitQ7msPlxxVxKyX34/1/da"><img src="http://feedads.g.doubleclick.net/~a/fdM-EIOnmAitQ7msPlxxVxKyX34/1/di" border="0" ismap="true"></img></a></p><p><img src="http://woorkup.com/wp-content/uploads/2009/11/google-wave.jpg" alt="Google Wave" title="Google Wave" width="176" height="150" style="float:right; margin-left:14px,"/>Good news: we have <em>8 invites</em> for Google Wave! If you want to receive an invite the only thing you have to do is to leave here an original comment about Woork Up and retweet this post! Simple, no? </p>
<p>Remember to <a href="http://feeds2.feedburner.com/Woork">subscribe our Rss Feed</a> and <a href="http://www.twitter.com/woork">follow us on Twitter</a> to be update about the winners! For my Facebook friends <a href="http://www.facebook.com/antoniolupetti">here is my profile</a>. Good Luck!</p>

<div style="font-size:0px;height:0px;line-height:0px;margin:0;padding:0;clear:both"></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Woork?a=qdd09Hf68Pk:6TcJaGTMm-s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Woork?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=qdd09Hf68Pk:6TcJaGTMm-s:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Woork?i=qdd09Hf68Pk:6TcJaGTMm-s:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=qdd09Hf68Pk:6TcJaGTMm-s:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Woork?i=qdd09Hf68Pk:6TcJaGTMm-s:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=qdd09Hf68Pk:6TcJaGTMm-s:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Woork?i=qdd09Hf68Pk:6TcJaGTMm-s:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=qdd09Hf68Pk:6TcJaGTMm-s:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Woork?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Woork/~4/qdd09Hf68Pk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://woorkup.com/2009/11/15/win-a-google-wave-invite-with-woorkup-com/feed/</wfw:commentRss>
		<slash:comments>83</slash:comments>
		<feedburner:origLink>http://woorkup.com/2009/11/15/win-a-google-wave-invite-with-woorkup-com/</feedburner:origLink></item>
		<item>
		<title>How to Design Call-to-Action Buttons with Photoshop</title>
		<link>http://feedproxy.google.com/~r/Woork/~3/twCqTsgayoI/</link>
		<comments>http://woorkup.com/2009/11/15/how-to-design-call-to-action-buttons-with-photoshop/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 20:43:47 +0000</pubDate>
		<dc:creator>Antonio Lupetti</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[how-to]]></category>

		<guid isPermaLink="false">http://woorkup.com/?p=1184</guid>
		<description><![CDATA[This post illustrates how to design simple call-to-action buttons (inspired to Woork Up buttons you can find on the home page) using Photoshop.]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/bOKy_4cuFBOPLDiiG5gfdPvoz3c/0/da"><img src="http://feedads.g.doubleclick.net/~a/bOKy_4cuFBOPLDiiG5gfdPvoz3c/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/bOKy_4cuFBOPLDiiG5gfdPvoz3c/1/da"><img src="http://feedads.g.doubleclick.net/~a/bOKy_4cuFBOPLDiiG5gfdPvoz3c/1/di" border="0" ismap="true"></img></a></p><div class="adsense"></div>
<p>This post illustrates how to design simple call-to-action buttons (inspired to Woork Up buttons you can find on the home page) using Photoshop. I prepared a Photoshop file you can <a href="http://woorkup.com/wp-content/uploads/2009/11/calltoaction.psd.zip">download</a> and reuse on your design projects. I hope you&#8217;ll find useful!</p>
<h2>Design the background shape</h2>
<p>Create a new layer and add a new shape using the shape tool. Set the radius parameter to <em>10px</em> for rounded corners:</p>
<p><img src="http://woorkup.com/wp-content/uploads/2009/11/cta1.jpg" width="658" height="444"/></p>
<p>Select the layer with the shape and add the <em>Gradient Overlay</em> effect:</p>
<p><img src="http://woorkup.com/wp-content/uploads/2009/11/cta3.jpg" width="658" height="465"/></p>
<p>Add the <em>Bevel and Emboss</em> effect:</p>
<p><img src="http://woorkup.com/wp-content/uploads/2009/11/cta4.jpg" width="658" height="465"/></p>
<p>Add the <em>Stroke</em> effect. Set <em>size</em> to <code>1px</code> and <em>position</em> to <code>outside</code>.</p>
<p><img src="http://woorkup.com/wp-content/uploads/2009/11/cta5.jpg" width="652" height="465"/></p>
<p>Here is the result:</p>
<p><img src="http://woorkup.com/wp-content/uploads/2009/11/cta2.jpg" width="658" height="457"/></p>
<h2>Add text</h2>
<p>Now add a a text over the shape and apply the <em>Outer Glow</em> effect:</p>
<p><img src="http://woorkup.com/wp-content/uploads/2009/11/cta6.jpg" width="658" height="465"/></p>
<p>Here is the final result:</p>
<p><img src="http://woorkup.com/wp-content/uploads/2009/11/cta7.jpg" width="658" height="453"/></p>
<p><a href="http://woorkup.com/wp-content/uploads/2009/11/calltoaction.psd.zip">Download</a> the source file for Photoshop.</p>

<div style="font-size:0px;height:0px;line-height:0px;margin:0;padding:0;clear:both"></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Woork?a=twCqTsgayoI:J0dhMoHLQ2c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Woork?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=twCqTsgayoI:J0dhMoHLQ2c:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Woork?i=twCqTsgayoI:J0dhMoHLQ2c:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=twCqTsgayoI:J0dhMoHLQ2c:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Woork?i=twCqTsgayoI:J0dhMoHLQ2c:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=twCqTsgayoI:J0dhMoHLQ2c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Woork?i=twCqTsgayoI:J0dhMoHLQ2c:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=twCqTsgayoI:J0dhMoHLQ2c:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Woork?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Woork/~4/twCqTsgayoI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://woorkup.com/2009/11/15/how-to-design-call-to-action-buttons-with-photoshop/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://woorkup.com/2009/11/15/how-to-design-call-to-action-buttons-with-photoshop/</feedburner:origLink></item>
		<item>
		<title>Freelance Feed: Quality News for Freelancers</title>
		<link>http://feedproxy.google.com/~r/Woork/~3/lON3y7723Ec/</link>
		<comments>http://woorkup.com/2009/11/15/freelance-feed-quality-news-for-freelancers/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 15:10:26 +0000</pubDate>
		<dc:creator>Antonio Lupetti</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://woorkup.com/?p=1171</guid>
		<description><![CDATA[Freelance Feed is an aggregator of useful and high-quality news and resources for all freelancers created by <em>Grace Smith</em>.]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/Sj8SXUGXDf2u3eA9owjPJL-_K3U/0/da"><img src="http://feedads.g.doubleclick.net/~a/Sj8SXUGXDf2u3eA9owjPJL-_K3U/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Sj8SXUGXDf2u3eA9owjPJL-_K3U/1/da"><img src="http://feedads.g.doubleclick.net/~a/Sj8SXUGXDf2u3eA9owjPJL-_K3U/1/di" border="0" ismap="true"></img></a></p><p><img src="http://woorkup.com/wp-content/uploads/2009/11/freelance-feed1.jpg" alt="Freelance Feed" title="Freelance Feed" width="658" height="110"/></p>
<div class="adsense"></div>
<p>Some days ago my friend <a href="http://woorkup.com/author/gracesmith/">Grace Smith</a> launched <a href="http://thefreelancefeed.com/" rel="nofollow">Freelance Feed</a> a new project that was created to act as a centralized source of quality resources for all freelancers. It serves as a hand-picked aggregator of the most valuable articles, resources, tools, applications and tips available to the freelance community all in one place. The Freelance Feed even features a growing collection of e-books and guides that would fit neatly into any freelancers book shelf.</p>
<p><strong>Grace:</strong> I had the idea over a year ago and bought the domain soon after, unfortunately due to work demands and my schedule I wasn&#8217;t able to work on it until one weekend this August. I finally finished the theme design last week and will continue to tweak and add new features over the next few months, including a community feed that users can submit articles to.</p>
<p>You can follow The Freelance Feed at: <a href="http://thefreelancefeed.com/" rel="nofollow">http://thefreelancefeed.com/</a>,<br />
Subscribe to RSS Feeds <a href="http://feeds.feedburner.com/TheFreelanceFeed">http://feeds.feedburner.com/TheFreelanceFeed</a><br />
Twitter: <a href="https://twitter.com/freelance_feed">https://twitter.com/freelance_feed</a></p>

<div style="font-size:0px;height:0px;line-height:0px;margin:0;padding:0;clear:both"></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Woork?a=lON3y7723Ec:IIogYH9vqPo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Woork?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=lON3y7723Ec:IIogYH9vqPo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Woork?i=lON3y7723Ec:IIogYH9vqPo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=lON3y7723Ec:IIogYH9vqPo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Woork?i=lON3y7723Ec:IIogYH9vqPo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=lON3y7723Ec:IIogYH9vqPo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Woork?i=lON3y7723Ec:IIogYH9vqPo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=lON3y7723Ec:IIogYH9vqPo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Woork?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Woork/~4/lON3y7723Ec" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://woorkup.com/2009/11/15/freelance-feed-quality-news-for-freelancers/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://woorkup.com/2009/11/15/freelance-feed-quality-news-for-freelancers/</feedburner:origLink></item>
		<item>
		<title>Benefits of Increasing Communication in the Development Process</title>
		<link>http://feedproxy.google.com/~r/Woork/~3/P66bVe7Uzkg/</link>
		<comments>http://woorkup.com/2009/11/15/benefits-of-increasing-communication-in-the-development-process/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 13:58:17 +0000</pubDate>
		<dc:creator>Ryan Kovach</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://woorkup.com/?p=1155</guid>
		<description><![CDATA[One of the biggest complaints I hear from prospects as they make their initial call to our offices is that their previous web development firm didn’t move quickly enough or that the process simply took too long and was too expensive. I am always cautious to jump in and say “yeah screw those guys… hire our firm… we’re much faster and our rates are better!”...]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/j7XiIGGdFZfeyB_onq1zidd9kTo/0/da"><img src="http://feedads.g.doubleclick.net/~a/j7XiIGGdFZfeyB_onq1zidd9kTo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/j7XiIGGdFZfeyB_onq1zidd9kTo/1/da"><img src="http://feedads.g.doubleclick.net/~a/j7XiIGGdFZfeyB_onq1zidd9kTo/1/di" border="0" ismap="true"></img></a></p><div class="adsense"></div>
<p>One of the biggest complaints I hear from prospects as they make their initial call to our offices is that their previous web development firm didn&#8217;t move quickly enough or that the process simply took too long and was too expensive. I am always cautious to jump in and say <em>&#8220;yeah screw those guys&#8230; hire our firm&#8230; we&#8217;re much faster and our rates are better!&#8221;</em></p>
<p>That type of self-promotion would obviously be the kiss of death.  I know all too well that the previous firm more than likely worked diligently on completing their assignments on time.   In fairness, there are firms that get in over their heads and have too much on their plate, but from my experience, I know that time issues typically fall in the lap of the prospect&#8217;s perception of web design.</p>
<h2>Web design/development is a problem solving art</h2>
<p>Because web design/development is a problem solving art, it is important to document and log each &#8220;problem&#8221; as they arrive.  It is equally important to document and log how you and your firm went about solving that problem.</p>
<p>For example: If you took your car to a mechanic because it was smoking and chugging and coughing, and you handed over the keys, dropped the car off, and came back the next day to a car that wasn&#8217;t fixed and a bill that was already $2500.00, you might freak out and say &#8220;why did this cost so much and why isn&#8217;t the car fixed already?&#8221;  If the mechanic simply said to you, &#8220;it costs so much because we&#8217;ve done a lot of work and the car is in sad shape,&#8221; you might get a bit testy and chances are you aren&#8217;t going to be in any mood to refer that mechanic to a friend or family member.  In fact, you&#8217;d probably take your car to another mechanic and complain that the last guy took too long, didn&#8217;t complete the project and the costs were entirely too expensive.</p>
<p>Now for an opposing example:  Let&#8217;s say you took the same chugging, smoking car into the mechanic&#8217;s shop and turned it over and returned the next day to a car that still wasn&#8217;t completely finished and the bill was already $2500.00.  Initially you may freak out but once the mechanic explains that they&#8217;ve replaced the head gasket at 5.5 hours, purchased 3 new hoses at $85.00 a piece and installed them at 4.0 hours, they drained the transmission fluid and replaced it at 1.5 hours, and while replacing the head gasket they noticed another glaring problem that needs to be fixed and they should be done with that operation by 10:00 AM tomorrow, your reaction will more than likely be much different than in the previous example.  Why?  Because the mechanic laid out the problems, they explained the labor and they clarified what remained to be done in order to have the car in optimum operating condition.</p>
<p>All of this seems so elementary in nature.  All great web developers meticulously lay out their work in a way that their clients can clearly see the justification in time and price right?  Apparently not.</p>
<h2>Using Project Management Tools</h2>
<p><img src="http://woorkup.com/wp-content/uploads/2009/11/basecamp-logo.jpg" alt="Basecamp" title="Basecamp" width="141" height="142" style="float:right; margin-left:14px;"/>One popular tool our firm uses to combat this misinformation and perception gap is <a title="BaseCamp" href="http://basecamphq.com/">BaseCamp</a> by <em>37Signals</em>. With BaseCamp, our company can create projects, log time, archive communications, store related files and keep a running tab of all problem-solving issues that arise in the development process.  Anytime a task is performed, it is diligently logged into BaseCamp and our clients receive an email update, with a link to that particular post.  There they can download examples, graphs, images, files and anything else that corresponds with that portion of the process.<br />
<span style="color:#666; font-weight:bold; font-size:11px; line-height:14px; padding:10px 0;"><br />
(We pay 37Signals to use their service and they are in no way sponsoring our firm and we are receiving no compensation of any kind for this article)</span></p>
<p>What we have often found is that our communication may go unanswered for 3 or 4 days.  But that&#8217;s OK because we know that the client received our alert in a timely manner and we know that the client now has a clear understanding of everything that went into solving that particular problem.  If time becomes an issue down the road, we can show them where their lack of engagement slowed the process down dramatically.   When the client begins to understand that their slow response actually cost them time and money, they typically begin to engage more appropriately.  This undoubtedly increases your turn-around time and allows you to recognize more profits as your projects are not being strung out over longer periods of time.</p>
<p>Once our firm became more proactive in the logging process, we noticed a drastic decrease in the number of time complaints and cost complaints.  Now when a client questions our processes, our timeliness or our costs, we simply export a full-length log of everything that has gone into the process and hand it over to them.  Typically, when they see the entire process in black and white, they realize that getting from point A to point B in web development isn&#8217;t as simple as they once thought and they are generally more likely to continue their project with your firm.</p>

<div style="font-size:0px;height:0px;line-height:0px;margin:0;padding:0;clear:both"></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Woork?a=P66bVe7Uzkg:Vms2rWns3tU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Woork?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=P66bVe7Uzkg:Vms2rWns3tU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Woork?i=P66bVe7Uzkg:Vms2rWns3tU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=P66bVe7Uzkg:Vms2rWns3tU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Woork?i=P66bVe7Uzkg:Vms2rWns3tU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=P66bVe7Uzkg:Vms2rWns3tU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Woork?i=P66bVe7Uzkg:Vms2rWns3tU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Woork?a=P66bVe7Uzkg:Vms2rWns3tU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Woork?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Woork/~4/P66bVe7Uzkg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://woorkup.com/2009/11/15/benefits-of-increasing-communication-in-the-development-process/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://woorkup.com/2009/11/15/benefits-of-increasing-communication-in-the-development-process/</feedburner:origLink></item>
	</channel>
</rss>
