<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TECHiE TALKS &#187; Software</title>
	<atom:link href="http://www.icpep.org/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.icpep.org</link>
	<description>Just another techie stuff</description>
	<lastBuildDate>Wed, 01 Feb 2012 23:59:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Setting Up a MemCached Server</title>
		<link>http://www.icpep.org/setting-up-a-memcached-server/</link>
		<comments>http://www.icpep.org/setting-up-a-memcached-server/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 09:47:34 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows Hacks]]></category>
		<category><![CDATA[memcached]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1555</guid>
		<description><![CDATA[image from www.memcached.org Based on their official website memcached is defined as: Free &#038; open source, high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load. Memcached is an in-memory key-value store for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering. Memcached is simple yet powerful. Its simple design promotes quick deployment, ease of development, and solves many [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img src="http://www.icpep.org/wp-content/uploads/2012/01/memcached_banner75-300x55.jpg" alt="memcached" title="memcached" width="300" height="55" class="aligncenter size-medium wp-image-1556" /><br /><center><em>image from www.memcached.org</em></center></p>
<p align="justify">Based on their official website <a href="http://memcached.org/" title="MemCached" target="_blank">memcached</a> is defined as:</p>
<blockquote><p>Free &#038; open source, high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load.</p>
<p>Memcached is an in-memory key-value store for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering.</p>
<p>Memcached is simple yet powerful. Its simple design promotes quick deployment, ease of development, and solves many problems facing large data caches. Its API is available for most popular languages.</p></blockquote>
<p>&mdash; memcached.org</p>
<h2 style="text-shadow:1px 0px 1px #000;font-weight:bolder;"><u>MemCached Server</u></h2>
<p align="justify">This is how I installed(<em>a simple installation</em>) my memcached server that can be accessed by a webserver on our local area network.  The server is running Ubuntu as its operating system.  <span id="highlight">Caution: The version on ubuntu&#8217;s repository could not be the latest version.  Refer to memcached&#8217;s website for the latest version.  If you want to install the latest version from the source you can refer to memcached&#8217;s <a href="http://code.google.com/p/memcached/wiki/NewInstallFromSource" title="Memcached's wiki page" target="_blank">wiki</a> page</span></p>
<p align="justify">Open synaptic package manager and install <span id="highlight">memcached</span> and <span id="highlight">php5-memcached</span>.  After the installation restart the webserver using the command:</p>
<div id="code">sudo apache2ctl restart</div>
</p>
<p>Start memcached by using the command:</p>
<p align="justify"><div id="code">/etc/init.d/memcached start</div></p>
<p>By default memcached is running on port <span id="highlight">11211</span> and is accessible by the machine with IP 127.0.0.1 which is the machine&#8217;s local IP address with <span id="highlight">64MB</span> memory allocation</p>
<p align="justify">To try if memcached is working use this simple PHP code</p>
<pre class="crayon-plain-tag"><code>&lt; ?php
$m = new Memcached();
$m-&gt;addServer('localhost', 11211);

$m-&gt;set('int', 99);
$m-&gt;set('string', 'a simple string');
$m-&gt;set('array', array(11, 12));
$m-&gt;set('object', new stdclass, time() + 300);

var_dump($m-&gt;get('int'));
var_dump($m-&gt;get('string'));
var_dump($m-&gt;get('array'));
var_dump($m-&gt;get('object'));
?&gt;</code></pre>
<p align="justify">Open the script on the browser.  Try opening the cli and telnet to memcached using the command:</p>
<p><div id="code">telnet 127.0.0.1 11211</div></p>
<p>The image below shows how the cli would look like after the command</p>
<p align="center"><img src="http://www.icpep.org/wp-content/uploads/2012/01/telnet-300x70.png" alt="telnet to memcached" title="telnet to memcached" width="300" height="70" class="aligncenter size-medium wp-image-1557" /></p>
<p align="justify">Check memcached&#8217;s status by using the command</p>
<div id="code">
stats
</div>
</p>
<p>We can get a cached value using the command:</p>
<p><div id="code">get string</div></p>
<p>It should return <span id="highlight">&#8220;a simple string&#8221;</span> as assigned on the script.</p>
<p>To explore more, commands can be seen on this page <a href="http://lzone.de/articles/memcached.htm" target="_blank"><em>http://lzone.de/articles/memcached.htm</em></a></p>
<p align="justify">To allow another machine (<em>local web server</em>) to store data on the memcached server we need to edit the configuration file using the command:</p>
<p><div id="code">
sudo nano /etc/memcached.conf
</div></p>
<p align="justify">In my case I changed the allotted memory to 256MB and allowed IP of 191.168.1.254 which is our windows webserver as seen on the image below:</p>
<p align="center"><a href="http://www.icpep.org/wp-content/uploads/2012/01/Screenshot-2.png" target="_blank"><img src="http://www.icpep.org/wp-content/uploads/2012/01/Screenshot-2-300x180.png" alt="memcached configuration" title="memcached configuration" width="300" height="180" class="aligncenter size-medium wp-image-1558" /></a></p>
<p>After the configuration I restarted memcached using the command:</p>
<p><div id="code">sudo /etc/init.d/memcached restart</div></p>
<h2 style="text-shadow:1px 0px 1px #000;font-weight:bolder;"><u>The Webserver (XAMPP)</u></h2>
<p align="justify">To quickly test the memcached server I used xampp portable version which can be downloaded on their official website <em>www.apachefriends.org</em>.</p>
<p align="justify">As stated earlier the webserver is already allowed to use the memcached server.  As an information memcached is a daemon which runs like the mysql server, so we need PHP to connect to the memcached server.</p>
<p align="justify"><ol>
<li>To start, download memcached on <a href="http://code.jellycan.com/memcached/" title="memcached windows " target="_blank">code.jellycan.com/memcached</a> which is win32 binary.
</li>
<li>After downloading extract the file (<em>recommended: C:\memcached</em>).  You should have the file <em>memcached.exe</em></li>
<li>
We can install memcached as a service on the command line using the command:</p>
<div id="code">C:\memcached\memcached.exe -d install</div>
</li>
<li>
Start memcached using the command:</p>
<div id="code">C:\memcached\memcached.exe -d start</div>
</li>
<li>
After running memcached we need to tie it with PHP using the <span id="highlight">php_memcached.dll</span>.  You should have this file on your PHP&#8217;s ext folder, if not download the file at these links <a href="http://downloads.php.net/pierre/" title="php_memcached.dll" target="_blank">http://downloads.php.net/pierre/</a>, <a href="http://www.pureformsolutions.com/pureform.wordpress.com/2008/06/17/php_memcache.dll" target="_blank">http://www.pureformsolutions.com/pureform.wordpress.com/2008/06/17/php_memcache.dll</a> or on our server: <a class='wpdm-popup' rel='colorbox' title='php_memcached.dll' href='http://www.icpep.org/?download=4' style="background:url('http://www.icpep.org/wp-content/plugins/download-manager/icon/download.png') no-repeat;padding:3px 12px 12px 28px;font:bold 10pt verdana;">php_memcached.dll.rar</a>
</li>
<li>
enable the use of php_memcached.dll by editing your php.ini and uncomment the line <span id="highlight">extension=php_memcache.dll</span> if it does not exist add this line.  After editing the file restart the webserver.
</li>
</ol>
<p>You can access the data on the memcached server by using the code below:</p>
<pre class="crayon-plain-tag"><code>&lt; ?php
        $memcache = new Memcache();
        if(!$memcache-&gt;connect('191.168.1.7', 11211))
                die(&quot;Couldn't connect to memcached!&quot;);

        $key=&quot;string&quot;;

        $result = $memcache-&gt;get($key);

        if($result)
        {
                echo &quot;$key is $result&quot;;
        }
        else
        {
            echo 'There is no data saved named '. $key;
        }
?&gt;</code></pre><p>
<p>You should have an output of <span id="highlight">&#8220;a simple string&#8221;</span>.  I hope this helped you set up the server.  Happy coding!</p>
<p>Sources:</p>
<p>http://pureform.wordpress.com/2008/01/10/installing-memcache-on-windows-for-php/</p>
<p>http://memcached.org</p>
<p>http://blogs.oracle.com/oswald/entry/cache_cache_cache_part_1</p>
<style type="text/css">li{text-align:justify;}</style>
<div id="seo_alrp_related"><h2>Posts Related to Setting Up a MemCached Server</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/fixing-apaches-error-could-not-reliably-determine-the-servers-fully-qualified-domain-name-using-127-0-1-1-for-servername-in-ubuntu/" rel="bookmark">Fixing Apache&#8217;s Error: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName in Ubuntu</a></h3><p>One of the server I am using is running ubuntu. I am installing memcached on the server and every time I restart the web server ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/smb-swat-on-centos-5/" rel="bookmark">SMB Swat on CentOS 5</a></h3><p>&nbsp; Simple howto's when SWAT is not available after you install CentOS.  To start with here are some cli commands to use, [root@goldmine ~]# yum ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/mysql-reset-root-password/" rel="bookmark">MySQL Reset Root Password</a></h3><p>My friend forgot his mysql password and the database needs to be accessed by the root user.  My friend is running MySQL 5.1 and as ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/use-gmail-account-to-relay-email-from-php-mail-function/" rel="bookmark">Use Gmail Account To Relay Email From PHP mail Function</a></h3><p>One of the things I find hard in developing a web application is using a library for sending email such as PHPMailer. I find it ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/code-igniter-installation-and-first-run/" rel="bookmark">Code Igniter Installation and First Run</a></h3><p>Code Igniter is an PHP Application Development Framework - a toolkit for PHP developers. The main goal of Code Igniter is to enable developers to ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/setting-up-a-memcached-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Laptop Charger Not Charging Battery</title>
		<link>http://www.icpep.org/laptop-charger-not-charging-laptop-battery/</link>
		<comments>http://www.icpep.org/laptop-charger-not-charging-laptop-battery/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 11:24:46 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[DIY]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1514</guid>
		<description><![CDATA[In the previous days I have noticed that my charger only charges when I keep on moving the charger until today that it no longer works. It no longer charges the battery of my laptop though the LED light is emitting. This is also a common problem for laptop users, I have helped 4 of my friends and solved them all. If you have a problem with your laptop charger and have no budget in buying a new one I [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter  wp-image-1515" title="common problems with the laptop charger" src="http://www.icpep.org/wp-content/uploads/2011/12/common-problems-with-the-laptop-charger.jpg" alt="common problems with the laptop charger" width="291" height="438" /></p>
<p style="text-align: justify;">In the previous days I have noticed that my charger only charges when I keep on moving the charger until today that it no longer works. It no longer charges the battery of my laptop though the LED light is emitting. This is also a common problem for laptop users, I have helped 4 of my friends and solved them all. If you have a problem with your laptop charger and have no budget in buying a new one I believe this post will help you.</p>
<p style="text-align: justify;">As seen on the image above, the encircled part  is the point where most problems occur in a laptop charger.  This is caused when the wire is gradually pulled away from the laptop adapter box.  To start follow the steps below:</p>
<p style="text-align: justify;">WARNING: This can cause electric shock if you don&#8217;t follow electronic safety tips.  Before you start I recommend reading some safety tips</p>
<p style="text-align: justify; padding-left: 30px;">1.  Gather the materials needed (ground strap, cutter knife, wire peeler, multi tester, scissor, loctite or similar and electrical tape)</p>
<p style="text-align: justify; padding-left: 30px;">2.  Wear the ground strap before starting to avoid any devices inside the laptop adapter box.</p>
<p style="text-align: justify; padding-left: 30px;">3.  Use the cutter knife and carefully trace open path found on the side of the charger until the cover separates.  (Most chargers are not screwed but rather permanently glued)</p>
<p style="text-align: justify; padding-left: 30px;">4.   When the cover is opened carefully cut the wires as seen on the image below and put aside the circuit.</p>
<p style="padding-left: 30px; text-align: center;"><img class="aligncenter  wp-image-1516" title="Laptop charger Circuit" src="http://www.icpep.org/wp-content/uploads/2011/12/2011-12-28-12.34.40.jpg" alt="Laptop charger Circuit" width="347" height="461" /></p>
<p style="text-align: justify; padding-left: 30px;">5.  After cutting the wires use the multi-tester to check continuity on the inside and outside wires.  Cut the wire until there is continuity.</p>
<p style="padding-left: 30px; text-align: center;"><img class="aligncenter  wp-image-1517" title="continuity" src="http://www.icpep.org/wp-content/uploads/2011/12/continuity.png" alt="continuity" width="285" height="303" /></p>
<p style="padding-left: 30px; text-align: justify;">6.  After testing for continuity get the tip of the wire.  Remove the trailing wire and clean the hole where the wires are inserted as seen on the image below.</p>
<p style="padding-left: 30px; text-align: center;"><img class="aligncenter  wp-image-1518" title="tip of charger" src="http://www.icpep.org/wp-content/uploads/2011/12/tip-of-charger.jpg" alt="tip of charger" width="400" height="132" /></p>
<p style="padding-left: 30px; text-align: justify;">7.  Insert the newly cut wires both the shielded and unshielded stranded wires(<em>must have continuity</em>) and connect both wires</p>
<p style="padding-left: 30px; text-align: center;"><img class="aligncenter  wp-image-1519" title="wire connections" src="http://www.icpep.org/wp-content/uploads/2011/12/wire-connections.png" alt="wire connections" width="297" height="395" /></p>
<p style="padding-left: 30px; text-align: justify;"><strong>a </strong>is the unshielded wire and <strong>b</strong> is the shielded wire colored white.  Wires must not be interchanged because this can cause a damage on you laptop.</p>
<p style="padding-left: 30px; text-align: justify;">8.  Carefully connect the wire by twisting both ends.  Cover the connection with an electrical tape, using other tapes might melt because of the heat.  Below is how I taped the connection:</p>
<p align="center"><img class="aligncenter size-full wp-image-1520" title="connected wires" src="http://www.icpep.org/wp-content/uploads/2011/12/2011-12-28-14.03.32.jpg" alt="connected wires" width="306" height="384" /></p>
<p style="padding-left: 30px; text-align: justify;">9.  Cover the &#8220;metal cover&#8221; of the the circuit with an electric tape to avoid any short circuits.  The unshielded wire might touch the conductor and can cause short circuit.</p>
<p style="padding-left: 30px; text-align: justify;">10.  Carefully insert the connected wires inside the metal cover and make sure the LED indicator is not covered.   Cover the circuit with the plastic adapter box as seen below:</p>
<p style="padding-left: 30px; text-align: justify;">
<p align="center"><img class="aligncenter size-full wp-image-1521" title="Wire placement" src="http://www.icpep.org/wp-content/uploads/2011/12/2011-12-28-14.04.52.jpg" alt="Wire placement" width="410" height="307" /></p>
<p style="padding-left: 30px; text-align: justify;">
<p style="padding-left: 30px; text-align: justify;">
<p align="center"><img class="aligncenter  wp-image-1522" title="Repaired laptop charger" src="http://www.icpep.org/wp-content/uploads/2011/12/final.png" alt="Repaired laptop charger" width="461" height="213" /></p>
<p style="padding-left: 30px; text-align: center;">
<p style="text-align: justify;">My repaired laptop charger is now fully functional and I hope this will be working for 4 more years or more.  Hope this DIY helped you with your laptop charger problem</p>
<div id="seo_alrp_related"><h2>Posts Related to Laptop Charger Not Charging Battery</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/optimizing-laptop/" rel="bookmark">Optimizing Laptop</a></h3><p>You just bought a shiny laptop for office and home you use or on business trips and vacation or go to down town and drop ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/what-is-programming-language/" rel="bookmark">What is Programming Language</a></h3><p>When you enter a darkened room and want to see what is inside, you turn on a light switch. When you leave the room, you ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/viewing-and-controlling-pc/" rel="bookmark">Viewing and controlling PC</a></h3><p>If you are far away from you techie friends and you are having troubles with your PC or laptop, how will you explain everything to ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/laptop-tv-tuner/" rel="bookmark">Laptop TV Tuner</a></h3><p>Do you want to see your favorite TV show anywhere? anytime? This is not like any  Direct TV System or Dish Networks this is something ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/thunderbird-minimize-to-tray/" rel="bookmark">Thunderbird Minimize to Tray</a></h3><p>For version 3.O " One of the most favorable software for mail clients is Mozilla Thunderbird. It is a free software which can be downloaded ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/laptop-charger-not-charging-laptop-battery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Gpick A Color Picker for Linux</title>
		<link>http://www.icpep.org/gpick-a-color-picker-for-linux/</link>
		<comments>http://www.icpep.org/gpick-a-color-picker-for-linux/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 14:38:40 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1479</guid>
		<description><![CDATA[Gpick is an advanced color picker written in C++ using GTK+ toolkit. This application is an alternative for window&#8217;s colorpic. One feature I like about this application is the same feature I found on window&#8217;s colorpic which shows a magnifier of the area where you want to capture the color. Posts Related to Gpick A Color Picker for LinuxThunderbird Profile On Windows and LinuxI dual booted both Windows 7 and Backtrack 5 on my Laptop and a problem starts when [...]]]></description>
			<content:encoded><![CDATA[<p align="center">
<img src="http://www.icpep.org/wp-content/uploads/2011/11/gpick-300x269.png" alt="gpick color picker" title="gpick color picker" width="300" height="269" class="aligncenter size-medium wp-image-1480" /></p>
<p align="justify">
<strong><a href="http://code.google.com/p/gpick/" title="Gpick Color Picker" target="_blank">Gpick</a></strong> is an advanced color picker written in C++ using GTK+ toolkit.  This application is an alternative for window&#8217;s <a href="http://www.iconico.com/colorpic/" title="colorpic" target="_blank">colorpic</a>.  One feature I like about this application is the same feature I found on window&#8217;s colorpic which shows a magnifier of the area where you want to capture the color.  </p>
<div id="seo_alrp_related"><h2>Posts Related to Gpick A Color Picker for Linux</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/thunderbird-profile-on-windows-and-linux/" rel="bookmark">Thunderbird Profile On Windows and Linux</a></h3><p>I dual booted both Windows 7 and Backtrack 5 on my Laptop and a problem starts when I used thunderbird on Backtrack Linux because all ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/facebook-auto-tag-pictures/" rel="bookmark">Facebook: Auto Tag Pictures</a></h3><p>Facebook has the largest population on the world wide web and it has a viral effect on distributing data. They have a lot of ways ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/install-and-enable-php5-curl-in-gnome-linux/" rel="bookmark">Install and Enable PHP5 cURL in Gnome-Linux</a></h3><p>PHP5 cURL &nbsp; If you already have a LAMP server and PHP cURL is not yet installed you can open the terminal and use the ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/xhtml-doctype/" rel="bookmark">(X)HTML DOCTYPE</a></h3><p>Declare a DOCTYPE. The DOCTYPE goes before the opening html tag at the top of the page and tells the browser whether the page contains ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/disable-autorun/" rel="bookmark">Disable Autorun</a></h3><p>Operating system such as Microsoft Windows has the autorun enabled by default. When you try to connect external drives from your computer this usually prompts ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/gpick-a-color-picker-for-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maintain Your Ubuntu Machine</title>
		<link>http://www.icpep.org/maintain-your-ubuntu-machine/</link>
		<comments>http://www.icpep.org/maintain-your-ubuntu-machine/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 04:09:09 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1469</guid>
		<description><![CDATA[image from www.qortuba.org These are some of the tools and commands I use to clean up my ubuntu powered laptop. Cleaning Downloaded and Uninstalled Packages and Dependencies As what I have observed in using ubuntu, most packages are not ready after installation though most of the applications can be downloaded freely from the internet. Just like windows os we need to download packages from trusted sources, and for ubuntu we have the synaptic package manager which helps us which applications [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img src="http://www.icpep.org/wp-content/uploads/2011/11/ubuntu-200x300.png" alt="ubuntu" title="ubuntu" width="200" height="300" class="aligncenter size-medium wp-image-1470" /><br />
<center><i>image from www.qortuba.org</i></center>
</p>
<p align="justify">These are some of the tools and commands I use to clean up my <strong>ubuntu</strong> powered laptop.</p>
<h3><u>Cleaning Downloaded and Uninstalled Packages and Dependencies</u></h3>
<p align="justify">
As what I have observed in using ubuntu, most packages are not ready after installation though most of the applications can be downloaded freely from the internet.  Just like windows os we need to download packages from trusted sources, and for ubuntu we have the synaptic package manager which helps us which applications are available for our use. </p>
<p align="justify">
<strong>debfoster</strong>.  After installing a lot of packages it would be difficult for us to track which packages we installed. This application will help us track on the applications we installed on our machine. Before installing any applications you need to install this application first.  debfoster can be downloaded on the synaptic package manager for free or we can use the following commands to install it via cli:</p>
<h3>debfoster</h3>
</p>
<div id="code">
sudo apt-get install debfoster
</div>
<p>After the installation, we need to create the initial keeper file:</p>
<div id="code">
sudo debfoster -q
</div>
<p>After creating the keeper file we need to force the system to conform to the keeper file</p>
<div id="code">sudo debfoster -f</div>
</p>
<p>After that debfoster will keep track of your installed applications.  If you want an application to be not included on any uninstallation you can edit the keeper file:</p>
<div id="code">
gksu gedit /var/lib/debfoster/keepers
</div>
<p>If you needed to check which packages and dependencies that needs to be removed you can use:</p>
<div id="code">sudo debfoster</div>
</p>
<p>&nbsp;</p>
<p align="justfiy">
<strong>gtkorphan</strong>. This application is used to remove orphaned packages.  Orphan packages are packages that is no longer being maintained by a developer.  Keeping orphaned packages can be a pain in the head especially when there are less support.  To remove the packages we can install this application using:
</p>
<div id="code">sudo apt-get install gtkorphan</div>
<p align="justify">The application is very easy to use because it has a GUI as seen on the image below:
</p>
<p align="center">
<img src="http://www.icpep.org/wp-content/uploads/2011/11/Screenshot-233x300.png" alt="GtkOrphan" title="GtkOrphan" width="233" height="300" class="aligncenter size-medium wp-image-1474" /></p>
<p align="justify">
After installing you can navigate to <span style="background:#D9D4CC;">System-> Administration-> Removed Orphaned package</span>.  It will show you the orphaned packages, you can check the box for the packages you want to remove.
</p>
<p align="justify">After installing and uninstalling packages there could be a lot of dependencies and packages that is no longer in use.  You can use the following commands to remove unused files.</p>
<p>To remove any partial packages use the command: </p>
<div id="code">sudo apt-get autoclean</div>
</p>
<p>To clean apt cache use the command: </p>
<div id="code">sudo apt-get clean</div>
</p>
<p>To remove unused dependencies:</p>
<div id="code">sudo apt-get autoremove</div>
</p>
<p align="justify">
If you are not using the application, it&#8217;s better to uninstall it.  To uninstall you can always use the synaptic package manager to completely remove unwanted packages.  If not you can use the following commands:</p>
<div id="code">sudo apt-get autoremove <application -name></application></div>
<p>where application-name is the application you want to remove.  If not you can use this command:</p>
<div id="code">sudo dpkg -r &lt;application -name&gt;</div>
<p>but it is not always recommended to use this command in uninstalling any packages.</p>
<div id="seo_alrp_related"><h2>Posts Related to Maintain Your Ubuntu Machine</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/slackware-php-gd-error/" rel="bookmark">Slackware PHP GD Error</a></h3><p>In the past months I was able to handle a LAMP server, this is my second time to handle a UNIX based web server but ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/packet-tracer-on-ubuntu/" rel="bookmark">Packet Tracer on Ubuntu amd64 10.10</a></h3><p>Cisco's Packet Tracer is one of my most wanted application when I was using Windows.  When you login to your account in cisco you can ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/laptop-tv-tuner/" rel="bookmark">Laptop TV Tuner</a></h3><p>Do you want to see your favorite TV show anywhere? anytime? This is not like any  Direct TV System or Dish Networks this is something ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/backtrack-5-bug-fix/" rel="bookmark">Backtrack 5 Bug Fix</a></h3><p>I switched my ubuntu Oneiric to bactrack 5 Gnome and try out the new tools I wanted to use. Lately I thought everything will be ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/installing-photoshop-on-ubuntu-10-10/" rel="bookmark">Installing Photoshop on Ubuntu 10.10</a></h3><p>I am now a full Linux user and the distro I used is Ubuntu version 10.10.  Maybe most of my posts will be ubuntu tweaks ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/maintain-your-ubuntu-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thunderbird Profile On Windows and Linux</title>
		<link>http://www.icpep.org/thunderbird-profile-on-windows-and-linux/</link>
		<comments>http://www.icpep.org/thunderbird-profile-on-windows-and-linux/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 15:53:33 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Linux How To's]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1436</guid>
		<description><![CDATA[I dual booted both Windows 7 and Backtrack 5 on my Laptop and a problem starts when I used thunderbird on Backtrack Linux because all my mails are on my windows OS. Based on what I know, Thunderbird creates a profile during my first run of thunderbird on windows. Everything is stored in that folder (accounts, mails, extensions, etc.). In linux, I know that thunderbird does the same thing. What I wanted to do was to use only one profile [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img src="http://www.icpep.org/wp-content/uploads/2011/11/1321628521_ThunderBird-Box-v2.png" alt="ThunderBird " title="ThunderBird " width="128" height="128" class="aligncenter size-full wp-image-1437" /></p>
<p align="justify">
I dual booted both Windows 7 and Backtrack 5 on my Laptop and a problem starts when I used thunderbird on Backtrack Linux because all my mails are on my windows OS. Based on what I know, Thunderbird creates a profile during my first run of thunderbird on windows.  Everything is stored in that folder (accounts, mails, extensions, etc.).  In linux, I know that thunderbird does the same thing.  What I wanted to do was to use only one profile for both OS so that I won&#8217;t consume more disk space just by copying all mails on windows to linux.
</p>
<p align="justify">
If you are caught in the same situation, here is what I did to solve the problem.
</p>
<p align="justify">
<ol>
<li>
After installing thunderbird on Backtrack open it but don&#8217;t add your email accounts, this is done to create the needed files and folders where thunderbird store the data.  Close thunderbird after opening it.
</li>
<li>
Locate your thunderbird profile folder on windows(<span style="background:#f4f4f4;">&nbsp;<i>/media/disk/Documents and Settings/icpep/Application Data/Thunderbird/Profiles/1yfn577a.default</i>&nbsp;</span>).
</li>
<li>
Locate your profile folder on linux (<span style="background:#f4f4f4;"><i>&nbsp;/root/.mozilla-thunderbird/</i>&nbsp;</span>)
</li>
<li>
Create a symbolic link of your windows profile page to your linux profile page, the command is: </p>
<div style="border-top: 1px; border-bottom: 1px; border-color: #ccc; border-style: solid; background: #f4f4f4; padding: 1px 10px;">
ln -s &#8220;/media/disk/Documents and Settings/icpep/Application Data/Thunderbird/Profiles/1yfn577a.default&#8221; &nbsp;&nbsp;&#8221;/root/.mozilla-thunderbird/&#8221;
</div>
<p>
Do not forget the double quotes
</li>
<li>
After creating the symbolic link, open the <span background="background:#f4f4f4"> &nbsp; <i>profiles.ini</i>&nbsp;</span> file<br />
and edit the line <span background="background:#f4f4f4">path</span> to the created symbolic link.</li>
<p>  Example of the line is shown below:</p>
<div style="border-top: 1px; border-bottom: 1px; border-color: #ccc; border-style: solid; background: #f4f4f4; padding: 1px 10px;">
Path=1yfn577a.default
</div>
</ol>
<p> After changing the path you can now open thunderbird and should see everything like that of windows thunderbird.</p>
<div id="seo_alrp_related"><h2>Posts Related to Thunderbird Profile On Windows and Linux</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/4-thunderbird-add-ons/" rel="bookmark">4 Thunderbird Add-ons</a></h3><p>I am a great fan and a user of mozilla thunderbird. I have used different mail clients like microsoft outlook, opera mail, zimbra mail client, ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/thunderbird-on-tray/" rel="bookmark">Thunderbird on Tray</a></h3><p>Thunderbird, a free mail client software has a new version which is version 3.O that comes with a lot of new features and one of ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/thunderbird-to-outlook/" rel="bookmark">Thunderbird To Outlook</a></h3><p>I have successfully exported Thunderbird email files on ms outlook 2007 on a Windows XP platform which can also be done in windows vista and windows 7 platform. ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/thunderbird-minimize-to-tray/" rel="bookmark">Thunderbird Minimize to Tray</a></h3><p>For version 3.O " One of the most favorable software for mail clients is Mozilla Thunderbird. It is a free software which can be downloaded ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/packet-tracer-on-ubuntu/" rel="bookmark">Packet Tracer on Ubuntu amd64 10.10</a></h3><p>Cisco's Packet Tracer is one of my most wanted application when I was using Windows.  When you login to your account in cisco you can ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/thunderbird-profile-on-windows-and-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDO Database Extensions Error</title>
		<link>http://www.icpep.org/pdo-database-extensions-error/</link>
		<comments>http://www.icpep.org/pdo-database-extensions-error/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 10:45:19 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[php pdo mysql]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1415</guid>
		<description><![CDATA[&#160; &#160; I installed Apache, MySQL and PHP on windows 7.  I tried to install drupal version 7.9 and went through an error as shown in the image below: The error &#8220;Your web server does not appear to support any common PDO database extensions.&#8221; can be fixed by following these steps: Open your php.ini file Around line 966 uncomment the line &#8220;extension=php_pdo_mysql.dll&#8221; Make sure you have php_pdo_mysql.dll on your ext folder or download it here php_pdo_mysql Restart Apache and you can [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img class="size-full wp-image-1416 aligncenter" title="Drupal Logo" src="http://www.icpep.org/wp-content/uploads/2011/11/logo.png" alt="Drupal Logo" width="88" height="100" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>I installed Apache, MySQL and PHP on windows 7.  I tried to install drupal version 7.9 and went through an error as shown in the image below:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1417" title="drupal pdo error" src="http://www.icpep.org/wp-content/uploads/2011/11/drupal-pdo-error.jpg" alt="drupal pdo error" width="531" height="316" /></p>
<p style="text-align: justify;">The error &#8220;<em><span style="color: #ff0000;">Your web server does not appear to support any common PDO database extensions.</span></em>&#8221; can be fixed by following these steps:</p>
<ol>
<li>Open your <em>php.ini</em> file</li>
<li>Around line 966 uncomment the line &#8220;extension=php_pdo_mysql.dll&#8221;</li>
<li>Make sure you have php_pdo_mysql.dll on your ext folder or download it here <a class='wpdm-popup' rel='colorbox' title='php_pdo_mysql' href='http://www.icpep.org/?download=3' style="background:url('http://www.icpep.org/wp-content/plugins/download-manager/icon/download.png') no-repeat;padding:3px 12px 12px 28px;font:bold 10pt verdana;">php_pdo_mysql</a></li>
<li>Restart Apache and you can continue with the installation of drupal</li>
</ol>
<div id="seo_alrp_related"><h2>Posts Related to PDO Database Extensions Error</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/php-curl/" rel="bookmark">PHP Curl</a></h3><p>If you are a web developer and having problems on Installing PHP Curl on Apache with PHP installed on Windows Operating System, below is my ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/fixing-apaches-error-could-not-reliably-determine-the-servers-fully-qualified-domain-name-using-127-0-1-1-for-servername-in-ubuntu/" rel="bookmark">Fixing Apache&#8217;s Error: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName in Ubuntu</a></h3><p>One of the server I am using is running ubuntu. I am installing memcached on the server and every time I restart the web server ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/phpmyadmin-importing-large-data/" rel="bookmark">PHPMyAdmin Importing Large Data</a></h3><p>By Default phpmyadmin can import data on your mysql database up to 2MB of data and beyond that will be an error.  This has been ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/slackware-php-gd-error/" rel="bookmark">Slackware PHP GD Error</a></h3><p>In the past months I was able to handle a LAMP server, this is my second time to handle a UNIX based web server but ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/changing-the-owner-of-your-docroot-lamp/" rel="bookmark">Changing the Owner of Your Docroot (LAMP)</a></h3><p>In a LAMP server when you upload files in your htdocs folder by default  the owner of the files is root or the account you ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/pdo-database-extensions-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netbeans Line Wrap</title>
		<link>http://www.icpep.org/netbeans-line-wrap/</link>
		<comments>http://www.icpep.org/netbeans-line-wrap/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 11:10:22 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1352</guid>
		<description><![CDATA[&#160; I have been using netbeans PHP as my IDE in developing websites and web applications for my clients. Netbeans is now in version 7.01 and one of the latest feature added is the line wrap feature. If you have problems on how to enable line wrapping, this post is for you. This post is another howto in enabling line wrap in your Netbeans IDE. To start, you need to open your netbeans IDE version 7.01, go to editor tab [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;" align="center"><img class="aligncenter size-full wp-image-1353" title="netbeans line wrap" src="http://www.icpep.org/wp-content/uploads/2011/08/netbeans.jpg" alt="netbeans line wrap" width="566" height="473" /></p>
<p>&nbsp;</p>
<p align="justify">I have been using netbeans PHP as my IDE in developing websites and web applications for my clients. Netbeans is now in version 7.01 and one of the latest feature added is the line wrap feature. If you have problems on how to enable line wrapping, this post is for you. This post is another howto in enabling line wrap in your Netbeans IDE.</p>
<p align="justify">To start, you need to open your netbeans IDE version 7.01, go to <strong>editor tab</strong> &gt;&gt; <strong>tools</strong> &gt;&gt; <strong>options</strong> &gt;&gt; <strong>formatting </strong>tab and you can see the line wrap option. Just change it to anywhere if you want to enable it anywhere. You can check the image above for reference. Hope this helps! Happy coding!</p>
<div id="seo_alrp_related"><h2>Posts Related to Netbeans Line Wrap</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/php-curl/" rel="bookmark">PHP Curl</a></h3><p>If you are a web developer and having problems on Installing PHP Curl on Apache with PHP installed on Windows Operating System, below is my ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/backtrack-5-bug-fix/" rel="bookmark">Backtrack 5 Bug Fix</a></h3><p>I switched my ubuntu Oneiric to bactrack 5 Gnome and try out the new tools I wanted to use. Lately I thought everything will be ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/smb-swat-on-centos-5/" rel="bookmark">SMB Swat on CentOS 5</a></h3><p>&nbsp; Simple howto's when SWAT is not available after you install CentOS.  To start with here are some cli commands to use, [root@goldmine ~]# yum ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/fixing-apaches-error-could-not-reliably-determine-the-servers-fully-qualified-domain-name-using-127-0-1-1-for-servername-in-ubuntu/" rel="bookmark">Fixing Apache&#8217;s Error: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName in Ubuntu</a></h3><p>One of the server I am using is running ubuntu. I am installing memcached on the server and every time I restart the web server ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/hack-the-start-menu-and-taskbar/" rel="bookmark">Hack the Start Menu and Taskbar</a></h3><p>Run the Group Policy Editor by typing gpedit.msc at the Run prompt or command line. Go to User Configuration\Administrative Templates\Start Menu and Taskbar. If you ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/netbeans-line-wrap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 Thunderbird Add-ons</title>
		<link>http://www.icpep.org/4-thunderbird-add-ons/</link>
		<comments>http://www.icpep.org/4-thunderbird-add-ons/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 13:19:14 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1347</guid>
		<description><![CDATA[I am a great fan and a user of mozilla thunderbird. I have used different mail clients like microsoft outlook, opera mail, zimbra mail client, etc. I tested them all for 2 weeks or more and ended up with thunderbird. One think I like about thunderbird is that you can add new features to it for free through their add-ons. Aside from the add-ons mozilla is active and updates are always there for free. Part of my work is to [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img alt="Thunderbird Mail Client" src="http://www.icpep.org/wp-content/uploads/2009/07/thunderbird-.jpg" title="Thunderbird Add-ons" class="aligncenter" width="266" height="280" /></p>
<p align="justify">
I am a great fan and a user of mozilla thunderbird.  I have used different mail clients like microsoft outlook, opera mail, zimbra mail client, etc.  I tested them all for 2 weeks or more and ended up with thunderbird.  One think I like about thunderbird is that you can add new features to it for free through their add-ons.  Aside from the add-ons mozilla is active and updates are always there for free.
</p>
<p align="justify">
Part of my work is to provide support to our clients world wide through email or chat.  Currently I have 5 emails, 3 gmail accounts are used for work and 2 gmail accounts are for my personal use.  I consolidate them all in a mail client which is thunderbird.  It&#8217;s not an easy thing to do when you are using the browser because its quite confusing when you want to switch from one browser to the other or switch to different accounts when you use Gmail.  But with thunderbird, it gives me a lot of help and I can save a lot of time with it.  The top 4 add-ons I use to speed up things are:</p>
<ul>
<li>AdBlock Plus &#8211; Helps me block those ads I don&#8217;t want to see and I never want to see.</li>
<li>Lightning &#8211; Helps me organize stuff through a calendar.</li>
<li>MinimizeToTray Revive &#8211; It stays on the tray and prompts an alert when a new email arrives.</li>
<li>Quicktext &#8211; Allows me to create email templates and allows me to add shortcut to it like alt+1, alt+2, alt+3, &#8230;
</li>
</ul>
<p align="justify">
Those are some of the add-ons I use for my thunderbird mail client.  I hope it will help you speed up things.</p>
<div id="seo_alrp_related"><h2>Posts Related to 4 Thunderbird Add-ons</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/thunderbird-minimize-to-tray/" rel="bookmark">Thunderbird Minimize to Tray</a></h3><p>For version 3.O " One of the most favorable software for mail clients is Mozilla Thunderbird. It is a free software which can be downloaded ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/thunderbird-on-tray/" rel="bookmark">Thunderbird on Tray</a></h3><p>Thunderbird, a free mail client software has a new version which is version 3.O that comes with a lot of new features and one of ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/thunderbird-to-outlook/" rel="bookmark">Thunderbird To Outlook</a></h3><p>I have successfully exported Thunderbird email files on ms outlook 2007 on a Windows XP platform which can also be done in windows vista and windows 7 platform. ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/use-gmail-account-to-relay-email-from-php-mail-function/" rel="bookmark">Use Gmail Account To Relay Email From PHP mail Function</a></h3><p>One of the things I find hard in developing a web application is using a library for sending email such as PHPMailer. I find it ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/thunderbird-profile-on-windows-and-linux/" rel="bookmark">Thunderbird Profile On Windows and Linux</a></h3><p>I dual booted both Windows 7 and Backtrack 5 on my Laptop and a problem starts when I used thunderbird on Backtrack Linux because all ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/4-thunderbird-add-ons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook: Auto Tag Pictures</title>
		<link>http://www.icpep.org/facebook-auto-tag-pictures/</link>
		<comments>http://www.icpep.org/facebook-auto-tag-pictures/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 17:46:53 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1333</guid>
		<description><![CDATA[Facebook has the largest population on the world wide web and it has a viral effect on distributing data. They have a lot of ways to pass data from one user to the other and one is by tagging pictures. When facebook started this feature it was so hard to tag friends because you need to tag them one by one and its a time consuming way of letting your friends know that they exist in a picture and now [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img src="http://www.icpep.org/wp-content/uploads/2011/07/logo_copyrights.gif" alt="Online Face Recognition " title="Online Face Recognition " width="184" height="62" class="aligncenter size-full wp-image-1334" /></p>
<p align="justify">
Facebook has the largest population on the world wide web and it has a viral effect on distributing data.  They have a lot of ways to pass data from one user to the other and one is by tagging pictures.  When facebook started this feature it was so hard to tag friends because you need to tag them one by one and its a time consuming way of letting your friends know that they exist in a picture and now they have this face recognition feature that automatically detects a face when you upload an image.  Though its not that accurate but it helps.  Another way of doing this is by using an application that face.com developed.  The application is called PhotoTagger, the application collects photos from an album and automatically detects faces and you  can automatically tag all faces based on what their application has detected.  It&#8217;s an amazing tool which I find it useful especially when you are trying to tag your friends on a large pile of photos.  A screenshot of the application is found below and you can find the application by going to www.face.com and hit BIG go button and give it permission to start tagging your friends on an album.
</p>
<p align="center">
<a href="http://www.icpep.org/wp-content/uploads/2011/07/facerecognition.jpg"><img src="http://www.icpep.org/wp-content/uploads/2011/07/facerecognition-300x168.jpg" alt="face recognition" title="face recognition" width="300" height="168" class="aligncenter size-medium wp-image-1335" /></a></p>
<div id="seo_alrp_related"><h2>Posts Related to Facebook: Auto Tag Pictures</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/social-network-sites-organizer/" rel="bookmark">Social Network Sites Organizer</a></h3><p>Are you a great fan of joining social networking sites?  Do you like to socialize online? If you have lots of sites to socialize and ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/cellphone-tracker/" rel="bookmark">Cellphone Tracker</a></h3><p>About 4 or 5 months ago my Samsung Galaxy 5 was stolen when I was ridding on a jeepney going home. I did not notice ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/facebook-on-pidgin/" rel="bookmark">Facebook on Pidgin</a></h3><p>Pidgin is a free chat client that can handle different chat networks like yahoo, google talk, AIM, AOL and many more all at once.  But ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/facebook-farmville-cheat/" rel="bookmark">Facebook Farmville Cheat</a></h3><p>In the past few months I was into gaming online and one of the famous site today is facebook wherein I am playing games.  Facebook ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/disable-autorun/" rel="bookmark">Disable Autorun</a></h3><p>Operating system such as Microsoft Windows has the autorun enabled by default. When you try to connect external drives from your computer this usually prompts ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/facebook-auto-tag-pictures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtualbox4.0.10 Error</title>
		<link>http://www.icpep.org/virtualbox4-0-10-error/</link>
		<comments>http://www.icpep.org/virtualbox4-0-10-error/#comments</comments>
		<pubDate>Sun, 03 Jul 2011 00:46:11 +0000</pubDate>
		<dc:creator>paparts</dc:creator>
				<category><![CDATA[File Extension]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.icpep.org/?p=1319</guid>
		<description><![CDATA[When updating to the latest version of virtualbox which is version 4.0.10 errors will appear when try to startup your virtual machine. This happens when you want USB2.0 support for your virtual machine. To fix the error you need to download the VirtualBox 4.0.10 Oracle VM VirtualBox Extension Pack, the file has an extension of .vbox-extpack which is a VirtualBox extension package. The extension pack is usable to all platform, I used the extension on windows 7 ultimate version. The [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://www.icpep.org/wp-content/uploads/2011/07/virtualbox.png"><img class="aligncenter size-medium wp-image-1320" title="virtualbox4.0.10" src="http://www.icpep.org/wp-content/uploads/2011/07/virtualbox-300x300.png" alt="virtualbox4.0.10" width="300" height="300" /></a></p>
<p align="justify"> When updating to the latest version of virtualbox which is version 4.0.10 errors will appear when try to startup your virtual machine.  This happens when you want USB2.0 support for your virtual machine.  To fix the error you need to download the <a href="http://download.virtualbox.org/virtualbox/4.0.10/Oracle_VM_VirtualBox_Extension_Pack-4.0.10-72436.vbox-extpack" target="_blank">VirtualBox 4.0.10 Oracle VM VirtualBox Extension Pack</a>, the file has an extension of <em>.vbox-extpack</em> which is a VirtualBox extension package.  The extension pack is usable to all platform, I used the extension on windows 7 ultimate version.  The installation process is quite simple, just download the pack and double click it after the download, virtualbox manager will then guide you in the installation.  </p>
<div id="seo_alrp_related"><h2>Posts Related to Virtualbox4.0.10 Error</h2><ul><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/pdo-database-extensions-error/" rel="bookmark">PDO Database Extensions Error</a></h3><p>&nbsp; &nbsp; I installed Apache, MySQL and PHP on windows 7.  I tried to install drupal version 7.9 and went through an error as shown ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/show-hide-file-extension/" rel="bookmark">Show Hide File Extension</a></h3><p>What are file extension or file types? File types are like embedded signatures, telling the operating system that this type of file can be opened ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/php-curl/" rel="bookmark">PHP Curl</a></h3><p>If you are a web developer and having problems on Installing PHP Curl on Apache with PHP installed on Windows Operating System, below is my ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/file-extension-wps/" rel="bookmark">File Extension WPS</a></h3><p>File Extension WPS or files that has a ".wps" is not a virus(except if there is something embedded with it) but rather it is a ...</p></div></li><li><div class="seo_alrp_rl_content"><h3><a href="http://www.icpep.org/setting-up-a-memcached-server/" rel="bookmark">Setting Up a MemCached Server</a></h3><p>image from www.memcached.org Based on their official website memcached is defined as: Free & open source, high-performance, distributed memory object caching system, generic in nature, ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.icpep.org/virtualbox4-0-10-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

