<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Phat Reaction.</title>
	<atom:link href="http://phat-reaction.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://phat-reaction.com</link>
	<description>making the web a happy place since 1994</description>
	<lastBuildDate>Thu, 20 May 2010 18:44:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>301 Permanent Moves from a Sub-directory to another server when Redirect from Apache won&#8217;t work</title>
		<link>http://phat-reaction.com/2010/05/301-permanent-moves-from-a-sub-directory-to-another-server-when-redirect-from-apache-wont-work/</link>
		<comments>http://phat-reaction.com/2010/05/301-permanent-moves-from-a-sub-directory-to-another-server-when-redirect-from-apache-wont-work/#comments</comments>
		<pubDate>Thu, 20 May 2010 18:39:43 +0000</pubDate>
		<dc:creator>andyk</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Web Server]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://phat-reaction.com/?p=251</guid>
		<description><![CDATA[I had a problem  the other day where I had to move my server to a new server location&#8230;  In my case I was moving the support pages for my Wordpress Plugin &#8220;Share and Follow&#8221; from my Phat-Reaction server to a new server devoted to Share and Follow.
To make it a little more difficult I [...]]]></description>
			<content:encoded><![CDATA[<p>I had a problem  the other day where I had to move my server to a new server location&#8230;  In my case I was moving the support pages for my Wordpress Plugin &#8220;Share and Follow&#8221; from my Phat-Reaction server to a new server devoted to Share and Follow.</p>
<p>To make it a little more difficult I need to only move a sub-directory to the new server and not the whole domain&#8230;.  this meant that I was moving<br />
<strong>Source: </strong>http://phat-reaction.com/share-and-follow/   (and all sub-directory contents)<br />
to<br />
<strong>Destination:</strong> http://share-and-follow.com/wordpress-plugin/</p>
<p>At the source there were many pages below the /share-and-follow/  subdirectory, all delivered via Wordpress on Apache.  In fact the pages used up to 3 levels of sub-directory below this point.</p>
<p>So I tried to use the Apache Redirect command inside both &lt;Directory&gt; and &lt;VirtualServer&gt; tags but to no avail. In fact when I contacted my hosting company they told me point blank that it could not be done with their server and that 301 Redirect&#8217;s could not work when going to an external server.  Not sure I believe that, but no matter what I tried I could not make the standard Apache method work.</p>
<p>To make it work I chose to use PHP and header() commands along with a few extra little bits. Here is the process I took to move it all</p>
<ol>
<li> Changed the URL inside the Wordpress settings to the new URL</li>
<li>Made a back up of the Database</li>
<li>Placed the new .htaccess in the sub-directory</li>
<li>Placed the new index.php in  the sub-directory</li>
<li>Deleted all traces of Wordpress from the directory and sub-directories</li>
</ol>
<p>In essence what it does is use Mod-ReWrite to tell the server that all access to the server below the /share-and-follow/ directory should actually load /share-and-follow/index.php.  So it did not matter if it was /share-and-follow/documentation/working-with-themes/  or /share-and-follow/my-stats.html  it would always load the same index.php.  this is all controlled by the .htaccess file.</p>
<p>example .htaccess</p>
<pre><code>
&lt;IfModule mod_rewrite.c&gt;
RewriteEngine On
RewriteBase /share-and-follow
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /share-and-follow/index.php [L]
&lt;/IfModule&gt;
</code></pre>
<p>remember to change the settings to be as you need for your server.  For me I was working in the share-and-follow sub-directory.  The only lines that need to be changed for your purpose is RewriteBase and RewriteRule.  RewriteBase should point at the sub-directory that you want to move, RewriteRule should point at the file you want to automatically load to deal with the redirection. </p>
<p>Once the URL rewrite is in place, all that is left is to configure the php side of things.</p>
<p>example index.php</p>
<pre><code>
&lt;?php
/*
 * This file simply redirects with a 301 to a new page with the same name when used in conjunction with a .htaccess
 *
 * @param $stubOld = the Stub URI that will be replaced with the new URL
 * @param $stubNew = the new URI location for the files.
 */

$stubOld = 'http://phat-reaction.com/share-and-follow/';
$stubNew = 'http://share-and-follow.com/wordpress-plugin/';
function curPageURL() {
 $pageURL = 'http';
 if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
 $pageURL .= "://";
 if ($_SERVER["SERVER_PORT"] != "80") {
  $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
 } else {
  $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
 }
 return $pageURL;
}
$url = curPageURL();
$url = str_ireplace($stubOld ,'' , $url);

header('HTTP/1.1 301 Moved Permanently');
header('Location: '.$stubNew.$url);
flush();
?&gt;
</code></pre>
<p>In this one you only need to change two things. The $stubOld = Old Source URL  and $stubNew= New Destination URL.  By changing these two items a URL such as <strong>http://phat-reaction.com/share-and-follow/documentation</strong> becomes <strong>http://share-and-follow.com/wordpress-plugin/documentation</strong></p>
<p>And the great part is that Google loves it when you do things this way with a 301 error (Moved Permanently).</p>
<p>Enjoy and share it with your webmaster buddies. Here are the files if you <a href="http://phat-reaction.com/wp-content/uploads/2010/05/redirect301.zip">want to download them</a></p>
<ul class="socialwrap row">
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F05%2F301-permanent-moves-from-a-sub-directory-to-another-server-when-redirect-from-apache-wont-work%2F&amp;title=301+Permanent+Moves+from+a+Sub-directory+to+another+server+when+Redirect+from+Apache+won%26%238217%3Bt+work" title="Bookmark this post : 301 Permanent Moves from a Sub-directory to another server when Redirect from Apache won&#8217;t work on Delicious" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/delicious.png" height="24"  width="24" alt="delicious"/> <span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F05%2F301-permanent-moves-from-a-sub-directory-to-another-server-when-redirect-from-apache-wont-work%2F&#038;title=301+Permanent+Moves+from+a+Sub-directory+to+another+server+when+Redirect+from+Apache+won%26%238217%3Bt+work&#038;bodytext=I+had+a+problem+%C2%A0the+other+day+where+I+had+to+move+my+server+to+a+new+server+location...+%C2%A0In+my+case+I+was+moving+the+support+pages+for+my+Wordpress+Plugin+%22Share+and+Follow%22+from+my+Phat-Reaction+server+to+a+new+server+devoted+to+Share+and+Follow.%0D%0A%0D%0ATo+make+it+a+little+more+difficult+I+need+to+only+move+a+sub-direc" title="Digg this post : 301 Permanent Moves from a Sub-directory to another server when Redirect from Apache won&#8217;t work" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/digg.png" height="24"  width="24" alt="digg"/> <span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fphat-reaction.com%2F2010%2F05%2F301-permanent-moves-from-a-sub-directory-to-another-server-when-redirect-from-apache-wont-work%2F&amp;t=301+Permanent+Moves+from+a+Sub-directory+to+another+server+when+Redirect+from+Apache+won%26%238217%3Bt+work" title="Recommend this post : 301 Permanent Moves from a Sub-directory to another server when Redirect from Apache won&#8217;t work on Facebook" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/facebook.png" height="24"  width="24" alt="facebook"/> <span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F05%2F301-permanent-moves-from-a-sub-directory-to-another-server-when-redirect-from-apache-wont-work%2F&amp;title=301+Permanent+Moves+from+a+Sub-directory+to+another+server+when+Redirect+from+Apache+won%26%238217%3Bt+work" title="Buzz up this post : 301 Permanent Moves from a Sub-directory to another server when Redirect from Apache won&#8217;t work " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/google_buzz.png" height="24"  width="24" alt="google_buzz"/> <span class="head">buzz it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fphat-reaction.com%2F2010%2F05%2F301-permanent-moves-from-a-sub-directory-to-another-server-when-redirect-from-apache-wont-work%2F" title="Buzz up this post : 301 Permanent Moves from a Sub-directory to another server when Redirect from Apache won&#8217;t work " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/yahoobuzz.png" height="24"  width="24" alt="yahoobuzz"/> <span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://hyves-share.nl/button/tip/?tipcategoryid=12&#038;rating=5&#038;title=http%3A%2F%2Fphat-reaction.com%2F2010%2F05%2F301-permanent-moves-from-a-sub-directory-to-another-server-when-redirect-from-apache-wont-work%2F&amp;body=301+Permanent+Moves+from+a+Sub-directory+to+another+server+when+Redirect+from+Apache+won%26%238217%3Bt+work" title="Tip this post : 301 Permanent Moves from a Sub-directory to another server when Redirect from Apache won&#8217;t work on Hyves" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/hyves.png" height="24"  width="24" alt="hyves"/> <span class="head">Tip on Hyves</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fphat-reaction.com%2F2010%2F05%2F301-permanent-moves-from-a-sub-directory-to-another-server-when-redirect-from-apache-wont-work%2F" title="Share this post : 301 Permanent Moves from a Sub-directory to another server when Redirect from Apache won&#8217;t work on Mixx" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/mixx.png" height="24"  width="24" alt="mixx"/> <span class="head">Mixx it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:void(window.open('http://www.myspace.com/Modules/PostTo/Pages/?u='+encodehttp%3A%2F%2Fphat-reaction.com%2F2010%2F05%2F301-permanent-moves-from-a-sub-directory-to-another-server-when-redirect-from-apache-wont-work%2FComponent(document.location.toString()),'ptm','height=450,width=440').focus())" title="Share this post : 301 Permanent Moves from a Sub-directory to another server when Redirect from Apache won&#8217;t work via MySpace" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/myspace.png" height="24"  width="24"  alt="myspace"/> <span class="head">Share via MySpace</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://promote.orkut.com/preview?nt=orkut.com&amp;du=http%3A%2F%2Fphat-reaction.com%2F2010%2F05%2F301-permanent-moves-from-a-sub-directory-to-another-server-when-redirect-from-apache-wont-work%2F&amp;tt=301+Permanent+Moves+from+a+Sub-directory+to+another+server+when+Redirect+from+Apache+won%26%238217%3Bt+work" title="Share this post : 301 Permanent Moves from a Sub-directory to another server when Redirect from Apache won&#8217;t work on Orkut" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/orkut.png" height="24"  width="24" alt="orkut"/> <span class="head">Share on Orkut</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F05%2F301-permanent-moves-from-a-sub-directory-to-another-server-when-redirect-from-apache-wont-work%2F&amp;title=301+Permanent+Moves+from+a+Sub-directory+to+another+server+when+Redirect+from+Apache+won%26%238217%3Bt+work" title="Share this post : 301 Permanent Moves from a Sub-directory to another server when Redirect from Apache won&#8217;t work on Reddit" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/reddit.png" height="24"  width="24" alt="reddit"/> <span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F05%2F301-permanent-moves-from-a-sub-directory-to-another-server-when-redirect-from-apache-wont-work%2F&amp;title=301+Permanent+Moves+from+a+Sub-directory+to+another+server+when+Redirect+from+Apache+won%26%238217%3Bt+work" title="Share this post : 301 Permanent Moves from a Sub-directory to another server when Redirect from Apache won&#8217;t work with Stumblers" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/stumbleupon.png" height="24"  width="24" alt="stumbleupon"/> <span class="head">Share with Stumblers</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://twitter.com/home/?status=http%3A%2F%2Fbit.ly%2Fclw0xa" title="Tweet this post : 301 Permanent Moves from a Sub-directory to another server when Redirect from Apache won&#8217;t work on Twitter" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/twitter.png" height="24"  width="24"  alt="twitter"/> <span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://phat-reaction.com/2010/05/301-permanent-moves-from-a-sub-directory-to-another-server-when-redirect-from-apache-wont-work/feed" title="Follow this post : 301 Permanent Moves from a Sub-directory to another server when Redirect from Apache won&#8217;t work comments" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/rss.png" height="24"  width="24" alt="rss"/> <span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a  rel="_blank" href="mailto:?subject=Phat Reaction. : 301 Permanent Moves from a Sub-directory to another server when Redirect from Apache won&#8217;t work&#038;body=What can I say, I found this cool thingy and thought of you. yes you the cool person on the address list  http://phat-reaction.com/2010/05/301-permanent-moves-from-a-sub-directory-to-another-server-when-redirect-from-apache-wont-work/" title="Tell a friend about this post : 301 Permanent Moves from a Sub-directory to another server when Redirect from Apache won&#8217;t work "><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/email.png" height="24"  width="24"  alt="email" /> <span class="head">tell someone</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:window.print();" title="Print this post : 301 Permanent Moves from a Sub-directory to another server when Redirect from Apache won&#8217;t work for reading later" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/print.png" height="24"  width="24" alt="print"/> <span class="head">Print </span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://phat-reaction.com/2010/05/301-permanent-moves-from-a-sub-directory-to-another-server-when-redirect-from-apache-wont-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Share and Follow wordpress plugin released</title>
		<link>http://phat-reaction.com/2010/04/share-and-follow-wordpress-plugin-released/</link>
		<comments>http://phat-reaction.com/2010/04/share-and-follow-wordpress-plugin-released/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 09:50:53 +0000</pubDate>
		<dc:creator>Phat Reaction</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[follow]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[shortcode]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[tag]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://phat-reaction.com/?p=223</guid>
		<description><![CDATA[After being fed up with most of the other share and follow link systems I decided to build my own.  The issues as I saw it was

Links often went via javascript to a 3rd party like AddThis
No control over if things are in a new window or in the same one
pagerank give away
javascript needed [...]]]></description>
			<content:encoded><![CDATA[<p>After being fed up with most of the other share and follow link systems I decided to build my own.  The issues as I saw it was</p>
<ol>
<li>Links often went via javascript to a 3rd party like AddThis</li>
<li>No control over if things are in a new window or in the same one</li>
<li>pagerank give away</li>
<li>javascript needed to use the systems on screen from AddThis and others</li>
<li>limited display setup</li>
<li>Only share links and no follow links</li>
<li>all or nothing approach from the majors, all pages or posts or nothing</li>
<li>No widget control, no theme tags, no shortcode</li>
</ol>
<p><ul class="socialwrap size16 down"><li class="icon_text"><a rel="nofollow" target="_blank" class="delicious" href="http://delicious.com/post?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F04%2Fshare-and-follow-wordpress-plugin-released%2F&amp;title=Share+and+Follow+wordpress+plugin+released" title="Bookmark this blog : Share and Follow wordpress plugin released on Delicious"><span class="head">Bookmark on Delicious</span></a></li><li class="icon_text"><a rel="nofollow" target="_blank" class="digg" href="http://digg.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F04%2Fshare-and-follow-wordpress-plugin-released%2F&title=Share+and+Follow+wordpress+plugin+released&bodytext=making+the+web+a+happy+place+since+1994" title="Digg this blog : Share and Follow wordpress plugin released"><span class="head">Digg this</span></a></li><li class="icon_text"><a rel="nofollow" target="_blank" class="facebook" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fphat-reaction.com%2F2010%2F04%2Fshare-and-follow-wordpress-plugin-released%2F&amp;t=Share+and+Follow+wordpress+plugin+released" title="Recommend this blog : Share and Follow wordpress plugin released on Facebook"><span class="head">Recommend on Facebook</span></a></li><li class="icon_text"><a rel="nofollow" target="_blank" class="myspace" href="javascript:void(window.open('http://www.myspace.com/Modules/PostTo/Pages/?u='+encodeURIComponent(document.location.toString()),'ptm','height=450,width=440').focus())" title="Share this blog : Share and Follow wordpress plugin released via MySpace"><span class="head">Share via MySpace</span></a></li><li class="icon_text"><a rel="nofollow" target="_blank" class="orkut" href="http://promote.orkut.com/preview?nt=orkut.com&amp;du=http%3A%2F%2Fphat-reaction.com%2F2010%2F04%2Fshare-and-follow-wordpress-plugin-released%2F&amp;tt=Share+and+Follow+wordpress+plugin+released" title="Share this blog : Share and Follow wordpress plugin released on Orkut"><span class="head">Share on Orkut</span></a></li><li class="icon_text"><a rel="nofollow" target="_blank" class="reddit" href="http://www.reddit.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F04%2Fshare-and-follow-wordpress-plugin-released%2F&amp;title=Share+and+Follow+wordpress+plugin+released" title="Share this blog : Share and Follow wordpress plugin released on Reddit"><span class="head">Share on Reddit</span></a></li><li class="icon_text"><a rel="nofollow" target="_blank" class="stumble" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F04%2Fshare-and-follow-wordpress-plugin-released%2F&amp;title=Share+and+Follow+wordpress+plugin+released" title="Share this blog : Share and Follow wordpress plugin released with Stumblers"><span class="head">Share with Stumblers</span></a></li><li class="icon_text"><a rel="nofollow" target="_blank" class="twitter" href="http://twitter.com/home/?status=http%3A%2F%2Fbit.ly%2Fbt2kmt" title="Tweet this blog : Share and Follow wordpress plugin released on Twitter"><span class="head">Tweet this</span></a></li><li class="icon_text"><a rel="nofollow" target="_blank" class="rss" href="http://phat-reaction.com/2010/04/share-and-follow-wordpress-plugin-released/feed" title="Follow this blog : Share and Follow wordpress plugin released comments"><span class="head">Follow this posts comments</span></a></li></ul><p><br />
So those were the bits that were missing, so I created a system that dealt with all of those issues and more.  We now have widgetized sharing and following, shortcode availabity, multi-size icons (16, 24, 32, 48, 60 px), follow tab in either the top/bottom/left/right side of the screen, funky text replacement option for follow bar.</p>
<p>Basically it&#8217;s got most things going&#8230;.. and is currently being re-developed with more functions and features for version 2.</p>
<p>take a good look at the <a href="http://phat-reaction.com/share-and-follow/">share and follow plugin for wordpress</a></p>
<ul class="socialwrap row">
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F04%2Fshare-and-follow-wordpress-plugin-released%2F&amp;title=Share+and+Follow+wordpress+plugin+released" title="Bookmark this post : Share and Follow wordpress plugin released on Delicious" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/delicious.png" height="24"  width="24" alt="delicious"/> <span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F04%2Fshare-and-follow-wordpress-plugin-released%2F&#038;title=Share+and+Follow+wordpress+plugin+released&#038;bodytext=After+being+fed+up+with+most+of+the+other+share+and+follow+link+systems+I+decided+to+build+my+own.++The+issues+as+I+saw+it+was%0D%0A%0D%0A%09Links+often+went+via+javascript+to+a+3rd+party+like+AddThis%0D%0A%09No+control+over+if+things+are+in+a+new+window+or+in+the+same+one%0D%0A%09pagerank+give+away%0D%0A%09javascript+needed+to+use+the+systems+on" title="Digg this post : Share and Follow wordpress plugin released" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/digg.png" height="24"  width="24" alt="digg"/> <span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fphat-reaction.com%2F2010%2F04%2Fshare-and-follow-wordpress-plugin-released%2F&amp;t=Share+and+Follow+wordpress+plugin+released" title="Recommend this post : Share and Follow wordpress plugin released on Facebook" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/facebook.png" height="24"  width="24" alt="facebook"/> <span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F04%2Fshare-and-follow-wordpress-plugin-released%2F&amp;title=Share+and+Follow+wordpress+plugin+released" title="Buzz up this post : Share and Follow wordpress plugin released " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/google_buzz.png" height="24"  width="24" alt="google_buzz"/> <span class="head">buzz it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fphat-reaction.com%2F2010%2F04%2Fshare-and-follow-wordpress-plugin-released%2F" title="Buzz up this post : Share and Follow wordpress plugin released " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/yahoobuzz.png" height="24"  width="24" alt="yahoobuzz"/> <span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://hyves-share.nl/button/tip/?tipcategoryid=12&#038;rating=5&#038;title=http%3A%2F%2Fphat-reaction.com%2F2010%2F04%2Fshare-and-follow-wordpress-plugin-released%2F&amp;body=Share+and+Follow+wordpress+plugin+released" title="Tip this post : Share and Follow wordpress plugin released on Hyves" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/hyves.png" height="24"  width="24" alt="hyves"/> <span class="head">Tip on Hyves</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fphat-reaction.com%2F2010%2F04%2Fshare-and-follow-wordpress-plugin-released%2F" title="Share this post : Share and Follow wordpress plugin released on Mixx" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/mixx.png" height="24"  width="24" alt="mixx"/> <span class="head">Mixx it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:void(window.open('http://www.myspace.com/Modules/PostTo/Pages/?u='+encodehttp%3A%2F%2Fphat-reaction.com%2F2010%2F04%2Fshare-and-follow-wordpress-plugin-released%2FComponent(document.location.toString()),'ptm','height=450,width=440').focus())" title="Share this post : Share and Follow wordpress plugin released via MySpace" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/myspace.png" height="24"  width="24"  alt="myspace"/> <span class="head">Share via MySpace</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://promote.orkut.com/preview?nt=orkut.com&amp;du=http%3A%2F%2Fphat-reaction.com%2F2010%2F04%2Fshare-and-follow-wordpress-plugin-released%2F&amp;tt=Share+and+Follow+wordpress+plugin+released" title="Share this post : Share and Follow wordpress plugin released on Orkut" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/orkut.png" height="24"  width="24" alt="orkut"/> <span class="head">Share on Orkut</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F04%2Fshare-and-follow-wordpress-plugin-released%2F&amp;title=Share+and+Follow+wordpress+plugin+released" title="Share this post : Share and Follow wordpress plugin released on Reddit" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/reddit.png" height="24"  width="24" alt="reddit"/> <span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F04%2Fshare-and-follow-wordpress-plugin-released%2F&amp;title=Share+and+Follow+wordpress+plugin+released" title="Share this post : Share and Follow wordpress plugin released with Stumblers" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/stumbleupon.png" height="24"  width="24" alt="stumbleupon"/> <span class="head">Share with Stumblers</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://twitter.com/home/?status=http%3A%2F%2Fbit.ly%2Fbt2kmt" title="Tweet this post : Share and Follow wordpress plugin released on Twitter" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/twitter.png" height="24"  width="24"  alt="twitter"/> <span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://phat-reaction.com/2010/04/share-and-follow-wordpress-plugin-released/feed" title="Follow this post : Share and Follow wordpress plugin released comments" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/rss.png" height="24"  width="24" alt="rss"/> <span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a  rel="_blank" href="mailto:?subject=Phat Reaction. : Share and Follow wordpress plugin released&#038;body=What can I say, I found this cool thingy and thought of you. yes you the cool person on the address list  http://phat-reaction.com/2010/04/share-and-follow-wordpress-plugin-released/" title="Tell a friend about this post : Share and Follow wordpress plugin released "><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/email.png" height="24"  width="24"  alt="email" /> <span class="head">tell someone</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:window.print();" title="Print this post : Share and Follow wordpress plugin released for reading later" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/print.png" height="24"  width="24" alt="print"/> <span class="head">Print </span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://phat-reaction.com/2010/04/share-and-follow-wordpress-plugin-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Stage 2 on the cards for Unselfish Designs</title>
		<link>http://phat-reaction.com/2010/03/stage-2-on-the-cards-for-unselfish-designs/</link>
		<comments>http://phat-reaction.com/2010/03/stage-2-on-the-cards-for-unselfish-designs/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 21:43:39 +0000</pubDate>
		<dc:creator>Phat Reaction</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://phat-reaction.com/?p=169</guid>
		<description><![CDATA[After getting a simple blog to help show off her products Wendy is now ready to take unlsefish designs to the next level with a bunch of new features.

T-shirt builder
Share links
Social networking
Sales order processing
A change in direction on design and layout

We&#8217;re looking forward to all the challenges she can throw at us.

 Bookmark on Delicious
 Digg this [...]]]></description>
			<content:encoded><![CDATA[<p>After getting a simple blog to help show off her products Wendy is now ready to take <a href="http://unselfish-designs.com/">unlsefish designs</a> to the next level with a bunch of new features.</p>
<ul>
<li>T-shirt builder</li>
<li>Share links</li>
<li>Social networking</li>
<li>Sales order processing</li>
<li>A change in direction on design and layout</li>
</ul>
<p>We&#8217;re looking forward to all the challenges she can throw at us.</p>
<ul class="socialwrap row">
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fstage-2-on-the-cards-for-unselfish-designs%2F&amp;title=Stage+2+on+the+cards+for+Unselfish+Designs" title="Bookmark this post : Stage 2 on the cards for Unselfish Designs on Delicious" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/delicious.png" height="24"  width="24" alt="delicious"/> <span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fstage-2-on-the-cards-for-unselfish-designs%2F&#038;title=Stage+2+on+the+cards+for+Unselfish+Designs&#038;bodytext=After+getting+a+simple+blog+to+help+show+off+her+products+Wendy+is+now+ready+to+take+unlsefish+designs+to+the+next+level+with+a+bunch+of+new+features.%0D%0A%0D%0A%09T-shirt+builder%0D%0A%09Share+links%0D%0A%09Social+networking%0D%0A%09Sales+order+processing%0D%0A%09A+change+in+direction+on+design+and+layout%0D%0A%0D%0AWe%27re+looking+forward+to+all+the%C2%A0challeng" title="Digg this post : Stage 2 on the cards for Unselfish Designs" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/digg.png" height="24"  width="24" alt="digg"/> <span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fstage-2-on-the-cards-for-unselfish-designs%2F&amp;t=Stage+2+on+the+cards+for+Unselfish+Designs" title="Recommend this post : Stage 2 on the cards for Unselfish Designs on Facebook" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/facebook.png" height="24"  width="24" alt="facebook"/> <span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fstage-2-on-the-cards-for-unselfish-designs%2F&amp;title=Stage+2+on+the+cards+for+Unselfish+Designs" title="Buzz up this post : Stage 2 on the cards for Unselfish Designs " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/google_buzz.png" height="24"  width="24" alt="google_buzz"/> <span class="head">buzz it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fstage-2-on-the-cards-for-unselfish-designs%2F" title="Buzz up this post : Stage 2 on the cards for Unselfish Designs " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/yahoobuzz.png" height="24"  width="24" alt="yahoobuzz"/> <span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://hyves-share.nl/button/tip/?tipcategoryid=12&#038;rating=5&#038;title=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fstage-2-on-the-cards-for-unselfish-designs%2F&amp;body=Stage+2+on+the+cards+for+Unselfish+Designs" title="Tip this post : Stage 2 on the cards for Unselfish Designs on Hyves" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/hyves.png" height="24"  width="24" alt="hyves"/> <span class="head">Tip on Hyves</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fstage-2-on-the-cards-for-unselfish-designs%2F" title="Share this post : Stage 2 on the cards for Unselfish Designs on Mixx" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/mixx.png" height="24"  width="24" alt="mixx"/> <span class="head">Mixx it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:void(window.open('http://www.myspace.com/Modules/PostTo/Pages/?u='+encodehttp%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fstage-2-on-the-cards-for-unselfish-designs%2FComponent(document.location.toString()),'ptm','height=450,width=440').focus())" title="Share this post : Stage 2 on the cards for Unselfish Designs via MySpace" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/myspace.png" height="24"  width="24"  alt="myspace"/> <span class="head">Share via MySpace</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://promote.orkut.com/preview?nt=orkut.com&amp;du=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fstage-2-on-the-cards-for-unselfish-designs%2F&amp;tt=Stage+2+on+the+cards+for+Unselfish+Designs" title="Share this post : Stage 2 on the cards for Unselfish Designs on Orkut" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/orkut.png" height="24"  width="24" alt="orkut"/> <span class="head">Share on Orkut</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fstage-2-on-the-cards-for-unselfish-designs%2F&amp;title=Stage+2+on+the+cards+for+Unselfish+Designs" title="Share this post : Stage 2 on the cards for Unselfish Designs on Reddit" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/reddit.png" height="24"  width="24" alt="reddit"/> <span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fstage-2-on-the-cards-for-unselfish-designs%2F&amp;title=Stage+2+on+the+cards+for+Unselfish+Designs" title="Share this post : Stage 2 on the cards for Unselfish Designs with Stumblers" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/stumbleupon.png" height="24"  width="24" alt="stumbleupon"/> <span class="head">Share with Stumblers</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://twitter.com/home/?status=http%3A%2F%2Fbit.ly%2F9wA5f0" title="Tweet this post : Stage 2 on the cards for Unselfish Designs on Twitter" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/twitter.png" height="24"  width="24"  alt="twitter"/> <span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://phat-reaction.com/2010/03/stage-2-on-the-cards-for-unselfish-designs/feed" title="Follow this post : Stage 2 on the cards for Unselfish Designs comments" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/rss.png" height="24"  width="24" alt="rss"/> <span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a  rel="_blank" href="mailto:?subject=Phat Reaction. : Stage 2 on the cards for Unselfish Designs&#038;body=What can I say, I found this cool thingy and thought of you. yes you the cool person on the address list  http://phat-reaction.com/2010/03/stage-2-on-the-cards-for-unselfish-designs/" title="Tell a friend about this post : Stage 2 on the cards for Unselfish Designs "><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/email.png" height="24"  width="24"  alt="email" /> <span class="head">tell someone</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:window.print();" title="Print this post : Stage 2 on the cards for Unselfish Designs for reading later" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/print.png" height="24"  width="24" alt="print"/> <span class="head">Print </span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://phat-reaction.com/2010/03/stage-2-on-the-cards-for-unselfish-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Video Service &#8211; Phat Reaction Videos</title>
		<link>http://phat-reaction.com/2010/03/new-video-service-phat-reaction-videos/</link>
		<comments>http://phat-reaction.com/2010/03/new-video-service-phat-reaction-videos/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 13:00:36 +0000</pubDate>
		<dc:creator>Phat Reaction</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[new site]]></category>

		<guid isPermaLink="false">http://phat-reaction.com/?p=165</guid>
		<description><![CDATA[We&#8217;ve been busy and have created our own Videowall Blog Website (phat reaction videos). It connects up the videos of youtube and the webservices of various affiliate programs including Amazon&#8217;s.  This system allows viewers to watch a complete playlist of youtube videos without having overlaid advertisements (We pop them on the side in a [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve been busy and have created our own Videowall Blog Website (<a href="http://video.phat-reaction.com">phat reaction videos</a>). It connects up the videos of youtube and the webservices of various affiliate programs including Amazon&#8217;s.  This system allows viewers to watch a complete playlist of youtube videos without having overlaid advertisements (We pop them on the side in a retractable menu system) and in almost full screen as standard, and with a small press of the f11 button as big as the display.</p>
<p>Not only have we created the website, we have also created a simple Facebook application (<a href="http://apps.facebook.com/phat-reaction-videos">phat reaction videos on facebook</a>) to show the same playlists.</p>
<p>The blog will be focusing on Music, Sport, Comedy and Extreem Sports</p>
<ul class="socialwrap row">
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fnew-video-service-phat-reaction-videos%2F&amp;title=New+Video+Service+%26%238211%3B+Phat+Reaction+Videos" title="Bookmark this post : New Video Service &#8211; Phat Reaction Videos on Delicious" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/delicious.png" height="24"  width="24" alt="delicious"/> <span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fnew-video-service-phat-reaction-videos%2F&#038;title=New+Video+Service+%26%238211%3B+Phat+Reaction+Videos&#038;bodytext=We%27ve+been+busy+and+have+created+our+own+Videowall+Blog+Website+%28phat+reaction+videos%29.+It+connects+up+the+videos+of+youtube+and+the+webservices+of+various+affiliate+programs+including+Amazon%27s.++This+system+allows+viewers+to+watch+a+complete+playlist+of+youtube+videos+without+having+overlaid+advertisements+%28We+pop+the" title="Digg this post : New Video Service &#8211; Phat Reaction Videos" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/digg.png" height="24"  width="24" alt="digg"/> <span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fnew-video-service-phat-reaction-videos%2F&amp;t=New+Video+Service+%26%238211%3B+Phat+Reaction+Videos" title="Recommend this post : New Video Service &#8211; Phat Reaction Videos on Facebook" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/facebook.png" height="24"  width="24" alt="facebook"/> <span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fnew-video-service-phat-reaction-videos%2F&amp;title=New+Video+Service+%26%238211%3B+Phat+Reaction+Videos" title="Buzz up this post : New Video Service &#8211; Phat Reaction Videos " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/google_buzz.png" height="24"  width="24" alt="google_buzz"/> <span class="head">buzz it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fnew-video-service-phat-reaction-videos%2F" title="Buzz up this post : New Video Service &#8211; Phat Reaction Videos " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/yahoobuzz.png" height="24"  width="24" alt="yahoobuzz"/> <span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://hyves-share.nl/button/tip/?tipcategoryid=12&#038;rating=5&#038;title=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fnew-video-service-phat-reaction-videos%2F&amp;body=New+Video+Service+%26%238211%3B+Phat+Reaction+Videos" title="Tip this post : New Video Service &#8211; Phat Reaction Videos on Hyves" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/hyves.png" height="24"  width="24" alt="hyves"/> <span class="head">Tip on Hyves</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fnew-video-service-phat-reaction-videos%2F" title="Share this post : New Video Service &#8211; Phat Reaction Videos on Mixx" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/mixx.png" height="24"  width="24" alt="mixx"/> <span class="head">Mixx it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:void(window.open('http://www.myspace.com/Modules/PostTo/Pages/?u='+encodehttp%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fnew-video-service-phat-reaction-videos%2FComponent(document.location.toString()),'ptm','height=450,width=440').focus())" title="Share this post : New Video Service &#8211; Phat Reaction Videos via MySpace" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/myspace.png" height="24"  width="24"  alt="myspace"/> <span class="head">Share via MySpace</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://promote.orkut.com/preview?nt=orkut.com&amp;du=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fnew-video-service-phat-reaction-videos%2F&amp;tt=New+Video+Service+%26%238211%3B+Phat+Reaction+Videos" title="Share this post : New Video Service &#8211; Phat Reaction Videos on Orkut" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/orkut.png" height="24"  width="24" alt="orkut"/> <span class="head">Share on Orkut</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fnew-video-service-phat-reaction-videos%2F&amp;title=New+Video+Service+%26%238211%3B+Phat+Reaction+Videos" title="Share this post : New Video Service &#8211; Phat Reaction Videos on Reddit" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/reddit.png" height="24"  width="24" alt="reddit"/> <span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F03%2Fnew-video-service-phat-reaction-videos%2F&amp;title=New+Video+Service+%26%238211%3B+Phat+Reaction+Videos" title="Share this post : New Video Service &#8211; Phat Reaction Videos with Stumblers" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/stumbleupon.png" height="24"  width="24" alt="stumbleupon"/> <span class="head">Share with Stumblers</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://twitter.com/home/?status=http%3A%2F%2Fbit.ly%2FawTYsn" title="Tweet this post : New Video Service &#8211; Phat Reaction Videos on Twitter" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/twitter.png" height="24"  width="24"  alt="twitter"/> <span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://phat-reaction.com/2010/03/new-video-service-phat-reaction-videos/feed" title="Follow this post : New Video Service &#8211; Phat Reaction Videos comments" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/rss.png" height="24"  width="24" alt="rss"/> <span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a  rel="_blank" href="mailto:?subject=Phat Reaction. : New Video Service &#8211; Phat Reaction Videos&#038;body=What can I say, I found this cool thingy and thought of you. yes you the cool person on the address list  http://phat-reaction.com/2010/03/new-video-service-phat-reaction-videos/" title="Tell a friend about this post : New Video Service &#8211; Phat Reaction Videos "><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/email.png" height="24"  width="24"  alt="email" /> <span class="head">tell someone</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:window.print();" title="Print this post : New Video Service &#8211; Phat Reaction Videos for reading later" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/print.png" height="24"  width="24" alt="print"/> <span class="head">Print </span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://phat-reaction.com/2010/03/new-video-service-phat-reaction-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>H2A Fitworkout site online</title>
		<link>http://phat-reaction.com/2010/01/h2a-fitworkout-site-online/</link>
		<comments>http://phat-reaction.com/2010/01/h2a-fitworkout-site-online/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 13:37:42 +0000</pubDate>
		<dc:creator>Phat Reaction</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[new site]]></category>

		<guid isPermaLink="false">http://phat-reaction.com/?p=160</guid>
		<description><![CDATA[Yep, that&#8217;s another site under my belt&#8230;.  This time it is one for a personal trainer here in Amsterdam.  Hakima Hamimi wanted a site that stood out from the crowd and found that all the other personal trainer sites were not to her liking.  I showed her my back catalog of websites [...]]]></description>
			<content:encoded><![CDATA[<p>Yep, that&#8217;s another site under my belt&#8230;.  This time it is one for a personal trainer here in Amsterdam.  Hakima Hamimi wanted a site that stood out from the crowd and found that all the other personal trainer sites were not to her liking.  I showed her my back catalog of websites that I have made and she decided that she really liked the Denon Boundless Microsite and wanted one very similar.</p>
<p>So with that in mind we created the site <a href="http://h2a-fitworkout.com">H2A-fitworkout.com</a> and as it is the Netherlands she needed it to be in two languages (<a href="http://h2a-fitworkout.com/en" >english language version</a>, <a href="http://h2a-fitworkout.com/nl" >dutch language version</a>).  Again the site was based on wordpress to quicken the developement time.</p>
<p>In future she may choose also to add some music to the site to liven it up a little, but for now she is one satisfied customer.</p>
<ul class="socialwrap row">
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F01%2Fh2a-fitworkout-site-online%2F&amp;title=H2A+Fitworkout+site+online" title="Bookmark this post : H2A Fitworkout site online on Delicious" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/delicious.png" height="24"  width="24" alt="delicious"/> <span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F01%2Fh2a-fitworkout-site-online%2F&#038;title=H2A+Fitworkout+site+online&#038;bodytext=Yep%2C+that%27s+another+site+under+my+belt....++This+time+it+is+one+for+a+personal+trainer+here+in+Amsterdam.++Hakima+Hamimi+wanted+a+site+that+stood+out+from+the+crowd+and+found+that+all+the+other+personal+trainer+sites+were+not+to+her+liking.++I+showed+her+my+back+catalog+of+websites+that+I+have+made+and+she+decided+that" title="Digg this post : H2A Fitworkout site online" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/digg.png" height="24"  width="24" alt="digg"/> <span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fphat-reaction.com%2F2010%2F01%2Fh2a-fitworkout-site-online%2F&amp;t=H2A+Fitworkout+site+online" title="Recommend this post : H2A Fitworkout site online on Facebook" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/facebook.png" height="24"  width="24" alt="facebook"/> <span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F01%2Fh2a-fitworkout-site-online%2F&amp;title=H2A+Fitworkout+site+online" title="Buzz up this post : H2A Fitworkout site online " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/google_buzz.png" height="24"  width="24" alt="google_buzz"/> <span class="head">buzz it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fphat-reaction.com%2F2010%2F01%2Fh2a-fitworkout-site-online%2F" title="Buzz up this post : H2A Fitworkout site online " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/yahoobuzz.png" height="24"  width="24" alt="yahoobuzz"/> <span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://hyves-share.nl/button/tip/?tipcategoryid=12&#038;rating=5&#038;title=http%3A%2F%2Fphat-reaction.com%2F2010%2F01%2Fh2a-fitworkout-site-online%2F&amp;body=H2A+Fitworkout+site+online" title="Tip this post : H2A Fitworkout site online on Hyves" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/hyves.png" height="24"  width="24" alt="hyves"/> <span class="head">Tip on Hyves</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fphat-reaction.com%2F2010%2F01%2Fh2a-fitworkout-site-online%2F" title="Share this post : H2A Fitworkout site online on Mixx" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/mixx.png" height="24"  width="24" alt="mixx"/> <span class="head">Mixx it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:void(window.open('http://www.myspace.com/Modules/PostTo/Pages/?u='+encodehttp%3A%2F%2Fphat-reaction.com%2F2010%2F01%2Fh2a-fitworkout-site-online%2FComponent(document.location.toString()),'ptm','height=450,width=440').focus())" title="Share this post : H2A Fitworkout site online via MySpace" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/myspace.png" height="24"  width="24"  alt="myspace"/> <span class="head">Share via MySpace</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://promote.orkut.com/preview?nt=orkut.com&amp;du=http%3A%2F%2Fphat-reaction.com%2F2010%2F01%2Fh2a-fitworkout-site-online%2F&amp;tt=H2A+Fitworkout+site+online" title="Share this post : H2A Fitworkout site online on Orkut" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/orkut.png" height="24"  width="24" alt="orkut"/> <span class="head">Share on Orkut</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F01%2Fh2a-fitworkout-site-online%2F&amp;title=H2A+Fitworkout+site+online" title="Share this post : H2A Fitworkout site online on Reddit" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/reddit.png" height="24"  width="24" alt="reddit"/> <span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2010%2F01%2Fh2a-fitworkout-site-online%2F&amp;title=H2A+Fitworkout+site+online" title="Share this post : H2A Fitworkout site online with Stumblers" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/stumbleupon.png" height="24"  width="24" alt="stumbleupon"/> <span class="head">Share with Stumblers</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://twitter.com/home/?status=http%3A%2F%2Fbit.ly%2F9WNPW0" title="Tweet this post : H2A Fitworkout site online on Twitter" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/twitter.png" height="24"  width="24"  alt="twitter"/> <span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://phat-reaction.com/2010/01/h2a-fitworkout-site-online/feed" title="Follow this post : H2A Fitworkout site online comments" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/rss.png" height="24"  width="24" alt="rss"/> <span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a  rel="_blank" href="mailto:?subject=Phat Reaction. : H2A Fitworkout site online&#038;body=What can I say, I found this cool thingy and thought of you. yes you the cool person on the address list  http://phat-reaction.com/2010/01/h2a-fitworkout-site-online/" title="Tell a friend about this post : H2A Fitworkout site online "><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/email.png" height="24"  width="24"  alt="email" /> <span class="head">tell someone</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:window.print();" title="Print this post : H2A Fitworkout site online for reading later" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/print.png" height="24"  width="24" alt="print"/> <span class="head">Print </span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://phat-reaction.com/2010/01/h2a-fitworkout-site-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I use Wordpress for nearly every install I make</title>
		<link>http://phat-reaction.com/2009/11/why-i-use-wordpress-for-nearly-every-install-i-make/</link>
		<comments>http://phat-reaction.com/2009/11/why-i-use-wordpress-for-nearly-every-install-i-make/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 13:26:18 +0000</pubDate>
		<dc:creator>Phat Reaction</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[time saved]]></category>

		<guid isPermaLink="false">http://phat-reaction.com/?p=135</guid>
		<description><![CDATA[I was feed up with re-doing the same things time and time again
By using wordpress external site I am able to remove a bunch of my standard work like adding content , setting up the head section or configuring my layout areas.  They are now all pre-configured inside my own hand made made theme, and [...]]]></description>
			<content:encoded><![CDATA[<h2>I was feed up with re-doing the same things time and time again</h2>
<p>By using <a class="external" rel="nofollow" href="http://wordpress.org" target="_blank">wordpress <span>external site</span></a> I am able to remove a bunch of my standard work like adding content , setting up the head section or configuring my layout areas.  They are now all pre-configured inside my own hand made made theme, and from there on in I just change the CSS and made wordpress theme changes as needed by the client.  Most likely it saves me 5 hours on each install.</p>
<p>And to be honest, I hope the ease of wordpress to use will enable a site to grow quickly, even if it is just a 1 page advert. Possibly the most sucessful wordpress install that I have made so far would be <a class="external" rel="nofollow" href="http://thecommonwealthconversation.org" target="_blank">The Commonwealth Conversation <span>external site</span></a>.  This site has had over 30,000 visitors and 1000 comments anf got to page rank 7 in about 4 months, not many sites can say that.</p>
<ul class="socialwrap row">
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-use-wordpress-for-nearly-every-install-i-make%2F&amp;title=Why+I+use+Wordpress+for+nearly+every+install+I+make" title="Bookmark this post : Why I use Wordpress for nearly every install I make on Delicious" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/delicious.png" height="24"  width="24" alt="delicious"/> <span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-use-wordpress-for-nearly-every-install-i-make%2F&#038;title=Why+I+use+Wordpress+for+nearly+every+install+I+make&#038;bodytext=I+was+feed+up+with+re-doing+the+same+things+time+and+time+again%0D%0ABy+using+wordpress+external+site+I+am+able+to+remove+a+bunch+of+my+standard+work+like+adding+content+%2C+setting+up+the+head+section+or+configuring+my+layout+areas.%C2%A0+They+are+now+all+pre-configured+inside+my+own+hand+made+made+theme%2C+and+from+there+on+in+I" title="Digg this post : Why I use Wordpress for nearly every install I make" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/digg.png" height="24"  width="24" alt="digg"/> <span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-use-wordpress-for-nearly-every-install-i-make%2F&amp;t=Why+I+use+Wordpress+for+nearly+every+install+I+make" title="Recommend this post : Why I use Wordpress for nearly every install I make on Facebook" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/facebook.png" height="24"  width="24" alt="facebook"/> <span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-use-wordpress-for-nearly-every-install-i-make%2F&amp;title=Why+I+use+Wordpress+for+nearly+every+install+I+make" title="Buzz up this post : Why I use Wordpress for nearly every install I make " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/google_buzz.png" height="24"  width="24" alt="google_buzz"/> <span class="head">buzz it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-use-wordpress-for-nearly-every-install-i-make%2F" title="Buzz up this post : Why I use Wordpress for nearly every install I make " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/yahoobuzz.png" height="24"  width="24" alt="yahoobuzz"/> <span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://hyves-share.nl/button/tip/?tipcategoryid=12&#038;rating=5&#038;title=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-use-wordpress-for-nearly-every-install-i-make%2F&amp;body=Why+I+use+Wordpress+for+nearly+every+install+I+make" title="Tip this post : Why I use Wordpress for nearly every install I make on Hyves" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/hyves.png" height="24"  width="24" alt="hyves"/> <span class="head">Tip on Hyves</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-use-wordpress-for-nearly-every-install-i-make%2F" title="Share this post : Why I use Wordpress for nearly every install I make on Mixx" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/mixx.png" height="24"  width="24" alt="mixx"/> <span class="head">Mixx it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:void(window.open('http://www.myspace.com/Modules/PostTo/Pages/?u='+encodehttp%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-use-wordpress-for-nearly-every-install-i-make%2FComponent(document.location.toString()),'ptm','height=450,width=440').focus())" title="Share this post : Why I use Wordpress for nearly every install I make via MySpace" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/myspace.png" height="24"  width="24"  alt="myspace"/> <span class="head">Share via MySpace</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://promote.orkut.com/preview?nt=orkut.com&amp;du=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-use-wordpress-for-nearly-every-install-i-make%2F&amp;tt=Why+I+use+Wordpress+for+nearly+every+install+I+make" title="Share this post : Why I use Wordpress for nearly every install I make on Orkut" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/orkut.png" height="24"  width="24" alt="orkut"/> <span class="head">Share on Orkut</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-use-wordpress-for-nearly-every-install-i-make%2F&amp;title=Why+I+use+Wordpress+for+nearly+every+install+I+make" title="Share this post : Why I use Wordpress for nearly every install I make on Reddit" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/reddit.png" height="24"  width="24" alt="reddit"/> <span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-use-wordpress-for-nearly-every-install-i-make%2F&amp;title=Why+I+use+Wordpress+for+nearly+every+install+I+make" title="Share this post : Why I use Wordpress for nearly every install I make with Stumblers" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/stumbleupon.png" height="24"  width="24" alt="stumbleupon"/> <span class="head">Share with Stumblers</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://twitter.com/home/?status=http%3A%2F%2Fbit.ly%2FclwRKL" title="Tweet this post : Why I use Wordpress for nearly every install I make on Twitter" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/twitter.png" height="24"  width="24"  alt="twitter"/> <span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://phat-reaction.com/2009/11/why-i-use-wordpress-for-nearly-every-install-i-make/feed" title="Follow this post : Why I use Wordpress for nearly every install I make comments" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/rss.png" height="24"  width="24" alt="rss"/> <span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a  rel="_blank" href="mailto:?subject=Phat Reaction. : Why I use Wordpress for nearly every install I make&#038;body=What can I say, I found this cool thingy and thought of you. yes you the cool person on the address list  http://phat-reaction.com/2009/11/why-i-use-wordpress-for-nearly-every-install-i-make/" title="Tell a friend about this post : Why I use Wordpress for nearly every install I make "><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/email.png" height="24"  width="24"  alt="email" /> <span class="head">tell someone</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:window.print();" title="Print this post : Why I use Wordpress for nearly every install I make for reading later" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/print.png" height="24"  width="24" alt="print"/> <span class="head">Print </span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://phat-reaction.com/2009/11/why-i-use-wordpress-for-nearly-every-install-i-make/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I work a lot with freelance designers</title>
		<link>http://phat-reaction.com/2009/11/why-i-work-a-lot-with-freelance-designers/</link>
		<comments>http://phat-reaction.com/2009/11/why-i-work-a-lot-with-freelance-designers/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 12:53:18 +0000</pubDate>
		<dc:creator>Phat Reaction</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://phat-reaction.com/?p=129</guid>
		<description><![CDATA[It&#8217;s because I can make their pritty designs perform in the way that they envisage
Yes thats why they do it, I can do what they cannot.  As I am not a classic graphic artist, I do not have any input towards their designs except how to turn it from a flat single layer into a [...]]]></description>
			<content:encoded><![CDATA[<h2>It&#8217;s because I can make their pritty designs perform in the way that they envisage</h2>
<p>Yes thats why they do it, I can do what they cannot.  As I am not a classic graphic artist, I do not have any input towards their designs except how to turn it from a flat single layer into a multi-layered interactive webpage. They rely on me to show them to latest and greatest out there on the web so that they can encorporate it in to their work.</p>
<p>Not only do I code it the way they want it, but also in the time frame that they need it done by.  As you can imagine, it&#8217;s really important to them that they can get the right staff that can cut up their design and make it run as quick as possible over the internet&#8230;</p>
<p>I like it this way, I am their coder, they are my designers. Together we create proper internet magic.</p>
<ul class="socialwrap row">
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-work-a-lot-with-freelance-designers%2F&amp;title=Why+I+work+a+lot+with+freelance+designers" title="Bookmark this post : Why I work a lot with freelance designers on Delicious" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/delicious.png" height="24"  width="24" alt="delicious"/> <span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-work-a-lot-with-freelance-designers%2F&#038;title=Why+I+work+a+lot+with+freelance+designers&#038;bodytext=It%27s+because+I+can+make+their+pritty+designs+perform+in+the+way+that+they+envisage%0D%0AYes+thats+why+they+do+it%2C+I+can+do+what+they+cannot.%C2%A0+As+I+am+not+a+classic+graphic+artist%2C+I+do+not+have+any+input+towards+their+designs+except+how+to+turn+it+from+a+flat+single+layer+into+a+multi-layered+interactive+webpage.+They+rel" title="Digg this post : Why I work a lot with freelance designers" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/digg.png" height="24"  width="24" alt="digg"/> <span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-work-a-lot-with-freelance-designers%2F&amp;t=Why+I+work+a+lot+with+freelance+designers" title="Recommend this post : Why I work a lot with freelance designers on Facebook" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/facebook.png" height="24"  width="24" alt="facebook"/> <span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-work-a-lot-with-freelance-designers%2F&amp;title=Why+I+work+a+lot+with+freelance+designers" title="Buzz up this post : Why I work a lot with freelance designers " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/google_buzz.png" height="24"  width="24" alt="google_buzz"/> <span class="head">buzz it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-work-a-lot-with-freelance-designers%2F" title="Buzz up this post : Why I work a lot with freelance designers " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/yahoobuzz.png" height="24"  width="24" alt="yahoobuzz"/> <span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://hyves-share.nl/button/tip/?tipcategoryid=12&#038;rating=5&#038;title=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-work-a-lot-with-freelance-designers%2F&amp;body=Why+I+work+a+lot+with+freelance+designers" title="Tip this post : Why I work a lot with freelance designers on Hyves" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/hyves.png" height="24"  width="24" alt="hyves"/> <span class="head">Tip on Hyves</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-work-a-lot-with-freelance-designers%2F" title="Share this post : Why I work a lot with freelance designers on Mixx" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/mixx.png" height="24"  width="24" alt="mixx"/> <span class="head">Mixx it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:void(window.open('http://www.myspace.com/Modules/PostTo/Pages/?u='+encodehttp%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-work-a-lot-with-freelance-designers%2FComponent(document.location.toString()),'ptm','height=450,width=440').focus())" title="Share this post : Why I work a lot with freelance designers via MySpace" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/myspace.png" height="24"  width="24"  alt="myspace"/> <span class="head">Share via MySpace</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://promote.orkut.com/preview?nt=orkut.com&amp;du=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-work-a-lot-with-freelance-designers%2F&amp;tt=Why+I+work+a+lot+with+freelance+designers" title="Share this post : Why I work a lot with freelance designers on Orkut" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/orkut.png" height="24"  width="24" alt="orkut"/> <span class="head">Share on Orkut</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-work-a-lot-with-freelance-designers%2F&amp;title=Why+I+work+a+lot+with+freelance+designers" title="Share this post : Why I work a lot with freelance designers on Reddit" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/reddit.png" height="24"  width="24" alt="reddit"/> <span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-work-a-lot-with-freelance-designers%2F&amp;title=Why+I+work+a+lot+with+freelance+designers" title="Share this post : Why I work a lot with freelance designers with Stumblers" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/stumbleupon.png" height="24"  width="24" alt="stumbleupon"/> <span class="head">Share with Stumblers</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://twitter.com/home/?status=http%3A%2F%2Fbit.ly%2Fd6iqSW" title="Tweet this post : Why I work a lot with freelance designers on Twitter" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/twitter.png" height="24"  width="24"  alt="twitter"/> <span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://phat-reaction.com/2009/11/why-i-work-a-lot-with-freelance-designers/feed" title="Follow this post : Why I work a lot with freelance designers comments" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/rss.png" height="24"  width="24" alt="rss"/> <span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a  rel="_blank" href="mailto:?subject=Phat Reaction. : Why I work a lot with freelance designers&#038;body=What can I say, I found this cool thingy and thought of you. yes you the cool person on the address list  http://phat-reaction.com/2009/11/why-i-work-a-lot-with-freelance-designers/" title="Tell a friend about this post : Why I work a lot with freelance designers "><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/email.png" height="24"  width="24"  alt="email" /> <span class="head">tell someone</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:window.print();" title="Print this post : Why I work a lot with freelance designers for reading later" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/print.png" height="24"  width="24" alt="print"/> <span class="head">Print </span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://phat-reaction.com/2009/11/why-i-work-a-lot-with-freelance-designers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I do so much work for advertising agencies and communications beuros</title>
		<link>http://phat-reaction.com/2009/11/why-i-do-so-much-work-for-advertising-agencies-and-communications-beuros/</link>
		<comments>http://phat-reaction.com/2009/11/why-i-do-so-much-work-for-advertising-agencies-and-communications-beuros/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 12:46:31 +0000</pubDate>
		<dc:creator>Phat Reaction</dc:creator>
				<category><![CDATA[Agencies]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[agency]]></category>
		<category><![CDATA[beuro]]></category>
		<category><![CDATA[communications]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://phat-reaction.com/?p=126</guid>
		<description><![CDATA[Advertising work, yes please
I get lots of requests from Advertising agencies and communcations beuros to perform coding work for them.  This for me is great work as I get chance to show off my skills, but also for the agency it is great as&#8230;

I have no ambition to become an art director
They usually cannot afford [...]]]></description>
			<content:encoded><![CDATA[<h2>Advertising work, yes please</h2>
<p>I get lots of requests from Advertising agencies and communcations beuros to perform coding work for them.  This for me is great work as I get chance to show off my skills, but also for the agency it is great as&#8230;</p>
<ul>
<li>I have no ambition to become an art director</li>
<li>They usually cannot afford to employ a web coder full time</li>
<li>They get to pull on my RGB (screen) skills as they are use to a CMYK (print) world</li>
<li>The only staff that they can get to work in house on web things tend to have a maximum of 2 years web experience in very small situations. Not 15 years working for some of the largest corporations in the world.</li>
<li>I work to my own agenda, which can mean turning round 40hours of work in a 3 days or working at weekends.</li>
</ul>
<p>And it does not stop with just the web coding, I can also advise or install any kind of supporting hardware or software infrastructure.</p>
<p>In short, it works out great for all.</p>
<ul class="socialwrap row">
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-do-so-much-work-for-advertising-agencies-and-communications-beuros%2F&amp;title=Why+I+do+so+much+work+for+advertising+agencies+and+communications+beuros" title="Bookmark this post : Why I do so much work for advertising agencies and communications beuros on Delicious" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/delicious.png" height="24"  width="24" alt="delicious"/> <span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-do-so-much-work-for-advertising-agencies-and-communications-beuros%2F&#038;title=Why+I+do+so+much+work+for+advertising+agencies+and+communications+beuros&#038;bodytext=Advertising+work%2C+yes+please%0D%0AI+get+lots+of+requests+from+Advertising+agencies+and+communcations+beuros+to+perform+coding+work+for+them.%C2%A0+This+for+me+is+great+work+as+I+get+chance+to+show+off+my+skills%2C+but+also+for+the+agency+it+is+great+as...%0D%0A%0D%0A%09I+have+no+ambition+to+become+an+art+director%0D%0A%09They+usually+cannot+aff" title="Digg this post : Why I do so much work for advertising agencies and communications beuros" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/digg.png" height="24"  width="24" alt="digg"/> <span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-do-so-much-work-for-advertising-agencies-and-communications-beuros%2F&amp;t=Why+I+do+so+much+work+for+advertising+agencies+and+communications+beuros" title="Recommend this post : Why I do so much work for advertising agencies and communications beuros on Facebook" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/facebook.png" height="24"  width="24" alt="facebook"/> <span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-do-so-much-work-for-advertising-agencies-and-communications-beuros%2F&amp;title=Why+I+do+so+much+work+for+advertising+agencies+and+communications+beuros" title="Buzz up this post : Why I do so much work for advertising agencies and communications beuros " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/google_buzz.png" height="24"  width="24" alt="google_buzz"/> <span class="head">buzz it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-do-so-much-work-for-advertising-agencies-and-communications-beuros%2F" title="Buzz up this post : Why I do so much work for advertising agencies and communications beuros " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/yahoobuzz.png" height="24"  width="24" alt="yahoobuzz"/> <span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://hyves-share.nl/button/tip/?tipcategoryid=12&#038;rating=5&#038;title=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-do-so-much-work-for-advertising-agencies-and-communications-beuros%2F&amp;body=Why+I+do+so+much+work+for+advertising+agencies+and+communications+beuros" title="Tip this post : Why I do so much work for advertising agencies and communications beuros on Hyves" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/hyves.png" height="24"  width="24" alt="hyves"/> <span class="head">Tip on Hyves</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-do-so-much-work-for-advertising-agencies-and-communications-beuros%2F" title="Share this post : Why I do so much work for advertising agencies and communications beuros on Mixx" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/mixx.png" height="24"  width="24" alt="mixx"/> <span class="head">Mixx it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:void(window.open('http://www.myspace.com/Modules/PostTo/Pages/?u='+encodehttp%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-do-so-much-work-for-advertising-agencies-and-communications-beuros%2FComponent(document.location.toString()),'ptm','height=450,width=440').focus())" title="Share this post : Why I do so much work for advertising agencies and communications beuros via MySpace" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/myspace.png" height="24"  width="24"  alt="myspace"/> <span class="head">Share via MySpace</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://promote.orkut.com/preview?nt=orkut.com&amp;du=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-do-so-much-work-for-advertising-agencies-and-communications-beuros%2F&amp;tt=Why+I+do+so+much+work+for+advertising+agencies+and+communications+beuros" title="Share this post : Why I do so much work for advertising agencies and communications beuros on Orkut" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/orkut.png" height="24"  width="24" alt="orkut"/> <span class="head">Share on Orkut</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-do-so-much-work-for-advertising-agencies-and-communications-beuros%2F&amp;title=Why+I+do+so+much+work+for+advertising+agencies+and+communications+beuros" title="Share this post : Why I do so much work for advertising agencies and communications beuros on Reddit" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/reddit.png" height="24"  width="24" alt="reddit"/> <span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwhy-i-do-so-much-work-for-advertising-agencies-and-communications-beuros%2F&amp;title=Why+I+do+so+much+work+for+advertising+agencies+and+communications+beuros" title="Share this post : Why I do so much work for advertising agencies and communications beuros with Stumblers" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/stumbleupon.png" height="24"  width="24" alt="stumbleupon"/> <span class="head">Share with Stumblers</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://twitter.com/home/?status=http%3A%2F%2Fbit.ly%2FcKIFev" title="Tweet this post : Why I do so much work for advertising agencies and communications beuros on Twitter" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/twitter.png" height="24"  width="24"  alt="twitter"/> <span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://phat-reaction.com/2009/11/why-i-do-so-much-work-for-advertising-agencies-and-communications-beuros/feed" title="Follow this post : Why I do so much work for advertising agencies and communications beuros comments" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/rss.png" height="24"  width="24" alt="rss"/> <span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a  rel="_blank" href="mailto:?subject=Phat Reaction. : Why I do so much work for advertising agencies and communications beuros&#038;body=What can I say, I found this cool thingy and thought of you. yes you the cool person on the address list  http://phat-reaction.com/2009/11/why-i-do-so-much-work-for-advertising-agencies-and-communications-beuros/" title="Tell a friend about this post : Why I do so much work for advertising agencies and communications beuros "><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/email.png" height="24"  width="24"  alt="email" /> <span class="head">tell someone</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:window.print();" title="Print this post : Why I do so much work for advertising agencies and communications beuros for reading later" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/print.png" height="24"  width="24" alt="print"/> <span class="head">Print </span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://phat-reaction.com/2009/11/why-i-do-so-much-work-for-advertising-agencies-and-communications-beuros/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The who v. fatboy slim</title>
		<link>http://phat-reaction.com/2009/11/the-who-v-fatboy-slim/</link>
		<comments>http://phat-reaction.com/2009/11/the-who-v-fatboy-slim/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 17:21:01 +0000</pubDate>
		<dc:creator>Phat Reaction</dc:creator>
				<category><![CDATA[Mashup]]></category>
		<category><![CDATA[fatboy slim]]></category>
		<category><![CDATA[who]]></category>

		<guid isPermaLink="false">http://phat-reaction.com/?p=75</guid>
		<description><![CDATA[I was insipred the other day and decided it was time to make my first audio mashup.  I chose to use The Who &#8216;I can&#8217;t explain&#8217; and FatBoy Slim &#8216;Going out of my head&#8217;.
Phat Reaction &#8211; Who me out of my brain
It&#8217;s already got some airplay, and nothing but good vibes from all DJ&#8217;s,  [...]]]></description>
			<content:encoded><![CDATA[<p>I was insipred the other day and decided it was time to make my first audio mashup.  I chose to use The Who &#8216;I can&#8217;t explain&#8217; and FatBoy Slim &#8216;Going out of my head&#8217;.<br />
<a href="http://phat-reaction.com/audio/who-me-out-of-my-brain.mp3">Phat Reaction &#8211; Who me out of my brain</a></p>
<p>It&#8217;s already got some airplay, and nothing but good vibes from all DJ&#8217;s,  so I am dead happy.</p>
<ul class="socialwrap row">
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fthe-who-v-fatboy-slim%2F&amp;title=The+who+v.+fatboy+slim" title="Bookmark this post : The who v. fatboy slim on Delicious" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/delicious.png" height="24"  width="24" alt="delicious"/> <span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fthe-who-v-fatboy-slim%2F&#038;title=The+who+v.+fatboy+slim&#038;bodytext=I+was+insipred+the+other+day+and+decided+it+was+time+to+make+my+first+audio+mashup.++I+chose+to+use+The+Who+%27I+can%27t+explain%27+and+FatBoy+Slim+%27Going+out+of+my+head%27.%0D%0APhat+Reaction+-+Who+me+out+of+my+brain%0D%0A%0D%0AIt%27s+already+got+some+airplay%2C+and+nothing+but+good+vibes+from+all+DJ%27s%2C%C2%A0+so+I+am+dead+happy.%0D%0A%0D%0A%0D%0A" title="Digg this post : The who v. fatboy slim" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/digg.png" height="24"  width="24" alt="digg"/> <span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fthe-who-v-fatboy-slim%2F&amp;t=The+who+v.+fatboy+slim" title="Recommend this post : The who v. fatboy slim on Facebook" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/facebook.png" height="24"  width="24" alt="facebook"/> <span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fthe-who-v-fatboy-slim%2F&amp;title=The+who+v.+fatboy+slim" title="Buzz up this post : The who v. fatboy slim " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/google_buzz.png" height="24"  width="24" alt="google_buzz"/> <span class="head">buzz it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fthe-who-v-fatboy-slim%2F" title="Buzz up this post : The who v. fatboy slim " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/yahoobuzz.png" height="24"  width="24" alt="yahoobuzz"/> <span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://hyves-share.nl/button/tip/?tipcategoryid=12&#038;rating=5&#038;title=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fthe-who-v-fatboy-slim%2F&amp;body=The+who+v.+fatboy+slim" title="Tip this post : The who v. fatboy slim on Hyves" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/hyves.png" height="24"  width="24" alt="hyves"/> <span class="head">Tip on Hyves</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fthe-who-v-fatboy-slim%2F" title="Share this post : The who v. fatboy slim on Mixx" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/mixx.png" height="24"  width="24" alt="mixx"/> <span class="head">Mixx it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:void(window.open('http://www.myspace.com/Modules/PostTo/Pages/?u='+encodehttp%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fthe-who-v-fatboy-slim%2FComponent(document.location.toString()),'ptm','height=450,width=440').focus())" title="Share this post : The who v. fatboy slim via MySpace" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/myspace.png" height="24"  width="24"  alt="myspace"/> <span class="head">Share via MySpace</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://promote.orkut.com/preview?nt=orkut.com&amp;du=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fthe-who-v-fatboy-slim%2F&amp;tt=The+who+v.+fatboy+slim" title="Share this post : The who v. fatboy slim on Orkut" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/orkut.png" height="24"  width="24" alt="orkut"/> <span class="head">Share on Orkut</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fthe-who-v-fatboy-slim%2F&amp;title=The+who+v.+fatboy+slim" title="Share this post : The who v. fatboy slim on Reddit" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/reddit.png" height="24"  width="24" alt="reddit"/> <span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fthe-who-v-fatboy-slim%2F&amp;title=The+who+v.+fatboy+slim" title="Share this post : The who v. fatboy slim with Stumblers" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/stumbleupon.png" height="24"  width="24" alt="stumbleupon"/> <span class="head">Share with Stumblers</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://twitter.com/home/?status=http%3A%2F%2Fbit.ly%2FdA3xN1" title="Tweet this post : The who v. fatboy slim on Twitter" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/twitter.png" height="24"  width="24"  alt="twitter"/> <span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://phat-reaction.com/2009/11/the-who-v-fatboy-slim/feed" title="Follow this post : The who v. fatboy slim comments" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/rss.png" height="24"  width="24" alt="rss"/> <span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a  rel="_blank" href="mailto:?subject=Phat Reaction. : The who v. fatboy slim&#038;body=What can I say, I found this cool thingy and thought of you. yes you the cool person on the address list  http://phat-reaction.com/2009/11/the-who-v-fatboy-slim/" title="Tell a friend about this post : The who v. fatboy slim "><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/email.png" height="24"  width="24"  alt="email" /> <span class="head">tell someone</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:window.print();" title="Print this post : The who v. fatboy slim for reading later" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/print.png" height="24"  width="24" alt="print"/> <span class="head">Print </span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://phat-reaction.com/2009/11/the-who-v-fatboy-slim/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://phat-reaction.com/audio/who-me-out-of-my-brain.mp3" length="13725516" type="audio/mpeg" />
		</item>
		<item>
		<title>Want to be able to play video content on your PS3 without getting DLNA errors?</title>
		<link>http://phat-reaction.com/2009/11/want-to-be-able-to-play-video-content-on-your-ps3-without-getting-dlna-errors/</link>
		<comments>http://phat-reaction.com/2009/11/want-to-be-able-to-play-video-content-on-your-ps3-without-getting-dlna-errors/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 15:48:43 +0000</pubDate>
		<dc:creator>Phat Reaction</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[PlayStation 3]]></category>
		<category><![CDATA[Web Server]]></category>
		<category><![CDATA[avi]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[DLNA]]></category>
		<category><![CDATA[HD]]></category>
		<category><![CDATA[mkv]]></category>
		<category><![CDATA[mp4]]></category>
		<category><![CDATA[mt2s]]></category>
		<category><![CDATA[playstation3]]></category>

		<guid isPermaLink="false">http://phat-reaction.com/?p=68</guid>
		<description><![CDATA[Being the techie fool that I am, it was a breeze for me to setup my latop with a massive external hard disk that manages all of my video content.  The only problem I found almost instantly was that playstation3 uses DLNA to talk between the media server and the it.  DLNA is crappy at [...]]]></description>
			<content:encoded><![CDATA[<p>Being the techie fool that I am, it was a breeze for me to setup my latop with a massive external hard disk that manages all of my video content.  The only problem I found almost instantly was that playstation3 uses DLNA to talk between the media server and the it.  DLNA is crappy at the best of times and when used on my playstation in tune with TVersity I found it was all kinds of  wrong, loosing audio and video all over the place and often crashing.</p>
<p>Check out the <a href="http://phat-reaction.com/how-to-play-all-types-of-video-through-your-playstation-3-using-windows-vista-and-iis7/">full instructions</a> I made with you tube videos on how to do it.  It even covers converting from most formats into a playstation playable one.</p>
<p>Here&#8217;s a quick process overview</p>
<ul>
<li><a href="http://phat-reaction.com/how-to-play-all-types-of-video-through-your-playstation-3-using-windows-vista-and-iis7/#installing_iis">Install IIS7 on the computer</a></li>
<li><a href="http://phat-reaction.com/how-to-play-all-types-of-video-through-your-playstation-3-using-windows-vista-and-iis7/#configure_virtual_driectory">Configure a movies virtual directory</a></li>
<li><a href="http://phat-reaction.com/how-to-play-all-types-of-video-through-your-playstation-3-using-windows-vista-and-iis7/#setup_mime_types">Setup mp4, m2ts and mts mime type</a></li>
<li><a href="http://phat-reaction.com/how-to-play-all-types-of-video-through-your-playstation-3-using-windows-vista-and-iis7/#tsMuxeR">Convert mkv (HD content) files to m2ts with tsMuxeR for playstation 3</a></li>
<li><a href="http://phat-reaction.com/how-to-play-all-types-of-video-through-your-playstation-3-using-windows-vista-and-iis7/#yamb">Convert MOV (quicktime) files to mp4 h.264 with Yamb for playstation 3</a></li>
<li><a href="http://phat-reaction.com/how-to-play-all-types-of-video-through-your-playstation-3-using-windows-vista-and-iis7/#try_ps3">Playing content with PS3 internet browser</a></li>
<li><a href="http://phat-reaction.com/how-to-play-all-types-of-video-through-your-playstation-3-using-windows-vista-and-iis7/#tips">Recomendations, tips and tricks</a></li>
<li><a href="http://phat-reaction.com/how-to-play-all-types-of-video-through-your-playstation-3-using-windows-vista-and-iis7/#the_downsides">The downsides to the solution</a></li>
<li><a href="http://phat-reaction.com/how-to-play-all-types-of-video-through-your-playstation-3-using-windows-vista-and-iis7/#other_benefits">Other benefits</a></li>
</ul>
<ul class="socialwrap row">
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwant-to-be-able-to-play-video-content-on-your-ps3-without-getting-dlna-errors%2F&amp;title=Want+to+be+able+to+play+video+content+on+your+PS3+without+getting+DLNA+errors%3F" title="Bookmark this post : Want to be able to play video content on your PS3 without getting DLNA errors? on Delicious" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/delicious.png" height="24"  width="24" alt="delicious"/> <span class="head">Bookmark on Delicious</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwant-to-be-able-to-play-video-content-on-your-ps3-without-getting-dlna-errors%2F&#038;title=Want+to+be+able+to+play+video+content+on+your+PS3+without+getting+DLNA+errors%3F&#038;bodytext=Being+the+techie+fool+that+I+am%2C+it+was+a+breeze+for+me+to+setup+my+latop+with+a+massive+external+hard+disk+that+manages+all+of+my+video+content.%C2%A0+The+only+problem+I+found+almost+instantly+was+that+playstation3+uses+DLNA+to+talk+between+the+media+server+and+the+it.%C2%A0+DLNA+is+crappy+at+the+best+of+times+and+when+used+o" title="Digg this post : Want to be able to play video content on your PS3 without getting DLNA errors?" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/digg.png" height="24"  width="24" alt="digg"/> <span class="head">Digg this post</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwant-to-be-able-to-play-video-content-on-your-ps3-without-getting-dlna-errors%2F&amp;t=Want+to+be+able+to+play+video+content+on+your+PS3+without+getting+DLNA+errors%3F" title="Recommend this post : Want to be able to play video content on your PS3 without getting DLNA errors? on Facebook" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/facebook.png" height="24"  width="24" alt="facebook"/> <span class="head">Recommend on Facebook</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.google.com/reader/link?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwant-to-be-able-to-play-video-content-on-your-ps3-without-getting-dlna-errors%2F&amp;title=Want+to+be+able+to+play+video+content+on+your+PS3+without+getting+DLNA+errors%3F" title="Buzz up this post : Want to be able to play video content on your PS3 without getting DLNA errors? " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/google_buzz.png" height="24"  width="24" alt="google_buzz"/> <span class="head">buzz it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwant-to-be-able-to-play-video-content-on-your-ps3-without-getting-dlna-errors%2F" title="Buzz up this post : Want to be able to play video content on your PS3 without getting DLNA errors? " ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/yahoobuzz.png" height="24"  width="24" alt="yahoobuzz"/> <span class="head">Buzz it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://hyves-share.nl/button/tip/?tipcategoryid=12&#038;rating=5&#038;title=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwant-to-be-able-to-play-video-content-on-your-ps3-without-getting-dlna-errors%2F&amp;body=Want+to+be+able+to+play+video+content+on+your+PS3+without+getting+DLNA+errors%3F" title="Tip this post : Want to be able to play video content on your PS3 without getting DLNA errors? on Hyves" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/hyves.png" height="24"  width="24" alt="hyves"/> <span class="head">Tip on Hyves</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwant-to-be-able-to-play-video-content-on-your-ps3-without-getting-dlna-errors%2F" title="Share this post : Want to be able to play video content on your PS3 without getting DLNA errors? on Mixx" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/mixx.png" height="24"  width="24" alt="mixx"/> <span class="head">Mixx it up</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:void(window.open('http://www.myspace.com/Modules/PostTo/Pages/?u='+encodehttp%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwant-to-be-able-to-play-video-content-on-your-ps3-without-getting-dlna-errors%2FComponent(document.location.toString()),'ptm','height=450,width=440').focus())" title="Share this post : Want to be able to play video content on your PS3 without getting DLNA errors? via MySpace" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/myspace.png" height="24"  width="24"  alt="myspace"/> <span class="head">Share via MySpace</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://promote.orkut.com/preview?nt=orkut.com&amp;du=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwant-to-be-able-to-play-video-content-on-your-ps3-without-getting-dlna-errors%2F&amp;tt=Want+to+be+able+to+play+video+content+on+your+PS3+without+getting+DLNA+errors%3F" title="Share this post : Want to be able to play video content on your PS3 without getting DLNA errors? on Orkut" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/orkut.png" height="24"  width="24" alt="orkut"/> <span class="head">Share on Orkut</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwant-to-be-able-to-play-video-content-on-your-ps3-without-getting-dlna-errors%2F&amp;title=Want+to+be+able+to+play+video+content+on+your+PS3+without+getting+DLNA+errors%3F" title="Share this post : Want to be able to play video content on your PS3 without getting DLNA errors? on Reddit" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/reddit.png" height="24"  width="24" alt="reddit"/> <span class="head">share via Reddit</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fphat-reaction.com%2F2009%2F11%2Fwant-to-be-able-to-play-video-content-on-your-ps3-without-getting-dlna-errors%2F&amp;title=Want+to+be+able+to+play+video+content+on+your+PS3+without+getting+DLNA+errors%3F" title="Share this post : Want to be able to play video content on your PS3 without getting DLNA errors? with Stumblers" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/stumbleupon.png" height="24"  width="24" alt="stumbleupon"/> <span class="head">Share with Stumblers</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://twitter.com/home/?status=http%3A%2F%2Fbit.ly%2Fd2wUDb" title="Tweet this post : Want to be able to play video content on your PS3 without getting DLNA errors? on Twitter" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/twitter.png" height="24"  width="24"  alt="twitter"/> <span class="head">Tweet about it</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="http://phat-reaction.com/2009/11/want-to-be-able-to-play-video-content-on-your-ps3-without-getting-dlna-errors/feed" title="Follow this post : Want to be able to play video content on your PS3 without getting DLNA errors? comments" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/rss.png" height="24"  width="24" alt="rss"/> <span class="head">Subscribe to the comments on this post</span></a></li>
<li class="iconOnly"><a  rel="_blank" href="mailto:?subject=Phat Reaction. : Want to be able to play video content on your PS3 without getting DLNA errors?&#038;body=What can I say, I found this cool thingy and thought of you. yes you the cool person on the address list  http://phat-reaction.com/2009/11/want-to-be-able-to-play-video-content-on-your-ps3-without-getting-dlna-errors/" title="Tell a friend about this post : Want to be able to play video content on your PS3 without getting DLNA errors? "><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/email.png" height="24"  width="24"  alt="email" /> <span class="head">tell someone</span></a></li>
<li class="iconOnly"><a rel="nofollow" target="_blank" href="javascript:window.print();" title="Print this post : Want to be able to play video content on your PS3 without getting DLNA errors? for reading later" ><img src="http://phat-reaction.com/wp-content/plugins/share-and-follow/default/24/print.png" height="24"  width="24" alt="print"/> <span class="head">Print </span></a></li>
</ul>
<div class="clean"></div>
]]></content:encoded>
			<wfw:commentRss>http://phat-reaction.com/2009/11/want-to-be-able-to-play-video-content-on-your-ps3-without-getting-dlna-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
