<?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>Adityon &#187; Featured</title>
	<atom:link href="http://blog.adityon.com/category/featured/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.adityon.com</link>
	<description>Simpler solution for complex problem. Think different - Keshav Shetty</description>
	<lastBuildDate>Sat, 04 Jun 2011 17:32:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Random data compression &#8211; Lowerband &amp; upper band filtering</title>
		<link>http://blog.adityon.com/2011/01/random-data-compression-lowerband-upper-band-filtering/</link>
		<comments>http://blog.adityon.com/2011/01/random-data-compression-lowerband-upper-band-filtering/#comments</comments>
		<pubDate>Sun, 09 Jan 2011 15:12:25 +0000</pubDate>
		<dc:creator>Keshav Shetty</dc:creator>
				<category><![CDATA[Data compression]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[comp.compression]]></category>
		<category><![CDATA[infinity compression]]></category>
		<category><![CDATA[lossless data compression]]></category>
		<category><![CDATA[lossless random data compression]]></category>
		<category><![CDATA[magic compressor]]></category>
		<category><![CDATA[million random digit]]></category>
		<category><![CDATA[random data compression]]></category>
		<category><![CDATA[unsorting algorithm]]></category>

		<guid isPermaLink="false">http://blog.adityon.com/2011/01/random-data-compression-lowerband-upper-band-filtering/</guid>
		<description><![CDATA[Wish you all happy new year 2011.
in this article I will explain how a set of unique elements can be represented with less bits using filtering elements into two sets of upper and lower band.



Few users suggested to change the title, because title says &#8220;Random data&#8221; where as article describes about unique elements. Let me clarify that million random digit contains average 90-110 bytes of duplicate or non unique for every 256 bytes. If we could represent unique data set &#60;=202 byte(worst case), we can use remaining 54 byte to ...]]></description>
			<content:encoded><![CDATA[<p>Wish you all happy new year 2011.</p>
<p>in this article I will explain how a set of unique elements can be represented with less bits using filtering elements into two sets of upper and lower band.</p>
<table cellpadding="1" width="573" style="WIDTH: 573px; HEIGHT: 116px" border="1" cellspacing="1">
<tbody>
<tr>
<td>Few users suggested to change the title, because title says &#8220;Random data&#8221; where as article describes about unique elements. Let me clarify that million random digit contains average 90-110 bytes of duplicate or non unique for every 256 bytes. If we could represent unique data set &lt;=202 byte(worst case), we can use remaining 54 byte to represent duplicates. Refer previous article <a href="http://blog.adityon.com/2009/12/random-data-compression-is-it-possible-part-2/" target="_blank">here</a></td>
</tr>
</tbody>
</table>
<p>Coming to filtering technique, In every set of size 2^n, we will have exactly 2 set where half elements belongs to upper part and half elements belongs to lower part. e.g: In a set 256 unique values we can filter first or upper array containing element between 0 to 127 and lower array 128 to 255. By parsing and remembering using a flag(false for upper and true for lower set) weather element moved to upper or lower set we can locate the original position. Apply this method for newly created set recursively.</p>
<p>Lets take the same the input used in previous article of size 16, i.e: (7, 12, 9, 3, 13, 6, 8, 15, 1, 4, 2, 11, 0, 14, 5, 10)</p>
<p>Element 0-7 belongs to upper set and 8-15 belongs to lower set. Upper set or lower set will have equal number of elements of size (input set size)/2. When a element moves to upper set we can remember position as false and if element moves to lower set we can remember position as true. Once either upper or lower set size touches the size of the element in new set (i.e actually half of the original input size) we can stop parsing further.</p>
<p>In the above example &#8211; Total number of element=16, Size of new subset = 8, Elements in first/upper set is 0-7 and elements in lower set 8-15. After applying first time filter we get following output.</p>
<p><img src="http://blog.adityon.com/wp-content/uploads/2011/01/filter.png" style="BORDER-BOTTOM: #000000 1px solid; BORDER-LEFT: #000000 1px solid; WIDTH: 600px; DISPLAY: inline; HEIGHT: 290px; BORDER-TOP: #000000 1px solid; BORDER-RIGHT: #000000 1px solid" height="290" alt="filter.png" width="600"/></p>
<p>This method is similar to <a href="http://blog.adityon.com/2009/12/random-data-compression-is-it-possible-part-2/" target="_blank">reverse merge sort</a>, difference is here we use top to bottom approach, whereas merge sort uses bottom to up.</p>
<p>Using this method we can represent 256 unique elements and save 128 byte(best case) to 31.75 byte (worst case) as illustrated below.</p>
<p><img src="http://blog.adityon.com/wp-content/uploads/2009/12/mergesort22.png" style="BORDER-BOTTOM: #000000 1px solid; BORDER-LEFT: #000000 1px solid; WIDTH: 540px; DISPLAY: inline; HEIGHT: 234px; BORDER-TOP: #000000 1px solid; BORDER-RIGHT: #000000 1px solid" height="234" alt="mergesort2.png" width="540"/></p>
<p>Worst case happens when last element of each set belongs to other set and vice versa.</p>
<p>As I said beginning this method not sufficient to address million random digit, where I need to save at least 54 byte for every 256 byte.</p>
<p>In the next article I will write about using unidirectional graph how we can represent set of unique elements. Till then please pass your comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.adityon.com/2011/01/random-data-compression-lowerband-upper-band-filtering/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Random data compression &#8211; Risk based selection</title>
		<link>http://blog.adityon.com/2010/10/random-data-compression-risk-based-selection/</link>
		<comments>http://blog.adityon.com/2010/10/random-data-compression-risk-based-selection/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 15:39:18 +0000</pubDate>
		<dc:creator>Keshav Shetty</dc:creator>
				<category><![CDATA[Data compression]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[comp.compression]]></category>
		<category><![CDATA[infinity compression]]></category>
		<category><![CDATA[lossless data compression]]></category>
		<category><![CDATA[lossless random data compression]]></category>
		<category><![CDATA[magic compressor]]></category>
		<category><![CDATA[million random digit]]></category>
		<category><![CDATA[random data compression]]></category>
		<category><![CDATA[unsorting algorithm]]></category>

		<guid isPermaLink="false">http://blog.adityon.com/2010/10/random-data-compression-risk-based-selection/</guid>
		<description><![CDATA[In my previous article I mentioned that once tree structure is ready we can fill and generate the random input along with one bit diff encoding.
As I observed as tree reaches mid levels, available options increases to 64+ elements, which will result into minimum 6bits per selection.
With respect to million random digit this approach will result into not more than 27 duplicates can be accommodated.
We need a better approach to selecting elements instead of one bit dif encoding.
I used the modified version of one bit dif encoding, I call it ...]]></description>
			<content:encoded><![CDATA[<p>In my previous article I mentioned that once tree structure is ready we can fill and generate the random input along with one bit diff encoding.</p>
<p>As I observed as tree reaches mid levels, available options increases to 64+ elements, which will result into minimum 6bits per selection.</p>
<p>With respect to million random digit this approach will result into not more than 27 duplicates can be accommodated.</p>
<p>We need a better approach to selecting elements instead of one bit dif encoding.</p>
<p>I used the modified version of one bit dif encoding, I call it as risk based selection.</p>
<p>Lets assume that I have possible available selection (4, 9, 40, 102, 150, 165, 172, 197, 245) and actual selection was 245. Using one bit dif encoding I need 3 bit i.e &#8220;111&#8243; to select 245 among these input.</p>
<p>In risk based selection I will try to make two list with maximum numbers in one list and remaining in another list based on particular bit.</p>
<p>If you analyze below image you will understand that 4th bit in available option results into 7 zeros, If I knew 4th bit of number which I am selecting is &#8220;1&#8243; then I will left with only two remaining numbers.</p>
<p>i.e in available number 4th bit has maximum variance. (As I am aware there is other 6th bit as 1 as maximum or 7th bit as maximum zero, lets select first possibility)</p>
<p>The number which I am going to select i.e 245 has 4th bit as &#8220;1&#8243;, If I store this bit my next available options reduces to two i.e 150, 245.</p>
<p><img src="http://blog.adityon.com/wp-content/uploads/2010/10/riskbasedSelection.png" style="BORDER-BOTTOM: #000000 1px solid; BORDER-LEFT: #000000 1px solid; WIDTH: 434px; DISPLAY: inline; HEIGHT: 399px; BORDER-TOP: #000000 1px solid; BORDER-RIGHT: #000000 1px solid" height="399" alt="riskbasedSelection.png" width="434"/></p>
<p>As you can see in the image red marked bit are selected for next round. I repeat same procedure for remaining options until I am left with only one option.</p>
<p>Green box indicates 2nd level filtering. After second bit selection I will left with 245 which is the number I am looking for. This way I need only two bit (i.e &#8220;11&#8243;) to select particular node.</p>
<p>This selection is more effective than bit dif encoding which requires 3 bit compared to 2 bit.</p>
<p>Note: In worst case scenario we may end up with 8bits for each node. You can see yourself by applying this for below example</p>
<p>Assume we have these available option (1,2,4,8,16,32,64,128) and number to be selected is 1. We will end up with 8 bits.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.adityon.com/2010/10/random-data-compression-risk-based-selection/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Random data compression &#8211; Using Tree</title>
		<link>http://blog.adityon.com/2010/10/random-data-compression-using-tree/</link>
		<comments>http://blog.adityon.com/2010/10/random-data-compression-using-tree/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 11:14:12 +0000</pubDate>
		<dc:creator>Keshav Shetty</dc:creator>
				<category><![CDATA[Data compression]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[comp.compression]]></category>
		<category><![CDATA[infinity compression]]></category>
		<category><![CDATA[lossless data compression]]></category>
		<category><![CDATA[lossless random data compression]]></category>
		<category><![CDATA[magic compressor]]></category>
		<category><![CDATA[million random digit]]></category>
		<category><![CDATA[random data compression]]></category>
		<category><![CDATA[unsorting algorithm]]></category>

		<guid isPermaLink="false">http://blog.adityon.com/2010/10/random-data-compression-using-tree/</guid>
		<description><![CDATA[In this article I will explain how a B Tree can be used to model the unique numbers. This will be interesting article as best case scenario requires only 64bytes.
As you are aware B Tree or a balanced tree contains maximum two child for each node, all nodes left side will be lower than current node and all right side nodes will be higher than current node.
How can we use B Tree to model the random unique numbers?
In case of 256 unique numbers we will have 256 nodes, left most ...]]></description>
			<content:encoded><![CDATA[<p>In this article I will explain how a B Tree can be used to model the unique numbers. This will be interesting article as best case scenario requires only 64bytes.</p>
<p>As you are aware B Tree or a balanced tree contains maximum two child for each node, all nodes left side will be lower than current node and all right side nodes will be higher than current node.</p>
<p>How can we use B Tree to model the random unique numbers?</p>
<p>In case of 256 unique numbers we will have 256 nodes, left most node starts with zero and right most node 255. For each node we need two flags to identify weather it contains left node and right node.</p>
<p>Recursively we can build the tree structure. Once tree structure is ready we can fill each node with value by using pre-order traverse.</p>
<p>Lets take an example, Assume we have random 16 inputs (7, 12, 9, 3, 13, 6, 8, 15, 1, 4, 2, 11, 0, 14, 5, 10)</p>
<p>Respective tree will be</p>
<p><img src="http://blog.adityon.com/wp-content/uploads/2010/10/binaryTree.jpeg" style="BORDER-BOTTOM: #000000 1px solid; BORDER-LEFT: #000000 1px solid; WIDTH: 600px; DISPLAY: inline; HEIGHT: 427px; BORDER-TOP: #000000 1px solid; BORDER-RIGHT: #000000 1px solid" height="427" alt="binaryTree.jpeg" width="600"/></p>
<p>If we knew tree structure we can refill values of each node by starting from left most to rightmost.</p>
<p>However after building tree we need addition info find which child node appears next.</p>
<p>In the above example we are sure that 7 appeared first in the input array. Next number either 3 or 12 (one of the open child).</p>
<p>We need one bit to select either 3 or 12(That bit will be &#8220;1&#8243;). we end up with 12 as next input. Now as next input should be within 3, 9, 13. We can go on applying one bit dif encoding to select proper child.</p>
<p>Whenever a child is selected its children are added to available options for selecting next node.</p>
<p>This way we need 256bits(for node flag) + one bit dif encoding info of each child.</p>
<p><strong><span style="TEXT-DECORATION: underline">Best case and worst case scenario</span></strong></p>
<p>Using tree in best case scenario i.e each node has maximum only one node, that happens when input is in ascending order we need just 2^(n+1) bits i.e for 256 input we need 512bits or 64 bytes. JUST 64 byte for 256 unique values!!!.</p>
<p>In worst case scenario we need 64byte + bit diff info of worst case = 2047bits (i.e ~256 bytes) No saving.</p>
<p>Worst case scenario happens when child node added to available options is consumed at the end.</p>
<p>Using this technique by rearranging million random digit I could compress up to 27bytes non unique numbers. Worst than merge sort. This technique will be effective provided we find a way to increase the level of tree which results into nodes with single child more. I will write more about this later.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.adityon.com/2010/10/random-data-compression-using-tree/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Random data compression &#8211; diff encoding with merge sort</title>
		<link>http://blog.adityon.com/2010/10/random-data-compression-diff-encoding-with-merge-sort/</link>
		<comments>http://blog.adityon.com/2010/10/random-data-compression-diff-encoding-with-merge-sort/#comments</comments>
		<pubDate>Sat, 02 Oct 2010 18:12:31 +0000</pubDate>
		<dc:creator>Keshav Shetty</dc:creator>
				<category><![CDATA[Data compression]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[comp.compression]]></category>
		<category><![CDATA[infinity compression]]></category>
		<category><![CDATA[lossless data compression]]></category>
		<category><![CDATA[lossless random data compression]]></category>
		<category><![CDATA[magic compressor]]></category>
		<category><![CDATA[million random digit]]></category>
		<category><![CDATA[random data compression]]></category>
		<category><![CDATA[unsorting algorithm]]></category>

		<guid isPermaLink="false">http://blog.adityon.com/2010/10/random-data-compression-diff-encoding-with-merge-sort/</guid>
		<description><![CDATA[Last article didn&#8217;t go well with my readers, so I decided to elaborate with example.
Lets assume we have eight random input say 5, 1, 3, 1, 2, 3, 0, 5
In this input 4th, 6th and 8th element are non unique i.e they already appeared at least once.
For each number we need a identifier or a flag to identify it as unique or duplicate. So we will have bit info like 0 0 0 1 0 1 0 1
When 4th element appears which is duplicate of one of the past unique, ...]]></description>
			<content:encoded><![CDATA[<p>Last article didn&#8217;t go well with my readers, so I decided to elaborate with example.</p>
<p>Lets assume we have eight random input say 5, 1, 3, 1, 2, 3, 0, 5</p>
<p>In this input 4th, 6th and 8th element are non unique i.e they already appeared at least once.</p>
<p>For each number we need a identifier or a flag to identify it as unique or duplicate. So we will have bit info like 0 0 0 1 0 1 0 1</p>
<p>When 4th element appears which is duplicate of one of the past unique, that should exist within (5, 1, 3)</p>
<p>Similarly 6th element should exist within (5, 1, 3, 2) and same applies to 8th element which should exist within (5, 1, 3, 2, 0)</p>
<p><img src="http://blog.adityon.com/wp-content/uploads/2010/10/difencoding.png" style="BORDER-BOTTOM: #000000 1px solid; BORDER-LEFT: #000000 1px solid; BORDER-TOP: #000000 1px solid; BORDER-RIGHT: #000000 1px solid" height="417" alt="difencoding.png" width="512"/></p>
<p>Lets go back to the algorithm mentioned in my previous article.</p>
<p>1. Read 256 bytes from the input (In the above example we will read 8 input of each 3 bit)</p>
<p>2. Sequential process and mark unique and duplicates, that results into 0 0 0 1 0 1 0 1. We need to store this info to be used at the time of decompression. For above 8 input we need 8bits (for 256 input we need 256bits).</p>
<p>3. For each marked as non unique data, remember the position using one bit diff encoding.</p>
<p>i.e for 4th element which is duplicate of 2nd element, using one bit diff encoding we get &#8220;01&#8243; and for for 6th element we get &#8220;10&#8243; for 8th element we get &#8220;000&#8243;. The complete table of one bit diff encoding available <a href="http://blog.adityon.com/wp-content/uploads/2010/10/256BitDifMap.txt" target="_blank" title="256 variance of one bit dif encoding">here</a></p>
<p>4. Remove non unique data and rearrange the list by moving forward, at the end empty space fill with missing numbers. Refer above image bottom array is rearranged one.</p>
<p>Now the array contains only unique elements, we can apply reverse merge sort to sort and store these bit info.</p>
<p>So compressed file contains unique or duplicate flags generated in step(2) + one bit diff encoding info of duplicate numbers generated in above step(3) + merge sort bit info.</p>
<p>While decompressing use merge sort bit info to re create unique array and use unique or duplicate flags to note which was duplicate and then use bit dif info refill duplicates.</p>
<p>I hope this example clears many of your doubts.</p>
<p>Next article will be interesting one, which is based on B Tree.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.adityon.com/2010/10/random-data-compression-diff-encoding-with-merge-sort/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Random data compression &#8211; One bit diff encoding continued</title>
		<link>http://blog.adityon.com/2010/10/random-data-compression-one-bit-diff-encoding-continued/</link>
		<comments>http://blog.adityon.com/2010/10/random-data-compression-one-bit-diff-encoding-continued/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 12:42:14 +0000</pubDate>
		<dc:creator>Keshav Shetty</dc:creator>
				<category><![CDATA[Data compression]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[comp.compression]]></category>
		<category><![CDATA[infinity compression]]></category>
		<category><![CDATA[lossless data compression]]></category>
		<category><![CDATA[lossless random data compression]]></category>
		<category><![CDATA[magic compressor]]></category>
		<category><![CDATA[million random digit]]></category>
		<category><![CDATA[random data compression]]></category>
		<category><![CDATA[unsorting algorithm]]></category>

		<guid isPermaLink="false">http://blog.adityon.com/2010/10/random-data-compression-one-bit-diff-encoding-continued/</guid>
		<description><![CDATA[This is continuation of my previous article on Random data compression-One bit dif encoding.
Sorry for the long gap between this and last article. I was too busy.
After my my previous article many had asked how I achieved compression up to 42 bytes duplicates.
Here we go with the algorithm I used.
1. Read 256 bytes from the input.
2. Sequential process and mark unique and duplicates, we need 256 bits or 32 bytes. (Can&#8217;t stop this loss)
3. For each marked as non unique data, remember the position using one bit diff encoding. (Details ...]]></description>
			<content:encoded><![CDATA[<p>This is continuation of my <a href="http://blog.adityon.com/2010/06/random-data-compression-one-bit-diff-encoding/" target="_blank">previous article on Random data compression-One bit dif encoding</a>.</p>
<p>Sorry for the long gap between this and last article. I was too busy.</p>
<p>After my my previous article many had asked how I achieved compression up to 42 bytes duplicates.</p>
<p>Here we go with the algorithm I used.</p>
<p>1. Read 256 bytes from the input.</p>
<p>2. Sequential process and mark unique and duplicates, we need 256 bits or 32 bytes. (Can&#8217;t stop this loss)</p>
<p>3. For each marked as non unique data, remember the position using one bit diff encoding. (Details in previous article) Requires much lesser bits than 8bits depending on non unique data appearance. We will consume lesser bits if the non unique data appears at the beginning rather than at the end of the list.</p>
<p>4. Remove non unique data and rearrange the list by moving forward, at the end empty space fill with missing numbers.</p>
<p>5. Apply merge sort and store bit information of sorting data. (Refer how to use merge sort <a href="http://blog.adityon.com/2010/06/random-data-compression-is-it-possible-how-to-use-merge-sort/" target="_blank">article</a>)</p>
<p>While decompressing</p>
<p>1. Use merge sort data to recreate the unique data list.</p>
<p>2. Apply non unique flags to rearrange the list.</p>
<p>3. Use one bit dif encoding to fill duplicate or non unique numbers.</p>
<p>Using above technique I could compress random data up to 42 bytes. I repeat up to, not always. I mean if the non unique appears at the beginning of the list we can accommodate up to 42 bytes, whereas if the non unique appears at the end of the list we can hardly compress data up to 12~14bytes.</p>
<p>Note: This method is not effective for Million Random Digit from RAND. We need different approach.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.adityon.com/2010/10/random-data-compression-one-bit-diff-encoding-continued/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Bangalore city traffic police</title>
		<link>http://blog.adityon.com/2010/04/bangalore-city-traffic-police/</link>
		<comments>http://blog.adityon.com/2010/04/bangalore-city-traffic-police/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 11:59:17 +0000</pubDate>
		<dc:creator>Keshav Shetty</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Society]]></category>
		<category><![CDATA[Bangalore traffic]]></category>
		<category><![CDATA[follow traffic rules]]></category>
		<category><![CDATA[RTO]]></category>
		<category><![CDATA[Traffic signal]]></category>
		<category><![CDATA[Traffic Violations]]></category>

		<guid isPermaLink="false">http://blog.adityon.com/2010/04/bangalore-city-traffic-police/</guid>
		<description><![CDATA[[The content of this blog entry is not mine, I recieved it thru a email, thought of keeping it somewhere for readers quick reference]

Visit Bangalore city traffic police
Check your vehicle traffic violation fines here &#8220;Search for Traffic Violations&#8221;
Understand and follow all traffic sign in Bangalore and India &#8211; Traffic sign
Various spot fine &#8211; List of Traffic offences, section of law and fine amount
Traffic Provisions &#8211; Traffic Do&#8217;s &#38; Don&#8217;ts
Traffic Road Markings &#8211; Traffic Do&#8217;s &#38; Don&#8217;ts
Traffic Rules and Regulations &#8211; Traffic Do&#8217;s &#38; Don&#8217;ts
Traffic Lights &#8211; Traffic Do&#8217;s &#38; Don&#8217;ts
Traffic ...]]></description>
			<content:encoded><![CDATA[<p>[The content of this blog entry is not mine, I recieved it thru a email, thought of keeping it somewhere for readers quick reference]</p>
<p><img src="http://blog.adityon.com/wp-content/uploads/2010/04/bctp.jpg" alt="bctp.jpg" width="257" height="206" /></p>
<p>Visit <a href="http://www.bangaloretrafficpolice.gov.in/" target="_blank">Bangalore city traffic police</a></p>
<p>Check your vehicle traffic violation fines here &#8220;<a href="http://www.bangaloretrafficpolice.gov.in/BPSFineDetails/BPSFineDetails.aspx" target="_blank">Search for Traffic Violations</a>&#8221;</p>
<p>Understand and follow all traffic sign in Bangalore and India &#8211; <a href="http://www.bangaloretrafficpolice.gov.in/index.php?option=com_content&amp;view=article&amp;id=78&amp;btp=78" target="_blank">Traffic sign</a></p>
<p>Various spot fine &#8211; <a href="http://www.bangaloretrafficpolice.gov.in/index.php?option=com_content&amp;view=article&amp;id=77&amp;btp=77" target="_blank">List of Traffic offences, section of law and fine amount</a></p>
<p>Traffic Provisions &#8211; <a href="http://www.bangaloretrafficpolice.gov.in/index.php?option=com_content&amp;view=article&amp;id=84&amp;btp=84" target="_blank">Traffic Do&#8217;s &amp; Don&#8217;ts</a></p>
<p>Traffic Road Markings &#8211; <a href="http://www.bangaloretrafficpolice.gov.in/index.php?option=com_content&amp;view=article&amp;id=79&amp;btp=79" target="_blank">Traffic Do&#8217;s &amp; Don&#8217;ts</a></p>
<p>Traffic Rules and Regulations &#8211; <a href="http://www.bangaloretrafficpolice.gov.in/index.php?option=com_content&amp;view=article&amp;id=82&amp;btp=82" target="_blank">Traffic Do&#8217;s &amp; Don&#8217;ts</a></p>
<p>Traffic Lights &#8211; <a href="http://www.bangaloretrafficpolice.gov.in/index.php?option=com_content&amp;view=article&amp;id=83&amp;btp=83" target="_blank">Traffic Do&#8217;s &amp; Don&#8217;ts</a></p>
<p>Traffic Advice &#8211; <a href="http://www.bangaloretrafficpolice.gov.in/index.php?option=com_content&amp;view=article&amp;id=80&amp;btp=80" target="_blank">Traffic Do&#8217;s &amp; Don&#8217;ts</a></p>
<p>Tips on Good Driving &#8211; <a href="http://www.bangaloretrafficpolice.gov.in/index.php?option=com_content&amp;view=article&amp;id=81&amp;btp=81" target="_blank">Traffic Do&#8217;s &amp; Don&#8217;ts</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.adityon.com/2010/04/bangalore-city-traffic-police/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Random data compression &#8211; Is it possible? Part 1</title>
		<link>http://blog.adityon.com/2009/12/random-data-compression-is-it-possible-part-1/</link>
		<comments>http://blog.adityon.com/2009/12/random-data-compression-is-it-possible-part-1/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 13:55:53 +0000</pubDate>
		<dc:creator>Keshav Shetty</dc:creator>
				<category><![CDATA[Data compression]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[infinity compression]]></category>
		<category><![CDATA[Kolmogorov complexity]]></category>
		<category><![CDATA[lossless data compression]]></category>
		<category><![CDATA[lossless random data compression]]></category>
		<category><![CDATA[random data compression]]></category>
		<category><![CDATA[random data compressor]]></category>

		<guid isPermaLink="false">http://blog.adityon.com/2009/12/random-data-compression-is-it-possible/</guid>
		<description><![CDATA[Random data compression lossless &#8211; Is it possible?
The answer is NO (&#8230;. and yes!!!)
This is little lengthy blog to show and prove the difficulties and possible ways. This article divided into three section.
(Before you read further I suggest you to read Mark Nelson &#8220;The Million Random Digit Challenge&#8220;)
1. Why it is not possible to compress random data. (brief introduction to Kolmogorov theory)
2. Why it is possible (Quantum theory, matter and anti matter introduction)
3. The future for compression and possible solution with transition representation and unsorting techniques
If you want to skip ...]]></description>
			<content:encoded><![CDATA[<p><strong>Random data compression lossless &#8211; Is it possible?</strong></p>
<p>The answer is NO (&#8230;. and yes!!!)</p>
<p>This is little lengthy blog to show and prove the difficulties and possible ways. This article divided into three section.</p>
<p>(Before you read further I suggest you to read Mark Nelson &#8220;<a href="http://marknelson.us/2006/06/20/million-digit-challenge/" target="_blank">The Million Random Digit Challenge</a>&#8220;)</p>
<p>1. Why it is not possible to compress random data. (brief introduction to Kolmogorov theory)</p>
<p>2. Why it is possible (Quantum theory, matter and anti matter introduction)</p>
<p>3. The future for compression and possible solution with transition representation and unsorting techniques</p>
<p>If you want to skip this introduction and continue with next article, please click &#8211; <a href="http://blog.adityon.com/2009/12/random-data-compression-is-it-possible-part-2/">using unsorting techniques for random data compression</a>.</p>
<p><strong style="COLOR: #0000ff"><span style="TEXT-DECORATION: underline">1. Why it is not possible to compress random data. (brief introduction to Kolmogorov theory)</span></strong></p>
<p>As per pigeonhole principle &#8211; if n pigeons are put into m pigeonholes with n &gt; m, then at least one pigeonhole must contain more than one pigeon or if n&lt;m there should be at least one empty pigeonhole. In pure mathematics term &#8211; There does not exist an injective function on finite sets whose codomain is smaller than its domain</p>
<p><img src="http://blog.adityon.com/wp-content/uploads/2009/12/datacompression1.JPG" alt="datacompression1.JPG" height="283" width="307"/></p>
<p>The Russian mathematician Kolmogorov proved thru his complexity theory that &#8211; With the uniform probability distribution on the space of bitstrings of length n, the probability that a string is incompressible by c is at least 1 − 2^(-c+1) + 2^−n (More details please refer to <a href="http://en.wikipedia.org/wiki/Kolmogorov_complexity" target="_blank">wikipedia here</a>)</p>
<p>Lets take a arithmetic approach to prove the above theory.</p>
<p>The byte i.e 8 bit can represent 256 variety of data i.e 0, 1, 2, &#8230;.255 &#8211; As you can see there are totally 256 variation or possible values and assume if each one appears only once(in 256 byte) then you cannot represent all these possibilities with a domain contains smaller set than 256.</p>
<p>All existing compression algorithms can compress the data if a data set where all possibilities are not present. e.g: In a input data if only 8 <strong><span style="COLOR: #0000ff"><strong>unique</strong></span></strong> bytes present, then we just need 3 bits(0, 1, 2, &#8230;.7 &#8211; total possibilities) to represent each byte of the input data.</p>
<p>Note: Each algorithm works differently, however all existing algorithms like dictionary based, LZW, Huffman, RLE etc works based on patterns, repetitions, appearance, occurrence or uniqueness of the data.</p>
<p>People often fail to digest the simplicity of the above theory and often claim they have developed magic data compressor which can compress any type of data. (Refer <a href="http://www.faqs.org/faqs/compression-faq/part1/" target="_blank">comp.compression</a>)</p>
<p>(Note: I am not claiming any such magic compressor &#8211; but I claim such possibilities)</p>
<p><strong><span style="TEXT-DECORATION: underline"><span style="COLOR: #0000ff">2. Why do I believe that random data compression is possible?</span></span></strong></p>
<p>Don&#8217;t mistake me, I strongly believe in Kolmogorov complexity and number theory, It is impossible to develop magic compressor which can compress any type of DATA.</p>
<p>In my school days I learnt that our universe was in the form of bindurupi (in the form of dot or originated from nothing) and expanded (still expanding), generating so many possibilities and varieties. As per the quantum theory matter and anti matter joins together &#8211; during this process new variations appears. Better example is each couple produce totally different baby, the new baby is neither 100% of father or 100% of mother (or not even 50% father + 50% mother), Baby might be having few feature of father and mother and ancestors, but it also got its own uniqueness. Genes keep mutating, but based on what?</p>
<p>Note: &#8220;Nothing&#8221; doesn&#8217;t mean empty or zero, we are still not clear about nothing. In Sanskrit and Sanathan mythology it is mentioned about Brahma vidya which deals with separation of matter and anti matter.</p>
<p>A matter is a materialistic world or physical world which we can see, we can feel or we can represent, and store (Random data is also a type of matter), whereas as anti matter we cannot imagine or can be represented, even quantum theory couldn&#8217;t provide any visual way to see or feel this. (May be human beings are not yet ready to digest this because we are still living in materialistic world)</p>
<p>As per Einstein&#8217;s Energy mass relationship E = mc^2 which states &#8220;E&#8221; energy generated when a object of mass &#8220;m&#8221; is converted to energy, neither mass nor energy were conserved separately. This is basic used in Nuclear fusion.</p>
<p>Now you might be thinking &#8211; What is the relation between Einstein&#8217;s mass/energy theory and random data compression?</p>
<p>In one of the lecture Einstein mentioned that you can convert mass &#8220;m&#8221; to energy &#8220;E&#8221;, neither mass or energy is destroyable. Similarly you can <span style="COLOR: #ff8040"><strong style="COLOR: #ff0000">convert energy to matter</strong></span> !</p>
<p>One of the audience asked Einstein how is it possible to generate mass from energy? &#8211; effectively if you have enough energy you can generate any type of object like Gold, Uranium etc.</p>
<p>Einstein said it is outside the definition of Physics and a new world opens thru spiritual way to prove it. Mostly Einstein had a idea of anti matter at that time. In my view anti matter is huge energy reservoir which acted on matter to generate variety of materials we see today. (Imagine Nuclear fission of heavier material), please note I believe there should different type of antimatter similar to matter we see)</p>
<p>We heard many such information in ancient India and even current time it is believed that few got such capability to generate objects. e.g:</p>
<p>1. Pandavas had Akshya patre &#8211; to generate food <br/>2. Kamadhenu &#8211; A holy cow could provide anything sage Vasista asked for <br/>3. Devine Sri Sathya Sai Baba</p>
<p>I will not go further in spiritual way, which I cannot address properly or I have no sufficient knowledge in this area.</p>
<p>As long as we treat the material as data we cannot compress the random data, the day we find the way to represent the anti matter we can achieve this or in other words we should deal with existing random data as transition or state representation, because data is static form of Bhrahma vidya, it is anti matter which generates all variations.</p>
<p><span style="TEXT-DECORATION: underline">What does it mean transition or state representation?</span></p>
<p>There exist a huge set of static data &#8211; The size of static data is beyond the imagination of human being. The so called anti matter acts on these matter and generates new set of static data. (This is how universe is expanding?)</p>
<p>The static data is growing! then how come it is static? (I used static to represent default or initial set) During this process there is a different stage of the matter it passes thru. e.g: Radio activity material decays over a period of long time to generate another material, during this long process in the intervals we have variety of data or material, if we know the state of the item we can accurately tell the process involved in it or time involved in it, Similarly if we knew all the process it passed thru, then we can define the state of the material.</p>
<p>Kolmogorov turing machine is actually generating data from above said static data. We call it as highly random or high entropy because we cannot define it as set or within domain. We human beings not reached the stage where we can define the random. Note: Random doesn&#8217;t mean uncertainty or non guessable future, but it is predefined beyond the imagination or understanding limit of materialistic human.</p>
<p>Summary : As long as we treat the random numbers as data we cannot compress it, because number theory which applicable to data clearly proves that it is impossible. However the day if we find the way to treat them as either anti matter or state transition then we can change the way we represent the data.</p>
<p><strong><span style="COLOR: #0000ff"><strong><span style="TEXT-DECORATION: underline">3. The future for compression and possible solution with transition representation and unsorting techniques</span></strong></span></strong></p>
<p>In above section I mentioned about state or transition representation, now if we represent random data as state or transition then we will see totally different scenario or concept.</p>
<p>I will take a small portion of the static data I mentioned above, i.e a subset of 256 unique values. That mean I need 8 bits to represent all variations. If in every 256 data each value appears only once then none of the existing algorithm can compress the data. (Although such entropy chances in real time is not high, but they are highly random that cannot be compressed)</p>
<p><span style="COLOR: #800080">[I will try to prove this using conventional manner instead of mathematical form, I don't want my readers get confused with mathematical <span style="COLOR: rgb(128,0,128)">formulas</span>, I will try to avoid any use of formula or function unless it is un-avoidable].</span></p>
<p>Using a unsorting algorithm we can achieve compression of such data between 10% to 50%!!!.</p>
<p>The catch here is data set is fixed, but only their positions are different or data not organized. When all numbers are unique we need to find a way to represent original position (Which requires lesser than 8 bits per value)</p>
<p>I hope I have not confused you, let me describe in other way</p>
<p>I have a set of 256 variations and all are unique &#8211; In this scenario I need 8bits to represent each value, The values might be 250, 140, 0, 130, 239, &#8230; and so on, each value appears only once.</p>
<p>If you use any of the existing compression algorithm we cannot achieve any compression, since there is no repetition or patterns present (Highly random and each value is unique)</p>
<p>In fact most of the compressor generates compressed data in the form of above mentioned form i.e highly unique and non repeatable patterns (Close to unique within every 256 block, but not exact) A better example is random digits created by the RAND group. Please refer Mark Nelson <a href="http://marknelson.us/2006/06/20/million-digit-challenge" target="_blank">The Million Random Digit Challenge Revisited</a>. (This data is very close to each 256 variations, but not 100% unique &#8211; that is based on Kolmogorov complexity)</p>
<p>But my methods can compress such random data (Not Kolmogorov complexity or his Turing machine based random data &#8211; because it is not 100% unique within 256 block, I am yet to reach there)</p>
<p><strong><span style="COLOR: #0000ff"><strong><span style="TEXT-DECORATION: underline">What is unsorting algorithm?</span></strong></span></strong> In our graduation or engineering we studied various sorting algorithms like bubble sort, quick sort, merge sort etc, However we never came across anything called unsorting algorithm! &#8211; Why we need it?</p>
<p>Actually an unsorting algorithm is shuffling back the sorted items back into original order or position. Although such algorithms may not be that useful in real time applications, but I will demonstrate compression of 256 unique data using that.</p>
<p>If there are 256 data, then there are 256 positions that means still I need 8 bit to store each position. However unsorting algorithm is not just about placing the sorted order into original list, it also uses minimal place or storage required to represent original places.</p>
<p>Lets take merge sort, if we have list of two items, then we just need 1 bit(both best and worst case) to unsort back to original list, that bit represent which is smaller among two. If we have four items then we need 4 bits best case scenario and 5 bits in worst case, If we have 8 items then we need 12 bits best case and 17 bits worst case scenario. (Note: In case of 8 items we need actually 24 bits to represent all unique values), If we have 256 unique items we need 1024bits(128byte) best case and 1856 worst case. Actually 256 unique value requires 2048 bits. As you might observed using reverse merge sort we can achieve the compression mentioned above. I will not go in details, because it will fill another page. If you need further details please <a href="http://blog.adityon.com/contact-me/" target="_blank">contact me</a>. Please write me if you need a working code of such compression using reverse merge sort. Similar results can be obtained using reverse quick sort.</p>
<p>Above compressor works well for each value uniqueness within every 256 values, However in real time data is not that unique and Kolmogorov doesn&#8217;t guarantee that entropy within predefined set of data.</p>
<p>The above concept is same as probability theory, i.e If we toss a coin chances of getting either head or tail is 50%, However it won&#8217;t guarantee that for every two successive toss one will head and other will be tail. But over large number of toss you will end up with 50% head and 50% tail.</p>
<p>Coming back to random digits created by the RAND group &#8211; I observed for every 256 block of data uniqueness of values lies anywhere between 166 to 146, that means if we find a way to patch the missing unique number within every 256 block, then we reached the stage of random data compression, however patched unique number + unsorting information should be less than 2047 bits for every 256 block. I am still looking for such possibility.</p>
<p>Well now other approach, as I mentioned in previous section instead of representing random data as data, but as state or transition then new concept opens. i.e treat random digits of RAND group as unique transition of another process.</p>
<p>Continue reading next article &#8211; <a href="http://blog.adityon.com/2009/12/random-data-compression-is-it-possible-part-2/">using unsorting techniques for random data compression</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.adityon.com/2009/12/random-data-compression-is-it-possible-part-1/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>What is racism or racial discrimination? Who is racist?</title>
		<link>http://blog.adityon.com/2009/11/what-is-racism-or-racial-discrimination-who-is-racist/</link>
		<comments>http://blog.adityon.com/2009/11/what-is-racism-or-racial-discrimination-who-is-racist/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 17:51:00 +0000</pubDate>
		<dc:creator>Keshav Shetty</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[Society]]></category>
		<category><![CDATA[racial discrimination]]></category>
		<category><![CDATA[racism]]></category>
		<category><![CDATA[racist]]></category>

		<guid isPermaLink="false">http://blog.adityon.com/2009/11/what-is-racism-or-racial-discrimination-who-is-racist/</guid>
		<description><![CDATA[A racist is one who thinks he is smarter than God or a human who questions God.
Surprised by new definition! … Well find the reason below.




When I was coming into this world, God did not give me an option to select my race or my birth place. God neither gave me an option to select a particular geographical region or a continent or a country, nor He gave me the option of selecting my own religion. Forget the above options, He did not even give me a chance of selecting ...]]></description>
			<content:encoded><![CDATA[<p>A racist is one who thinks he is smarter than God or a human who questions God.</p>
<p><span style="COLOR: #0000ff"><strong><span style="COLOR: #0000ff"><strong>Surprised by new definition! … Well find the reason below.</strong></span></strong></span></p>
<table border="0" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<td width="200" valign="top"><img style="width: 243px; display: inline; height: 244px;" src="http://blog.adityon.com/wp-content/uploads/2009/11/racism1.jpg" alt="" width="243" height="244" /></td>
<td valign="top">When I was coming into this world, God did not give me an option to select my race or my birth place. God neither gave me an option to select a particular geographical region or a continent or a country, nor He gave me the option of selecting my own religion. Forget the above options, He did not even give me a chance of selecting my parents. It was God&#8217;s decision to select my place of birth, religion, language, race, color and gender and today I am proud to say that He chose the best possible choices for me.</p>
<p>Similarly it is also pure God&#8217;s decision when any other human being is born.</td>
</tr>
<tr>
<td colspan="2" valign="top">If I think and behave that I am superior and others are inferior to me, then I am questioning the decision of God which he has taken for others. Or indirectly I am a fool to question God that why did He decide my birth parameters.</p>
<p>If God&#8217;s decision for one human being is wrong then it implies that God&#8217;s decision for others must be wrong as well.</p>
<p>We human beings are too small to question the decision of God. God cannot differentiate or discriminate amongst his children.</p>
<p>Think rationally, if you think you are superior then you are a fool to question God . Indirectly you are the most inferior human being on earth.</p>
<p>Wake up, life is too small and not enough to love, so why hate people. A man can never be superior if he does not love or respect God&#8217;s creation and decision.</p>
<p>No human being will be ever able to question God, nor will he be able to rise above Him. So respect God&#8217;s decision and make this society a wonderful place to live in by loving and respecting others.</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://blog.adityon.com/2009/11/what-is-racism-or-racial-discrimination-who-is-racist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajmera Infinity</title>
		<link>http://blog.adityon.com/2009/11/ajmera-infinity/</link>
		<comments>http://blog.adityon.com/2009/11/ajmera-infinity/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 17:42:00 +0000</pubDate>
		<dc:creator>Keshav Shetty</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Headline]]></category>
		<category><![CDATA[Society]]></category>
		<category><![CDATA[Ajmera Infinity]]></category>
		<category><![CDATA[Bangalore real estate]]></category>
		<category><![CDATA[residential township]]></category>

		<guid isPermaLink="false">http://blog.adityon.com/2009/11/ajmera-infinity/</guid>
		<description><![CDATA[Before you plan to buy an apartment in Bangalore please read &#8220; How to buy an apartment in Bangalore &#8221; and &#8220; Money management made easy &#8220;




I have booked my apartment with Ajmera Infinity located at Electronic City.
This is the place where I am going to stay from next year.
Ajmera infinity is a residential township built around 18acres of land comprises 1000+ apartments spread over17 blocks with 19 floors, offers 2, 3 and 4BHK sky apartments.




Click on the image for higher resolution images.








I was in search of apartment for almost ...]]></description>
			<content:encoded><![CDATA[<p><span style="background-color: #c0c0c0;"><strong><span style="background-color: #c0c0c0;"><strong>Before you plan to buy an apartment in Bangalore please read &#8220;</strong> <a href="http://manishbansal.wordpress.com/2006/02/20/how-to-buy-an-apartment/" target="_blank"><strong>How to buy an apartment in Bangalore</strong></a> <strong>&#8221; and &#8220;</strong> <a href="http://greenbuck.blogspot.com/2007/09/how-to-buy-apartment-in-banaglore-i.html#" target="_blank"><strong>Money management made easy</strong></a> <strong>&#8220;</strong></span></strong></span></p>
<p><span style="background-color: #c0c0c0;"><strong><span style="background-color: #c0c0c0;"><img style="width: 300px; display: inline; height: 258px;" src="http://blog.adityon.com/wp-content/uploads/2010/02/square.jpg" alt="" width="300" height="258" /></span></strong></span></p>
<table>
<tbody>
<tr>
<td>I have booked my apartment with Ajmera Infinity located at Electronic City.</p>
<p>This is the place where I am going to stay from next year.</p>
<p>Ajmera infinity is a residential township built around 18acres of land comprises 1000+ apartments spread over17 blocks with 19 floors, offers 2, 3 and 4BHK sky apartments.</td>
<td></td>
</tr>
</tbody>
</table>
<p>Click on the image for higher resolution images.</p>
<table>
<tbody>
<tr>
<td><a href="http://blog.adityon.com/wp-content/uploads/2009/11/Infinity_2.JPG" target="_blank"><img style="width: 250px; display: inline; height: 171px;" src="http://blog.adityon.com/wp-content/uploads/2009/11/zrtn_003p5538d7ef_tn.jpg" alt="" width="250" height="171" /></a></td>
<td><a href="http://blog.adityon.com/wp-content/uploads/2009/11/Infinity_3.JPG" target="_blank"><img style="width: 250px; display: inline; height: 171px;" src="http://blog.adityon.com/wp-content/uploads/2009/11/zrtn_004ncd5fb85_tn.jpg" alt="" width="250" height="171" /></a></td>
</tr>
</tbody>
</table>
<p>I was in search of apartment for almost 2+ years, I finalised with Ajmera for following reasons.</p>
<ol>
<li>Best thing is about locality(Electronic city is landmark in Bangalore) and the concept of walk to work, (I am working at Electronic City, I assume that I will be working at Electronic City)</li>
<li>80 to 81 % carpet area efficiency, only few builders can provide.</li>
<li>86% open spaces and a nature park that plays host to over 1800 lush, full grown 20 year old trees, giving you the natural and heathly environment to live in the house.(Adds another garden to Garden city).</li>
<li>Ajmera as a builder built their company and reputation over a period of half century, Compared with other builders of same category they have minimal or zero post delivery issues.</li>
<li>Ajmera is offering world calss amenities, First time in Bangalore offering football size ground at Infinity. I am not a soccer player, I hope my childern will enjoy all such facilities. (For complete list of facilities download the brochure <a href="http://blog.adityon.com/wp-content/uploads/2009/11/Infinity-Brochure.pdf" target="_blank">here</a>)</li>
<li>Ajmera is new to Bangalore with just two projects completed, they will be more interested in building the reputation during their initial projects.</li>
<li>I checked with many of the customer of their earlier completed projects in Mumbai and their rating is best among builders in same category. (Note that Ajmera is among premium and Tire 1 builder)</li>
</ol>
<p>Why I wrote this blog?</p>
<p>I wanted to help with my findings to other customer and prospective customer to analyse and decide about their home.</p>
<p>Today in real estate business, we cannot trust the builder 100%, however we need to find the best among the crowd and value for money.</p>
<p>Afterall when I am making big investment of life, I expect more return for money, less loss and piece of mind. I hope Ajmera will keep up their good name and reputation they earned so far.</p>
<p>I loved the planned or proposed landscape, interior etc, Althoug it is not premium, but I bet when it is completed it will be the best residential township and showpiece in Bangalore.</p>
<p>Those who are seeking more information can visit below link.</p>
<ul>
<li><a href="http://www.ajmera.com/sectors/realestate/infinity/index.asp" target="_blank">Ajmera site</a></li>
<li><a href="http://property.magicbricks.com/microsite/Ajmera/" target="_blank">Magicbrick</a></li>
<li><a href="http://www.realestateindiaonline.com/members/ajmera-group.html" target="_blank">Real estate India online</a></li>
<li><a href="http://indiapropertyexpert.com/ajmera-infinity-city-electronic-city-bangalore.htm" target="_blank">India property expert</a></li>
<li><a href="http://www.99acres.com/customised/ajmerainfinity/index.htm" target="_blank">99Acres</a></li>
</ul>
<p>Also we have a yahoo group of all flat owners <a href="http://finance.groups.yahoo.com/group/ajmerainfinity/" target="_blank">http://finance.groups.yahoo.com/group/ajmerainfinity/</a>, you can seek further info from already booked customers.</p>
<p>There is two video or presentation available on you tube</p>
<ul>
<li><a href="http://www.youtube.com/watch?v=D1EuOfKVuC8" target="_blank">Ajmera infinity on NDTV</a></li>
<li><a href="http://www.youtube.com/watch?v=-LTUlQFjAuQ" target="_blank">Walk thru</a></li>
</ul>
<p>About electronic city and its locatility visit <a href="http://www.electronic-city.in/" target="_blank">EC website</a></p>
<p>I will keep updating this blog with more information in coming days. Also please comment or share with me any info you have related to Infinity, I will post it here, so that everyone will be benefited.</p>
<p>Note: This is purely my view, do not treat it as suggestion. Please make your own study and research before making your decision to invest or buy apartment in Ajmera Infinity.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.adityon.com/2009/11/ajmera-infinity/feed/</wfw:commentRss>
		<slash:comments>95</slash:comments>
		</item>
		<item>
		<title>Master of business law</title>
		<link>http://blog.adityon.com/2009/11/master-of-business-law/</link>
		<comments>http://blog.adityon.com/2009/11/master-of-business-law/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 17:40:00 +0000</pubDate>
		<dc:creator>Keshav Shetty</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[MBL]]></category>
		<category><![CDATA[master of business law]]></category>
		<category><![CDATA[national law school Bangalore India]]></category>

		<guid isPermaLink="false">http://blog.adityon.com/2009/11/master-of-business-law/</guid>
		<description><![CDATA[In todays age everyone should have some knowledge of law and judiciary system.
I decided to take up Business and corporate law as future career option.
I enrolledd to Master of business law thru distant eduation mode from National Law School, this course will exapnd my legal knowledge.
I hope I will manage my time for this additional course and will complete within next two years and start a new career as legal advisor for corporates.
Two year of this course covers

Contract Law
Banking Law
Corporate Law
Industrial Relations Law
Environmental Law
Investment Laws
Insurance Laws
Law relating to Foreign Trade
Intellectual ...]]></description>
			<content:encoded><![CDATA[<p>In todays age everyone should have some knowledge of law and judiciary system.</p>
<p>I decided to take up Business and corporate law as future career option.</p>
<p>I enrolledd to Master of business law thru distant eduation mode from National Law School, this course will exapnd my legal knowledge.</p>
<p>I hope I will manage my time for this additional course and will complete within next two years and start a new career as legal advisor for corporates.</p>
<p>Two year of this course covers</p>
<ul>
<li>Contract Law</li>
<li>Banking Law</li>
<li>Corporate Law</li>
<li>Industrial Relations Law</li>
<li>Environmental Law</li>
<li>Investment Laws</li>
<li>Insurance Laws</li>
<li>Law relating to Foreign Trade</li>
<li>Intellectual Property Law</li>
<li>Taxation of Corporations</li>
</ul>
<p>Those who are interested in this course may visit <a href="http://www.nls.ac.in/ded/academic_programmes_distance_education_courses.html" target="_blank">National Law School</a> website</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.adityon.com/2009/11/master-of-business-law/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

