<?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>The Tutorial Blog</title>
	<atom:link href="http://www.thetutorialblog.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thetutorialblog.com</link>
	<description></description>
	<lastBuildDate>Tue, 08 Nov 2011 19:21:58 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.7.19</generator>
<image>
<link>http://www.thetutorialblog.com</link>
<url>http://www.thetutorialblog.com/wp-content/plugins/maxblogpress-favicon/icons/favicon-28.ico</url>
<title>The Tutorial Blog</title>
</image>
	<item>
		<title>Creating a basic iPad application</title>
		<link>http://www.thetutorialblog.com/cocoa-objective-c/creating-a-basic-ipad-application/</link>
		<comments>http://www.thetutorialblog.com/cocoa-objective-c/creating-a-basic-ipad-application/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 18:47:44 +0000</pubDate>
		<dc:creator><![CDATA[Wez Pyke]]></dc:creator>
				<category><![CDATA[Cocoa/Objective-C]]></category>
		<category><![CDATA[Text Tutorials]]></category>
		<category><![CDATA[basic tutorial]]></category>
		<category><![CDATA[cocoa]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[create a basic iPad application]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[ipad app]]></category>
		<category><![CDATA[objc]]></category>
		<category><![CDATA[objective-c]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[UIKit]]></category>

		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=287</guid>
		<description><![CDATA[	<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
	Because of the recent announcement of the iPad 2 more people are going to want to learn how to develop for the iPhone OS. I recently purchased an iPad 2 3G with o2, so far the broadband has been flawless. This tutorial will be a basic walk-through for beginners who want to start developing. The [&#8230;]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
				<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fcocoa-objective-c%2Fcreating-a-basic-ipad-application%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fcocoa-objective-c%2Fcreating-a-basic-ipad-application%2F&amp;source=wezpyke&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Creating a basic iPad application" alt=" Creating a basic iPad application" /><br />
			</a>
		</div>
<p><img class="alignleft size-full wp-image-292" title="ipad" src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/ipad.jpg" alt="ipad Creating a basic iPad application" width="450" height="338" /><br />
Because of the recent announcement of the <a href="http://www.apple.com/ipad/">iPad 2</a> more people are going to want to learn how to develop for the <a href="http://en.wikipedia.org/wiki/IPhone_OS">iPhone OS</a>. I recently purchased an iPad 2 3G with <a href="http://www.o2.co.uk/">o2</a>, so far the broadband has been flawless.</p>
<p>This tutorial will be a basic walk-through for beginners who want to start developing.</p>
<p>The application that we will be creating will consist of two button and one label.<br />
<span id="more-287"></span></p>
<h2>Create a new project</h2>
<p>First of all open Xcode and click "Create a new Xcode project". Select View-based Application and then iPad as the product.<br />
<img class="alignleft size-full wp-image-288" title="screenshot1" src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/screenshot1.jpg" alt="screenshot1 Creating a basic iPad application" width="650" height="499" /></p>
<p>Save the project as Tutorial.</p>
<h2>Outlets and Actions</h2>
<p>For things such as labels and textfields we use IBOutlets and for buttons we use IBActions. IB stands for Interface Builder and is what we will use to create our interface and link the connections.</p>
<p>To add our outlets and actions open up TutorialViewController.h.</p>
<p>Under @interface TutorialViewController : UIViewController { add:</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;">IBOutlet UILabel <span style="color: #339933;">*</span>currentNumber<span style="color: #339933;">;</span></pre></div></div>

<p>Then before @end add:</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">-</span><span style="color: #009900;">&#40;</span>IBAction<span style="color: #009900;">&#41;</span>incrementNumber<span style="color: #339933;">:</span><span style="color: #009900;">&#40;</span>id<span style="color: #009900;">&#41;</span>sender<span style="color: #339933;">;</span>
<span style="color: #339933;">-</span><span style="color: #009900;">&#40;</span>IBAction<span style="color: #009900;">&#41;</span>decrementNumber<span style="color: #339933;">:</span><span style="color: #009900;">&#40;</span>id<span style="color: #009900;">&#41;</span>sender<span style="color: #339933;">;</span></pre></div></div>

<p>Save TutorialViewController.h.</p>
<h2>Create the interface and make connections</h2>
<p>Open up TutorialViewController.xib. From the library drag one labels and two buttons.<br />
<img class="alignleft size-full wp-image-289" title="screenshot2" src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/screenshot2.jpg" alt="screenshot2 Creating a basic iPad application" width="650" height="510" /></p>
<p>Control + click the File's Owner object and drag it to the label then select currentNumber; now go from the minus and plus button to the File's Owner object and select decrementNumber for the minus button and incrementNumber for the plus button.<br />
<img class="alignleft size-full wp-image-290" title="screenshot3" src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/screenshot3.jpg" alt="screenshot3 Creating a basic iPad application" width="650" height="432" /></p>
<p>Save TutorialViewController.xib and close Interface Builder.</p>
<h2>The Code</h2>
<p>Open TutorialViewController.m. Below the implementation we need to create an integer called number and set the value to 0.</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #993333;">int</span> number <span style="color: #339933;">=</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span></pre></div></div>

<p>We now need to create methods for when the increment and decrement buttons are pressed.<br />
When the increment button is pressed we will increment the number integer by 1 then set the value of currentNumber to number by using a formatted string.</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">-</span><span style="color: #009900;">&#40;</span>IBAction<span style="color: #009900;">&#41;</span>incrementNumber<span style="color: #339933;">:</span><span style="color: #009900;">&#40;</span>id<span style="color: #009900;">&#41;</span>sender <span style="color: #009900;">&#123;</span>
	number<span style="color: #339933;">++;</span>
	<span style="color: #009900;">&#91;</span>currentNumber setText<span style="color: #339933;">:</span><span style="color: #009900;">&#91;</span>NSString stringWithFormat<span style="color: #339933;">:</span>@<span style="color: #ff0000;">&quot;%d&quot;</span><span style="color: #339933;">,</span> number<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>and for decrement its the same but we decrement the number integer by 1.</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">-</span><span style="color: #009900;">&#40;</span>IBAction<span style="color: #009900;">&#41;</span>decrementNumber<span style="color: #339933;">:</span><span style="color: #009900;">&#40;</span>id<span style="color: #009900;">&#41;</span>sender <span style="color: #009900;">&#123;</span>
	number<span style="color: #339933;">-;</span>
	<span style="color: #009900;">&#91;</span>currentNumber setText<span style="color: #339933;">:</span><span style="color: #009900;">&#91;</span>NSString stringWithFormat<span style="color: #339933;">:</span>@<span style="color: #ff0000;">&quot;%d&quot;</span><span style="color: #339933;">,</span> number<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<h2>Build and Run</h2>
<p>Press the Build and Run button (command + return) and your app will compile then open.<br />
<img class="alignleft size-full wp-image-291" title="screenshot4" src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/screenshot4.jpg" alt="screenshot4 Creating a basic iPad application" width="650" height="503" /></p>
<h2>Download</h2>
<p><a href="http://bit.ly/9Kqaok">Download</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thetutorialblog.com/cocoa-objective-c/creating-a-basic-ipad-application/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>TheResourceBlog.com now launched</title>
		<link>http://www.thetutorialblog.com/general/theresourceblog-com-now-launched/</link>
		<comments>http://www.thetutorialblog.com/general/theresourceblog-com-now-launched/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 16:23:00 +0000</pubDate>
		<dc:creator><![CDATA[Wez Pyke]]></dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=346</guid>
		<description><![CDATA[	<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
	TheResourceBlog.com has now been launched and will be updated frequently with lists and resources on Web Design and Web Development related resources such as, Ruby on Rails, jQuery, WordPress, PHP Frameworks, JavaScript Libraries, iOS Frameworks and much more, be sure to check it out and subscribe to the feed. No related posts. Related posts brought [&#8230;]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
				<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fgeneral%2Ftheresourceblog-com-now-launched%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fgeneral%2Ftheresourceblog-com-now-launched%2F&amp;source=wezpyke&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="TheResourceBlog.com now launched" alt=" TheResourceBlog.com now launched" /><br />
			</a>
		</div>
<p><a href="http://www.theresourceblog.com"><img class="size-full wp-image-347 alignnone" title="TheResourceBlog" src="http://www.thetutorialblog.com/wp-content/uploads/2011/10/Screen-Shot-2011-10-26-at-17.17.36.png" alt="TheResourceBlog" width="531" height="85" /></a></p>
<p><a title="TheResourceBlog" href="http://www.theresourceblog.com">TheResourceBlog.com</a> has now been launched and will be updated frequently with lists and resources on Web Design and Web Development related resources such as, Ruby on Rails, jQuery, WordPress, PHP Frameworks, JavaScript Libraries, iOS Frameworks and much more, be sure to check it out and subscribe to the <a title="TheResourceBlog.com Feed." href="http://feeds.feedburner.com/theresourceblog">feed</a>.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thetutorialblog.com/general/theresourceblog-com-now-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Hosting Providers: How to Utilize Your cPanel to Its Fullest</title>
		<link>http://www.thetutorialblog.com/websites/web-hosting-providers-how-to-utilize-your-cpanel-to-its-fullest/</link>
		<comments>http://www.thetutorialblog.com/websites/web-hosting-providers-how-to-utilize-your-cpanel-to-its-fullest/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 23:30:44 +0000</pubDate>
		<dc:creator><![CDATA[Wez Pyke]]></dc:creator>
				<category><![CDATA[websites]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[cpanel admin]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[guest-post]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[website management]]></category>

		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=343</guid>
		<description><![CDATA[	<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
	In your web hosting account, there is what you call the cPanel, short for Control Panel. This is where you will have access to everything you need to build your website and upload any necessary information and data. If you are a beginner to webhosting and cpanel use, then you should familiarize yourself with the [&#8230;]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
				<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fwebsites%2Fweb-hosting-providers-how-to-utilize-your-cpanel-to-its-fullest%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fwebsites%2Fweb-hosting-providers-how-to-utilize-your-cpanel-to-its-fullest%2F&amp;source=wezpyke&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Web Hosting Providers: How to Utilize Your cPanel to Its Fullest" alt=" Web Hosting Providers: How to Utilize Your cPanel to Its Fullest" /><br />
			</a>
		</div>
<p><img class="alignleft size-full wp-image-334" title="cpanel_logo" src="http://www.thetutorialblog.com/wp-content/uploads/2010/07/cpanel_logo.jpg" alt="cpanel logo Web Hosting Providers: How to Utilize Your cPanel to Its Fullest" width="280" height="128" /></p>
<p>In your <a href="http://www.webhostingsearch.com/review/just-host.php#/JustPlan" target="_blank">web hosting</a> account, there is what you call the cPanel, short for Control Panel. This is where you will have access to everything you need to build your website and upload any necessary information and data. If you are a beginner to webhosting and cpanel use, then you should familiarize yourself with the cpanel before you start creating your website. This will allow you to be more efficient when it comes to making any changes to your site.  <a href="http://www.how-to-build-websites.com/" target="_blank"></a></p>
<p><a href="http://www.how-to-build-websites.com/" target="_blank">Designing</a>, internet hosting, and <a href="http://websitetips.com/planmanage/" target="_blank">managing a website</a> can be a challenging course of for individuals who want such a web site, but have never earlier than hosted one on the Internet. To assist in this process, making it smoother, extra intuitive, and more accessible for the potential web site owner, a management panel program named cPanel (based mostly on Unix) is now provided by some internet hosts as part of the hosting package. This system is written and marketed by an organization of the same name.<span id="more-343"></span></p>
<p>cPanel has a number of different units of controls, all of that are usable by way of any normal net browser. The controls included are those for resellers (who're buying the website area from an information heart and re-renting it to finish users), directors, and precise web site owners. The controls make modifying and administering the web site far simpler by automating some processes, and offering a graphical management interface that is intuitive and easy to recollect, slightly than command or scripting prompts.</p>
<p>The cPanel program supports lots of the functions utilized in building and sustaining web sites, similar to MySQL, PHP, Apache, Perl, and Bind. It additionally incorporates e-mail functionalities like POP3, SMTP, and IMAP. There are additionally many add-ons which can be used to allow support of other functions for website construction and administration - though these add-ons have to be bought from the cPanel company, and aren't obtainable as free downloads as so many add-ons are.</p>
<p>Hosting with cPanel gives those who are not highly expert in web site management a transparent, simple, intuitive interface that makes their efforts much smoother and more successful. Velocity of internet hosting and maintaining the web site are each elevated drastically by cPanel, especially since it should reduce the variety of calls that must be made to technical support. The interface consists of tutorial movies for the extra complicated operations, in addition to an on-display screen assist function, providing you with higher independence from tech help folks and saving certainly one of your most worthy sources - time.</p>
<p>As you can see, your cPanel controls most of your website and you need to be able to manage it in effective way. There are many things like scripts and add-ons that you need to be aware of. This way, when you decide to make changes to anything on your website whether it be design or coding, you are efficient with your time instead of trying to look up how to do something in your cPanel account hosting provider.</p>
<p>---</p>
<p>Kirsten Ramsburg is a senior editor of <a href="http://www.webhostingsearch.com" target="_blank">Webhostingsearch.com</a>.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thetutorialblog.com/websites/web-hosting-providers-how-to-utilize-your-cpanel-to-its-fullest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix the delete item immediately bug on Mac OS X</title>
		<link>http://www.thetutorialblog.com/mac-os-x/fix-the-delete-item-immediately-bug-on-mac-os-x/</link>
		<comments>http://www.thetutorialblog.com/mac-os-x/fix-the-delete-item-immediately-bug-on-mac-os-x/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 23:47:52 +0000</pubDate>
		<dc:creator><![CDATA[Wez Pyke]]></dc:creator>
				<category><![CDATA[mac os x]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[delete trash immediately]]></category>
		<category><![CDATA[fix trash]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[trash]]></category>
		<category><![CDATA[trash bug]]></category>
		<category><![CDATA[trash error]]></category>
		<category><![CDATA[trash fix]]></category>
		<category><![CDATA[trash immediately]]></category>
		<category><![CDATA[trash problem]]></category>

		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=328</guid>
		<description><![CDATA[	<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
	For the past few weeks when I've tried to move a file to the trash I've been presented with a dialog box similar to the one above. Then it seemed like it wasn't going away and got rather annoying so I decided to look into it. When you get this error the permissions for the [&#8230;]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
				<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fmac-os-x%2Ffix-the-delete-item-immediately-bug-on-mac-os-x%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fmac-os-x%2Ffix-the-delete-item-immediately-bug-on-mac-os-x%2F&amp;source=wezpyke&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Fix the delete item immediately bug on Mac OS X" alt=" Fix the delete item immediately bug on Mac OS X" /><br />
			</a>
		</div>
<p style="text-align: left;"><img class="size-full wp-image-329 aligncenter" title="alert" src="http://www.thetutorialblog.com/wp-content/uploads/2010/06/alert.jpeg" alt=" Fix the delete item immediately bug on Mac OS X" width="472" height="145" />For the past few weeks when I've tried to move a file to the trash I've been presented with a dialog box similar to the one above. Then it seemed like it wasn't going away and got rather annoying so I decided to look into it.</p>
<p style="text-align: left;">When you get this error the permissions for the ~/.Trash file have been changed.</p>
<p style="text-align: left;"><span id="more-328"></span></p>
<h2>How to solve it</h2>
<p>To solve this problem open up Terminal and type in</p>

<div class="wp_syntax"><div class="code"><pre class="terminal" style="font-family:monospace;">sudo chmod 777 ~/.Trash</pre></div></div>

<p>This should return Trash to the way it is meant to be.</p>
<h2>Post your thoughts</h2>
<p>Have another method of how to solve this issue? Let us know in the comments below!</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thetutorialblog.com/mac-os-x/fix-the-delete-item-immediately-bug-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to gain more followers on Twitter</title>
		<link>http://www.thetutorialblog.com/twitter/how-to-gain-more-followers-on-twitter/</link>
		<comments>http://www.thetutorialblog.com/twitter/how-to-gain-more-followers-on-twitter/#comments</comments>
		<pubDate>Thu, 27 May 2010 16:34:16 +0000</pubDate>
		<dc:creator><![CDATA[Wez Pyke]]></dc:creator>
				<category><![CDATA[twitter]]></category>
		<category><![CDATA[follower]]></category>
		<category><![CDATA[followers]]></category>
		<category><![CDATA[following]]></category>
		<category><![CDATA[gain followers]]></category>
		<category><![CDATA[get followers]]></category>
		<category><![CDATA[get twitter followers]]></category>
		<category><![CDATA[more followers]]></category>
		<category><![CDATA[people]]></category>
		<category><![CDATA[reach more followers]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=321</guid>
		<description><![CDATA[	<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
	Twitter is one of the biggest websites in social media and is only going to grow bigger. I've been on Twitter for a few years now and have learned a few tips to help grow your following and be more influential. Follow Following other people can increase your following because they may follow you back. [&#8230;]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
				<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thetutorialblog.com%2Ftwitter%2Fhow-to-gain-more-followers-on-twitter%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thetutorialblog.com%2Ftwitter%2Fhow-to-gain-more-followers-on-twitter%2F&amp;source=wezpyke&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="How to gain more followers on Twitter" alt=" How to gain more followers on Twitter" /><br />
			</a>
		</div>
<p style="text-align: center;"><img class="size-full wp-image-322 aligncenter" title="twitter_logo" src="http://www.thetutorialblog.com/wp-content/uploads/2010/05/twitter_logo.gif" alt="twitter logo How to gain more followers on Twitter" width="477" height="200" /></p>
<p>Twitter is one of the biggest websites in social media and is only going to grow bigger. I've been on Twitter for a few years now and have learned a few tips to help grow your following and be more influential.</p>
<h2>Follow</h2>
<p>Following other people can increase your following because they may follow you back. Not everyone will follow you back but a good majority of people will.</p>
<h2>Reply</h2>
<p>If someone sends you an @ reply always make sure to reply to it. If you don't reply to them but are replying to other people then they may get fed up and unfollow you. Also send an @ reply to random people if they ask a question and they may return the favor to you by following.<span id="more-321"></span></p>
<h2>Email</h2>
<p>A good method to pick up new followers is when you email somebody always have a link to your Twitter account, if the person you are emailing is on Twitter they may follow you.</p>
<h2>Website</h2>
<p>It is always a good thing to link to your Twitter account from your website or blog. People who like what you write about can see where you are most of the time and it also allows them to connect with you.</p>
<h2>Business</h2>
<p>If you have a business card then it'd be great to include your Twitter username because this allows for people to easily re-connect with you.</p>
<h2>Comments</h2>
<p>When posting a comment on a blog, instead of posting a link to your website, why not link to your Twitter profile? This will increase the visibility of your Twitter profile on the internet and will probably result in more followers.</p>
<h2>Follow Back</h2>
<p>If somebody follows you and they are not a bot then return the follow and see how you can connect with that person in different ways to build a relationship.</p>
<h2>Clothing</h2>
<p>If you want to really increase the visibility of your Twitter account in the real world then why not get a shirt or any other kind of clothing printed with your Twitter username, you never know how many followers you may be walking passed each day.</p>
<h2>ReTweet</h2>
<p>Retweeting people's links is a great way to get them to follow you, if somebody Retweets a link of mine and I am not following them, I will follow them as a way of saying thanks.</p>
<h2>Share your tips</h2>
<p>What do you find works for you in gaining more followers? Share your tips below with other readers.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thetutorialblog.com/twitter/how-to-gain-more-followers-on-twitter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Focus on applications in Mac OS X with Isolator</title>
		<link>http://www.thetutorialblog.com/general/focus-on-applications-in-mac-os-x-with-isolator/</link>
		<comments>http://www.thetutorialblog.com/general/focus-on-applications-in-mac-os-x-with-isolator/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 15:34:35 +0000</pubDate>
		<dc:creator><![CDATA[Wez Pyke]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[concentrate]]></category>
		<category><![CDATA[concentration]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[isolator]]></category>
		<category><![CDATA[mac os x]]></category>

		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=317</guid>
		<description><![CDATA[	<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
	All us Mac OS X users know that it can sometimes get confusing and be hard to concentrate when we have a lot of windows open. To prevent this confusion we can use Isolator. With Isolator you can activate it and disable it as you like by click the icon in the menubar or using [&#8230;]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
				<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fgeneral%2Ffocus-on-applications-in-mac-os-x-with-isolator%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fgeneral%2Ffocus-on-applications-in-mac-os-x-with-isolator%2F&amp;source=wezpyke&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Focus on applications in Mac OS X with Isolator" alt=" Focus on applications in Mac OS X with Isolator" /><br />
			</a>
		</div>
<p><img src="http://www.thetutorialblog.com/wp-content/uploads/2010/03/Isolator.jpg" alt="Isolator Focus on applications in Mac OS X with Isolator" title="Isolator" width="650" height="406" class="alignleft size-full wp-image-319" /><br />
All us Mac OS X users know that it can sometimes get confusing and be hard to concentrate when we have a lot of windows open. To prevent this confusion we can use <a href="http://willmore.eu/software/isolator/">Isolator</a>. With Isolator you can activate it and disable it as you like by click the icon in the menubar or using the shortcut key command + I.</p>
<p>Isolator allows you to concentrate on the frontmost window and you can either blur the other windows in the background or overlay another color.</p>
<p>Isolator is a Mac OS X only application and is free.</p>
<p>You can find more information and download it from <a id="o40l" title="here" href="http://willmore.eu/software/isolator/">here</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thetutorialblog.com/general/focus-on-applications-in-mac-os-x-with-isolator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keep the Mac OS X Menubar visible on secondary monitor</title>
		<link>http://www.thetutorialblog.com/general/keep-the-mac-os-x-menubar-visible-on-secondary-monitor/</link>
		<comments>http://www.thetutorialblog.com/general/keep-the-mac-os-x-menubar-visible-on-secondary-monitor/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 01:31:37 +0000</pubDate>
		<dc:creator><![CDATA[Wez Pyke]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[dual displays]]></category>
		<category><![CDATA[dual monitors]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[menubar]]></category>
		<category><![CDATA[secondary monitor]]></category>
		<category><![CDATA[secondbar]]></category>

		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=314</guid>
		<description><![CDATA[	<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
	Secondbar If there is one of very few problems about Mac OS X, then a menubar not being visible on a secondary monitor when you connect another display to your Mac is certainly one of those problems. I recently stumbled across Secondbar while browsing about the internet. It is such a useful tool and I [&#8230;]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
				<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fgeneral%2Fkeep-the-mac-os-x-menubar-visible-on-secondary-monitor%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fgeneral%2Fkeep-the-mac-os-x-menubar-visible-on-secondary-monitor%2F&amp;source=wezpyke&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Keep the Mac OS X Menubar visible on secondary monitor" alt=" Keep the Mac OS X Menubar visible on secondary monitor" /><br />
			</a>
		</div>
<p><a href="http://blog.boastr.net/?page_id=79"><img src="http://www.thetutorialblog.com/wp-content/uploads/2010/03/secondbar.jpg" alt="secondbar Keep the Mac OS X Menubar visible on secondary monitor" title="secondbar" width="650" height="376" class="alignleft size-full wp-image-315" /></a></p>
<h2><a href="http://blog.boastr.net/?page_id=79">Secondbar</a></h2>
<p>If there is one of very few problems about Mac OS X, then a menubar not being visible on a secondary monitor when you connect another display to your Mac is certainly one of those problems.</p>
<p>I recently stumbled across <a href="http://blog.boastr.net/?page_id=79">Secondbar</a> while browsing about the internet. It is such a useful tool and I will be using it constantly now that I've found it, just so I don't have to bother pointing over to the primary monitor when using dual displays just to access the menubar.</p>
<h2>Let us know!</h2>
<p>If you know of any other utilities that make the workflow of a Mac, Windows or Linux machine even better then post a comment to let us know.</p>
<h2>If you found this useful then please tweet this and share it with your followers</h2>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thetutorialblog.com/general/keep-the-mac-os-x-menubar-visible-on-secondary-monitor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where to host your website?</title>
		<link>http://www.thetutorialblog.com/general/where-to-host-your-website/</link>
		<comments>http://www.thetutorialblog.com/general/where-to-host-your-website/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 00:58:38 +0000</pubDate>
		<dc:creator><![CDATA[Wez Pyke]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[cheap web host]]></category>
		<category><![CDATA[domain name]]></category>
		<category><![CDATA[dot easy]]></category>
		<category><![CDATA[doteasy]]></category>
		<category><![CDATA[doteasy hosting]]></category>
		<category><![CDATA[free domain name]]></category>
		<category><![CDATA[free hosting]]></category>
		<category><![CDATA[free web host]]></category>
		<category><![CDATA[free web hosting]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[register domain name]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web host]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[webhosting]]></category>

		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=311</guid>
		<description><![CDATA[	<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
	So you’ve successfully created a design for your website… the next question is, where to actually host it. It’s often debatable on which is the best among the many web hosting providers around whether free or paid. Well, it’s really pretty simple why – because it usually depends on different factors such as, what type [&#8230;]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
				<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fgeneral%2Fwhere-to-host-your-website%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fgeneral%2Fwhere-to-host-your-website%2F&amp;source=wezpyke&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Where to host your website?" alt=" Where to host your website?" /><br />
			</a>
		</div>
<p><a href="http://www.doteasy.com/Services/WebHosting/Basic/"><img src="http://www.thetutorialblog.com/wp-content/uploads/2010/03/Doteasy_Logo_H150.png" alt="Doteasy Logo H150 Where to host your website?" title="Doteasy" width="421" height="200" class="alignleft size-full wp-image-312" /></a><br />
So you’ve successfully created a design for your website… the next question is, where to actually host it. It’s often debatable on which is the best among the many web hosting providers around whether free or paid. Well, it’s really pretty simple why – because it usually depends on different factors such as, what type of website you plan on creating and its needs. There are many offers lying around which easily confuse webmasters which one is the best for them and their site. But whether you’re making a personal or business website, uptime and reliability from a web hosting provider is always important.</p>
<p>Doteasy is among the leading web hosting companies that started since 2000. They also provide domain name registration services with over 160,000 domain users already. If you haven’t registered any name yet for your website, this would be the perfect time to do so. This is because Doteasy have a promo right now that lets you<a href="http://www.doteasy.com/Services/DomainNameRegistration/" target="_blank">register any domain name</a> like a .com,.net, .org for only $7.95. And aside from that, you already get a <a href="http://www.doteasy.com/Services/WebHosting/Basic/" target="_blank">free web hosting</a> package with a lot of useful web tools and applications that you could use for your website such as for creating a blog, forum, shopping cart and many more. Their packages are also great with small businesses websites. They also guarantee 99.9% uptime. And what’s even great about their free hosting plan is that they guarantee no ads on your site. Unlike with other free web hosts who put a lot of annoying ads on the free hosting package they provide in exchange for the free service. And if you feel you need more hosting resources for your website, you can just easily upgrade your free hosting account to one of their other packages. You can check out their other hosting plan such as their <a href="http://www.doteasy.com/Services/WebHosting/Unlimited/" target="_blank">unlimited web hosting</a> which is only for $9.95 per month. That’s still a really great deal.</p>
<p>If you like to take advantage of their current domain name registration promotion, just use the coupon code 1003BPM to register a domain.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thetutorialblog.com/general/where-to-host-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Excellent Free WordPress Themes</title>
		<link>http://www.thetutorialblog.com/wordpress/10-excellent-free-wordpress-themes/</link>
		<comments>http://www.thetutorialblog.com/wordpress/10-excellent-free-wordpress-themes/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 18:13:48 +0000</pubDate>
		<dc:creator><![CDATA[Wez Pyke]]></dc:creator>
				<category><![CDATA[lists]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[free wordpress themes]]></category>
		<category><![CDATA[wordpress layouts]]></category>
		<category><![CDATA[wordpress templates]]></category>
		<category><![CDATA[wordpress theme]]></category>
		<category><![CDATA[wordpress themes]]></category>

		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=297</guid>
		<description><![CDATA[	<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
	WordPress is one of the most used blogging software on the web. Because of the popularity that is has there are also a lot of themes; some good, some bad. In this short list you will find 10 free attractive WordPress themes. Notepad Chaos The Web News Trifecta FreeStyle One Fine Day SuperMag Irresistible Imprezz [&#8230;]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
				<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fwordpress%2F10-excellent-free-wordpress-themes%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fwordpress%2F10-excellent-free-wordpress-themes%2F&amp;source=wezpyke&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="10 Excellent Free WordPress Themes" alt=" 10 Excellent Free WordPress Themes" /><br />
			</a>
		</div>
<p><img src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/71.jpg" alt="Irresistible" title="Irresistible" width="650" height="365" class="alignleft size-full wp-image-306" /><br />
WordPress is one of the most used blogging software on the web. Because of the popularity that is has there are also a lot of themes; some good, some bad. In this short list you will find 10 free attractive WordPress themes.</p>
<h2><a href="http://wordpressthemesforfree.com/detail/484.html">Notepad Chaos</a></h2>
<p><a href="http://wordpressthemesforfree.com/detail/484.html"><img src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/110.jpg" alt="110 10 Excellent Free WordPress Themes" title="Notepad Chaos" width="650" height="341" class="alignleft size-full wp-image-298" /></a></p>
<h2><a href="http://wordpressthemesforfree.com/view/664.html">The Web News</a></h2>
<p><a href="http://wordpressthemesforfree.com/view/664.html"><img src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/21.jpg" alt="The Web News" title="The Web News" width="650" height="352" class="alignleft size-full wp-image-299" /></a></p>
<h2><a href="http://wordpressthemesforfree.com/view/172.html">Trifecta</a></h2>
<p><a href="http://wordpressthemesforfree.com/view/172.html"><img src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/31.jpg" alt="Trifecta" title="Trifecta" width="650" height="388" class="alignleft size-full wp-image-300" /></a><br />
<span id="more-297"></span></p>
<h2><a href="http://wordpressthemesforfree.com/view/635.html">FreeStyle</a></h2>
<p><a href="http://wordpressthemesforfree.com/view/635.html"><img src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/41.jpg" alt="FreeStyle" title="FreeStyle" width="650" height="352" class="alignleft size-full wp-image-302" /></a></p>
<h2><a href="http://wordpressthemesforfree.com/view/262.html">One Fine Day</a></h2>
<p><a href="http://wordpressthemesforfree.com/view/262.html"><img src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/51.jpg" alt="One Fine Day" title="One Fine Day" width="650" height="352" class="alignleft size-full wp-image-303" /></a></p>
<h2><a href="http://wordpressthemesforfree.com/view/262.html">SuperMag</a></h2>
<p><a href="http://wordpressthemesforfree.com/view/262.html"><img src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/61.jpg" alt="SuperMag" title="SuperMag" width="650" height="352" class="alignleft size-full wp-image-304" /></a></p>
<h2><a href="http://www.woothemes.com/2009/02/irresistible/">Irresistible</a></h2>
<p><a href="http://www.woothemes.com/2009/02/irresistible/"><img src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/71.jpg" alt="Irresistible" title="Irresistible" width="650" height="365" class="alignleft size-full wp-image-306" /></a></p>
<h2><a href="http://www.smashingmagazine.com/2009/03/10/download-imprezz-a-free-wordpress-theme/">Imprezz</a></h2>
<p><a href="http://www.smashingmagazine.com/2009/03/10/download-imprezz-a-free-wordpress-theme/"><img src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/81.jpg" alt="Imprezz" title="Imprezz" width="650" height="384" class="alignleft size-full wp-image-307" /></a></p>
<h2><a href="http://www.themesforblogs.com/theme/elegance-11.html">Elegance</a></h2>
<p><a href="http://www.themesforblogs.com/theme/elegance-11.html"><img src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/91.jpg" alt="Elegance" title="Elegance" width="650" height="385" class="alignleft size-full wp-image-308" /></a></p>
<h2><a href="http://www.smashingmagazine.com/2007/09/07/smashing-freefont-and-wordpress-theme/">Smashing Theme</a></h2>
<p><a href="http://www.smashingmagazine.com/2007/09/07/smashing-freefont-and-wordpress-theme/"><img src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/101.jpg" alt="Smashing Theme" title="Smashing Theme" width="650" height="370" class="alignleft size-full wp-image-309" /></a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thetutorialblog.com/wordpress/10-excellent-free-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Weekly Recap (14 Feb &#8211; 21 Feb)</title>
		<link>http://www.thetutorialblog.com/general/weekly-recap-14-feb-21-feb/</link>
		<comments>http://www.thetutorialblog.com/general/weekly-recap-14-feb-21-feb/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 15:41:57 +0000</pubDate>
		<dc:creator><![CDATA[Wez Pyke]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[cocoa]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[frameworks]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[objective-c]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[weekly recap]]></category>

		<guid isPermaLink="false">http://www.thetutorialblog.com/?p=295</guid>
		<description><![CDATA[	<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
	Here is a recap of the posts from this week. Build a Twitter-like site with CodeIgniter and jQuery Part 2 5 PHP Frameworks you may not know about Creating a basic iPad application No related posts. Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<style>
	#code_div { border: 1px solid #DFF4B5; background-color: #F0FFD2; padding-left: 50px; padding:10px;}
	</style>
	
				<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fgeneral%2Fweekly-recap-14-feb-21-feb%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.thetutorialblog.com%2Fgeneral%2Fweekly-recap-14-feb-21-feb%2F&amp;source=wezpyke&amp;style=normal&amp;service=bit.ly" height="61" width="50" title="Weekly Recap (14 Feb   21 Feb)" alt=" Weekly Recap (14 Feb   21 Feb)" /><br />
			</a>
		</div>
<p>Here is a recap of the posts from this week.</p>
<h2><a href="http://www.thetutorialblog.com/php/build-a-twitter-like-site-with-codeigniter-and-jquery-part-2/">Build a Twitter-like site with CodeIgniter and jQuery Part 2</a></h2>
<p><img src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/cijqt.jpg" alt="CodeIngiter + jQuery=twitter" title="CodeIngiter + jQuery=twitter" width="471" height="211" class="alignleft size-full wp-image-257" /></p>
<h2><a href="http://www.thetutorialblog.com/php/5-php-frameworks-you-may-not-know-about/">5 PHP Frameworks you may not know about</a></h2>
<p><img src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/php_logo.jpg" alt="php logo Weekly Recap (14 Feb   21 Feb)" title="php_logo" width="328" height="230" class="alignleft size-full wp-image-280" /></p>
<h2><a href="http://www.thetutorialblog.com/cocoa-objective-c/creating-a-basic-ipad-application/">Creating a basic iPad application</a></h2>
<p><img src="http://www.thetutorialblog.com/wp-content/uploads/2010/02/ipad.jpg" alt="ipad Weekly Recap (14 Feb   21 Feb)" title="ipad" width="450" height="338" class="alignleft size-full wp-image-292" /></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thetutorialblog.com/general/weekly-recap-14-feb-21-feb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
