<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Beyond Coding</title>
	
	<link>http://www.beyondcoding.com</link>
	<description>Follow us on Twitter: @fredwu and @scotti3g</description>
	<lastBuildDate>Tue, 10 Nov 2009 10:57:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/BeyondCodingBlog" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Using Ruby MySQL Gem with MAMP 1.8.x on Snow Leopard</title>
		<link>http://feedproxy.google.com/~r/BeyondCodingBlog/~3/CKEiv9YMHRA/</link>
		<comments>http://www.beyondcoding.com/2009/11/10/using-ruby-mysql-gem-with-mamp-1-8-x-on-snow-leopard/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 04:28:58 +0000</pubDate>
		<dc:creator>Fred Wu</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Gem]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://www.beyondcoding.com/?p=356</guid>
		<description><![CDATA[Being primarily a PHP developer, I always use an AMP package no matter what development platform I am on. So when it comes to developing Ruby/Rails applications on the same platform, I&#8217;d like to use what is already available.
Mike Boone has posted a very useful tutorial on how to get MySQL gem and MAMP 1.7.2 [...]]]></description>
			<content:encoded><![CDATA[<p>Being primarily a PHP developer, I always use an<a href="http://en.wikipedia.org/wiki/List_of_AMP_packages"> AMP package</a> no matter what development platform I am on. So when it comes to developing Ruby/Rails applications on the same platform, I&#8217;d like to use what is already available.</p>
<p>Mike Boone has posted a very useful tutorial on how to get MySQL gem and MAMP 1.7.2 up and running. So, to recap and make the tutorial compatible with Snow Leopard and MAMP 1.8.x, here is what you need to do:</p>
<ol>
<li>
		<a href="http://www.mamp.info/en/downloads/index.html">Download</a> the latest MAMP dmg file.
	</li>
<li>
		<a href="http://sourceforge.net/projects/mamp/files/mamp/">Download the 1.8.2 (or whichever the latest one you could find) components file from this page.</a>
	</li>
<li>
		Unzip, mount the dmg, then copy the MySQL source file (mysql-5.1.37.tar.gz) to somewhere on your hard drive.
	</li>
<li>
		Untar the MySQL source file, and `cd` to the source file directory.
	</li>
<li>
		Compile the library:</p>
<p>		<code><br />
		$ ./configure --with-unix-socket-path=/Applications/MAMP/tmp/mysql/mysql.sock --without-server --prefix=/Applications/MAMP/Library</p>
<p>		$ make -j2<br />
		</code>
	</li>
<li>
		Copy the compiled libraries into MAMP:</p>
<p>		<code>$ cp libmysql/.libs/*.dylib /Applications/MAMP/Library/lib/mysql</code>
	</li>
<li>
		Copy the MYSQL headers into MAMP:</p>
<p>		<code><br />
		$ mkdir /Applications/MAMP/Library/include</p>
<p>		$ cp -R include /Applications/MAMP/Library/include/mysql<br />
		</code>
	</li>
<li>
		Install the Ruby MySQL Gem, on Snow Leopard:</p>
<p>		<code><br />
		$ sudo env ARCHFLAGS="-arch x86_64" gem install mysql -- --with-mysql-config=/Applications/MAMP/Library/bin/mysql_config<br />
		</code></p>
<p>		On Leopard:</p>
<p>		<code><br />
		$ sudo env ARCHFLAGS="-arch i386" gem install mysql -- --with-mysql-config=/Applications/MAMP/Library/bin/mysql_config<br />
		</code>
	</li>
</ol>
<p>Enjoy!</p>

	Tags: <a href="http://www.beyondcoding.com/tag/gem/" title="Gem" rel="tag">Gem</a>, <a href="http://www.beyondcoding.com/tag/mysql/" title="MySQL" rel="tag">MySQL</a>, <a href="http://www.beyondcoding.com/tag/rails/" title="Rails" rel="tag">Rails</a>, <a href="http://www.beyondcoding.com/tag/ruby/" title="Ruby" rel="tag">Ruby</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.beyondcoding.com/2008/05/26/ruby-on-rails-passenger-modrails-vs-codeigniter-and-kohana/" title="Ruby on Rails, Passenger (ModRails) vs CodeIgniter and Kohana (May 26, 2008)">Ruby on Rails, Passenger (ModRails) vs CodeIgniter and Kohana</a> (14)</li>
	<li><a href="http://www.beyondcoding.com/2008/12/18/comparison-ruby-vs-php-the-pros/" title="Comparison: Ruby vs PHP, the Pros (December 18, 2008)">Comparison: Ruby vs PHP, the Pros</a> (4)</li>
	<li><a href="http://www.beyondcoding.com/2008/10/23/sequel-pro-time-to-ditch-cocoamysql-almost/" title="Sequel Pro: Time to Ditch CocoaMySQL (Almost!) (October 23, 2008)">Sequel Pro: Time to Ditch CocoaMySQL (Almost!)</a> (1)</li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=CKEiv9YMHRA:_nwI0wXWsKE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=CKEiv9YMHRA:_nwI0wXWsKE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=CKEiv9YMHRA:_nwI0wXWsKE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=CKEiv9YMHRA:_nwI0wXWsKE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=CKEiv9YMHRA:_nwI0wXWsKE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=CKEiv9YMHRA:_nwI0wXWsKE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=CKEiv9YMHRA:_nwI0wXWsKE:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=CKEiv9YMHRA:_nwI0wXWsKE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=CKEiv9YMHRA:_nwI0wXWsKE:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCodingBlog/~4/CKEiv9YMHRA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondcoding.com/2009/11/10/using-ruby-mysql-gem-with-mamp-1-8-x-on-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.beyondcoding.com/2009/11/10/using-ruby-mysql-gem-with-mamp-1-8-x-on-snow-leopard/</feedburner:origLink></item>
		<item>
		<title>Book Review: Zend Framework 1.8 Web Application Development</title>
		<link>http://feedproxy.google.com/~r/BeyondCodingBlog/~3/CiZ0lq_lD8c/</link>
		<comments>http://www.beyondcoding.com/2009/11/06/book-review-zend-framework-1-8-web-application-development/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 10:22:57 +0000</pubDate>
		<dc:creator>Fred Wu</dc:creator>
				<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[Nettuts]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://www.beyondcoding.com/?p=355</guid>
		<description><![CDATA[I wrote a quick review for the book Zend Framework 1.8 Web Application Development on Nettuts+, please go check it out if you&#8217;re looking into developing with Zend Framework. :)


	Tags: book, Nettuts, review, Zend Framework

	Related posts
	
	Zend Framework, where do you want to go tomorrow? (17)
	Zend Framework 1.5 Released (3)
	Using Zend Framework with Kohana (7)
	Using Zend [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote a quick review for the book Zend Framework 1.8 Web Application Development on <a href="http://net.tutsplus.com/articles/reviews/book-review-zend-framework-1-8-web-application-development/"><strong>Nettuts+</strong></a>, please go <a href="http://net.tutsplus.com/articles/reviews/book-review-zend-framework-1-8-web-application-development/"><strong>check it out</strong></a> if you&#8217;re looking into developing with Zend Framework. :)</p>
<p><a href="http://www.packtpub.com/zend-framework-1-8-web-application-development/mid/0911092f3trq?utm_source=beyondcoding.com&#038;utm_medium=affiliate&#038;utm_content=blog&#038;utm_campaign=mdb_001373"><img src="https://www.packtpub.com/images/100x123/1847194222.png" alt="Zend Framework 1.8 Web Application Development" /></a></p>

	Tags: <a href="http://www.beyondcoding.com/tag/book/" title="book" rel="tag">book</a>, <a href="http://www.beyondcoding.com/tag/nettuts/" title="Nettuts" rel="tag">Nettuts</a>, <a href="http://www.beyondcoding.com/tag/review/" title="review" rel="tag">review</a>, <a href="http://www.beyondcoding.com/tag/zend-framework/" title="Zend Framework" rel="tag">Zend Framework</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.beyondcoding.com/2008/07/05/zend-framework-where-do-you-want-to-go-tomorrow/" title="Zend Framework, where do you want to go tomorrow? (July 5, 2008)">Zend Framework, where do you want to go tomorrow?</a> (17)</li>
	<li><a href="http://www.beyondcoding.com/2008/03/18/zend-framework-15-released/" title="Zend Framework 1.5 Released (March 18, 2008)">Zend Framework 1.5 Released</a> (3)</li>
	<li><a href="http://www.beyondcoding.com/2008/11/14/using-zend-framework-with-kohana/" title="Using Zend Framework with Kohana (November 14, 2008)">Using Zend Framework with Kohana</a> (7)</li>
	<li><a href="http://www.beyondcoding.com/2008/02/21/using-zend-framework-with-codeigniter/" title="Using Zend Framework with CodeIgniter (February 21, 2008)">Using Zend Framework with CodeIgniter</a> (36)</li>
	<li><a href="http://www.beyondcoding.com/2009/10/29/using-zend-framework-1-8-with-kohana/" title="Using Zend Framework 1.8+ with Kohana (October 29, 2009)">Using Zend Framework 1.8+ with Kohana</a> (1)</li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=CiZ0lq_lD8c:zzqy4QJiv2A:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=CiZ0lq_lD8c:zzqy4QJiv2A:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=CiZ0lq_lD8c:zzqy4QJiv2A:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=CiZ0lq_lD8c:zzqy4QJiv2A:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=CiZ0lq_lD8c:zzqy4QJiv2A:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=CiZ0lq_lD8c:zzqy4QJiv2A:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=CiZ0lq_lD8c:zzqy4QJiv2A:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=CiZ0lq_lD8c:zzqy4QJiv2A:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=CiZ0lq_lD8c:zzqy4QJiv2A:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCodingBlog/~4/CiZ0lq_lD8c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondcoding.com/2009/11/06/book-review-zend-framework-1-8-web-application-development/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.beyondcoding.com/2009/11/06/book-review-zend-framework-1-8-web-application-development/</feedburner:origLink></item>
		<item>
		<title>Authlite 2.0 for Kohana 3.0 Alpha Testing</title>
		<link>http://feedproxy.google.com/~r/BeyondCodingBlog/~3/sMmQRwTACGY/</link>
		<comments>http://www.beyondcoding.com/2009/10/31/authlite-2-0-for-kohana-3-0-alpha-testing/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 12:04:59 +0000</pubDate>
		<dc:creator>Fred Wu</dc:creator>
				<category><![CDATA[Kohana]]></category>
		<category><![CDATA[Releases Updates]]></category>
		<category><![CDATA[Auth]]></category>
		<category><![CDATA[Authentication]]></category>
		<category><![CDATA[Authlite]]></category>

		<guid isPermaLink="false">http://www.beyondcoding.com/?p=354</guid>
		<description><![CDATA[If you are using Kohana 2.x, please use Authlite 1.x, otherwise, you are welcome to check out the new code tailored for Kohana 3.0.
Please check out the code on Github.
So far I&#8217;ve only spent a little bit of time to make it work on Kohana 3.0, but I will be addressing some known issues and [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using Kohana 2.x, please use <a href="http://www.beyondcoding.com/2009/01/21/release-kohana-module-authlite-for-user-authentication/">Authlite 1.x</a>, otherwise, you are welcome to check out the new code tailored for Kohana 3.0.</p>
<p>Please <a href="http://github.com/fredwu/authlite">check out the code on Github</a>.</p>
<p>So far I&#8217;ve only spent a little bit of time to make it work on Kohana 3.0, but I will be addressing some known issues and adding more features in the next few days. :) </p>

	Tags: <a href="http://www.beyondcoding.com/tag/auth/" title="Auth" rel="tag">Auth</a>, <a href="http://www.beyondcoding.com/tag/authentication/" title="Authentication" rel="tag">Authentication</a>, <a href="http://www.beyondcoding.com/tag/authlite/" title="Authlite" rel="tag">Authlite</a>, <a href="http://www.beyondcoding.com/tag/kohana-php/" title="Kohana" rel="tag">Kohana</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.beyondcoding.com/2009/01/21/release-kohana-module-authlite-for-user-authentication/" title="Release: [Kohana Module] Authlite, for User Authentication (January 21, 2009)">Release: [Kohana Module] Authlite, for User Authentication</a> (17)</li>
	<li><a href="http://www.beyondcoding.com/2009/03/11/yii-kohana-bridge-updated-full-kohana-flavour-now-added/" title="Yii Kohana Bridge updated: full Kohana flavour now added! (March 11, 2009)">Yii Kohana Bridge updated: full Kohana flavour now added!</a> (2)</li>
	<li><a href="http://www.beyondcoding.com/2008/11/14/using-zend-framework-with-kohana/" title="Using Zend Framework with Kohana (November 14, 2008)">Using Zend Framework with Kohana</a> (7)</li>
	<li><a href="http://www.beyondcoding.com/2008/02/21/using-zend-framework-with-codeigniter/" title="Using Zend Framework with CodeIgniter (February 21, 2008)">Using Zend Framework with CodeIgniter</a> (36)</li>
	<li><a href="http://www.beyondcoding.com/2009/10/29/using-zend-framework-1-8-with-kohana/" title="Using Zend Framework 1.8+ with Kohana (October 29, 2009)">Using Zend Framework 1.8+ with Kohana</a> (1)</li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=sMmQRwTACGY:TumE1A6y9ao:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=sMmQRwTACGY:TumE1A6y9ao:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=sMmQRwTACGY:TumE1A6y9ao:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=sMmQRwTACGY:TumE1A6y9ao:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=sMmQRwTACGY:TumE1A6y9ao:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=sMmQRwTACGY:TumE1A6y9ao:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=sMmQRwTACGY:TumE1A6y9ao:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=sMmQRwTACGY:TumE1A6y9ao:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=sMmQRwTACGY:TumE1A6y9ao:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCodingBlog/~4/sMmQRwTACGY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondcoding.com/2009/10/31/authlite-2-0-for-kohana-3-0-alpha-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.beyondcoding.com/2009/10/31/authlite-2-0-for-kohana-3-0-alpha-testing/</feedburner:origLink></item>
		<item>
		<title>Using Zend Framework 1.8+ with Kohana</title>
		<link>http://feedproxy.google.com/~r/BeyondCodingBlog/~3/0i3oXvQwsEM/</link>
		<comments>http://www.beyondcoding.com/2009/10/29/using-zend-framework-1-8-with-kohana/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 10:12:49 +0000</pubDate>
		<dc:creator>Fred Wu</dc:creator>
				<category><![CDATA[Kohana]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[autoload]]></category>
		<category><![CDATA[integration]]></category>

		<guid isPermaLink="false">http://www.beyondcoding.com/?p=353</guid>
		<description><![CDATA[Even though the method outlined in my previous post would still work, I thought I&#8217;d post a cleaner one to handle the auto-load of Zend Framework classes in Kohana.
The code works with Zend Framework 1.8+, where a new Autoloader class has been introduced.
You can put the code in an appropriate place in your application, it [...]]]></description>
			<content:encoded><![CDATA[<p>Even though the method outlined in my <a href="http://www.beyondcoding.com/2008/11/14/using-zend-framework-with-kohana/">previous post</a> would still work, I thought I&#8217;d post a cleaner one to handle the auto-load of Zend Framework classes in Kohana.</p>
<p>The code works with Zend Framework 1.8+, where a new <a href="http://framework.zend.com/manual/en/zend.loader.autoloader.html">Autoloader class</a> has been introduced.</p>
<p>You can put the code in an appropriate place in your application, it could be in the base controller, or if you&#8217;re using Kohana 3.0, in the bootstrap file.</p>
<p>You now no longer need to manually &#8216;include/require&#8217; Zend Framework files. :)</p>
<pre class="brush: php;">
if ($path = Kohana::find_file('vendors', 'Zend/Loader'))
{
	ini_set('include_path',
	ini_get('include_path').PATH_SEPARATOR.dirname(dirname($path)));

	require_once 'Zend/Loader/Autoloader.php';
	Zend_Loader_Autoloader::getInstance();
}
</pre>

	Tags: <a href="http://www.beyondcoding.com/tag/autoload/" title="autoload" rel="tag">autoload</a>, <a href="http://www.beyondcoding.com/tag/integration/" title="integration" rel="tag">integration</a>, <a href="http://www.beyondcoding.com/tag/kohana-php/" title="Kohana" rel="tag">Kohana</a>, <a href="http://www.beyondcoding.com/tag/zend-framework/" title="Zend Framework" rel="tag">Zend Framework</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.beyondcoding.com/2008/11/14/using-zend-framework-with-kohana/" title="Using Zend Framework with Kohana (November 14, 2008)">Using Zend Framework with Kohana</a> (7)</li>
	<li><a href="http://www.beyondcoding.com/2009/03/11/yii-kohana-bridge-updated-full-kohana-flavour-now-added/" title="Yii Kohana Bridge updated: full Kohana flavour now added! (March 11, 2009)">Yii Kohana Bridge updated: full Kohana flavour now added!</a> (2)</li>
	<li><a href="http://www.beyondcoding.com/2008/02/21/using-zend-framework-with-codeigniter/" title="Using Zend Framework with CodeIgniter (February 21, 2008)">Using Zend Framework with CodeIgniter</a> (36)</li>
	<li><a href="http://www.beyondcoding.com/2009/03/06/release-yii-extension-yii-kohana-bridge-use-kohana-helpers-in-yii/" title="Release: [Yii Extension] Yii Kohana Bridge, use Kohana helpers in Yii! (March 6, 2009)">Release: [Yii Extension] Yii Kohana Bridge, use Kohana helpers in Yii!</a> (0)</li>
	<li><a href="http://www.beyondcoding.com/2008/02/23/notes-on-choosing-a-php-framework-a-quick-comparison-of-codeigniter-and-kohana/" title="Notes on Choosing a PHP Framework: A Quick Comparison of CodeIgniter and Kohana (February 23, 2008)">Notes on Choosing a PHP Framework: A Quick Comparison of CodeIgniter and Kohana</a> (48)</li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=0i3oXvQwsEM:_vKNE_SYsj8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=0i3oXvQwsEM:_vKNE_SYsj8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=0i3oXvQwsEM:_vKNE_SYsj8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=0i3oXvQwsEM:_vKNE_SYsj8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=0i3oXvQwsEM:_vKNE_SYsj8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=0i3oXvQwsEM:_vKNE_SYsj8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=0i3oXvQwsEM:_vKNE_SYsj8:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=0i3oXvQwsEM:_vKNE_SYsj8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=0i3oXvQwsEM:_vKNE_SYsj8:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCodingBlog/~4/0i3oXvQwsEM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondcoding.com/2009/10/29/using-zend-framework-1-8-with-kohana/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.beyondcoding.com/2009/10/29/using-zend-framework-1-8-with-kohana/</feedburner:origLink></item>
		<item>
		<title>IE 6 Must Die, But Which Browser For Me?</title>
		<link>http://feedproxy.google.com/~r/BeyondCodingBlog/~3/c_vwHnh7yic/</link>
		<comments>http://www.beyondcoding.com/2009/10/18/ie-6-must-die-but-which-browser-for-me/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 05:43:04 +0000</pubDate>
		<dc:creator>Fred Wu</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[IE6]]></category>

		<guid isPermaLink="false">http://www.beyondcoding.com/?p=352</guid>
		<description><![CDATA[I am starting to develop some little and big projects, one inevitable question is: do I support IE6?
Well, my personal take is, I will *try* to make my sites and apps compatible with IE6, but only if the consequences (i.e. increased development time and code complexity) are negligible.
Naturally, I would want to direct my IE6 [...]]]></description>
			<content:encoded><![CDATA[<p>I am starting to develop some little and big projects, one inevitable question is: do I support IE6?</p>
<p>Well, my personal take is, I will *try* to make my sites and apps compatible with IE6, but only if the consequences (i.e. increased development time and code complexity) are negligible.</p>
<p>Naturally, I would want to direct my IE6 users to a &#8220;stop IE6 / save the developers&#8221; kind of site, encouraging them to upgrade their browser. After some quick Google searches, I can&#8217;t actually find one that is simple and pretty.</p>
<p>So, I reinvented the wheels. Meet <a href="http://whichbrowserforme.org/">WhichBrowserForMe.org</a>!</p>
<p>Please spread the site around and tweet about it, so more and more web developers and designers can start using it, and hopefully more and more users will become aware of the fact that using IE6 is a bad thing.</p>

	Tags: <a href="http://www.beyondcoding.com/tag/browser/" title="browser" rel="tag">browser</a>, <a href="http://www.beyondcoding.com/tag/ie6/" title="IE6" rel="tag">IE6</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=c_vwHnh7yic:UYCjZYihsv4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=c_vwHnh7yic:UYCjZYihsv4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=c_vwHnh7yic:UYCjZYihsv4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=c_vwHnh7yic:UYCjZYihsv4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=c_vwHnh7yic:UYCjZYihsv4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=c_vwHnh7yic:UYCjZYihsv4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=c_vwHnh7yic:UYCjZYihsv4:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=c_vwHnh7yic:UYCjZYihsv4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=c_vwHnh7yic:UYCjZYihsv4:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCodingBlog/~4/c_vwHnh7yic" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondcoding.com/2009/10/18/ie-6-must-die-but-which-browser-for-me/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://www.beyondcoding.com/2009/10/18/ie-6-must-die-but-which-browser-for-me/</feedburner:origLink></item>
		<item>
		<title>Wuit – building web applications that make sense</title>
		<link>http://feedproxy.google.com/~r/BeyondCodingBlog/~3/r7SwsQYZ7xY/</link>
		<comments>http://www.beyondcoding.com/2009/10/16/wuit-building-web-applications-that-make-sense/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 04:38:37 +0000</pubDate>
		<dc:creator>Fred Wu</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[commercial]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[sign up]]></category>
		<category><![CDATA[teaser]]></category>
		<category><![CDATA[wuit]]></category>

		<guid isPermaLink="false">http://www.beyondcoding.com/?p=351</guid>
		<description><![CDATA[Okay, here is a *very* early teaser, please check out Wuit. Make sure you sign up for the notification, we will inform you about our products and services once they become available.
In a nutshell, Wuit will develop a series of open source and commercial applications, stay tuned. :-)
Meanwhile, please feel free to follow us: @wuitcom, [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, here is a *very* early teaser, please check out <a href="http://wuit.com/">Wuit</a>. Make sure you sign up for the notification, we will inform you about our products and services once they become available.</p>
<p>In a nutshell, Wuit will develop a series of open source and commercial applications, stay tuned. :-)</p>
<p>Meanwhile, please feel free to follow us: <a href="http://twitter.com/wuitcom">@wuitcom</a>, <a href="http://twitter.com/fredwu">@fredwu</a> and <a href="http://twitter.com/scotti3g">@scotti3g</a>.</p>

	Tags: <a href="http://www.beyondcoding.com/tag/commercial/" title="commercial" rel="tag">commercial</a>, <a href="http://www.beyondcoding.com/tag/open-source/" title="open source" rel="tag">open source</a>, <a href="http://www.beyondcoding.com/tag/sign-up/" title="sign up" rel="tag">sign up</a>, <a href="http://www.beyondcoding.com/tag/teaser/" title="teaser" rel="tag">teaser</a>, <a href="http://www.beyondcoding.com/tag/wuit/" title="wuit" rel="tag">wuit</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.beyondcoding.com/2009/02/17/why-should-linux-triumph-over-windows/" title="Why should Linux triumph over Windows? (February 17, 2009)">Why should Linux triumph over Windows?</a> (13)</li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=r7SwsQYZ7xY:pAiWKXptBpk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=r7SwsQYZ7xY:pAiWKXptBpk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=r7SwsQYZ7xY:pAiWKXptBpk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=r7SwsQYZ7xY:pAiWKXptBpk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=r7SwsQYZ7xY:pAiWKXptBpk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=r7SwsQYZ7xY:pAiWKXptBpk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=r7SwsQYZ7xY:pAiWKXptBpk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=r7SwsQYZ7xY:pAiWKXptBpk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=r7SwsQYZ7xY:pAiWKXptBpk:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCodingBlog/~4/r7SwsQYZ7xY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondcoding.com/2009/10/16/wuit-building-web-applications-that-make-sense/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.beyondcoding.com/2009/10/16/wuit-building-web-applications-that-make-sense/</feedburner:origLink></item>
		<item>
		<title>PageRank not Working – Here’s a Fix</title>
		<link>http://feedproxy.google.com/~r/BeyondCodingBlog/~3/WJ67vsQ63Fc/</link>
		<comments>http://www.beyondcoding.com/2009/10/13/pagerank-not-working-heres-a-fix/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 13:21:15 +0000</pubDate>
		<dc:creator>scotti3g</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google Sidewiki]]></category>
		<category><![CDATA[Google Toolbar]]></category>

		<guid isPermaLink="false">http://www.beyondcoding.com/?p=348</guid>
		<description><![CDATA[I reinstalled my Google Toolbar in Firefox recently to check out some of the newer features that might impact SEO and brand reputation (such as Google Sidewiki). Unfortunately doing so caused the PageRank feature of the toolbar to stop working. Reinstalling and restarting didn&#8217;t help but here&#8217;s what did (courtesy of this post):

Enter &#8220;about:config&#8221; into [...]]]></description>
			<content:encoded><![CDATA[<p>I reinstalled my Google Toolbar in Firefox recently to check out some of the newer features that might impact SEO and brand reputation (such as <a href="http://www.google.com/sidewiki/intl/en/index.html">Google Sidewiki</a>). Unfortunately doing so caused the PageRank feature of the toolbar to stop working. Reinstalling and restarting didn&#8217;t help but here&#8217;s what did (courtesy of <a href="http://www.google.com/support/forum/p/Toolbar/thread?tid=561e100c4a0df7ce&amp;hl=en">this post</a>):</p>
<ol>
<li>Enter &#8220;about:config&#8221; into Firefox&#8217;s Address Bar.</li>
<li>Right-click on any item in the list of preference names, select &#8220;New,&#8221; then click &#8220;Boolean.&#8221;</li>
<li>Enter &#8220;google.toolbar.firstrun.done&#8221; as the new preference name, then click &#8220;OK.&#8221;</li>
<li>Select &#8220;True,&#8221; then click &#8220;OK.&#8221;</li>
</ol>
<p>Now my only problem is finding pages which actually have something written about them in Sidewiki. So far the only page I&#8217;ve seen with comments was the Sidewiki page itself&#8230; :)</p>

	Tags: <a href="http://www.beyondcoding.com/tag/google-sidewiki/" title="Google Sidewiki" rel="tag">Google Sidewiki</a>, <a href="http://www.beyondcoding.com/tag/google-toolbar/" title="Google Toolbar" rel="tag">Google Toolbar</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=WJ67vsQ63Fc:tO5Vwx9dOW0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=WJ67vsQ63Fc:tO5Vwx9dOW0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=WJ67vsQ63Fc:tO5Vwx9dOW0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=WJ67vsQ63Fc:tO5Vwx9dOW0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=WJ67vsQ63Fc:tO5Vwx9dOW0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=WJ67vsQ63Fc:tO5Vwx9dOW0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=WJ67vsQ63Fc:tO5Vwx9dOW0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=WJ67vsQ63Fc:tO5Vwx9dOW0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=WJ67vsQ63Fc:tO5Vwx9dOW0:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCodingBlog/~4/WJ67vsQ63Fc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondcoding.com/2009/10/13/pagerank-not-working-heres-a-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.beyondcoding.com/2009/10/13/pagerank-not-working-heres-a-fix/</feedburner:origLink></item>
		<item>
		<title>jQuery Slideshow Lite Plugin Updated (Major Rewrite)</title>
		<link>http://feedproxy.google.com/~r/BeyondCodingBlog/~3/nC5I35sZ2os/</link>
		<comments>http://www.beyondcoding.com/2009/08/29/jquery-slideshow-lite-plugin-updated-major-rewrite/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 12:49:50 +0000</pubDate>
		<dc:creator>Fred Wu</dc:creator>
				<category><![CDATA[Releases Updates]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[slideshow]]></category>

		<guid isPermaLink="false">http://www.beyondcoding.com/?p=345</guid>
		<description><![CDATA[The jQuery Slideshow Lite plugin is updated with new features!
This is a major rewrite which fixed the known issue of not being able to change slides instantly via pagination clicks.
The new version also adds automatic photo caption display.
Enjoy! :)

	Tags: gallery, image, javascript, jQuery, photo, plugin, slideshow

	Related posts
	
	Release: [jQuery Plugin] Slideshow Lite (36)
	Release: [jQuery Plugin] Endless [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.beyondcoding.com/2009/08/04/release-jquery-plugin-slideshow-lite/">jQuery Slideshow Lite</a> plugin is updated with new features!</p>
<p>This is a major rewrite which fixed the known issue of not being able to change slides instantly via pagination clicks.</p>
<p>The new version also adds automatic photo caption display.</p>
<p>Enjoy! :)</p>

	Tags: <a href="http://www.beyondcoding.com/tag/gallery/" title="gallery" rel="tag">gallery</a>, <a href="http://www.beyondcoding.com/tag/image/" title="image" rel="tag">image</a>, <a href="http://www.beyondcoding.com/tag/javascript/" title="javascript" rel="tag">javascript</a>, <a href="http://www.beyondcoding.com/tag/jquery/" title="jQuery" rel="tag">jQuery</a>, <a href="http://www.beyondcoding.com/tag/photo/" title="photo" rel="tag">photo</a>, <a href="http://www.beyondcoding.com/tag/plugin/" title="plugin" rel="tag">plugin</a>, <a href="http://www.beyondcoding.com/tag/slideshow/" title="slideshow" rel="tag">slideshow</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.beyondcoding.com/2009/08/04/release-jquery-plugin-slideshow-lite/" title="Release: [jQuery Plugin] Slideshow Lite (August 4, 2009)">Release: [jQuery Plugin] Slideshow Lite</a> (36)</li>
	<li><a href="http://www.beyondcoding.com/2009/01/15/release-jquery-plugin-endless-scroll/" title="Release: [jQuery Plugin] Endless Scroll (January 15, 2009)">Release: [jQuery Plugin] Endless Scroll</a> (29)</li>
	<li><a href="http://www.beyondcoding.com/2008/02/24/wordpress-plugins-recommendation-list/" title="Wordpress Plugins Recommendation List (February 24, 2008)">Wordpress Plugins Recommendation List</a> (2)</li>
	<li><a href="http://www.beyondcoding.com/2007/12/16/release-wordpress-plugin-syntaxhighlighter-plus/" title="Release: [Wordpress Plugin] SyntaxHighlighter Plus (December 16, 2007)">Release: [Wordpress Plugin] SyntaxHighlighter Plus</a> (181)</li>
	<li><a href="http://www.beyondcoding.com/2007/12/15/oh-where-did-my-theme-go/" title="Oh, where did my theme go? (December 15, 2007)">Oh, where did my theme go?</a> (1)</li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=nC5I35sZ2os:WPzXprU_8fI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=nC5I35sZ2os:WPzXprU_8fI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=nC5I35sZ2os:WPzXprU_8fI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=nC5I35sZ2os:WPzXprU_8fI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=nC5I35sZ2os:WPzXprU_8fI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=nC5I35sZ2os:WPzXprU_8fI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=nC5I35sZ2os:WPzXprU_8fI:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=nC5I35sZ2os:WPzXprU_8fI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=nC5I35sZ2os:WPzXprU_8fI:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCodingBlog/~4/nC5I35sZ2os" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondcoding.com/2009/08/29/jquery-slideshow-lite-plugin-updated-major-rewrite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.beyondcoding.com/2009/08/29/jquery-slideshow-lite-plugin-updated-major-rewrite/</feedburner:origLink></item>
		<item>
		<title>Branding – Russell Brand Style</title>
		<link>http://feedproxy.google.com/~r/BeyondCodingBlog/~3/ATNqGbL0sEE/</link>
		<comments>http://www.beyondcoding.com/2009/08/27/branding-russell-brand-style/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 14:10:12 +0000</pubDate>
		<dc:creator>scotti3g</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[branding]]></category>

		<guid isPermaLink="false">http://www.beyondcoding.com/?p=344</guid>
		<description><![CDATA[Russell Brand is a very good example of how to build a brand. In Russell&#8217;s case, his brand is being a lothario. In the last year I&#8217;ve seen countless articles in the Australian media referring to Russell Brand as a lothario. Lothario Russell Brand blah blah blah&#8230; you get the picture. I thought only Shakespeare [...]]]></description>
			<content:encoded><![CDATA[<p>Russell Brand is a very good example of how to build a brand. In Russell&#8217;s case, his brand is being a <em>lothario</em>. In the last year I&#8217;ve seen countless articles in the Australian media referring to Russell Brand as a <em>lothario</em>. <em>Lothario Russell Brand blah blah blah&#8230;</em> you get the picture. I thought only Shakespeare used the term <em>lothario</em> but Russell has brought it back to 2009.</p>
<p>There was even talk that the way Russ wooed a girl while waiting for a ferry in Australia was staged. I wouldn&#8217;t be surprised if it was. I wouldn&#8217;t be surprised if Russ has marketing people pushing his lothario image.</p>
<p>Search for <em>lothario</em> in Google News or Goolgle Image search and you&#8217;ll no doubt see several Russell entries on the first page of each.</p>
<p>So what does all this have to do with this site? Well, <strong>if you&#8217;re developing a web app, an iPhone app or some other bit of software you can do yourself a world of favours by establishing your brand</strong>.</p>
<p>When you&#8217;re Russell Brand you can get the media to push your brand fairly easily. When you&#8217;re Joe Schmoe software developer you have to do things a little differently. <em>Media outlets will generally be more than happy to publish articles about your product of service provided your article has a unique and newsworthy spin to it (and isn&#8217;t a clear promotional article)</em>.</p>
<p>As an example, let&#8217;s keep with the <em>lothario</em> theme. Say you have a dating web site you want to get press coverage for. Instead of writing an article saying &#8220;here&#8217;s my great dating web site and you can join for free&#8221;, you might write an article on <em>celebrities that have tried internet dating</em>. Or maybe write about how <em>the number of people getting married who met on the net has jumped X% in the last 5 years</em>.</p>
<p>Whatever your angle, make it interesting, make it memorable.</p>

	Tags: <a href="http://www.beyondcoding.com/tag/branding/" title="branding" rel="tag">branding</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.beyondcoding.com/2009/06/30/yii-framework-rebranding-underway/" title="Yii Framework Rebranding Underway (June 30, 2009)">Yii Framework Rebranding Underway</a> (7)</li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=ATNqGbL0sEE:aDs5iT7JpBY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=ATNqGbL0sEE:aDs5iT7JpBY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=ATNqGbL0sEE:aDs5iT7JpBY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=ATNqGbL0sEE:aDs5iT7JpBY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=ATNqGbL0sEE:aDs5iT7JpBY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=ATNqGbL0sEE:aDs5iT7JpBY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=ATNqGbL0sEE:aDs5iT7JpBY:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=ATNqGbL0sEE:aDs5iT7JpBY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=ATNqGbL0sEE:aDs5iT7JpBY:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCodingBlog/~4/ATNqGbL0sEE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondcoding.com/2009/08/27/branding-russell-brand-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.beyondcoding.com/2009/08/27/branding-russell-brand-style/</feedburner:origLink></item>
		<item>
		<title>Cloud Hosting: Slicehost, VPS.net and Media Temple Comparison Review</title>
		<link>http://feedproxy.google.com/~r/BeyondCodingBlog/~3/gWH6YzcpliQ/</link>
		<comments>http://www.beyondcoding.com/2009/08/22/cloud-hosting-slicehost-vps-net-and-media-temple-comparison-review/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 04:53:00 +0000</pubDate>
		<dc:creator>Fred Wu</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[ispmanager]]></category>
		<category><![CDATA[linode]]></category>
		<category><![CDATA[mt]]></category>
		<category><![CDATA[plesk]]></category>
		<category><![CDATA[slicehost]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[web hosting]]></category>

		<guid isPermaLink="false">http://www.beyondcoding.com/?p=343</guid>
		<description><![CDATA[Disclaimer: The post indicates my personal opinion, all references about Envato are not official.
The word cloud is getting a lot of attention lately, almost like web 2.0. Marketing gimmick aside, I believe cloud computing does offer a tremendous amount of advantages over traditional computing environment.
At Envato, we use a number of providers for our server [...]]]></description>
			<content:encoded><![CDATA[<p><em>Disclaimer: The post indicates my personal opinion, all references about Envato are not official.</em></p>
<p>The word <em>cloud</em> is getting a lot of attention lately, almost like <em>web 2.0</em>. Marketing gimmick aside, I believe cloud computing does offer a tremendous amount of advantages over traditional computing environment.</p>
<p>At <a href="http://envato.com/">Envato</a>, we use a number of providers for our server needs. We currently have servers with <a href="http://www.mediatemple.net/">Media Temple</a>, <a href="http://www.slicehost.com/">Slicehost</a> and <a href="http://www.engineyard.com/">Engine Yard</a>.</p>
<p>Even though Envato was already using Slicehost for some of their applications, I still did my fair share of research before making a suggestion to move away from Media Temple.</p>
<p>I have eventually nailed down to three service providers: Slicehost, <a href="http://www.linode.com/">Linode</a> and <a href="http://vps.net/">VPS.net</a>.</p>
<p>For Envato, we decided to go with Slicehost, because we already have some servers there, and they offer bandwidth pooling. We would have given Linode a deeper look if they had offered backups (their backups system is still in beta).</p>
<p>Having said that, I was very very impressed by VPS.net, so I decided I should sign up anyway, for my personal projects.</p>
<p>Let&#8217;s compare the three services: Slicehost, VPS.net and Media Temple.</p>
<p><span id="more-343"></span></p>
<h3>Vertical Scalability</h3>
<p>As some of you might know, Envato serves over <a href="http://tutsplus.com/help-support/envato-faq/">12 million page views a month</a>, and is growing rapidly. Scalability is becoming more and more important to us. This is the primary reason why we opt to using cloud servers.</p>
<h4>Slicehost</h4>
<p>Slicehost is one of the first cloud VPS providers out there, they are reputable and reliable. Scalability is based on their VPS plans, which is flexible, but not flexible enough, compared to VPS.net&#8217;s offerings.</p>
<h4>VPS.net</h4>
<p>VPS.net, a new service offered by the <a href="http://www.uk2group.com/">UK2 Group</a>. Scalability is offered on a node-basis, a node consists of 0.4Ghz CPU power, 256MB RAM, 10GB storage and 250GB bandwidth. As you can see, this is much more flexible than Slicehost&#8217;s plan based approach.</p>
<h4>Media Temple</h4>
<p>Unfortunately Media Temple is very limited in terms of vertical scalability. (dv) has only three options, the most expensive one costs $150/m. If you need any more power, you&#8217;d have to fork out $750/m for a Nitro server. </p>
<h3>Virtualisation Technology</h3>
<p>Virtualisation technology usually isn&#8217;t a big deal, because for the less system-admin-minded people, they all look the same. If you&#8217;re keen to finding out the differences, have a read at <a href="http://www.hostcube.com/blog/virtuozzo-vs-xen">this post</a>. We much prefer to use Xen over Virtuozzo.</p>
<h4>Slicehost</h4>
<p>Xen.</p>
<h4>VPS.net</h4>
<p>Xen.</p>
<h4>Media Temple</h4>
<p>Virtuozzo.</p>
<h3>Automated Backups</h3>
<p>Backup is a crucial part of the server architecture. We therefore prefer a service provider that offers automated backups. This way we will have at least two offsite backups, one provided by the VPS and one by ourselves.</p>
<h4>Slicehost</h4>
<p>Slicehost offers automated backups at a premium cost compared to VPS.net. A 2GB slice costs $30/m, and that&#8217;s the most you can get. If you have a slice larger than 2GB, there is no backup service offered.</p>
<p>A maximum of three snapshot slots are offered, you can either have automated ones (daily and weekly) or manual ones.</p>
<h4>VPS.net</h4>
<p>VPS.net offers a more affordable backup solution, it only costs $5/m, for VPSes of any size.</p>
<p>You get three automated snapshots (daily, weekly and monthly) and one manual snapshot.</p>
<h4>Media Temple</h4>
<p>Media Temple does not offer any backup solutions.</p>
<h3>Control Panel</h3>
<p>Control panels help increase our productivity, so we do prefer to use them provided they don&#8217;t use up too much system resources.</p>
<p>Plesk is very similar to CPanel in terms of system resource usage, so even though it is powerful, we don&#8217;t really like it. ISPmanager on the other hand, claims to only use 10MB of system memory. I like it a lot, so I decided to use it on Slicehost. Be aware that it does have some glitches, I have found a minor issue when using with a remote database server.</p>
<h4>Slicehost</h4>
<p>No control panels are offered.</p>
<h4>VPS.net</h4>
<p>Free <a href="http://ispsystem.com/en/software/ispmanager/">ISPmanager PRO</a>.</p>
<h4>Media Temple</h4>
<p><a href="http://www.parallels.com/products/plesk/">Plesk</a>, for Nitro servers.</p>
<h3>System Images</h3>
<p>One clear advantage of using a VPS over a dedicated server, is the ability to quickly deploy and redeploy server operating systems.</p>
<h4>Slicehost</h4>
<p>Offers a wide range of operating systems, in both x86 and x64.</p>
<h4>VPS.net</h4>
<p>Offers a wide range of operating systems, in both x86 and x64.</p>
<h4>Media Temple</h4>
<p>Offers 32-bit CentOS 5 by default. I was truly shocked at this decision. The Nitro server has 8GB of RAM, you&#8217;d think that they would know people will most likely want to use more than 4GB of RAM for their MySQL server. &#8216;Switching to 64-bit is available upon request&#8217;, according to their FAQ page, but why? Why don&#8217;t they make 64-bit the default?</p>
<h3>VPS Controls</h3>
<p>Same as the operating system, a VPS usually comes with handy tools to start/stop/reboot the server.</p>
<h4>Slicehost</h4>
<p>Soft reboot / hard reboot / image rebuild.</p>
<h4>VPS.net</h4>
<p>Graceful shutdown / force power off / graceful reboot. The rebuild feature is estimated to be available in September. I still find it weird that this feature is not built-in in the first place.</p>
<h4>Media Temple</h4>
<p>Reboot / reinstall (revert to default setup).</p>
<h3>DNS Management</h3>
<p>All three providers offer DNS management.</p>
<h4>Slicehost</h4>
<p>To put simply, Slicehost offers an awful awful interface for DNS management. We have a bunch of domains we need to migrate over, and I find it extremely irritating to click back and forth between pages. Terrible, terrible user experience.</p>
<h4>VPS.net</h4>
<p>VPS.net&#8217;s DNS management interface is a delight to use!</p>
<h4>Media Temple</h4>
<p>Media Temple&#8217;s DNS management interface is also very nice!</p>
<h3>Billing</h3>
<p>Is usage calculated daily or monthly?</p>
<h4>Slicehost</h4>
<p>Monthly billing with usage calculated daily.</p>
<h4>VPS.net</h4>
<p>Monthly billing with usage calculated daily.</p>
<h4>Media Temple</h4>
<p>Monthly billing with usage calculated monthly.</p>
<h3>Account</h3>
<p>Are we allowed to have multiple logins (i.e. one person can handle the billing, another can handle the VPS management)?</p>
<h4>Slicehost</h4>
<p>Yes.</p>
<h4>VPS.net</h4>
<p>No.</p>
<h4>Media Temple</h4>
<p>Yes.</p>
<h3>Extra Features</h3>
<p>Let&#8217;s see what extra features they have. :)</p>
<h4>Slicehost</h4>
<p>Web-based console for troubleshooting, simple stats (CPU %, CPU time, Disk read/write, Network in/out), slice cloning, rescue mode, root password reset.</p>
<h4>VPS.net</h4>
<p>Web-based console for troubleshooting, CPU usage charts, bandwidth charts, scheduled upgrades (temporary resource burst), additional IP addresses, dotDefender WebApp Firewall, Cannybill, one-time managed service.</p>
<h4>Media Temple</h4>
<p>Bandwidth report (just a simple list), root password change, installation of developer tools (gcc, make, etc).</p>
<p>&#8212;</p>
<p>Overall VPS.net has more features and is well priced, I am so far very impressed. Some of the areas they could improve are:</p>
<ul>
<li>Image rebuild</li>
<li>Multiple logins under the same account</li>
<li>Root password reset</li>
</ul>
<p>Let&#8217;s hope competition drives better products. :)</p>
<p>*Disclaimer* I am not affiliated with any of the providers mentioned in this post.</p>

	Tags: <a href="http://www.beyondcoding.com/tag/cloud/" title="cloud" rel="tag">cloud</a>, <a href="http://www.beyondcoding.com/tag/cloud-computing/" title="cloud computing" rel="tag">cloud computing</a>, <a href="http://www.beyondcoding.com/tag/comparison/" title="comparison" rel="tag">comparison</a>, <a href="http://www.beyondcoding.com/tag/ispmanager/" title="ispmanager" rel="tag">ispmanager</a>, <a href="http://www.beyondcoding.com/tag/linode/" title="linode" rel="tag">linode</a>, <a href="http://www.beyondcoding.com/tag/mt/" title="mt" rel="tag">mt</a>, <a href="http://www.beyondcoding.com/tag/plesk/" title="plesk" rel="tag">plesk</a>, <a href="http://www.beyondcoding.com/tag/slicehost/" title="slicehost" rel="tag">slicehost</a>, <a href="http://www.beyondcoding.com/tag/vps/" title="VPS" rel="tag">VPS</a>, <a href="http://www.beyondcoding.com/tag/web-hosting/" title="web hosting" rel="tag">web hosting</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.beyondcoding.com/2008/02/25/benchmark-litespeed-vs-apache-php-and-plain-html/" title="Benchmark: LiteSpeed vs Apache (PHP and Plain HTML) (February 25, 2008)">Benchmark: LiteSpeed vs Apache (PHP and Plain HTML)</a> (10)</li>
	<li><a href="http://www.beyondcoding.com/2008/02/25/how-to-guide-to-install-litespeed-with-or-without-apache-on-lxadmin-host-in-a-box/" title="[How-To] Guide to Install LiteSpeed with or without Apache on LxAdmin Host-In-A-Box (February 25, 2008)">[How-To] Guide to Install LiteSpeed with or without Apache on LxAdmin Host-In-A-Box</a> (1)</li>
	<li><a href="http://www.beyondcoding.com/2008/02/23/notes-on-choosing-a-php-framework-a-quick-comparison-of-codeigniter-and-kohana/" title="Notes on Choosing a PHP Framework: A Quick Comparison of CodeIgniter and Kohana (February 23, 2008)">Notes on Choosing a PHP Framework: A Quick Comparison of CodeIgniter and Kohana</a> (48)</li>
	<li><a href="http://www.beyondcoding.com/2009/03/02/choosing-a-php-framework-round-2-yii-vs-kohana-vs-codeigniter/" title="Choosing a PHP Framework Round 2: Yii vs Kohana vs CodeIgniter (March 2, 2009)">Choosing a PHP Framework Round 2: Yii vs Kohana vs CodeIgniter</a> (39)</li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=gWH6YzcpliQ:RrW5wVOth4U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=gWH6YzcpliQ:RrW5wVOth4U:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=gWH6YzcpliQ:RrW5wVOth4U:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=gWH6YzcpliQ:RrW5wVOth4U:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=gWH6YzcpliQ:RrW5wVOth4U:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=gWH6YzcpliQ:RrW5wVOth4U:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=gWH6YzcpliQ:RrW5wVOth4U:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BeyondCodingBlog?a=gWH6YzcpliQ:RrW5wVOth4U:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BeyondCodingBlog?i=gWH6YzcpliQ:RrW5wVOth4U:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BeyondCodingBlog/~4/gWH6YzcpliQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.beyondcoding.com/2009/08/22/cloud-hosting-slicehost-vps-net-and-media-temple-comparison-review/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://www.beyondcoding.com/2009/08/22/cloud-hosting-slicehost-vps-net-and-media-temple-comparison-review/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.965 seconds. --><!-- Cached page generated by WP-Super-Cache on 2009-11-10 20:58:04 -->
