<?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>My Mind Leaks &#187; Featured</title>
	<atom:link href="http://www.mymindleaks.com/blog/archives/tag/featured/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mymindleaks.com/blog</link>
	<description>Software, Programming, Architecture &#38; More</description>
	<lastBuildDate>Sun, 11 Jul 2010 05:06:20 +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>Object Oriented Programming – Encapsulation is not just hiding data!</title>
		<link>http://www.mymindleaks.com/blog/archives/object-oriented-programming-%e2%80%93-encapsulation-is-not-just-hiding-data.html</link>
		<comments>http://www.mymindleaks.com/blog/archives/object-oriented-programming-%e2%80%93-encapsulation-is-not-just-hiding-data.html#comments</comments>
		<pubDate>Mon, 09 Jun 2008 09:15:43 +0000</pubDate>
		<dc:creator>Maheshwaran Subramaniya</dc:creator>
				<category><![CDATA[Articles on Computer Science]]></category>
		<category><![CDATA[Encapsulation]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[object oriented programming]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://mymindleaks.com/?p=655</guid>
		<description><![CDATA[Continuing the Object Oriented Programming series, after writing about Abstraction, it&#8217;s time to educate about Encapsulation. Let&#8217;s first look at what is generally believed as Encapsulation? Ask your teacher, &#8220;What is Encapsulation?&#8221; You teacher would promptly say &#8220;Hiding data&#8220;. Try googling, you find just 10% of the sites will be giving you right information about [...]]]></description>
			<content:encoded><![CDATA[<p>Continuing the <a href="http://mymindleaks.com/tag/object-oriented-programming/">Object Oriented Programming</a> series, after writing about <a href="http://mymindleaks.com/programming/object-oriented-programming-abstraction/">Abstraction</a>, it&#8217;s time to educate about Encapsulation.</p>
<p>Let&#8217;s first look at what is generally believed as Encapsulation? Ask your teacher, &#8220;What is Encapsulation?&#8221; You teacher would promptly say &#8220;<strong>Hiding data</strong>&#8220;. Try googling, you find just 10% of the sites will be giving you right information about Encapsulation where most of them tends to miss out the important glitch. When one of my friends was speaking about Encapsulation, he was right in quoting the proper definition i.e. &#8220;Hiding Information&#8221;, but his understanding was not correct. If you are one of them who doesn&#8217;t understand about Encapsulation, then this article is for you.<span id="more-655"></span></p>
<p>So, what exactly the encapsulation means bro? Ok. Let we have some coffee, and we continue discuss about Encapsulation.</p>
<p style="text-align: center"><img src="http://mymindleaks.com/wp-content/uploads/2008/06/060908-0915-objectorien12.jpg" alt="060908 0915 objectorien12 Object Oriented Programming – Encapsulation is not just hiding data!"  title="Object Oriented Programming – Encapsulation is not just hiding data!" /></p>
<p>Cool, the coffee vending machine has given tasty brewed coffees. Nice coffee! Back to our discussion, here is a simple question I&#8217;d like to ask you. Why don&#8217;t you give a thought on how did this coffee vending machine worked?</p>
<p>You dropped in the coin, and the coffee came out of the machine in a beautiful coffee cup. So, why didn&#8217;t you see how the where the coffee beans, how it is prepared? You really don&#8217;t know (unless you are the one who designed the machine <img src='http://www.mymindleaks.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' title="Object Oriented Programming – Encapsulation is not just hiding data!" /> ) how things are made inside the machine, but finally you get a coffee!! Yeah don&#8217;t you see a sense of Encapsulation? So, here what is actually hidden? The Coffee beans? <strong><em>No, the way how the coffee prepared is hidden</em></strong>.</p>
<p><strong>So, Encapsulation is hiding of process; hence you hide the data. Not the vice versa.<br />
</strong></p>
<p>From the definition, <strong>Encapsulation is &#8220;Information Hiding&#8221;</strong>, the information is how <strong>something is happening</strong> inside an object? It&#8217;s just a mere <strong>data hiding concept </strong>(though it includes data hiding).</p>
<p>So, when you model this coffee vending machine, you don&#8217;t want to show out the way how a coffee is made. Isn&#8217;t it? So, you don&#8217;t want to show where the coffee beans, milk and the sugar are. Right?</p>
<p style="text-align: center"><img src="http://mymindleaks.com/wp-content/uploads/2008/06/060908-0915-objectorien22.png" alt="060908 0915 objectorien22 Object Oriented Programming – Encapsulation is not just hiding data!"  title="Object Oriented Programming – Encapsulation is not just hiding data!" /></p>
<p>So, in the CofeeVendingMachine class, prepareCoffee() is hidden and getCoffee() is made public, so that you will be able to send a request to the machine.</p>
<p>Since you have hidden the process, you don&#8217;t have any need to show how the coffee &amp; milk are mixed and how it&#8217;s been brewed. If you need a stylish design, even you can show that.</p>
<p style="text-align: center"><img src="http://mymindleaks.com/wp-content/uploads/2008/06/060908-0915-objectorien32.png" alt="060908 0915 objectorien32 Object Oriented Programming – Encapsulation is not just hiding data!"  title="Object Oriented Programming – Encapsulation is not just hiding data!" /></p>
<p>The Coffee Vending Machine encapsulates the internal process and the ingredients (data) used in the process.</p>
<p>Object Oriented Languages provides encapsulation via modifiers such as &#8220;private&#8221;, &#8220;protected&#8221;. Sometimes, volatile and transient also acts as encapsulating modifiers, but they are language specifics.</p>
<p>Encapsulation doesn&#8217;t stop just with OOP languages. The concept extends itself to the latest technology such as Webservices, Service Oriented Architecture. If you closely watch, any real world object has encapsulation in it, which the Object Oriented Programming tries to model.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymindleaks.com/blog/archives/object-oriented-programming-%e2%80%93-encapsulation-is-not-just-hiding-data.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Big Code, Good Code!</title>
		<link>http://www.mymindleaks.com/blog/archives/big-code-good-code.html</link>
		<comments>http://www.mymindleaks.com/blog/archives/big-code-good-code.html#comments</comments>
		<pubDate>Fri, 09 May 2008 01:32:57 +0000</pubDate>
		<dc:creator>Maheshwaran Subramaniya</dc:creator>
				<category><![CDATA[Articles on Computer Science]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[guide]]></category>

		<guid isPermaLink="false">http://mymindleaks.com/?p=622</guid>
		<description><![CDATA[Coding is an art! Anyone can draw, but only those who draw with the elegant have their paintings valued. Similarly any programmer can code, but a Good Program is an artistic job. I see lot of people do code, but only few actually write Good code. This means they have understood the elegance of the [...]]]></description>
			<content:encoded><![CDATA[<p><em>Coding is an art</em>! Anyone can draw, but only those who draw with the elegant have their paintings valued. Similarly any programmer can code, but a Good Program is an artistic job. I see lot of people do code, but only few actually write Good code. This means they have understood the elegance of the language and knows how to use it.</p>
<h3>Big Code &#8211; Good Code</h3>
<p>Big Code, a Good Code? Sounds awkward? A Good code I mean here is a code which runs quicker than other solutions for the same problem.</p>
<blockquote><p><strong>if T(Sol1) &lt; T(Sol2) Then, Solution 1 is a Good code</strong>., Where T is Time function , measures Time Taken</p></blockquote>
<p><em>( though there are various other constraints involved, for time being let not discuss them )</em></p>
<p>Hardcore programmers are always tries to write short programs. They couple few lines of code into one and show that they have done a great coding.  But, things are not always the way it looks. <strong><em>Short is sweet, but not always !</em></strong></p>
<p><span id="more-622"></span><br />
Look into this code, 3 solutions for one simple problem.</p>
<p><em><strong>Problem</strong>: Find the greatest of two numbers a, b</em></p>
<p style="text-align: center"><a href="http://mymindleaks.com/wp-content/uploads/2008/05/code-table1.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/05/code-table-thumb.png" border="0" alt="code table thumb Big Code, Good Code!" width="640" height="158" title="Big Code, Good Code!" /></a></p>
<h3>Million Dollar Question</h3>
<p>Which code runs faster? If you have chosen the A&#8217;s code as faster. You have correctly made a <strong>wrong decision</strong>.</p>
<p>The fastest program is the B&#8217;s program. So, 3 lines of code, still fastest code? Ok.</p>
<p>In the A&#8217;s code,  consider if a &lt; b, two operations should be performed.</p>
<ul>
<li>Compare &#8216;a&#8217; , &#8216;b&#8217;</li>
<li>Branch to Else if &#8216;a&#8217; &lt; &#8216;b&#8217;</li>
<li>Return the expression &#8216;b&#8217;</li>
</ul>
<p>But in B&#8217;s solution, we have already assigned a value to &#8216;x&#8217;. Only job is to compare and Assign. <strong>So the second operation is saved.</strong></p>
<p>In such a small code, you won&#8217;t find a big difference. But think of a macro system with MLOC ( Million Lines of Code ).</p>
<p>I will explain you by solving a bit complex problem, come on join me.</p>
<p><strong>Problem</strong>: <em>Given number &#8216;N&#8217; , split into &#8216;k&#8217; integers, such that N = k1 + k2 + k3 +&#8230;kn and k1 * k2 * k3 is maximum</em>.</p>
<p>You can try various solutions. One simple solution is</p>
<p style="text-align: center"><img src="http://mymindleaks.com/wp-content/uploads/2008/05/image-thumb.png" border="0" alt="image thumb Big Code, Good Code!" width="640" height="69" title="Big Code, Good Code!" /></p>
<p>Great code, you would be proud to write one line solution of such great problem. But wait, is your code is faster to run for N &gt; 10^10, K &gt; 10^5?</p>
<p>Consider the optimize solution</p>
<p style="text-align: center"><a href="http://mymindleaks.com/wp-content/uploads/2008/05/image1.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/05/image-thumb1.png" border="0" alt="image thumb1 Big Code, Good Code!" width="640" height="125" title="Big Code, Good Code!" /></a></p>
<p>More optimised</p>
<p style="text-align: center"><a href="http://mymindleaks.com/wp-content/uploads/2008/05/image5.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/05/image-thumb5.png" border="0" alt="image thumb5 Big Code, Good Code!" width="640" height="200" title="Big Code, Good Code!" /></a></p>
<p>The last code works much faster than any other. Try looping it for million times with various values of &#8216;N &amp; k &#8216;. and measure the time it takes to complete the million time execution.</p>
<h3>How to write a speedy code?</h3>
<p>So, this is yet another million dollar question. Take a look at the above three solutions. You will find a resemblance.</p>
<p><strong>Solution &#8211; 1 </strong>is a generalized form of other two. <strong>Solution &#8211; 3 </strong>is more detailed form of Solution &#8211; 1.</p>
<p>So, what is been detailed in the Solution 3. If you look at more closely, you will find that Solution-3 has checks for &#8216;Boundary Conditions&#8217;.</p>
<p>Boundary Conditions are very important scenarios in any Logical System. You prove that system works perfect for boundary conditions, you prove the system to work for any values between it. <strong>Similar to Mathematical Induction</strong>. So, this applies for programming too.</p>
<p>If you are able to identify the boundary conditions, and make the appropriate formula for those conditions, then you will skip unnecessary computations.</p>
<p>We will look what have save the computational cycles.</p>
<p>Lets assume, the Input are N=10, K = 2</p>
<p><strong>Using Solution-1:</strong></p>
<p>residue = 0, mid = 5</p>
<p>maxProduct = Math.pow(5+1,0) * Math.pow( 5 ,(2-0) ) = 25</p>
<p><strong>Operations performed:</strong></p>
<p><em>Note: costs are just for calculation, not exact one</em></p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/05/image3.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/05/image-thumb3.png" border="0" alt="image thumb3 Big Code, Good Code!" width="270" height="322" title="Big Code, Good Code!" /></a></p>
<ul>
<li>Math.pow</li>
<li>Addition &#8211; (5+1)</li>
<li>Math.pow</li>
<li>Subtraction &#8211; ( 2-0 )</li>
<li>Multiplication</li>
</ul>
<p>lets assume the cost for each operation is</p>
<p><strong>Using Solution-3:</strong></p>
<p>The code will branch out to the 1st if condition ( residue == 0 )</p>
<p>maxProduct = Math.pow( 5, 2) = 25</p>
<p><strong>Operations performed</strong></p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/05/image4.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/05/image-thumb4.png" border="0" alt="image thumb4 Big Code, Good Code!" width="270" height="166" title="Big Code, Good Code!" /></a></p>
<p>So, you have saved more than 55% of the computational cycles by covering up the boundary conditions.</p>
<p><strong>So, Why you need a Speedy code?</strong></p>
<p>Everyone in life loves speed. Speed bike, Speed cars ( that&#8217;s why you would love F1 ), A speedy 2 GB &#8211; Core 2 Duo Powered Machine.</p>
<p><strong>Because Speed makes you feel Good !! So does a Speedy Code will be a Good code.</strong></p>
<p>But, to achieve something you have to compromise with other factors, like I mentioned earlier.</p>
<p>If you need a 2 GB &#8211; Core 2 Duo Powered Machine, you should not consider the Money factor.</p>
<p>Similarly while you code, there are lot of other factors like</p>
<ul>
<li>Memory Management</li>
<li>Security</li>
<li>Transaction Isolations etc.,</li>
</ul>
<p>This is just a introduction, will start covering up other topics soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymindleaks.com/blog/archives/big-code-good-code.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>4 Steps to Convert any document into PDF using Google Docs</title>
		<link>http://www.mymindleaks.com/blog/archives/4-steps-to-convert-any-document-into-pdf-using-google-docs.html</link>
		<comments>http://www.mymindleaks.com/blog/archives/4-steps-to-convert-any-document-into-pdf-using-google-docs.html#comments</comments>
		<pubDate>Wed, 02 Apr 2008 02:10:56 +0000</pubDate>
		<dc:creator>Maheshwaran Subramaniya</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Converting into PDF]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[google docs]]></category>

		<guid isPermaLink="false">http://mymindleaks.com/articles/google/4-steps-to-convert-any-document-into-pdf-using-google-docs/</guid>
		<description><![CDATA[Google Docs is such a simple and powerful application which helps you to take the office docs online and work on it. In most of the cases you would have a need for PDF format of the document you work on. And probably you would have tired searching and downloading a PDF print driver or [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://docs.google.com/">Google Docs</a> is such a simple and powerful application which helps you to take the office docs online and work on it. In most of the cases you would have a need for PDF format of the document you work on. And probably you would have tired searching and downloading a PDF print driver or any PDF convertor to do it.</p>
<p align="center"><a href="http://mymindleaks.com/wp-content/uploads/2008/04/image3.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/04/image-thumb3.png" border="0" alt="image thumb3 4 Steps to Convert any document into PDF using Google Docs" width="400" height="83" title="4 Steps to Convert any document into PDF using Google Docs" /></a></p>
<p><span id="more-532"></span></p>
<p>The process of converting a document is as simple as the above picture. Just open up the Google Docs, upload the document / text file and save as PDF format and it&#8217;s done. You get a PDF document on the fly.Let us see how do we convert a document into PDF.</p>
<p>1. Open up Google docs and Click &#8216;Upload&#8217;</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/04/image4.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/04/image-thumb4.png" border="0" alt="image thumb4 4 Steps to Convert any document into PDF using Google Docs" width="249" height="125" title="4 Steps to Convert any document into PDF using Google Docs" /></a></p>
<p>2. Now you will be asked to upload the document which you want to convert either from your local system or from any website.</p>
<p>And just name the file accordingly. And click &#8216;Upload File&#8217;</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/04/image5.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/04/image-thumb5.png" border="0" alt="image thumb5 4 Steps to Convert any document into PDF using Google Docs" width="420" height="179" title="4 Steps to Convert any document into PDF using Google Docs" /></a></p>
<p>Now your document would have been uploaded and will be seen in the Google Docs Document Editor.</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/04/image6.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/04/image-thumb6.png" border="0" alt="image thumb6 4 Steps to Convert any document into PDF using Google Docs" width="420" height="310" title="4 Steps to Convert any document into PDF using Google Docs" /></a></p>
<p>3. Now select File -&gt; Download As -&gt; PDF</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/04/image7.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/04/image-thumb7.png" border="0" alt="image thumb7 4 Steps to Convert any document into PDF using Google Docs" width="418" height="375" title="4 Steps to Convert any document into PDF using Google Docs" /></a></p>
<p>4. Selecting this option will ask you for some print configurations</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/04/image8.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/04/image-thumb8.png" border="0" alt="image thumb8 4 Steps to Convert any document into PDF using Google Docs" width="395" height="290" title="4 Steps to Convert any document into PDF using Google Docs" /></a></p>
<p>Configure your options and click &#8216;Ok&#8217; and that&#8217;s Done. You will get your PDF files ready in seconds for download.</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/04/image9.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/04/image-thumb9.png" border="0" alt="image thumb9 4 Steps to Convert any document into PDF using Google Docs" width="149" height="125" title="4 Steps to Convert any document into PDF using Google Docs" /></a></p>
<p>Here is the pretty PDF document ready for you!</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/04/image10.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/04/image-thumb10.png" border="0" alt="image thumb10 4 Steps to Convert any document into PDF using Google Docs" width="420" height="341" title="4 Steps to Convert any document into PDF using Google Docs" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymindleaks.com/blog/archives/4-steps-to-convert-any-document-into-pdf-using-google-docs.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozilla Songbird &#8211; An all in one Multimedia Player</title>
		<link>http://www.mymindleaks.com/blog/archives/mozilla-songbird-an-all-in-one-multimedia-player.html</link>
		<comments>http://www.mymindleaks.com/blog/archives/mozilla-songbird-an-all-in-one-multimedia-player.html#comments</comments>
		<pubDate>Sun, 23 Mar 2008 17:27:42 +0000</pubDate>
		<dc:creator>Maheshwaran Subramaniya</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Mozilla Songbird]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Songbird]]></category>

		<guid isPermaLink="false">http://mymindleaks.com/mozilla-songbird-an-all-in-one-multimedia-player/</guid>
		<description><![CDATA[Mozilla Songbird a fantastic multimedia player which can play any kind of video, audio formats. I&#8217;ve switched to Songbird few weeks back and started exploring it. It&#8217;s amazing!! It plays all kind of file formats in my notebook. From MP3, MP4, WAV, AVI, MPG etc. Songbird is built on plugins, which allows you to attach [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.songbirdnest.com/"><img style="margin: 0px 0px 0px 20px" alt="create addon Mozilla Songbird   An all in one Multimedia Player" align="right" src="http://addons.songbirdnest.com/images/create-addon.gif" title="Mozilla Songbird   An all in one Multimedia Player" />Mozilla Songbird</a> a fantastic multimedia player which can play any kind of video, audio formats. I&#8217;ve switched to Songbird few weeks back and started exploring it. It&#8217;s amazing!! It plays all kind of file formats in my notebook. From MP3, MP4, WAV, AVI, MPG etc. Songbird is built on plugins, which allows you to attach any songbird plugin and play any kind of file format. And cool thing is It also supports IPod sync. </p>
<h3>Songbird a Music Mashups</h3>
<p>Songbird is a desktop media player mashed-up with the Web. It provides a feature to browser any music, video site, and drag drop any kind of song or video file. So it saves the time of downloading the file through a download manager, and importing the files to a playlist.</p>
<p><img border="0" alt="image42 Mozilla Songbird   An all in one Multimedia Player" src="http://mymindleaks.com/wp-content/uploads/2008/03/image42.png" width="240" height="175" title="Mozilla Songbird   An all in one Multimedia Player" />&#160; <img border="0" src="http://www.songbirdnest.com/files/themes/gespaa_customized/images/songbird-04/screenshots/win-mashtape.jpg" width="240" height="177" title="Mozilla Songbird   An all in one Multimedia Player" alt="win mashtape Mozilla Songbird   An all in one Multimedia Player" /></p>
<p>&#160;</p>
<h3>Cool Features</h3>
<ul>
<li>Sync with iPod </li>
<li>Browse any sites inside Songbird </li>
<li>Add any music or video into Songbird while your browse in the Songbird Browser. So you don&#8217;t need to download separately and then import into the player.</li>
<li>You don&#8217;t require any special codecs to play the files. All you need is plugins which you will get in the <a href="http://addons.songbirdnest.com/">plugin repository</a>. </li>
</ul>
<p>Like Mozilla Firefox, Songbird is also released as a OpenSource and evolving as a music platform, where in you can build lots of plugins for playing anykind of media, visualizations etc.Songbird provides a public playground for Web media mash-ups by providing developers with both desktop and Web APIs, developer resources and fostering Open Web media standards, to wit, an Open Media Web.</p>
<p>You can find a handful of add-ons for songbird in the <a href="http://addons.songbirdnest.com/">Songbird Nest</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymindleaks.com/blog/archives/mozilla-songbird-an-all-in-one-multimedia-player.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Firefox 3 and IE 7 Stops Google Adsense</title>
		<link>http://www.mymindleaks.com/blog/archives/firefox-3-and-ie-7-stops-google-adsense.html</link>
		<comments>http://www.mymindleaks.com/blog/archives/firefox-3-and-ie-7-stops-google-adsense.html#comments</comments>
		<pubDate>Sat, 22 Mar 2008 03:13:15 +0000</pubDate>
		<dc:creator>Maheshwaran Subramaniya</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Firefox 3]]></category>
		<category><![CDATA[Google Adsense certificate error]]></category>
		<category><![CDATA[Internet Explorer 7]]></category>

		<guid isPermaLink="false">http://mymindleaks.com/firefox-3-and-ie-7-stops-google-adsense/</guid>
		<description><![CDATA[Firefox 3 blocks Google Adsense and want to filter it as a exceptional Website or warns to quit the site! Funny!!! I wonder why Google hasn&#8217;t updated it&#8217;s Security Certificate? This even occurs with IE 7+. If you have tried it! Firefox 3 stopping Google Adsense click on the image for maximizing click on the [...]]]></description>
			<content:encoded><![CDATA[<p>Firefox 3 blocks Google Adsense and want to filter it as a exceptional Website or warns to quit the site! Funny!!!</p>
<p>I wonder why Google hasn&#8217;t updated it&#8217;s Security Certificate?</p>
<p>This even occurs with IE 7+. If you have tried it!</p>
<p>Firefox 3 stopping Google Adsense</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/03/image38.png" rel="lightbox"><img src="http://mymindleaks.com/wp-content/uploads/2008/03/image-thumb27.png" alt="Firefox 3 Blocks Google Adsense" border="0" height="125" width="188" title="Firefox 3 and IE 7 Stops Google Adsense" /></a></p>
<p style="font-size: xx-small">click on the image for maximizing</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/03/image40.png" rel="lightbox"><img src="http://mymindleaks.com/wp-content/uploads/2008/03/image-thumb29.png" alt="Firefox 3 issue a warning on Google Adsense" border="0" height="240" width="237" title="Firefox 3 and IE 7 Stops Google Adsense" /></a></p>
<p style="font-size: xx-small">click on the image for maximizing</p>
<p>Internet Explorer 7 stopping Google Adsense</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/03/image39.png" rel="lightbox"><img src="http://mymindleaks.com/wp-content/uploads/2008/03/image-thumb28.png" alt="IE 7 blocks Google adsense" border="0" height="125" width="180" title="Firefox 3 and IE 7 Stops Google Adsense" /></a></p>
<p style="font-size: xx-small">click on the image for maximizing</p>
<p><span style="display: none; visibility: hidden" id="wikEdSetupFlag"></span><span style="display: none; visibility: hidden" id="wikEdDiffSetupFlag"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymindleaks.com/blog/archives/firefox-3-and-ie-7-stops-google-adsense.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Test your web design in 63 browsers and 4 Operating Systems</title>
		<link>http://www.mymindleaks.com/blog/archives/test-your-web-design-in-63-browsers-and-4-operating-systems.html</link>
		<comments>http://www.mymindleaks.com/blog/archives/test-your-web-design-in-63-browsers-and-4-operating-systems.html#comments</comments>
		<pubDate>Wed, 19 Mar 2008 15:53:15 +0000</pubDate>
		<dc:creator>Maheshwaran Subramaniya</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[blog design test]]></category>
		<category><![CDATA[Browsershots]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://mymindleaks.com/test-your-web-design-in-63-browsers-and-4-operating-systems/</guid>
		<description><![CDATA[You have a great blog, cool design and good layout. Have you ever worried how does your blog look like in Cross Operating system and Cross browsers? Here&#8217;s a great service for you. Browsershots provides a cool service which makes you to see how your blog looks in various browsers and different operating systems like [...]]]></description>
			<content:encoded><![CDATA[<p><img border="0" align="right" width="266" src="http://mymindleaks.com/wp-content/uploads/2008/03/image-thumb23.png" alt="image thumb23 Test your web design in 63 browsers and 4 Operating Systems" height="125" title="Test your web design in 63 browsers and 4 Operating Systems" /></p>
<p>You have a great blog, cool design and good layout. Have you ever worried how does your blog look like in Cross Operating system and Cross browsers? Here&#8217;s a great service for you. <a href="http://browsershots.org/">Browsershots</a> provides a cool service which makes you to see how your blog looks in various browsers and different operating systems like ( Linux, Mac, Win ) etc. In total you can view your sites in 63 browsers ( just counted ) and 4 major operating systems.</p>
<p>Once if you have submitted your requests, all the screenshots will be captured and will be made ready. And all those screenshots will be available for a period of 30 minutes from the time when the screenshot is available for you and you can still extend the time limit if you want.</p>
<p><span id="more-433"></span></p>
<p>Also they it will list you how long will it take to process each of your request in the given browser and operating systems.</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/03/image35.png"><img border="0" width="435" src="http://mymindleaks.com/wp-content/uploads/2008/03/image-thumb24.png" alt="image thumb24 Test your web design in 63 browsers and 4 Operating Systems" height="229" title="Test your web design in 63 browsers and 4 Operating Systems" /></a></p>
<p>Sample screenshot in Safari ( click for bigger size ).</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/03/image36.png"rel="lightbox" ><img border="0" width="160" src="http://mymindleaks.com/wp-content/uploads/2008/03/image-thumb25.png" alt="image thumb25 Test your web design in 63 browsers and 4 Operating Systems" height="460" title="Test your web design in 63 browsers and 4 Operating Systems" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymindleaks.com/blog/archives/test-your-web-design-in-63-browsers-and-4-operating-systems.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Web 2.0, Lazy yet Powerful &#8211; Part 2</title>
		<link>http://www.mymindleaks.com/blog/archives/web-20-lazy-yet-powerful-part-2.html</link>
		<comments>http://www.mymindleaks.com/blog/archives/web-20-lazy-yet-powerful-part-2.html#comments</comments>
		<pubDate>Mon, 10 Mar 2008 14:25:36 +0000</pubDate>
		<dc:creator>Maheshwaran Subramaniya</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[advantages of Web 2.0]]></category>
		<category><![CDATA[blogosphere]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[pull technology]]></category>
		<category><![CDATA[push technology]]></category>

		<guid isPermaLink="false">http://mymindleaks.com/web-20-lazy-yet-powerful-part-2/</guid>
		<description><![CDATA[Courtesy: mil8 Continue reading my first part of the post, in this post I will be exploring the new generation of communication experience. The poster is the collage of the twitter users and followers. Keep yourself updated &#8211; The Twitter Magic Next came the Twitter, Pownce kind of services which made the information live to [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img src="http://farm3.static.flickr.com/2334/2049761489_66ec8a40f3.jpg?v=0" alt=" Web 2.0, Lazy yet Powerful   Part 2" width="420" height="260" title="Web 2.0, Lazy yet Powerful   Part 2" /></p>
<p align="center">Courtesy: <a href="http://www.flickr.com/photos/mil8/2049761489/">mil8</a></p>
<p><a href="http://mymindleaks.com/web-20-lazy-yet-powerful-part-1/"title="Web 2.0, Lazy yet Powerful" >Continue reading my first part of the post</a>, in this post I will be exploring the new generation of communication experience. The poster is the collage of the twitter users and followers.</p>
<p><span id="more-367"></span></p>
<h3>Keep yourself updated &#8211; The Twitter Magic</h3>
<p>Next came the Twitter, Pownce kind of services which made the information live to the users. You get the information on your desktop or mobile whenever they are generated. Do you know, In <strong>MacWorld Expo</strong> while <a href="http://mashable.com/2008/01/15/macworld-twitter-crash/">Steve Jobs delivering his Keynote the Twitter has crashed!</a> This is the influence of Twitter.</p>
<p>About above stuffs are termed as TumbleLogs. TumbleLogs? Yeah small brother of Weblog or Blog!!! Even I&#8217;ve <a href="http://maheshexp.tumblr.com/">my tumble log</a> in <a href="http://tumblr.com">Tumblr</a> to record small information, events, photos instantly.</p>
<p>But <a href="http://twitter.com/maheshexp" target="_blank">Twitter</a> goes one step a head and make you the information available right from it&#8217;s generation.</p>
<p>Twitter pushing you the information to your desktop ( through GTalk )</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/03/image18.png"><img src="http://mymindleaks.com/wp-content/uploads/2008/03/image18-thumb.png" border="0" alt="image[18]" width="240" height="125" title="Web 2.0, Lazy yet Powerful   Part 2" /></a></p>
<p><a href="http://pownce.com/maheshexp">Pownce</a> is another push message service, which offers more than Twitter and slowly grabbing the market share of <a href="http://twitter.com/maheshexp"title="Twitter" >Twitter</a>.</p>
<h3>&#8216;Face&#8217;Book is Index of your <strong>Friend&#8217;s </strong>Mind</h3>
<p>If you are a facebook or orkut user , you could very well see the updates on your home page of the profile. Those updates are about your friends and contacts , those who have changed, modified, added something in their profile.</p>
<p>Facebook makes things very open, it will update you each and every activity of what your contacts / friends does. Facebook updating your friends activities on your home page.</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/03/image31.png"rel="lightbox" ><img src="http://mymindleaks.com/wp-content/uploads/2008/03/image3-thumb.png" border="0" alt="Facebook displaying details of the friend" width="240" height="220" title="Web 2.0, Lazy yet Powerful   Part 2" /></a></p>
<p>Orkut keeping you posted on your friends update.</p>
<p><a href="http://mymindleaks.com/wp-content/uploads/2008/03/image11.png"rel="lightbox" ><img src="http://mymindleaks.com/wp-content/uploads/2008/03/image11-thumb.png" border="0" alt="Orkut displaying details of my friends" width="240" height="237" title="Web 2.0, Lazy yet Powerful   Part 2" /></a></p>
<p>Now, you would feel and even nod with me that this Era is making you Lazy , more, more and more..but powerful..more, more and more</p>
<p>But of course this is one of the major advantage of this Era, where information chases us.</p>
<p>Though Orkut and Facebook are connecting people, LinkedIn and Plaxo are helping you to keep updated with your friends, contacts, your business network and server you more. There was post from Amit on <a href="http://www.labnol.org/software/download/check-flickr-twitter-facebook-automatically-with-8hands/2125/">how to manage various social profile through one service &#8211; 8hands</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymindleaks.com/blog/archives/web-20-lazy-yet-powerful-part-2.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Web 2.0, Lazy yet Powerful &#8211; Part 1</title>
		<link>http://www.mymindleaks.com/blog/archives/web-20-lazy-yet-powerful-part-1.html</link>
		<comments>http://www.mymindleaks.com/blog/archives/web-20-lazy-yet-powerful-part-1.html#comments</comments>
		<pubDate>Sun, 09 Mar 2008 05:49:53 +0000</pubDate>
		<dc:creator>Maheshwaran Subramaniya</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[advantages of Web 2.0]]></category>
		<category><![CDATA[blogosphere]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[pull technology]]></category>
		<category><![CDATA[push technology]]></category>

		<guid isPermaLink="false">http://mymindleaks.com/web-20-lazy-yet-powerful-part-1/</guid>
		<description><![CDATA[Courtesy: pandemia Lazy &#38; Powerful. One who is lazy can&#8217;t be powerful. But Web 2.0 makes you lazy and yet makes your more powerful. This is what I could term this Era. Sounds crazy? Yeah, the time and effort put by you on searching an information is considerably reduced, and things comes searching you to [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img width="400" src="http://farm1.static.flickr.com/124/354115832_6025a5e19d.jpg?v=0" height="286" title="Web 2.0, Lazy yet Powerful   Part 1" alt=" Web 2.0, Lazy yet Powerful   Part 1" /></p>
<p align="center">Courtesy: <a href="http://www.flickr.com/photos/pandemia/354115832/" title="Web 2.0 will make you lazy">pandemia</a></p>
<p><strong>Lazy &amp; Powerful</strong>. One who is lazy can&#8217;t be powerful. But Web 2.0 makes you lazy and yet makes your more powerful. This is what I could term this Era. Sounds crazy? Yeah, the time and effort put by you on searching an information is considerably reduced, and things comes searching you to your desktop, mobile, and what ever gadgets you own. You get your product details on your mobile, email, desktop chat client and everywhere you go. This is the time where you don&#8217;t searching the information, but make the information search for you.</p>
<p><span id="more-358"></span></p>
<p>Yeah, Internet with the help of Web 2.0 have re-modelled itself to the <strong>information pushers</strong>.</p>
<p>From Telephone to Mobile SMS, it was the same feeling when one had it on their hand. &#8220;Wow, I could get information or get connected to my friend instantly!!!&#8221;</p>
<p>It&#8217;s the same Wow, that you will utter in this Web 2.0 world too. The era of Pull technology is now getting obsolete. The domination of Yahoo and Microsoft&#8217;s search engine domination came to end and new breed of technology motive came into existence termed &#8216;Google&#8217;, which started improving the web a better place and very very competitive place. Welcome to the world of <strong>&#8216;Push Technology</strong>&#8216;.</p>
<p>When the version of Web ticked to 2.0, things started changing.</p>
<h3>Clock ticked from Web 1.0 to Web 2.0</h3>
<p>Blogs are the first move towards the Lazy Era. TypePad, Moveable Type, Blogger, WordPress are predominant blog platform that helped a social move in the blogosphere and started the collaboration between people around the world. Then came the RSS feed technique, which came with every blog and made the connectivity and information sharing more easier. Then RSS feed model got stabilized, standardized and inherited ( XML features ) got unimaginable famous due to it&#8217;s flexible of usage and support.</p>
<p>Then, came the Readers for RSS kind of feeds ( Kind of? Yeah there are Atom feeds too ). The famous Desktop Feed Readers like FeedDemon, OmeaReader was rocking and still rocking. Recently move to make FeedDemon as feed is a welcome.</p>
<p>Then with the developments in Web 2.0, Online Feed Readers started mushrooming. Bloglines, Google Reader are the few which can be named as best of the online readers. I&#8217;ve both Bloglines and Google Reader accounts and I feel Google Reader is far more simple and flexible.</p>
<p>The <a href="http://feeds.feedburner.com/mymindleaks"target="_blank" >RSS feeds</a> were generally generated once in a day or whenever a new blog entries are made. Unless you track a live blogger you won&#8217;t get the information instantly.</p>
<table border="0" width="554" cellPadding="2" cellSpacing="0">
<tr>
<td width="552" vAlign="top">Bloglines</td>
</tr>
<tr>
<td width="552" vAlign="top"><img border="0" width="450" src="http://mymindleaks.com/wp-content/uploads/2008/03/image41.png" alt="image41 Web 2.0, Lazy yet Powerful   Part 1" height="170" title="Web 2.0, Lazy yet Powerful   Part 1" /></td>
</tr>
<tr>
<td width="552" vAlign="top"><strong>Google Reader</strong></td>
</tr>
<tr>
<td width="552" vAlign="top"><img border="0" width="450" src="http://mymindleaks.com/wp-content/uploads/2008/03/image10.png" alt="image10 Web 2.0, Lazy yet Powerful   Part 1" height="169" title="Web 2.0, Lazy yet Powerful   Part 1" /></td>
</tr>
</table>
<p>Though not sophisticated as Desktop Readers, they inherited the advantages of the Internet and Web 2.0.</p>
<p><a href="http://mymindleaks.com/web-20-lazy-yet-powerful-part-2/" title="Web 2.0, Lazy yet Powerful - Part 2">Continue Reading Part 2</a>..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymindleaks.com/blog/archives/web-20-lazy-yet-powerful-part-1.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Google Calendar &#8211; A Get Things Done , TODO and Micro Journal</title>
		<link>http://www.mymindleaks.com/blog/archives/google-calendar-a-get-things-done-todo-and-micro-journal.html</link>
		<comments>http://www.mymindleaks.com/blog/archives/google-calendar-a-get-things-done-todo-and-micro-journal.html#comments</comments>
		<pubDate>Sat, 23 Feb 2008 13:30:12 +0000</pubDate>
		<dc:creator>Maheshwaran Subramaniya</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Calendar]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Calendar]]></category>
		<category><![CDATA[Micro Journal]]></category>
		<category><![CDATA[TODO]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I would praise Google Calendar as one of the best Calendar, TODO, GTD( Get Things Done ) , Micro Journal kind of application that I&#8217;m using for a quite long time. Google Calendar lets you to create events future or past and make the event to be reminded at a given interval. Google Calendar communicates [...]]]></description>
			<content:encoded><![CDATA[<p>I would praise Google Calendar as one of the best Calendar, TODO, GTD( Get Things Done ) , Micro Journal kind of application that I&#8217;m using for a quite long time.</p>
<p><a href="http://maheshexp.files.wordpress.com/2007/12/image.png"><img width="304" src="http://maheshexp.files.wordpress.com/2007/12/image-thumb.png" alt="image thumb Google Calendar   A Get Things Done , TODO and Micro Journal" height="244" style="border-width: 0pt" title="Google Calendar   A Get Things Done , TODO and Micro Journal" /></a></p>
<p>Google Calendar lets you to create events future or past and make the event to be reminded at a given interval. Google Calendar communicates the event through various means of communication. i.e through Email, through SMS and even Popup Message in the system if your event is a short period.</p>
<p><a href="http://maheshexp.files.wordpress.com/2007/12/image1.png"><img width="378" src="http://maheshexp.files.wordpress.com/2007/12/image-thumb1.png" alt="image thumb1 Google Calendar   A Get Things Done , TODO and Micro Journal" height="149" style="border-width: 0pt" title="Google Calendar   A Get Things Done , TODO and Micro Journal" /></a><br />
<span id="more-320"></span><br />
Also color coded label for each category of event makes my job easier to identify the events and items.</p>
<p><a href="http://maheshexp.files.wordpress.com/2007/12/image2.png"><img width="176" src="http://maheshexp.files.wordpress.com/2007/12/image-thumb2.png" alt="image thumb2 Google Calendar   A Get Things Done , TODO and Micro Journal" height="188" style="border-width: 0pt" title="Google Calendar   A Get Things Done , TODO and Micro Journal" /></a></p>
<p>Also you can change the view of your calendar as Daily, Weekly, Monthly and Agenda format to view and organize the items. Also it lists down the events of Next 7 Days.</p>
<p><a href="http://maheshexp.files.wordpress.com/2007/12/image3.png"><img width="644" src="http://maheshexp.files.wordpress.com/2007/12/image-thumb3.png" alt="image thumb3 Google Calendar   A Get Things Done , TODO and Micro Journal" height="102" style="border-width: 0pt" title="Google Calendar   A Get Things Done , TODO and Micro Journal" /></a></p>
<p>Google Calendar allows you to publish your calendar and you can mark which group of items can be published. So this helps to keep others updated of my schedule and common friends birth day.</p>
<p><a href="http://maheshexp.files.wordpress.com/2007/12/image4.png"><img width="389" src="http://maheshexp.files.wordpress.com/2007/12/image-thumb4.png" alt="image thumb4 Google Calendar   A Get Things Done , TODO and Micro Journal" height="299" style="border-width: 0pt" title="Google Calendar   A Get Things Done , TODO and Micro Journal" /></a></p>
<p>Google Calendar has become my integral part of my life as it used as my Micro Journal, which records my personal and life&#8217;s event and cheries my life when I look back at it!!! <img src='http://www.mymindleaks.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' title="Google Calendar   A Get Things Done , TODO and Micro Journal" /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymindleaks.com/blog/archives/google-calendar-a-get-things-done-todo-and-micro-journal.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why you won&#8217;t love MacBook Air</title>
		<link>http://www.mymindleaks.com/blog/archives/why-you-wont-love-macbook-air.html</link>
		<comments>http://www.mymindleaks.com/blog/archives/why-you-wont-love-macbook-air.html#comments</comments>
		<pubDate>Mon, 18 Feb 2008 18:53:18 +0000</pubDate>
		<dc:creator>Maheshwaran Subramaniya</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[drabacks]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[macbook]]></category>
		<category><![CDATA[macbook-air]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[thinnovation]]></category>

		<guid isPermaLink="false">http://mymindleaks.com/why-you-wont-love-macbook-air/</guid>
		<description><![CDATA[By the time I start publishing this post, you might find few Anti-MacBook Air post around blogosphere. For serious Mac Lovers, Developers of MacBook Air and Steve Jobs. Hey sorry dudes, I don&#8217;t mark any harm on writing this post on the Apple&#8217;s new MacBook Air.If any one of you people supposed to see it, [...]]]></description>
			<content:encoded><![CDATA[<p>By the time I start publishing this post, you might find few Anti-MacBook Air post around blogosphere.</p>
<blockquote><p>For serious Mac Lovers, Developers of MacBook Air and Steve Jobs. Hey sorry dudes, I don&#8217;t mark any harm on writing this post on the Apple&#8217;s new MacBook Air.If any one of you people supposed to see it, just take it sportive <img src='http://www.mymindleaks.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' title="Why you wont love MacBook Air" /> </p></blockquote>
<p><span id="more-317"></span></p>
<h2 align="center"></h2>
<h2 align="center">The Innovation &#8211; Thinnovation</h2>
<p align="center">&nbsp;</p>
<p><img align="center" width="430" src="http://maheshexp.files.wordpress.com/2008/01/image46.png?w=640&amp;h=162" alt=" Why you wont love MacBook Air" height="110" title="Why you wont love MacBook Air" /> </p>
<p style="font-size: x-small">Courtesy: Apple</p>
<p>Ok, let me come to the post. Hope many would have seen / heard / known about the MacWorld Expo&#8217;s new products. Unlike last year Apple didn&#8217;t fail to create hype in their products. Last year it was iPhone and this year &#8220;MacBook Air&#8221;. For those who wonder yet another MacBook? It&#8217;s not just &#8220;MacBook&#8221; it&#8217;s &#8220;MacBook Air&#8221;. What&#8217;s so special about it? It&#8217;s the world&#8217;s thinnest notebook.</p>
<p><embed wmode="transparent" height="355" width="425" src="http://www.youtube.com/v/GBCfW9-hjKI&amp;rel=0&amp;color1=0xd6d6d6&amp;color2=0xf0f0f0&amp;border=0"></embed></p>
<p style="font-size: x-small">Courtesy: MichealStockMore&#8217;s Video at YouTube</p>
<p>You sound Wow!!! Yeah, it&#8217;s cool, it&#8217;s sexy and what not. Apple rocks really.</p>
<blockquote><p><em>And you know something, before the SteveJobs explore the MacBook Air in MacWorld, Wired Magazine had revealed it&#8217;s assumption about the new notebook ( which was about 95% correct). ThinkMac Website which did same kind of activity for last year&#8217;s MacWorld ( revealing iPhone before the Expo ) had been shutdown few months back. That&#8217;s Different story.</em></p></blockquote>
<p>Now you will love the MacBook Air for all the reason of it&#8217;s slim ( ok..ok..ultra slim ) look. But..But&#8230;there are reasons why you won&#8217;t love MacBook Air.</p>
<h3>Limited Memory space</h3>
<p>Yeah you have only two options on selecting your Hard disk drive and No option on your RAM memory. You can&#8217;t get 160GB or 250 GB HDD, just you have to pack things with the 80GB HDD shipped. You have plenty of RAM , 2 GB of memory , but still you have no option of upgrading it.</p>
<h3>Only one USB</h3>
<p>You have only one USB port and I&#8217;m sure you can&#8217;t be with it.</p>
<h3>No CD-DVD Drive</h3>
<p>Damn sure that this will make you upset a lot. It&#8217;s a move or a kind of trick to leave you without CDROM / DVD Drive. So either you have to make use of the iTunes store to rent movies, or get another PC/Mac/MacBook which has CDROM with Wireless, so that you can transfer the data. But the main idea is to force you to use the iTunes.</p>
<h3>Sealed Battery &#8211; Means no battery replacement</h3>
<p>Apple guarantee good battery life and 5 hours of working battery. But there are chances of defective pieces, in such cases you have to completely change your MacBook Air.</p>
<h3>No Ethernet, No FireWire, No Microphone</h3>
<p>You don&#8217;t have either of these. No Ethernet, will make you out of connectivity if you don&#8217;t have a Wireless Modem or Router. Apple forces you to make use of Wireless. They guess probably you might get one AirPort device. And finally it cost high $1799, you could get either MacBook Pro or a iMac or some other well configured Notebook / PC for this price. So, don&#8217;t bury your money with the MacBook Air.</p>
<blockquote><p>Remember All that glitters are not Gold</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.mymindleaks.com/blog/archives/why-you-wont-love-macbook-air.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
