<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>burnmind.com</title>
	
	<link>http://www.burnmind.com</link>
	<description>useful info to burn into your mind</description>
	<lastBuildDate>Tue, 24 Jan 2012 15:15:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/burnmind" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="burnmind" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">burnmind</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>how to build a quick ‘n’ dirty WordPress plugin</title>
		<link>http://www.burnmind.com/howto/how-to-build-a-quick-n-dirty-wordpress-plugin</link>
		<comments>http://www.burnmind.com/howto/how-to-build-a-quick-n-dirty-wordpress-plugin#comments</comments>
		<pubDate>Sat, 18 Jun 2011 13:56:34 +0000</pubDate>
		<dc:creator>burnmind</dc:creator>
				<category><![CDATA[tutorials]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[mailing list]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.burnmind.com/?p=690</guid>
		<description><![CDATA[Photo by ~abekamal on deviantART Let&#8217;s say that you&#8217;ve in the process of writing a new e-book and you want to give the opportunity to your blog readers to submit their details in a form so they can receive a notification when the e-book is ready. You need a plugin. Ok, there are a few [...]]]></description>
			<content:encoded><![CDATA[<div class="image"><img title="Dirty Smile by Aukon" src="http://www.burnmind.com/wp-content/uploads/2011/06/plug_it_in_by_abekamal.png" border="0" alt="Plug it in by Abekamal on deviantART" />
<div class="caption">Photo by <a title="~abekamal on deviantart.com" href="http://abekamal.deviantart.com/">~abekamal</a> on <a title="deviantART" href="http://www.deviantart.com/">deviantART</a></div>
</div>
<p>Let&#8217;s say that you&#8217;ve in the process of writing a new e-book and you want to give the opportunity to your blog readers to submit their details in a form so they can receive a notification when the e-book is ready. You need a plugin. Ok, there are a few mailing list plugins out there that you can use quickly, but the point of this article is to show you how you can build such a plugin from scratch so you can modify it in any way you want, etc. You get the idea, so let&#8217;s start.</p>
<p>Have a look at the <a href="http://www.burnmind.com/quick-n-dirty-demo" target="_blank">demo page</a> (opens in a new tab). You can also <a href="http://www.burnmind.com/fbi_server_copy/quickndirty.zip" title="Downloaded 58 times">download the tutorial’s source code</a>.</p>
<p>First, make a new .php file, naming it whatever you want. I named mine &#8220;quickndirty.php&#8221; (like the one you downloaded). The first lines (the comments) are just for informative reasons (the info displayed in the &#8220;Plugins&#8221; section of your WordPress administration panel):</p>
<pre class="brush: php; title: ; notranslate">
/*
Plugin Name: Quick'n'Dirty
Plugin URI: http://www.burnmind.com/howto/how-to-build-a-quick-n-dirty-wordpress-plugin
Version: v1.00
Author: &lt;a href=&quot;http://www.burnmind.com/&quot;&gt;burnmind.com&lt;/a&gt;
Description: A Quick'n'Dirty WordPress plugin
 */
</pre>
<p>The whole plugin consists of one class, named &#8220;Qnd&#8221; (Quick&#8217;n'dirty). All the functions (unless stated so) are going to be included in this class. We declare 2 private variables, one to hold the database table name (make sure to use a unique name to avoid any conflicts with other tables) and one to hold an instance of <a href="http://codex.wordpress.org/Class_Reference/wpdb" target="_blank">wpdb</a>:</p>
<pre class="brush: php; title: ; notranslate">
if (!class_exists(&quot;qnd&quot;))
{
    class Qnd
    {
        private $wpdb;
        private $qndTable;

        public function __construct ()
        {
            global $wpdb;
            $this-&gt;wpdb = $wpdb;
            $this-&gt;qndTable = $wpdb-&gt;prefix . &quot;qnd&quot;;
        }
    }
}
</pre>
<p>The first function we are going to create is the one that will be executed when the plugin is activated and it&#8217;s going to be responsible to create the table into the database. The table is going to be created only if it is not present and it will not be deleted when the plugin is deactivated. The table consists of 4 (self-explanatory) fields:</p>
<pre class="brush: php; title: ; notranslate">
        function createTable()
        {
            if($this-&gt;wpdb-&gt;get_var(&quot;show tables like '$this-&gt;qndTable'&quot;) != $this-&gt;qndTable)
            {
                $create =   &quot;CREATE TABLE &quot; . $this-&gt;qndTable . &quot; (
                            id int(20) NOT NULL AUTO_INCREMENT,
                            name varchar(300) NOT NULL,
                            email varchar(300) NOT NULL,
                            location varchar(300) NOT NULL,
                            PRIMARY KEY (id)
                            ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1; &quot;;

                require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
                dbDelta($create);
            }
        }
</pre>
<p>Next is the controller function. It&#8217;s functionality is quite straightforward: If a POST request have been made try to insert the details into the database and if not, display the form:</p>
<pre class="brush: php; title: ; notranslate">
        function controler()
        {
            if (isset($_POST['nameField']))
            {
                return $this-&gt;submitDetails();
            }
            else
            {
                return $this-&gt;displayForm(false);
            }
        }
</pre>
<p>We&#8217;ll first explore the <em>displayForm</em> function. It&#8217;s really just a simple form. The <em>$error</em> variable is used to check if there is an error and if there is to display a message.</p>
<pre class="brush: php; title: ; notranslate">
function displayForm($error)
{
?&gt;
&lt;p&gt;Please complete the form to send you the e-book when it's published.&lt;/p&gt;

&lt;?php if ($error) { ?&gt;
&lt;p style=&quot;color:#FF0000;&quot;&gt;&lt;strong&gt;Please complete all the required fields!&lt;/strong&gt;&lt;/p&gt;
&lt;?php } ?&gt;

&lt;form method=&quot;post&quot; action=&quot;&lt;?php echo $_SERVER[&quot;REQUEST_URI&quot;]; ?&gt;&quot;&gt;
&lt;ul&gt;
   &lt;li&gt;
      &lt;label&gt;Name:&lt;/label&gt;&lt;br /&gt; &lt;input type=&quot;text&quot; name=&quot;nameField&quot; value=&quot;&lt;?php echo $_POST['nameField'] ?&gt;&quot; /&gt; (required)
   &lt;/li&gt;
   &lt;li&gt;
      &lt;label&gt;E-mail:&lt;/label&gt;&lt;br /&gt; &lt;input type=&quot;text&quot; name=&quot;emailField&quot; value=&quot;&lt;?php echo $_POST['emailField'] ?&gt;&quot; /&gt; (required)
   &lt;/li&gt;
   &lt;li&gt;
      &lt;label&gt;Location:&lt;/label&gt;&lt;br /&gt; &lt;input type=&quot;text&quot; name=&quot;locationField&quot; value=&quot;&lt;?php echo $_POST['locationField'] ?&gt;&quot; /&gt;
   &lt;/li&gt;
&lt;/ul&gt;
&lt;input type=&quot;submit&quot; value=&quot;Submit&quot; onclick=&quot;return validate()&quot; /&gt;
&lt;/form&gt;
&lt;?php
}
</pre>
<p><em>submitDetails</em> is the last function of <em>Qnd</em> class. First, it escapes the user&#8217;s input to prevent SQL injection. Then it checks if either the name or the e-mail fields are blank. If any of them is, it displays the form with an error message. Please note that in a proper implementation it&#8217;s recommended to use better error reporting, to check if the e-mail is valid, etc. Finally, if the required fields are there, it inserts the data into the database and displays a success message instead of the form.</p>
<pre class="brush: php; title: ; notranslate">
        function submitDetails()
        {
            $name = $this-&gt;wpdb-&gt;escape($_POST['nameField']);
            $email = $this-&gt;wpdb-&gt;escape($_POST['emailField']);
            $location = $this-&gt;wpdb-&gt;escape($_POST['locationField']);

            if($name=='' || $email=='')
            {
		$this-&gt;insertForm(true);
            }
            else
            {
                $insert = &quot;INSERT INTO $this-&gt;qndTable
                           (name, email, location)
                           VALUES ('$name', '$email', '$location')&quot;;

                $this-&gt;wpdb-&gt;query($insert);
                echo 'Your details have been submitted. Thank you!';
            }
        }
</pre>
<p>The plugin is almost ready. Place the following code outside of the <em>Qnd</em> class and you&#8217;re ready. The code creates an instance of the <em>Qnd</em> class, registers the shortcode &#8220;QUICKNDIRTY&#8221; to be used to call the plugin and sets the function <em>createTable</em> to be executed every time the plugin is activated from the WordPress administration panel.</p>
<pre class="brush: php; title: ; notranslate">
if (class_exists(&quot;qnd&quot;))
{
    $qnd = new Qnd();
}

if (isset($qnd))
{
    add_shortcode('QUICKNDIRTY', array( &amp;$qnd, 'controler'));
    register_activation_hook(__FILE__, array(&amp;$qnd, 'createTable'));
}
</pre>
<p>To use the plugin, place the .php file into your plugins folder, activate it in the administration panel, create (or edit) a post/page and insert the shortcode QUICKNDIRTY in brackets ([]).</p>
<p>Have a look at the <a href="http://www.burnmind.com/quick-n-dirty-demo" target="_blank">demo page</a> (opens in a new tab). You can also <a href="http://www.burnmind.com/fbi_server_copy/quickndirty.zip" title="Downloaded 58 times">download the tutorial’s source code</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+build+a+quick+%27n%27+dirty+WordPress+plugin&amp;link=http://www.burnmind.com/howto/how-to-build-a-quick-n-dirty-wordpress-plugin&amp;notes=Photo%20by%20%7Eabekamal%20on%20deviantART%0D%0A%0D%0ALet%27s%20say%20that%20you%27ve%20in%20the%20process%20of%20writing%20a%20new%20e-book%20and%20you%20want%20to%20give%20the%20opportunity%20to%20your%20blog%20readers%20to%20submit%20their%20details%20in%20a%20form%20so%20they%20can%20receive%20a%20notification%20when%20the%20e-book%20is%20ready.%20You%20need%20a%20plugin.%20Ok%2C%20there%20are%20a%20few%20mailing%20lis&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+build+a+quick+%27n%27+dirty+WordPress+plugin&amp;link=http://www.burnmind.com/howto/how-to-build-a-quick-n-dirty-wordpress-plugin&amp;notes=Photo%20by%20%7Eabekamal%20on%20deviantART%0D%0A%0D%0ALet%27s%20say%20that%20you%27ve%20in%20the%20process%20of%20writing%20a%20new%20e-book%20and%20you%20want%20to%20give%20the%20opportunity%20to%20your%20blog%20readers%20to%20submit%20their%20details%20in%20a%20form%20so%20they%20can%20receive%20a%20notification%20when%20the%20e-book%20is%20ready.%20You%20need%20a%20plugin.%20Ok%2C%20there%20are%20a%20few%20mailing%20lis&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+build+a+quick+%27n%27+dirty+WordPress+plugin&amp;link=http://www.burnmind.com/howto/how-to-build-a-quick-n-dirty-wordpress-plugin&amp;notes=Photo%20by%20%7Eabekamal%20on%20deviantART%0D%0A%0D%0ALet%27s%20say%20that%20you%27ve%20in%20the%20process%20of%20writing%20a%20new%20e-book%20and%20you%20want%20to%20give%20the%20opportunity%20to%20your%20blog%20readers%20to%20submit%20their%20details%20in%20a%20form%20so%20they%20can%20receive%20a%20notification%20when%20the%20e-book%20is%20ready.%20You%20need%20a%20plugin.%20Ok%2C%20there%20are%20a%20few%20mailing%20lis&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+build+a+quick+%27n%27+dirty+WordPress+plugin&amp;link=http://www.burnmind.com/howto/how-to-build-a-quick-n-dirty-wordpress-plugin&amp;notes=Photo%20by%20%7Eabekamal%20on%20deviantART%0D%0A%0D%0ALet%27s%20say%20that%20you%27ve%20in%20the%20process%20of%20writing%20a%20new%20e-book%20and%20you%20want%20to%20give%20the%20opportunity%20to%20your%20blog%20readers%20to%20submit%20their%20details%20in%20a%20form%20so%20they%20can%20receive%20a%20notification%20when%20the%20e-book%20is%20ready.%20You%20need%20a%20plugin.%20Ok%2C%20there%20are%20a%20few%20mailing%20lis&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+build+a+quick+%27n%27+dirty+WordPress+plugin&amp;link=http://www.burnmind.com/howto/how-to-build-a-quick-n-dirty-wordpress-plugin&amp;notes=Photo%20by%20%7Eabekamal%20on%20deviantART%0D%0A%0D%0ALet%27s%20say%20that%20you%27ve%20in%20the%20process%20of%20writing%20a%20new%20e-book%20and%20you%20want%20to%20give%20the%20opportunity%20to%20your%20blog%20readers%20to%20submit%20their%20details%20in%20a%20form%20so%20they%20can%20receive%20a%20notification%20when%20the%20e-book%20is%20ready.%20You%20need%20a%20plugin.%20Ok%2C%20there%20are%20a%20few%20mailing%20lis&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+build+a+quick+%27n%27+dirty+WordPress+plugin&amp;link=http://www.burnmind.com/howto/how-to-build-a-quick-n-dirty-wordpress-plugin&amp;notes=Photo%20by%20%7Eabekamal%20on%20deviantART%0D%0A%0D%0ALet%27s%20say%20that%20you%27ve%20in%20the%20process%20of%20writing%20a%20new%20e-book%20and%20you%20want%20to%20give%20the%20opportunity%20to%20your%20blog%20readers%20to%20submit%20their%20details%20in%20a%20form%20so%20they%20can%20receive%20a%20notification%20when%20the%20e-book%20is%20ready.%20You%20need%20a%20plugin.%20Ok%2C%20there%20are%20a%20few%20mailing%20lis&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.burnmind.com/howto/how-to-build-a-quick-n-dirty-wordpress-plugin/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>how to feed jQuery UI’s Autocomplete with a database-generated dataset</title>
		<link>http://www.burnmind.com/howto/how-to-feed-jquery-uis-autocomplete-with-a-database-generated-dataset</link>
		<comments>http://www.burnmind.com/howto/how-to-feed-jquery-uis-autocomplete-with-a-database-generated-dataset#comments</comments>
		<pubDate>Wed, 13 Oct 2010 01:22:18 +0000</pubDate>
		<dc:creator>burnmind</dc:creator>
				<category><![CDATA[tutorials]]></category>
		<category><![CDATA[autocomplete]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[dataset]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[ui]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://www.burnmind.com/?p=656</guid>
		<description><![CDATA[Photo by ~Aukon on deviantART Recently, I had to use jQuery UI&#8217;s Autocomplete widget. Its use is straightforward when you have a static datasource. When the datasource is larger though (from a few thousand to several million records) and you need to feed the Autocomplete widget with a remote dataset (provided in the example by [...]]]></description>
			<content:encoded><![CDATA[<div class="image"><img title="Dirty Smile by Aukon" src="http://www.burnmind.com/wp-content/uploads/2010/10/Dirty_Smile_by_Aukon.png" border="0" alt="Dirty Smile by Aukon on deviantART" />
<div class="caption">Photo by <a title="~Aukon on deviantart.com" href="http://aukon.deviantart.com/">~Aukon</a> on <a title="deviantART" href="http://www.deviantart.com/">deviantART</a></div>
</div>
<p>Recently, I had to use <a href="http://jqueryui.com/demos/autocomplete/">jQuery UI&#8217;s Autocomplete</a> widget. Its use is straightforward when you have a static datasource. When the datasource is larger though (from a few thousand to several million records) and you need to feed the Autocomplete widget with a remote dataset (provided in the example by a php script which queries a database) this are becoming a bit more complex because the documentation is a little vague on the matter and it lacks of a proper example.</p>
<p>Have a look at the <a href="/tutorials/autocomplete/" target="_blank">demo page</a> (opens in a new tab). You can also <a href="http://www.burnmind.com/fbi_server_copy/autocomplete-burmind.com_.zip" title="Downloaded 755 times">download the tutorial’s source code</a>.</p>
<p>We&#8217;re going to use a text field with the id &#8220;auto&#8221;:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;input type=&quot;text&quot; id=&quot;auto&quot; /&gt;
</pre>
<p>The JavaScript code is quite straightforward. Inside the document.ready function, we bind the Autocomplete widget to the text field with the id &#8220;auto&#8221;. As a source for the Autocomplete widget we specify the php script &#8220;search.php&#8221;. We also set the minimum length of characters (3) that the Autocomplete widget needs before it activates itself.</p>
<pre class="brush: jscript; title: ; notranslate">
$(document).ready(function()
{
    $('#auto').autocomplete(
    {
        source: &quot;search.php&quot;,
        minLength: 3
    });
});
</pre>
<p>The php script is where all the magic happens. The most important piece of information is that the Autocomplete widget sends the content of the text field to the php script via the GET method in a variable called &#8220;term&#8221;.</p>
<pre class="brush: php; title: ; notranslate">
$mysqli = new mysqli('localhost', 'yourUserName', 'yourPassWord', 'yourDatabase');
$text = $mysqli-&gt;real_escape_string($_GET['term']);

$query = &quot;SELECT name FROM bands WHERE name LIKE '%$text%' ORDER BY name ASC&quot;;
$result = $mysqli-&gt;query($query);
$json = '[';
$first = true;
while($row = $result-&gt;fetch_assoc())
{
    if (!$first) { $json .=  ','; } else { $first = false; }
    $json .= '{&quot;value&quot;:&quot;'.$row['name'].'&quot;}';
}
$json .= ']';
echo $json;
</pre>
<p>The above script will connect to the database, perform a query based on the term written by the user in the text field and will echo the results (to be used by the Autocomplete widget) in the following <a href="http://json.org/">JSON</a> format: [{"value":"Nirvana"},{"value":"Pink Floyd"}].</p>
<p>If you haven&#8217;t done it already, have a look at the <a href="/tutorials/autocomplete/" target="_blank">demo page</a> (opens in a new tab). You can also <a href="http://www.burnmind.com/fbi_server_copy/autocomplete-burmind.com_.zip" title="Downloaded 755 times">download the tutorial’s source code</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+feed+jQuery+UI%27s+Autocomplete+with+a+database-generated+dataset&amp;link=http://www.burnmind.com/howto/how-to-feed-jquery-uis-autocomplete-with-a-database-generated-dataset&amp;notes=Photo%20by%20%7EAukon%20on%20deviantART%0D%0A%0D%0ARecently%2C%20I%20had%20to%20use%20jQuery%20UI%27s%20Autocomplete%20widget.%20Its%20use%20is%20straightforward%20when%20you%20have%20a%20static%20datasource.%20When%20the%20datasource%20is%20larger%20though%20%28from%20a%20few%20thousand%20to%20several%20million%20records%29%20and%20you%20need%20to%20feed%20the%20Autocomplete%20widget%20with%20a%20remote%20data&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+feed+jQuery+UI%27s+Autocomplete+with+a+database-generated+dataset&amp;link=http://www.burnmind.com/howto/how-to-feed-jquery-uis-autocomplete-with-a-database-generated-dataset&amp;notes=Photo%20by%20%7EAukon%20on%20deviantART%0D%0A%0D%0ARecently%2C%20I%20had%20to%20use%20jQuery%20UI%27s%20Autocomplete%20widget.%20Its%20use%20is%20straightforward%20when%20you%20have%20a%20static%20datasource.%20When%20the%20datasource%20is%20larger%20though%20%28from%20a%20few%20thousand%20to%20several%20million%20records%29%20and%20you%20need%20to%20feed%20the%20Autocomplete%20widget%20with%20a%20remote%20data&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+feed+jQuery+UI%27s+Autocomplete+with+a+database-generated+dataset&amp;link=http://www.burnmind.com/howto/how-to-feed-jquery-uis-autocomplete-with-a-database-generated-dataset&amp;notes=Photo%20by%20%7EAukon%20on%20deviantART%0D%0A%0D%0ARecently%2C%20I%20had%20to%20use%20jQuery%20UI%27s%20Autocomplete%20widget.%20Its%20use%20is%20straightforward%20when%20you%20have%20a%20static%20datasource.%20When%20the%20datasource%20is%20larger%20though%20%28from%20a%20few%20thousand%20to%20several%20million%20records%29%20and%20you%20need%20to%20feed%20the%20Autocomplete%20widget%20with%20a%20remote%20data&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+feed+jQuery+UI%27s+Autocomplete+with+a+database-generated+dataset&amp;link=http://www.burnmind.com/howto/how-to-feed-jquery-uis-autocomplete-with-a-database-generated-dataset&amp;notes=Photo%20by%20%7EAukon%20on%20deviantART%0D%0A%0D%0ARecently%2C%20I%20had%20to%20use%20jQuery%20UI%27s%20Autocomplete%20widget.%20Its%20use%20is%20straightforward%20when%20you%20have%20a%20static%20datasource.%20When%20the%20datasource%20is%20larger%20though%20%28from%20a%20few%20thousand%20to%20several%20million%20records%29%20and%20you%20need%20to%20feed%20the%20Autocomplete%20widget%20with%20a%20remote%20data&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+feed+jQuery+UI%27s+Autocomplete+with+a+database-generated+dataset&amp;link=http://www.burnmind.com/howto/how-to-feed-jquery-uis-autocomplete-with-a-database-generated-dataset&amp;notes=Photo%20by%20%7EAukon%20on%20deviantART%0D%0A%0D%0ARecently%2C%20I%20had%20to%20use%20jQuery%20UI%27s%20Autocomplete%20widget.%20Its%20use%20is%20straightforward%20when%20you%20have%20a%20static%20datasource.%20When%20the%20datasource%20is%20larger%20though%20%28from%20a%20few%20thousand%20to%20several%20million%20records%29%20and%20you%20need%20to%20feed%20the%20Autocomplete%20widget%20with%20a%20remote%20data&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+feed+jQuery+UI%27s+Autocomplete+with+a+database-generated+dataset&amp;link=http://www.burnmind.com/howto/how-to-feed-jquery-uis-autocomplete-with-a-database-generated-dataset&amp;notes=Photo%20by%20%7EAukon%20on%20deviantART%0D%0A%0D%0ARecently%2C%20I%20had%20to%20use%20jQuery%20UI%27s%20Autocomplete%20widget.%20Its%20use%20is%20straightforward%20when%20you%20have%20a%20static%20datasource.%20When%20the%20datasource%20is%20larger%20though%20%28from%20a%20few%20thousand%20to%20several%20million%20records%29%20and%20you%20need%20to%20feed%20the%20Autocomplete%20widget%20with%20a%20remote%20data&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.burnmind.com/howto/how-to-feed-jquery-uis-autocomplete-with-a-database-generated-dataset/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>hello in all languages WordPress plugin</title>
		<link>http://www.burnmind.com/freebies/hello-in-all-languages-wordpress-plugin</link>
		<comments>http://www.burnmind.com/freebies/hello-in-all-languages-wordpress-plugin#comments</comments>
		<pubDate>Fri, 11 Jun 2010 12:00:18 +0000</pubDate>
		<dc:creator>burnmind</dc:creator>
				<category><![CDATA[freebies]]></category>
		<category><![CDATA[hello]]></category>
		<category><![CDATA[hello in all languages]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.burnmind.com/?p=600</guid>
		<description><![CDATA[! A couple of months ago I was in need of a script that figures out the location of the visitors of a website (using their IP) and displays a &#8220;hello&#8221; in their own language. After building this script I wrapped it up as a WordPress plugin under the name &#8220;hello in all languages&#8221;. Hello [...]]]></description>
			<content:encoded><![CDATA[<div class="image"><img title="Hello in all languages" src="http://www.burnmind.com/wp-content/uploads/2010/06/hello_in_all_languages.png" border="0" alt="Hello in all languages" /></div>
<p>Hello! A couple of months ago I was in need of a script that figures out the location of the visitors of a website (using their IP) and displays a &#8220;hello&#8221; in their own language. After building this script I wrapped it up as a WordPress plugin under the name &#8220;hello in all languages&#8221;.</p>
<p><a title="hello in all languages official page" href="http://stathisg.com/projects/hello-in-all-languages/">Hello in all languages</a> is a free WordPress plugin that displays a &#8220;hello&#8221; word translated to the official language of the country the visitor&#8217;s IP belongs to. You can find more information on its <a title="hello in all languages official page" href="http://stathisg.com/projects/hello-in-all-languages/">official page</a> and you can <a title="download from WordPress Plugin Directory" href="http://wordpress.org/extend/plugins/hello-in-all-languages/">download it from WordPress Plugin Directory</a>.</p>
<p>If you try it, I would be happy to receive your feedback. I hope you enjoy it!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=hello+in+all+languages+WordPress+plugin&amp;link=http://www.burnmind.com/freebies/hello-in-all-languages-wordpress-plugin&amp;notes=%0D%0A%0D%0A%21%20A%20couple%20of%20months%20ago%20I%20was%20in%20need%20of%20a%20script%20that%20figures%20out%20the%20location%20of%20the%20visitors%20of%20a%20website%20%28using%20their%20IP%29%20and%20displays%20a%20%22hello%22%20in%20their%20own%20language.%20After%20building%20this%20script%20I%20wrapped%20it%20up%20as%20a%20WordPress%20plugin%20under%20the%20name%20%22hello%20in%20all%20languages%22.%0D%0A%0D%0AHello%20in%20all%20l&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=hello+in+all+languages+WordPress+plugin&amp;link=http://www.burnmind.com/freebies/hello-in-all-languages-wordpress-plugin&amp;notes=%0D%0A%0D%0A%21%20A%20couple%20of%20months%20ago%20I%20was%20in%20need%20of%20a%20script%20that%20figures%20out%20the%20location%20of%20the%20visitors%20of%20a%20website%20%28using%20their%20IP%29%20and%20displays%20a%20%22hello%22%20in%20their%20own%20language.%20After%20building%20this%20script%20I%20wrapped%20it%20up%20as%20a%20WordPress%20plugin%20under%20the%20name%20%22hello%20in%20all%20languages%22.%0D%0A%0D%0AHello%20in%20all%20l&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=hello+in+all+languages+WordPress+plugin&amp;link=http://www.burnmind.com/freebies/hello-in-all-languages-wordpress-plugin&amp;notes=%0D%0A%0D%0A%21%20A%20couple%20of%20months%20ago%20I%20was%20in%20need%20of%20a%20script%20that%20figures%20out%20the%20location%20of%20the%20visitors%20of%20a%20website%20%28using%20their%20IP%29%20and%20displays%20a%20%22hello%22%20in%20their%20own%20language.%20After%20building%20this%20script%20I%20wrapped%20it%20up%20as%20a%20WordPress%20plugin%20under%20the%20name%20%22hello%20in%20all%20languages%22.%0D%0A%0D%0AHello%20in%20all%20l&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=hello+in+all+languages+WordPress+plugin&amp;link=http://www.burnmind.com/freebies/hello-in-all-languages-wordpress-plugin&amp;notes=%0D%0A%0D%0A%21%20A%20couple%20of%20months%20ago%20I%20was%20in%20need%20of%20a%20script%20that%20figures%20out%20the%20location%20of%20the%20visitors%20of%20a%20website%20%28using%20their%20IP%29%20and%20displays%20a%20%22hello%22%20in%20their%20own%20language.%20After%20building%20this%20script%20I%20wrapped%20it%20up%20as%20a%20WordPress%20plugin%20under%20the%20name%20%22hello%20in%20all%20languages%22.%0D%0A%0D%0AHello%20in%20all%20l&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=hello+in+all+languages+WordPress+plugin&amp;link=http://www.burnmind.com/freebies/hello-in-all-languages-wordpress-plugin&amp;notes=%0D%0A%0D%0A%21%20A%20couple%20of%20months%20ago%20I%20was%20in%20need%20of%20a%20script%20that%20figures%20out%20the%20location%20of%20the%20visitors%20of%20a%20website%20%28using%20their%20IP%29%20and%20displays%20a%20%22hello%22%20in%20their%20own%20language.%20After%20building%20this%20script%20I%20wrapped%20it%20up%20as%20a%20WordPress%20plugin%20under%20the%20name%20%22hello%20in%20all%20languages%22.%0D%0A%0D%0AHello%20in%20all%20l&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=hello+in+all+languages+WordPress+plugin&amp;link=http://www.burnmind.com/freebies/hello-in-all-languages-wordpress-plugin&amp;notes=%0D%0A%0D%0A%21%20A%20couple%20of%20months%20ago%20I%20was%20in%20need%20of%20a%20script%20that%20figures%20out%20the%20location%20of%20the%20visitors%20of%20a%20website%20%28using%20their%20IP%29%20and%20displays%20a%20%22hello%22%20in%20their%20own%20language.%20After%20building%20this%20script%20I%20wrapped%20it%20up%20as%20a%20WordPress%20plugin%20under%20the%20name%20%22hello%20in%20all%20languages%22.%0D%0A%0D%0AHello%20in%20all%20l&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.burnmind.com/freebies/hello-in-all-languages-wordpress-plugin/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>how to create a simple automatic image rotator using jQuery</title>
		<link>http://www.burnmind.com/howto/how-to-create-a-simple-automatic-image-rotator-using-jquery</link>
		<comments>http://www.burnmind.com/howto/how-to-create-a-simple-automatic-image-rotator-using-jquery#comments</comments>
		<pubDate>Thu, 10 Jun 2010 23:59:44 +0000</pubDate>
		<dc:creator>burnmind</dc:creator>
				<category><![CDATA[tutorials]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[image rotator]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.burnmind.com/?p=611</guid>
		<description><![CDATA[Photo by ~FatalBite on deviantART I&#8217;ll explain a simple way to create an automatic image rotator using jQuery. First have a look at the demo page (opens in a new tab) to understand what we&#8217;re trying to accomplish. You can also . In the example, the initial image will be displayed on the left of [...]]]></description>
			<content:encoded><![CDATA[<div class="image"><img title="Rotate II by FatalBite" src="http://www.burnmind.com/wp-content/uploads/2010/06/Rotate_II_by_FatalBite.png" border="0" alt="Rotate II by FatalBite on deviantART" />
<div class="caption">Photo by <a title="~FatalBite on deviantart.com" href="http://fatalbite.deviantart.com/">~FatalBite</a> on <a title="deviantART" href="http://www.deviantart.com/">deviantART</a></div>
</div>
<p>I&#8217;ll explain a simple way to create an automatic image rotator using jQuery. First have a look at the <a href="/tutorials/rotator/" target="_blank">demo page</a> (opens in a new tab) to understand what we&#8217;re trying to accomplish. You can also <a href="http://www.burnmind.com/fbi_server_copy/rotator.zip" title="Downloaded 1038 times">download the tutorial’s source code</a>.</p>
<p>In the example, the initial image will be displayed on the left of a paragraph containing some sample text:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;div id=&quot;test&quot;&gt;
  &lt;img id=&quot;myImage&quot; src=&quot;test1.png&quot; alt=&quot;image test&quot; /&gt;
  &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit...&lt;/p&gt;
&lt;/div&gt;
</pre>
<p>First, we have to store the filenames of our images in an array. We also have to initialise a counter.</p>
<pre class="brush: jscript; title: ; notranslate">
var images = new Array ('test1.png', 'test2.png', 'test3.png');
var index = 1;
</pre>
<p>The next step is to create the function which will rotate the images. We&#8217;ll call it <em>rotateImage()</em>. At the beginning, the currently displayed image fades out. Then, we load the next image from the <em>images</em> array (the counter we introduced before is being used here) and we fade it in. At the end of the function, we deal with the counter (either increment it, or reset it if all the imaged were displayed).</p>
<pre class="brush: jscript; title: ; notranslate">
function rotateImage()
{
  $('#myImage').fadeOut('fast', function()
  {
    $(this).attr('src', images[index]);

    $(this).fadeIn('fast', function()
    {
      if (index == images.length-1)
      {
        index = 0;
      }
      else
      {
        index++;
      }
    });
  });
}
</pre>
<p>The last step is to call the <em>rotateImage</em> function repeatedly inside the <em>$(document).ready</em> function using <em>setInterval</em>. In the example, the function <em>rotateImage()</em> is being executed every 2.5 seconds (2500 milliseconds).</p>
<pre class="brush: jscript; title: ; notranslate">
$(document).ready(function()
{
  setInterval (rotateImage, 2500);
});
</pre>
<p>The complete JavaScript code:</p>
<pre class="brush: jscript; title: ; notranslate">
var images = new Array ('test1.png', 'test2.png', 'test3.png');
var index = 1;

function rotateImage()
{
  $('#myImage').fadeOut('fast', function()
  {
    $(this).attr('src', images[index]);

    $(this).fadeIn('fast', function()
    {
      if (index == images.length-1)
      {
        index = 0;
      }
      else
      {
        index++;
      }
    });
  });
} 

$(document).ready(function()
{
  setInterval (rotateImage, 2500);
});
</pre>
<p>HTML:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;div id=&quot;test&quot;&gt;
  &lt;img id=&quot;myImage&quot; src=&quot;test1.png&quot; alt=&quot;image test&quot; /&gt;
  &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit...&lt;/p&gt;
&lt;/div&gt;
</pre>
<p>If you haven&#8217;t done it already, have a look at the <a href="/tutorials/rotator/" target="_blank">demo page</a> (opens in a new tab). You can also <a href="http://www.burnmind.com/fbi_server_copy/rotator.zip" title="Downloaded 1038 times">download the tutorial’s source code</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+create+a+simple+automatic+image+rotator+using+jQuery&amp;link=http://www.burnmind.com/howto/how-to-create-a-simple-automatic-image-rotator-using-jquery&amp;notes=Photo%20by%20%7EFatalBite%20on%20deviantART%0D%0A%0D%0AI%27ll%20explain%20a%20simple%20way%20to%20create%20an%20automatic%20image%20rotator%20using%20jQuery.%20First%20have%20a%20look%20at%20the%20demo%20page%20%28opens%20in%20a%20new%20tab%29%20to%20understand%20what%20we%27re%20trying%20to%20accomplish.%20You%20can%20also%20.%0D%0A%0D%0AIn%20the%20example%2C%20the%20initial%20image%20will%20be%20displayed%20on%20the%20left%20o&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+create+a+simple+automatic+image+rotator+using+jQuery&amp;link=http://www.burnmind.com/howto/how-to-create-a-simple-automatic-image-rotator-using-jquery&amp;notes=Photo%20by%20%7EFatalBite%20on%20deviantART%0D%0A%0D%0AI%27ll%20explain%20a%20simple%20way%20to%20create%20an%20automatic%20image%20rotator%20using%20jQuery.%20First%20have%20a%20look%20at%20the%20demo%20page%20%28opens%20in%20a%20new%20tab%29%20to%20understand%20what%20we%27re%20trying%20to%20accomplish.%20You%20can%20also%20.%0D%0A%0D%0AIn%20the%20example%2C%20the%20initial%20image%20will%20be%20displayed%20on%20the%20left%20o&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+create+a+simple+automatic+image+rotator+using+jQuery&amp;link=http://www.burnmind.com/howto/how-to-create-a-simple-automatic-image-rotator-using-jquery&amp;notes=Photo%20by%20%7EFatalBite%20on%20deviantART%0D%0A%0D%0AI%27ll%20explain%20a%20simple%20way%20to%20create%20an%20automatic%20image%20rotator%20using%20jQuery.%20First%20have%20a%20look%20at%20the%20demo%20page%20%28opens%20in%20a%20new%20tab%29%20to%20understand%20what%20we%27re%20trying%20to%20accomplish.%20You%20can%20also%20.%0D%0A%0D%0AIn%20the%20example%2C%20the%20initial%20image%20will%20be%20displayed%20on%20the%20left%20o&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+create+a+simple+automatic+image+rotator+using+jQuery&amp;link=http://www.burnmind.com/howto/how-to-create-a-simple-automatic-image-rotator-using-jquery&amp;notes=Photo%20by%20%7EFatalBite%20on%20deviantART%0D%0A%0D%0AI%27ll%20explain%20a%20simple%20way%20to%20create%20an%20automatic%20image%20rotator%20using%20jQuery.%20First%20have%20a%20look%20at%20the%20demo%20page%20%28opens%20in%20a%20new%20tab%29%20to%20understand%20what%20we%27re%20trying%20to%20accomplish.%20You%20can%20also%20.%0D%0A%0D%0AIn%20the%20example%2C%20the%20initial%20image%20will%20be%20displayed%20on%20the%20left%20o&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+create+a+simple+automatic+image+rotator+using+jQuery&amp;link=http://www.burnmind.com/howto/how-to-create-a-simple-automatic-image-rotator-using-jquery&amp;notes=Photo%20by%20%7EFatalBite%20on%20deviantART%0D%0A%0D%0AI%27ll%20explain%20a%20simple%20way%20to%20create%20an%20automatic%20image%20rotator%20using%20jQuery.%20First%20have%20a%20look%20at%20the%20demo%20page%20%28opens%20in%20a%20new%20tab%29%20to%20understand%20what%20we%27re%20trying%20to%20accomplish.%20You%20can%20also%20.%0D%0A%0D%0AIn%20the%20example%2C%20the%20initial%20image%20will%20be%20displayed%20on%20the%20left%20o&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+create+a+simple+automatic+image+rotator+using+jQuery&amp;link=http://www.burnmind.com/howto/how-to-create-a-simple-automatic-image-rotator-using-jquery&amp;notes=Photo%20by%20%7EFatalBite%20on%20deviantART%0D%0A%0D%0AI%27ll%20explain%20a%20simple%20way%20to%20create%20an%20automatic%20image%20rotator%20using%20jQuery.%20First%20have%20a%20look%20at%20the%20demo%20page%20%28opens%20in%20a%20new%20tab%29%20to%20understand%20what%20we%27re%20trying%20to%20accomplish.%20You%20can%20also%20.%0D%0A%0D%0AIn%20the%20example%2C%20the%20initial%20image%20will%20be%20displayed%20on%20the%20left%20o&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.burnmind.com/howto/how-to-create-a-simple-automatic-image-rotator-using-jquery/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>my projects’ soundtrack</title>
		<link>http://www.burnmind.com/articles/my-projects-soundtrack</link>
		<comments>http://www.burnmind.com/articles/my-projects-soundtrack#comments</comments>
		<pubDate>Thu, 04 Feb 2010 18:17:10 +0000</pubDate>
		<dc:creator>burnmind</dc:creator>
				<category><![CDATA[urban legends]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[song]]></category>
		<category><![CDATA[soundrack]]></category>

		<guid isPermaLink="false">http://www.burnmind.com/?p=563</guid>
		<description><![CDATA[Painting by ~luke-chueh on deviantART As far as I can remember in my life, like every music lover does, I&#8217;m relating specific songs or sometimes whole albums with events, places, emotions etc. Even working on a project is not an exception. Recently, it came into my attention that in every project I&#8217;m working on, there [...]]]></description>
			<content:encoded><![CDATA[<div class="image"><img title="The Soundtrack - To My Life" src="http://www.burnmind.com/wp-content/uploads/2010/02/The-Soundtrack-To-My-Life.jpg" border="0" alt="The Soundtrack - To My Life by Luke-Chueh on deviantART" />
<div class="caption">Painting by <a title="~luke-chueh on deviantart.com" href="http://luke-chueh.deviantart.com/" target="_blank">~luke-chueh</a> on <a title="deviantART" href="http://www.deviantart.com/" target="_blank">deviantART</a></div>
</div>
<p>As far as I can remember in my life, like every music lover does, I&#8217;m relating specific songs or sometimes whole albums with events, places, emotions etc. Even working on a project is not an exception.</p>
<p>Recently, it came into my attention that in every project I&#8217;m working on, there are two albums that are always part of my playlist, so they can qualify to be called my projects&#8217; soundtrack. On certain times in a project, especially when a lot of mental engergy and even fantasy is required, I find myself listening to those two albums because their music inspires me and provides me with a rhythm that helps me think without distracting me at all.</p>
<p>The fist one is from a Greek songwriter called <a title="konstantinos vita @ wikipedia" href="http://en.wikipedia.org/wiki/Kbhta">Konstantinos Vita</a> and it&#8217;s the music composed for Dimitris Papaioannou’s (the art director of the Athens 2004 Olympic Ceremony) theatrical production called &#8220;2&#8243;. Below is the video of his song called &#8220;Funky Beep&#8221;.</p>
<p style="text-align: center;"><span class="youtube">
<iframe title="YouTube video player" class="youtube-player" type="text/html" width="425" height="355" src="http://www.youtube.com/embed/QGfN6bdFauc?color1=3a3a3a&amp;color2=999999&amp;border=0&amp;fs=1&amp;hl=en&amp;loop=&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0&amp;rel=0" frameborder="0" allowfullscreen></iframe>
</span><p><a href="http://www.youtube.com/watch?v=QGfN6bdFauc">www.youtube.com/watch?v=QGfN6bdFauc</a></p></p>
<p>The other one is <a title="moby.com" href="http://www.moby.com/">Moby</a>&#8216;s famous album called &#8220;Play&#8221;. Below is the video of his song called &#8220;Natural Blues&#8221;.</p>
<p style="text-align: center;"><span class="youtube">
<iframe title="YouTube video player" class="youtube-player" type="text/html" width="425" height="355" src="http://www.youtube.com/embed/wGxA6-dGOmc?color1=3a3a3a&amp;color2=999999&amp;border=0&amp;fs=1&amp;hl=en&amp;loop=&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0&amp;rel=0" frameborder="0" allowfullscreen></iframe>
</span><p><a href="http://www.youtube.com/watch?v=wGxA6-dGOmc">www.youtube.com/watch?v=wGxA6-dGOmc</a></p></p>
<p>What do you prefer to listen while working?</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=my+projects%27+soundtrack&amp;link=http://www.burnmind.com/articles/my-projects-soundtrack&amp;notes=Painting%20by%20%7Eluke-chueh%20on%20deviantART%0D%0AAs%20far%20as%20I%20can%20remember%20in%20my%20life%2C%20like%20every%20music%20lover%20does%2C%20I%27m%20relating%20specific%20songs%20or%20sometimes%20whole%20albums%20with%20events%2C%20places%2C%20emotions%20etc.%20Even%20working%20on%20a%20project%20is%20not%20an%20exception.%0D%0A%0D%0ARecently%2C%20it%20came%20into%20my%20attention%20that%20in%20every%20projec&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=my+projects%27+soundtrack&amp;link=http://www.burnmind.com/articles/my-projects-soundtrack&amp;notes=Painting%20by%20%7Eluke-chueh%20on%20deviantART%0D%0AAs%20far%20as%20I%20can%20remember%20in%20my%20life%2C%20like%20every%20music%20lover%20does%2C%20I%27m%20relating%20specific%20songs%20or%20sometimes%20whole%20albums%20with%20events%2C%20places%2C%20emotions%20etc.%20Even%20working%20on%20a%20project%20is%20not%20an%20exception.%0D%0A%0D%0ARecently%2C%20it%20came%20into%20my%20attention%20that%20in%20every%20projec&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=my+projects%27+soundtrack&amp;link=http://www.burnmind.com/articles/my-projects-soundtrack&amp;notes=Painting%20by%20%7Eluke-chueh%20on%20deviantART%0D%0AAs%20far%20as%20I%20can%20remember%20in%20my%20life%2C%20like%20every%20music%20lover%20does%2C%20I%27m%20relating%20specific%20songs%20or%20sometimes%20whole%20albums%20with%20events%2C%20places%2C%20emotions%20etc.%20Even%20working%20on%20a%20project%20is%20not%20an%20exception.%0D%0A%0D%0ARecently%2C%20it%20came%20into%20my%20attention%20that%20in%20every%20projec&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=my+projects%27+soundtrack&amp;link=http://www.burnmind.com/articles/my-projects-soundtrack&amp;notes=Painting%20by%20%7Eluke-chueh%20on%20deviantART%0D%0AAs%20far%20as%20I%20can%20remember%20in%20my%20life%2C%20like%20every%20music%20lover%20does%2C%20I%27m%20relating%20specific%20songs%20or%20sometimes%20whole%20albums%20with%20events%2C%20places%2C%20emotions%20etc.%20Even%20working%20on%20a%20project%20is%20not%20an%20exception.%0D%0A%0D%0ARecently%2C%20it%20came%20into%20my%20attention%20that%20in%20every%20projec&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=my+projects%27+soundtrack&amp;link=http://www.burnmind.com/articles/my-projects-soundtrack&amp;notes=Painting%20by%20%7Eluke-chueh%20on%20deviantART%0D%0AAs%20far%20as%20I%20can%20remember%20in%20my%20life%2C%20like%20every%20music%20lover%20does%2C%20I%27m%20relating%20specific%20songs%20or%20sometimes%20whole%20albums%20with%20events%2C%20places%2C%20emotions%20etc.%20Even%20working%20on%20a%20project%20is%20not%20an%20exception.%0D%0A%0D%0ARecently%2C%20it%20came%20into%20my%20attention%20that%20in%20every%20projec&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=my+projects%27+soundtrack&amp;link=http://www.burnmind.com/articles/my-projects-soundtrack&amp;notes=Painting%20by%20%7Eluke-chueh%20on%20deviantART%0D%0AAs%20far%20as%20I%20can%20remember%20in%20my%20life%2C%20like%20every%20music%20lover%20does%2C%20I%27m%20relating%20specific%20songs%20or%20sometimes%20whole%20albums%20with%20events%2C%20places%2C%20emotions%20etc.%20Even%20working%20on%20a%20project%20is%20not%20an%20exception.%0D%0A%0D%0ARecently%2C%20it%20came%20into%20my%20attention%20that%20in%20every%20projec&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.burnmind.com/articles/my-projects-soundtrack/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the adventure of a robot in love: machinarium</title>
		<link>http://www.burnmind.com/games/the-adventure-of-a-robot-in-love-machinarium</link>
		<comments>http://www.burnmind.com/games/the-adventure-of-a-robot-in-love-machinarium#comments</comments>
		<pubDate>Thu, 21 Jan 2010 01:41:16 +0000</pubDate>
		<dc:creator>burnmind</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[adventure]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[machinarium]]></category>
		<category><![CDATA[puzzle]]></category>

		<guid isPermaLink="false">http://www.burnmind.com/?p=540</guid>
		<description><![CDATA[Machinarium is a point and click adventure game which brought me back to the good old days of such games. You control a small and cute (this is my feminine side speaking) robot through its journey to find its lost beloved one in a cruel robot world! It has beautiful hand-made style graphics (as you [...]]]></description>
			<content:encoded><![CDATA[<div class="image"><img title="Machinarium" src="http://www.burnmind.com/wp-content/uploads/2010/01/machinarium.jpg" border="0" alt="Machinarium" /></div>
<p><a title="Machinarium Website" href="http://machinarium.net/">Machinarium</a> is a point and click adventure game which brought me back to the good old days of such games. You control a small and cute (this is my feminine side speaking) robot through its journey to find its lost beloved one in a cruel robot world!</p>
<p>It has beautiful hand-made style graphics (as you can see on the screenshots) and the robot world is designed almost as I would have imagined it. Its music is a great company to the graphics. Note that when you buy the game you also receive its soundtrack in MP3 format! There is a lack of speech, but the communication is being done well using speech bubbles which explains everything clearly. After all, in a robot world English (or any other human language) can&#8217;t be an option!</p>
<p>It incorporates a large number of puzzles, in a great variety, from simple games (e.g. a large tic-tac-toe variation and an arcade asteroids game) to more complicated puzzles. Some of them are hard enough even for an experienced adventure games player (maybe due to the lack of explanation) but everything is solvable with some attention and patience.</p>
<p style="text-align: center;">
<iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=burnmindcom-20&#038;o=1&#038;p=8&#038;l=as4&#038;m=amazon&#038;f=ifr&#038;ref=ss_til&#038;asins=B00318COS4" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><iframe src="http://rcm-uk.amazon.co.uk/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=burnmindcom-21&#038;o=2&#038;p=8&#038;l=as4&#038;m=amazon&#038;f=ifr&#038;ref=ss_til&#038;asins=B00318COS4" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>
</p>
<p>After successfully using an item, it is disposed so the inventory isn&#8217;t full with unusable items (actually when I finished the game, I had 2 items left in my inventory but it wasn&#8217;t annoying at all).</p>
<p>But enough with the praise, let&#8217;s talk for the bad stuff: It&#8217;s a little bit annoying that you cannot just deselect an item in use and instead you have to return it to the inventory. Also, it might become boring at some point to have to watch the full animation of the robot walking up the stairs to go to another floor etc.</p>
<p>The only actual downfall of the game is the use of Flash as the development platform. Right-click does nothing (actually it displays the frustrating Flash player menu) when it could be used for example to deselect an item of the inventory (if another development platform was used since Flash doesn&#8217;t support right-click functionality as far as I&#8217;m aware). Also, the point-and-click system isn&#8217;t as precise as someone would expect it to be, so you might find yourself at some point clicking in the wrong place and making a wrong move.</p>
<p>But these facts couldn&#8217;t prevent even a huge Flash hater like myself to play and enjoy this amazing game! Before I forget, you cannot die in the game, so feel free to explore and try anything that you can think!</p>
<p>You can download the demo and/or buy the full game from its <a title="machinarium website" href="http://machinarium.net/">official website</a>. Also, since you&#8217;re clearly interested in <a href="http://www.burnmind.com/category/games" title="articles about games">games</a> I would suggest that you visit <a href="http://zuckr.com/" title="free online games">zuckr.com</a>, where you can find news and reviews for the best <a href="http://zuckr.com/" title="free online games">free online games</a>!</p>
<p style="text-align: center;"><a href="http://www.burnmind.com/wp-content/uploads/2010/01/machinarium_sc1.jpg" target="_blank"><img class="size-medium wp-image-548 aligncenter" title="Machinarium Screenshot 1 (Opens in a new tab/window)" src="http://www.burnmind.com/wp-content/uploads/2010/01/machinarium_sc1-300x240.jpg" alt="Machinarium Screenshot 1" width="300" height="240" /></a></p>
<p style="text-align: center;"><a href="http://www.burnmind.com/wp-content/uploads/2010/01/machinarium_sc2.jpg" target="_blank"><img class="size-medium wp-image-550 aligncenter" title="Machinarium Screenshot 2 (Opens in a new tab/window)" src="http://www.burnmind.com/wp-content/uploads/2010/01/machinarium_sc2-300x240.jpg" alt="Machinarium Screenshot 2" width="300" height="240" /></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=the+adventure+of+a+robot+in+love%3A+machinarium&amp;link=http://www.burnmind.com/games/the-adventure-of-a-robot-in-love-machinarium&amp;notes=%0D%0AMachinarium%20is%20a%20point%20and%20click%20adventure%20game%20which%20brought%20me%20back%20to%20the%20good%20old%20days%20of%20such%20games.%20You%20control%20a%20small%20and%20cute%20%28this%20is%20my%20feminine%20side%20speaking%29%20robot%20through%20its%20journey%20to%20find%20its%20lost%20beloved%20one%20in%20a%20cruel%20robot%20world%21%0D%0A%0D%0AIt%20has%20beautiful%20hand-made%20style%20graphics%20%28as&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=the+adventure+of+a+robot+in+love%3A+machinarium&amp;link=http://www.burnmind.com/games/the-adventure-of-a-robot-in-love-machinarium&amp;notes=%0D%0AMachinarium%20is%20a%20point%20and%20click%20adventure%20game%20which%20brought%20me%20back%20to%20the%20good%20old%20days%20of%20such%20games.%20You%20control%20a%20small%20and%20cute%20%28this%20is%20my%20feminine%20side%20speaking%29%20robot%20through%20its%20journey%20to%20find%20its%20lost%20beloved%20one%20in%20a%20cruel%20robot%20world%21%0D%0A%0D%0AIt%20has%20beautiful%20hand-made%20style%20graphics%20%28as&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=the+adventure+of+a+robot+in+love%3A+machinarium&amp;link=http://www.burnmind.com/games/the-adventure-of-a-robot-in-love-machinarium&amp;notes=%0D%0AMachinarium%20is%20a%20point%20and%20click%20adventure%20game%20which%20brought%20me%20back%20to%20the%20good%20old%20days%20of%20such%20games.%20You%20control%20a%20small%20and%20cute%20%28this%20is%20my%20feminine%20side%20speaking%29%20robot%20through%20its%20journey%20to%20find%20its%20lost%20beloved%20one%20in%20a%20cruel%20robot%20world%21%0D%0A%0D%0AIt%20has%20beautiful%20hand-made%20style%20graphics%20%28as&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=the+adventure+of+a+robot+in+love%3A+machinarium&amp;link=http://www.burnmind.com/games/the-adventure-of-a-robot-in-love-machinarium&amp;notes=%0D%0AMachinarium%20is%20a%20point%20and%20click%20adventure%20game%20which%20brought%20me%20back%20to%20the%20good%20old%20days%20of%20such%20games.%20You%20control%20a%20small%20and%20cute%20%28this%20is%20my%20feminine%20side%20speaking%29%20robot%20through%20its%20journey%20to%20find%20its%20lost%20beloved%20one%20in%20a%20cruel%20robot%20world%21%0D%0A%0D%0AIt%20has%20beautiful%20hand-made%20style%20graphics%20%28as&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=the+adventure+of+a+robot+in+love%3A+machinarium&amp;link=http://www.burnmind.com/games/the-adventure-of-a-robot-in-love-machinarium&amp;notes=%0D%0AMachinarium%20is%20a%20point%20and%20click%20adventure%20game%20which%20brought%20me%20back%20to%20the%20good%20old%20days%20of%20such%20games.%20You%20control%20a%20small%20and%20cute%20%28this%20is%20my%20feminine%20side%20speaking%29%20robot%20through%20its%20journey%20to%20find%20its%20lost%20beloved%20one%20in%20a%20cruel%20robot%20world%21%0D%0A%0D%0AIt%20has%20beautiful%20hand-made%20style%20graphics%20%28as&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=the+adventure+of+a+robot+in+love%3A+machinarium&amp;link=http://www.burnmind.com/games/the-adventure-of-a-robot-in-love-machinarium&amp;notes=%0D%0AMachinarium%20is%20a%20point%20and%20click%20adventure%20game%20which%20brought%20me%20back%20to%20the%20good%20old%20days%20of%20such%20games.%20You%20control%20a%20small%20and%20cute%20%28this%20is%20my%20feminine%20side%20speaking%29%20robot%20through%20its%20journey%20to%20find%20its%20lost%20beloved%20one%20in%20a%20cruel%20robot%20world%21%0D%0A%0D%0AIt%20has%20beautiful%20hand-made%20style%20graphics%20%28as&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.burnmind.com/games/the-adventure-of-a-robot-in-love-machinarium/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>another collection of useful android applications</title>
		<link>http://www.burnmind.com/android/another-collection-of-useful-android-applications</link>
		<comments>http://www.burnmind.com/android/another-collection-of-useful-android-applications#comments</comments>
		<pubDate>Sat, 21 Nov 2009 13:14:26 +0000</pubDate>
		<dc:creator>burnmind</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[Astrid]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Dolphin]]></category>
		<category><![CDATA[eBuddy]]></category>
		<category><![CDATA[flashlight]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[IM]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[mAnalytics]]></category>
		<category><![CDATA[Notepad]]></category>
		<category><![CDATA[Task]]></category>
		<category><![CDATA[Todo]]></category>
		<category><![CDATA[twidroid]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[useful]]></category>

		<guid isPermaLink="false">http://www.burnmind.com/?p=491</guid>
		<description><![CDATA[Creation by ~lbsquat on deviantART After my first collection of useful android applications, here&#8217;s another one: AK Notepad: Set a reminder based on your note, share note with others through SMS, email &#38; stick a note on your home screen. You can customize the note&#8217;s appearance, organize by label(hash tags),sort &#38; search notes. Astrid Task/Todo [...]]]></description>
			<content:encoded><![CDATA[<div class="image"><img title="HTC Hero carbon" src="http://www.burnmind.com/wp-content/uploads/2009/11/HTC_Hero_carbon_by_LbSquat.png.jpg" border="0" alt="HTC Hero carbon by lbsquat on deviantART" />
<div class="caption">Creation by <a title="~lbsquat on deviantart.com" href="http://lbsquat.deviantart.com/" target="_blank">~lbsquat</a> on <a title="deviantART" href="http://www.deviantart.com/" target="_blank">deviantART</a></div>
</div>
<p>After my first <a title="a collection of useful android applications" href="http://www.burnmind.com/bookmarks/a-collection-of-useful-android-applications">collection of useful android applications</a>, here&#8217;s another one:</p>
<p><img class="alignleft size-full wp-image-442" title="AK Notepad" src="http://www.burnmind.com/wp-content/uploads/2009/11/aknotepad.png" alt="AK Notepad" width="24" height="24" /><a title="AK Notepad @ androlib.com" href="http://www.androlib.com/android.application.com-akproduction-notepad-pzx.aspx" target="_blank">AK Notepad</a>: Set a reminder based on your note, share note with others through SMS, email &amp; stick a note on your home screen. You can customize the note&#8217;s appearance, organize by label(hash tags),sort &amp; search notes.</p>
<p><img class="alignleft size-full wp-image-442" title="Astrid Task/Todo List" src="http://www.burnmind.com/wp-content/uploads/2009/11/astrid.png" alt="Astrid Task/Todo List" width="24" height="24" /><a title="Astrid Homepage" href="http://weloveastrid.com/" target="_blank">Astrid Task/Todo List</a>: Astrid is the highly-acclaimed open-source task list that is simple enough to not get in your way, powerful enough to help you get stuff done! Tags, reminders, RememberTheMilk sync, Locale plug-in &amp; more!</p>
<p><img class="alignleft size-full wp-image-442" title="mAnalytics" src="http://www.burnmind.com/wp-content/uploads/2009/11/manalytics.png" alt="mAnalytics" width="24" height="24" /><a title="mAnalytics @ androlib.com" href="http://www.androlib.com/android.application.com-mugitek-analytics-pmB.aspx" target="_blank">mAnalytics</a>: Is a program to view your basic Google Analytics stats on your Android phone. Supports multiple accounts, profiles, basic statistics and charts for visits and pageviews.</p>
<p><img class="alignleft size-full wp-image-442" title="eBuddy IM" src="http://www.burnmind.com/wp-content/uploads/2009/11/ebuddy.png" alt="eBuddy IM" width="24" height="24" /><a title="eBuddy IM Homepage" href="http://www.ebuddy.com/" target="_blank">eBuddy IM</a>: One of the best instant messaging apps. Fast and reliable messenger. Chat with multiple MSN, Facebook, Yahoo, AIM, ICQ, GTalk &amp; MySpace accounts. All IM friends in one buddy list. Run in background. Messages sent as data, not SMS/Text.</p>
<p><img class="alignleft size-full wp-image-442" title="twidroid for twitter" src="http://www.burnmind.com/wp-content/uploads/2009/11/twidroid.png" alt="twidroid for twitter" width="24" height="24" /><a title="twidroid for twitter Homepage" href="http://twidroid.com/" target="_blank">twidroid for twitter</a>: Twidroid is the leading full-featured Twitter client for Android.</p>
<p><img class="alignleft size-full wp-image-442" title="Dolphin Browser (Social&amp;Smart)" src="http://www.burnmind.com/wp-content/uploads/2009/11/dolphin.png" alt="Dolphin Browser (Social&amp;Smart)" width="24" height="24" /><a title="Dolphin Browser (Social&amp;Smart) Homepage" href="http://browser.mgeek.mobi/" target="_blank">Dolphin Browser (Social&amp;Smart)</a>: Dolphin Browser gives you a better Mobile Internet experience. Gestures, Sync Google bookmarks, Download youtube videos.</p>
<p><img class="alignleft size-full wp-image-442" title="Flashlight" src="http://www.burnmind.com/wp-content/uploads/2009/11/flashlight1.png" alt="Flashlight" width="24" height="24" /><a title="Flashlight @ androlib.com" href="http://www.androlib.com/android.application.org-dyndns-devesh-flashlight-jtp.aspx" target="_blank">Flashlight</a>: Grow small plants in your pocket. Build a new Pharos of Alexandria. Interrogate suspects. Find your keys. The only limit is your imagination! This app maximizes brightness and keeps the screen on while in use. Look elsewhere if you want colors, streamers, and wacky sounds&#8230; This is a flashlight.</p>
<p>Some of the applications listed here have also a paid version, but this post refers only to their free versions.</p>
<p>Do you have a favorite android application? Feel free to share it by leaving a comment!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=another+collection+of+useful+android+applications&amp;link=http://www.burnmind.com/android/another-collection-of-useful-android-applications&amp;notes=Creation%20by%20%7Elbsquat%20on%20deviantART%0D%0A%0D%0AAfter%20my%20first%20collection%20of%20useful%20android%20applications%2C%20here%27s%20another%20one%3A%0D%0A%0D%0AAK%20Notepad%3A%20Set%20a%20reminder%20based%20on%20your%20note%2C%20share%20note%20with%20others%20through%20SMS%2C%20email%20%26amp%3B%20stick%20a%20note%20on%20your%20home%20screen.%20You%20can%20customize%20the%20note%27s%20appearance%2C%20organize%20by&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=another+collection+of+useful+android+applications&amp;link=http://www.burnmind.com/android/another-collection-of-useful-android-applications&amp;notes=Creation%20by%20%7Elbsquat%20on%20deviantART%0D%0A%0D%0AAfter%20my%20first%20collection%20of%20useful%20android%20applications%2C%20here%27s%20another%20one%3A%0D%0A%0D%0AAK%20Notepad%3A%20Set%20a%20reminder%20based%20on%20your%20note%2C%20share%20note%20with%20others%20through%20SMS%2C%20email%20%26amp%3B%20stick%20a%20note%20on%20your%20home%20screen.%20You%20can%20customize%20the%20note%27s%20appearance%2C%20organize%20by&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=another+collection+of+useful+android+applications&amp;link=http://www.burnmind.com/android/another-collection-of-useful-android-applications&amp;notes=Creation%20by%20%7Elbsquat%20on%20deviantART%0D%0A%0D%0AAfter%20my%20first%20collection%20of%20useful%20android%20applications%2C%20here%27s%20another%20one%3A%0D%0A%0D%0AAK%20Notepad%3A%20Set%20a%20reminder%20based%20on%20your%20note%2C%20share%20note%20with%20others%20through%20SMS%2C%20email%20%26amp%3B%20stick%20a%20note%20on%20your%20home%20screen.%20You%20can%20customize%20the%20note%27s%20appearance%2C%20organize%20by&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=another+collection+of+useful+android+applications&amp;link=http://www.burnmind.com/android/another-collection-of-useful-android-applications&amp;notes=Creation%20by%20%7Elbsquat%20on%20deviantART%0D%0A%0D%0AAfter%20my%20first%20collection%20of%20useful%20android%20applications%2C%20here%27s%20another%20one%3A%0D%0A%0D%0AAK%20Notepad%3A%20Set%20a%20reminder%20based%20on%20your%20note%2C%20share%20note%20with%20others%20through%20SMS%2C%20email%20%26amp%3B%20stick%20a%20note%20on%20your%20home%20screen.%20You%20can%20customize%20the%20note%27s%20appearance%2C%20organize%20by&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=another+collection+of+useful+android+applications&amp;link=http://www.burnmind.com/android/another-collection-of-useful-android-applications&amp;notes=Creation%20by%20%7Elbsquat%20on%20deviantART%0D%0A%0D%0AAfter%20my%20first%20collection%20of%20useful%20android%20applications%2C%20here%27s%20another%20one%3A%0D%0A%0D%0AAK%20Notepad%3A%20Set%20a%20reminder%20based%20on%20your%20note%2C%20share%20note%20with%20others%20through%20SMS%2C%20email%20%26amp%3B%20stick%20a%20note%20on%20your%20home%20screen.%20You%20can%20customize%20the%20note%27s%20appearance%2C%20organize%20by&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=another+collection+of+useful+android+applications&amp;link=http://www.burnmind.com/android/another-collection-of-useful-android-applications&amp;notes=Creation%20by%20%7Elbsquat%20on%20deviantART%0D%0A%0D%0AAfter%20my%20first%20collection%20of%20useful%20android%20applications%2C%20here%27s%20another%20one%3A%0D%0A%0D%0AAK%20Notepad%3A%20Set%20a%20reminder%20based%20on%20your%20note%2C%20share%20note%20with%20others%20through%20SMS%2C%20email%20%26amp%3B%20stick%20a%20note%20on%20your%20home%20screen.%20You%20can%20customize%20the%20note%27s%20appearance%2C%20organize%20by&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.burnmind.com/android/another-collection-of-useful-android-applications/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>some thoughts on custom 404 error pages</title>
		<link>http://www.burnmind.com/webdesign/some-thoughts-on-custom-404-error-pages</link>
		<comments>http://www.burnmind.com/webdesign/some-thoughts-on-custom-404-error-pages#comments</comments>
		<pubDate>Sat, 14 Nov 2009 21:59:30 +0000</pubDate>
		<dc:creator>burnmind</dc:creator>
				<category><![CDATA[urban legends]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[404]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[page]]></category>

		<guid isPermaLink="false">http://www.burnmind.com/?p=493</guid>
		<description><![CDATA[Photo by ~radagacuca on deviantART The &#8220;404&#8243; or &#8220;Not Found&#8221; error message is an HTTP standard response code indicating that the client was able to communicate with the server but the server could not find what was requested (read more about the HTTP 404 error). The motivation towards a custom 404 error page is to [...]]]></description>
			<content:encoded><![CDATA[<div class="image"><img title="404" src="http://www.burnmind.com/wp-content/uploads/2009/11/404.jpg" border="0" alt="404 by radagacuca on deviantART" />
<div class="caption">Photo by <a title="~radagacuca on deviantart.com" href="http://radagacuca.deviantart.com/" target="_blank">~radagacuca</a> on <a title="deviantART" href="http://www.deviantart.com/" target="_blank">deviantART</a></div>
</div>
<p>The &#8220;404&#8243; or &#8220;Not Found&#8221; error message is an HTTP standard response code indicating that the client was able to communicate with the server but the server could not find what was requested (<a title="HTTP 404 Error @ Wikipedia" href="http://en.wikipedia.org/wiki/HTTP_404" target="_blank">read more about the HTTP 404 error</a>).</p>
<p>The motivation towards a custom 404 error page is to create a more (visually) appealing, usable and user-friendly page than the default (and dull) 404 error page of your Web server. The main reason to do it is to give the option to a user that landed on the error page to stick to the website. There&#8217;s nothing new about it but a lot of Web developers overlook or underestimate it.</p>
<p>There is a number of elements you can use in a custom 404 page:</p>
<ul>
<li>First, an image or some text to explain to the user what happened. If the website&#8217;s visitors don&#8217;t have a technical background, a &#8220;404 error&#8221; message won&#8217;t explain anything to them, so try to explain it without any technical details. You can also have a humorous message or image. After all, an amused visitor is always better than a frustrated one!</li>
<li>A must have, is a link to the homepage so the user can have an alternative of closing the browser or re-typing a URL.</li>
<li>Another good idea is to include a search box.</li>
<li>You can also provide some links to popular or interesting content of your website.</li>
</ul>
<p>Below is the image I&#8217;m using for <a title="view my 404 error page" href="http://www.burnmind.com/wrongURL">my 404 error page</a>:</p>
<p style="text-align: center;"><img class="aligncenter" title="my 404 error image" src="http://www.burnmind.com/wp-content/uploads/2009/11/404.png" border="0" alt="my 404 error image" /></p>
<p>Finally, some resources (external links) for 404 error pages:</p>
<ul>
<li><a title="The Perfect 404 @ A List Apart" href="http://www.alistapart.com/articles/perfect404/" target="_blank"> The Perfect 404 (@ A List Apart)</a></li>
<li><a title="404 Error Pages, One More Time @ Smashing Magazine" href="http://www.smashingmagazine.com/2009/01/29/404-error-pages-one-more-time/" target="_blank">404 Error Pages, One More Time (@ Smashing Magazine)</a></li>
<li><a title="50 Creative and Inspiring 404 Pages @ Webdesigner Depot" href="http://www.webdesignerdepot.com/2009/07/50-creative-and-inspiring-404-pages/" target="_blank">50 Creative and Inspiring 404 Pages (@ Webdesigner Depot)</a></li>
</ul>
<p>Of course, the web is full of creative and innovative 404 error pages. Feel free to post a link to your own!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=some+thoughts+on+custom+404+error+pages&amp;link=http://www.burnmind.com/webdesign/some-thoughts-on-custom-404-error-pages&amp;notes=Photo%20by%20%7Eradagacuca%20on%20deviantART%0D%0AThe%20%22404%22%20or%20%22Not%20Found%22%20error%20message%20is%20an%20HTTP%20standard%20response%20code%20indicating%20that%20the%20client%20was%20able%20to%20communicate%20with%20the%20server%20but%20the%20server%20could%20not%20find%20what%20was%20requested%20%28read%20more%20about%20the%20HTTP%20404%20error%29.%0D%0A%0D%0AThe%20motivation%20towards%20a%20custom%2040&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=some+thoughts+on+custom+404+error+pages&amp;link=http://www.burnmind.com/webdesign/some-thoughts-on-custom-404-error-pages&amp;notes=Photo%20by%20%7Eradagacuca%20on%20deviantART%0D%0AThe%20%22404%22%20or%20%22Not%20Found%22%20error%20message%20is%20an%20HTTP%20standard%20response%20code%20indicating%20that%20the%20client%20was%20able%20to%20communicate%20with%20the%20server%20but%20the%20server%20could%20not%20find%20what%20was%20requested%20%28read%20more%20about%20the%20HTTP%20404%20error%29.%0D%0A%0D%0AThe%20motivation%20towards%20a%20custom%2040&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=some+thoughts+on+custom+404+error+pages&amp;link=http://www.burnmind.com/webdesign/some-thoughts-on-custom-404-error-pages&amp;notes=Photo%20by%20%7Eradagacuca%20on%20deviantART%0D%0AThe%20%22404%22%20or%20%22Not%20Found%22%20error%20message%20is%20an%20HTTP%20standard%20response%20code%20indicating%20that%20the%20client%20was%20able%20to%20communicate%20with%20the%20server%20but%20the%20server%20could%20not%20find%20what%20was%20requested%20%28read%20more%20about%20the%20HTTP%20404%20error%29.%0D%0A%0D%0AThe%20motivation%20towards%20a%20custom%2040&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=some+thoughts+on+custom+404+error+pages&amp;link=http://www.burnmind.com/webdesign/some-thoughts-on-custom-404-error-pages&amp;notes=Photo%20by%20%7Eradagacuca%20on%20deviantART%0D%0AThe%20%22404%22%20or%20%22Not%20Found%22%20error%20message%20is%20an%20HTTP%20standard%20response%20code%20indicating%20that%20the%20client%20was%20able%20to%20communicate%20with%20the%20server%20but%20the%20server%20could%20not%20find%20what%20was%20requested%20%28read%20more%20about%20the%20HTTP%20404%20error%29.%0D%0A%0D%0AThe%20motivation%20towards%20a%20custom%2040&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=some+thoughts+on+custom+404+error+pages&amp;link=http://www.burnmind.com/webdesign/some-thoughts-on-custom-404-error-pages&amp;notes=Photo%20by%20%7Eradagacuca%20on%20deviantART%0D%0AThe%20%22404%22%20or%20%22Not%20Found%22%20error%20message%20is%20an%20HTTP%20standard%20response%20code%20indicating%20that%20the%20client%20was%20able%20to%20communicate%20with%20the%20server%20but%20the%20server%20could%20not%20find%20what%20was%20requested%20%28read%20more%20about%20the%20HTTP%20404%20error%29.%0D%0A%0D%0AThe%20motivation%20towards%20a%20custom%2040&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=some+thoughts+on+custom+404+error+pages&amp;link=http://www.burnmind.com/webdesign/some-thoughts-on-custom-404-error-pages&amp;notes=Photo%20by%20%7Eradagacuca%20on%20deviantART%0D%0AThe%20%22404%22%20or%20%22Not%20Found%22%20error%20message%20is%20an%20HTTP%20standard%20response%20code%20indicating%20that%20the%20client%20was%20able%20to%20communicate%20with%20the%20server%20but%20the%20server%20could%20not%20find%20what%20was%20requested%20%28read%20more%20about%20the%20HTTP%20404%20error%29.%0D%0A%0D%0AThe%20motivation%20towards%20a%20custom%2040&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.burnmind.com/webdesign/some-thoughts-on-custom-404-error-pages/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to display your flickr photos using php</title>
		<link>http://www.burnmind.com/howto/how-to-display-your-flickr-photos-using-php</link>
		<comments>http://www.burnmind.com/howto/how-to-display-your-flickr-photos-using-php#comments</comments>
		<pubDate>Wed, 11 Nov 2009 21:46:12 +0000</pubDate>
		<dc:creator>burnmind</dc:creator>
				<category><![CDATA[tutorials]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phpflickr]]></category>

		<guid isPermaLink="false">http://www.burnmind.com/?p=399</guid>
		<description><![CDATA[Photo by ~toxictwo on deviantART In order to complete this tutorial you will need to apply for a flickr API key. You will also need to download a copy of phpFlickr API Kit. The use of an API Kit makes the use of flickr&#8217;s API methods easier. You can also view the demo page of [...]]]></description>
			<content:encoded><![CDATA[<div class="image">
<img title="A Division of Me" src="http://www.burnmind.com/wp-content/uploads/2009/11/A_Division_of_Me__by_toxictwo.jpg" border="0" alt="A Division of Me by toxictwo on deviantART" />
<div class="caption">Photo by <a title="~toxictwo on deviantart.com" href="http://toxictwo.deviantart.com/" target="_blank">~toxictwo</a> on <a title="deviantART" href="http://www.deviantart.com/" target="_blank">deviantART</a></div>
</div>
<p>In order to complete this tutorial you will need to <a title="apply for a flickr API key" href="http://www.flickr.com/services/api/keys/apply/" target="_blank">apply for a flickr API key</a>. You will also need to <a title="download a copy of phpFlickr" href="http://code.google.com/p/phpflickr/downloads/list" target="_blank">download a copy</a> of <a title="phpFlickr homepage" href="http://www.phpflickr.com/" target="_blank">phpFlickr</a> API Kit. The use of an API Kit makes the use of flickr&#8217;s API methods easier. You can also <a title="view the demo of the tutorial" href="http://www.burnmind.com/tutorials/flickr/" target="_blank">view the demo page</a> of the tutorial (opens in a new tab).</p>
<p>Let&#8217;s begin. First, we need to include the phpFlickr main file and then create a new phpFlickr object which is stored in the <em>$phpFlickrObj</em> variable. Make sure you enter the correct path (where you extracted the phpFlickr files) and also enter your flickr API key.</p>
<pre class="brush: php; title: ; notranslate">
require_once(&quot;phpFlickr/phpFlickr.php&quot;);
$phpFlickrObj = new phpFlickr('Your_Flickr_API_Key');
</pre>
<p>The next step is to obtain your NSID by using your flickr username (in the example I&#8217;m using my flickr username), which is stored in the <em>$user</em> variable. Using this NSID, we get the url to the specific user&#8217;s photos and we store it in the <em>$user_url</em> variable. Finally, we get an array (<em>$photos</em>) containing all the relevant information (id, title, etc.) of the last four (if you want to change the number of photos, just change the number) photos appearing in the user&#8217;s photostream.</p>
<pre class="brush: php; title: ; notranslate">
$user = $phpFlickrObj-&gt;people_findByUsername('stathisg');
$user_url = $phpFlickrObj-&gt;urls_getUserPhotos($user['id']);
$photos = $phpFlickrObj-&gt;people_getPublicPhotos($user['id'], NULL, NULL, 4);
</pre>
<p>In this example we use only the id and the title of each photo. If you want to view all the information contained in the array, you can use <em>print_r($photos)</em>.</p>
<p>The final step to display the photos, is to convert the multidimensional array into an array of one dimension and use a loop to display everything. The following code, displays the photos. The photos can be displayed in six different sizes. To change the size, you need to alter the &#8220;square&#8221; value. The available sizes are: square, thumbnail, small, medium, large and original.</p>
<pre class="brush: php; title: ; notranslate">
foreach ($photos['photos']['photo'] as $photo)
{
  echo '&lt;a href=&quot;'.$user_url.$photo['id'].'&quot; title=&quot;'.$photo['title'].' (on Flickr)&quot; target=&quot;_blank&quot;&gt;';
  echo '&lt;img alt=&quot;'.$photo['title'].'&quot; src=&quot;'.$phpFlickrObj-&gt;buildPhotoURL($photo, &quot;square&quot;).'&quot; /&gt;';
  echo '&lt;/a&gt;';
}
</pre>
<p>The complete code is diplayed below. You can also <a title="view the demo of the tutorial" href="http://www.burnmind.com/tutorials/flickr/" target="_blank">view the demo page</a> of the tutorial (opens in a new tab).</p>
<pre class="brush: php; title: ; notranslate">
require_once(&quot;phpFlickr/phpFlickr.php&quot;);
$phpFlickrObj = new phpFlickr('46dea5f6abb12aed7a823adb7ecf5816');

$user = $phpFlickrObj-&gt;people_findByUsername('stathisg');
$user_url = $phpFlickrObj-&gt;urls_getUserPhotos($user['id']);
$photos = $phpFlickrObj-&gt;people_getPublicPhotos($user['id'], NULL, NULL, 4);

foreach ($photos['photos']['photo'] as $photo)
{
  echo '&lt;a href=&quot;'.$user_url.$photo['id'].'&quot; title=&quot;'.$photo['title'].' (on Flickr)&quot; target=&quot;_blank&quot;&gt;';
  echo '&lt;img alt=&quot;'.$photo['title'].'&quot; src=&quot;'.$phpFlickrObj-&gt;buildPhotoURL($photo, &quot;square&quot;).'&quot; /&gt;';
  echo '&lt;/a&gt;';
}
</pre>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+display+your+flickr+photos+using+php&amp;link=http://www.burnmind.com/howto/how-to-display-your-flickr-photos-using-php&amp;notes=%0D%0APhoto%20by%20%7Etoxictwo%20on%20deviantART%0D%0AIn%20order%20to%20complete%20this%20tutorial%20you%20will%20need%20to%20apply%20for%20a%20flickr%20API%20key.%20You%20will%20also%20need%20to%20download%20a%20copy%20of%20phpFlickr%20API%20Kit.%20The%20use%20of%20an%20API%20Kit%20makes%20the%20use%20of%20flickr%27s%20API%20methods%20easier.%20You%20can%20also%20view%20the%20demo%20page%20of%20the%20tutorial%20%28opens%20i&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+display+your+flickr+photos+using+php&amp;link=http://www.burnmind.com/howto/how-to-display-your-flickr-photos-using-php&amp;notes=%0D%0APhoto%20by%20%7Etoxictwo%20on%20deviantART%0D%0AIn%20order%20to%20complete%20this%20tutorial%20you%20will%20need%20to%20apply%20for%20a%20flickr%20API%20key.%20You%20will%20also%20need%20to%20download%20a%20copy%20of%20phpFlickr%20API%20Kit.%20The%20use%20of%20an%20API%20Kit%20makes%20the%20use%20of%20flickr%27s%20API%20methods%20easier.%20You%20can%20also%20view%20the%20demo%20page%20of%20the%20tutorial%20%28opens%20i&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+display+your+flickr+photos+using+php&amp;link=http://www.burnmind.com/howto/how-to-display-your-flickr-photos-using-php&amp;notes=%0D%0APhoto%20by%20%7Etoxictwo%20on%20deviantART%0D%0AIn%20order%20to%20complete%20this%20tutorial%20you%20will%20need%20to%20apply%20for%20a%20flickr%20API%20key.%20You%20will%20also%20need%20to%20download%20a%20copy%20of%20phpFlickr%20API%20Kit.%20The%20use%20of%20an%20API%20Kit%20makes%20the%20use%20of%20flickr%27s%20API%20methods%20easier.%20You%20can%20also%20view%20the%20demo%20page%20of%20the%20tutorial%20%28opens%20i&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+display+your+flickr+photos+using+php&amp;link=http://www.burnmind.com/howto/how-to-display-your-flickr-photos-using-php&amp;notes=%0D%0APhoto%20by%20%7Etoxictwo%20on%20deviantART%0D%0AIn%20order%20to%20complete%20this%20tutorial%20you%20will%20need%20to%20apply%20for%20a%20flickr%20API%20key.%20You%20will%20also%20need%20to%20download%20a%20copy%20of%20phpFlickr%20API%20Kit.%20The%20use%20of%20an%20API%20Kit%20makes%20the%20use%20of%20flickr%27s%20API%20methods%20easier.%20You%20can%20also%20view%20the%20demo%20page%20of%20the%20tutorial%20%28opens%20i&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+display+your+flickr+photos+using+php&amp;link=http://www.burnmind.com/howto/how-to-display-your-flickr-photos-using-php&amp;notes=%0D%0APhoto%20by%20%7Etoxictwo%20on%20deviantART%0D%0AIn%20order%20to%20complete%20this%20tutorial%20you%20will%20need%20to%20apply%20for%20a%20flickr%20API%20key.%20You%20will%20also%20need%20to%20download%20a%20copy%20of%20phpFlickr%20API%20Kit.%20The%20use%20of%20an%20API%20Kit%20makes%20the%20use%20of%20flickr%27s%20API%20methods%20easier.%20You%20can%20also%20view%20the%20demo%20page%20of%20the%20tutorial%20%28opens%20i&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=how+to+display+your+flickr+photos+using+php&amp;link=http://www.burnmind.com/howto/how-to-display-your-flickr-photos-using-php&amp;notes=%0D%0APhoto%20by%20%7Etoxictwo%20on%20deviantART%0D%0AIn%20order%20to%20complete%20this%20tutorial%20you%20will%20need%20to%20apply%20for%20a%20flickr%20API%20key.%20You%20will%20also%20need%20to%20download%20a%20copy%20of%20phpFlickr%20API%20Kit.%20The%20use%20of%20an%20API%20Kit%20makes%20the%20use%20of%20flickr%27s%20API%20methods%20easier.%20You%20can%20also%20view%20the%20demo%20page%20of%20the%20tutorial%20%28opens%20i&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.burnmind.com/howto/how-to-display-your-flickr-photos-using-php/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>a collection of useful android applications</title>
		<link>http://www.burnmind.com/bookmarks/a-collection-of-useful-android-applications</link>
		<comments>http://www.burnmind.com/bookmarks/a-collection-of-useful-android-applications#comments</comments>
		<pubDate>Tue, 03 Nov 2009 01:06:02 +0000</pubDate>
		<dc:creator>burnmind</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[any cut]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[batterylife]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[gmote]]></category>
		<category><![CDATA[power manager]]></category>
		<category><![CDATA[quick uninstaller]]></category>
		<category><![CDATA[taskiller]]></category>
		<category><![CDATA[useful]]></category>

		<guid isPermaLink="false">http://www.burnmind.com/?p=411</guid>
		<description><![CDATA[Creation by ~fetuscakemix on deviantART Recently, I acquired an android Smartphone and while browsing in several android forums and the android market, I discovered the following useful applications: Gmote: An amazing application that turns Android into a remote control for a computer, allowing users to run movies and music at a distance. It supports all [...]]]></description>
			<content:encoded><![CDATA[<div class="image"><img title="Android" src="http://www.burnmind.com/wp-content/uploads/2009/11/Android_by_fetuscakemix.jpg" border="0" alt="Android by fetuscakemix on deviantART" width="300" height="188" />
<div class="caption">Creation by <a title="~fetuscakemix on deviantart.com" href="http://fetuscakemix.deviantart.com/" target="_blank">~fetuscakemix</a> on <a title="deviantART" href="http://www.deviantart.com/" target="_blank">deviantART</a></div>
</div>
<p>Recently, I acquired an android Smartphone and while browsing in several android forums and the android market, I discovered the following useful applications:</p>
<p><img src="http://www.burnmind.com/wp-content/uploads/2009/11/Gmote.png" alt="Gmote" title="Gmote" width="24" height="24" class="alignleft size-full wp-image-442" /><a title="Gmote Homepage" href="http://www.gmote.org/" target="_blank">Gmote</a>: An amazing application that turns Android into a remote control for a computer, allowing users to run movies and music at a distance. It supports all of the standard remote control features such as play, pause, rewind, volume controls etc. It also has a built-in file browser that lets you select what to play.</p>
<p><img src="http://www.burnmind.com/wp-content/uploads/2009/11/tasKiller.png" alt="tasKiller" title="tasKiller" width="24" height="24" class="alignleft size-full wp-image-445" /><a title="TasKiller free @ androlib.com" href="http://www.androlib.com/android.application.com-tni-taskiller-Fim.aspx" target="_blank">TasKiller free</a>: Let you close (kill) any running application in one click.</p>
<p><img src="http://www.burnmind.com/wp-content/uploads/2009/11/batteryLife.png" alt="batteryLife" title="batteryLife" width="24" height="24" class="alignleft size-full wp-image-446" /><a title="BatteryLife Homepage" href="http://curvefish.com/widgets/batterylife.htm" target="_blank">BatteryLife</a>: Displays the percent of the remaining battery.</p>
<p><img src="http://www.burnmind.com/wp-content/uploads/2009/11/powerManager.png" alt="powerManager" title="powerManager" width="24" height="24" class="alignleft size-full wp-image-447" /><a title="Power manager Homepage" href="http://xphonesoftware.com/pm.html" target="_blank">Power manager</a>: Adds new power settings to the phone (e.g. how long the screen is on during a call, if device stays on while the keyboard is open, etc.) and allows you to quickly view and change other phone settings depending on different conditions (e.g. low battery).</p>
<p><img src="http://www.burnmind.com/wp-content/uploads/2009/11/quickUninstaller.png" alt="quickUninstaller" title="quickUninstaller" width="24" height="24" class="alignleft size-full wp-image-448" /><a title="Quick Uninstaller @ androlib.com" href="http://www.androlib.com/android.application.com-mgeek-android-uninstaller-zqD.aspx" target="_blank">Quick Uninstaller</a>: Uninstalls applications from the phone using a desktop-style view. The uninstall is performed by only two clicks.</p>
<p><img src="http://www.burnmind.com/wp-content/uploads/2009/11/anyCut.png" alt="anyCut" title="anyCut" width="24" height="24" class="alignleft size-full wp-image-449" /><a title="Any Cut @ androlib.com" href="http://www.androlib.com/android.application.com-appdroid-anycut-jpBC.aspx" target="_blank">Any Cut</a>: Allows you to create Home shortcuts to anything! Popular shortcuts like directly calling a phone number or sending an SMS are supported.</p>
<p>Some of the applications listed here have also a paid version, but this post refers only to their free versions.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=a+collection+of+useful+android+applications&amp;link=http://www.burnmind.com/bookmarks/a-collection-of-useful-android-applications&amp;notes=Creation%20by%20%7Efetuscakemix%20on%20deviantART%0D%0ARecently%2C%20I%20acquired%20an%20android%20Smartphone%20and%20while%20browsing%20in%20several%20android%20forums%20and%20the%20android%20market%2C%20I%20discovered%20the%20following%20useful%20applications%3A%0D%0A%0D%0AGmote%3A%20An%20amazing%20application%20that%20turns%20Android%20into%20a%20remote%20control%20for%20a%20computer%2C%20allowing%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=a+collection+of+useful+android+applications&amp;link=http://www.burnmind.com/bookmarks/a-collection-of-useful-android-applications&amp;notes=Creation%20by%20%7Efetuscakemix%20on%20deviantART%0D%0ARecently%2C%20I%20acquired%20an%20android%20Smartphone%20and%20while%20browsing%20in%20several%20android%20forums%20and%20the%20android%20market%2C%20I%20discovered%20the%20following%20useful%20applications%3A%0D%0A%0D%0AGmote%3A%20An%20amazing%20application%20that%20turns%20Android%20into%20a%20remote%20control%20for%20a%20computer%2C%20allowing%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=a+collection+of+useful+android+applications&amp;link=http://www.burnmind.com/bookmarks/a-collection-of-useful-android-applications&amp;notes=Creation%20by%20%7Efetuscakemix%20on%20deviantART%0D%0ARecently%2C%20I%20acquired%20an%20android%20Smartphone%20and%20while%20browsing%20in%20several%20android%20forums%20and%20the%20android%20market%2C%20I%20discovered%20the%20following%20useful%20applications%3A%0D%0A%0D%0AGmote%3A%20An%20amazing%20application%20that%20turns%20Android%20into%20a%20remote%20control%20for%20a%20computer%2C%20allowing%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=a+collection+of+useful+android+applications&amp;link=http://www.burnmind.com/bookmarks/a-collection-of-useful-android-applications&amp;notes=Creation%20by%20%7Efetuscakemix%20on%20deviantART%0D%0ARecently%2C%20I%20acquired%20an%20android%20Smartphone%20and%20while%20browsing%20in%20several%20android%20forums%20and%20the%20android%20market%2C%20I%20discovered%20the%20following%20useful%20applications%3A%0D%0A%0D%0AGmote%3A%20An%20amazing%20application%20that%20turns%20Android%20into%20a%20remote%20control%20for%20a%20computer%2C%20allowing%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=a+collection+of+useful+android+applications&amp;link=http://www.burnmind.com/bookmarks/a-collection-of-useful-android-applications&amp;notes=Creation%20by%20%7Efetuscakemix%20on%20deviantART%0D%0ARecently%2C%20I%20acquired%20an%20android%20Smartphone%20and%20while%20browsing%20in%20several%20android%20forums%20and%20the%20android%20market%2C%20I%20discovered%20the%20following%20useful%20applications%3A%0D%0A%0D%0AGmote%3A%20An%20amazing%20application%20that%20turns%20Android%20into%20a%20remote%20control%20for%20a%20computer%2C%20allowing%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=a+collection+of+useful+android+applications&amp;link=http://www.burnmind.com/bookmarks/a-collection-of-useful-android-applications&amp;notes=Creation%20by%20%7Efetuscakemix%20on%20deviantART%0D%0ARecently%2C%20I%20acquired%20an%20android%20Smartphone%20and%20while%20browsing%20in%20several%20android%20forums%20and%20the%20android%20market%2C%20I%20discovered%20the%20following%20useful%20applications%3A%0D%0A%0D%0AGmote%3A%20An%20amazing%20application%20that%20turns%20Android%20into%20a%20remote%20control%20for%20a%20computer%2C%20allowing%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.burnmind.com/bookmarks/a-collection-of-useful-android-applications/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- Dynamic page generated in 1.831 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-02-04 04:41:53 -->

