<?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>Programming Blog &#187; tutorial</title>
	<atom:link href="http://www.neurosoftware.ro/programming-blog/category/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.neurosoftware.ro/programming-blog</link>
	<description>Web development , php , ajax , symfony, framework, zend</description>
	<lastBuildDate>Sun, 14 Mar 2010 14:15:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Automatic Amazon s3 Backups on Ubuntu / Debian</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 13:30:30 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[amazon s3]]></category>
		<category><![CDATA[automatic backups]]></category>
		<category><![CDATA[automatic database]]></category>
		<category><![CDATA[backup system]]></category>
		<category><![CDATA[database backup]]></category>
		<category><![CDATA[database program]]></category>
		<category><![CDATA[incremental backup]]></category>
		<category><![CDATA[linux distros]]></category>
		<category><![CDATA[virtual private server]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img border="0" style="border-bottom: 0px;border-left: 0px;border-top: 0px;border-right: 0px" alt="Amazon s3 Backup on Ubuntu Server" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3e70e_backups.jpg" width="560" height="145" /></p>
<p>VPS (Virtual Private Server) hosting is the next level up from shared hosting. You get a lot more server usage for each of your dollars, but the catch is that you <strong>lose all of the easiness of shared hosting</strong>.</p>
<p>One of the most important things you need to set up with your VPS is <strong>automatic backups</strong>. If your VPS crashes and your data is lost, your entire blogging history will be wiped out in an instant if you don’t have backups at the ready.</p>
<p>This article isn’t going to be for everyone, it assumes two things:</p>
<ul>
<li>You’ve <strong>already set up</strong> your VPS (If you’re on shared hosting, have a look at this <a href="http://www.problogdesign.com/wordpress/the-perfect-hands-free-database-backup/" target="_blank">automatic database backup</a> post instead).</li>
<li>You’re comfortable with the <strong>command line</strong> (If you didn’t set up your VPS yourself, I highly recommend you don’t fiddle around with anything here unless you’re certain of what you’re doing!)</li>
</ul>
<p>The last thing to note is that I’ve done all of this on Ubuntu, though it should have no trouble with Debian either. The software I use is all <strong>compatible with other Linux distros</strong> though, but I haven’t used them so you may need to adapt certain steps.</p>
<p>If both of those are okay with you though, let’s carry on and set up our ideal backup system!</p>
<h2>An Overview of Our Setup</h2>
<p>Let’s start by taking a step back and getting a plan of how our backup system will work.</p>
<ul>
<li>Every day, at a time you set, the backup process begins.</li>
<li>First, a <strong>backup of your database</strong> will be taken and saved on the server.</li>
<li>Next, the database program will connect to your <strong>Amazon s3 account</strong>, and make a full backup of your site if needs be.</li>
<li>Alternatively, it will only backup the changes from yesterday’s backup (i.e. an <strong>incremental backup</strong>).</li>
<li>Before sending out the backups, all of your files will be <strong>encrypted</strong> so that no-one but you will be able to read them.</li>
</ul>
<p>In pictorial form:</p>
<p><img border="0" style="border-bottom: 0px;border-left: 0px;border-top: 0px;border-right: 0px" alt="Automatic Backup to s3" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/afe19_overview.jpg" width="560" height="290" /></p>
<p>One thing to note is that we will work through this as though we are backing up just one site. You can of course <strong>apply this to as many sites</strong>, databases, and directories on your server as you like.</p>
<h2>Step 1 – Set Up Encryption</h2>
<p>To set this up, we’ll actually be <strong>working backwards</strong> through the steps above (So you’ll be able to test each one before moving to the next).</p>
<p>The encryption tool we’ll use is called <a href="http://www.gnupg.org/" target="_blank">GPG</a> (Gnu Privacy Guard). GPG works by creating two key files:</p>
<ul>
<li><strong>Public key</strong> – Used to encrypt your data. It doesn’t matter who sees this.</li>
<li><strong>Private key</strong> – Used to decrypt your data. This file must be kept safe and only seen by you.</li>
</ul>
<p>The two files it creates are essentially <strong>a pair</strong>. Files encrypted by a public key can only be decrypted by the corresponding secret key. If you lose your private key, you <strong>will not get your files back</strong>, ever.</p>
<p>So, let’s get to it!</p>
<ul>
<li>In your command line (e.g. Putty on Windows, or terminal on Linux/Mac), type the following:</li>
</ul>
<div>
<div>
<pre>gpg <span>--gen-key</span></pre>
</div>
</div>
<p>You’ll be walked through a few options for your key, select the following:</p>
<ul>
<li><strong>Key type</strong> – DSA and Elgamal (Default)</li>
<li><strong>Key size</strong> – 2048 bits (Again, the default)</li>
<li><strong>Expiration </strong>– Do not expire (Not necessary for what we’re doing as you won’t be sharing the public key with anyone).</li>
<li><strong>Name, Comment and Email</strong> – You can enter whatever you like here, but do take a note of them somewhere. They’ll help you remember which key is which if you create multiple keys later.</li>
<li><strong>Password</strong> – Make sure you remember whatever you type, there’s no way to get it back if you forget!</li>
<li>When it talks about “<strong>generating entropy</strong>” to make the key, it means that the server needs to be in use in order for it to get some random numbers. Just go refresh a webpage on the server a few times, or run some commands in another terminal window.</li>
</ul>
<p>When your key is made, you’ll see a few lines about it. The important one looks like this:</p>
</p>
<div>
<div>
<pre>pub   2048D<span>/</span>3514FEC1 <span>2010</span>-03-05</pre>
</div>
</div>
<p>The 3514FEC1 is the part you need. That&#8217;s your <strong>key ID</strong>, and you&#8217;ll need it for later!</p>
<p>If you do end up forgetting your key ID though, it’s easy enough to <strong>get that back</strong>. Just type:</p>
</p>
<div>
<div>
<pre>gpg <span>--list-keys</span></pre>
</div>
</div>
<p>That’s our encryption set up and ready to use! If you’d like to learn more about what all you can do with GPG key, have a look at this <a href="http://www.madboa.com/geek/gpg-quickstart/" target="_blank">GPG quick start guide</a>.</p>
<h2>Step 2- Sign up for Amazon s3</h2>
<p>I should start by saying that while s3 is not a free service, it&#8217;s incredibly inexpensive! My bill <strong>for the last month was $2.60</strong>, and that was with backing up a lot more than just this site! It&#8217;s the cheapest peace-of-mind ever.</p>
<p>Start off by signing up at <a href="http://aws.amazon.com/" target="_blank">Amazon Web Services</a> (Not linked to your regular Amazon account). They have a few different services, but the only one we want at the minute is s3&#160; (<strong>Simple Storage Service</strong>).</p>
<p>When you’ve registered, log in to your account and click the “<strong>Security Credentials</strong>” link.</p>
<p>On this page, you’ll need to <strong>create a new access key</strong> (You can see the link in the screenshot below). When you’ve made it, take a note of your Access Key and Secret Access Key (click the “Show” link to see the secret one).</p>
<p><img border="0" style="border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px" alt="Amazon s3 Accounts" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/11984_amazon.jpg" width="560" height="102" /></p>
<p>If you’re a FireFox user, you should also install the <a href="https://addons.mozilla.org/en-US/firefox/addon/3247" target="_blank">s3Fox plugin</a>. It gives you an extremely easy way of <strong>seeing what’s in your s3 account</strong>, and even uploading/downloading files from it. It’s not essential, but definitely a handy tool!</p>
<h2>Step 3 – Install Duplicity</h2>
<p>The backup system is fairly easy to put in place, all thanks to the program we’ll be using; <a href="http://www.nongnu.org/duplicity/" target="_blank">Duplicity</a>.</p>
<p>Let’s start by installing Duplicity.</p>
<div>
<div>
<pre><span>sudo</span> <span>apt-get</span> <span>install</span> duplicity</pre>
</div>
</div>
<p>Now with it installed, we just have to <strong>create a script</strong> that tells it how to run. Duplicity can take a wide range of commands, and you can <a title="The Duplicity manual." href="http://www.nongnu.org/duplicity/duplicity.1.html" target="_blank">read more about them all here</a>.</p>
<h2>Step 4 – Our Duplicity Backup Script</h2>
<p>Here is how we want to set it up:</p>
<ul>
<li>Encrypt with our GPG key.</li>
<li>Backup to an Amazon s3 “bucket” (a bucket on s3 is like a folder).</li>
<li>Make an incremental backup every day.</li>
<li>Make a full backup if it’s been more than 2 weeks since our last full backup.</li>
<li>Remove backups older than one month.</li>
</ul>
<p>You can change any of the parameters you like, you’ll see where you can do it.</p>
<p>With your favorite text editor (I use Nano), create a new file and paste the following into it:</p>
</p>
<div>
<div>
<pre><span>#!/bin/sh</span>
<span>export</span> <span>PASSPHRASE</span>=YOUR_GPG_PASSWORD
<span>export</span> <span>AWS_ACCESS_KEY_ID</span>=YOUR_AMAZON_KEY
<span>export</span> <span>AWS_SECRET_ACCESS_KEY</span>=YOUR_AMAZON_SECRET_KEY
&nbsp;
<span># Delete any older than 1 month</span>
duplicity remove-older-than 1M <span>--encrypt-key</span>=YOUR_GPG_KEY <span>--sign-key</span>=YOUR_GPG_KEY s3+http:<span>//</span>BUCKETNAME
&nbsp;
<span># Make the regular backup</span>
<span># Will be a full backup if past the older-than parameter</span>
duplicity <span>--full-if-older-than</span> 14D <span>--encrypt-key</span>=YOUR_GPG_KEY <span>--sign-key</span>=YOUR_GPG_KEY <span>/</span>DIRECTORY<span>/</span>TO<span>/</span>BACKUP<span>/</span> s3+http:<span>//</span>BUCKETNAME
&nbsp;
<span>export</span> <span>PASSPHRASE</span>=
<span>export</span> <span>AWS_ACCESS_KEY_ID</span>=
<span>export</span> <span>AWS_SECRET_ACCESS_KEY</span>=</pre>
</div>
</div>
<p>You’ll need to <strong>update some info in that script to your details</strong>. They should be self-explanatory. Replace the bit after the = in lines 2-4, the 4 instances of YOUR_GPG_KEY further down the page.</p>
<p>Also, replace the 2 instances of BUCKETNAME with the name of your <strong>bucket on s3</strong> (Don’t worry if it doesn’t exist yet, Duplicity will create it for you!), and last of all, the /DIRECTORY/TO/BACKUP/ with the folder to backup.</p>
<p>Now save the script (e.g. backup.sitename.sh), <strong>and run it</strong>. Now if you check your s3Fox plugin, you should see the files (Well, the encrypted version of them).</p>
<p><img border="0" style="border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px" alt="s3Fox FireFox plugin" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/43f93_s3fox.jpg" width="560" height="145" /></p>
<h2>Step 5 – A Restore Script</h2>
<p>It’s not much use backing up your files if you can’t <strong>get them back when you need them</strong>, so we still have to set up our restore script!</p>
<p>And a warning; do make sure you set this up and test it <strong>now</strong>. If it turns out that you can’t decrypt your backups or any error like that, then it’s too late to discover that come the time you actually need to make a restore!</p>
</p>
<div>
<div>
<pre><span>#!/bin/sh</span>
<span>export</span> <span>PASSPHRASE</span>=YOUR_GPG_PASSWORD
<span>export</span> <span>AWS_ACCESS_KEY_ID</span>=YOUR_AMAZON_KEY
<span>export</span> <span>AWS_SECRET_ACCESS_KEY</span>=YOUR_AMAZON_SECRET_KEY
&nbsp;
<span>## Two options for restoring, uncomment and edit the one to use!</span>
<span>## (to restore everything, just take out the --file-to-restore command and filename)</span>
&nbsp;
<span># Restore a single file</span>
<span># NOTE - REMEMBER to name the file in both the --file-to-restore and in the location you will restore it to!</span>
<span># Also file name (path) is relative to the root of the directory backed up (e.g. pliableweb.com/test is just test)</span>
<span>#duplicity --file-to-restore FILENAME s3+http://BUCKETNAME /FILE/TO/RESTORE/TO --encrypt-key=YOUR_GPG_KEY --sign-key=YOUR_GPG_KEY -vinfo</span>
&nbsp;
<span># Restore a file from a specified day</span>
<span># NOTE - Remember to name the file in both locations again!</span>
<span>#duplicity -t4D --file-to-restore FILENAME s3+http://BUCKETNAME /FILE/TO/RESTORE/TO --encrypt-key=YOUR_GPG_KEY --sign-key=YOUR_GPG_KEY</span>
&nbsp;
<span>export</span> <span>PASSPHRASE</span>=
<span>export</span> <span>AWS_ACCESS_KEY_ID</span>=
<span>export</span> <span>AWS_SECRET_ACCESS_KEY</span>=</pre>
</div>
</div>
<p>Once again, you’ll need to <strong>replace parts of that</strong> with your own details. For explanations of what each thing is to be replaced with, look back to the explanation for the backup script, they’re the same!</p>
<p>And last of all, you’ll see that <strong>I’ve commented out the commands</strong>. Delete the # infront of them to uncomment them when you want to use them. That’s just a precaution in case you run the script by accident!</p>
<h2>Step 6 – Backup Your Databases</h2>
<p>We’re getting there, promise!</p>
<p>There’s absolutely no point in backing up your files if you aren’t backing up your databases as well. Thankfully, it’s not difficult to do.</p>
<p>You have 2 options:</p>
<ul>
<li>Use a WordPress plugin and backup to an email address. You can read the full <a href="http://www.problogdesign.com/wordpress/the-perfect-hands-free-database-backup/" target="_blank">automatic WordPress backup</a> guide here.</li>
<li>Make a backup of your database and include it with the files being backed up to s3.</li>
</ul>
<p>Naturally the one I’ll be talking about here is the s3 solution! To do it, all you need is another shell script.</p>
<p>The best script I’ve found to do this is <a href="http://sourceforge.net/projects/automysqlbackup/" target="_blank">AutoMySQLBackup</a>. It will:</p>
<ul>
<li>Make <strong>daily, weekly, and monthly backups</strong> of your database, and delete old ones (You set how long to keep them for in the script).</li>
<li><strong>Email you a warning</strong> if anything goes wrong with the backup (Extremely useful). You get the peace of mind of being notified if there’s a problem, but no spam because if it all goes well, you won’t hear from it (in the settings at the top of the script, set MAILCONTENT=&quot;quiet&quot;).</li>
</ul>
<h2>Step 7 – Automate all of This</h2>
<p>The final step is to set this up to <strong>run automatically</strong> so that you can forget all about it! We’ve made this very easy to do by storing all of our commands in shell scripts. All we need to do is use cron to run them at set time.</p>
<p>If you aren’t familiar with Cron, <a title="Learn to use cron." href="https://help.ubuntu.com/community/CronHowto" target="_blank">Ubuntu Help</a> has a great explanation of them.</p>
<p>To <strong>access your crontab</strong>, enter:</p>
</p>
<div>
<div>
<pre>crontab –e</pre>
</div>
</div>
<p>Now, here’s an example of 2 cron jobs you could <strong>add</strong>:</p>
</p>
<div>
<div>
<pre><span>40</span> <span>8</span> <span>*</span> <span>*</span> <span>*</span> .<span>/</span>backup-db-problogdesign.sh
<span>0</span> <span>9</span> <span>*</span> <span>*</span> <span>*</span> .<span>/</span>backup-problogdesign.sh <span>&gt;</span> <span>/</span>var<span>/</span>log<span>/</span>backup.problogdesign.log</pre>
</div>
</div>
<p>The first will back up the database. The second will then run the whole backup to s3 20 minutes later, and store the output in a log file for you (Make sure you’ve <strong>created the log file</strong> already though).</p>
<p>If you only wanted to run it every other day, you could use:</p>
</p>
<div>
<div>
<pre><span>40</span> <span>8</span> <span>*</span> <span>*</span> <span>*/</span><span>2</span> .<span>/</span>backup-db-problogdesign.sh
<span>0</span> <span>9</span> <span>*</span> <span>*</span> <span>*/</span><span>2</span> .<span>/</span>backup-problogdesign.sh <span>&gt;</span> <span>/</span>var<span>/</span>log<span>/</span>backup.problogdesign.log</pre>
</div>
</div>
<p>&#160;</p>
<h2>Troubleshooting</h2>
<p>There are a few places you could go wrong in all this. If you do have trouble, here are a few things to try:</p>
<ul>
<li><strong>Test each step</strong>, one at a time. Is your encryption working? Are you able to connect to Amazon s3? Is Duplicity working? Last of all, does it all work from cron?</li>
<li>If the trouble is with your encryption, are the keys<strong> owned by the same user</strong> as the one who runs the commands?</li>
<li>s3 buckets names and GPG IDs and passwords need to be written down in a few places. Quadruple check for <strong>typos</strong>!</li>
</ul>
<h2>Conclusion</h2>
<p>You’ve now got a fairly robust backup system in place. All of your files will be copied <strong>safely to a third party server</strong>, every single day.</p>
<p>The major flaw here, which some of you may have spotted already, is that your <strong>GPG password is stored in plain view</strong> on your server, and that anyone with access to the Duplicity script can delete your backups. If someone gets into your server account, this isn’t going to help you, you’re only protected against hardware failures.</p>
<p>If anyone has any<strong> thoughts on getting around that issue</strong>, I’d love to hear them!</p>
<p> <img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/43f93_Y8_QMfLIAM0" height="1" width="1" /></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;Title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian&amp;desc=VPS%20%28Virtual%20Private%20Server%29%20hosting%20is%20the%20next%20level%20up%20from%20shared%20hosting.%20You%20get%20a%20lot%20more%20server%20usage%20for%20each%20of%20your%20dollars%2C%20but%20the%20catch%20is%20that%20you%20lose%20all%20of%20the%20easiness%20of%20shared%20hosting.One%20of%20the%20most%20important%20things%20you%20need%20to%20set%20up%20with%20your%20VPS%20is%20automatic%20backups.%20If%20you" rel="nofollow" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;submitHeadline=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian&amp;submitSummary=VPS%20%28Virtual%20Private%20Server%29%20hosting%20is%20the%20next%20level%20up%20from%20shared%20hosting.%20You%20get%20a%20lot%20more%20server%20usage%20for%20each%20of%20your%20dollars%2C%20but%20the%20catch%20is%20that%20you%20lose%20all%20of%20the%20easiness%20of%20shared%20hosting.One%20of%20the%20most%20important%20things%20you%20need%20to%20set%20up%20with%20your%20VPS%20is%20automatic%20backups.%20If%20you&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;t=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;t=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian+-+http://b2l.me/j2kxv+(via+@programmingns)" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian&amp;summary=VPS%20%28Virtual%20Private%20Server%29%20hosting%20is%20the%20next%20level%20up%20from%20shared%20hosting.%20You%20get%20a%20lot%20more%20server%20usage%20for%20each%20of%20your%20dollars%2C%20but%20the%20catch%20is%20that%20you%20lose%20all%20of%20the%20easiness%20of%20shared%20hosting.One%20of%20the%20most%20important%20things%20you%20need%20to%20set%20up%20with%20your%20VPS%20is%20automatic%20backups.%20If%20you&amp;source=Programming Blog" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;h=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=VPS%20%28Virtual%20Private%20Server%29%20hosting%20is%20the%20next%20level%20up%20from%20shared%20hosting.%20You%20get%20a%20lot%20more%20server%20usage%20for%20each%20of%20your%20dollars%2C%20but%20the%20catch%20is%20that%20you%20lose%20all%20of%20the%20easiness%20of%20shared%20hosting.One%20of%20the%20most%20important%20things%20you%20need%20to%20set%20up%20with%20your%20VPS%20is%20automatic%20backups.%20If%20you&amp;posturl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;posttitle=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;bm_description=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian&amp;plugin=sexybookmarks" rel="nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/" rel="nofollow" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/" rel="nofollow" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian&amp;link=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian&amp;url=http%3A%2F%2Fwww.neurosoftware.ro%2Fprogramming-blog%2Ffacebook-web-design%2Ftutorial%2Fautomatic-amazon-s3-backups-on-ubuntu-debian-2%2F&amp;desc=VPS%20%28Virtual%20Private%20Server%29%20hosting%20is%20the%20next%20level%20up%20from%20shared%20hosting.%20You%20get%20a%20lot%20more%20server%20usage%20for%20each%20of%20your%20dollars%2C%20but%20the%20catch%20is%20that%20you%20lose%20all%20of%20the%20easiness%20of%20shared%20hosting.One%20of%20the%20most%20important%20things%20you%20need%20to%20set%20up%20with%20your%20VPS%20is%20automatic%20backups.%20If%20you&amp;pcat=Technology&amp;tags=" rel="nofollow" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/" rel="nofollow" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian&amp;body=VPS%20%28Virtual%20Private%20Server%29%20hosting%20is%20the%20next%20level%20up%20from%20shared%20hosting.%20You%20get%20a%20lot%20more%20server%20usage%20for%20each%20of%20your%20dollars%2C%20but%20the%20catch%20is%20that%20you%20lose%20all%20of%20the%20easiness%20of%20shared%20hosting.One%20of%20the%20most%20important%20things%20you%20need%20to%20set%20up%20with%20your%20VPS%20is%20automatic%20backups.%20If%20you" rel="nofollow" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;lname=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;u_data[name]=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;bmtitle=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;t=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/" rel="nofollow" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;title=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian&amp;body=VPS%20%28Virtual%20Private%20Server%29%20hosting%20is%20the%20next%20level%20up%20from%20shared%20hosting.%20You%20get%20a%20lot%20more%20server%20usage%20for%20each%20of%20your%20dollars%2C%20but%20the%20catch%20is%20that%20you%20lose%20all%20of%20the%20easiness%20of%20shared%20hosting.One%20of%20the%20most%20important%20things%20you%20need%20to%20set%20up%20with%20your%20VPS%20is%20automatic%20backups.%20If%20you" rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/&amp;T=Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian" rel="nofollow" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Automatic+Amazon+s3+Backups+on+Ubuntu+%2F+Debian&quot;+-+from+http://b2l.me/j2kxv" rel="nofollow" title="Post this to Identica">Post this to Identica</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/automatic-amazon-s3-backups-on-ubuntu-debian-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool Websites and Tools [March 13th]</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 12:29:26 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[account option]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[catchy titles]]></category>
		<category><![CDATA[cool websites]]></category>
		<category><![CDATA[eBay]]></category>
		<category><![CDATA[ebay prices]]></category>
		<category><![CDATA[free movie trailers]]></category>
		<category><![CDATA[handy website]]></category>
		<category><![CDATA[photo slideshow]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/</guid>
		<description><![CDATA[ Check out some of the latest MakeUseOf discoveries. All listed websites are FREE (or come with a decent free account option). No trials or buy-to-use craplets. For more cool websites and web app reviews subscribe to MakeUseOf Directory.
List Your Website Here!




&#160;

Linkbait Generator &#8211; Bloggers strive to write attractive post titles that would lure people [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px none;margin-right:30px" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3f501_web-apps-2.jpg" vspace="5" align="left" /> Check out some of the latest <em>MakeUseOf</em> discoveries. All listed websites are FREE (or come with a decent free account option). No trials or buy-to-use craplets. For more cool websites and web app reviews subscribe to <a href="http://feeds.feedburner.com/WebServicesDir">MakeUseOf Directory</a>.</p>
<p><a rel="nofollow" href="http://www.makeuseof.com/contact/"><strong>List Your Website Here!</strong></a></p>
<table>
<tr>
<td><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3f501_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Flinkbaitgenerator.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://linkbaitgenerator.com">Linkbait Generator</a> &#8211; Bloggers strive to write attractive post titles that would lure people into clicking. For those who can do that, its great; for the rest of us, there’s the LinkbaitGenerator. It is a fun little tool that generates random albeit super catchy titles for articles that is bound to make people click. Read more: <a href="http://www.makeuseof.com/dir/linkbait-generator-generate-catchy-blog-post-titles">LinkbaitGenerator: Generate Catchy Titles For Articles</a>.</td>
</tr>
</table>
<p><span></span></p>
<table>
<tr>
<td><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/78018_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fqhub.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://qhub.com">QHub</a> &#8211; Q&#38;A websites are very useful since they can get you answers to the most detailed questions online. But if you want to create your own Q&#38;A site you have to create your own app or host it in your server. Fortunately, Qhub is a web service that lets you easily create a fully-customizable question and answer website. Read more: <a href="http://www.makeuseof.com/dir/qhub-qa-sites">QHub: Create Your Own Q&#38;A Site Easily</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/88d5a_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.trailers-movies.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.trailers-movies.com">Trailers-Movies</a> &#8211; If you are into movies, you know how important a trailer or a teaser is. It gives you a really good idea about how the movie is going to be and if you should spend some $$ on the movie ticket. Trailers-Movies lists a large collection of free movie trailers watchable online. Read more: <a href="http://www.makeuseof.com/dir/trailers-movies-free-movie-trailers-to-watch">Trailers-Movies: 10,000+ Free Movie Trailers to Watch Online</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f03f6_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.flixtime.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.flixtime.com">Flixtime</a> &#8211; Creating your own video or photo slideshow is a cool way to share your pictures with friends. Flixtime is a web app that lets you create videos from photos in just three easy steps. All you need is to choose your photos, upload a tune, then click render to create your video. Read more: <a href="http://www.makeuseof.com/dir/flixtime-create-videos-from-photos">Flixtime: Create Videos From Photos In Seconds</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/80857_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.q-compare.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.q-compare.com">Q-Compare</a> &#8211;  is a simple and handy website that allows you to search and compare Amazon and eBay prices at once in order to find the best deal on the web. Search for any product you can think of and you’ll be presented with Amazon’s offering as well as a number of choices from eBay. Read more: <a href="http://www.makeuseof.com/dir/q-compare-compare-amazon-and-ebay">Q-Compare: Easily Compare Amazon and eBay Prices</a>.</td>
</tr>
</table>
<p>&nbsp;</p>
<p><a rel="nofollow" href="http://www.makeuseof.com/contact/"><strong>List Your Website Here!</strong></a></p>
<p>These are just half of the websites that we discovered in the last couple of days. If you want us to send you daily round-ups of all cool websites we come across, leave your email <strong><a href="http://feedburner.google.com/fb/a/mailverify?uri=WebServicesDir&amp;loc=en_US">here</a></strong>. Or follow us via <strong><a href="http://feedproxy.google.com/WebServicesDir">RSS feed</a></strong>.</p>
<p>em&gt;<strong>Got Tech Questions? Ask Them on <a href="http://www.makeuseof.com/answers/">MakeUseOf Answers</a>!</strong></em></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(171)<a href="http://www.makeuseof.com/tag/makeuseof-extra-27/" title="makeuseof extra #27 (February 15, 2007)">makeuseof extra #27</a> </li>
<li>(107)<a href="http://www.makeuseof.com/tag/finally-stick-to-your-resolutions-with-stickk/" title="Finally Stick To Your Resolutions With StickK (October 10, 2008)">Finally Stick To Your Resolutions With StickK</a> </li>
<li>(51)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-9/" title="Cool Websites and Tools [September 9] (September 9, 2009)">Cool Websites and Tools [September 9]</a> </li>
<li>(62)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-7/" title="Cool Websites and Tools [September 7] (September 7, 2009)">Cool Websites and Tools [September 7]</a> </li>
<li>(72)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-6/" title="Cool Websites and Tools [September 6] (September 6, 2009)">Cool Websites and Tools [September 6]</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/SvUgC8pwQ0xk-Q_44J6esbNno4Y/0/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/8376b_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/SvUgC8pwQ0xk-Q_44J6esbNno4Y/1/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/5239a_di" border="0"></img></a></p>
<div>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a1d9f_2AtL001gUh0" height="1" width="1" /><br />
<a href="http://feeds.feedburner.com/Makeuseof">Go to Source</a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;Title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;desc=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B" rel="nofollow" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;submitHeadline=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;submitSummary=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;t=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;t=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Cool+Websites+and+Tools+%5BMarch+13th%5D+-+http://b2l.me/j2gbb+(via+@programmingns)" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;summary=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B&amp;source=Programming Blog" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;h=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B&amp;posturl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;posttitle=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;bm_description=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;plugin=sexybookmarks" rel="nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/" rel="nofollow" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/" rel="nofollow" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;link=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;url=http%3A%2F%2Fwww.neurosoftware.ro%2Fprogramming-blog%2Ffacebook-web-design%2Ftutorial%2Fcool-websites-and-tools-march-13th-3%2F&amp;desc=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B&amp;pcat=Technology&amp;tags=" rel="nofollow" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/" rel="nofollow" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;body=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B" rel="nofollow" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;lname=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;u_data[name]=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;bmtitle=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;t=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/" rel="nofollow" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;body=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B" rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/&amp;T=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Cool+Websites+and+Tools+%5BMarch+13th%5D&quot;+-+from+http://b2l.me/j2gbb" rel="nofollow" title="Post this to Identica">Post this to Identica</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool Websites and Tools [March 13th]</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 12:27:00 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/</guid>
		<description><![CDATA[ Check out some of the latest MakeUseOf discoveries. All listed websites are FREE (or come with a decent free account option). No trials or buy-to-use craplets. For more cool websites and web app reviews subscribe to MakeUseOf Directory.
List Your Website Here!




&#160;

Linkbait Generator &#8211; Bloggers strive to write attractive post titles that would lure people [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px none;margin-right:30px" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/68808_web-apps-2.jpg" vspace="5" align="left" /> Check out some of the latest <em>MakeUseOf</em> discoveries. All listed websites are FREE (or come with a decent free account option). No trials or buy-to-use craplets. For more cool websites and web app reviews subscribe to <a href="http://feeds.feedburner.com/WebServicesDir">MakeUseOf Directory</a>.</p>
<p><a rel="nofollow" href="http://www.makeuseof.com/contact/"><strong>List Your Website Here!</strong></a></p>
<table>
<tr>
<td><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/01878_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Flinkbaitgenerator.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://linkbaitgenerator.com">Linkbait Generator</a> &#8211; Bloggers strive to write attractive post titles that would lure people into clicking. For those who can do that, its great; for the rest of us, there’s the LinkbaitGenerator. It is a fun little tool that generates random albeit super catchy titles for articles that is bound to make people click. Read more: <a href="http://www.makeuseof.com/dir/linkbait-generator-generate-catchy-blog-post-titles">LinkbaitGenerator: Generate Catchy Titles For Articles</a>.</td>
</tr>
</table>
<p><span></span></p>
<table>
<tr>
<td><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e2697_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fqhub.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://qhub.com">QHub</a> &#8211; Q&#38;A websites are very useful since they can get you answers to the most detailed questions online. But if you want to create your own Q&#38;A site you have to create your own app or host it in your server. Fortunately, Qhub is a web service that lets you easily create a fully-customizable question and answer website. Read more: <a href="http://www.makeuseof.com/dir/qhub-qa-sites">QHub: Create Your Own Q&#38;A Site Easily</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/d629a_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.trailers-movies.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.trailers-movies.com">Trailers-Movies</a> &#8211; If you are into movies, you know how important a trailer or a teaser is. It gives you a really good idea about how the movie is going to be and if you should spend some $$ on the movie ticket. Trailers-Movies lists a large collection of free movie trailers watchable online. Read more: <a href="http://www.makeuseof.com/dir/trailers-movies-free-movie-trailers-to-watch">Trailers-Movies: 10,000+ Free Movie Trailers to Watch Online</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7bb41_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.flixtime.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.flixtime.com">Flixtime</a> &#8211; Creating your own video or photo slideshow is a cool way to share your pictures with friends. Flixtime is a web app that lets you create videos from photos in just three easy steps. All you need is to choose your photos, upload a tune, then click render to create your video. Read more: <a href="http://www.makeuseof.com/dir/flixtime-create-videos-from-photos">Flixtime: Create Videos From Photos In Seconds</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/b7fed_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.q-compare.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.q-compare.com">Q-Compare</a> &#8211;  is a simple and handy website that allows you to search and compare Amazon and eBay prices at once in order to find the best deal on the web. Search for any product you can think of and you’ll be presented with Amazon’s offering as well as a number of choices from eBay. Read more: <a href="http://www.makeuseof.com/dir/q-compare-compare-amazon-and-ebay">Q-Compare: Easily Compare Amazon and eBay Prices</a>.</td>
</tr>
</table>
<p>&nbsp;</p>
<p><a rel="nofollow" href="http://www.makeuseof.com/contact/"><strong>List Your Website Here!</strong></a></p>
<p>These are just half of the websites that we discovered in the last couple of days. If you want us to send you daily round-ups of all cool websites we come across, leave your email <strong><a href="http://feedburner.google.com/fb/a/mailverify?uri=WebServicesDir&amp;loc=en_US">here</a></strong>. Or follow us via <strong><a href="http://feedproxy.google.com/WebServicesDir">RSS feed</a></strong>.</p>
<p>em&gt;<strong>Got Tech Questions? Ask Them on <a href="http://www.makeuseof.com/answers/">MakeUseOf Answers</a>!</strong></em></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(171)<a href="http://www.makeuseof.com/tag/makeuseof-extra-27/" title="makeuseof extra #27 (February 15, 2007)">makeuseof extra #27</a> </li>
<li>(107)<a href="http://www.makeuseof.com/tag/finally-stick-to-your-resolutions-with-stickk/" title="Finally Stick To Your Resolutions With StickK (October 10, 2008)">Finally Stick To Your Resolutions With StickK</a> </li>
<li>(51)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-9/" title="Cool Websites and Tools [September 9] (September 9, 2009)">Cool Websites and Tools [September 9]</a> </li>
<li>(62)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-7/" title="Cool Websites and Tools [September 7] (September 7, 2009)">Cool Websites and Tools [September 7]</a> </li>
<li>(72)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-6/" title="Cool Websites and Tools [September 6] (September 6, 2009)">Cool Websites and Tools [September 6]</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/SvUgC8pwQ0xk-Q_44J6esbNno4Y/0/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/b7fed_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/SvUgC8pwQ0xk-Q_44J6esbNno4Y/1/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/b7fed_di" border="0"></img></a></p>
<div>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/5f84a_2AtL001gUh0" height="1" width="1" /><br />
<a href="http://feeds.feedburner.com/Makeuseof">Go to Source</a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;Title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;desc=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B" rel="nofollow" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;submitHeadline=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;submitSummary=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;t=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;t=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Cool+Websites+and+Tools+%5BMarch+13th%5D+-+http://b2l.me/j2f45+(via+@programmingns)" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;summary=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B&amp;source=Programming Blog" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;h=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B&amp;posturl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;posttitle=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;bm_description=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;plugin=sexybookmarks" rel="nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/" rel="nofollow" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/" rel="nofollow" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;link=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;url=http%3A%2F%2Fwww.neurosoftware.ro%2Fprogramming-blog%2Ffacebook-web-design%2Ftutorial%2Fcool-websites-and-tools-march-13th-2%2F&amp;desc=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B&amp;pcat=Technology&amp;tags=web design" rel="nofollow" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/" rel="nofollow" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;body=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B" rel="nofollow" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;lname=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;u_data[name]=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;bmtitle=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;t=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/" rel="nofollow" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;body=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B" rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/&amp;T=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Cool+Websites+and+Tools+%5BMarch+13th%5D&quot;+-+from+http://b2l.me/j2f45" rel="nofollow" title="Post this to Identica">Post this to Identica</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool Websites and Tools [March 13th]</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 12:01:23 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[account option]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[catchy titles]]></category>
		<category><![CDATA[cool websites]]></category>
		<category><![CDATA[eBay]]></category>
		<category><![CDATA[ebay prices]]></category>
		<category><![CDATA[free movie trailers]]></category>
		<category><![CDATA[handy website]]></category>
		<category><![CDATA[photo slideshow]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/</guid>
		<description><![CDATA[ Check out some of the latest MakeUseOf discoveries. All listed websites are FREE (or come with a decent free account option). No trials or buy-to-use craplets. For more cool websites and web app reviews subscribe to MakeUseOf Directory.
List Your Website Here!




&#160;

Linkbait Generator &#8211; Bloggers strive to write attractive post titles that would lure people [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px none;margin-right:30px" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/9cef1_web-apps-2.jpg" vspace="5" align="left" /> Check out some of the latest <em>MakeUseOf</em> discoveries. All listed websites are FREE (or come with a decent free account option). No trials or buy-to-use craplets. For more cool websites and web app reviews subscribe to <a href="http://feeds.feedburner.com/WebServicesDir">MakeUseOf Directory</a>.</p>
<p><a rel="nofollow" href="http://www.makeuseof.com/contact/"><strong>List Your Website Here!</strong></a></p>
<table>
<tr>
<td><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/9cef1_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Flinkbaitgenerator.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://linkbaitgenerator.com">Linkbait Generator</a> &#8211; Bloggers strive to write attractive post titles that would lure people into clicking. For those who can do that, its great; for the rest of us, there’s the LinkbaitGenerator. It is a fun little tool that generates random albeit super catchy titles for articles that is bound to make people click. Read more: <a href="http://www.makeuseof.com/dir/linkbait-generator-generate-catchy-blog-post-titles">LinkbaitGenerator: Generate Catchy Titles For Articles</a>.</td>
</tr>
</table>
<p><span></span></p>
<table>
<tr>
<td><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/2a6af_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fqhub.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://qhub.com">QHub</a> &#8211; Q&#38;A websites are very useful since they can get you answers to the most detailed questions online. But if you want to create your own Q&#38;A site you have to create your own app or host it in your server. Fortunately, Qhub is a web service that lets you easily create a fully-customizable question and answer website. Read more: <a href="http://www.makeuseof.com/dir/qhub-qa-sites">QHub: Create Your Own Q&#38;A Site Easily</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ef9a3_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.trailers-movies.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.trailers-movies.com">Trailers-Movies</a> &#8211; If you are into movies, you know how important a trailer or a teaser is. It gives you a really good idea about how the movie is going to be and if you should spend some $$ on the movie ticket. Trailers-Movies lists a large collection of free movie trailers watchable online. Read more: <a href="http://www.makeuseof.com/dir/trailers-movies-free-movie-trailers-to-watch">Trailers-Movies: 10,000+ Free Movie Trailers to Watch Online</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c384f_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.flixtime.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.flixtime.com">Flixtime</a> &#8211; Creating your own video or photo slideshow is a cool way to share your pictures with friends. Flixtime is a web app that lets you create videos from photos in just three easy steps. All you need is to choose your photos, upload a tune, then click render to create your video. Read more: <a href="http://www.makeuseof.com/dir/flixtime-create-videos-from-photos">Flixtime: Create Videos From Photos In Seconds</a>.</td>
</tr>
<tr>
<td colspan="2">
<p>&nbsp;</p>
</td>
</tr>
<tr>
<td><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/142e5_xino.php?embed=1&amp;STWAccessKeyId=05a7d7d6927480b&amp;Size=lg&amp;stwUrl=http%3A%2F%2Fwww.q-compare.com"></td>
<td>
<p>&nbsp;</p>
</td>
<td><a href="http://www.q-compare.com">Q-Compare</a> &#8211;  is a simple and handy website that allows you to search and compare Amazon and eBay prices at once in order to find the best deal on the web. Search for any product you can think of and you’ll be presented with Amazon’s offering as well as a number of choices from eBay. Read more: <a href="http://www.makeuseof.com/dir/q-compare-compare-amazon-and-ebay">Q-Compare: Easily Compare Amazon and eBay Prices</a>.</td>
</tr>
</table>
<p>&nbsp;</p>
<p><a rel="nofollow" href="http://www.makeuseof.com/contact/"><strong>List Your Website Here!</strong></a></p>
<p>These are just half of the websites that we discovered in the last couple of days. If you want us to send you daily round-ups of all cool websites we come across, leave your email <strong><a href="http://feedburner.google.com/fb/a/mailverify?uri=WebServicesDir&amp;loc=en_US">here</a></strong>. Or follow us via <strong><a href="http://feedproxy.google.com/WebServicesDir">RSS feed</a></strong>.</p>
<p>em&gt;<strong>Got Tech Questions? Ask Them on <a href="http://www.makeuseof.com/answers/">MakeUseOf Answers</a>!</strong></em></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(171)<a href="http://www.makeuseof.com/tag/makeuseof-extra-27/" title="makeuseof extra #27 (February 15, 2007)">makeuseof extra #27</a> </li>
<li>(107)<a href="http://www.makeuseof.com/tag/finally-stick-to-your-resolutions-with-stickk/" title="Finally Stick To Your Resolutions With StickK (October 10, 2008)">Finally Stick To Your Resolutions With StickK</a> </li>
<li>(51)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-9/" title="Cool Websites and Tools [September 9] (September 9, 2009)">Cool Websites and Tools [September 9]</a> </li>
<li>(62)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-7/" title="Cool Websites and Tools [September 7] (September 7, 2009)">Cool Websites and Tools [September 7]</a> </li>
<li>(72)<a href="http://www.makeuseof.com/tag/cool-websites-and-tools-september-6/" title="Cool Websites and Tools [September 6] (September 6, 2009)">Cool Websites and Tools [September 6]</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/SvUgC8pwQ0xk-Q_44J6esbNno4Y/0/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/142e5_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/SvUgC8pwQ0xk-Q_44J6esbNno4Y/1/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1bed7_di" border="0"></img></a></p>
<div>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/800b5_2AtL001gUh0" height="1" width="1" /><br />
<a href="http://feeds.feedburner.com/Makeuseof">Go to Source</a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;Title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;desc=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B" rel="nofollow" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;submitHeadline=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;submitSummary=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;t=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;t=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Cool+Websites+and+Tools+%5BMarch+13th%5D+-+http://b2l.me/j2ekq+(via+@programmingns)" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;summary=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B&amp;source=Programming Blog" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;h=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B&amp;posturl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;posttitle=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;bm_description=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;plugin=sexybookmarks" rel="nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/" rel="nofollow" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/" rel="nofollow" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;link=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;url=http%3A%2F%2Fwww.neurosoftware.ro%2Fprogramming-blog%2Ffacebook-web-design%2Ftutorial%2Fcool-websites-and-tools-march-13th%2F&amp;desc=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B&amp;pcat=Technology&amp;tags=" rel="nofollow" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/" rel="nofollow" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;body=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B" rel="nofollow" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;lname=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;u_data[name]=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;bmtitle=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;t=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/" rel="nofollow" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;title=Cool+Websites+and+Tools+%5BMarch+13th%5D&amp;body=%20Check%20out%20some%20of%20the%20latest%20MakeUseOf%20discoveries.%20All%20listed%20websites%20are%20FREE%20%28or%20come%20with%20a%20decent%20free%20account%20option%29.%20No%20trials%20or%20buy-to-use%20craplets.%20For%20more%20cool%20websites%20and%20web%20app%20reviews%20subscribe%20to%20MakeUseOf%20Directory.%0AList%20Your%20Website%20Here%21%0A%0A%0A%0A%0A%26nbsp%3B%0A%0ALinkbait%20Generator%20%26%238211%3B" rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/&amp;T=Cool+Websites+and+Tools+%5BMarch+13th%5D" rel="nofollow" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Cool+Websites+and+Tools+%5BMarch+13th%5D&quot;+-+from+http://b2l.me/j2ekq" rel="nofollow" title="Post this to Identica">Post this to Identica</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/cool-websites-and-tools-march-13th/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>50 Hot New Tutorials (Part2)</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 12:00:38 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[neon]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/</guid>
		<description><![CDATA[Tutorials can often be your greatest source of inspiration when trying to design that project you have been putting off. In this post, I have rounded up a collection of very useful tutorials from around the web from the month of February. You’ll find everything from a super easy neon style in photoshop, to creating [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://designrfix.com/inspiration/50-hot-tutorials-part2" title="50 Hot New Tutorials (Part2)"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f5d71_tutorials_2010_feb_post_image_21.1j3o1iv23fwgwo8oc04g8cw8o.3hj1sn85ueskcckcogk800w8k.th.jpeg" width="349" height="140" alt="50 Hot New Tutorials (Part2)"><br /></a>Tutorials can often be your greatest source of inspiration when trying to design that project you have been putting off. In this post, I have rounded up a collection of very useful tutorials from around the web from the month of February. You’ll find everything from a super easy neon style in photoshop, to creating [...]
<div>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c384f_tC9zBh8G7Vo" height="1" width="1" /></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;title=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;Title=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;title=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;title=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;title=50+Hot+New+Tutorials+%28Part2%29&amp;desc=Tutorials%20can%20often%20be%20your%20greatest%20source%20of%20inspiration%20when%20trying%20to%20design%20that%20project%20you%20have%20been%20putting%20off.%20In%20this%20post%2C%20I%20have%20rounded%20up%20a%20collection%20of%20very%20useful%20tutorials%20from%20around%20the%20web%20from%20the%20month%20of%20February.%20You%E2%80%99ll%20find%20everything%20from%20a%20super%20easy%20neon%20style%20in%20phot" rel="nofollow" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;title=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;submitHeadline=50+Hot+New+Tutorials+%28Part2%29&amp;submitSummary=Tutorials%20can%20often%20be%20your%20greatest%20source%20of%20inspiration%20when%20trying%20to%20design%20that%20project%20you%20have%20been%20putting%20off.%20In%20this%20post%2C%20I%20have%20rounded%20up%20a%20collection%20of%20very%20useful%20tutorials%20from%20around%20the%20web%20from%20the%20month%20of%20February.%20You%E2%80%99ll%20find%20everything%20from%20a%20super%20easy%20neon%20style%20in%20phot&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;title=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;title=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;t=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;title=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;t=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=50+Hot+New+Tutorials+%28Part2%29+-+http://b2l.me/j2ehr+(via+@programmingns)" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;title=50+Hot+New+Tutorials+%28Part2%29&amp;summary=Tutorials%20can%20often%20be%20your%20greatest%20source%20of%20inspiration%20when%20trying%20to%20design%20that%20project%20you%20have%20been%20putting%20off.%20In%20this%20post%2C%20I%20have%20rounded%20up%20a%20collection%20of%20very%20useful%20tutorials%20from%20around%20the%20web%20from%20the%20month%20of%20February.%20You%E2%80%99ll%20find%20everything%20from%20a%20super%20easy%20neon%20style%20in%20phot&amp;source=Programming Blog" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;h=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Tutorials%20can%20often%20be%20your%20greatest%20source%20of%20inspiration%20when%20trying%20to%20design%20that%20project%20you%20have%20been%20putting%20off.%20In%20this%20post%2C%20I%20have%20rounded%20up%20a%20collection%20of%20very%20useful%20tutorials%20from%20around%20the%20web%20from%20the%20month%20of%20February.%20You%E2%80%99ll%20find%20everything%20from%20a%20super%20easy%20neon%20style%20in%20phot&amp;posturl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;posttitle=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;title=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;bm_description=50+Hot+New+Tutorials+%28Part2%29&amp;plugin=sexybookmarks" rel="nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/" rel="nofollow" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/" rel="nofollow" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;title=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=50+Hot+New+Tutorials+%28Part2%29&amp;link=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;title=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=50+Hot+New+Tutorials+%28Part2%29&amp;url=http%3A%2F%2Fwww.neurosoftware.ro%2Fprogramming-blog%2Ffacebook-web-design%2Ftutorial%2F50-hot-new-tutorials-part2%2F&amp;desc=Tutorials%20can%20often%20be%20your%20greatest%20source%20of%20inspiration%20when%20trying%20to%20design%20that%20project%20you%20have%20been%20putting%20off.%20In%20this%20post%2C%20I%20have%20rounded%20up%20a%20collection%20of%20very%20useful%20tutorials%20from%20around%20the%20web%20from%20the%20month%20of%20February.%20You%E2%80%99ll%20find%20everything%20from%20a%20super%20easy%20neon%20style%20in%20phot&amp;pcat=Technology&amp;tags=" rel="nofollow" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/" rel="nofollow" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;title=50+Hot+New+Tutorials+%28Part2%29&amp;body=Tutorials%20can%20often%20be%20your%20greatest%20source%20of%20inspiration%20when%20trying%20to%20design%20that%20project%20you%20have%20been%20putting%20off.%20In%20this%20post%2C%20I%20have%20rounded%20up%20a%20collection%20of%20very%20useful%20tutorials%20from%20around%20the%20web%20from%20the%20month%20of%20February.%20You%E2%80%99ll%20find%20everything%20from%20a%20super%20easy%20neon%20style%20in%20phot" rel="nofollow" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;title=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;lname=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;u_data[name]=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;bmtitle=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;title=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;t=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/" rel="nofollow" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;title=50+Hot+New+Tutorials+%28Part2%29&amp;body=Tutorials%20can%20often%20be%20your%20greatest%20source%20of%20inspiration%20when%20trying%20to%20design%20that%20project%20you%20have%20been%20putting%20off.%20In%20this%20post%2C%20I%20have%20rounded%20up%20a%20collection%20of%20very%20useful%20tutorials%20from%20around%20the%20web%20from%20the%20month%20of%20February.%20You%E2%80%99ll%20find%20everything%20from%20a%20super%20easy%20neon%20style%20in%20phot" rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/&amp;T=50+Hot+New+Tutorials+%28Part2%29" rel="nofollow" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;50+Hot+New+Tutorials+%28Part2%29&quot;+-+from+http://b2l.me/j2ehr" rel="nofollow" title="Post this to Identica">Post this to Identica</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/50-hot-new-tutorials-part2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2 Resourceful Sites To Download MP3 Ringtones For Cellphones</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 11:48:33 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[classic songs]]></category>
		<category><![CDATA[cool resources]]></category>
		<category><![CDATA[eclectic collection]]></category>
		<category><![CDATA[ff 3]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[mobile communication devices]]></category>
		<category><![CDATA[music mp3]]></category>
		<category><![CDATA[play button]]></category>
		<category><![CDATA[popup ads]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/</guid>
		<description><![CDATA[So you went out and got yourself a new mobile phone or maybe you just want to spruce up your existing device. Either way most new mobile communication devices accept MP3’s as ringtones.
I will be showing you some cool resources to download mp3 ringtones for cell phones for FREE! Different people want different kinds of [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right: 20px" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/759ca_3gHead.png" border="0" alt="3gHead" vspace="5" align="left" />So you went out and got yourself a new mobile phone or maybe you just want to spruce up your existing device. Either way most new mobile communication devices accept MP3’s as ringtones.</p>
<p>I will be showing you some cool resources to download mp3 ringtones for cell phones for FREE! Different people want different kinds of ringtones and we will try to cover something for everyone.</p>
<p>Our first stop will be to a website whose motto is: <em>The Most Ringtones, Wallpapers, Videos and more for your phone. No subscriptions or hidden fees EVER!</em> Sounds right up our alley! So let’s check it out.</p>
<p><span></span><br />
When you <a href="http://www.myxer.com">arrive at the site</a>, you will see a homepage that looks like this:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/759ca_3g1.png" border="0" alt="download mp3 ringtones for cell phones" width="584" height="679" /></p>
<p>The top 15 ringtones are right there on the homepage which you can grab. You can also click on <em>ringtones</em> at the top of the screen. Click on <em>see all ringtones</em> above the top 15 ringtones. When you find something that you like, all you have to do is click on it. For instance i clicked on the <a href="http://www.myxer.com/ringtone:799741/">PICK UP YOUR PHONE!! ringtone</a> and saw this:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/08eea_3g2.png" border="0" alt="download mp3 ringtones for cell phones" width="584" height="572" /></p>
<p>From this screen you can grab the ringtone in MP3 format, customize the ringtone, send it to a friend or download to your iPhone. They have really amazing features where you can text them to receive a ringtone over the air.  They have a eclectic collection of ringtones from music, movies and just some really wacky stuff like the one above!</p>
<p>The next site I found has a huge collection of music MP3’s, old classic songs, new songs…everything! But the site has a lot of popup ads. So make sure your popup blocker is on or you are using IE 8 or FF 3.5. The site is <a title="http://www.mobiles24.com/downloads/free-ringtones" href="http://www.mobiles24.com/downloads/free-ringtones">Mobiles24</a> and that link will take you directly to the portion of the site where you can download mp3 ringtones for cell phones. You will also need to sign up or use <a href="http://www.makeuseof.com/dir/bugmenot/">BugMeNot</a> to download them. I used BugMeNot and <a title="http://www.bugmenot.com/view/mobile24.com" href="http://www.bugmenot.com/view/mobile24.com">here is the link</a> (hint: the first one does not work).</p>
<p>When you get there you will see a place to sort and search the ringtones. You can press the play button next to the ringtone to play it on your computer. Go ahead and select one that you like and click on its title.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/45035_3g3.png" border="0" alt="download mp3 ringtones for cell phones" width="500" height="761" /></p>
<p>I chose <em>Mrs Robinson</em> by Simon and Garfunkel – man, I used to love this track! It gave young boys hope for getting with older woman when I was growing up. It will take you to a screen with the download link like so:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7114a_3g4.png" border="0" alt="free mp3 ringtones" width="453" height="689" /></p>
<p>Once you log in (upper left hand corner) you will see the screen change to allow you to download like this:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7114a_3g6.png" border="0" alt="free mp3 ringtones" width="464" height="305" /></p>
<p>Go ahead and download to your hearts content or 30 credits worth (whichever comes first!).  After downloading your track, transfer it over to your device or you can download the ringtone directly from your phone by following the WAP instructions.</p>
<p>Do you have another website that has free ringtones for mobile phones? If so leave them in the comments so we can all benefit. If you find some great ringtones on these sites or any other leave them in the comments as well! In the meantime, why not check out two ringtones-related articles that we did in the past &#8211; <a href="http://www.makeuseof.com/tag/10-websites-for-free-mobile-phone-ringtones-other-mobile-downloads/">one by Saikat</a> and <a href="http://www.makeuseof.com/tag/how-to-make-mp3-mobile-ringtones-with-audacity/">one by Mark</a>.</p>
<p>Thanks for listening and enjoy!</p>
<p>Did you like the post? Please do share your thoughts in the comments section!</p>
<p><a href="http://www.facebook.com/connect/connect.php?api_key=8ac25c7e080e1d2db91fed7391552f2a&amp;id=27517455413&amp;connections=20&amp;stream=&amp;css="><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f9519_facebook-rss-footer.png" /></a></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(8)<a href="http://www.makeuseof.com/tag/make-your-own-unique-free-ringtones-share-them-with-friends/" title="Make Unique Free Ringtones &amp; Share Them With Friends (August 13, 2009)">Make Unique Free Ringtones &#38; Share Them With Friends</a> </li>
<li>(14)<a href="http://www.makeuseof.com/tag/5-awesome-android-applications-that-could-make-life-easier/" title="5 Awesome Android Applications That Could Make Life Easier (January 3, 2010)">5 Awesome Android Applications That Could Make Life Easier</a> </li>
<li>(33)<a href="http://www.makeuseof.com/tag/makeuseof-poll-type-mobile-phone/" title="What Type of Mobile Phone Do You Use? [MakeUseOf Poll] (January 31, 2010)">What Type of Mobile Phone Do You Use? [MakeUseOf Poll]</a> </li>
<li>(10)<a href="http://www.makeuseof.com/tag/technology-explained-what-is-bluetooth/" title="What Is Bluetooth? [Technology Explained] (November 10, 2009)">What Is Bluetooth? [Technology Explained]</a> </li>
<li>(33)<a href="http://www.makeuseof.com/tag/top-3-sites-to-download-windows-mobile-6-freeware/" title="Top 3 Sites To Download Windows Mobile 6 Freeware (November 25, 2009)">Top 3 Sites To Download Windows Mobile 6 Freeware</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/IzRdtc3Xta6-HD753veoUVgnPYA/0/da"><img src="http://feedads.g.doubleclick.net/~a/IzRdtc3Xta6-HD753veoUVgnPYA/0/di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/IzRdtc3Xta6-HD753veoUVgnPYA/1/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/70c40_di" border="0"></img></a></p>
<div>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/95aed_xVfUrfloYk0" height="1" width="1" /><br />
<a href="http://feeds.feedburner.com/Makeuseof">Go to Source</a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;Title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&amp;desc=So%20you%20went%20out%20and%20got%20yourself%20a%20new%20mobile%20phone%20or%20maybe%20you%20just%20want%20to%20spruce%20up%20your%20existing%20device.%20Either%20way%20most%20new%20mobile%20communication%20devices%20accept%20MP3%E2%80%99s%20as%20ringtones.%0AI%20will%20be%20showing%20you%20some%20cool%20resources%20to%20download%20mp3%20ringtones%20for%20cell%20phones%20for%20FREE%21%20Different%20people%20w" rel="nofollow" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;submitHeadline=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&amp;submitSummary=So%20you%20went%20out%20and%20got%20yourself%20a%20new%20mobile%20phone%20or%20maybe%20you%20just%20want%20to%20spruce%20up%20your%20existing%20device.%20Either%20way%20most%20new%20mobile%20communication%20devices%20accept%20MP3%E2%80%99s%20as%20ringtones.%0AI%20will%20be%20showing%20you%20some%20cool%20resources%20to%20download%20mp3%20ringtones%20for%20cell%20phones%20for%20FREE%21%20Different%20people%20w&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;t=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;t=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones+-+http://b2l.me/j2dp4+(via+@programmingns)" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&amp;summary=So%20you%20went%20out%20and%20got%20yourself%20a%20new%20mobile%20phone%20or%20maybe%20you%20just%20want%20to%20spruce%20up%20your%20existing%20device.%20Either%20way%20most%20new%20mobile%20communication%20devices%20accept%20MP3%E2%80%99s%20as%20ringtones.%0AI%20will%20be%20showing%20you%20some%20cool%20resources%20to%20download%20mp3%20ringtones%20for%20cell%20phones%20for%20FREE%21%20Different%20people%20w&amp;source=Programming Blog" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;h=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=So%20you%20went%20out%20and%20got%20yourself%20a%20new%20mobile%20phone%20or%20maybe%20you%20just%20want%20to%20spruce%20up%20your%20existing%20device.%20Either%20way%20most%20new%20mobile%20communication%20devices%20accept%20MP3%E2%80%99s%20as%20ringtones.%0AI%20will%20be%20showing%20you%20some%20cool%20resources%20to%20download%20mp3%20ringtones%20for%20cell%20phones%20for%20FREE%21%20Different%20people%20w&amp;posturl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;posttitle=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;bm_description=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&amp;plugin=sexybookmarks" rel="nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/" rel="nofollow" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/" rel="nofollow" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&amp;link=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&amp;url=http%3A%2F%2Fwww.neurosoftware.ro%2Fprogramming-blog%2Ffacebook-web-design%2Ftutorial%2F2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3%2F&amp;desc=So%20you%20went%20out%20and%20got%20yourself%20a%20new%20mobile%20phone%20or%20maybe%20you%20just%20want%20to%20spruce%20up%20your%20existing%20device.%20Either%20way%20most%20new%20mobile%20communication%20devices%20accept%20MP3%E2%80%99s%20as%20ringtones.%0AI%20will%20be%20showing%20you%20some%20cool%20resources%20to%20download%20mp3%20ringtones%20for%20cell%20phones%20for%20FREE%21%20Different%20people%20w&amp;pcat=Technology&amp;tags=" rel="nofollow" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/" rel="nofollow" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&amp;body=So%20you%20went%20out%20and%20got%20yourself%20a%20new%20mobile%20phone%20or%20maybe%20you%20just%20want%20to%20spruce%20up%20your%20existing%20device.%20Either%20way%20most%20new%20mobile%20communication%20devices%20accept%20MP3%E2%80%99s%20as%20ringtones.%0AI%20will%20be%20showing%20you%20some%20cool%20resources%20to%20download%20mp3%20ringtones%20for%20cell%20phones%20for%20FREE%21%20Different%20people%20w" rel="nofollow" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;lname=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;u_data[name]=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;bmtitle=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;t=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/" rel="nofollow" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&amp;body=So%20you%20went%20out%20and%20got%20yourself%20a%20new%20mobile%20phone%20or%20maybe%20you%20just%20want%20to%20spruce%20up%20your%20existing%20device.%20Either%20way%20most%20new%20mobile%20communication%20devices%20accept%20MP3%E2%80%99s%20as%20ringtones.%0AI%20will%20be%20showing%20you%20some%20cool%20resources%20to%20download%20mp3%20ringtones%20for%20cell%20phones%20for%20FREE%21%20Different%20people%20w" rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/&amp;T=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&quot;+-+from+http://b2l.me/j2dp4" rel="nofollow" title="Post this to Identica">Post this to Identica</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2 Resourceful Sites To Download MP3 Ringtones For Cellphones</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 11:47:14 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[classic songs]]></category>
		<category><![CDATA[cool resources]]></category>
		<category><![CDATA[eclectic collection]]></category>
		<category><![CDATA[ff 3]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[mobile communication devices]]></category>
		<category><![CDATA[music mp3]]></category>
		<category><![CDATA[play button]]></category>
		<category><![CDATA[popup ads]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/</guid>
		<description><![CDATA[So you went out and got yourself a new mobile phone or maybe you just want to spruce up your existing device. Either way most new mobile communication devices accept MP3’s as ringtones.
I will be showing you some cool resources to download mp3 ringtones for cell phones for FREE! Different people want different kinds of [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right: 20px" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1d9ec_3gHead.png" border="0" alt="3gHead" vspace="5" align="left" />So you went out and got yourself a new mobile phone or maybe you just want to spruce up your existing device. Either way most new mobile communication devices accept MP3’s as ringtones.</p>
<p>I will be showing you some cool resources to download mp3 ringtones for cell phones for FREE! Different people want different kinds of ringtones and we will try to cover something for everyone.</p>
<p>Our first stop will be to a website whose motto is: <em>The Most Ringtones, Wallpapers, Videos and more for your phone. No subscriptions or hidden fees EVER!</em> Sounds right up our alley! So let’s check it out.</p>
<p><span></span><br />
When you <a href="http://www.myxer.com">arrive at the site</a>, you will see a homepage that looks like this:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1d9ec_3g1.png" border="0" alt="download mp3 ringtones for cell phones" width="584" height="679" /></p>
<p>The top 15 ringtones are right there on the homepage which you can grab. You can also click on <em>ringtones</em> at the top of the screen. Click on <em>see all ringtones</em> above the top 15 ringtones. When you find something that you like, all you have to do is click on it. For instance i clicked on the <a href="http://www.myxer.com/ringtone:799741/">PICK UP YOUR PHONE!! ringtone</a> and saw this:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/62e87_3g2.png" border="0" alt="download mp3 ringtones for cell phones" width="584" height="572" /></p>
<p>From this screen you can grab the ringtone in MP3 format, customize the ringtone, send it to a friend or download to your iPhone. They have really amazing features where you can text them to receive a ringtone over the air.  They have a eclectic collection of ringtones from music, movies and just some really wacky stuff like the one above!</p>
<p>The next site I found has a huge collection of music MP3’s, old classic songs, new songs…everything! But the site has a lot of popup ads. So make sure your popup blocker is on or you are using IE 8 or FF 3.5. The site is <a title="http://www.mobiles24.com/downloads/free-ringtones" href="http://www.mobiles24.com/downloads/free-ringtones">Mobiles24</a> and that link will take you directly to the portion of the site where you can download mp3 ringtones for cell phones. You will also need to sign up or use <a href="http://www.makeuseof.com/dir/bugmenot/">BugMeNot</a> to download them. I used BugMeNot and <a title="http://www.bugmenot.com/view/mobile24.com" href="http://www.bugmenot.com/view/mobile24.com">here is the link</a> (hint: the first one does not work).</p>
<p>When you get there you will see a place to sort and search the ringtones. You can press the play button next to the ringtone to play it on your computer. Go ahead and select one that you like and click on its title.</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/94f07_3g3.png" border="0" alt="download mp3 ringtones for cell phones" width="500" height="761" /></p>
<p>I chose <em>Mrs Robinson</em> by Simon and Garfunkel – man, I used to love this track! It gave young boys hope for getting with older woman when I was growing up. It will take you to a screen with the download link like so:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/d4fc7_3g4.png" border="0" alt="free mp3 ringtones" width="453" height="689" /></p>
<p>Once you log in (upper left hand corner) you will see the screen change to allow you to download like this:</p>
<p><img class="aligncenter" style="border: 0pt none" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/3g6.png" border="0" alt="free mp3 ringtones" width="464" height="305" /></p>
<p>Go ahead and download to your hearts content or 30 credits worth (whichever comes first!).  After downloading your track, transfer it over to your device or you can download the ringtone directly from your phone by following the WAP instructions.</p>
<p>Do you have another website that has free ringtones for mobile phones? If so leave them in the comments so we can all benefit. If you find some great ringtones on these sites or any other leave them in the comments as well! In the meantime, why not check out two ringtones-related articles that we did in the past &#8211; <a href="http://www.makeuseof.com/tag/10-websites-for-free-mobile-phone-ringtones-other-mobile-downloads/">one by Saikat</a> and <a href="http://www.makeuseof.com/tag/how-to-make-mp3-mobile-ringtones-with-audacity/">one by Mark</a>.</p>
<p>Thanks for listening and enjoy!</p>
<p>Did you like the post? Please do share your thoughts in the comments section!</p>
<p><a href="http://www.facebook.com/connect/connect.php?api_key=8ac25c7e080e1d2db91fed7391552f2a&amp;id=27517455413&amp;connections=20&amp;stream=&amp;css="><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/746fc_facebook-rss-footer.png" /></a></p>
<p>	<em><br />
<h4>Related posts</h4>
<p></em></p>
<ul>
<li>(8)<a href="http://www.makeuseof.com/tag/make-your-own-unique-free-ringtones-share-them-with-friends/" title="Make Unique Free Ringtones &amp; Share Them With Friends (August 13, 2009)">Make Unique Free Ringtones &#38; Share Them With Friends</a> </li>
<li>(14)<a href="http://www.makeuseof.com/tag/5-awesome-android-applications-that-could-make-life-easier/" title="5 Awesome Android Applications That Could Make Life Easier (January 3, 2010)">5 Awesome Android Applications That Could Make Life Easier</a> </li>
<li>(33)<a href="http://www.makeuseof.com/tag/makeuseof-poll-type-mobile-phone/" title="What Type of Mobile Phone Do You Use? [MakeUseOf Poll] (January 31, 2010)">What Type of Mobile Phone Do You Use? [MakeUseOf Poll]</a> </li>
<li>(10)<a href="http://www.makeuseof.com/tag/technology-explained-what-is-bluetooth/" title="What Is Bluetooth? [Technology Explained] (November 10, 2009)">What Is Bluetooth? [Technology Explained]</a> </li>
<li>(33)<a href="http://www.makeuseof.com/tag/top-3-sites-to-download-windows-mobile-6-freeware/" title="Top 3 Sites To Download Windows Mobile 6 Freeware (November 25, 2009)">Top 3 Sites To Download Windows Mobile 6 Freeware</a> </li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/IzRdtc3Xta6-HD753veoUVgnPYA/0/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/746fc_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/IzRdtc3Xta6-HD753veoUVgnPYA/1/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/8642c_di" border="0"></img></a></p>
<div>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3814d_xVfUrfloYk0" height="1" width="1" /><br />
<a href="http://feeds.feedburner.com/Makeuseof">Go to Source</a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;Title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&amp;desc=So%20you%20went%20out%20and%20got%20yourself%20a%20new%20mobile%20phone%20or%20maybe%20you%20just%20want%20to%20spruce%20up%20your%20existing%20device.%20Either%20way%20most%20new%20mobile%20communication%20devices%20accept%20MP3%E2%80%99s%20as%20ringtones.%0AI%20will%20be%20showing%20you%20some%20cool%20resources%20to%20download%20mp3%20ringtones%20for%20cell%20phones%20for%20FREE%21%20Different%20people%20w" rel="nofollow" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;submitHeadline=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&amp;submitSummary=So%20you%20went%20out%20and%20got%20yourself%20a%20new%20mobile%20phone%20or%20maybe%20you%20just%20want%20to%20spruce%20up%20your%20existing%20device.%20Either%20way%20most%20new%20mobile%20communication%20devices%20accept%20MP3%E2%80%99s%20as%20ringtones.%0AI%20will%20be%20showing%20you%20some%20cool%20resources%20to%20download%20mp3%20ringtones%20for%20cell%20phones%20for%20FREE%21%20Different%20people%20w&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;t=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;t=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones+-+http://b2l.me/j2dks+(via+@programmingns)" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&amp;summary=So%20you%20went%20out%20and%20got%20yourself%20a%20new%20mobile%20phone%20or%20maybe%20you%20just%20want%20to%20spruce%20up%20your%20existing%20device.%20Either%20way%20most%20new%20mobile%20communication%20devices%20accept%20MP3%E2%80%99s%20as%20ringtones.%0AI%20will%20be%20showing%20you%20some%20cool%20resources%20to%20download%20mp3%20ringtones%20for%20cell%20phones%20for%20FREE%21%20Different%20people%20w&amp;source=Programming Blog" rel="nofollow" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;h=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=So%20you%20went%20out%20and%20got%20yourself%20a%20new%20mobile%20phone%20or%20maybe%20you%20just%20want%20to%20spruce%20up%20your%20existing%20device.%20Either%20way%20most%20new%20mobile%20communication%20devices%20accept%20MP3%E2%80%99s%20as%20ringtones.%0AI%20will%20be%20showing%20you%20some%20cool%20resources%20to%20download%20mp3%20ringtones%20for%20cell%20phones%20for%20FREE%21%20Different%20people%20w&amp;posturl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;posttitle=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;bm_description=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&amp;plugin=sexybookmarks" rel="nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/" rel="nofollow" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/" rel="nofollow" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&amp;link=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/" rel="nofollow" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&amp;url=http%3A%2F%2Fwww.neurosoftware.ro%2Fprogramming-blog%2Ffacebook-web-design%2Ftutorial%2F2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2%2F&amp;desc=So%20you%20went%20out%20and%20got%20yourself%20a%20new%20mobile%20phone%20or%20maybe%20you%20just%20want%20to%20spruce%20up%20your%20existing%20device.%20Either%20way%20most%20new%20mobile%20communication%20devices%20accept%20MP3%E2%80%99s%20as%20ringtones.%0AI%20will%20be%20showing%20you%20some%20cool%20resources%20to%20download%20mp3%20ringtones%20for%20cell%20phones%20for%20FREE%21%20Different%20people%20w&amp;pcat=Technology&amp;tags=" rel="nofollow" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/" rel="nofollow" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&amp;body=So%20you%20went%20out%20and%20got%20yourself%20a%20new%20mobile%20phone%20or%20maybe%20you%20just%20want%20to%20spruce%20up%20your%20existing%20device.%20Either%20way%20most%20new%20mobile%20communication%20devices%20accept%20MP3%E2%80%99s%20as%20ringtones.%0AI%20will%20be%20showing%20you%20some%20cool%20resources%20to%20download%20mp3%20ringtones%20for%20cell%20phones%20for%20FREE%21%20Different%20people%20w" rel="nofollow" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;lname=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;u_data[name]=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;bmtitle=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;t=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/" rel="nofollow" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;title=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&amp;body=So%20you%20went%20out%20and%20got%20yourself%20a%20new%20mobile%20phone%20or%20maybe%20you%20just%20want%20to%20spruce%20up%20your%20existing%20device.%20Either%20way%20most%20new%20mobile%20communication%20devices%20accept%20MP3%E2%80%99s%20as%20ringtones.%0AI%20will%20be%20showing%20you%20some%20cool%20resources%20to%20download%20mp3%20ringtones%20for%20cell%20phones%20for%20FREE%21%20Different%20people%20w" rel="nofollow" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/&amp;T=2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones" rel="nofollow" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;2+Resourceful+Sites+To+Download+MP3+Ringtones+For+Cellphones&quot;+-+from+http://b2l.me/j2dks" rel="nofollow" title="Post this to Identica">Post this to Identica</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/2-resourceful-sites-to-download-mp3-ringtones-for-cellphones-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
