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

<channel>
	<title>Dexterology</title>
	<atom:link href="http://www.dexterology.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dexterology.com</link>
	<description>Dexter of technology</description>
	<lastBuildDate>Sat, 24 Mar 2012 13:27:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Read LowPrice Android App Review on CuberJunkeez</title>
		<link>http://www.dexterology.com/read-lowprice-android-app-review-on-cuberjunkeez/</link>
		<comments>http://www.dexterology.com/read-lowprice-android-app-review-on-cuberjunkeez/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 13:25:35 +0000</pubDate>
		<dc:creator>Pranay</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[appreview]]></category>

		<guid isPermaLink="false">http://www.dexterology.com/?p=318</guid>
		<description><![CDATA[A friend from CyberJunkeez has written a excellent review about My android app Lowprice, http://cyberjunkeez.org/2012/03/find-books-at-the-lowest-price-with-lowprice.html Visit the blog and let me know if you like this post]]></description>
			<content:encoded><![CDATA[<p><br/> <br/><br />
A friend from CyberJunkeez has written a excellent review about My android app Lowprice,</p>
<p><a href="http://cyberjunkeez.org/2012/03/find-books-at-the-lowest-price-with-lowprice.html">http://cyberjunkeez.org/2012/03/find-books-at-the-lowest-price-with-lowprice.html</a></p>
<p>Visit the blog and let me know if you like this post</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dexterology.com/read-lowprice-android-app-review-on-cuberjunkeez/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML 5 Geo Location API</title>
		<link>http://www.dexterology.com/html-5-geo-location-api/</link>
		<comments>http://www.dexterology.com/html-5-geo-location-api/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 07:06:34 +0000</pubDate>
		<dc:creator>Pranay</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[geo location]]></category>
		<category><![CDATA[lbs]]></category>

		<guid isPermaLink="false">http://www.dexterology.com/html-5-geo-location-api/</guid>
		<description><![CDATA[&#160; With recent facebook feature of geo&#160; tagging, geo location is becoming a hot field in internet world, considering the future aspects of geo location HTML5 specification has added a new Geolocation API which helps in mapping the exact location of any user to offer personalize location based services. Lets take a dive into how [...]]]></description>
			<content:encoded><![CDATA[<p><!--aiospwlwbstart<br />
aiosp_title=HTML 5 Geo Location API track users exact location<br />
aiosp_keywords=track location, html5 location, geo tracking,  ip tracking, location from ip, mobile tower tracking, maps<br />
aiosp_description=with introduction of html 5 geo tracking api now you can track users location from your browser<br />
aiospwlwbsend-->
<p align="justify">&#160;</p>
<p align="justify"><a href="http://www.dexterology.com/wp-content/uploads/2010/09/Geolocationapps.jpg"><img title="Geo-location-apps" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="197" alt="Geo-location-apps" src="http://www.dexterology.com/wp-content/uploads/2010/09/Geolocationapps_thumb.jpg" width="199" border="0" /></a> With recent facebook feature of geo&#160; tagging, geo location is becoming a hot field in internet world, considering the future aspects of geo location HTML5 specification has added a new Geolocation API which helps in mapping the exact location of any user to offer personalize location based services.</p>
<p align="justify">Lets take a dive into how this geolocation API works and what you can do with this.&#160; Geolocation tells you where the user is it is not of much relevance for him knowing his current position. You can track a users current location by embedding just 2 line of javascript </p>
<p align="justify"><strong>navigator.geolocation.getCurrentPosition(callmeonSuccess, callmeonError, options);</strong></p>
<div align="justify">
<pre>&#160;</pre>
</div>
<p align="justify">This 2 lines of code will give you the current location, the callmeonSuccess function will be called with <strong>position </strong>parameter passed which is then used to extract the lat long etc. Here is the code which will give you the lat and long for any user</p>
<p align="justify"><strong>function callmeonSuccess(position) {</strong></p>
<p align="justify"><strong>var lat = position.coords.latitude;<br />
    <br />var lng = position.coords.longitude; }</strong></p>
<p align="justify">Yes with this simple line of code you can get the lat and long of any user. There are various other options which you can extract from position.&#160; You can play with this API and check with different parameter by going on <a href="http://playground.html5rocks.com/#get_current_position">this link</a>. </p>
<p align="justify">You can see the stand alone version of the example application integrated with Google maps <a href="http://www.dexterology.com/geolocation.html">on my website</a>.</p>
<p align="justify">There are lot of good examples and uses of this geo location feature you can find something similar on <a href="http://www.html5rocks.com/tutorials/geolocation/trip_meter/">html5rocks</a>, I am exploring the possibilities of how to use this feature and in my upcoming posts I will try to put some content related to the same.</p>
<p align="justify">You can read the specification of geo location tracking form <a href="http://dev.w3.org/geo/api/spec-source.html">W3C website</a>. They use a set of GPS, satellite mobile phone tower position IP etc for getting the exact location.</p>
<p align="justify">What will you do if you get the location of visitor who is visiting your webpage? post it in your comments.</p>
<p align="justify">Thanks</p>
<p align="justify">Pranay </p>
<p align="justify"><iframe class="twitter-share-button twitter-count-horizontal" title="Twitter For Websites: Tweet Button" style="width: 110px; height: 20px" tabindex="tabindex" src="http://platform0.twitter.com/widgets/tweet_button.html?_=1283842961375&amp;count=horizontal&amp;lang=en&amp;text=Dexterology%20By%20Pranay%20airan%20www.dexterology.com&amp;url=file%3A%2F%2F%2FC%3A%2FDocuments%2520and%2520Settings%2Fpranay%2FLocal%2520Settings%2FTemp%2FWindowsLiveWriter-429641856%2FFBCD58C434BE%2Findex.htm&amp;via=dextrology" frameborder="0" scrolling="no" allowtransparency="allowtransparency"></iframe><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dexterology.com/html-5-geo-location-api/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Adobe Flash platform summit 2010 part 1</title>
		<link>http://www.dexterology.com/adobe-flash-platform-summit-2010-part-1/</link>
		<comments>http://www.dexterology.com/adobe-flash-platform-summit-2010-part-1/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 08:30:59 +0000</pubDate>
		<dc:creator>Pranay</dc:creator>
				<category><![CDATA[miscellaneous]]></category>
		<category><![CDATA[adobesummit]]></category>

		<guid isPermaLink="false">http://www.dexterology.com/adobe-flash-platform-summit-2010-part-1/</guid>
		<description><![CDATA[&#160; Today i am attending adobe flash platform summit 2010 @ bangalore, will go for live blog post updating every talk. Ben Forta started out the event with a&#160; excellent statistics, according to ben =&#62; out of top 20 OEM 95 % using flash =&#62; 98% computer which are connected with flash =&#62; more then [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p><a href="http://www.dexterology.com/wp-content/uploads/2010/08/ben_forta.jpg"><img title="ben_forta" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="164" alt="ben_forta" src="http://www.dexterology.com/wp-content/uploads/2010/08/ben_forta_thumb.jpg" width="164" border="0" /></a> </p>
<p>Today i am attending adobe flash platform summit 2010 @ bangalore, will go for live blog post updating every talk.</p>
<p>Ben Forta started out the event with a&#160; excellent statistics, according to ben </p>
<p>=&gt; out of top 20 OEM 95 % using flash </p>
<p>=&gt; 98% computer which are connected with flash </p>
<p>=&gt; more then 3 million flash developer, 85 % of top 100 website uses flash </p>
<p>Flash is multipurpose runtime, high performance VM, incredible graphics and animation engine, advance audio video</p>
<p>He talked about Flash builder, flex builder and Adobe catalyst,&#160; Discussing about the new features of Adobe AIr Mark pointed following features</p>
<p>=&gt;offline support which makes sure the gluing </p>
<p>=&gt; Leverage local resources </p>
<p>=&gt; tight integration with hardware and os </p>
<p>=&gt; Air = Flash + installation + updates+ Local SQ:+local file access+Notification </p>
<p>He shared an interesting stats stating that <strong>300M AIR install 2.5 M air SDK download </strong></p>
<p>For flash CS 5 here are some interesting points</p>
<p>=&gt; Brand new test engine for non Latin text in flash CS5 </p>
<p>=&gt; Most imp features XML based FLAs you can share assets using FXG </p>
<p>For Adobe flex he pointed out that </p>
<p>=&gt; Mxml markup language, framework fir building application and eco system </p>
<p>=&gt; controls charts etc features were added</p>
<p>=&gt; flex builder / flash builder renamed in version 4 IDE for flex</p>
<p>He wrapped up his talk with few demos and talking about Flash Catalyst which seems to be an interesting product for designers</p>
<p>Will post the follow up talk session in few hours keep following</p>
<p>Thanks</p>
<p>Pranay</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dexterology.com/adobe-flash-platform-summit-2010-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install non market app on your android phone</title>
		<link>http://www.dexterology.com/install-non-market-app-on-your-android-phone/</link>
		<comments>http://www.dexterology.com/install-non-market-app-on-your-android-phone/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 11:12:51 +0000</pubDate>
		<dc:creator>Pranay</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[android market]]></category>
		<category><![CDATA[utilities]]></category>

		<guid isPermaLink="false">http://www.dexterology.com/install-non-market-app-on-your-android-phone/</guid>
		<description><![CDATA[&#160; There are tons of application available on android market place, but sometimes you want to install any 3rd party app which is not available in Market place. If this case is with Iphone you probably need to jailbreak it but android provides its own way and you don’t need to jailbreak your phone. Follow [...]]]></description>
			<content:encoded><![CDATA[<p><!--aiospwlwbstart<br />
aiosp_title=Install non market app on your android phone, run 3rd party app without jail breaking<br />
aiosp_keywords=android app, 3rd party android app, non market app, jailbreaking, android<br />
aiosp_description=Install 3rd party non market place application on your android phone without jailbreaking. Android supports installation of non market place apps<br />
aiospwlwbsend-->
<p>&#160;</p>
<p><a href="http://www.dexterology.com/wp-content/uploads/2010/08/images1.jpg"><img title="non market android apps" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="229" alt="non market android apps" src="http://www.dexterology.com/wp-content/uploads/2010/08/images_thumb1.jpg" width="229" border="0" /></a> There are tons of application available on android market place, but sometimes you want to install any 3rd party app which is not available in Market place. If this case is with Iphone you probably need to <a href="http://www.dexterology.com/jailbreak-iphone-ios-4-x-without-using-any-software/">jailbreak it</a> but android provides its own way and you don’t need to jailbreak your phone.</p>
<p>Follow this simple steps for installing non market apps</p>
<p>=&gt; Download the application which will have .APK extension and save it into any folder on your phone</p>
<p>=&gt; You can find lots of application which are not availbale on Market place if you search Google, <a href="http://www.droid-life.com/downloads/">droid life</a> is a site where you can find non market apps.<a href="http://www.dexterology.com/wp-content/uploads/2010/08/and61.png"><img title="non market android apps settings" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="447" alt="non market android apps settings" src="http://www.dexterology.com/wp-content/uploads/2010/08/and6_thumb1.png" width="292" border="0" /></a> =&gt; Next step is to allow your phone to install applications from outside market place, go to settings then application and check the box called unknown source</p>
<p>=&gt; Now you need to install the app you downloaded, to install any app there are few apps which can help you you can try <a href="http://www.metago.net/astro/fm/">ASTRO File manager</a>&#160;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <a href="http://www.dexterology.com/wp-content/uploads/2010/08/astro_file_manager_android_001.png"><img title="Astro File manager" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="331" alt="Astro File manager" src="http://www.dexterology.com/wp-content/uploads/2010/08/astro_file_manager_android_00_thumb1.png" width="217" border="0" /></a> <a href="http://www.dexterology.com/wp-content/uploads/2010/08/astroinstall1.png"><img title="installing app via ASTRO file manager" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="312" alt="installing app via ASTRO file manager" src="http://www.dexterology.com/wp-content/uploads/2010/08/astroinstall_thumb1.png" width="294" border="0" /></a> </p>
<p>=&gt; After installing ASTRO, launch the application, navigate to the folder where you have copied the non market app, tap the apk file, ASTRO will ask if you want to “Browse File” or “Open App Manager”. Choose App manager</p>
<p>=&gt;Click Install on the left side to install the third party app</p>
<p>You have successfully installed non market app on your phone. </p>
<p>Share any non market cool app if you know in comments</p>
<p>Thanks</p>
<p>Pranay</p>
<p> <iframe class="twitter-share-button twitter-count-horizontal" title="Twitter For Websites: Tweet Button" style="width: 110px; height: 20px" src="http://platform0.twitter.com/widgets/tweet_button.html?_=1282129670812&amp;count=horizontal&amp;lang=en&amp;text=Dexterology%20By%20Pranay%20airan%20www.dexterology.com&amp;url=file%3A%2F%2F%2FC%3A%2FDocuments%2520and%2520Settings%2Fpranay%2FLocal%2520Settings%2FTemp%2FWindowsLiveWriter-429641856%2FE1262801FC6C%2Findex.htm&amp;via=dextrology" frameborder="0" scrolling="no" allowtransparency="allowtransparency"></iframe><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dexterology.com/install-non-market-app-on-your-android-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whom do you write like?</title>
		<link>http://www.dexterology.com/whom-do-you-write-like/</link>
		<comments>http://www.dexterology.com/whom-do-you-write-like/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 20:15:18 +0000</pubDate>
		<dc:creator>Pranay</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[utilities]]></category>

		<guid isPermaLink="false">http://www.dexterology.com/whom-do-you-write-like/</guid>
		<description><![CDATA[&#160; Is your writing skills similar to a famous writer? to answer this question of yours there is a fantastic website I write like this site will help you to identify which famous writer you write like with there statistical tools. It is very simple, you simply need to put few paragraphs of your writing [...]]]></description>
			<content:encoded><![CDATA[<p><!--aiospwlwbstart<br />
aiosp_title=Which writer you write like? check which famous author you write like?<br />
aiosp_keywords=Writer, famous writer, writing comparison, i write like<br />
aiosp_description=i write like is a website which offers you a way in which you can determine which famous writer you write like?<br />
aiospwlwbsend-->
<p>&#160;</p>
<p><a href="http://www.dexterology.com/wp-content/uploads/2010/08/iwritelike1.jpg"><img title="iwritelike1" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="82" alt="iwritelike1" src="http://www.dexterology.com/wp-content/uploads/2010/08/iwritelike1_thumb.jpg" width="290" border="0" /></a> Is your writing skills similar to a famous writer? to answer this question of yours there is a fantastic website <a href="http://iwl.me/">I write like</a> this site will help you to identify which famous writer you write like with there statistical tools.</p>
<p>It is very simple, you simply need to put few paragraphs of your writing into the box on the website and click analyze </p>
<p>After analyzing it will display result with a badge of writer you write like. It only shows you the name of the writer clicking on which will take you to Amazon to show books written by that author. You need to do little search for finding more about that author.</p>
<p>In a day or so I will create a simple Yahoo API powered page where you can paste the author name and get complete details about the author.</p>
<p><a href="http://www.dexterology.com/wp-content/uploads/2010/08/iwritelike2.jpg"><img title="iwritelike2" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="175" alt="iwritelike2" src="http://www.dexterology.com/wp-content/uploads/2010/08/iwritelike2_thumb.jpg" width="426" border="0" /></a> I write like Dan Brown You can use the available badges for your website or facebook. Paste only few lines to get correct result. </p>
<p>The developer recently revealed in a blog post how the service determines the famous writer.</p>
<blockquote><p>“Actually, the algorithm is not a rocket science, and you can find it on every computer today. It’s a Bayesian classifier, which is widely used to fight spam on the Internet. Take for example the “Mark as spam” button in Gmail or Outlook. When you receive a message that you think is spam, you click this button, and the internal database gets trained to recognize future messages similar to this one as spam. This is basically how “I Write Like” works on my side: I feed it with “Frankenstein” and tell it, “This is Mary Shelley. Recognize works similar to this as Mary Shelley.” Of course, the algorithm is slightly different from the one used to detect spam, because it takes into account more stylistic features of the text, such as the number of words in sentences, the number of commas, semicolons, and whether the sentence is a direct speech or a quotation.”</p>
</blockquote>
<p><a href="http://iwl.me/">So you write like which writer?</a> </p>
<p>Thanks</p>
<p>Pranay</p>
<p> <iframe class="twitter-share-button twitter-count-horizontal" title="Twitter For Websites: Tweet Button" style="width: 110px; height: 20px" tabindex="tabindex" src="http://platform0.twitter.com/widgets/tweet_button.html?_=1282076093359&amp;count=horizontal&amp;lang=en&amp;text=Dexterology%20By%20Pranay%20airan%20www.dexterology.com&amp;url=file%3A%2F%2F%2FC%3A%2FDocuments%2520and%2520Settings%2Fpranay%2FLocal%2520Settings%2FTemp%2FWindowsLiveWriter-429641856%2FB0F6DE0798D3%2Findex.htm&amp;via=dextrology" frameborder="0" scrolling="no" allowtransparency="allowtransparency"></iframe><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dexterology.com/whom-do-you-write-like/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Android Live CD by Live Android</title>
		<link>http://www.dexterology.com/google-android-live-cd-by-live-android/</link>
		<comments>http://www.dexterology.com/google-android-live-cd-by-live-android/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 07:52:02 +0000</pubDate>
		<dc:creator>Pranay</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.dexterology.com/google-android-live-cd-by-live-android/</guid>
		<description><![CDATA[&#160; You can go and buy an android power phone like Droid or nexus one to try your hands on android, or you can install the Android SDK which comes with a phone emulator. But do you want to try Google android without installing the SDK or buying the phone? Live android helps you in [...]]]></description>
			<content:encoded><![CDATA[<p><!--aiospwlwbstart<br />
aiosp_title=Live Android, get Google android running on your laptop<br />
aiosp_keywords=Android, google, android live, Live cd, ;ive USB, android CD, Android usb, android on PC<br />
aiosp_description=Live android lets user to run android on there machine, this is very helpful for devlopers who whant to test applications in android enviorment<br />
aiospwlwbsend-->
<p>&#160;</p>
<p><a href="http://www.dexterology.com/wp-content/uploads/2010/08/AndroidLive.png"><img title="AndroidLive" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="103" alt="AndroidLive" src="http://www.dexterology.com/wp-content/uploads/2010/08/AndroidLive_thumb.png" width="321" border="0" /></a>You can go and buy an android power phone like Droid or nexus one to try your hands on android, or you can install the Android SDK which comes with a phone emulator. But do you want to try Google android without installing the SDK or buying the phone?</p>
<p><a href="http://code.google.com/p/live-android/">Live android</a> helps you in this. Live android project <strong>lets you download a LiveCD /Live USB disc&#160; of the Google Android operating system</strong>. Just burn the image and check out Android without installing it or affecting any files on your PC. Latest version of Live android is 0.3 for Live Cd and 0.2 for Live USB</p>
<p>To Download Live android there are lots of option available on <a href="http://code.google.com/p/live-android/downloads/list">this download page</a> follow this simple step to grab your copy of Live android</p>
<p>=&gt; You can download Live CD image via torrent by <a href="http://code.google.com/p/live-android/downloads/detail?name=liveandroidv0.3%20%5Bmininova%5D.torrent&amp;can=2&amp;q=">this link</a> (Live USB torrent is not available yet)</p>
<p>=&gt; If you don’t have any torrent client/torrents are blocked see my previous post <a href="http://www.dexterology.com/download-torrent-via-ftp-break-all-restrictions/">how to download torrent without torrent client</a></p>
<p>=&gt; There are alternative downloads, also available for Live android, you can download iso file directly via web, but you need to <a href="http://code.google.com/p/live-android/downloads/list">download</a> 2 files <a href="http://code.google.com/p/live-android/downloads/detail?name=liveandroidv0.2usb.iso.001&amp;can=2&amp;q=">iso.001</a> and <a href="http://code.google.com/p/live-android/downloads/detail?name=liveandroidv0.2usb.iso.002&amp;can=2&amp;q=">iso.002</a> (for both Live usb/live CD) and then join them using any tool</p>
<p>=&gt; Google recommend you to use a small freeware tool <a href="http://www.freebyte.com/hjsplit/">HJsplit</a> for joining this iso, you can download hjsplit from <a href="http://www.freebyte.com/hjsplit/">here</a></p>
<p><strong>=&gt; I recommend you to download live USB, after joining iso via HjSplit, you can use </strong><a href="https://fedorahosted.org/liveusb-creator/"><strong>Live USB creator</strong></a><strong> from fedora to create a bootable live USB Stick.</strong></p>
<p><strong></strong><a href="http://www.dexterology.com/wp-content/uploads/2010/08/liveusbcreator.png"><img title="liveusb-creator" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="444" alt="liveusb-creator" src="http://www.dexterology.com/wp-content/uploads/2010/08/liveusbcreator_thumb.png" width="442" border="0" /></a> =&gt; Use any image burning software to create live CD</p>
<p><strong>You can also use the disc image with virtual box or other virtual environment. </strong><a href=" http://www.hotshare.net/en/file/160702-876718305a.html"><strong>Here is live android</strong></a><strong> kit </strong><a href=" http://www.hotshare.net/en/file/160702-876718305a.html"><strong>all-in-one solution</strong></a><strong> from, including iso file, portable virtualbox,&#160; readme, well Google docs (via @xenodesystems)</strong></p>
<p align="center"><a href="http://www.dexterology.com/wp-content/uploads/2010/08/liveandroid.png"><img title="live-android" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="436" alt="live-android" src="http://www.dexterology.com/wp-content/uploads/2010/08/liveandroid_thumb.png" width="558" border="0" /></a>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <strong>This is how android will look when you boot it on your machine</strong></p>
<p><a href="http://code.google.com/p/live-android/w/list">Here</a> is complete user guide for how to use Live android, how to install apps etc.</p>
<p>Thanks</p>
<p>Pranay</p>
<p> <iframe class="twitter-share-button twitter-count-horizontal" title="Twitter For Websites: Tweet Button" style="width: 110px; height: 20px" tabindex="tabindex" src="http://platform0.twitter.com/widgets/tweet_button.html?_=1282030912796&amp;count=horizontal&amp;lang=en&amp;text=Dexterology%20By%20Pranay%20airan%20www.dexterology.com&amp;url=file%3A%2F%2F%2FC%3A%2FDocuments%2520and%2520Settings%2Fpranay%2FLocal%2520Settings%2FTemp%2FWindowsLiveWriter-429641856%2FBDFD366103B5%2Findex.htm&amp;via=dextrology" frameborder="0" scrolling="no" allowtransparency="allowtransparency"></iframe><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dexterology.com/google-android-live-cd-by-live-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cheat Sheets for programmers, get all quick references</title>
		<link>http://www.dexterology.com/cheat-sheets-for-programmers-get-all-quick-references/</link>
		<comments>http://www.dexterology.com/cheat-sheets-for-programmers-get-all-quick-references/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 08:29:09 +0000</pubDate>
		<dc:creator>Pranay</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[web desgining]]></category>
		<category><![CDATA[cheat sheets]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.dexterology.com/cheat-sheets-for-programmers-get-all-quick-references/</guid>
		<description><![CDATA[&#160; If you are a Developer or programmer, you often need quick reference for Commands/ Shortcuts or cheat sheets which you can refer when needed. Cheat sheets are organized references for quick look, which contains all possible information in a single page. It is quite popular among developer. Here are some useful websites which you [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p> <!--aiospwlwbstart<br />
aiosp_title=Cheat sheets for programmers, get all cheat sheets for free<br />
aiosp_keywords=Cheatsheets, html5 cheat sheat, programming cheat sheet, C, C++, java, jquery, .net, cheet sheat<br />
aiosp_description=Cheat sheets are quick reference matarial for every programmers, it helps you in programming fast<br />
aiospwlwbsend-->
<p><a href="http://www.dexterology.com/wp-content/uploads/2010/08/TMTKenoCheatSheet.gif"><img title="TMT-Keno-Cheat-Sheet" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="124" alt="TMT-Keno-Cheat-Sheet" src="http://www.dexterology.com/wp-content/uploads/2010/08/TMTKenoCheatSheet_thumb.gif" width="169" border="0" /></a> If you are a Developer or programmer, you often need quick reference for Commands/ Shortcuts or cheat sheets which you can refer when needed. Cheat sheets are organized references for quick look, which contains all possible information in a single page. It is quite popular among developer. </p>
<p>Here are some useful websites which you can use to find cheat sheet of your interest. You can download cheat sheets from this sites and then take a print out to paste it in your room</p>
<p><a href="http://refcardz.dzone.com/"><strong>1) RefcarDz</strong></a>&#160;</p>
<p>This is a good site which offers free cheat sheet for developers, This cheat sheets can be downloaded freely in PDF format. This site is divided into different zones, ranging from open source, java, .net to web designing. You can browse section wise or can use there custom search.</p>
<p><a href="http://www.quicklycode.com/"><strong>2) Quickly code</strong></a></p>
<p>Quickly code is a community driven website which runs by programmers. Cheat sheets are shared by programmer and developer, these sheets are well categorized and can be browsed through using the tag cloud or searched using a keyword. You can rate cheat sheets, quickly code also offers code snippets, widgets, tutorials, info graphics and even apps. </p>
<p><a href="http://www.cheat-sheets.org/"><strong>3) Cheat sheet.org</strong></a></p>
<p>Cheatsheet.org is simple site where all cheat sheets from different sources are categorized and collected. Its cheat sheets collection covers nearly all topics of programming.</p>
<p><strong>My personal favorite cheat sheet is of </strong><a href="http://www.smashingmagazine.com/2009/07/06/html-5-cheat-sheet-pdf/"><strong>HMTL5</strong></a><strong> from smashing magazine, you can download HTML5 cheat sheet from </strong><a href="http://www.smashingmagazine.com/2009/07/06/html-5-cheat-sheet-pdf/"><strong>here</strong></a></p>
<p>If you know any other good site for finding cheat sheet tell us about it in your comments.</p>
<p>Thanks</p>
<p>Pranay</p>
<p> <iframe class="twitter-share-button twitter-count-horizontal" title="Twitter For Websites: Tweet Button" style="width: 110px; height: 20px" tabindex="tabindex" src="http://platform0.twitter.com/widgets/tweet_button.html?_=1281947061015&amp;count=horizontal&amp;lang=en&amp;text=Dexterology%20By%20Pranay%20airan%20www.dexterology.com&amp;url=file%3A%2F%2F%2FC%3A%2FDocuments%2520and%2520Settings%2Fpranay%2FLocal%2520Settings%2FTemp%2FWindowsLiveWriter-429641856%2F48F59267BCED%2Findex.htm&amp;via=dextrology" frameborder="0" scrolling="no" allowtransparency="allowtransparency"></iframe><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dexterology.com/cheat-sheets-for-programmers-get-all-quick-references/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mediacope all in 1 media converter for free</title>
		<link>http://www.dexterology.com/mediacope-all-in-1-media-converter-for-free/</link>
		<comments>http://www.dexterology.com/mediacope-all-in-1-media-converter-for-free/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 18:43:28 +0000</pubDate>
		<dc:creator>Pranay</dc:creator>
				<category><![CDATA[Utility]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[converters]]></category>
		<category><![CDATA[media cutter]]></category>
		<category><![CDATA[utilities]]></category>

		<guid isPermaLink="false">http://www.dexterology.com/mediacope-all-in-1-media-converter-for-free/</guid>
		<description><![CDATA[&#160; Most of us often need to convert media into 1 form or another, there are lots of tools which are available but they are either very basic version or they need a license to activate. Mediacope all in 1 media converter is a free application which you can use to convert any media file [...]]]></description>
			<content:encoded><![CDATA[<p><!--aiospwlwbstart<br />
aiosp_title=Mediciope all in 1 media converter, convert all media for free<br />
aiosp_keywords=media converter, freeware, opensource, free media converter, open source video converter, free vcd cutter, free mp3 cutter, audio cutter<br />
aiosp_description=mediacope free all in 1 media converter, conver all media into format of your choice for free<br />
aiospwlwbsend-->
<p>&#160;</p>
<p><a href="http://www.dexterology.com/wp-content/uploads/2010/08/player.jpg"><img title="player" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="237" alt="player" src="http://www.dexterology.com/wp-content/uploads/2010/08/player_thumb.jpg" width="576" border="0" /></a> Most of us often need to convert media into 1 form or another, there are lots of tools which are available but they are either very basic version or they need a license to activate.</p>
<p>Mediacope all in 1 media converter is a free application which you can use to convert any media file to anything else. You don’t need to download separate converter for converting videos, audios or images. Mediacope all in 1 converter can covert all of these. The main advantage of this software is it is totally Free. </p>
<p>it can convert a YouTube video into a format that a portable video player or gaming system can play, reducing the photo sizes of the new shiny 10+ Megapixel camera so that they can be send to friends more easily or to convert audio files so that they can be played on a mobile mp3 player or cell phone.</p>
<p>It has following features:- </p>
<p><strong>=&gt; Audio converter</strong></p>
<p><strong>=&gt; video converter</strong></p>
<p><strong>=&gt; Audio/Video Player</strong></p>
<p><strong>=&gt; Audio/Video Cutter</strong></p>
<p><strong>=&gt; Photo Cutter/Resizer</strong></p>
<p><strong>=&gt; Slide show maker</strong></p>
<p><strong>=&gt; Some internet tools</strong></p>
<p>You can <a href="http://www.mediacope.com/media-cope-download.html">download</a> Mediacope all in 1 converter from <a href="http://www.mediacope.com/media-cope-download.html">here</a> </p>
<p>Thanks</p>
<p>Pranay</p>
<p> <a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="dextrology">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dexterology.com/mediacope-all-in-1-media-converter-for-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download torrent via FTP, Break all restrictions</title>
		<link>http://www.dexterology.com/download-torrent-via-ftp-break-all-restrictions/</link>
		<comments>http://www.dexterology.com/download-torrent-via-ftp-break-all-restrictions/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 13:54:40 +0000</pubDate>
		<dc:creator>Pranay</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[miscellaneous]]></category>
		<category><![CDATA[Torents]]></category>
		<category><![CDATA[utilities downloads]]></category>

		<guid isPermaLink="false">http://www.dexterology.com/download-torrent-via-ftp-break-all-restrictions/</guid>
		<description><![CDATA[&#160; Many times you want to download something from a torrent but you can’t because torrents are blocked, or there are not enough seeds, or simply you don’t have a torrent client installed in your machine. Torrific is a new way of downloading torrents from internet, It a simple website which allows you to download [...]]]></description>
			<content:encoded><![CDATA[<p><!--aiospwlwbstart<br />
aiosp_title=Downlaod toreent via FTP, break all restrictions<br />
aiosp_keywords=Torrent hacking, downlaod torrents, ftp torrents, hacking, torrents without client, no bittorrent<br />
aiosp_description=Torrific a new website which allows you to donwload torrent without using any torrent client, downlaod torrent via FTP<br />
aiospwlwbsend--><br />
<blockquote>
<p>&#160;</p>
</blockquote>
<p><a href="http://www.dexterology.com/wp-content/uploads/2010/08/torr.jpg"><img title="torr" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="244" alt="torr" src="http://www.dexterology.com/wp-content/uploads/2010/08/torr_thumb.jpg" width="188" border="0" /></a> Many times you want to download something from a torrent but you can’t because torrents are blocked, or there are not enough seeds, or simply you don’t have a torrent client installed in your machine.</p>
<p><strong><a href="http://torrific.com/">Torrific</a> </strong>is a new way of downloading torrents from internet, It a simple website which <strong>allows you to download any torrent file via FTP. </strong>You don’t need any client or any software to download from this site, this makes it very simple to download from any torrent, follow this steps: &#8211; </p>
<p>=&gt; Login to <a href="http://torrific.com/">torrific</a> and add in the URL box the torrent you want to download and click Get button</p>
<p>=&gt; If file is already in there server cache, it will allow you to download that file instantly</p>
<p>=&gt; If the file you requested is not available , then you need to wait 24 to 72 hours depending on the queue status, you will get an email alert to your account once it is available.</p>
<p>One of the major advantage of this site is you can download it at your max speed, also places where FTP downloads are allowed but torrents are blocked, this is an easy way to download things from torrent without breaking any rules. It is recommended that you use any download manager so that you can pause and resume your downloads. </p>
<p>Here is the link for Torrific : &#8211; <a href="http://torrific.com/">http://torrific.com/</a></p>
<p><strong>Disclaimer: This post is to just provide you an easy way to download from torrents, we will no be responsible if you avoid your IT policies. </strong></p>
<p>Thanks</p>
<p>Pranay</p>
<p> <iframe class="twitter-share-button twitter-count-horizontal" title="Twitter For Websites: Tweet Button" style="width: 110px; height: 20px" src="http://platform0.twitter.com/widgets/tweet_button.html?_=1281879896562&amp;count=horizontal&amp;lang=en&amp;text=Dexterology%20By%20Pranay%20airan%20www.dexterology.com&amp;url=file%3A%2F%2F%2FC%3A%2FDocuments%2520and%2520Settings%2Fpranay%2FLocal%2520Settings%2FTemp%2FWindowsLiveWriter-429641856%2FFAED3FD5CC22%2Findex.htm&amp;via=dextrology" frameborder="0" scrolling="no" allowtransparency="allowtransparency"></iframe><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dexterology.com/download-torrent-via-ftp-break-all-restrictions/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>GooReader read Google Books on your Desktop</title>
		<link>http://www.dexterology.com/gooreader-read-google-books-on-your-desktop/</link>
		<comments>http://www.dexterology.com/gooreader-read-google-books-on-your-desktop/#comments</comments>
		<pubDate>Sat, 14 Aug 2010 10:46:45 +0000</pubDate>
		<dc:creator>Pranay</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[ebook reader]]></category>
		<category><![CDATA[Google books]]></category>

		<guid isPermaLink="false">http://www.dexterology.com/gooreader-read-google-books-on-your-desktop/</guid>
		<description><![CDATA[&#160; Gooreader is a windows application that brings Google books on your desktop. There are lots of books and magazines that are available free on Google books, but Google books web interface is not that great. GooReader allows you to search, read, and even download the books and magazines you find. It enhance the display [...]]]></description>
			<content:encoded><![CDATA[<p><!--aiospwlwbstart<br />
aiosp_title=GooReader, read google books on your desktop<br />
aiosp_keywords=Google book reader, google books, offline google books, google books desktop, desktop client, downlaod google books, google books offline<br />
aiosp_description=GooReader, a desktop based google books reades which gives a nice way of reading google books offline, read google books on your desktop<br />
aiospwlwbsend-->
<p>&#160;</p>
<p><a href="http://www.dexterology.com/wp-content/uploads/2010/08/gooreader.jpg"><img title="gooreader" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="389" alt="gooreader" src="http://www.dexterology.com/wp-content/uploads/2010/08/gooreader_thumb.jpg" width="509" border="0" /></a> </p>
<p><a href="http://www.gooreader.com/">Gooreader</a> is a windows application that brings Google books on your desktop. There are lots of books and magazines that are available free on Google books, but Google books web interface is not that great. </p>
<p>GooReader allows you to search, read, and even download the books and magazines you find. It enhance the display and appearance of books and magazines available on Google books. </p>
<p><a href="http://www.dexterology.com/wp-content/uploads/2010/08/gooreader01.jpg"><img title="gooreader-01" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="419" alt="gooreader-01" src="http://www.dexterology.com/wp-content/uploads/2010/08/gooreader01_thumb.jpg" width="536" border="0" /></a> When you search for a book name in GooReader by book name or by book id, GooReader displays matching books in virtual shelves. Books with a green bookmark can be read, others can not. Clicking in a book to opens it in a nice full screen mode. </p>
<p>You can see in this video how <a href="http://www.gooreader.com/">GooReader</a> works</p>
<p><object width="540" height="385"><param name="movie" value="http://www.youtube.com/v/IlH-NH_yBOI&amp;color1=0xb1b1b1&amp;color2=0xd0d0d0&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/IlH-NH_yBOI&amp;color1=0xb1b1b1&amp;color2=0xd0d0d0&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="540" height="385"></embed></object></p>
<p>There are 2 versions of GooReader which is availbale 1 is free and other is premium version for $20 </p>
<p>You can download GooReader from <a href="http://www.gooreader.com/files/gooreader.zip">here</a></p>
<p>Thank</p>
<p>Pranay</p>
<p> <iframe class="twitter-share-button twitter-count-horizontal" title="Twitter For Websites: Tweet Button" style="width: 110px; height: 20px" tabindex="tabindex" src="http://platform0.twitter.com/widgets/tweet_button.html?_=1281782532828&amp;count=horizontal&amp;lang=en&amp;text=Dexterology%20By%20Pranay%20airan%20www.dexterology.com&amp;url=file%3A%2F%2F%2FC%3A%2FDocuments%2520and%2520Settings%2Fpranay%2FLocal%2520Settings%2FTemp%2FWindowsLiveWriter-429641856%2F9CDB5F244EC4%2Findex.htm&amp;via=dextrology" frameborder="0" scrolling="no" allowtransparency="allowtransparency"></iframe><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dexterology.com/gooreader-read-google-books-on-your-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
