<?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/" xmlns:series="http://organizeseries.com/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>DigiMantra</title>
	
	<link>http://www.digimantra.com</link>
	<description>Technology tips for all</description>
	<lastBuildDate>Sun, 17 Feb 2013 19:39:03 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/digimantra" /><feedburner:info uri="digimantra" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://www.digimantra.com/?pushpress=hub" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-nc-nd/2.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><item>
		<title>[WooCommerce] Add a product to cart on user’s visit</title>
		<link>http://feedproxy.google.com/~r/digimantra/~3/XO7eQoAanB8/</link>
		<comments>http://www.digimantra.com/tutorials/wordpress/woocommerce-add-a-product-to-cart-on-users-visit/#comments</comments>
		<pubDate>Sun, 17 Feb 2013 19:39:03 +0000</pubDate>
		<dc:creator>Sachin Khosla</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[WooCommerce]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[code snippet]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=5310</guid>
		<description><![CDATA[WooCommerce is very popular WordPress plugin which helps you convert your WordPress blog into an E-Commerce shop. We often do a lot of WordPress plugins and WooCommerce extensions at DigiMantra Labs and a special request from the client was to add a particular product to the cart as soon as user lands on the homepage. [...]<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href='http://www.digimantra.com/tutorials/wordpress-menus-add-login-logout-link/' rel='bookmark' title='WordPress 3.0 Menus &#8211; Add a login / logout link'>WordPress 3.0 Menus &#8211; Add a login / logout link</a></li>
<li><a href='http://www.digimantra.com/tutorials/wordpress/add-default-content-post-wordpress/' rel='bookmark' title='Add default content for a new post in WordPress'>Add default content for a new post in WordPress</a></li>
<li><a href='http://www.digimantra.com/tutorials/wordpress/wordpress-display-content-registered-users/' rel='bookmark' title='WordPress : Display content to registered users only'>WordPress : Display content to registered users only</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><a rel="nofollow" target="_blank" title="WooCommerce" href="http://woocommerce.com" target="_blank">WooCommerce</a> is very popular WordPress plugin which helps you convert your WordPress blog into an E-Commerce shop. We often do a lot of WordPress plugins and WooCommerce extensions at DigiMantra Labs and a special request from the client was to add a particular product to the cart as soon as user lands on the homepage.</p>
<p>I found the following code quite helpful, hope it helps you too as well. You have to paste this code in functions.php (located in your active theme directory) or you can also place this in a plugin form and you have to activate this plugin.</p>
<pre class="brush: php; gutter: true">// add item to cart on visit
add_action( &#039;init&#039;, &#039;add_product_to_cart&#039; );
function add_product_to_cart() {
    if ( ! is_admin() ) {
        global $woocommerce;
        $product_id = 64;
        $found = false;
//check if product already in cart
        if ( sizeof( $woocommerce-&gt;cart-&gt;get_cart() ) &gt; 0 ) {
            foreach ( $woocommerce-&gt;cart-&gt;get_cart() as $cart_item_key =&gt; $values ) {
                $_product = $values[&#039;data&#039;];
                if ( $_product-&gt;id == $product_id )
                    $found = true;
            }
// if product not found, add it
            if ( ! $found )
                $woocommerce-&gt;cart-&gt;add_to_cart( $product_id );
        } else {
// if no products in cart, add it
            $woocommerce-&gt;cart-&gt;add_to_cart( $product_id );
        }
    }
}</pre>
<p>Hope this code snippet helps you and saves some useful time!</p>
<p>Stay Digified!!<br />
Sachin Khosla</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href='http://www.digimantra.com/tutorials/wordpress-menus-add-login-logout-link/' rel='bookmark' title='WordPress 3.0 Menus &#8211; Add a login / logout link'>WordPress 3.0 Menus &#8211; Add a login / logout link</a></li>
<li><a href='http://www.digimantra.com/tutorials/wordpress/add-default-content-post-wordpress/' rel='bookmark' title='Add default content for a new post in WordPress'>Add default content for a new post in WordPress</a></li>
<li><a href='http://www.digimantra.com/tutorials/wordpress/wordpress-display-content-registered-users/' rel='bookmark' title='WordPress : Display content to registered users only'>WordPress : Display content to registered users only</a></li>
</ol></p>
</div>
<img src="http://feeds.feedburner.com/~r/digimantra/~4/XO7eQoAanB8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/tutorials/wordpress/woocommerce-add-a-product-to-cart-on-users-visit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.digimantra.com/tutorials/wordpress/woocommerce-add-a-product-to-cart-on-users-visit/</feedburner:origLink></item>
		<item>
		<title>[Linux] Delete all matching files current and sub directories</title>
		<link>http://feedproxy.google.com/~r/digimantra/~3/Xh1R2i6k5WQ/</link>
		<comments>http://www.digimantra.com/linux/delete-all-matching-files-current-and-sub-directories/#comments</comments>
		<pubDate>Sun, 17 Feb 2013 19:05:32 +0000</pubDate>
		<dc:creator>Sachin Khosla</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=5298</guid>
		<description><![CDATA[Today I am going to share a quick tip which will show you how you can delete certain matched files in current directory and it&#8217;s sub directories. We are going to use wild card to delete all .exe files in a folder &#38; subfolder. find . -name \*.exe -type f -delete #to delete all files [...]<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href='http://www.digimantra.com/linux/recommended-linux-partitioning-scheme/' rel='bookmark' title='Recommended Linux Partitioning Scheme'>Recommended Linux Partitioning Scheme</a></li>
<li><a href='http://www.digimantra.com/technology/mysql/difference-truncate-delete-mysql/' rel='bookmark' title='Difference between truncate and delete in mysql'>Difference between truncate and delete in mysql</a></li>
<li><a href='http://www.digimantra.com/microsoft/chm-compiled-files-opening-microsoft-vista-xp/' rel='bookmark' title='Chm (Compiled Help) files not opening in Microsoft Vista or XP'>Chm (Compiled Help) files not opening in Microsoft Vista or XP</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Today I am going to share a quick tip which will show you how you can delete certain matched files in current directory and it&#8217;s sub directories. We are going to use wild card to delete all .exe files in a folder &amp; subfolder.</p>
<blockquote><p>find . -name \*.exe -type f -delete #to delete all files which have .exe extension</p>
<p>find . -name \img_*.jpg -type f -delete #to delete all jpg images which start from img_</p></blockquote>
<p>That&#8217;s a simple way to delete all the files within sub-directories. It&#8217;s quite easy and is really helpful at times.</p>
<p>Stay Digified!!<br />
Sachin Khosla</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href='http://www.digimantra.com/linux/recommended-linux-partitioning-scheme/' rel='bookmark' title='Recommended Linux Partitioning Scheme'>Recommended Linux Partitioning Scheme</a></li>
<li><a href='http://www.digimantra.com/technology/mysql/difference-truncate-delete-mysql/' rel='bookmark' title='Difference between truncate and delete in mysql'>Difference between truncate and delete in mysql</a></li>
<li><a href='http://www.digimantra.com/microsoft/chm-compiled-files-opening-microsoft-vista-xp/' rel='bookmark' title='Chm (Compiled Help) files not opening in Microsoft Vista or XP'>Chm (Compiled Help) files not opening in Microsoft Vista or XP</a></li>
</ol></p>
</div>
<img src="http://feeds.feedburner.com/~r/digimantra/~4/Xh1R2i6k5WQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/linux/delete-all-matching-files-current-and-sub-directories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.digimantra.com/linux/delete-all-matching-files-current-and-sub-directories/</feedburner:origLink></item>
		<item>
		<title>Tata Indica Vista D90 Review</title>
		<link>http://feedproxy.google.com/~r/digimantra/~3/k0uRhqPc1cQ/</link>
		<comments>http://www.digimantra.com/reviews/indica-vista-d90-review/#comments</comments>
		<pubDate>Sun, 10 Feb 2013 18:32:40 +0000</pubDate>
		<dc:creator>Sachin Khosla</dc:creator>
				<category><![CDATA[reviews]]></category>
		<category><![CDATA[d90]]></category>
		<category><![CDATA[Indica]]></category>
		<category><![CDATA[Tata]]></category>
		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=5282</guid>
		<description><![CDATA[Tata has launched it&#8217;s new variant called Indica Vista D90 and with the help of blogadda I got to drive this car for 3 complete days. In this post I am going to share my experience with the car. First of all, I am not an &#8220;Auto blogger&#8221; so do not expect technical stuff like [...]<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href='http://www.digimantra.com/microsoft/enable-hibernation-in-windows-vista/' rel='bookmark' title='Enable hibernation in windows Vista'>Enable hibernation in windows Vista</a></li>
<li><a href='http://www.digimantra.com/industry-news/reviewdigimantra-6months/' rel='bookmark' title='[Review]Digimantra in its first 6months'>[Review]Digimantra in its first 6months</a></li>
<li><a href='http://www.digimantra.com/reviews/cashurdrive-car-earn/' rel='bookmark' title='CashurDrive : Let your car earn'>CashurDrive : Let your car earn</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-5291" alt="indica vista D90 300x225 Tata Indica Vista D90 Review" src="http://www.digimantra.com/blog/wp-content/uploads/2013/02/indica-vista-D90-300x225.jpg" width="300" height="225" title="Tata Indica Vista D90 Review" />Tata has launched it&#8217;s new variant called Indica Vista D90 and with the help of <a rel="nofollow" target="_blank" title="Blog Adda" href="http://www.blogadda.com/vistad90" target="_blank">blogadda</a> I got to drive this car for 3 complete days. In this post I am going to share my experience with the car.</p>
<p>First of all, I am not an &#8220;Auto blogger&#8221; so do not expect technical stuff like engine power, displacement etc. However, I have been driving a diesel car, Maruti Ritz, since last 3 years so can relate to that. As soon as I saw the new Vista D90 I noticed it&#8217;s new makeover. To me it looked more spacious, bigger and quite taller. And yes, the dashboard has got way better than previous variants of Vista. It has got integrated bluetooth connectivity which provides music streaming and calling facility from your bluetooth enabled handset. The call facility comes handy when you are driving in a traffic like Delhi, where you do not reach to a destination quickly and you cannot avoid taking calls. You can simply answer calls while driving and it works like a charm. I use a BlackBerry phone and have noticed issues with some car&#8217;s bluetooth integration, but with Vista D90 connecting my phone connected in few seconds.</p>
<p>Things which quickly got be in love with the car are it&#8217;s interiors, the dual color dashboard, integrated stereo and the ability to play, disc, music via usb / auxiliary and of course the radio. You can also adjust the height of driver&#8217;s seat and the best part is that the intelligent information system of this car tells you the current fuel average and the overall average your car is having. Also, it shows &#8220;Kms remaining&#8221; before you need to fill your fuel tank &#8211; quite impressive, no? Ah did I mention, the lumbar support lever which gives little cushion to the lower back, perfect for long / tiring driving.</p>
<p>In terms of security, this car comes with Dual Airbags, and the Anti-lock Braking System (ABS). But overall, the handling of the car is pretty AWESOME and that&#8217;s one of the reasons I might want to ditch my own car, Maruti Ritz. I drove this car on Agra Expressway and I can definitely say that this car is awesome for driving on highway. It is more stable, good at handling and has got really good suspension. Again, I am trying to compare handling, suspension with my own car and have found Vista D90 better than it. Also the new 90PS engine adds to more power of the car while driving. There were times when I get stuck in Delhi traffic and this car also impressed while driving in city traffic.</p>
<p>I also drove the car in rain and really liked the intelligent wiper feature. When the front wipers are moving you can reverse the direction of rear wiper. Of course the defogger comes handy for the rear glass.</p>
<p>From outside the car looks HUGE. I am not much impressed with the dual colors for outside body, but then it&#8217;s matter of one&#8217;s choice. It seems more taller,wider and heavier than Maruti Ritz.</p>
<p>But of course there are few things which bugged me or in other words which I did not like -</p>
<p>The pickup of the car is little sluggish until you move to the 3rd gear. That&#8217;s really strange and felt quite different, since this is totally opposite to Maruti Ritz car. The later has got a great pickup even on 1st gear like a Petrol car. This is still a BIG question in my mind for which I could not find an answer.</p>
<p>Also, there isn&#8217;t too much door storage available so I kinda missed storing water bottles on proper place or the cold drink glass which comes handy when you buy stuff to eat via drive thru.</p>
<p>Overall the car is very good in this section and is definitely a must buy if you need stability, features, comfort and feeling of big car. And I must say, this car is different in good terms than previous versions of Tata Vista. If you are planning to buy a Diesel car sooner, would advise you to take test drive of Vista D90 once and I am sure you will impressed.</p>
<p>Stay Digified!!<br />
Sachin Khosla</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href='http://www.digimantra.com/microsoft/enable-hibernation-in-windows-vista/' rel='bookmark' title='Enable hibernation in windows Vista'>Enable hibernation in windows Vista</a></li>
<li><a href='http://www.digimantra.com/industry-news/reviewdigimantra-6months/' rel='bookmark' title='[Review]Digimantra in its first 6months'>[Review]Digimantra in its first 6months</a></li>
<li><a href='http://www.digimantra.com/reviews/cashurdrive-car-earn/' rel='bookmark' title='CashurDrive : Let your car earn'>CashurDrive : Let your car earn</a></li>
</ol></p>
</div>
<img src="http://feeds.feedburner.com/~r/digimantra/~4/k0uRhqPc1cQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/reviews/indica-vista-d90-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.digimantra.com/reviews/indica-vista-d90-review/</feedburner:origLink></item>
		<item>
		<title>[OS X] How to Create a Tar GZip File from the Command Line</title>
		<link>http://feedproxy.google.com/~r/digimantra/~3/0SCIlK44GYc/</link>
		<comments>http://www.digimantra.com/howto/create-tar-gzip-file-command-line/#comments</comments>
		<pubDate>Thu, 27 Dec 2012 10:24:24 +0000</pubDate>
		<dc:creator>Sachin Khosla</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[compressed file]]></category>
		<category><![CDATA[gunzip]]></category>
		<category><![CDATA[MAC]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[tar]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=5252</guid>
		<description><![CDATA[Everyone uses built-in compression functionality of Mac OS X with a simple right click. This is useful when you need to compress certain files and send them over email or store them using time machine. However, there are times when you need some advanced options during compression. It&#8217;s mostly required when you need to take [...]<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href='http://www.digimantra.com/tutorials/wordpress/create-new-theme-file-without-ftp/' rel='bookmark' title='Create new theme file without FTP using WordPress admin'>Create new theme file without FTP using WordPress admin</a></li>
<li><a href='http://www.digimantra.com/linux/spell-check-documents-command-line-linux/' rel='bookmark' title='Spell check your documents from Command line in Linux'>Spell check your documents from Command line in Linux</a></li>
<li><a href='http://www.digimantra.com/technology/php/check-installed-php-extensions-command-line/' rel='bookmark' title='Check installed PHP extensions via command line'>Check installed PHP extensions via command line</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.digimantra.com/?attachment_id=5270" rel="attachment wp-att-5270"><img class="size-full wp-image-5270 alignright" alt="terminal icon [OS X] How to Create a Tar GZip File from the Command Line" src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/terminal_icon.png" width="138" height="138" title="[OS X] How to Create a Tar GZip File from the Command Line" /></a>Everyone uses built-in compression functionality of Mac OS X with a simple right click. This is useful when you need to compress certain files and send them over email or store them using time machine. However, there are times when you need some advanced options during compression. It&#8217;s mostly required when you need to take backup out of Time Machine or you want to transfer data to some other backup server. We are going to discuss one such compression command called &#8220;tar&#8221;. The command to create a tar / gzip file from the command line is exactly same as we use in Unix.</p>
<p>Open the Terminal window  from /Applications/Utilities/Terminal and follow the instructions below -</p>
<h3>How to Create a Tar GZip File from the Command Line</h3>
<blockquote><p>tar -cvzf compressedfile.tar.gz foldername</p></blockquote>
<p>The command above looks quite easy, but the flags <em><strong>-cvzf</strong></em>have all the secret inside. Let&#8217;s understand these one by one -</p>
<ul>
<li>-c  means create an archive</li>
<li>-v  means verbose mode, if specified you will see the list of files running through your screen.</li>
<li>-z means gzip compression, if specified it will filter your zipped file i.e. tar files via gzip compression.</li>
<li>-f means filename</li>
</ul>
<p>In the above syntax <strong>z </strong>is not really required, you can create an archive without having to specify gzip compression. But it&#8217;s very useful, as it&#8217;s responsible for actually compressing the size of the resultant file.These two commands can also be used separately.</p>
<h3>How to unzip or untar tar.gz files</h3>
<p>Now it&#8217;s time to see how can we unzip or extract theme compressed files. You can always use the <a rel="nofollow" target="_blank" title="UnArchiver for Mac" href="https://itunes.apple.com/in/app/the-unarchiver/id425424353?mt=12" target="_blank">unarchiver app in Mac</a>, but let&#8217;s see how it can be done from command line.</p>
<blockquote><p>gunzip compressedfile.tar.gz</p>
<p>and then..</p>
<p>tar -xvf compressedfile.tar</p></blockquote>
<p>We can combine these two commands similar to what we do in Unix. And the above two commands will look like -</p>
<blockquote><p>gunzip compressedfile.tar.gz | tar -xvf compressedfile.tar</p></blockquote>
<p>Hope that helps!</p>
<p>&nbsp;</p>
<p>Stay Digified!!</p>
<p>Sachin Khosla</p>
<p>&nbsp;</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href='http://www.digimantra.com/tutorials/wordpress/create-new-theme-file-without-ftp/' rel='bookmark' title='Create new theme file without FTP using WordPress admin'>Create new theme file without FTP using WordPress admin</a></li>
<li><a href='http://www.digimantra.com/linux/spell-check-documents-command-line-linux/' rel='bookmark' title='Spell check your documents from Command line in Linux'>Spell check your documents from Command line in Linux</a></li>
<li><a href='http://www.digimantra.com/technology/php/check-installed-php-extensions-command-line/' rel='bookmark' title='Check installed PHP extensions via command line'>Check installed PHP extensions via command line</a></li>
</ol></p>
</div>
<img src="http://feeds.feedburner.com/~r/digimantra/~4/0SCIlK44GYc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/howto/create-tar-gzip-file-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.digimantra.com/howto/create-tar-gzip-file-command-line/</feedburner:origLink></item>
		<item>
		<title>[How To] Get Indian Languages Support For BlackBerry OS7</title>
		<link>http://feedproxy.google.com/~r/digimantra/~3/NyM506MCitw/</link>
		<comments>http://www.digimantra.com/howto/indian-languages-support-blackberry-os7/#comments</comments>
		<pubDate>Wed, 26 Dec 2012 15:37:53 +0000</pubDate>
		<dc:creator>Alap Naik Desai</dc:creator>
				<category><![CDATA[BlackBerry]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[Hindi]]></category>
		<category><![CDATA[Indian Languages]]></category>
		<category><![CDATA[Marathi]]></category>
		<category><![CDATA[OS7]]></category>
		<category><![CDATA[Regional Languages]]></category>
		<category><![CDATA[Tamil]]></category>
		<category><![CDATA[Telugu]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=5185</guid>
		<description><![CDATA[In the earlier article we witnessed how to enable reading text in Indian languages on your Blackberry sporting OS6. However, this OS &#38; the devices are fast being replaced by the newer OS simply named OS7. Though many have received even 7.1, the differences are minor. While it was a bit difficult to infuse BB [...]<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href='http://www.digimantra.com/howto/how-to-get-indian-languages-support-for-blackberry-os6/' rel='bookmark' title='[How To] Get Indian Languages Support For BlackBerry OS6'>[How To] Get Indian Languages Support For BlackBerry OS6</a></li>
<li><a href='http://www.digimantra.com/howto/update-blackberry-bold-9700-os6/' rel='bookmark' title='[How To] Update BlackBerry Bold 9700 to OS6'>[How To] Update BlackBerry Bold 9700 to OS6</a></li>
<li><a href='http://www.digimantra.com/howto/bought-blackberry-read/' rel='bookmark' title='Bought a BlackBerry &#8230; Read This!'>Bought a BlackBerry &#8230; Read This!</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>In the earlier article we witnessed how to enable reading text in Indian languages on your Blackberry sporting OS6. However, this OS &amp; the devices are fast being replaced by the newer OS simply named OS7. Though many have received even 7.1, the differences are minor.</p>
<p>While it was a bit difficult to infuse BB OS6 with Regional languages, it is comparatively simpler to achieve the same feat on newer phones featuring BB OS7 &amp; above.</p>
<p>BlackBerry OS7.1 has many under-the-hood improvements. However, cosmetically, it is very similar to OS6. Hence, many older devices like Bold 9700 &amp; Bold 2 do not support OS7. The simple reason being, these were designed when OS5 was prevalent &amp; had relatively lower-end processors &amp; curtailed RAM. Through dedicated efforts of the developer community, the company managed to extend the lives of these devices by offering OS6.</p>
<p>Interestingly OS6 runs a bit sluggish. However, the famous Crackberry Forum has many ‘Hybrid’ ROMS that manage to speed up the devices through clever juggling of internal system files. This article is not to offer ways to install a Hybrid OS (maybe more on that at a later stage!), but to extend the functionality of devices running OS7. Hence let’s get on with it.</p>
<p>Blackberry users must be familiar with installing Apps via the <strong>Over The Air</strong> (OTA) route. If not, it’s a fairly simple method. There’s usually a .JAD file involved. This JAD file is basically a compilation file with instructions about the .COD files &amp; their locations within the device.</p>
<p>Since the JAD file is bound to a particular folder, it is better to offer a location on the World Wide Web.</p>
<p>Users who want to install regional language support must have some kind of internet access on the device. WiFi is preferred.</p>
<p>Once you confirm your device is running OS7 &amp; above (<strong>Options-&gt; Device-&gt; About Device versions</strong>), fire-up internet browser. Note: Do not use third-party internet browsers like Opera.</p>
<p><a href="http://www.digimantra.com/blog/wp-content/uploads/2012/12/IMG_20121204_165518.jpg"><img class="size-medium wp-image-5188 aligncenter" title="IMG_20121204_165518" alt="IMG 20121204 165518 300x226 [How To] Get Indian Languages Support For BlackBerry OS7" src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/IMG_20121204_165518-300x226.jpg" width="300" height="226" /></a></p>
<p>Click on this <a rel="nofollow" target="_blank" href="http://goo.gl/Yne8P">LINK</a>. Your Browser will be directed to install as below:</p>
<p><a href="http://www.digimantra.com/blog/wp-content/uploads/2012/12/OS7_Install_Indian_Language.jpg"><img class="size-medium wp-image-5187 aligncenter" title="OS7_Install_Indian_Language" alt="OS7 Install Indian Language 300x224 [How To] Get Indian Languages Support For BlackBerry OS7" src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/OS7_Install_Indian_Language-300x224.jpg" width="300" height="224" /></a></p>
<p>Click on Download &amp; the installation will begin. Click OK at any prompt that comes up to complete the installation. At the end, the phone may seek permission to reboot. Complete the restart procedure or else do a Battery-Pull (BB Owners must be familiar with this term!)</p>
<p>Just like earlier article you can confirm your device has support for Indian languages by visiting the regional sub-domains of Google as below:</p>
<p><a href="http://www.digimantra.com/blog/wp-content/uploads/2012/12/Google_Regional1.png"><img class="wp-image-5186 aligncenter" title="Google_Regional" alt="Google Regional1 [How To] Get Indian Languages Support For BlackBerry OS7" src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/Google_Regional1.png" width="600" height="351" /></a></p>
<p>&nbsp;</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href='http://www.digimantra.com/howto/how-to-get-indian-languages-support-for-blackberry-os6/' rel='bookmark' title='[How To] Get Indian Languages Support For BlackBerry OS6'>[How To] Get Indian Languages Support For BlackBerry OS6</a></li>
<li><a href='http://www.digimantra.com/howto/update-blackberry-bold-9700-os6/' rel='bookmark' title='[How To] Update BlackBerry Bold 9700 to OS6'>[How To] Update BlackBerry Bold 9700 to OS6</a></li>
<li><a href='http://www.digimantra.com/howto/bought-blackberry-read/' rel='bookmark' title='Bought a BlackBerry &#8230; Read This!'>Bought a BlackBerry &#8230; Read This!</a></li>
</ol></p>
</div>
<img src="http://feeds.feedburner.com/~r/digimantra/~4/NyM506MCitw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/howto/indian-languages-support-blackberry-os7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.digimantra.com/howto/indian-languages-support-blackberry-os7/</feedburner:origLink></item>
		<item>
		<title>[How To] Correct Some Sites Work, Others Don’t On BSNL ADSL</title>
		<link>http://feedproxy.google.com/~r/digimantra/~3/8J70x5CiKnY/</link>
		<comments>http://www.digimantra.com/microsoft/correct-sites-work-dont-bsnl-adsl/#comments</comments>
		<pubDate>Sun, 23 Dec 2012 17:47:55 +0000</pubDate>
		<dc:creator>Alap Naik Desai</dc:creator>
				<category><![CDATA[Guide]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[toubleshoot]]></category>
		<category><![CDATA[windows xp]]></category>
		<category><![CDATA[windows7]]></category>
		<category><![CDATA[ADSL How To]]></category>
		<category><![CDATA[BSNL]]></category>
		<category><![CDATA[Connectivity Issues]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=5210</guid>
		<description><![CDATA[BSNL has a Pan-India Presence. While it is forced by the central government to operate in remote locations, Indians are getting to enjoy the benefits of Internet thanks to the company. Well this article is not about extolling the virtues of the Internet Service Provider, but to remedy some of the strange problems that the [...]<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href='http://www.digimantra.com/linux/show-line-numbers-vi-vim-editor/' rel='bookmark' title='Show line numbers in vi or vim editor'>Show line numbers in vi or vim editor</a></li>
<li><a href='http://www.digimantra.com/technology/using-htaccess-for-day-to-day-work-part-2/' rel='bookmark' title='Using .htaccess for day to day work | Part 2'>Using .htaccess for day to day work | Part 2</a></li>
<li><a href='http://www.digimantra.com/linux/create-rsa-dsa-keys-ssh/' rel='bookmark' title='Create RSA and DSA keys for SSH'>Create RSA and DSA keys for SSH</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>BSNL has a Pan-India Presence. While it is forced by the central government to operate in remote locations, Indians are getting to enjoy the benefits of Internet thanks to the company. Well this article is not about extolling the virtues of the Internet Service Provider, but to remedy some of the strange problems that the service comes with.</p>
<p>Most of the Internet connections that BSNL provides come through fixed-line internet telephones. Though we can theoretically call it a Digital Subscriber Line (DSL), it is in fact a variation in the form of ADSL (Asynchronous Digital Subscriber Line). Interestingly, there are multiple iterations of ADSL like 1, 1.1, 2, 2+ etc. Though, the common user is usually not made aware of these.</p>
<p>Many of the ADSL users must have faced a weird issue of few sites not working or loading, while others are working at blazing speeds. For me popular sites like eBay, MSN &amp; many others refused to work. In case they loaded, they took ridiculously long time to open up &amp; that too devoid of formatting, with weird placement of tabs, forms etc. Since the ‘internet’ worked, I could not complain too. While many would blame the line or the modem, it’s not the case, albeit, the modem does tend to heat up a lot.</p>
<p>A little digging up offered a plausible solution.</p>
<p>The issue lies with incorrect setting of the MTU Value of the Modem. MTU or Maximum transmission Unit is the Maximum Size of each data packet which travels across the Internet. Larger sized MTU ensure bandwidth efficiency but they tend to choke interfaces. For the sake of understanding, it’s like pushing a large ball through a smaller pipe-line. Though a lot of material may pass at one time, the size of the ball will choke the pipeline. Hence it becomes necessary to break the large ball into smaller balls &amp; then the pipeline will flow without a hindrance.</p>
<p>Now how to decide the most optimum MTU Size?</p>
<p>Since this guide is meant to help all BSNL users, I will mention the steps to identify the optimum MTU size for each user:</p>
<p>Start Command Prompt (Start -&gt; Run -&gt; Cmd)</p>
<p>At the DOS window that opens enter the following command AS IT IS. Do not alter:</p>
<p><b>ping www.Digimantra.com -f -l 1492</b></p>
<p>If you have been facing problems with your net you should see an output as below:</p>
<p><a href="http://www.digimantra.com/microsoft/correct-sites-work-dont-bsnl-adsl/attachment/mtu-test1492/" rel="attachment wp-att-5211"><img class="alignnone  wp-image-5211" alt="mtu test1492 300x82 [How To] Correct Some Sites Work, Others Don’t On BSNL ADSL " src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/mtu-test1492-300x82.gif" width="400" height="140" title="[How To] Correct Some Sites Work, Others Don’t On BSNL ADSL " /></a></p>
<p>The wordings to observe are: <b>Packet needs to be fragmented but DF Set</b>. This means the packet or MTU is too large to be sent in one shot.</p>
<p>Lower the size the packet in increments of (e.g. 1482, 1472, 1462, 1440, 1400) until you have a packet size that does not fragment &amp; the command is able to ping successfully as below:</p>
<p><a href="http://www.digimantra.com/microsoft/correct-sites-work-dont-bsnl-adsl/attachment/mtu-test1400/" rel="attachment wp-att-5213"><img alt="mtu test1400 300x82 [How To] Correct Some Sites Work, Others Don’t On BSNL ADSL " src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/mtu-test1400-300x82.gif" width="400" height="140" title="[How To] Correct Some Sites Work, Others Don’t On BSNL ADSL " /></a></p>
<p>Now remember, many will have different values. For some it may work at 1400, for others at 1432 &amp; so on. Once you have the value, let’s say 14XX Add 28 to that number (IP/ICMP headers) to get the optimal MTU setting. For example, if the largest packet size from ping tests is 1462, add 28 to 1462 to get a total of 1490 which is the optimal MTU setting and can be put in your router&#8217;s settings.</p>
<p>Let’s say the ideal value arrived through the above exercise is 1462, hence the number to be entered is 1490 as described below.</p>
<p>Open up Command Prompt if you have closed it &amp; enter the following command:</p>
<p><i>netsh interface ipv4 set subinterface &#8220;Local Area Connection&#8221; mtu=14</i><i>90</i><i> store=persistent</i></p>
<p>Note: The number is dependent on what you get in the test. In case you have received 1432, then the number to be entered in the string above will be 1432+28 = 1460. Though there is a provision of entering this MTU number via the Web-Interface of the ADSL Modem, it doesn’t seem to work.</p>
<p>To verify that the number has been set correctly, enter the string below in the Command Prompt: <em>netsh interface ipv4 show subinterfaces</em></p>
<p><a href="http://www.digimantra.com/microsoft/correct-sites-work-dont-bsnl-adsl/attachment/mtu-test/" rel="attachment wp-att-5212"><img alt="mtu test 300x68 [How To] Correct Some Sites Work, Others Don’t On BSNL ADSL " src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/mtu-test-300x68.jpg" width="400" height="140" title="[How To] Correct Some Sites Work, Others Don’t On BSNL ADSL " /></a></p>
<p>That’s it. All the sites should now work on your BSNL ADSL connection.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href='http://www.digimantra.com/linux/show-line-numbers-vi-vim-editor/' rel='bookmark' title='Show line numbers in vi or vim editor'>Show line numbers in vi or vim editor</a></li>
<li><a href='http://www.digimantra.com/technology/using-htaccess-for-day-to-day-work-part-2/' rel='bookmark' title='Using .htaccess for day to day work | Part 2'>Using .htaccess for day to day work | Part 2</a></li>
<li><a href='http://www.digimantra.com/linux/create-rsa-dsa-keys-ssh/' rel='bookmark' title='Create RSA and DSA keys for SSH'>Create RSA and DSA keys for SSH</a></li>
</ol></p>
</div>
<img src="http://feeds.feedburner.com/~r/digimantra/~4/8J70x5CiKnY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/microsoft/correct-sites-work-dont-bsnl-adsl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.digimantra.com/microsoft/correct-sites-work-dont-bsnl-adsl/</feedburner:origLink></item>
		<item>
		<title>[How To] Use PC Suite For Android Phones For Offline Data Backup [Mediatek Processor]</title>
		<link>http://feedproxy.google.com/~r/digimantra/~3/-_bmjNMrVrU/</link>
		<comments>http://www.digimantra.com/tutorials/pc-suite-android-phones-offline-data-backup-mediatek-processor/#comments</comments>
		<pubDate>Sun, 23 Dec 2012 17:37:39 +0000</pubDate>
		<dc:creator>Alap Naik Desai</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[Mediatek SOC]]></category>
		<category><![CDATA[Offline Backup]]></category>
		<category><![CDATA[pc suite]]></category>
		<category><![CDATA[smartphone]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=5223</guid>
		<description><![CDATA[Sure Google offers automatic sync option to backup all your contacts, messages, etc. But people still feel the necessity of an offline option. Nokia has its PC / Ovi Suite, Apple has iTunes even Blackberry has its own BlackBerry Desktop manager.I have always felt the need to have a PC Suite for Android phones. Interestingly, [...]<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href='http://www.digimantra.com/howto/boot-android-phone-in-recovery-mode/' rel='bookmark' title='Boot Android phone in recovery mode'>Boot Android phone in recovery mode</a></li>
<li><a href='http://www.digimantra.com/howto/install-android-apps-apk-offline/' rel='bookmark' title='Install Android Apps .APK Offline!!'>Install Android Apps .APK Offline!!</a></li>
<li><a href='http://www.digimantra.com/howto/disable-android-market-update-notifications/' rel='bookmark' title='How to disable Android Market update notifications'>How to disable Android Market update notifications</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Sure Google offers automatic sync option to backup all your contacts, messages, etc. But people still feel the necessity of an offline option. Nokia has its PC / Ovi Suite, Apple has iTunes even Blackberry has its own BlackBerry Desktop manager.I have always felt the need to have a <em><strong>PC Suite for Android phones</strong></em>.</p>
<p>Interestingly, Google doesn’t make a ‘One Application Fits All’ option for its Android Mobile Operating System. A little digging will reveal that there is no such thing as Official Android PC Suite From Google.</p>
<p>Hence when I had to backup data from Micromax A110, I was stumped for an offline option. Sure I could simply tick the ‘sync’ option &amp; be done with it. But that would mean all my contacts, messages, application installs, everything would be stored in the clouds, away from me. Turns out, though Google has left us high &amp; dry for want of an offline PC Suite to backup our data, it’s up to the Chipset makers to come-up with a solution.</p>
<p>One of the most leading chipset makers apart from Samsung is Mediatek. The company makes System On a Chip (SOC) processors that drive many of the affordable smartphones. Makers like Spice, G’Five, Micromax have most of their Android based smartphones running on some variant of Mediatek Processor. Rule of Thumb: If your smartphone is big, yet affordable, chances are you have a Mediatek processor running the show underneath that Capacitive screen.</p>
<p>So here I present a PC Suite For Mediatek processor based Android Smartphones. Known simply as MTK Android Suite, this PC Suite will work on ALL Android based Smartphones having Mediatek Processors.</p>
<p>How To Use It?</p>
<p>Download the PC Suite From <a rel="nofollow" target="_blank" href="http://www.2shared.com/complete/SZp45x19/PCSyncSW_Cynus_Smartphone.html" target="_blank">THIS LINK</a>. Extract:</p>
<p><a href="http://www.digimantra.com/tutorials/pc-suite-android-phones-offline-data-backup-mediatek-processor/attachment/extracted_program/" rel="attachment wp-att-5226"><img class="alignnone  wp-image-5226" alt="Extracted Program 300x225 [How To] Use PC Suite For Android Phones For Offline Data Backup [Mediatek Processor]" src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/Extracted_Program-300x225.jpg" width="400" height="275" title="[How To] Use PC Suite For Android Phones For Offline Data Backup [Mediatek Processor]" /></a></p>
<p>To Use the PC, ‘USB Debugging’ Needs to be Activated. If not familiar with the Option, head to <b>Settings-&gt; Developer Options-&gt; USB Debugging</b>. Or In some cases <b>Settings -&gt;Applications -&gt; Development -&gt; USB Debugging</b>. Hit OK at the prompt.</p>
<p>Once USB Debugging is enabled, Double-Click</p>
<p><a href="http://www.digimantra.com/tutorials/pc-suite-android-phones-offline-data-backup-mediatek-processor/attachment/program_icon/" rel="attachment wp-att-5225"><img alt="Program Icon [How To] Use PC Suite For Android Phones For Offline Data Backup [Mediatek Processor]" src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/Program_Icon.jpg" width="107" height="125" title="[How To] Use PC Suite For Android Phones For Offline Data Backup [Mediatek Processor]" /></a></p>
<p>MTKAndroidSuite.exe</p>
<p>A Splash Screen will greet you:</p>
<p><a href="http://www.digimantra.com/tutorials/pc-suite-android-phones-offline-data-backup-mediatek-processor/attachment/splash_screen/" rel="attachment wp-att-5227"><img alt="Splash Screen 300x225 [How To] Use PC Suite For Android Phones For Offline Data Backup [Mediatek Processor]" src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/Splash_Screen-300x225.jpg" width="400" height="275" title="[How To] Use PC Suite For Android Phones For Offline Data Backup [Mediatek Processor]" /></a></p>
<p>A Startup screen will thereafter come up. At this juncture, connect your Android Smartphone &amp; Click on ‘Refresh’:</p>
<p><a href="http://www.digimantra.com/tutorials/pc-suite-android-phones-offline-data-backup-mediatek-processor/attachment/starup-screen/" rel="attachment wp-att-5228"><img alt="Starup Screen 300x226 [How To] Use PC Suite For Android Phones For Offline Data Backup [Mediatek Processor]" src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/Starup-Screen-300x226.jpg" width="400" height="275" title="[How To] Use PC Suite For Android Phones For Offline Data Backup [Mediatek Processor]" /></a></p>
<p>The Program should correctly identify the Phone &amp; Offer a Selection Screen as below:</p>
<p><a href="http://www.digimantra.com/tutorials/pc-suite-android-phones-offline-data-backup-mediatek-processor/attachment/connection_screen/" rel="attachment wp-att-5229"><img alt="Connection Screen 300x225 [How To] Use PC Suite For Android Phones For Offline Data Backup [Mediatek Processor]" src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/Connection_Screen-300x225.jpg" width="400" height="275" title="[How To] Use PC Suite For Android Phones For Offline Data Backup [Mediatek Processor]" /></a></p>
<p>Select your Phone &amp; Click ‘Connect’.</p>
<p><a href="http://www.digimantra.com/tutorials/pc-suite-android-phones-offline-data-backup-mediatek-processor/attachment/connection_screen_2/" rel="attachment wp-att-5230"><img alt="Connection Screen 2 300x226 [How To] Use PC Suite For Android Phones For Offline Data Backup [Mediatek Processor]" src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/Connection_Screen_2-300x226.jpg" width="400" height="275" title="[How To] Use PC Suite For Android Phones For Offline Data Backup [Mediatek Processor]" /></a></p>
<p>Once connected successfully, the program will offer multiple options to view, edit, save, delete SMSes, Apps, Phone Records etc.</p>
<p><a href="http://www.digimantra.com/tutorials/pc-suite-android-phones-offline-data-backup-mediatek-processor/attachment/connection_screen_3/" rel="attachment wp-att-5231"><img alt="Connection Screen 3 300x227 [How To] Use PC Suite For Android Phones For Offline Data Backup [Mediatek Processor]" src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/Connection_Screen_3-300x227.jpg" width="400" height="275" title="[How To] Use PC Suite For Android Phones For Offline Data Backup [Mediatek Processor]" /></a></p>
<p>Some Screen-shots of the app in action:</p>
<p><a href="http://www.digimantra.com/tutorials/pc-suite-android-phones-offline-data-backup-mediatek-processor/attachment/connection_screen_5/" rel="attachment wp-att-5224"><img alt="Connection Screen 5 300x227 [How To] Use PC Suite For Android Phones For Offline Data Backup [Mediatek Processor]" src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/Connection_Screen_5-300x227.jpg" width="400" height="275" title="[How To] Use PC Suite For Android Phones For Offline Data Backup [Mediatek Processor]" /></a></p>
<p>One of the interesting features besides SMS, Phone Record management is the ability to Uninstall non-system applications. Though you can do this very easily on the phone itself, it’s good to have another option too. To Uninstall select the ‘Downloaded’ Tab on the left side &amp; you will be presented with option to remove applications.</p>
<p>The Android OS is built very imaginatively &amp; can work well even without a PC Suite. However, having one’s data stored locally offers some peace of mind. Besides, the application offers to save contacts in CSV format which other phone manufacturers like Nokia, BlackBerry can read too! This opens up a new avenue to transfer contacts between different Phone OSes.</p>
<p>Do let us know your experience of using this application for your Mediatek based Android Smartphones.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href='http://www.digimantra.com/howto/boot-android-phone-in-recovery-mode/' rel='bookmark' title='Boot Android phone in recovery mode'>Boot Android phone in recovery mode</a></li>
<li><a href='http://www.digimantra.com/howto/install-android-apps-apk-offline/' rel='bookmark' title='Install Android Apps .APK Offline!!'>Install Android Apps .APK Offline!!</a></li>
<li><a href='http://www.digimantra.com/howto/disable-android-market-update-notifications/' rel='bookmark' title='How to disable Android Market update notifications'>How to disable Android Market update notifications</a></li>
</ol></p>
</div>
<img src="http://feeds.feedburner.com/~r/digimantra/~4/-_bmjNMrVrU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/tutorials/pc-suite-android-phones-offline-data-backup-mediatek-processor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.digimantra.com/tutorials/pc-suite-android-phones-offline-data-backup-mediatek-processor/</feedburner:origLink></item>
		<item>
		<title>Sky is the limit with CDW Cloud Collaboration</title>
		<link>http://feedproxy.google.com/~r/digimantra/~3/v6Y0vHGw_mM/</link>
		<comments>http://www.digimantra.com/uncategorized/sky-is-the-limit-with-cdw-cloud-collaboration/#comments</comments>
		<pubDate>Fri, 21 Dec 2012 14:00:52 +0000</pubDate>
		<dc:creator>Sachin Khosla</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=5234</guid>
		<description><![CDATA[CDW has come up with a new solution offering termed CDW Cloud Collaboration — players in the enterprise world are increasingly turning to the cloud to help customers achieve their objectives. One such firm is CDW, which This new offering complements its Unified Communications and collaboration capabilities.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href='http://www.digimantra.com/google/gladinet-cloud-desktop-google-docs-apps/' rel='bookmark' title='Gladinet Cloud Desktop for Google Docs &amp; apps'>Gladinet Cloud Desktop for Google Docs &#038; apps</a></li>
<li><a href='http://www.digimantra.com/technology/open-source-and-the-changing-trends-in-technology/' rel='bookmark' title='Open source and the changing trends in technology'>Open source and the changing trends in technology</a></li>
<li><a href='http://www.digimantra.com/news/nokia-upbeat-nfc-gaming-front/' rel='bookmark' title='Nokia Upbeat about NFC.. Wants in on the Gaming front'>Nokia Upbeat about NFC.. Wants in on the Gaming front</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>
	CDW has come up with a new solution offering termed <a rel="nofollow" target="_blank" href="http://app.socialspark.com/clicks?lid=24895&amp;oid=8967181" rel="nofollow">CDW Cloud Collaboration</a> &mdash; players in the enterprise world are increasingly turning to the cloud to help customers achieve their objectives. One such firm is CDW, which This new offering complements its Unified Communications and collaboration capabilities.<br />
	&nbsp;<br />
	It provides access anywhere, any time, on any device. Delivered on a virtualized architecture, it enables you to support collaboration services without compromising security, flexibility and management or application functionality&mdash;all while freeing up your IT staff to work on other initiatives. We get it. And with access to industry-leading technology like Cisco Hosted Collaboration Solutions, we have what you need to transition to a cloud-based solution.<br />
	&nbsp;<br />
	It is powered by the Cisco Hosted Collaboration Solution (HCS) and encompasses a variety of communication tools and technologies, including voice and voicemail, mobility, video conferencing, contact center services, instant messaging and presence. The product uses Unified Communication tools from Cisco systems, and mates them to CDW&#39;s managed services to deliver a seamless experience that doesn&#39;t suffer from many of the regular drawbacks to a traditional UC rollout. For instance, the fact that CDW hosts this service at their 485,000-square-foot Tier IV facility means that if should you experience any unexpected usage spike in your services, they&#39;ll be more than able to handle to surge.&nbsp; Matter of fact, CDW boats of &quot;four nines of uptime&quot;, which means they&#39;re up 99.99% of the time.<br />
	&nbsp;<br />
	CDW is a certified Cisco Partner holding the Cloud Builder, Master Unified Communications Specialized, Master Security, Master Managed Services and Master Video Specialized certifications between others, with more than 4,000 Unified Communications deployments in ten years. Furthermore, it now boasts of its own Tier III-IV facility to host its service, which is spread over a 485,000 square-foot area. The company claims that this data canter runs 8.2 megawatts of power to carry out state-of-the-art virtualization, storage and optimization facilities.<br />
	&nbsp;<br />
	Turning to the cloud has opened up unique challenges in the security realm, and providers need to take that aspect very seriously. A key challenge for CDW is to address these concerns to prevent dangerous compromises. The company has set its focus on virtualized architecture with the aim of providing collaboration services with adequate security and flexibility. Perhaps among the top reassurances for customers is the presence of 50 Cisco Certified Internetwork Experts on board at CDW to look after cloud-based implementations &mdash; what can be more exciting than having technology driven by the finest brains around!</p>
<p>	Throughout the above information CDW has experts that span throughout a range of IT solutions. No matter your business size or technology needs CDW has an expert and solution for you! You can read more about CDW right from the experts on <a rel="nofollow" target="_blank" href="http://app.socialspark.com/clicks?lid=24897&amp;oid=8967181" rel="nofollow">CDW&rsquo;s Solutions blog</a>.</p>
<p>
	Learn more about CDW&#39;s efforts to help you conduct your business with cloud technologies in perspective through this video:</p>
<p>
	<span class="placeholder"><iframe width="560" height="315" src="http://www.youtube.com/embed/Vbyp_ze6ATY?list=PLAC3E94EAF4D5BE8D&amp;hl=en_US" frameborder="0" allowfullscreen></iframe></span></p>
<p><a rel="nofollow" target="_blank" href="http://cdwsolutionsblog.com/">CDW</a> is a current advertiser on my blog.  All opinions are mine.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href='http://www.digimantra.com/google/gladinet-cloud-desktop-google-docs-apps/' rel='bookmark' title='Gladinet Cloud Desktop for Google Docs &amp; apps'>Gladinet Cloud Desktop for Google Docs &#038; apps</a></li>
<li><a href='http://www.digimantra.com/technology/open-source-and-the-changing-trends-in-technology/' rel='bookmark' title='Open source and the changing trends in technology'>Open source and the changing trends in technology</a></li>
<li><a href='http://www.digimantra.com/news/nokia-upbeat-nfc-gaming-front/' rel='bookmark' title='Nokia Upbeat about NFC.. Wants in on the Gaming front'>Nokia Upbeat about NFC.. Wants in on the Gaming front</a></li>
</ol></p>
</div>
<img src="http://feeds.feedburner.com/~r/digimantra/~4/v6Y0vHGw_mM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/uncategorized/sky-is-the-limit-with-cdw-cloud-collaboration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.digimantra.com/uncategorized/sky-is-the-limit-with-cdw-cloud-collaboration/</feedburner:origLink></item>
		<item>
		<title>[How To] Get Indian Languages Support For BlackBerry OS6</title>
		<link>http://feedproxy.google.com/~r/digimantra/~3/duPoLUonWk8/</link>
		<comments>http://www.digimantra.com/howto/how-to-get-indian-languages-support-for-blackberry-os6/#comments</comments>
		<pubDate>Tue, 11 Dec 2012 18:25:58 +0000</pubDate>
		<dc:creator>Alap Naik Desai</dc:creator>
				<category><![CDATA[BlackBerry]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Indian Languages]]></category>
		<category><![CDATA[OS6]]></category>
		<category><![CDATA[Regional Languages]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=5176</guid>
		<description><![CDATA[BlackBerry Smartphones do not come equipped with reading regional Indian Languages. But, this method will enable them on OS6<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href='http://www.digimantra.com/howto/update-blackberry-bold-9700-os6/' rel='bookmark' title='[How To] Update BlackBerry Bold 9700 to OS6'>[How To] Update BlackBerry Bold 9700 to OS6</a></li>
<li><a href='http://www.digimantra.com/howto/bought-blackberry-read/' rel='bookmark' title='Bought a BlackBerry &#8230; Read This!'>Bought a BlackBerry &#8230; Read This!</a></li>
<li><a href='http://www.digimantra.com/facebook/show-your-facebook-fan-page-in-multiple-languages/' rel='bookmark' title='Show your facebook fan page in multiple languages'>Show your facebook fan page in multiple languages</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>BlackBerry Smartphones may be facing some tough competition from Android &amp; iOS running iPhones, but they are still used widely. This post is not about regaling the virtues of the phones, but adding an important piece to extend its abilities.</p>
<p>BlackBerry Internet Services or BIS has been used for quite some time. Since the advent of OS6 even normal EDGE or 3G works without subscribing to rather expensive BIS plans. Gaining internet access, one can visit websites, but landing on a Website in regional language is a hassle. The entire website, barring content in English, appears as square boxes or garbage letters like these: □ □ □ □ □ □  □ □ .</p>
<p>This article will enable support for Hindi, Kannada, Tamil, Telugu &amp; many other Indian languages.</p>
<p>Please note we are going to use third-party application <strong>BlackBerry Swiss Army Knife </strong>known fondly as<strong> BBSAK</strong>. One can download latest version <a rel="nofollow" target="_blank" href="http://www.bbsak.org/download.php">HERE</a>. Basically, this application lets you ‘Inject’ files &amp; do a lot more under-the-hood tweaking which <strong>BlackBerry Desktop Manager</strong> (BDM) doesn’t allow.</p>
<p>NOTE: This method is suitable ONLY for BB OS 6. To ensure you are running the same on the device Click <strong>Options-&gt; Device-&gt; About Device versions</strong>.</p>
<p><a href="http://www.digimantra.com/blog/wp-content/uploads/2012/12/IMAGE00047.jpg"><img class="size-medium wp-image-5178 aligncenter" title="IMAGE00047" alt="IMAGE00047 300x231 [How To] Get Indian Languages Support For BlackBerry OS6" src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/IMAGE00047-300x231.jpg" width="300" height="231" /></a></p>
<p>Once confirmed, download <a rel="nofollow" target="_blank" href="http://www.mediafire.com/?ya76d81cpnqkwcd">THIS FILE</a>. Name: net_rim_font_indic.cod | Size: 1.41 MB. After Download store it in an easy to access location.</p>
<p><a href="http://www.digimantra.com/blog/wp-content/uploads/2012/12/COD_Folder.png"><img class="wp-image-5177 aligncenter" title="COD_Folder" alt="COD Folder [How To] Get Indian Languages Support For BlackBerry OS6" src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/COD_Folder.png" width="600" height="400" /></a></p>
<p>Connect your BlackBerry to PC (Preferably Win 7) via USB.</p>
<p>Exit BDM if running. BDM can hinder the operation.</p>
<p>Start BBSAK &amp; enter device password. If you do not use a lock / unlock password on your Blackberry, keep the box empty &amp; hit OK.</p>
<p>BBSAK will start &amp; the image of your device should come up on the left side. Additionally, your BlackBerry PIN will be displayed too. In case both these signs do not appear, you haven’t connected correctly. Disconnect Blackberry, exit app, restart PC &amp; try again.</p>
<p><a href="http://www.digimantra.com/blog/wp-content/uploads/2012/12/Initial_Launch_BBSAK.png"><img class="size-full wp-image-5181 aligncenter" title="Initial_Launch_BBSAK" alt="Initial Launch BBSAK [How To] Get Indian Languages Support For BlackBerry OS6" src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/Initial_Launch_BBSAK.png" width="243" height="390" /></a></p>
<p>Once everything is setup correctly proceed to ‘Modify CODs’ Tab.</p>
<p><a href="http://www.digimantra.com/blog/wp-content/uploads/2012/12/Install_COD.png"><img class="size-full wp-image-5180 aligncenter" title="Install_COD" alt="Install COD [How To] Get Indian Languages Support For BlackBerry OS6" src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/Install_COD.png" width="243" height="390" /></a></p>
<p>Click On: Install COD(s) &amp; in the pop-up dialogue box select ‘net_rim_font_indic.cod’ file. BBSAK will ‘inject’ the file &amp; your device will reboot.</p>
<p>Wait for the device to restart. To confirm Indian Language support has been enabled Go to any website or better yet, go to Google’s Hindi, Tamil, Telugu sites &amp; you should see correct characters instead of squares or garbage letters.</p>
<p><a href="http://www.digimantra.com/blog/wp-content/uploads/2012/12/Google_Regional.png"><img class="wp-image-5179 aligncenter" title="Google_Regional" alt="Google Regional [How To] Get Indian Languages Support For BlackBerry OS6" src="http://www.digimantra.com/blog/wp-content/uploads/2012/12/Google_Regional.png" width="600" height="351" /></a></p>
<p>Additionally, even the SMSes sent to you in regional languages will now be readable! Readers please note, this procedure will only offer ‘Readability’. One cannot compose messages in regional languages.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href='http://www.digimantra.com/howto/update-blackberry-bold-9700-os6/' rel='bookmark' title='[How To] Update BlackBerry Bold 9700 to OS6'>[How To] Update BlackBerry Bold 9700 to OS6</a></li>
<li><a href='http://www.digimantra.com/howto/bought-blackberry-read/' rel='bookmark' title='Bought a BlackBerry &#8230; Read This!'>Bought a BlackBerry &#8230; Read This!</a></li>
<li><a href='http://www.digimantra.com/facebook/show-your-facebook-fan-page-in-multiple-languages/' rel='bookmark' title='Show your facebook fan page in multiple languages'>Show your facebook fan page in multiple languages</a></li>
</ol></p>
</div>
<img src="http://feeds.feedburner.com/~r/digimantra/~4/duPoLUonWk8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/howto/how-to-get-indian-languages-support-for-blackberry-os6/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.digimantra.com/howto/how-to-get-indian-languages-support-for-blackberry-os6/</feedburner:origLink></item>
		<item>
		<title>Root Micromax A110 (Superphone Canvas 2)</title>
		<link>http://feedproxy.google.com/~r/digimantra/~3/cV2wmS17ohE/</link>
		<comments>http://www.digimantra.com/technology/root-micromax-a110-superphone-canvas-2/#comments</comments>
		<pubDate>Wed, 05 Dec 2012 17:30:46 +0000</pubDate>
		<dc:creator>Alap Naik Desai</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[Micromax A110]]></category>
		<category><![CDATA[Modding]]></category>
		<category><![CDATA[Root]]></category>
		<category><![CDATA[Root Android]]></category>
		<category><![CDATA[Rooting]]></category>
		<category><![CDATA[Superphone Canvas 2]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=5149</guid>
		<description><![CDATA[Micromax A110 comes with 1GHz DualCore Processor, 512MB RAM, 5" IPS Display, 8MP Camera, with 2000mAh Battery &#038; vanilla ICS build. Empower it by learning how to Root Micromax A110 (Superphone Canvas 2)<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href='http://www.digimantra.com/howto/boot-android-phone-in-recovery-mode/' rel='bookmark' title='Boot Android phone in recovery mode'>Boot Android phone in recovery mode</a></li>
<li><a href='http://www.digimantra.com/howto/fix-samsung-kies-mtp-flash-error/' rel='bookmark' title='How to fix Samsung Kies MTP flash error'>How to fix Samsung Kies MTP flash error</a></li>
<li><a href='http://www.digimantra.com/tutorials/use-any-mobile-with-pc-generic-pc-suite/' rel='bookmark' title='Use Any Mobile With PC (Generic PC Suite)'>Use Any Mobile With PC (Generic PC Suite)</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>After a long hiatus, I must thank the founder of this website Sachin Khosla for inviting me back to offer some instructional articles. As our readers must have guessed from my earlier articles, I strive to offer methods that even the technologically challenged can execute. Great to be back &amp; expect some interesting tips, tricks &amp; tools to extend the usage of your electronics &amp; gadgets. I am going to start with the latest budget smartphone that holds real promise</p>
<p>The newest flagship budget phone (Phew, that’s a lot of adjectives) from the stables of Micromax, the Superphone Canvas 2 aka A110 is making a lot waves; thankfully of the right kind. With 1GHz Dual Core Mediatek 6577 Processor, 512MB RAM, 8MP back &amp; VGA front camera, the phone even sports Vanilla ICS build.</p>
<p>The phone surely deserves the nickname Superphone &amp; thanks to the massive 5” 854*480 WVGA Screen it can also justify the extension Canvas. The earlier iteration A100 was similar in most senses, but lacked Dual Core &amp; 8MP camera. Oh &amp; also the latest one has an IPS display, so expect great viewing angles. With a pricing that is merely Rs. 10,000 (US$ 180), the phone is a great package to own &amp; experiment on!</p>
<p>This post is about how to setup this smartphone to receive the great tweaks. As with any Android based smartphone, the first step is to ROOT it. If you don’t know what Rooting is, better research well before proceeding. There are multiple advantages &amp; in some cases it is mandatory to have a rooted phone.</p>
<p>Now how we Root this Beast:</p>
<p>Some Precautions:</p>
<ul>
<li>Before Proceeding, charge the Battery preferably to more than 90%. Use Wall Charger as it offers a much faster charging rate than the PC based USB Charging.</li>
<li>The manufacturer Micromax has cleverly inserted a Virtual Drive which loads all the drives when you first connect your phone. I would not recommend using obsolete XP. Do this on a Windows 7 machine (I used a 64Bit system)</li>
<li>The Rooting Tool is called Root_With_Restore_Bin4ry. It can be Downloaded <a rel="nofollow" target="_blank" href="http://www.mediafire.com/?lwhknfmnc25nbc6">HERE</a>.</li>
<li>Once downloaded, extract to C: Drive (Preferably at the beginning &amp; rename the folder as ROOT) For e.g: <em>C:<strong>\</strong>ROOT</em>. U should have 2 files &amp; a folder in the ROOT folder as shown below:</li>
</ul>
<p><a href="http://www.digimantra.com/blog/wp-content/uploads/2012/11/Root_001.jpg"><img class="aligncenter" title="Root_001" src="http://www.digimantra.com/blog/wp-content/uploads/2012/11/Root_001.jpg" alt="Root 001 Root Micromax A110 (Superphone Canvas 2)" width="598" height="162" /></a></p>
<ul>
<li>Now on the Phone Go to Settings-&gt; Developer Options-&gt; USB Debugging. (Click Yes To The Prompt)</li>
<li>Once you ensure you have extracted the folders &amp; installed the drivers correctly, proceed to the Rooting Process.</li>
<li>Connect your Micromax A110 (MMX A110) to the USB with the cable (Remember USB Debugging should be enabled)</li>
<li>Head to the C:\ROOT folder where you extracted the files within the Root_With_Restore_Bin4ry File.</li>
<li>Double-Click on ‘RunMe.Bat’ file. A Command Prompt Window with Green Lettering should appear. If it doesn’t, right-click the file &amp; choose ‘<em>Run As Administrator</em>’. Ah Yes… You should have administrator rights for doing any &amp; all of this.</li>
</ul>
<p><a href="http://www.digimantra.com/blog/wp-content/uploads/2012/11/Root_01.jpg"><img class="wp-image-5164 aligncenter" title="Root_01" src="http://www.digimantra.com/blog/wp-content/uploads/2012/11/Root_01.jpg" alt="Root 01 Root Micromax A110 (Superphone Canvas 2)" width="595" height="385" /></a></p>
<ul>
<li>Now for MMX A110 enter 1 &amp; press enter.</li>
</ul>
<p>Some wordings will appear on the screen simply ignore those. At one point the program will halt &amp; give out the message: ‘Please Look At Your Device &amp; Click Restore’. At this juncture if your phone’s screen is dark, hit the power button once to light it up &amp; on the lower-right hand corner you should find the soft-button ‘Restore’. Hit it &amp; your phone will have some files copied to it. You must not touch anything else now &amp; let the program do its work.</p>
<p><a href="http://www.digimantra.com/blog/wp-content/uploads/2012/11/Root_02.png"><img class="size-full wp-image-5165 aligncenter" title="Root_02" src="http://www.digimantra.com/blog/wp-content/uploads/2012/11/Root_02.png" alt="Root 02 Root Micromax A110 (Superphone Canvas 2)" width="610" height="640" /></a></p>
<ul>
<li>Your MMX A110 will reboot once the Rooting is completed. To confirm if ‘Rooting’ has been successful, go to the apps section &amp; you should see SuperSU installed. If u are still unsure Go To Play Store &amp; Download Root Checker (The Free Version is Fine). Install it &amp; Run.</li>
<li>Click On Verify Root. A Pop-Up Will Appear Asking for Permission to Allow Root Access. Click Yes / OK to It &amp; you should get a confirmation about ROOT.</li>
</ul>
<p>Some tips to ensure the process works in the first shot:</p>
<p>Ensure ALL the drivers have been installed correctly. If not, opt for a different PC &amp; begin anew. Patience is a virtue. This process can take anywhere between 5 min to 20 mins. Do not interrupt the process.</p>
<p>Well, this is only the first part of securing your phone for future tweaks. In the next part, I will teach <em>How To Install the famous ClockWork Mod (CWM) Recovery.</em> This recovery partition replaces Stock Recovery &amp; opens up multiple options to mod your phone, &amp; best of all take a complete system back-up. Don’t worry; there will be an additional Post about <em>How to correctly take a complete Nandroid Backup</em>.  In case you manage to completely screw your phone, then CWM &amp; your Nandroid backup can restore your smartphone to perfect working order!</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href='http://www.digimantra.com/howto/boot-android-phone-in-recovery-mode/' rel='bookmark' title='Boot Android phone in recovery mode'>Boot Android phone in recovery mode</a></li>
<li><a href='http://www.digimantra.com/howto/fix-samsung-kies-mtp-flash-error/' rel='bookmark' title='How to fix Samsung Kies MTP flash error'>How to fix Samsung Kies MTP flash error</a></li>
<li><a href='http://www.digimantra.com/tutorials/use-any-mobile-with-pc-generic-pc-suite/' rel='bookmark' title='Use Any Mobile With PC (Generic PC Suite)'>Use Any Mobile With PC (Generic PC Suite)</a></li>
</ol></p>
</div>
<img src="http://feeds.feedburner.com/~r/digimantra/~4/cV2wmS17ohE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/technology/root-micromax-a110-superphone-canvas-2/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		<feedburner:origLink>http://www.digimantra.com/technology/root-micromax-a110-superphone-canvas-2/</feedburner:origLink></item>
		<item>
		<title>How To Get Amazon Secret Key and Amazon API Key (Access Key ID)</title>
		<link>http://feedproxy.google.com/~r/digimantra/~3/vRhFmCW7JG0/</link>
		<comments>http://www.digimantra.com/howto/amazon-secret-key-amazon-api-key-access-key-id/#comments</comments>
		<pubDate>Sat, 13 Oct 2012 08:12:57 +0000</pubDate>
		<dc:creator>Sachin Khosla</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[access key]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[s3]]></category>
		<category><![CDATA[secret key]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=5137</guid>
		<description><![CDATA[Alright Sparky, so you planning to host your files on CDN and wondering from where to get Amazon Secret Key and the Amazon API Key! Apparently, there&#8217;s no simple way if you are not acquainted to the system. But you need these two for many of the Amazon services. In order to get this you [...]<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href='http://www.digimantra.com/google/gmail-goes-more-secure-adds-super-trustworthy-anti-phishing-key/' rel='bookmark' title='Gmail goes more secure, adds super-trustworthy,anti-phishing key'>Gmail goes more secure, adds super-trustworthy,anti-phishing key</a></li>
<li><a href='http://www.digimantra.com/howto/mac-os-x-lock-screen/' rel='bookmark' title='Mac OS X: 2 ways to lock screen without any app'>Mac OS X: 2 ways to lock screen without any app</a></li>
<li><a href='http://www.digimantra.com/open-source/ubuntu/remotely-access-ubuntu-machine-windows/' rel='bookmark' title='How to remotely access Ubuntu machine from Windows'>How to remotely access Ubuntu machine from Windows</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Alright Sparky, so you planning to host your files on CDN and wondering from where to get Amazon Secret Key and the Amazon API Key! Apparently, there&#8217;s no simple way if you are not acquainted to the system. But you need these two for many of the Amazon services. In order to get this you need to sing up for  <a rel="nofollow" target="_blank" title="Sign up for Amazon Web Services Developer account." href="http://aws-portal.amazon.com/gp/aws/developer/account/index.html" target="_blank">Amazon AWS Portal Developer link. </a></p>
<p>Once you are done with that, you will get an email which will have link to <a rel="nofollow" target="_blank" href="http://aws-portal.amazon.com/gp/aws/developer/account/index.html" target="_blank">general account front page</a> on which you have to goto &#8220;<a rel="nofollow" target="_blank" href="https://portal.aws.amazon.com/gp/aws/securityCredentials" target="_blank">Security Credentials Tab</a>&#8221; ( you will be asked for password). You will see a screen similar to below -</p>
<p><a href="http://www.digimantra.com/blog/wp-content/uploads/2012/10/amazon-security-credentials.png"><img class="aligncenter  wp-image-5140" title="amazon-security-credentials" src="http://www.digimantra.com/blog/wp-content/uploads/2012/10/amazon-security-credentials.png" alt="amazon security credentials How To Get Amazon Secret Key and Amazon API Key (Access Key ID)" width="595" height="272" /></a></p>
<p>&nbsp;</p>
<p>Copy the <em><strong>Access Key ID</strong></em> and the <em><strong>Secret Access Key</strong></em> and use it the way you like. Hope this helps!</p>
<p>Stay Digified!!<br />
Sachin Khosla</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href='http://www.digimantra.com/google/gmail-goes-more-secure-adds-super-trustworthy-anti-phishing-key/' rel='bookmark' title='Gmail goes more secure, adds super-trustworthy,anti-phishing key'>Gmail goes more secure, adds super-trustworthy,anti-phishing key</a></li>
<li><a href='http://www.digimantra.com/howto/mac-os-x-lock-screen/' rel='bookmark' title='Mac OS X: 2 ways to lock screen without any app'>Mac OS X: 2 ways to lock screen without any app</a></li>
<li><a href='http://www.digimantra.com/open-source/ubuntu/remotely-access-ubuntu-machine-windows/' rel='bookmark' title='How to remotely access Ubuntu machine from Windows'>How to remotely access Ubuntu machine from Windows</a></li>
</ol></p>
</div>
<img src="http://feeds.feedburner.com/~r/digimantra/~4/vRhFmCW7JG0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/howto/amazon-secret-key-amazon-api-key-access-key-id/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.digimantra.com/howto/amazon-secret-key-amazon-api-key-access-key-id/</feedburner:origLink></item>
		<item>
		<title>How to show contacts list in Messages app OS X</title>
		<link>http://feedproxy.google.com/~r/digimantra/~3/Sxad9T4SW_g/</link>
		<comments>http://www.digimantra.com/apple/how-to-show-contacts-list-in-messages-app-os-x/#comments</comments>
		<pubDate>Mon, 17 Sep 2012 17:36:15 +0000</pubDate>
		<dc:creator>Sachin Khosla</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[ichat]]></category>
		<category><![CDATA[imessages]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=5118</guid>
		<description><![CDATA[Show the contact list in Messages app, cause apple decided not to show it by default.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href='http://www.digimantra.com/howto/mac-os-x-lock-screen/' rel='bookmark' title='Mac OS X: 2 ways to lock screen without any app'>Mac OS X: 2 ways to lock screen without any app</a></li>
<li><a href='http://www.digimantra.com/technology/apache/list-loaded-modules-apache/' rel='bookmark' title='List all loaded modules in Apache'>List all loaded modules in Apache</a></li>
<li><a href='http://www.digimantra.com/industry-news/send-multiple-direct-messages-twitter/' rel='bookmark' title='Send multiple direct messages on twitter'>Send multiple direct messages on twitter</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>In this post I am going to share &#8211; How you can show contact list in Messages app in OS X. I know we all expect this to be there by default, but surprisingly it&#8217;s not!</p>
<p>Well, you can toggle buddy/contact list by simply pressing <em><strong>command + 1</strong></em>. Alternatively, when the Messages window is active, simply click Windows and choose the buddy list which you want to show.</p>
<p>Messages group buddy list of different account into one window, but if you want to show them separately just goto preferences and  uncheck the option which says &#8211; &#8220;Show all my accounts in one list&#8221;</p>
<p>So you can toggle the multiple buddy list by pressing <em><strong>command+1</strong></em> , <em><strong>command + 2</strong></em> and so on, depending on number of accounts you have added to the app.</p>
<p>Hope that helps.</p>
<p>Stay Digified!!<br />
Sachin Khosla</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href='http://www.digimantra.com/howto/mac-os-x-lock-screen/' rel='bookmark' title='Mac OS X: 2 ways to lock screen without any app'>Mac OS X: 2 ways to lock screen without any app</a></li>
<li><a href='http://www.digimantra.com/technology/apache/list-loaded-modules-apache/' rel='bookmark' title='List all loaded modules in Apache'>List all loaded modules in Apache</a></li>
<li><a href='http://www.digimantra.com/industry-news/send-multiple-direct-messages-twitter/' rel='bookmark' title='Send multiple direct messages on twitter'>Send multiple direct messages on twitter</a></li>
</ol></p>
</div>
<img src="http://feeds.feedburner.com/~r/digimantra/~4/Sxad9T4SW_g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/apple/how-to-show-contacts-list-in-messages-app-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.digimantra.com/apple/how-to-show-contacts-list-in-messages-app-os-x/</feedburner:origLink></item>
		<item>
		<title>HTML5 Page Structure</title>
		<link>http://feedproxy.google.com/~r/digimantra/~3/QOUeTPb4ojM/</link>
		<comments>http://www.digimantra.com/technology/html5/html5-page-structure/#comments</comments>
		<pubDate>Sat, 28 Jul 2012 20:21:28 +0000</pubDate>
		<dc:creator>Sachin Khosla</dc:creator>
				<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=5082</guid>
		<description><![CDATA[This is the basic HTML5 page structure that you can use as a base while developing a HTML5 website layout.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href='http://www.digimantra.com/technology/css/alternative-to-overflowhidden-for-wrapping-divs/' rel='bookmark' title='Alternative to overflow:hidden for wrapping divs'>Alternative to overflow:hidden for wrapping divs</a></li>
<li><a href='http://www.digimantra.com/tips/optimizing-embed-code-and-widgets-for-faster-page-load/' rel='bookmark' title='Optimizing embed code and widgets for faster page load'>Optimizing embed code and widgets for faster page load</a></li>
<li><a href='http://www.digimantra.com/events/presentation-html5-web-storage-web-workers/' rel='bookmark' title='Presentation on HTML5, Web Storage and Web workers'>Presentation on HTML5, Web Storage and Web workers</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>This is the basic HTML5 page structure that you can use as a base while developing a HTML5 website layout.</p>
<p>&nbsp;</p>
<pre class="brush: html; gutter: true">&lt;!DOCTYPE HTML&gt;

&lt;html&gt;

    &lt;head&gt;
        &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;
        &lt;title&gt;Website Title&lt;/title&gt;
    &lt;/head&gt;

    &lt;body&gt;

        &lt;header&gt;
            &lt;nav&gt;
                &lt;ul&gt;
                    &lt;li&gt;Home&lt;/li&gt;
                    &lt;li&gt;Contact&lt;/li&gt;
                &lt;/ul&gt;
            &lt;/nav&gt;
        &lt;/header&gt;

        &lt;section&gt;

            &lt;article&gt;
                &lt;header&gt;
                    &lt;h2&gt;Title Goes here&lt;/h2&gt;
                    &lt;p&gt;Posted on &lt;time datetime=&quot;2012-07-28T13:00:24+01:00&quot;&gt;July 28th 2012&lt;/time&gt; by &lt;a href=&quot;#&quot;&gt;Author&lt;/a&gt; - &lt;a href=&quot;#comments&quot;&gt;12 comments&lt;/a&gt;&lt;/p&gt;
                &lt;/header&gt;
                &lt;p&gt;Lorem Ipsum is simply dummy text of the printing and typesetting industry.&lt;/p&gt;
            &lt;/article&gt;

            &lt;article&gt;
                &lt;header&gt;
                    &lt;h2&gt;Article title&lt;/h2&gt;
                    &lt;p&gt;Posted on &lt;time datetime=&quot;2012-07-26T13:00:24+01:00&quot;&gt;July 26th 2012&lt;/time&gt; by &lt;a href=&quot;#&quot;&gt;Author&lt;/a&gt; - &lt;a href=&quot;#comments&quot;&gt;9 comments&lt;/a&gt;&lt;/p&gt;
                &lt;/header&gt;
                &lt;p&gt;Lorem Ipsum is simply dummy text of the printing and typesetting industry.&lt;/p&gt;
            &lt;/article&gt;

        &lt;/section&gt;

        &lt;aside&gt;
            &lt;h2&gt;Contact Us&lt;/h2&gt;
            &lt;p&gt;It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.&lt;/p&gt;
        &lt;/aside&gt;

        &lt;footer&gt;
            &lt;p&gt;Copyright 2012 DigiMantra Labs ©&lt;/p&gt;
        &lt;/footer&gt;

    &lt;/body&gt;

&lt;/html&gt;</pre>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href='http://www.digimantra.com/technology/css/alternative-to-overflowhidden-for-wrapping-divs/' rel='bookmark' title='Alternative to overflow:hidden for wrapping divs'>Alternative to overflow:hidden for wrapping divs</a></li>
<li><a href='http://www.digimantra.com/tips/optimizing-embed-code-and-widgets-for-faster-page-load/' rel='bookmark' title='Optimizing embed code and widgets for faster page load'>Optimizing embed code and widgets for faster page load</a></li>
<li><a href='http://www.digimantra.com/events/presentation-html5-web-storage-web-workers/' rel='bookmark' title='Presentation on HTML5, Web Storage and Web workers'>Presentation on HTML5, Web Storage and Web workers</a></li>
</ol></p>
</div>
<img src="http://feeds.feedburner.com/~r/digimantra/~4/QOUeTPb4ojM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/technology/html5/html5-page-structure/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.digimantra.com/technology/html5/html5-page-structure/</feedburner:origLink></item>
		<item>
		<title>Create new theme file without FTP using WordPress admin</title>
		<link>http://feedproxy.google.com/~r/digimantra/~3/bGDctYyEQS4/</link>
		<comments>http://www.digimantra.com/tutorials/wordpress/create-new-theme-file-without-ftp/#comments</comments>
		<pubDate>Wed, 27 Jun 2012 18:53:51 +0000</pubDate>
		<dc:creator>Sachin Khosla</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[theme development]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=5054</guid>
		<description><![CDATA[Learn how to Create new theme file from WordPress admin without FTP access. Not only PHP but you can create any kind of file. <div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href='http://www.digimantra.com/tutorials/wordpress/wordpress-run-shortcode-php-template-file/' rel='bookmark' title='WordPress : Run shortcode in PHP template file'>WordPress : Run shortcode in PHP template file</a></li>
<li><a href='http://www.digimantra.com/tutorials/wordpress/create-wordpress-user-php-function/' rel='bookmark' title='How to : Create a new WordPress user using PHP function'>How to : Create a new WordPress user using PHP function</a></li>
<li><a href='http://www.digimantra.com/tutorials/wordpress/nextgen-gallery-custom-php-code-theme-file/' rel='bookmark' title='How to use Nextgen gallery using custom php code on theme file'>How to use Nextgen gallery using custom php code on theme file</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.digimantra.com/blog/wp-content/uploads/2012/06/wordpress-icon-150x1501.png"><img class="alignright size-full wp-image-5069" title="wordpress-icon-150x150" src="http://www.digimantra.com/blog/wp-content/uploads/2012/06/wordpress-icon-150x1501.png" alt="wordpress icon 150x1501 Create new theme file without FTP using WordPress admin" width="150" height="150" /></a>After starting my own Web Development Agency, I have faced many different scenarios. I have seen clients which only give WordPress Dashboard access and expect heavy modification in the theme or WordPress features. In a recent assignment we had to create an exclusive iPhone look alike e-bookshelf but without having FTP access. We tend to avoid creating new PHP file, but at one point it could not be avoided. So here I am going to share my experience on how to <em><strong>create new theme file without ftp using WordPress admin</strong><strong></strong></em>.</p>
<p>In theory, we are going to use <a rel="nofollow" target="_blank" title="Unix command touch" href="http://en.wikipedia.org/wiki/Touch_%28Unix%29" target="_blank">Unix command touch</a> to create a new file by executing a command from an already existing PHP file. You can create any type of file and as many as you want to. Now let us see how you can create a new theme file from wordpress admin by  following<em><strong> simple steps</strong></em> -</p>
<p><strong>1)</strong> <strong>Know your current theme name and directory.</strong></p>
<p>You can know your current theme name and directory from the Appearance  &gt; Editor option. Just click on the Editor and it will show you the list of your already existing theme files and the name of the theme. All the themes are located inside <strong>wp-content/themes/</strong> directory, so all you need is to add your theme name after the <em><strong>themes/</strong></em>. In our example the path would be &#8211; <em><strong>wp-content/themes/digimantra</strong></em></p>
<p><strong>2) Create the necessary PHP code to create the new file</strong>.</p>
<p>Now that you have the path to your theme directory, let&#8217;s create the PHP code which will magically create a new theme file in your current WordPress theme directory. The code is -</p>
<blockquote><p>&lt;?php touch(&#8216;wp-content/themes/digimantra/new-template.php&#8217;); ?&gt;</p></blockquote>
<p>In the above line of code we are using the unix command <em><strong>touch</strong></em> which will create the new file new-template.php inside the current wordpress theme directory which is <em><strong>digimantra </strong></em>in our case.</p>
<p><strong>3) Place the code, and remove after successful creation of the file.</strong></p>
<p>Next, we are going to place this line of code into any existing PHP file using the built-in theme editor as discussed above. I recommend placing this code inside <em><strong>header.php</strong></em> since it is going to execute on every page of the website. Now open your website&#8217;s homepage. As soon as you will open the website, this line of code will be executed from header.php and a new file new-template.php will be created.</p>
<p>Finally remove or comment this line of code from header.php since it is not needed anymore, as long as you are not planning to create more files.</p>
<p><strong>Notable facts</strong>-</p>
<ul>
<li>You can create multiple files using the multiple lines of the above PHP code.</li>
<li><em><strong>touch</strong></em> unix command modifies the access &amp; modification time of a file to the current time (if you not specified), hence it is same even if your website is live and header.php gets executed multiple times. It will never ooze out an error in the frontend.</li>
<li><strong>Note</strong> &#8211; You should place the code outside the PHP loop, if you are going to paste the code from above. Apparently, it has the php start and end tag. If you paste this code inside already opened PHP tags, it will give a <em><strong>fatal error and the whole theme can crash</strong></em> until you fix the file using FTP.</li>
<li>You can edit the newly create files using the theme editor.</li>
</ul>
<p>Hope this trick will help you.</p>
<p>Stay Digified!!<br />
Sachin Khosla</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href='http://www.digimantra.com/tutorials/wordpress/wordpress-run-shortcode-php-template-file/' rel='bookmark' title='WordPress : Run shortcode in PHP template file'>WordPress : Run shortcode in PHP template file</a></li>
<li><a href='http://www.digimantra.com/tutorials/wordpress/create-wordpress-user-php-function/' rel='bookmark' title='How to : Create a new WordPress user using PHP function'>How to : Create a new WordPress user using PHP function</a></li>
<li><a href='http://www.digimantra.com/tutorials/wordpress/nextgen-gallery-custom-php-code-theme-file/' rel='bookmark' title='How to use Nextgen gallery using custom php code on theme file'>How to use Nextgen gallery using custom php code on theme file</a></li>
</ol></p>
</div>
<img src="http://feeds.feedburner.com/~r/digimantra/~4/bGDctYyEQS4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/tutorials/wordpress/create-new-theme-file-without-ftp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.digimantra.com/tutorials/wordpress/create-new-theme-file-without-ftp/</feedburner:origLink></item>
		<item>
		<title>Best Tool for Downloading YouTube Videos and Playlists</title>
		<link>http://feedproxy.google.com/~r/digimantra/~3/1lhXFT8Bu6g/</link>
		<comments>http://www.digimantra.com/tutorials/best-tool-for-downloading-youtube-videos-and-playlists/#comments</comments>
		<pubDate>Tue, 26 Jun 2012 04:43:16 +0000</pubDate>
		<dc:creator>Kartik</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.digimantra.com/?p=5043</guid>
		<description><![CDATA[Want to know what is the Best Tool for Downloading YouTube Videos and Playlists, here is how.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href='http://www.digimantra.com/google/youtube/show-youtube-videos-thumbnail/' rel='bookmark' title='Show youtube videos thumbnail'>Show youtube videos thumbnail</a></li>
<li><a href='http://www.digimantra.com/google/youtube-new-video-uploader/' rel='bookmark' title='YouTube just got better with new video uploader'>YouTube just got better with new video uploader</a></li>
<li><a href='http://www.digimantra.com/google/google-helps-to-understand-tech-jargon/' rel='bookmark' title='Google helps to understand tech jargon'>Google helps to understand tech jargon</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>How many times does it happen that you stumble upon an awesome <a rel="nofollow" target="_blank" href="http://youtube.com" target="_blank">youtube</a> video, you make up your mind to download it but fail short to find a good tool which actually works?</p>
<p>In this post I want to introduce one of the best tools for downloading videos from YouTube and other video platforms. <a rel="nofollow" target="_blank" title="Download YouTube Videos and Playlists" href="http://rg3.github.com/youtube-dl/" target="_blank">youtube-dl</a> is the Best Tool for Downloading YouTube Videos and Playlists. This command line tool is basically just a python script released by its developers in public domain and it works on any platform that supports Python 2.x or later including <em><strong>Linux, Windows or Mac OS X</strong></em>.</p>
<p>If you are on Ubuntu, you can directly install it by using:</p>
<blockquote><p>k4rtik: $ sudo apt-get install youtube-dl</p></blockquote>
<p>If not, just go to <a rel="nofollow" target="_blank" href="http://rg3.github.com/youtube-dl/download.html" target="_blank">youtube-dl download page</a> and save the script in your home directory. Then make the script executable by using the following command:</p>
<blockquote><p>k4rtik: $ chmod +x youtube-dl</p></blockquote>
<p>You can also consider moving the script to your <em><strong>/usr/local/bin</strong></em> directory to invoke it directly without specifying the path:</p>
<blockquote><p>k4rtik: $ sudo mv youtube-dl /usr/local/bin</p></blockquote>
<p>In its most basic form you can use this tool to download the highest quality of video by just supplying the url of the video as its argument, e.g.:</p>
<blockquote><p>k4rtik: Videos $ youtube-dl http://www.youtube.com/watch?v=Rk62hRBDLGc<br />
Setting language<br />
Rk62hRBDLGc: Downloading video webpage<br />
Rk62hRBDLGc: Downloading video info webpage<br />
Rk62hRBDLGc: Extracting video information<br />
[download] Destination: Rk62hRBDLGc.flv<br />
[download] 100.0% of 5.38M at 88.81k/s ETA 00:00<br />
k4rtik: Videos $</p></blockquote>
<p>My preferred way of downloading videos is by <em><strong>using the -t flag</strong></em>, which saves the video with the title in the file name, e.g.:</p>
<blockquote><p>k4rtik: Videos $ youtube-dl -t http://www.youtube.com/watch?v=Rk62hRBDLGc<br />
Setting language<br />
Rk62hRBDLGc: Downloading video webpage<br />
Rk62hRBDLGc: Downloading video info webpage<br />
Rk62hRBDLGc: Extracting video information<br />
[download] Destination: Reasons_to_love_Ubuntu_12_04_LTS-Rk62hRBDLGc.flv<br />
[download] 100.0% of 5.38M at 204.52k/s ETA 00:00<br />
k4rtik: Videos $</p></blockquote>
<p>In case, you don’t want to download the highest quality to save some bandwidth and time, youtube-dl <em><strong>offers choice of multiple formats</strong></em>. See its man-page to find out more, I prefer H264 videos at 480p size for youtube which I specify like this:</p>
<blockquote><p>k4rtik: Videos $ youtube-dl -t -f 18 http://www.youtube.com/watch?v=02nBaaIoFWU<br />
Setting language<br />
02nBaaIoFWU: Downloading video webpage<br />
02nBaaIoFWU: Downloading video info webpage<br />
02nBaaIoFWU: Extracting video information<br />
[download] Multipath_TCP-02nBaaIoFWU.mp4 has already been downloaded<br />
k4rtik: Videos $</p></blockquote>
<p>You can also use it for downloading complete playlists off youtube:</p>
<blockquote><p>k4rtik: Videos $ youtube-dl -f 18 -t http://www.youtube.com/watch?v=128ll4yXUfY&amp;list=PL2E1848DB88958935</p></blockquote>
<p>Oh, and did I mention… it <em><strong>continues the download if interrupted due to network trouble</strong></em> or some other reason, just specify the same command again.</p>
<p>According to its man page it supports video downloads from other popular video hosting sites like <a rel="nofollow" target="_blank" href="http://facebook.com" target="_blank">Facebook</a>, <a rel="nofollow" target="_blank" href="http://www.metacafe.com/" target="_blank">Metacafe</a>, <a rel="nofollow" target="_blank" href="http://vimeo.com" target="_blank">Vimeo</a>, <a rel="nofollow" target="_blank" href="http://yahoo.com" target="_blank">Yahoo!</a>, <a rel="nofollow" target="_blank" href="http://youtube.com" target="_blank">YouTube</a>, <a rel="nofollow" target="_blank" href="http://blip.tv" target="_blank">blip.tv</a>, <a rel="nofollow" target="_blank" href="http://video.google.com" target="_blank">video.google.com</a> and many more. Hope you enjoy using it for all your video downloading needs.</p>
<p>Ciao</p>
<p>K4rtik</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href='http://www.digimantra.com/google/youtube/show-youtube-videos-thumbnail/' rel='bookmark' title='Show youtube videos thumbnail'>Show youtube videos thumbnail</a></li>
<li><a href='http://www.digimantra.com/google/youtube-new-video-uploader/' rel='bookmark' title='YouTube just got better with new video uploader'>YouTube just got better with new video uploader</a></li>
<li><a href='http://www.digimantra.com/google/google-helps-to-understand-tech-jargon/' rel='bookmark' title='Google helps to understand tech jargon'>Google helps to understand tech jargon</a></li>
</ol></p>
</div>
<img src="http://feeds.feedburner.com/~r/digimantra/~4/1lhXFT8Bu6g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.digimantra.com/tutorials/best-tool-for-downloading-youtube-videos-and-playlists/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.digimantra.com/tutorials/best-tool-for-downloading-youtube-videos-and-playlists/</feedburner:origLink></item>
	</channel>
</rss>
