<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>jShamsul.com</title>
	
	<link>http://jshamsul.com</link>
	<description>I am a web producer based in Kuala Lumpur, Malaysia. I make websites for fun and profit.</description>
	<lastBuildDate>Sun, 13 Jan 2013 15:29:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/jshamsulcom" /><feedburner:info uri="jshamsulcom" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>Removing GUI toolbar on MacVim</title>
		<link>http://jshamsul.com/2012/09/16/removing-gui-toolbar-on-macvim/</link>
		<comments>http://jshamsul.com/2012/09/16/removing-gui-toolbar-on-macvim/#comments</comments>
		<pubDate>Sat, 15 Sep 2012 18:08:11 +0000</pubDate>
		<dc:creator>jibone</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Code Editors]]></category>
		<category><![CDATA[MacVim]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://jshamsul.com/?p=254</guid>
		<description><![CDATA[I have grown to really like Vim, and on Mac I prefer MacVim. With some plugins and Solarize color theme, it&#8217;s just the way I wanted it. One particular thing I&#8217;m not too keen about is the toolbar buttons. You rarely use the mouse with with, and it&#8217;s rarely do I ever click on the [...]]]></description>
				<content:encoded><![CDATA[<p>I have grown to really like Vim, and on Mac I prefer MacVim. With some plugins and Solarize color theme, it&#8217;s just the way I wanted it. One particular thing I&#8217;m not too keen about is the toolbar buttons. You rarely use the mouse with with, and it&#8217;s rarely do I ever click on the tolbar buttons. I see it as a wasted space. If it&#8217;s gone then I&#8217;ll have more space for my codes. </p>
<p><img src="http://jshamsul.com/wp-content/uploads/2012/09/Screen-Shot-2012-09-16-at-12.30.37-AM-570x356.png" alt="" title="Screen Shot 2012-09-16 at 12.30.37 AM" width="570" height="356" class="alignnone size-large wp-image-255" /></p>
<p>Did some Googling and found out that it&#8217;s actually is as simple as updating your .vimrc file with a couple lines of code. </p>
<pre>
if has("gui_running")
	set guioptions=-t
endif
</pre>
<p><img src="http://jshamsul.com/wp-content/uploads/2012/09/Screen-Shot-2012-09-16-at-12.39.32-AM-570x342.png" alt="" title="Screen Shot 2012-09-16 at 12.39.32 AM" width="570" height="342" class="alignnone size-large wp-image-256" /></p>
<p>Perfect.</p>
]]></content:encoded>
			<wfw:commentRss>http://jshamsul.com/2012/09/16/removing-gui-toolbar-on-macvim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Managing and sharing dotfiles with Git</title>
		<link>http://jshamsul.com/2012/09/16/managing-and-sharing-dotfiles-with-git/</link>
		<comments>http://jshamsul.com/2012/09/16/managing-and-sharing-dotfiles-with-git/#comments</comments>
		<pubDate>Sat, 15 Sep 2012 17:57:43 +0000</pubDate>
		<dc:creator>jibone</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[dotfiles]]></category>
		<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://jshamsul.com/?p=249</guid>
		<description><![CDATA[Seems like all the cool kids are doing this. Creating a Git repository of their dotfiles. Here is a Git page about this behavior. &#8216;Dotfiles&#8217; are any files that its filename begins with a dot. In a Unix-like operating system this file are hidden. These type of files also are usually used for configuration setting [...]]]></description>
				<content:encoded><![CDATA[<p>Seems like all the cool kids are doing this. Creating a Git repository of their dotfiles. Here is a <a href="http://dotfiles.github.com/">Git page</a> about this behavior. &#8216;Dotfiles&#8217; are any files that its filename begins with a dot. In a Unix-like operating system this file are hidden. These type of files also are usually used for configuration setting for software or shell.   </p>
<p>Whenever I switch machines and after I had installed all necessary software I use, I copy over my dotfiles. Sometime I modified some dotfiles in one machine and copy it over to another. So managing dotfiles with a Git repository make perfect sense.  </p>
<p>I start googling for a method for managing this. Most of them seem very complicated for what I thought should be really simple. This is when I found this blog post, and decided to follow it. </p>
<p>However I only wanted to commit certain dotfiles, not all of them. So I ended up doing it manually. Here is what I did.</p>
<p>Go into home directory<br />
<code><br />
git init<br />
</code></p>
<p>And then I created a .gitignore files to ignore all files in the home directory and add specific files to track.<br />
<code><br />
/*<br />
!.gitignore<br />
!.vim/<br />
!.viminfo<br />
!.vimrc<br />
!.bash_profile<br />
</code></p>
<p>Add  and git remote, and push.  My dotfiles are here &#8211; <a href="https://github.com/jibone/Dotfiles">github.com/jibone/Dotfiles</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://jshamsul.com/2012/09/16/managing-and-sharing-dotfiles-with-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choose.my an EzyPzy project</title>
		<link>http://jshamsul.com/2012/09/01/choose-my-an-ezypzy-project/</link>
		<comments>http://jshamsul.com/2012/09/01/choose-my-an-ezypzy-project/#comments</comments>
		<pubDate>Fri, 31 Aug 2012 16:03:43 +0000</pubDate>
		<dc:creator>jibone</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Ezypzy]]></category>

		<guid isPermaLink="false">http://jshamsul.com/?p=238</guid>
		<description><![CDATA[Every living and breathing geek in the planet most probably had seen David Fincher&#8217;s film, The Social Network. The film that tells the early days of the world&#8217;s most popular website, Facebook. In the earlier part of the film there was Zuckerberg frustrated and drunk. He went on creating &#8216;Facemash&#8217; a &#8216;hot-or-not&#8217; type of website [...]]]></description>
				<content:encoded><![CDATA[<p>Every living and breathing geek in the planet most probably had seen David Fincher&#8217;s film, The Social Network. The film that tells the early days of the world&#8217;s most popular website, Facebook. </p>
<p>In the earlier part of the film there was Zuckerberg frustrated and drunk. He went on creating &#8216;Facemash&#8217; a &#8216;hot-or-not&#8217; type of website which compares two pictures of student from his collage. In the film Zuckerberg did it in a not so sober state, so how hard can it be?</p>
<p><img src="http://jshamsul.com/wp-content/uploads/2012/08/523411_10151012798751491_1577764549_n-570x365.jpg" alt="" title="523411_10151012798751491_1577764549_n" width="570" height="365" class="alignnone size-large wp-image-240" /></p>
<p>I am currently working at EzyPzy, a not so start-up company but thinks it is. In it there are EzyPzy Labs, where we do fun projects for ourselves. So just for the hack of it we tried to do a similar to Facemash type of website, but with popular Malaysian personalities.</p>
<p>We did it in two days sandwiched in between time spend doing some actual work. The result is <a href="http://choose.my/heroes/">Choose.my</a> where what you do is to choose your option.</p>
<p>You are presented with two popular Malaysian personalities and you have to choose one. You have to choose one in order to proceed to other options. We made the website sticky enough that you have to choose whatever presented to you. </p>
<p><img src="http://jshamsul.com/wp-content/uploads/2012/08/A1kT5D8CAAA2tio-570x380.png" alt="" title="A1kT5D8CAAA2tio" width="570" height="380" class="alignnone size-large wp-image-241" /><br />
<img src="http://jshamsul.com/wp-content/uploads/2012/08/A1kUZbpCAAAHaNp-570x399.png" alt="" title="A1kUZbpCAAAHaNp" width="570" height="399" class="alignnone size-large wp-image-242" /><br />
<img src="http://jshamsul.com/wp-content/uploads/2012/08/A1kWgjsCIAAVzdK-570x399.png" alt="" title="A1kWgjsCIAAVzdK" width="570" height="399" class="alignnone size-large wp-image-243" /></p>
<p>Go ahead try it out. <a href="http://choose.my/heroes/">Choose.my/heroes</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jshamsul.com/2012/09/01/choose-my-an-ezypzy-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress – get first paragraph from post</title>
		<link>http://jshamsul.com/2012/02/08/wordpress-get-first-paragraph-from-post/</link>
		<comments>http://jshamsul.com/2012/02/08/wordpress-get-first-paragraph-from-post/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 19:58:20 +0000</pubDate>
		<dc:creator>jibone</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://jshamsul.com/?p=217</guid>
		<description><![CDATA[I was being annoying to myself yet again. I wanted a WordPress loop to show only a single paragraph and a &#8216;read more&#8217; link. No, I do not want to use the &#60;!--more--&#62; tag. I know there are a couple of plugin that does this and more, I don&#8217;t one to use any plugin either. [...]]]></description>
				<content:encoded><![CDATA[<p>I was being annoying to myself yet again. I wanted a WordPress loop to show only a single paragraph and a &#8216;read more&#8217; link. No, I do not want to use the <code>&lt;!--more--&gt;<!--formatted--></code> tag. I know there are a couple of plugin that does this and more, I don&#8217;t one to use any plugin either.</p>
<p>So I decided to write my own function that would get the first paragraph from the post content to use it in the main index loop.</p>
<p>I place this in functions.php :-</p>
<pre class="prettyprint"><code>
if(!function_exists(&#039;get_the_content_first_paragraph&#039;)) :
function get_the_content_first_paragraph() {
    $content = get_the_content();
    $content = apply_filters(&#039;the_content&#039;, $content);
    $content = str_replace(&#039;]]&gt;&#039;, &#039;]]&#38;gt;&#039;, $content);
    $content_explode = explode(&quot;&lt;/p&gt;&quot;, $content);

    $c = 0; $p = count($content_explode); $return_data = &quot;&quot;;
    while($c &lt; $p) {
        $test = strip_tags($content_explode[$c]);
        if($test != &#039;&#039;) {
            $return_data = $return_data . $content_explode[$c] . &quot;&lt;/p&gt;\n&quot;;
            break;
        } else {
            $return_data = $return_data . $content_explode[$c] . &quot;&lt;/p&gt;\n&quot;;
        } $c++;
    }
    return $return_data;
}
endif;

<!--formatted--></code></pre>
<p>The first part of the function gets the content of the post formats it and split all the paragraphs into an array.</p>
<pre class="prettyprint"><code>
    $content = get_the_content();
    $content = apply_filters(&#039;the_content&#039;, $content);
    $content = str_replace(&#039;]]&gt;&#039;, &#039;]]&#38;gt;&#039;, $content);
    $content_explode = explode(&quot;&lt;/p&gt;&quot;, $content);

<!--formatted--></code></pre>
<p>I wanted to get the first paragraph of the post, however sometimes I start my post with an image, if that&#8217;s the case then I want to get the image and the paragraph that comes after that. So the next part of the function goes through the array. </p>
<p>It first strips the HTML tags in the array item. If the first array item is an image, it&#8217;ll have the <img> tag, and therefore returns empty, because we striped the HTML tag. In that case the function will return the first and the second paragraph from the post.</p>
<pre class="prettyprint"><code>
    $c = 0; $p = count($content_explode); $return_data = &quot;&quot;;
    while($c &lt; $p) {
        $test = strip_tags($content_explode[$c]);
        if($test != &#039;&#039;) {
            $return_data = $return_data . $content_explode[$c] . &quot;&lt;/p&gt;\n&quot;;
            break;
        } else {
            $return_data = $return_data . $content_explode[$c] . &quot;&lt;/p&gt;\n&quot;;
        } $c++;
    }
    return $return_data;

<!--formatted--></code></pre>
<p>If say you want to only return a single text of the first paragraph, and skips any image or embed codes, just remove the &#8216;else&#8217; statement. </p>
<p>On the loop sometimes I due want to show more than just a single paragraph, when I have the <code>&lt;!--more--&gt;<!--formatted--></code> tag on the post, so here is what I do on the loop :-</p>
<pre class="prettyprint"><code>

&lt;?php 
    if($pos = strpos($post-&gt;post_content, &#039;&lt;!--more--&gt;&#039;)) :
        the_content(__(&#039;&#039;));
    else :
        echo get_the_content_first_paragraph();
    endif;
?&gt;

<!--formatted--></code></pre>
<p>There are probably easier ways of doing this and I&#8217;m just to dumb to see it. If you due know any share in on the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://jshamsul.com/2012/02/08/wordpress-get-first-paragraph-from-post/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Yet another redesign</title>
		<link>http://jshamsul.com/2012/02/05/yet-another-redesign/</link>
		<comments>http://jshamsul.com/2012/02/05/yet-another-redesign/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 01:36:27 +0000</pubDate>
		<dc:creator>jibone</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://jshamsul.com/?p=211</guid>
		<description><![CDATA[I&#8217;ve lost count how many times I did a redesign to this website of mine. One thing for sure is that the more redesign I do, the less of a &#8216;design&#8217; it has become. Here you see me obsessed in minimalistic white-space heavy design. Less is not just more, less is better. Sort of. I&#8217;ve [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve lost count how many times I did a redesign to this website of mine. One thing for sure is that the more redesign I do, the less of a &#8216;design&#8217; it has become. Here you see me obsessed in minimalistic white-space heavy design. Less is not just more, less is better. Sort of.</p>
<p>I&#8217;ve also decided to adopt <a href="http://html5boilerplate.com/">html5boilerplate</a>, not entirely just most of the basic ideas and snippets from that project. I even keep the bright pink highlighting color, go ahead highlight my text. Since I love doing my CSS with Sass now, I use this little project on Github, <a href="https://github.com/grega/HTML5-Boilerplate-with-Sass">HTML5-Boilerplate-with-Sass</a>.  </p>
<p>I spend a large amount of time arguing with myself while doing this theme. Should I use a light border to separate items, or just a big fat white-space. You can see which route I took.</p>
<p>Here are some snapshots of how this website looks previously:- </p>
<p><img src="http://jshamsul.com/wp-content/uploads/2012/02/Screen-Shot-2012-02-04-at-9.26.20-AM-570x365.png" alt="" title="Screen Shot 2012-02-04 at 9.26.20 AM" width="570" height="365" class="alignnone size-large wp-image-212" /></p>
<p><img src="http://jshamsul.com/wp-content/uploads/2012/02/Screen-Shot-2012-02-04-at-9.26.46-AM-570x365.png" alt="" title="Screen Shot 2012-02-04 at 9.26.46 AM" width="570" height="365" class="alignnone size-large wp-image-213" /></p>
<p><img src="http://jshamsul.com/wp-content/uploads/2012/02/Screen-Shot-2012-02-04-at-9.26.20-AM-570x365.png" alt="" title="Screen Shot 2012-02-04 at 9.26.20 AM" width="570" height="365" class="alignnone size-large wp-image-212" /></p>
<p>I&#8217;ve also decided to share the code. The theme code are on a <a href="https://github.com/jibone/wp-jshamsul.com">public Github repo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jshamsul.com/2012/02/05/yet-another-redesign/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Weekend Web Project – Crowded</title>
		<link>http://jshamsul.com/2011/10/17/weekend-web-project-crowded/</link>
		<comments>http://jshamsul.com/2011/10/17/weekend-web-project-crowded/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 16:24:29 +0000</pubDate>
		<dc:creator>jibone</dc:creator>
				<category><![CDATA[Lab]]></category>
		<category><![CDATA[Crowded]]></category>
		<category><![CDATA[Foursquare]]></category>
		<category><![CDATA[Public API]]></category>

		<guid isPermaLink="false">http://jshamsul.com/?p=156</guid>
		<description><![CDATA[A silly little website that searches Foursquare checkins at a certain area on the map. It finds trending venues and display it on the map. You might have guessed it already, I&#8217;m just playing around with the Foursquare API. Try it out:- lab.jshamsul.com/crowded If there is not trending venue, use the form to jump to [...]]]></description>
				<content:encoded><![CDATA[<p>A silly little website that searches Foursquare checkins at a certain area on the map. It finds trending venues and display it on the map. You might have guessed it already, I&#8217;m just playing around with the Foursquare API. Try it out:- <a href="http://lab.jshamsul.com/crowded">lab.jshamsul.com/crowded</a></p>
<p><img src="http://jshamsul.com/wp-content/uploads/2011/10/Screen-shot-2011-10-16-at-8.19.56-PM-570x312.png" alt="" title="Screen shot 2011-10-16 at 8.19.56 PM" width="570" height="312" class="alignnone size-large wp-image-157" /></p>
<p>If there is not trending venue, use the form to jump to a certain location.  List of trending venues are displayed once you are at a location where there are a lot of checkins. </p>
<p>Some technology and API used for this project are, <a href="https://developer.foursquare.com/">Foursquare API</a>, <a href="http://code.google.com/apis/maps/documentation/javascript/">Google Map API v3</a>, <a href="http://gmaps-utility-library.googlecode.com/svn/trunk/markerclusterer/1.0/docs/reference.html">Google Map Utility Library MarkerClusterer</a>. Codes are up on <a href="https://github.com/jibone/Crowded">Github</a>, if you want to have a look.</p>
<p>Does this thing have legs? probably not. </p>
]]></content:encoded>
			<wfw:commentRss>http://jshamsul.com/2011/10/17/weekend-web-project-crowded/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am loving the Metro UI from Microsoft</title>
		<link>http://jshamsul.com/2011/09/22/i-am-liking-the-metro-ui-from-microsoft/</link>
		<comments>http://jshamsul.com/2011/09/22/i-am-liking-the-metro-ui-from-microsoft/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 04:25:57 +0000</pubDate>
		<dc:creator>jibone</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Metro]]></category>
		<category><![CDATA[UX]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">http://jshamsul.com/?p=146</guid>
		<description><![CDATA[Those who knows me personally probably know that I am an Apple/Mac centric kind of person. No, I&#8217;m not going to use the &#8216;F&#8217; word that rhythms with &#8216;boy&#8217; but I have been called that from time to time. Secretly I have a crush on the Metro UI design that Microsoft is adopting on all [...]]]></description>
				<content:encoded><![CDATA[<p>Those who knows me personally probably know that I am an Apple/Mac centric kind of person. No, I&#8217;m not going to use the &#8216;F&#8217; word that rhythms with &#8216;boy&#8217; but I have been called that from time to time.</p>
<p>Secretly I have a crush on the Metro UI design that Microsoft is adopting on all of it&#8217;s new OS devices. Even though on the Wikipedia page it says that the Metro principles were use as early as Microsoft Encrata 95, but I think it was the Zune that Metro makes its first appearance. And now you can see the user interface on Windows Phone 7. </p>
<p>The thought process behind Metro is as if the Microsoft designer folks are saying, &#8220;Look at what Apple is doing, we do the opposite.&#8221; </p>
<p>Apple has rounded corners in their icons and stuff, Microsoft&#8217;s Metro have sharp edges. Apple&#8217;s iOS is about icons of apps, Microsoft&#8217;s Metro is about tiles.  </p>
<p>Metro to me is more then just a theme you slap on an OS or software. It&#8217;s a design philosophy.</p>
<blockquote><p>&#8220;Metro is our design language. We call it metro because it is modern and clean. It is fast and in motion. It&#8217;s about content and typography. And it&#8217;s entirely authentic.&#8221;</p></blockquote>
<p>Some people says that they are annoyed with the whole lack of UI in Metro, but it is in fact the lack of &#8216;UI&#8217; that I love. There are few core principles that defines the Microsoft Metro Language, and I&#8217;ll try to go through here pretending that I know a thing or two about design. </p>
<p><img src="http://jshamsul.com/wp-content/uploads/2011/09/Screen-shot-2011-09-22-at-12.15.29-PM-570x356.png" alt="" title="Screen shot 2011-09-22 at 12.15.29 PM" width="570" height="356" class="alignnone size-large wp-image-150" /></p>
<h2>Content not chrome</h2>
<p>It is always the case that content is something that lives inside a UI wrapper. In Metro, most of the time the content itself is the UI. </p>
<p>Take an example of a dialog box. A dialog box only needs a title and the content message. In most Operating System either Windows 7, Mac OS X or Ubuntu, their dialog box have the content in the content field and the title in the title field. There is a border there separates the title and the content. Both the title sits inside a window container. The window needs to have some border on each sides. To make the window look like it is in focus there is some drop shadow on each sides. See how complicated it is to have a dialog box?</p>
<p>In Metro usually the case is that a dialog box have title and content. No chrome, just content. No gradient, just flat colors. I like the fierce reduction of unnecessary elements that Metro subscribes to. In Metro, typography is UI and so does white-spaces.</p>
<h2>Typography</h2>
<p>The title fonts usually is a little bit bigger then the content. Metro plays heavily on typography. In Metro they celebrate typography. In Metro typography is not just fonts, it is the UI. Typography done right can be beautiful. Not only that it&#8217;s attractive, it is also functional because it telling you something, you are reading from it. The right balance of weight and positioning can create a visual hierarchy. Text is not just text, text is UI.</p>
<h2>Motion</h2>
<p>This is one principles that Metro play on well. An OS needs to be fast and responsive. The key word here is responsive, because a responsive UI can give the illusion that the OS is fast, even though it might not be as fast as one would like. In metro, motions plays an important role but it&#8217;s always the case of just enough motion and not too much motion. You would want the dialog box to slides into place and stays there. You wouldn&#8217;t what to chase after a dialog box now would you?</p>
<h2>Conclusion</h2>
<p>Those were just some of the core principles of Metro that I really like. Metro lets you focus on the primary task and lets you do a lot with very little. I also like the full bleed canvas where it is as if the application is one big piece of canvas and only a section that is related to what you want to do are in focus.   </p>
<p>I like how in Metro is about presenting you with information that you need so you can glance through. Metro wants to give you what you need and stay out of the way.</p>
<p>Metro is currently taking shape on Windows 8. Based on what I&#8217;ve seen in the Developer Preview version of Windows 8, there is still a &#8216;desktop&#8217; you can go to, I wish they would eliminate this all together. The whole &#8216;desktop&#8217; and &#8216;window&#8217; metaphor is so 90s. </p>
<p>This whole post sort of reads like a love letter to Metro, can you imagine that? A self proclaim Apple fan writing a love letter to something Microsoft related.</p>
]]></content:encoded>
			<wfw:commentRss>http://jshamsul.com/2011/09/22/i-am-liking-the-metro-ui-from-microsoft/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
