<?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>Tom&#039;s Big Box</title>
	<atom:link href="http://tomsbigbox.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tomsbigbox.com</link>
	<description>The metaphorical box belonging to Tom</description>
	<lastBuildDate>Fri, 03 Sep 2010 08:47:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Use PayPal for pay-per-post on WordPress.</title>
		<link>http://tomsbigbox.com/use-paypal-for-pay-per-post-on-wordpress/</link>
		<comments>http://tomsbigbox.com/use-paypal-for-pay-per-post-on-wordpress/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 08:47:33 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[payments]]></category>
		<category><![CDATA[PayPal]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://tomsbigbox.com/?p=939</guid>
		<description><![CDATA[As you may know I like WordPress - it's a great platform for building websites on. As you may not know is, I like PayPal - it's an easy to way to safely make quick payments online. Now you may be asking what the hell I'm on about, have I been paid by WP and...</p><a class="read-more" href="http://tomsbigbox.com/use-paypal-for-pay-per-post-on-wordpress/">Continue Reading...</a>]]></description>
			<content:encoded><![CDATA[<p>As you may know I like WordPress - it's a great platform for building websites on. As you may not know is, I like PayPal - it's an easy to way to safely make quick payments online. Now you may be asking what the hell I'm on about, have I been paid by WP and PayPal to go on about their services? Nope. Today I want to share with you an easy way to integrate these two fantastic services, to allow users of your site to pay each time they want to post on your site. For this we will be using the PayPal API, and a rather special page indeed which will allow your users to post from outside of the admin panel. If you didn't know, there is already a tutorial on doing so entitled - <a href="http://tomsbigbox.com/publishing-to-wordpress-from-outside-the-admin-panel/" target="_blank">Publishing to WordPress from outside the admin panel</a>, so go ahead and check that out, and then come back over here.</p>
<p>So first lets think about the theory behind this. We want users to go to our post-page, and then be asked to buy a token to post 1 article; we then want to send the user to PayPal, for them to pay us, and then be sent back to our site, where the same post-page now shows them everything they need to post an article. Sound good? Almost there, we need to make sure we prepare for something - say for instance the user has user paid, and there is a power-cut at their house, in that case they will have just lost the money they paid us, and will be rather angry that there is no way to get it back; so essentially we are covering for the user closing their browser without posting, having paid us. And for that we are going to enlist the help of the cookie monster! Nah, just kidding, we'll stick to just one cookie for now - which will be placed on the user's machine to tell our site that they have paid, and when they have posted we can alter the cookie to reflect that. So lets go ahead and start with our posting page, place this code above your form.</p>
<div class="code">&lt;?php<br />
if($_POST['payment_status']=="Completed"){<br />
&nbsp;&nbsp;$paid = true;<br />
}else if($_COOKIE['activeToken']=="true") {<br />
&nbsp;&nbsp;$paid = true;<br />
}else {<br />
&nbsp;&nbsp;$paid = false;<br />
}</p>
<p>if(!$paid){ ?&gt;</p>
<p>// User hasn't paid</p>
<p>&lt;php }else {  ?&gt;</p>
</div>
<p>So what do we have here? Well at the top we can see we are checking to see if a posted variable is equal to "Completed" - this is something that PayPal gives us when the user has completed their transaction. We then set the <span class="code-small">$paid</span> variable equal to true. Next we check a cookie to see if it's value is "true", and once again if this is true, we set <span class="code-small">$paid</span> equal to true. And finally if neither of the above conditions validates we simply set the variable equal to false. Next we have an if statement which runs if <span class="code-small">$paid</span> is equal to false - using the handy <span class="code-small">!</span> just before the variable. Now, after the <span class="code-small">else {</span> statement is where you will want to put your form for posting an article, but not before you enter our crazy AJAX/Cookie-goodness code which follows.</p>
<div class="code">
&lt;script type="text/javascript"&gt;<br />
&nbsp;&nbsp;$(document).ready(function(){<br />
&nbsp;&nbsp;&nbsp;&nbsp;var dataString = "cval=true";<br />
&nbsp;&nbsp;&nbsp;&nbsp;$.ajax({<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;type: "POST",<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;url: "&lt;?php bloginfo('template_url') ?&gt;/scripts/cookie.php",<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;data: dataString,<br />
&nbsp;&nbsp;&nbsp;&nbsp;});<br />
&nbsp;&nbsp;});<br />
&lt;/script&gt;</p>
<p>// Your HTML goes here</p>
<p>&lt;php } ?&gt;</p>
</div>
<p>Woah what the frick is that?! I hear you shouting. Right well lets go from the top. First off we can see that we are using JavaScript, and also jQuery - so make sure it's included, and we are also waiting for the DOM to have fully loaded everything before beginning our code. Then inside of this code we are setting up a variable named <span class="code-small">dataString</span> and setting it's value to "cval=true" - more on this soon. Then we create an AJAX call using jQuery which will POST to a URL which is in our theme folder in the scripts sub-folder, to a file named "cookie.php" the data in the variable dataString. Make sense? Hopefully it does. Now you might be thinking, but wait a moment, I don't have a file called cookie.php, and even more annoying is that I don't even have a folder called scripts in my theme directory. Well don't worry - go ahead and create a new file called <span class="code-small">cookie.php</span> in your theme directory, and if you tend to store scripts in another directory like me, go ahead and move it into that directory - just be sure to update the URL there - and if you didn't know that handy bit of code that reads <span class="code-small">&lt;?php bloginfo('template_url') ?&gt;</span> just spits out the URL of your theme's directory. Now, copy and paste the following code into your new file.</p>
<div class="code">
&lt;?php<br />
$expire = 60 * 60 * 24 * 60 + time();<br />
setcookie('activeToken', $_POST['cval'], $expire,'/');<br />
?&gt;
</div>
<p>So what does that code do? Well the first line sets up a variable named <span class="code-small">$expire</span> which holds the value of the date two months from today using some basic maths. Then we use the PHP function <span class="code-small">setcookie()</span> to create a cookie in the format setcookie(<em>name</em>,<em>value&gt;</em>,<em>expiry date</em>,<em>directory</em>) - now you might be wondering what that final "directory" bit is about - put simply that is the location where your cokkie can be read from - if you leave out this parameter you won't be able to access your cookie, except from the <span class="code-small">cookie.php</span> page you created it on - not ideal.</p>
<p>Now we have a good thing going now, but we need to think about when the user has submitted the form, and posted an article - we need to alter the cookie to tell our site that the user has used up the token he bought - simply by using the same JavaScript code that we used above, but changing "cval=true" to "cval=false". Now if you submit your main form using AJAX you can simply add this function in the <span class="code-small">success:</span> parameter, otherwise you might want to do any number of other things - using jQuery's <span class="code-small">submit()</span> function like so.</p>
<div class="code">
$("#myform").submit(function(){<br />
&nbsp;&nbsp;var dataString = "cval=false";<br />
&nbsp;&nbsp;$.ajax({<br />
&nbsp;&nbsp;&nbsp;&nbsp;type: "POST",<br />
&nbsp;&nbsp;&nbsp;&nbsp;url: "&lt;?php bloginfo('template_url') ?&gt;/scripts/cookie.php",<br />
&nbsp;&nbsp;&nbsp;&nbsp;data: dataString,<br />
&nbsp;&nbsp;});<br />
});
</div>
<p>Or you could stick the code on the page to which new post data is posted (new-post.php). Either way, you just have to ensure, that when the submit button is clicked - the cookie is set to false.</p>
<p>Now we've done nearly everything without having touched PayPal - the subject of the next section of the article; but before we begin I want to eradicate any preconceptions you may have about working with PayPal. Many people think it will be rather difficult to use PayPal in the way I am going to describe - that because you are dealing with people's money there is a greater margin for error. But this isn't the case - because at the end of the day, PayPal is the one going all the ground-work, and if it doesn't like what you are doing - it's going to tell you, so don't worry - and just go crazy! So go ahead and replace that comment we created earlier "//User hasn't paid" with the following code - kindly provided by PayPal.</p>
<div class="code">
<div id="_mcePaste">&lt;form action="https://www.paypal.com/cgi-bin/webscr?return=&lt;?php the_permalink(); ?&gt;&amp;cpp_header_image=<strong>http://example.com/myHeaderImage.jpg</strong>&amp;cbt=<strong>Return and post an article</strong>&amp;rm=2" method="post"&gt;</div>
<div id="_mcePaste">&lt;!-- Identify your business so that you can collect the payments. --&gt;</div>
<div id="_mcePaste">&lt;input type="hidden" name="business" value="<strong>name@example.com</strong>"&gt;</div>
<div></div>
<div id="_mcePaste">&lt;!-- Specify a Buy Now button. --&gt;</div>
<div id="_mcePaste">&lt;input type="hidden" name="cmd" value="_xclick"&gt;</div>
<div></div>
<div id="_mcePaste">&lt;!-- Specify details about the item that buyers will purchase. --&gt;</div>
<div id="_mcePaste">&lt;input type="hidden" name="item_name" value="Job Post Token"&gt;</div>
<div id="_mcePaste">&lt;input type="hidden" name="amount" value="<strong>1000</strong>"&gt;<br />
&lt;input type="hidden" name="currency_code" value="<strong>USD</strong>"&gt;</div>
<div></div>
<div id="_mcePaste">&lt;!-- Display the payment button. --&gt;</div>
<div id="_mcePaste">&lt;button value="Buy Posting Token"&gt;&lt;span&gt;Buy Posting Token&lt;/span&gt;&lt;/button&gt;</div>
<div id="_mcePaste">&lt;img alt="" border="0" width="1" height="1" src="https://www.paypal.com/en_US/i/scr/pixel.gif" &gt;</div>
<div id="_mcePaste">&lt;/form&gt;</div>
<div></div>
</div>
<p>So above, we have a form with a heck of a lot of information in it, but if we break it down, it's actually rather simple. Firstly we set up the form and tell it to post to PayPal's website - we also specify a number of variables to post along with it - the values of which are highlighted in bold. Firstly we have <span class="code-small">return</span> - where the user will be returned to, once payment has been completed, for this we use the page's URL, helpfully provided to us by WordPresss. Then we send it something called <span class="code-small">cpp_header_image</span> - a 90x750px image which will be used in the header - using an image of your own will make the user feel more comfortable, and looks more professional. Then a variable called - <span class="code-small">cbt</span> - which is the text used on the button which will send users back to the return URL specified above. The last variable is to do with PayPal posting values back to our page - including that of the handy <span class="code-small">payment_status</span> - so don't change that.</p>
<p>The next value highlighted in bold is an email address - this is where you should enter the email address of the PayPal account holder to which all transactions will be credited. Next is the value "1000" - which is the amount you wish to charge your users to post - in this case $1000 - may be a little pricy - you decide. The currency is also set below and is currently set to US Dollars. PayPal provides a <a href="https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&#038;content_ID=developer/e_howto_html_Appx_websitestandard_htmlvariables" target="_blank">full list of variables</a> for you to use, which is worth checking out for further customisation.</p>
<p>And that, ladies and gentlemen, is that! So now hopefully you can see just how easy it is to integrate PayPal with WordPress. As always if you have any questions/problems with the tutorial, leave a comment and let me know what you think.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://tomsbigbox.com/use-paypal-for-pay-per-post-on-wordpress/&amp;title=Use+PayPal+for+pay-per-post+on+Wordpress." rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Use+PayPal+for+pay-per-post+on+Wordpress.+-+http://b2l.me/an58k4&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://tomsbigbox.com/use-paypal-for-pay-per-post-on-wordpress/&amp;t=Use+PayPal+for+pay-per-post+on+Wordpress." rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://tomsbigbox.com/use-paypal-for-pay-per-post-on-wordpress/&amp;title=Use+PayPal+for+pay-per-post+on+Wordpress." rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://tomsbigbox.com/use-paypal-for-pay-per-post-on-wordpress/&amp;title=Use+PayPal+for+pay-per-post+on+Wordpress." rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://tomsbigbox.com/use-paypal-for-pay-per-post-on-wordpress/&amp;title=Use+PayPal+for+pay-per-post+on+Wordpress." rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://tomsbigbox.com/use-paypal-for-pay-per-post-on-wordpress/&amp;title=Use+PayPal+for+pay-per-post+on+Wordpress." rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://tomsbigbox.com/use-paypal-for-pay-per-post-on-wordpress/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://tomsbigbox.com/use-paypal-for-pay-per-post-on-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Poster Giveaway &#8211; The Winner</title>
		<link>http://tomsbigbox.com/poster-giveaway-the-winner/</link>
		<comments>http://tomsbigbox.com/poster-giveaway-the-winner/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 09:08:11 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Giveaways]]></category>
		<category><![CDATA[competition]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[poster]]></category>

		<guid isPermaLink="false">http://tomsbigbox.com/?p=931</guid>
		<description><![CDATA[The other week I posted a competition to win a fantastic prize from Digital Room, to be more specific, a chance to use (for free) their online poster maker to create 1 18x24 Poster Print, Semi Gloss / High Gloss poster. Now, luckily for those who entered TBB isn't the world's most popular blog (yet...</p><a class="read-more" href="http://tomsbigbox.com/poster-giveaway-the-winner/">Continue Reading...</a>]]></description>
			<content:encoded><![CDATA[<p>The other week I posted a competition to win a fantastic prize from Digital Room, to be more specific, a chance to use (for free) their online poster maker to create 1 18x24 Poster Print, Semi Gloss / High Gloss poster. Now, luckily for those who entered TBB isn't the world's most popular blog (yet <img src='http://tomsbigbox.com/core/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ), and so there wasn't too much competition. </p>
<p>So who won? Well thanks to a little random number generator, the winner is...</p>
<h3>Jake Culp</h3>
<p></p>
<p>Well done Jake!</p>
<p>I'd now like to say a big thank you to Digital Room for the sponsorship, and I hope you guys get to use their services at some point in the future, because they really are a fantastic company who offer a great service.</p>
<p>Thanks again to those who entered!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://tomsbigbox.com/poster-giveaway-the-winner/&amp;title=Poster+Giveaway+-+The+Winner" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Poster+Giveaway+-+The+Winner+-+http://b2l.me/agab4w&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://tomsbigbox.com/poster-giveaway-the-winner/&amp;t=Poster+Giveaway+-+The+Winner" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://tomsbigbox.com/poster-giveaway-the-winner/&amp;title=Poster+Giveaway+-+The+Winner" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://tomsbigbox.com/poster-giveaway-the-winner/&amp;title=Poster+Giveaway+-+The+Winner" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://tomsbigbox.com/poster-giveaway-the-winner/&amp;title=Poster+Giveaway+-+The+Winner" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://tomsbigbox.com/poster-giveaway-the-winner/&amp;title=Poster+Giveaway+-+The+Winner" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://tomsbigbox.com/poster-giveaway-the-winner/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://tomsbigbox.com/poster-giveaway-the-winner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Poster Giveaway</title>
		<link>http://tomsbigbox.com/poster-giveaway/</link>
		<comments>http://tomsbigbox.com/poster-giveaway/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 09:07:47 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Giveaways]]></category>
		<category><![CDATA[competition]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[poster]]></category>

		<guid isPermaLink="false">http://tomsbigbox.com/?p=924</guid>
		<description><![CDATA[It's that time again people - when the kind folks of this world decide to use me to give things away to you guys! This time I'm happy to announce that it is a poster giveaway! So what's the deal? Well the guys over at Digital Room have provided free access to their fantastic online...</p><a class="read-more" href="http://tomsbigbox.com/poster-giveaway/">Continue Reading...</a>]]></description>
			<content:encoded><![CDATA[<p>It's that time again people - when the kind folks of this world decide to use me to give things away to you guys! This time I'm happy to announce that it is a poster giveaway! So what's the deal? Well the guys over at <a href="http://digitalroom.com/" target="_blank">Digital Room</a> have provided free access to their fantastic <a href="http://www.digitalroom.com/poster-printing.html">online poster maker service</a>. Digital Room offers some fantastic services (in this case, their great online poster maker), and their work is of really high quality, but what am I giving away today you ask?</p>
<p><strong><br />
1 18x24 Poster Print<br />
Semi Gloss / High Gloss<br />
</strong></p>
<p>Isn't that great?! So now you can make yourself your very own poster to do with anything you like - whether that is boosting general awareness about your business or an upcoming event, or even if you just want a great big poster of freshly baked cookies in your office (who wouldn't?!). As always this competition is only available to US residents, 18 and over, and will run until next Tuesday - <strong>Tuesday 10th August 2010</strong>.</p>
<p>All you have to do to win is leave a comment down below - why not share what you would do with the prize? I'd love to hear some suggestions. Be sure to use your real name/email address as that's how I will be contacting the winner.</p>
<p>Good luck!</p>
<p><a href="http://www.digitalroom.com/poster-printing.html"><img src="http://tomsbigbox.com/core/wp-content/uploads/2010/08/posters.png" alt="posters" title="posters" width="428" height="246" class="aligncenter size-full wp-image-925" /></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://tomsbigbox.com/poster-giveaway/&amp;title=Poster+Giveaway" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Poster+Giveaway+-+http://b2l.me/afebqn&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://tomsbigbox.com/poster-giveaway/&amp;t=Poster+Giveaway" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://tomsbigbox.com/poster-giveaway/&amp;title=Poster+Giveaway" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://tomsbigbox.com/poster-giveaway/&amp;title=Poster+Giveaway" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://tomsbigbox.com/poster-giveaway/&amp;title=Poster+Giveaway" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://tomsbigbox.com/poster-giveaway/&amp;title=Poster+Giveaway" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://tomsbigbox.com/poster-giveaway/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://tomsbigbox.com/poster-giveaway/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>My Favourite iPad apps so far</title>
		<link>http://tomsbigbox.com/my-favourite-ipad-apps-so-far/</link>
		<comments>http://tomsbigbox.com/my-favourite-ipad-apps-so-far/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 12:59:54 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[iPad Stuff]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[best]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://tomsbigbox.com/?p=890</guid>
		<description><![CDATA[So I've had the iPad for some time now, and I've decided to make a review of a number of the apps. Now you might be asking yourself why I'm doing this, and the reason for this, is because I want people who are thinking of buying the apps, to have a more rounded view...</p><a class="read-more" href="http://tomsbigbox.com/my-favourite-ipad-apps-so-far/">Continue Reading...</a>]]></description>
			<content:encoded><![CDATA[<p>So I've had the iPad for some time now, and I've decided to make a review of a number of the apps. Now you might be asking yourself why I'm doing this, and the reason for this, is because I want people who are thinking of buying the apps, to have a more rounded view of them, instead of having some <a href="http://www.youtube.com/watch?v=v2vpvEDS00o" target="_blank">trendy bearded man</a> telling them it's the best thing since sliced bread. I've taken a load of screen shots on my iPad for a number of the apps, however the more popular ones, which need not be pictured yet again have just a tiny review. So here goes. </p>
<p><img class="left icon" alt="Twitterrific Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/twitterrific.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/twitterrific-for-twitter/id359914600?mt=8" target="_blank">Twitterrific <small>(Free)</small></a></h3>
<p>First up is my Twitter client of choice. A number of people have been banging on about how great Tweetdeck for the iPad is, however I've never liked the desktop version, and I dislike the iPad version even more. Don't get me wrong, if you want all worldly information shoved down your throat at once, you should download the app, but for me Twitterrific comes out top. Below is the landscape view for Twitterrific, you can see that it's nice and simple, and does what it says on the tin. </p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/twitterrific1.jpg"><img class="middle" alt="Twiterrific" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/twitterrific1.jpg" /></a></p>
<p>Some nice features include inline photo viewing, that is whenever someone posts an image to a popular image sharing service, there is no need to leave the app - the photo will appear in lovely popup form. Also URLs are loaded within the app using Safari, meaning when you return, you haven't lost your place in the list of tweets, and you don't have to fiddle about getting back to the app. The client also features a well polished landscape mode (see below).</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/twitterrific2.jpg"><img class="middle" alt="Twiterrific" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/twitterrific2.jpg" /></a></p>
<p>In this view you can quickly access the main time-line, as well as mentions, messages, favorites, and even search through trending topics. And if that wasn't enough the app also has a 3 second sound-byte for when new tweets are flown in - that's right, the tweeting of birds. It's the simple things which make this app great. You can also quickly view your own profile with the tap of a button in the upper right-hand corner (see below).</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/twitterrific3.jpg"><img class="middle" alt="Twiterrific" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/twitterrific3.jpg" /></a></p>
<p><img class="left icon" alt="SBP Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/skp.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/sketchbook-pro/id364253478?mt=8" target="_blank">SketchBook Pro <small>(£4.99)</small></a></h3>
<p>This is an app which has had a lot of hype surrounding it, when I first bought it, I was skeptical, thinking that drawing on the iPad might be just too odd - after all I hadn't drawn with my finger for years. But this app lives up to the hype. Everything about the app is polished and really well done, and Autodesk have done a great job. It's not the simplest of apps, but in saying that it isn't all that hard to use. For example accessing the brushes palette is as simple as swiping three fingers down, which presents you with what you see below.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/sbp1.jpg"><img class="middle" alt="SketchBook Pro" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/sbp1.jpg" /></a></p>
<p>There is an extensive list of brushes, and a nice colour wheel to play with. But this app does far more than just paint. The app allows users to create multiple layers, draw shapes, "mirror draw" (not a technical term) - basically mirrors what you draw on one side, on the other, and even export to Photoshop. When on the go this app is really useful for just getting down an idea or two when it hits you; but more than that, this app is just plain fun to use, and acts as a valuable tool when trying to send messages across quite rooms, you can see such communication bellow <img src='http://tomsbigbox.com/core/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/sbp2.jpg"><img class="middle" alt="SketchBook Pro" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/sbp2.jpg" /></a></p>
<p><img class="left icon" alt="Sorted Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/sorted.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/sorted/id363989038?mt=8" target="_blank">Sorted <small>(£0.59)</small></a></h3>
<p>Now you may not have heard of this app, but it's a hidden gem. On my Mac I use the productivity app "Things", and I must say it does a great job. But when it comes to the iPad the £11.99 ($18) price tag is a joke. Although I'm sure it's a great app, I just can't justify spending such an amount of money on what is basically a to-do list application. So I opted for Sorted, and I'm glad I did. The app itself is really simple and serves a great purpose - list making. In my case I'm off on holiday in the near future and I want to make sure I don't forget anything, and so this app is helping make sure I don't.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/sorted1.jpg"><img class="middle" alt="Sorted" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/sorted1.jpg" /></a></p>
<p>Above is the interface for selecting a list, you can swipe left or right to get to the list you want, make a new list, duplicate a list, send a list via email (in the form of bullet-points), search for an item, and finally delete a list. All pretty standard features. When you select a list you simply need only to tap "New Item", and you're away. From there you can complete, delete, edit, and rearrange your items; and on top of that you can colour code your items like so.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/sorted2.jpg"><img class="middle" alt="Sorted" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/sorted2.jpg" /></a></p>
<p>With that interface you can also set a due date and clear the coding. Once you've colour coded your item it will look like the following.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/sorted3.jpg"><img class="middle" alt="Sorted" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/sorted3.jpg" /></a></p>
<p>You are then free to set sort by priority (the red items), due date, completed, or just plain list. I really like this app because it's not trying to be your third arm, it's nice and simple, and makes making lists a heck of a lot easier.</p>
<p><img class="left icon" alt="TV Guide Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/tvguide.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3  class="subtitle"><a href="http://itunes.apple.com/gb/app/tv-guide-for-ipad/id379455139?mt=8" target="_blank">TV Guide (UK) <small>(Free)</small></a></h3>
<p>One for my fellow Britons now, the TV Guide app is the app version of the website <a href="http://tvguide.co.uk/" target="_blank">TV Guide</a> - and that's right, it functions as an EPG. The guide is really simple, allowing you to view whats on on whatever channel, and provides a synopsis of every program when you tap on it. It's a good use of space, and it's nice to have an app for it, as I use it all the time. Users can customize channel lists by deleting and adding, and also by sorting them in whatever way you see fit. Below is pictured the landscape mode of the app.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/tvguide1.jpg"><img class="middle" alt="TV Guide" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/tvguide1.jpg" /></a></p>
<p><img class="left icon" alt="WeatherBug Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/weatherbug.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/weatherbug-elite-for-ipad/id363235774?mt=8" target="_blank">WeatherBug <small>(Free)</small></a></h3>
<p>I've spent ages trying to find a good weather app, and I think I may have just found it. Weather but is a really nicely designed app, which has a map of your current location at it's heart. And although coverage may not be as comprehensive as I would like, the interface makes up for it. At the top (or on the right in landscape mode), we are shown all the current information, so things like temperature, wind chill, wind speed/direction, humidity, to name just a few, as well as the forecast for the day, and the next 6 days. You are then able to tap this forecast to view more details.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/weatherbug1.jpg"><img class="middle" alt="WeatherBug" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/weatherbug1.jpg" /></a></p>
<p>The app also allows you to observer temperature, pressure, humidity, wind speed, radar and various satellites as an overlay on the map, and alongside this provides animations as set out by the day's forecast. This is a nice feature, but again the coverage isn't as far reaching as I would have liked.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/weatherbug2.jpg"><img class="middle" alt="WeatherBug" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/weatherbug2.jpg" /></a></p>
<p>And for those of you wondering about the units - this is a setting. I've tried a number of other apps for the weather, seeing as how Apple sees fit to have an entire category dedicated to the apps, and I have found WeatherBug to be the best. The other all have minor issues that I just can't get over - some have too few features, while others act as a meteorologist's assistant - way too much information when all I want to know is the weather.</p>
<p><img class="left icon" alt="Pages Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/pages.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/pages/id361309726?mt=8" target="_blank">Pages <small>(£5.99)</small></a></h3>
<p>Right this is going to be short and sweet, as I know there are about a billion other reviews on the app, least of all from Apple. So from a user standpoint where does this app lye? Well it's excellent, and so it should be. All the controls are nice and intuitive, e.g. rotating photos is a matter of holding two fingers down on the image and then rotating - simple! Resizing images is just as easy, and when resizing from the corner handle, the image retains aspect ratio as expected.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/pages1.jpg"><img class="middle" alt="Pages" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/pages1.jpg" /></a></p>
<p>Other really nice features include the navigation - which allows you to quickly skim to any page by holding down your finger on the right hand side. Another really well made feature is the ability to add charts with fully customizable data. For example you are presented with the following view when you double tap a pie chart.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/pages2.jpg"><img class="middle" alt="Pages" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/pages2.jpg" /></a></p>
<p>This produces really nice results which look stunning. Besides from features such as the about, and customizing photo frames, the basic functionality, that is, word processing, is simple and easy to use. When you go to type, obviously the on-screen keyboard pops up, as well as the toolbar for the manipulation of text, allowing you to select justification for the text, styling sch as bold/italic/regular, and also to alter the margins, as you can see below.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/pages3.jpg"><img class="middle" alt="Pages" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/pages3.jpg" /></a></p>
<p>Overall this is a really nice app, and if you are someone who needs more than just work processing (the notes app), and who often needs to open up word/pages documents, this is a really great app for you. I should also note that you can get files onto your iPad via iTunes and Dropbox, as well as the fact that you are able to export files in .doc, .pages, and .pdf format.</p>
<p><img class="left icon" alt="Gusto Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/gusto.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/gusto/id364906873?mt=8" target="_blank">Gusto <small>(£3.99)</small></a></h3>
<p>This is a must for me personally, why? Because I often get emails from clients at 8PM asking me to "just move the footer down 10px" - and I need to be able to react to such things quickly. Gusto is an all-in-one FTP client and code editor, and allows you to easily make changes to a site at the drop of a hat. Setup is really easy - just enter a few bits of FTP info and you're off. Below is the projects view, similar to that of Coda - something I like, and obviously I've not had it for a great deal of time, and have only added Tom's Big Box.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/gusto1.jpg"><img class="middle" alt="Gusto" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/gusto1.jpg" /></a></p>
<p>After selecting a project you are taken to the editor, from that view you can easily access the FTP view of that project, and are then able to select files to upload or download. In this case I downloaded the header file for my current theme, as you can see below. The view is nice and simple, allowing you to select multiple files for downloads, as well as browse through the directories. From the view you are able to access the file's information (name, size, last modified date), as well as the ability to delete that file, and take a peek at the file's contents, which is nice and useful.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/gusto2.jpg"><img class="middle" alt="Gusto" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/gusto2.jpg" /></a></p>
<p>To edit a file you must first download it, this is a slight pain, but hardly the worst thing in the world. Once opened there are a number of options for you. First you are able to preview the file in a browser - both locally, and remotely, so if you've got server-side code such as PHP, it won't break. When you have a file open you can also hide the file browser to have a more immersive view. You can also publish the file with a tap of the finger. One thing that concerned me before buying was the iPad's keyboard, after all the greater/less than symbols aren't available without switching through views, and for me this was going to be an issue. However the clever fellows behind this great app added a bar just above the keyboard with all the commonly used symbol for web design, as you can see below. On a side note the developers have said that code highlighting is coming - so it's all good!</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/gusto3.jpg"><img class="middle" alt="Gusto" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/gusto3.jpg" /></a></p>
<p><img class="left icon" alt="Sketchy Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/sketchy.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/sketchypad/id372049989?mt=8" target="_blank">Sketchy <small>(£2.99)</small></a></h3>
<p>Next up is a tool for mocking-up websites and web applications. This is a really well put together app, and allows you to create comprehensive sketches. The app focuses around users being able to drag and drop common elements onto a canvas and then alter everything from position, size and colour. This app comes in handy when you need to quickly get an idea together for a website, and allows you to do so with speed and ease. Below is a sketch I made in about 10 minutes for an example website.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/sketchy1.jpg"><img class="middle" alt="Sketchy" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/sketchy1.jpg" /></a></p>
<p>Other features include the ability to export the sketches as images and send them via email, as well as being able to duplicate sketches. However my favorite feature of this app is the way in which alignment is handled. As with may drawing apps, Sketchy shows guide lines for alignment whenever you reposition elements - a really useful feature which means you don't have to rely on your steady finger to do with work. Below is an example of the feature in action.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/sketchy2.jpg"><img class="middle" alt="Sketchy" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/sketchy2.jpg" /></a></p>
<p><img class="left icon" alt="Ego Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/ego.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/ego-for-ipad/id367216386?mt=8" target="_blank">Ego <small>(£2.99)</small></a></h3>
<p>I've used Ego for some time on my iPod now, and I really like it - it's a simple way to track page views, subscriptions and other analytical information. So when I heard of the iPad version I downloaded straight away. The iPad version operates only in landscape mode and gives you access to widgets such as Feedburner, Mint, Google Analytics, Twitter, Vimeo, Squarespace, Tumblr, and Ember. The app has a really nice design and allows you to get an inline web view of the widget in question. So when using Mint, you will see your dashboard, and the same goes for Google Analytics. Overall this app is easy to use and gives you quick access to important information.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/ego1.jpg"><img class="middle" alt="Ego" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/ego1.jpg" /></a></p>
<p><img class="left icon" alt="Wordpress Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/wordpress.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/wordpress/id335703880?mt=8" target="_blank">WordPress <small>(Free)</small></a></h3>
<p>WordPress for iPad is a really sleep and speedy app. The app gives you access to pages, posts and comments - a modest, but correct selection. While the app won't let you make changes to plugins and so fourth, it is great for publishing to your WordPress blog. The app speaks for itself in it's simplicity and for anyone with a WP blog, it's a must download. Below are some screen-shots from the app.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/wp1.jpg"><img class="middle" alt="Wordpress" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/wp1.jpg" /></a></p>
<p>Above: post editing, nice and simple, with the ability to edit the title, tags, categories, status, content, and comments.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/wp2.jpg"><img class="middle" alt="Wordpress" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/wp2.jpg" /></a></p>
<p>Above: comments, from here you can see the comment moderation queue as well as alter existing comments.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/wp3.jpg"><img class="middle" alt="Wordpress" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/wp3.jpg" /></a></p>
<p>Above: the page editor - a simplified version of the post editor with many of the same features.</p>
<p>Overall the WordPress app is simple and well worth a download.</p>
<p><img class="left icon" alt="Weather HD Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/weatherhd.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/weather-hd/id364193735?mt=8" target="_blank">Weather HD <small>(£0.59)</small></a></h3>
<p>Now I know I've already touched on the weather apps, but I fell I should tell you about this one too. Weather HD is, as you may have guessed, a weather application, which tells you the forecast. But instead of a map and information, the app displays beautiful looping clips of similar weather to that which is currently forecast. Is this the best weather app for getting the forecast? No. But it seriously beautiful. Don't get me wrong, the app is functional, it does tell you the forecast plain and simple, but if you've got a spare bit of cash lying around, it's worth it just for the videos. Below is the video for "Chance of rain".</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/weatherhd1.jpg"><img class="middle" alt="Weather HD" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/weatherhd1.jpg" /></a></p>
<p><img class="left icon" alt="Dropbox Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/dropbox.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/dropbox/id327630330?mt=8" target="_blank">Dropbox <small>(Free)</small></a></h3>
<p>If you have a Dropbox account, you need this app. If you don't, go and <a href="https://www.dropbox.com/" target="_blank">sign up</a>, and then download the app. The app is truely awesome, and although it may just be a fancy cloud-file browser, it's done incredibly well. The basic functionality i simple - you can browse and preview files - most common file formats are supported. </p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/dropbox1.jpg"><img class="middle" alt="Dropbox" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/dropbox1.jpg" /></a></p>
<p>When you open a file you can browse through it, email a public URL to a friend, favorite the file, and best of all, open certain files with other apps; specifically word/pages documents can be opened with Pages (if installed), the same goes for presentations and spreadsheets (Keynote/Numbers). The ability to do so is really wonderful because it means you can easily find and edit files within powerful apps while on the go.</p>
<p><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/07/dropbox2.jpg"><img class="middle" alt="Dropbox" src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/dropbox2.jpg" /></a></p>
<p>The is a solid app and a must download - one thing I did try was adding a video to my Dropbox to play on my iPad - and it worked! Dropbox allows you to stream videos with ease - only limited by the amount of space in your account - so this is a really easy way of getting videos across the air. It's also important to note that you can save photos, and upload photos/videos.</p>
<p>Okay so now I'm going to quickly go through a number of other great apps that I like, but which I feel have either been heavily publicized or are self explanatory, and so don't require accompanying screen-shots.</p>
<p><img class="left icon" alt="Angry Birds HD Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/angrybirdshd.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/angry-birds-hd/id364234221?mt=8" target="_blank">Angry Birds HD <small>(£2.99)</small></a></h3>
<p>If you've ever played Angry Birds you will know just how addictive it really is, I played through on my iPod, and towards the end I noticed a lack in performance in some of the more complex levels (yes it's a 1st gen iPod <img src='http://tomsbigbox.com/core/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ). So when I got the iPad I downloaded the HD version straight away. All the graphics have been updated for the iPad, and all the performance issues have faded away as expected. Overall this is an excellent game which if you haven't tried, you should download.</p>
<p><img class="left icon" alt="Osmos HD Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/osmoshd.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/osmos-for-ipad/id379323382?mt=8" target="_blank">Osmos HD <small>(£2.99)</small></a></h3>
<p>This is a relatively new addition to the app store (despite having desktop versions around for a while), and quickly rose to the number 1 spot. I downloaded it thinking "well it's number 1, it must be good", and I was right. The only thing I didn't know when downloading, was, what the hell it was! So let me tell you quickly tell you about the game-play. Basically you are a blob, and you have to absorb blogs smaller than you to become the biggest blob. Sound like the #1 app in the app-store? No. Basically it's pretty addictive and challenging, and I recommend it, you won't be disappointed; oh and it's beautiful! </p>
<p><img class="left icon" alt="Solitaire City Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/solitairecity.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/solitaire-city-deluxe/id283436103?mt=8" target="_blank">Solitaire City (Deluxe) <small>(£3.49)</small></a></h3>
<p>Okay short and sweet. If you like solitaire, get this app. I spent a while trying to find an app with the version of the game I like the most - that is, the one featured on Windows under the name "Spider Solitaire" - and I can tell you now, it features in this app. The interface isn't dissimilar to that of the Windows version, and there a crazy amount of variations of the game - so again, if you like solitaire, get this app.</p>
<p><img class="left icon" alt="RealRacingHD Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/realracinghd.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/real-racing-hd/id363998989?mt=8" target="_blank">RealRacingHD <small>(£5.99)</small></a></h3>
<p>Now this is a game that loads of gamers talk about, and after playing it for a while I can tell you that it's truly excellent. I myself do game, but I'm hardly the world' best (far from it), but I found this game easy to use and fun. The experience is really well polished and the graphics, for a mobile device, are awesome. If you like racing games, you will love RealRacingHD, and so I recommend you get it.</p>
<p><img class="left icon" alt="TapTap Radiation Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/taptapradiation.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/tap-tap-radiation/id364160328?mt=8" target="_blank">TapTap Radiation <small>(Free)</small></a></h3>
<p>Tapulous have always produced high quality games, and Radiation is no exception. The game is really well suited to the iPad (possibly because it was designed for it?) and is really fun to play. The interface and general experience is fun and reflects the company's previous releases, and best of all, it's free!</p>
<p><img class="left icon" alt="Epicurious Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/epicurious.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/epicurious-recipes-shopping/id312101965?mt=8" target="_blank">Epicurious <small>(Free)</small></a></h3>
<p>Another app highly publicized, Epicurious is pretty cool. However it's not what I expected. The interface is really sleek and well designed, and the recipes are of good, not great, quality, with a number featuring an image. The ability to search by main ingredient is really nice too. One thing I will say is that this app is buggy as hell. It crashes all the time, and frequently won't respond to finger taps - I hope these are just teething problems, and I'm sure they will be eradicated with future updates.</p>
<p><img class="left icon" alt="IMDb Icon" src="http://tomsbigbox.com/core/wp-content/themes/simpleas/scripts/timthumb.php?src=http://tomsbigbox.com/core/wp-content/uploads/2010/07/imdb.png&#038;w=35&#038;h=35&#038;zc=0" /><br />
<h3 class="subtitle"><a href="http://itunes.apple.com/gb/app/imdb-movies-tv/id342792525?mt=8" target="_blank">IMDb <small>(Free)</small></a></h3>
<p>Yep, it's a nice app. If you want to quickly find a film or actor this is what you should use. The interface is really sleep, and it's a great reference tool. The ability to view relevant photos and videos including trailers is a nice addition, and overall I would say this is a really well build, cohesive experience.</p>
<p>And that's it! I hope you've enjoyed this list of apps, and I hope you have gained a better insight into what the above apps have to offer, I've noted things that I wanted to know before buying, as so I hope you are now better informed about at least one of the apps above. If you have any suggestions for great iPad apps, or if you agree or disagree, feel free to leave a comment, and I'll see what I can do.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://tomsbigbox.com/my-favourite-ipad-apps-so-far/&amp;title=My+Favourite+iPad+apps+so+far" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=My+Favourite+iPad+apps+so+far+-+http://b2l.me/ab4fyk&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://tomsbigbox.com/my-favourite-ipad-apps-so-far/&amp;t=My+Favourite+iPad+apps+so+far" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://tomsbigbox.com/my-favourite-ipad-apps-so-far/&amp;title=My+Favourite+iPad+apps+so+far" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://tomsbigbox.com/my-favourite-ipad-apps-so-far/&amp;title=My+Favourite+iPad+apps+so+far" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://tomsbigbox.com/my-favourite-ipad-apps-so-far/&amp;title=My+Favourite+iPad+apps+so+far" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://tomsbigbox.com/my-favourite-ipad-apps-so-far/&amp;title=My+Favourite+iPad+apps+so+far" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://tomsbigbox.com/my-favourite-ipad-apps-so-far/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://tomsbigbox.com/my-favourite-ipad-apps-so-far/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>QuickTip: Create a dotted/dashed line in Photoshop</title>
		<link>http://tomsbigbox.com/quicktip-create-a-dotteddashed-line-in-photoshop/</link>
		<comments>http://tomsbigbox.com/quicktip-create-a-dotteddashed-line-in-photoshop/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 14:20:45 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[dashed]]></category>
		<category><![CDATA[dotted]]></category>
		<category><![CDATA[draw]]></category>
		<category><![CDATA[lines]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://tomsbigbox.com/?p=876</guid>
		<description><![CDATA[More and more often nowadays I am finding the need to create dotted or dashed lines in my Photoshop mockups, but what is a ten second job in CSS, could turn out to be a ten minute job in Photoshop if you don't know how to do so easily. Before I came across the trick...</p><a class="read-more" href="http://tomsbigbox.com/quicktip-create-a-dotteddashed-line-in-photoshop/">Continue Reading...</a>]]></description>
			<content:encoded><![CDATA[<p>More and more often nowadays I am finding the need to create dotted or dashed lines in my Photoshop mockups, but what is a ten second job in CSS, could turn out to be a ten minute job in Photoshop if you don't know how to do so easily. Before I came across the trick I'm going to show you today I would do one of two things. Either just make it solid in the design and say to myself - "that there is a dotted line", or being the perfectionist that I am, go around drawing a line, and then using the marquee tool to delete every second pixel - I know crazy right?! But then I had a brainwave, why not just use the brush tool? I was working with creating some funky brush strokes when i hit me, and so now I am able to create a dotted/dashed line in seconds in Photoshop, here's how.</p>
<p>To begin select the brush tool, and open up the brush window as seen below.</p>
<p><img src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/brush1.png" alt="" title="brush1" width="344" height="476" class="alignmiddle size-full wp-image-877" /></p>
<p>Then select the width of the brish you would like to use, in this example I selected the 1px round brush. If you would like a dashed line this is the point at which to select a square brush, also if you are wanting a dashed line you will need to alter the "roundness" of the square - bare with me here. Simply reduce the roundness value until you have your desired width, as you can see below.</p>
<p><img src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/brush11.png" alt="" title="brush11" width="344" height="476" class="aligncenter size-full wp-image-879" /></p>
<p>To reduce the size simply select the preset you require. Now make sure the spacing checkbox is check and use the slider to increase the spacing dramatically, like so.</p>
<p><img src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/brush3.png" alt="" title="brush3" width="344" height="476" class="aligncenter size-full wp-image-880" /></p>
<p>Then head over to your canvas, select a colour and hold down shift while you click and drag to create your line. Holding down shift will ensure you create a straight line. Now if you want to create a dotted or dahsed line, but you don't want this line to be straight, you will need to follow a few extra steps. They are as follows. Firstly gray the pen tool and draw the shape which you want the line to follow, like so.</p>
<p><img src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/brush7.png" alt="" title="brush7" width="417" height="252" class="aligncenter size-full wp-image-881" /></p>
<p>Then right click the path and select "Stroke Path...". </p>
<p><img src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/brush8.png" alt="" title="brush8" width="375" height="350" class="aligncenter size-full wp-image-882" /></p>
<p>From the Tool menu in the dialog that presents itself, select "Brush".</p>
<p><img src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/brush9.png" alt="" title="brush9" width="491" height="178" class="aligncenter size-full wp-image-883" /></p>
<p>And then you should have successfully managed to stroke your path and created a dotted line like so.</p>
<p><img src="http://tomsbigbox.com/core/wp-content/uploads/2010/07/brush10.png" alt="" title="brush10" width="238" height="212" class="aligncenter size-full wp-image-884" /></p>
<p>And that's it! This technique is really simple and creates really nice results, and best of all, only takes a few seconds to achieve. I hope that this method will save you a good amount of time in the future when trying to design a website in Photoshop to look exactly as it will in the browser. Now if only I could create stunning designs as easily...</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://tomsbigbox.com/quicktip-create-a-dotteddashed-line-in-photoshop/&amp;title=QuickTip%3A+Create+a+dotted%2Fdashed+line+in+Photoshop" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=QuickTip%3A+Create+a+dotted%2Fdashed+line+in+Photoshop+-+http://b2l.me/aadzj7&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://tomsbigbox.com/quicktip-create-a-dotteddashed-line-in-photoshop/&amp;t=QuickTip%3A+Create+a+dotted%2Fdashed+line+in+Photoshop" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://tomsbigbox.com/quicktip-create-a-dotteddashed-line-in-photoshop/&amp;title=QuickTip%3A+Create+a+dotted%2Fdashed+line+in+Photoshop" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://tomsbigbox.com/quicktip-create-a-dotteddashed-line-in-photoshop/&amp;title=QuickTip%3A+Create+a+dotted%2Fdashed+line+in+Photoshop" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://tomsbigbox.com/quicktip-create-a-dotteddashed-line-in-photoshop/&amp;title=QuickTip%3A+Create+a+dotted%2Fdashed+line+in+Photoshop" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://tomsbigbox.com/quicktip-create-a-dotteddashed-line-in-photoshop/&amp;title=QuickTip%3A+Create+a+dotted%2Fdashed+line+in+Photoshop" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://tomsbigbox.com/quicktip-create-a-dotteddashed-line-in-photoshop/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://tomsbigbox.com/quicktip-create-a-dotteddashed-line-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screencast #4 &#8211; Creating a WordPress Theme &#8211; Part 2</title>
		<link>http://tomsbigbox.com/screencast-4-creating-a-wordpress-theme-part-2/</link>
		<comments>http://tomsbigbox.com/screencast-4-creating-a-wordpress-theme-part-2/#comments</comments>
		<pubDate>Sat, 26 Jun 2010 10:39:17 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress theme]]></category>

		<guid isPermaLink="false">http://tomsbigbox.com/?p=863</guid>
		<description><![CDATA[In part two of this tutorial I show you how to finish off creating a basic WordPress theme, demonstrating the creation of a single post page as well as looking at how the commenting system works. Also in the video is how to create custom page templates and then apply them to different pages, as...</p><a class="read-more" href="http://tomsbigbox.com/screencast-4-creating-a-wordpress-theme-part-2/">Continue Reading...</a>]]></description>
			<content:encoded><![CDATA[<p>In part two of this tutorial I show you how to finish off creating a basic WordPress theme, demonstrating the creation of a single post page as well as looking at how the commenting system works. Also in the video is how to create custom page templates and then apply them to different pages, as well as using theme options to enhance the user experience; and of course "widgetizing" the sidebar.</p>
<p>Here is the link to the <a href="http://net.tutsplus.com/tutorials/wordpress/how-to-create-a-better-wordpress-options-panel/" target="_blank">Nettuts article</a>.</p>
<p><object width="530" height="298"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=12870955&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=12870955&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="530" height="298"></embed></object></p>
<div class="buttons"><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/06/CuriosityTheme.zip" class="download left"></a><a target="_blank" href="http://tomsbigbox.com/examples/Curiosity" class="demo left"></a></div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://tomsbigbox.com/screencast-4-creating-a-wordpress-theme-part-2/&amp;title=Screencast+%234+-+Creating+a+Wordpress+Theme+-+Part+2" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Screencast+%234+-+Creating+a+Wordpress+Theme+-+Part+2+-+http://b2l.me/6tush&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://tomsbigbox.com/screencast-4-creating-a-wordpress-theme-part-2/&amp;t=Screencast+%234+-+Creating+a+Wordpress+Theme+-+Part+2" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://tomsbigbox.com/screencast-4-creating-a-wordpress-theme-part-2/&amp;title=Screencast+%234+-+Creating+a+Wordpress+Theme+-+Part+2" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://tomsbigbox.com/screencast-4-creating-a-wordpress-theme-part-2/&amp;title=Screencast+%234+-+Creating+a+Wordpress+Theme+-+Part+2" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://tomsbigbox.com/screencast-4-creating-a-wordpress-theme-part-2/&amp;title=Screencast+%234+-+Creating+a+Wordpress+Theme+-+Part+2" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://tomsbigbox.com/screencast-4-creating-a-wordpress-theme-part-2/&amp;title=Screencast+%234+-+Creating+a+Wordpress+Theme+-+Part+2" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://tomsbigbox.com/screencast-4-creating-a-wordpress-theme-part-2/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://tomsbigbox.com/screencast-4-creating-a-wordpress-theme-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screencast #3 &#8211; Creating a WordPress Theme &#8211; Part 1</title>
		<link>http://tomsbigbox.com/screencast-3-creating-a-wordpress-theme-part-1/</link>
		<comments>http://tomsbigbox.com/screencast-3-creating-a-wordpress-theme-part-1/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 22:19:45 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[making]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress theme]]></category>

		<guid isPermaLink="false">http://tomsbigbox.com/?p=840</guid>
		<description><![CDATA[In part one of this tutorial I show you how to get started creating a WordPress theme, explaining all about the core files and how WordPress works. I'll show you how to install WordPress and how to convert existing markup into a theme. In the tutorial I develop a theme named "Curiosity" - the markup...</p><a class="read-more" href="http://tomsbigbox.com/screencast-3-creating-a-wordpress-theme-part-1/">Continue Reading...</a>]]></description>
			<content:encoded><![CDATA[<p>In part one of this tutorial I show you how to get started creating a WordPress theme, explaining all about the core files and how WordPress works. I'll show you how to install WordPress and how to convert existing markup into a theme. In the tutorial I develop a theme named "Curiosity" - the markup for which can be found below the video. Part 2 is coming soon so stay tuned!</p>
<p><object width="530" height="298"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=12699627&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=12699627&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="530" height="298"></embed></object></p>
<div class="buttons"><a href="http://tomsbigbox.com/core/wp-content/uploads/2010/06/Curiosity.zip" class="download left"></a><a target="_blank" href="http://tomsbigbox.com/examples/Curiosity" class="demo left"></a></div>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://tomsbigbox.com/screencast-3-creating-a-wordpress-theme-part-1/&amp;title=Screencast+%233+-+Creating+a+Wordpress+Theme+-+Part+1" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Screencast+%233+-+Creating+a+Wordpress+Theme+-+Part+1+-+http://b2l.me/45e8f&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://tomsbigbox.com/screencast-3-creating-a-wordpress-theme-part-1/&amp;t=Screencast+%233+-+Creating+a+Wordpress+Theme+-+Part+1" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://tomsbigbox.com/screencast-3-creating-a-wordpress-theme-part-1/&amp;title=Screencast+%233+-+Creating+a+Wordpress+Theme+-+Part+1" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://tomsbigbox.com/screencast-3-creating-a-wordpress-theme-part-1/&amp;title=Screencast+%233+-+Creating+a+Wordpress+Theme+-+Part+1" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://tomsbigbox.com/screencast-3-creating-a-wordpress-theme-part-1/&amp;title=Screencast+%233+-+Creating+a+Wordpress+Theme+-+Part+1" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://tomsbigbox.com/screencast-3-creating-a-wordpress-theme-part-1/&amp;title=Screencast+%233+-+Creating+a+Wordpress+Theme+-+Part+1" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://tomsbigbox.com/screencast-3-creating-a-wordpress-theme-part-1/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://tomsbigbox.com/screencast-3-creating-a-wordpress-theme-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using absolute and relative positioning</title>
		<link>http://tomsbigbox.com/using-absolute-and-relative-positioning/</link>
		<comments>http://tomsbigbox.com/using-absolute-and-relative-positioning/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 20:00:31 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[absolute]]></category>
		<category><![CDATA[positioning]]></category>
		<category><![CDATA[relative]]></category>

		<guid isPermaLink="false">http://tomsbigbox.com/?p=833</guid>
		<description><![CDATA[Now to many people this might be a really simple concept, that is the concept of using absolute and relative positioning; but I remember when I started web design I wasn't really sure what either meant. So this article is aimed at explaining why you might want to use the two properties in conjunction with...</p><a class="read-more" href="http://tomsbigbox.com/using-absolute-and-relative-positioning/">Continue Reading...</a>]]></description>
			<content:encoded><![CDATA[<p>Now to many people this might be a really simple concept, that is the concept of using absolute and relative positioning; but I remember when I started web design I wasn't really sure what either meant. So this article is aimed at explaining why you might want to use the two properties in conjunction with one another, to have more control over how your site looks. So we'll start with absolute positioning.</p>
<p>When you set an element's position property to "absolute" you are telling the browser that no matter what configuration (browser size/resolution), you want that element to be in the same place. You also take that element out of the flow so that it doesn't affect any other element on the page. So as an example if you set an element's position to absolute, you can then say how far from the top, bottom, left, or right you want to to be - relative to the browser window. So...</p>
<div class="code">
#element {<br />
position:absolute;<br />
&nbsp;&nbsp;top:10px;<br />
&nbsp;&nbsp;right:10px;<br />
}
</div>
<p>Would send your element to the top-right of the browser window.</p>
<p>Why would you want to do this? Well little example here - <a href="http://tomsbigbox.com/examples/Canvas/" target="_blank">my canvas example</a> from a few posts ago, positions the options panel in the top right-hand corner of the screen. Why? Because I want it out of the way, but always available. This style of positioning is interesting because it means you can ensure how an element will look. Maybe you want an ad in the bottom left. Perhaps you want a feedback link always on the left? Or maybe you just want better control of comment meta data. And that's a great example. Many sites use absolute positioning to position things such as meta data with other elements as to make sure they don't move a pixel out of line.</p>
<p>But how would one go about doing that, if absolute positing is relative only to the browser window? I hear you ask. Well, this is the part where I introduce you to our little friend, relative positioning.</p>
<p>Now in nearly every tutorial about positioning, when they get to the subject of relative positioning they usually say something along the lines of "it will make the element's position relative to itself" - but what on Earth does that mean?! Basically you are able to offset the element relative to where it would have been. So if one element was supposed to be at the coordinates (200,100) and you set it's position to relative and <span class="code-small">top:50px; right:20px</span>, it will now lye at (250,120). All very well and good. But how does this relate to absolute positioning? Well here's where it gets interesting - if you have a container which is positioned relatively, and an element inside of that container positioned absolutely, then the element will be positioned relative to the size of the container. See below.</p>
<p><img src="http://tomsbigbox.com/core/wp-content/uploads/2010/06/positioning.png" alt="" title="positioning" width="520" height="300" class="aligncenter size-full wp-image-834" /></p>
<p>So that's about it. A combination of these two types of positioning can be really useful - I use it all the time for styling the sometimes tricky comments section of WordPress themes and there are a million other applications for the wonderful CSS property - and remember with great power, comes great cross-browser-compatibility <img src='http://tomsbigbox.com/core/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Why jellybeans? Because it would be a heck of a job positioning them (oh and they look nice <img src='http://tomsbigbox.com/core/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ).</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://tomsbigbox.com/using-absolute-and-relative-positioning/&amp;title=Using+absolute+and+relative+positioning" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Using+absolute+and+relative+positioning+-+http://b2l.me/4f5qp&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://tomsbigbox.com/using-absolute-and-relative-positioning/&amp;t=Using+absolute+and+relative+positioning" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://tomsbigbox.com/using-absolute-and-relative-positioning/&amp;title=Using+absolute+and+relative+positioning" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://tomsbigbox.com/using-absolute-and-relative-positioning/&amp;title=Using+absolute+and+relative+positioning" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://tomsbigbox.com/using-absolute-and-relative-positioning/&amp;title=Using+absolute+and+relative+positioning" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://tomsbigbox.com/using-absolute-and-relative-positioning/&amp;title=Using+absolute+and+relative+positioning" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://tomsbigbox.com/using-absolute-and-relative-positioning/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://tomsbigbox.com/using-absolute-and-relative-positioning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Publishing to WordPress from outside the admin panel</title>
		<link>http://tomsbigbox.com/publishing-to-wordpress-from-outside-the-admin-panel/</link>
		<comments>http://tomsbigbox.com/publishing-to-wordpress-from-outside-the-admin-panel/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 16:39:17 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[outside]]></category>
		<category><![CDATA[panel]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://tomsbigbox.com/?p=829</guid>
		<description><![CDATA[I recently finished up a theme for which I had to allow users to post to WordPress from outside the admin panel. Now at first you may wonder why anyone would want to do such a thing, but let me tell you of my scenario. Basically I was creating a job board whereby users could...</p><a class="read-more" href="http://tomsbigbox.com/publishing-to-wordpress-from-outside-the-admin-panel/">Continue Reading...</a>]]></description>
			<content:encoded><![CDATA[<p>I recently finished up a theme for which I had to allow users to post to WordPress from outside the admin panel. Now at first you may wonder why anyone would want to do such a thing, but let me tell you of my scenario. Basically I was creating a job board whereby users could post a job from a specific page - this meant that the numerous custom fields in operation could be handled in a rather aesthetically pleasing fashion and it would be a lot simpler for the user to get their job listed. Now the reason I'm posting this article is because this subject isn't well documented and I had to play around for quite a while before I could get it to work, so I hope that I can save you some frustration in sharing my code.</p>
<p>So what do we have to do first? Well we need to replicate the core features of the new post page in the admin panel of WordPress, this means replicating things such as the title and content fields, the category options, and the tags area. So set up all the required fields and also any custom fields you want to include. Once you've done this you will need to create a separate file to post the information to, let's call it <span class="code-small">new-post.php</span>. Set your form to post to this file, and then paste in the following code.</p>
<div class="code">
<p>$title = stripslashes($_POST['title']);<br />
$body = $_POST['body'];<br />
$rpcurl = $_POST['rpcurl'];<br />
$username = $_POST['user'];<br />
$password = $_POST['pass'];<br />
$category = $_POST['category'];<br />
$keywords = $_POST['tags'];<br />
$encoding = 'UTF-8';</p>
<p>$title = htmlentities($title,ENT_NOQUOTES,$encoding);<br />
$keywords = htmlentities($keywords,ENT_NOQUOTES,$encoding);</p>
<p>$content = array(<br />
'title'=&gt;$title,<br />
'description'=&gt;$body,<br />
'mt_allow_comments'=&gt;0,  // 1 to allow comments<br />
'mt_allow_pings'=&gt;0,  // 1 to allow trackbacks<br />
'post_type'=&gt;'post',<br />
'mt_keywords'=&gt;$keywords,<br />
'categories'=&gt; array($category=&gt;$category),<br />
)</p>
<p>);<br />
$params = array(0,$username,$password,$content,true);<br />
$request = xmlrpc_encode_request('metaWeblog.newPost',$params);<br />
$ch = curl_init();<br />
curl_setopt($ch, CURLOPT_POSTFIELDS, $request);<br />
curl_setopt($ch, CURLOPT_URL, $rpcurl);<br />
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br />
curl_setopt($ch, CURLOPT_TIMEOUT, 1);<br />
$results = curl_exec($ch);<br />
curl_close($ch);</p>
</div>
<p>Right, now that's quite a lot of code, allow me to explain. You can see all of those variables at the top - these are to be use further down and are given the values of what's posted to them. Title, body, category, and keywords are self-explanatory, however there are a number of other variables which appear to require some post variables - so what are they? <span class="code-small">$rpcurl</span> is simply the ping-back URL of your blog - which is a URL that allows others to interact with your blog. The username and password variables must be valid credentials for the blog - this is because WordPress needs to verify that the person posting the post is allowed to do so. And finally the encoding variable is simple the way in which the content should be encoded - the default and most common is simple UTF-8 - and doesn't need to be changed.</p>
<p>So you know what the variables are, but how on earth do you get them to the file? Well personally I used AJAX to submit the form and so just sent the data in a data-string, but if that sounds too much like hard work, feel free to just use some hidden fields. To access the required data you can use the <span class="code-small">bloginfo()</span> function for things like the "pingback_url". Now one thing that will require user input is the password variable, this is because it is impossible to obtain the user's password as it is stored as an encrypted hash, so I'd recommend that you add it as a security feature where you ask users to enter their password before posting - that way it'll be accessible to you.</p>
<p>The rest of the code simply posts all the info to the actual blog, and uses the ping-back URL to do so by inserting all of those lovely variables into place and then sending it over to WordPress to do all the hard work.</p>
<p>While this is a bit of an obscure function I think it's nice to know it can be done, and I hope this article can save some people the hassle that I had to go through to get the correct method and syntax.</p>
<h3>Update</h3>
<p>It has come to my attention that the method listed above might be a little hard to integrate into a WordPress theme, so below is the code for a form with which you could use the above method, to post to WordPress from outside the admin panel. Let's get started with the form.</p>
<div class="code">&lt;form id="post" name="post" action="post.php" method="post"&gt;</p>
<p>&lt;label for="title"&gt;Title&lt;/label&gt;<br />
&lt;input type="text" name="post_title" /&gt;</p>
<p>&lt;label for="desc"&gt;Content&lt;/label&gt;<br />
&lt;textarea name="content"&gt;&lt;/textarea&gt;</p>
<p>&lt;label for="category"&gt;Category&lt;/label&gt;<br />
&lt;input name="category" type="text" /&gt;</p>
<p>&lt;label for="title"&gt;Tags&lt;/label&gt;<br />
&lt;input type="text" name="post_tags" id="tags" value="e.g. Graphic, Designer, HTML" onfocus="if (this.value == 'e.g. Graphic, Designer, HTML') {this.value = '';}" onblur="if (this.value == '') {this.value = 'e.g. Graphic, Designer, HTML';}" /&gt;</p>
<p>&lt;p&gt;Please verify the details above and then enter your password to complete the process.&lt;/p&gt;<br />
&lt;p&gt;&amp;nbsp;&lt;/p&gt;<br />
&lt;label for="password"&gt;Password&lt;/label&gt;<br />
&lt;input type="password" name="password" id="password" /&gt;<br />
&lt;input type="submit" value="Submit" /&gt;<br />
&lt;/div&gt;<br />
&lt;/form&gt;</p>
</div>
<p>So that's a pretty standard form to which you can do whatever you like, but not the names of the fields as they will be important when we come to using the data stored in them. Next I'm going to use AJAX to post the form to the code which will post the WordPress, for the sake of this tutorial I'll assume that the code at the beginning of this tutorial is in a file called <span class="code-small">post.php</span>. So go ahead and stick this somewhere on your page (<strong>Note</strong>: You will need to include <a href="http://jquery.com/">jQuery</a> for the following Javascript to work.</p>
<div class="code">
			$("#post").submit(function(){</p>
<p>				var title = $("#post input[name=post_title]").val();<br />
				var body = $("#post textarea[name=content]").val();<br />
				var category = $("#post select[name=category]").val();<br />
				var tags = $("input[name=post_tags]").val();</p>
<p>				var pass = $("#password").val();</p>
<p>				if(title=="" || body=="" || pass==""){<br />
					alert("Please fill in all of the fields!");<br />
					return false;<br />
				}else {<br />
					verify = true;</p>
<p>					var dataString = 'title=' + title + '&#038;body=' + body + '&#038;rpcurl=<?php echo get_bloginfo("pingback_url"); ?>&#038;user=<?php global $current_user; get_currentuserinfo(); echo $current_user->user_login ?>&#038;pass=' + pass + '&#038;category=' + category + '&#038;tags=' + tags;<br />
  					$.ajax({<br />
    					type: "POST",<br />
    					url: "post.php",<br />
    					data: dataString,<br />
    					}<br />
     				});<br />
				return false;<br />
				}</p>
</div>
<p>Okay then what do we have here? Well first off all the code is wrapped in a <span class="code-small">submit()</span> function, which waits for the form to be submitted, and then executes the code inside. Just below this we assign the values of the inputs from the form, to variables, and then check to see if some of the fields are empty, the ones that are important that is. If any of them are empty then we alert the user and stop the form from going submitting. However if it's all good we then use the jQuery AJAX function to post all the information we have to our <span class="code-small">post.php</span> file to be processed. Notice that we ask the user to verify the information entered by asking them to enter their password - this is a sneaky way of grabbing their password, and allows us to proceed with processing the post.</p>
<p>And that's that! Hopefully the above code has helped you to understand better how to integrate the code into a WordPresss environment, and if you're a little confused by the AJAX or just don't want it in your code, feel free to just make the form post directly to <span class="code-small">post.php</span>, and you should be good to go.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://tomsbigbox.com/publishing-to-wordpress-from-outside-the-admin-panel/&amp;title=Publishing+to+Wordpress+from+outside+the+admin+panel" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Publishing+to+Wordpress+from+outside+the+admin+panel+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://tomsbigbox.com/publishing-to-wordpress-from-outside-the-admin-panel/&amp;t=Publishing+to+Wordpress+from+outside+the+admin+panel" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://tomsbigbox.com/publishing-to-wordpress-from-outside-the-admin-panel/&amp;title=Publishing+to+Wordpress+from+outside+the+admin+panel" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://tomsbigbox.com/publishing-to-wordpress-from-outside-the-admin-panel/&amp;title=Publishing+to+Wordpress+from+outside+the+admin+panel" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://tomsbigbox.com/publishing-to-wordpress-from-outside-the-admin-panel/&amp;title=Publishing+to+Wordpress+from+outside+the+admin+panel" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://tomsbigbox.com/publishing-to-wordpress-from-outside-the-admin-panel/&amp;title=Publishing+to+Wordpress+from+outside+the+admin+panel" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://tomsbigbox.com/publishing-to-wordpress-from-outside-the-admin-panel/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://tomsbigbox.com/publishing-to-wordpress-from-outside-the-admin-panel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why Facebook is potentially fatal</title>
		<link>http://tomsbigbox.com/why-facebook-is-potentially-fatal/</link>
		<comments>http://tomsbigbox.com/why-facebook-is-potentially-fatal/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 18:08:24 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Deep Thought]]></category>
		<category><![CDATA[death]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://tomsbigbox.com/?p=825</guid>
		<description><![CDATA[So that's a rather brash title isn't it? Well I feel that a subject like this needs to be met with outright forwardness and it is for this reason that I am writing this article. Now this isn't an article bashing Facebook or it's recently changed privacy settings, its about the people that use it....</p><a class="read-more" href="http://tomsbigbox.com/why-facebook-is-potentially-fatal/">Continue Reading...</a>]]></description>
			<content:encoded><![CDATA[<p>So that's a rather brash title isn't it? Well I feel that a subject like this needs to be met with outright forwardness and it is for this reason that I am writing this article. Now this isn't an article bashing Facebook or it's recently changed privacy settings, its about the people that use it. I'll start with a case in point. A friend of mine posted a status update earlier today saying "Who the heck is [insert name here]?!" - because the guy he was on about had been posting comments on his activity. Now the person he was on about also requested that I be his friend and when I looked at our mutual friends we had about 50, but I decided I didn't know him so I didn't accept the request - seems logical right? Well although to you and me it might, it seems that spammers who previously had covered relatively little ground on Facebook have moved onto fake profiles in their masses. And this made me think.</p>
<p>Facebook puts an awful lot of work into ensuring privacy, they make sure that you have "total" control over your account and it's up to you what you share. But all of this hard work to protect users is immediately invalidated when any user accepts a friend request from someone that they don't know and have never heard of. Anther example - another of my friends once confirmed a friend just because they had the same name of them, but upon inspecting their profile found absolutely no links - the guy lived half way around the world.</p>
<p>You could think that I'm over-reacting, but I can assure you, I' not. Although I, personally put very little content on Facebook, think about the millions of vulnerable users that do - a like of a certain band here and a joining of another group there can soon lead to a huge psychological profile of any user. I would go as far as to say that your activity on Facebook could be enough to kill you. Woah! You say, but allow me to elaborate. Imagine some serial killer on Facebook looking to harvest information. Many people make their contact numbers public, while the rest make their movements known to all of their friends. Addresses, dates of birth, and other valuable information is stored on Facebook. Many banking systems use your date of birth and address as security information - think on that. On a serious note anybody out to hurt you could easily collect the required information off of Facebook and easily use it against you.</p>
<p>So what can be done to stop this? Well it's incredibly simple - don't accept friend requests from people you don't know. And while I know I will be appealing to the wrong audience here, I believe it is important for us to educate those on the risks involved with accepting unknown people on Facebook as friends - because who knows, one day such information could save a persons life.</p>
<p>Okay so that last bit was a bit over the top - but I don't think this subject is to be taken lightly, so think about the points I've made and please don't go accepting friend requests from people you don't know!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://tomsbigbox.com/why-facebook-is-potentially-fatal/&amp;title=Why+Facebook+is+potentially+fatal" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Why+Facebook+is+potentially+fatal+-+File: /data/app/webapp/functions.php<br />Line: 7<br />Message: Too many connections&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://tomsbigbox.com/why-facebook-is-potentially-fatal/&amp;t=Why+Facebook+is+potentially+fatal" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://tomsbigbox.com/why-facebook-is-potentially-fatal/&amp;title=Why+Facebook+is+potentially+fatal" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://tomsbigbox.com/why-facebook-is-potentially-fatal/&amp;title=Why+Facebook+is+potentially+fatal" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://tomsbigbox.com/why-facebook-is-potentially-fatal/&amp;title=Why+Facebook+is+potentially+fatal" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://tomsbigbox.com/why-facebook-is-potentially-fatal/&amp;title=Why+Facebook+is+potentially+fatal" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://tomsbigbox.com/why-facebook-is-potentially-fatal/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://tomsbigbox.com/why-facebook-is-potentially-fatal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
