<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by gmhafiz</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Thu, 04 Jun 2026 14:49:26 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Which long term telco for tac number</title>
            <link>http://forum.lowyat.net/topic/3302560</link>
            <description>guys,&lt;br /&gt;&lt;br /&gt;I&amp;#39;m going overseas for long term and I thought about maybank&amp;#39;s requirement of local phone number for MSOS/tac number when I decide to use maybank2u. I need a hassle-free telco that gives long term validity (&amp;gt; 1 year).&lt;br /&gt;&lt;br /&gt;I&amp;#39;m currently using umobile but they need RM200 for roaming deposit. I looked into celcom and they want Rm30 for 1 year credit validity or Rm50 for two years on top of minimum Rm15 for roaming.&lt;br /&gt;&lt;br /&gt;Which is the best telco for my scenario and which plan?</description>
            <author>gmhafiz</author>
            <category>Mobile Phones and Tablets</category>
            <pubDate>Sun, 27 Jul 2014 18:39:17 +0800</pubDate>
        </item>
        <item>
            <title>linked list function</title>
            <link>http://forum.lowyat.net/topic/3286407</link>
            <description>I have a linked list with a series of nodes containing values from 2 to 20&lt;br /&gt;[1]-&amp;gt;[2]-&amp;gt;[3]-&amp;gt;[4]-&amp;gt;[5]-&amp;gt;[6]-&amp;gt;[7]-&amp;gt;[8]-&amp;gt;[9]-&amp;gt;[10]-&amp;gt;[11-&amp;gt;[12]-&amp;gt;[13]-&amp;gt;[14]-&amp;gt;[15]-&amp;gt;[16]-&amp;gt;[17]-&amp;gt;[18]-&amp;gt;[19-&amp;gt;[20]-&amp;gt;[X]&lt;br /&gt;&lt;br /&gt;I want to move all double digits to the front so that it&amp;#39;ll become like this&lt;br /&gt;[10]-&amp;gt;[11-&amp;gt;[12]-&amp;gt;[13]-&amp;gt;[14]-&amp;gt;[15]-&amp;gt;[16]-&amp;gt;[17]-&amp;gt;[18]-&amp;gt;[19]-&amp;gt;[20]-&amp;gt;[1]-&amp;gt;[2]-&amp;gt;[3]-&amp;gt;[4]-&amp;gt;[5]-&amp;gt;[6]-&amp;gt;[7]-&amp;gt;[8]-&amp;gt;[9]-&amp;gt;[X]&lt;br /&gt;&lt;br /&gt;Here&amp;#39;s what I&amp;#39;ve done:&lt;br /&gt;&lt;br /&gt;I managed to get just one node at the end to move to the front. But I can&amp;#39;t figure out how to move all double digits to the front.&lt;br /&gt;&lt;br /&gt;list.h&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;typedef struct _node *link; &amp;nbsp;&lt;br /&gt; &lt;br /&gt;typedef struct _node {&lt;br /&gt; &amp;nbsp; &amp;nbsp;int value;&lt;br /&gt;	link next;&lt;br /&gt;} node;&lt;br /&gt; &lt;br /&gt;typedef struct _list {&lt;br /&gt; &amp;nbsp; &amp;nbsp;link head;&lt;br /&gt;} *list; &lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;list.c&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;#include &amp;#60;stdio.h&amp;#62;&lt;br /&gt;#include &amp;#60;stdlib.h&amp;#62;&lt;br /&gt;#include &amp;#60;assert.h&amp;#62;&lt;br /&gt;#include &amp;#34;list.h&amp;#34;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;link createNode&amp;#40;int value&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp;link newNode = malloc&amp;#40;sizeof&amp;#40;node&amp;#41;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;newNode-&amp;#62;value = value;&lt;br /&gt; &amp;nbsp; &amp;nbsp;newNode-&amp;#62;next = NULL;&lt;br /&gt; &amp;nbsp; &amp;nbsp;return newNode;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void showList &amp;#40;list l&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp;assert &amp;#40;l &amp;#33;= NULL&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;link curr = l-&amp;#62;head;&lt;br /&gt; &amp;nbsp; &amp;nbsp;while &amp;#40;curr &amp;#33;= NULL&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;printf&amp;#40;&amp;#34;&amp;#91;%d&amp;#93;-&amp;#62;&amp;#34;, curr-&amp;#62;value&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;curr = curr-&amp;#62;next;&lt;br /&gt; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp; &amp;nbsp;printf&amp;#40;&amp;#34;&amp;#91;X&amp;#93;&amp;#092;n&amp;#34;&amp;#41;;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;int numItems&amp;#40;list l&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp;assert &amp;#40;l &amp;#33;= NULL&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;int i = 0;&lt;br /&gt; &amp;nbsp; &amp;nbsp;link curr = l-&amp;#62;head;&lt;br /&gt; &amp;nbsp; &amp;nbsp;while &amp;#40;curr &amp;#33;= NULL&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;i++;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;curr = curr-&amp;#62;next;&lt;br /&gt; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp; &amp;nbsp;return i;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void append &amp;#40;list l, int value&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp;link newNode = malloc&amp;#40;sizeof&amp;#40;node&amp;#41;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;newNode-&amp;#62;value = value;&lt;br /&gt; &amp;nbsp; &amp;nbsp;newNode-&amp;#62;next = NULL;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;if &amp;#40;l-&amp;#62;head == NULL&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;l-&amp;#62;head = newNode;&lt;br /&gt; &amp;nbsp; &amp;nbsp;} else {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;link curr = l-&amp;#62;head;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;while &amp;#40;curr-&amp;#62;next &amp;#33;= NULL&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;curr = curr-&amp;#62;next; &lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;curr-&amp;#62;next = newNode;&lt;br /&gt; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void frontInsert &amp;#40;list l, int value&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp;link newNode = malloc&amp;#40;sizeof&amp;#40;node&amp;#41;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;newNode-&amp;#62;value = value;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;//link them up&lt;br /&gt; &amp;nbsp; &amp;nbsp;link oldHead = l-&amp;#62;head;&lt;br /&gt; &amp;nbsp; &amp;nbsp;newNode-&amp;#62;next = oldHead;&lt;br /&gt; &amp;nbsp; &amp;nbsp;l-&amp;#62;head = newNode;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;link backToFront &amp;#40;list l&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp;if &amp;#40;l-&amp;#62;head == NULL &amp;#124;&amp;#124; l-&amp;#62;head-&amp;#62;next == NULL&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;return l-&amp;#62;head; &amp;nbsp;&lt;br /&gt; &amp;nbsp; &amp;nbsp;} &lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;// assign variables&lt;br /&gt; &amp;nbsp; &amp;nbsp;link curr = l-&amp;#62;head;&lt;br /&gt; &amp;nbsp; &amp;nbsp;link prev = NULL;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;// go to the end &lt;br /&gt; &amp;nbsp; &amp;nbsp;while &amp;#40;curr-&amp;#62;next &amp;#33;= NULL&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;prev = curr;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;curr = curr-&amp;#62;next;&lt;br /&gt; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp; &amp;nbsp;// arrange link&lt;br /&gt; &amp;nbsp; &amp;nbsp;prev-&amp;#62;next = NULL;&lt;br /&gt; &amp;nbsp; &amp;nbsp;curr-&amp;#62;next = l-&amp;#62;head;&lt;br /&gt; &amp;nbsp; &amp;nbsp;l-&amp;#62;head = curr; &amp;nbsp;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;return curr;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void moveDoubleDigitToFront &amp;#40;list l&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp;// link curr to head&lt;br /&gt; &amp;nbsp; &amp;nbsp;// loop curr till it find double digit&lt;br /&gt; &amp;nbsp; &amp;nbsp;// &lt;br /&gt; &amp;nbsp; &amp;nbsp;if &amp;#40;l-&amp;#62;head == NULL &amp;#124;&amp;#124; l-&amp;#62;head-&amp;#62;next == NULL&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return l-&amp;#62;head;&lt;br /&gt; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;link curr = l-&amp;#62;head;&lt;br /&gt; &amp;nbsp; &amp;nbsp;link prev = NULL;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;while &amp;#40;curr-&amp;#62;next &amp;#60; value-&amp;#62;10&amp;#41; { // This is where I get stuck&lt;br /&gt; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void testList&amp;#40;void&amp;#41; {&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;int main &amp;#40;int argc, char *arv&amp;#91;&amp;#93;&amp;#41; {&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;// Creates empty list&lt;br /&gt; &amp;nbsp; &amp;nbsp;list myList = malloc&amp;#40;sizeof&amp;#40;*myList&amp;#41;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;myList-&amp;#62;head = NULL;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;showList&amp;#40;myList&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;assert&amp;#40;numItems&amp;#40;myList&amp;#41; == 0&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;&lt;br /&gt; &amp;nbsp; &amp;nbsp;link newNode = malloc&amp;#40;sizeof&amp;#40;node&amp;#41;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;newNode-&amp;#62;value = 2;&lt;br /&gt; &amp;nbsp; &amp;nbsp;newNode-&amp;#62;next=NULL;&lt;br /&gt; &amp;nbsp; &amp;nbsp;myList-&amp;#62;head = newNode;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;printf&amp;#40;&amp;#34;&amp;#092;n&amp;#34;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;showList&amp;#40;myList&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;assert&amp;#40;numItems&amp;#40;myList&amp;#41; == 1&amp;#41;;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 3&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 4&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 5&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 6&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 7&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 8&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 9&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 10&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 11&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 12&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 13&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 14&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 15&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 16&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 17&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 18&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 19&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;append&amp;#40;myList, 20&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;printf&amp;#40;&amp;#34;&amp;#092;n&amp;#34;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;showList&amp;#40;myList&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;assert&amp;#40;numItems&amp;#40;myList&amp;#41; == 19&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;frontInsert&amp;#40;myList, 1&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;printf&amp;#40;&amp;#34;&amp;#092;n&amp;#34;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;showList&amp;#40;myList&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;assert&amp;#40;numItems&amp;#40;myList&amp;#41; == 20&amp;#41;;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;// backToFront&amp;#40;myList&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;// printf&amp;#40;&amp;#34;&amp;#092;n&amp;#34;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;// showList&amp;#40;myList&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;// assert&amp;#40;numItems&amp;#40;myList&amp;#41; == 20&amp;#41;;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;return EXIT_SUCCESS;&lt;br /&gt;}&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>gmhafiz</author>
            <category>Codemasters</category>
            <pubDate>Fri, 11 Jul 2014 14:02:37 +0800</pubDate>
        </item>
        <item>
            <title>Laid Back Cuti Cuti to Cam.High, Kenyir, Cherating</title>
            <link>http://forum.lowyat.net/topic/2491062</link>
            <description>I have a 10 days holiday from 10th-18th Oct. I came up with the idea a tour - Cameron Highland, Kenyir and Cherating. We wil be travelling by car. The main focus of this holiday will be enjoying and relaxing as well as some photography.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;10/10&lt;/b&gt;&lt;br /&gt;6am - KL - Cameron Highland (3-4 hours)&lt;br /&gt;10am - Sight seeing, check in, more sight seeing and relaxing&lt;br /&gt;&lt;br /&gt;- bird watching&lt;br /&gt;- trekking&lt;br /&gt;&lt;br /&gt;&lt;b&gt;11/10&lt;/b&gt;&lt;br /&gt;8am - Sight seeing&lt;br /&gt;12pm - Check out, Go to Tasik kenyir, stop by at Gua musang (2hrs)&lt;br /&gt;4pm - Continue towards tasik kenyir (2hrs)&lt;br /&gt;6pm - Check in, dinner, rest.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;12/10&lt;/b&gt;&lt;br /&gt;Whole day - Sight seeing/activities&lt;br /&gt;&lt;br /&gt;- picnic at waterfall&lt;br /&gt;- gua bewah&lt;br /&gt;- lake tour&lt;br /&gt;- bird watching&lt;br /&gt;- Kelah sanctuary - How good is it?&lt;br /&gt;&lt;br /&gt;&lt;b&gt;13/10&lt;/b&gt;&lt;br /&gt;Whole day - Sight seeing/activities&lt;br /&gt;&lt;br /&gt;&lt;b&gt;14/10&lt;/b&gt;&lt;br /&gt;12pm - Checkout. Go to Cherating (5-6hours)&lt;br /&gt;6pm - Check in, Rest, dinner&lt;br /&gt;&lt;br /&gt;&lt;b&gt;15/10&lt;/b&gt;&lt;br /&gt;8am - Sight seeing/activities&lt;br /&gt;4pm - lazy around the beach&lt;br /&gt;- Not really sure what to do&lt;br /&gt;&lt;br /&gt;&lt;b&gt;16/10&lt;/b&gt;&lt;br /&gt;12pm - head back to KL&lt;br /&gt;&lt;br /&gt;My holiday plan will consist of a holiday to the hilltop, lake and a beach. I haven&amp;#39;t worked out on the details on what to see or do. Haven&amp;#39;t research which hotel/chalet to choose.&lt;br /&gt;&lt;br /&gt;So my questions are:&lt;br /&gt;1. What do you guys think of the plan?&lt;br /&gt;2. Are petrol stations easily accessible?&lt;br /&gt;3. What kind of activities do you recommend on the three places? Are my suggestions good? I&amp;#39;d need permit for Kenyir Lake right?&lt;br /&gt;4. Recommended place to stay. Not too expensive - below RM80-RM100/night&lt;br /&gt;5. Is there anything or place I should not miss out out of the three places or along the way?&lt;br /&gt;6. Checking in at 6pm is normal right? How would they charge if I check in at 6pm but check out at 12pm?&lt;br /&gt;</description>
            <author>gmhafiz</author>
            <category>Travel &amp;amp; Living</category>
            <pubDate>Fri, 31 Aug 2012 21:36:52 +0800</pubDate>
        </item>
        <item>
            <title>RM3500. no OC, no SLI, SSD</title>
            <link>http://forum.lowyat.net/topic/2421241</link>
            <description>I am going to sell of my 5 years old desktop and contemplating between buying an ultrabook, a desktop or just a tablet. Budget is RM3500 because I want to put it below USD1000. I did some research and this is what I can come up with&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Asrock Z77 Pro 3&lt;/b&gt;: RM349 - Prefers asus/gigabyte but asrock is good too right?&lt;br /&gt;&lt;b&gt;i5 3550&lt;/b&gt;: RM615&lt;br /&gt;&lt;b&gt;Palit GTX670 Jetstream 2GB&lt;/b&gt; = RM1389 - No more ATI please - Poor linux support. Also, GTX670 has more value than GTX680&lt;br /&gt;&lt;b&gt;Dell U2312HM ultrasharp&lt;/b&gt; = RM589 - Nice IPS display&lt;br /&gt;&lt;b&gt;Silverstone Strider 500W&lt;/b&gt; = RM209 - Using silverstone now. Quite reliable&lt;br /&gt;&lt;b&gt;4GB RAM&lt;/b&gt; = RM68 - Should be enough for games right? 8GB ram is overkill for my linux box&lt;br /&gt;&lt;b&gt;Xigmatek Asgard Pro case &lt;/b&gt; = RM159 - Noob on this. Any reason why I shouldn&amp;#39;t pick RM100 casing?&lt;br /&gt;&lt;b&gt;Crucial M4 128GB SSD&lt;/b&gt; = RM390 - Proven reliability&lt;br /&gt;&lt;b&gt;Mouse &amp;amp; Keyboard &lt;/b&gt;= RM50 - No need fancy ones&lt;br /&gt;Total = &lt;b&gt;RM3718&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;I have no need for DVD drive or HDD because I will retain from my current desktop. I don&amp;#39;t need speakers too because I&amp;#39;ll be using headphone only.&lt;br /&gt;&lt;br /&gt;Since my HD4850 can handle skyrim at mid settings, the GPU might be an overkill especially I only need a 23&amp;quot; monitor? Perhaps a normal GTX670 but with a nicer SSD?&lt;br /&gt;&lt;br /&gt;Also maybe can cut down on casing, my current casing (normal ATX)) is about RM100 only.&lt;br /&gt;&lt;br /&gt;GPU and ssd might be the most important spec. I play skyrim and fm.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What are your thoughts and how to improve on this build?</description>
            <author>gmhafiz</author>
            <category>Hardware</category>
            <pubDate>Mon, 09 Jul 2012 22:05:16 +0800</pubDate>
        </item>
        <item>
            <title>22&amp;quot;-24&amp;quot; or 27&amp;quot; IPS monitor</title>
            <link>http://forum.lowyat.net/topic/2079060</link>
            <description>I am thinking of getting a 27&amp;quot; IPS screen to match an iMac. &lt;br /&gt;&lt;br /&gt;Currently reading reviews on:&lt;br /&gt;- Dell UltraSharp U2711 - seems very steep.&lt;br /&gt;- Samsung P2770h - it is not 2560 x 1440 resolution like iMac.&lt;br /&gt;&lt;br /&gt;any other alternatives?</description>
            <author>gmhafiz</author>
            <category>Hardware</category>
            <pubDate>Fri, 21 Oct 2011 21:37:43 +0800</pubDate>
        </item>
        <item>
            <title>Samsung Galaxy S i9000 Official Thread V19</title>
            <link>http://forum.lowyat.net/topic/1936498</link>
            <description>&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Samsung Galaxy S&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;img src='http://img217.imageshack.us/img217/9202/unled6f.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;How To Use This Front Page&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;- Read this first page. It is very useful for you. Many questions can be answered in here&lt;br /&gt;- Press &amp;quot;Ctrl&amp;quot; and letter &amp;quot;F&amp;quot; to quickly find a word. I purposely refrain from using spoilers so that it&amp;#39;d be easy to find stuffs.&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Table of Contents&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1909068&amp;view=findpost&amp;p=42913408' target='_blank'&gt;&lt;b&gt;Post #1&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;- Smartphone Specifications&lt;br /&gt;- Prospective Buyer&lt;br /&gt;- New User&lt;br /&gt;- Tips&lt;br /&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1909068&amp;view=findpost&amp;p=42913453' target='_blank'&gt;&lt;b&gt;Post #2&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;- &lt;i&gt;FAQ&lt;/i&gt;&lt;br /&gt; - General&lt;br /&gt; - Apps&lt;br /&gt; - Screen&lt;br /&gt; - Looks and Customizations&lt;br /&gt; - Your Phone and Your PC&lt;br /&gt; - Lag&lt;br /&gt; - Battery&lt;br /&gt; - GPS/WIFI&lt;br /&gt; - Security&lt;br /&gt; - APN for Mobile Internet&lt;br /&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1909068&amp;view=findpost&amp;p=42913474' target='_blank'&gt;&lt;b&gt;Post #3&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;- &lt;i&gt;Advanced Usage of Galaxy S&lt;/i&gt;&lt;br /&gt; - General&lt;br /&gt; - Root&lt;br /&gt; - Custom ROM&lt;br /&gt; - Custom Kernel&lt;br /&gt; - Boot Animations&lt;br /&gt; - Overclock and Undervolting (OC/UV)&lt;br /&gt; - How to Use CWM to Flash.&lt;br /&gt; - How to use ODIN to Flash&lt;br /&gt; - How to Use Odin to Flash a Modem.&lt;br /&gt; - Going Back&lt;br /&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1909068&amp;view=findpost&amp;p=42913490' target='_blank'&gt;&lt;b&gt;Post #4&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;i&gt;Gingerbread Guide&lt;/i&gt;&lt;br /&gt;- Flashing DXJV9 or XXJVQ&lt;br /&gt;- Flashing Cyanogenmod 7&lt;br /&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1909068&amp;view=findpost&amp;p=42913528' target='_blank'&gt;&lt;b&gt;Post #5&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;- Eclair/Froyo Guide&lt;br /&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1909068&amp;view=findpost&amp;p=42913577' target='_blank'&gt;&lt;b&gt;Post #6&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;- Troubleshoot&lt;br /&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1909068&amp;view=findpost&amp;p=42913601' target='_blank'&gt;&lt;b&gt;Post #7&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;- useful Links&lt;br /&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1909068&amp;view=findpost&amp;p=42913710' target='_blank'&gt;&lt;b&gt;Post #8&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;- Android Dictionary and Jargons&lt;br /&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1936498&amp;view=findpost&amp;p=43439168' target='_blank'&gt;&lt;b&gt;Post #10&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;- Accessories For Samsung Galaxy S GT-i9000&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src='http://i.imgur.com/9X2Z3.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;More detailed &lt;a href='http://www.gsmarena.com/samsung_i9000_galaxy_s-3115.php' target='_blank'&gt;specs&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Previous threads&lt;/b&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('46757c813bc4dfb8a56058d0b85ede24')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;46757c813bc4dfb8a56058d0b85ede24&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;Thank you hihihehe for opening v1-v12, silentser for v13 and noobie1 for v16&amp;#33;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1366536&amp;hl=' target='_blank'&gt;v1&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1493879&amp;hl=galaxy+s' target='_blank'&gt;v2&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1521923' target='_blank'&gt;v3&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1553305' target='_blank'&gt;v4&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1585039' target='_blank'&gt;v5&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1609823' target='_blank'&gt;v6&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1632814' target='_blank'&gt;v7&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1649301' target='_blank'&gt;v8&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1662087' target='_blank'&gt;v9&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1675208&amp;hl=v10' target='_blank'&gt;v10&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1686354' target='_blank'&gt;v11&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1711463' target='_blank'&gt;v12&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1736100' target='_blank'&gt;v13&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1771996' target='_blank'&gt;v14&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1803509' target='_blank'&gt;v15&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1840895' target='_blank'&gt;v16&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1873435' target='_blank'&gt;v17&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1909068' target='_blank'&gt;v18&lt;/a&gt;&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Prospective Buyer&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;b&gt;Why Samsung Galaxy S?&lt;/b&gt;&lt;br /&gt;It is the most successful android smartphone to date for many reasons. &lt;br /&gt;- It has got the big and beautiful &lt;span style='color:red'&gt;Super AMOLED 4inch&lt;/span&gt; screen. It is very bright and the colour is rich and vibrant. Outdoor visibility is excellent thanks to the screen technology.&lt;br /&gt;- &lt;span style='color:red'&gt;Gorilla Glass&lt;/span&gt;. Like few other devices, the screen uses reinforced glass from Corning. It is the toughest glass to date. Scratch-resistant.&lt;br /&gt;- &lt;span style='color:red'&gt;Big storage&lt;/span&gt;. Useful for installing a lot of apps without the need to buy external sdcard. (2GB space to install app plus 13GB for data)&lt;br /&gt;- Slim profile. It is only &lt;span style='color:red'&gt;9.9mm&lt;/span&gt; thick. &lt;br /&gt;- Front facing camera. Can &lt;span style='color:red'&gt;video call&lt;/span&gt; using your 3G connection or with apps like Yahoo Messenger.&lt;br /&gt;- Unobtrusive and not annoying notification system&lt;br /&gt;- &lt;span style='color:red'&gt;Audiophile&lt;/span&gt; quality sound output.&lt;br /&gt;- &lt;span style='color:red'&gt;Entertainment friendly&lt;/span&gt;. Ability to play a wide range of videos and music&lt;br /&gt;- Can do &lt;span style='color:red'&gt;tv output&lt;/span&gt; using 3.5mm headphone jack to rca&lt;br /&gt;- &lt;span style='color:red'&gt;Swype&lt;/span&gt;. Don&amp;#39;t tap, swype across the keyboard instead&amp;#33;&lt;br /&gt;- And most importantly, &lt;span style='color:red'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&amp;quot;Latest GINGERBREAD 2.3.4 is here&amp;#33;&amp;quot;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Customization:&lt;br /&gt;- Useful widgets. You can see email, sms, missed calls, twitter updates, facebook updates, toggle wifi&amp;amp;3G without opening each app. Each widgets can be moved around the screen to your liking.&lt;br /&gt;- Live wallpaper. IMO, a gimmick but can impress your friends. A lot of these live wallpaper are interactive.&lt;br /&gt;- Choice of launchers. Can choose between &lt;a href='https://market.android.com/details?id=com.fede.launcher' target='_blank'&gt;LauncherPro&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=org.adw.launcher' target='_blank'&gt;ADW Launcher&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.gau.go.launcherex' target='_blank'&gt;GO Launcher Ex&lt;/a&gt;, SPB shell and others. See below for more details&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Can I have reviews for this smartphone?&lt;/b&gt;&lt;br /&gt;There are plenty reviews floating in the internet. Some may be biased, rushed and few may be good. Nothing beats user reviews who have enjoyed the phone for themselves&lt;br /&gt;- &lt;a href='http://www.gsmarena.com/samsung_i9000_galaxy_s-review-478.php' target='_blank'&gt;GSM Arena&lt;/a&gt;&lt;br /&gt;- &lt;a href='http://www.google.co.in/url?sa=t&amp;source=web&amp;cd=9&amp;sqi=2&amp;ved=0CGAQFjAI&amp;url=http%3A%2F%2Fwww.techradar.com%2Freviews%2Fphones%2Fmobile-phones%2Fsamsung-galaxy-s-689293%2Freview&amp;ei=gSBxTeTII4XLrQe08dHRCg&amp;usg=AFQjCNHf1VFNYh7lFMF0fm7nB-MxwsaYVw&amp;sig2=ZnU6DWupftq6TLMZA0AdKg' target='_blank'&gt;TechArena&lt;/a&gt;&lt;br /&gt;- &lt;a href='http://www.google.co.in/url?sa=t&amp;source=web&amp;cd=11&amp;sqi=2&amp;ved=0CHAQFjAK&amp;url=http%3A%2F%2Fwww.trustedreviews.com%2Fmobile-phones%2Freview%2F2010%2F07%2F21%2FSamsung-Galaxy-S%2Fp1&amp;ei=gSBxTeTII4XLrQe08dHRCg&amp;usg=AFQjCNHwTEMWIO_9dwQ6YvXQwBJiRmtXrQ&amp;sig2=4lYCTy7G4zK-wfAoLGE1jg' target='_blank'&gt;Trusted Reviews&lt;/a&gt;&lt;br /&gt;- &lt;a href='http://www.google.co.in/url?sa=t&amp;source=web&amp;cd=12&amp;sqi=2&amp;ved=0CHoQFjAL&amp;url=http%3A%2F%2Fwww.phonearena.com%2Freviews%2FSamsung-GALAXY-S-I9000-Review_id2461&amp;ei=gSBxTeTII4XLrQe08dHRCg&amp;usg=AFQjCNFIVScdo1e5PVwVlygPnOERvU7K8w&amp;sig2=aPMUtub43GEFBscUV9v_yg' target='_blank'&gt;PhoneArena&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What&amp;#39;s in the box?&lt;/b&gt;&lt;br /&gt;&lt;img src='http://i.imgur.com/9MRvF.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;- Phone&lt;br /&gt;- Charger&lt;br /&gt;- Earphones&lt;br /&gt;- Manuals&lt;br /&gt;- Warranty Card&lt;br /&gt;- Kies CD&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What to check before buying?&lt;/b&gt;&lt;br /&gt;Tips for those you are going to buy this phone:&lt;br /&gt;1. Check for recovery mode/download mode, more info in the FAQ below.&lt;br /&gt;2. GPS issue is solve in phone manufacture AFTER or on OCTOBER, Check your manufacture date by looking at the battery, insert the battery in the phone at look at the battery. almost at the end of the battery there is a line that have date. EXM: 2010.07.14, make sure this date is on OCTOBER or later.&lt;br /&gt;3. Check IMEI number. Dial *#06# check with the sticker on the box if it is the same number as the phone, and the sticker at the back of the phone whether it is the same also.&lt;br /&gt;4. If you wish to do some tweaking, check if 3 buttons recovery and download mode is present. Refer below.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Why not iphone4?&lt;/b&gt;&lt;br /&gt;Samsung Galaxy S certainly goes head to head with iphone4. Both phones have their own strengths and limitations. &lt;br /&gt;- Screen: Galaxy S has bigger and vibrant screen while iphone4 is a lot sharper.&lt;br /&gt;- Glass used is not gorilla glass like in Galaxy S. Thus, easier to crack. &lt;br /&gt;- Build: iphone4 is 0.6mm thinner with unibody metal case. although there may be problem with antenna-gate that galaxy s do not have&lt;br /&gt;- A bit heavier than galaxy s&lt;br /&gt;- Apps: iOS &amp;gt; 500k apps. Android has &amp;gt;250k apps. But both android and iOS has about the same amount of free apps.&lt;br /&gt;- Can video call on 3G network. While iphone needs to be jailbroken first.&lt;br /&gt;- Android can use any bluetooth device to pair with Galaxy S. Not with iphone&lt;br /&gt;- with iphone, cannot see embedded flash in website. Ever&amp;#33;&lt;br /&gt;- Android phones do not need cables to sync, just do it wirelessly using apps like doubletwist or winamp&lt;br /&gt;- With android, can multitasking like on your computer. Can switch to the recent 6 apps by holding down home button. On iphone, only certain apps can run in the background while others are put to sleep.&lt;br /&gt;- And most importantly, can get free angry birds with all levels on android devices&amp;#33;&lt;br /&gt;&lt;br /&gt;iOS certainly is more polished overall.&lt;br /&gt;If you dig aesthetics, iphone is better.&lt;br /&gt;If you dig functionality and freedom, android is the way to go &lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;New User&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;b&gt;Recommendations for cool apps?&lt;/b&gt;&lt;br /&gt;See this &lt;a href='http://forum.xda-developers.com/showthread.php?t=765081' target='_blank'&gt;Make your Android life easier with these Apps to make your SGS cool&lt;/a&gt;&lt;br /&gt;I&amp;#39;d recommend:&lt;br /&gt;- Games: &lt;a href='https://market.android.com/details?id=com.rovio.angrybirds' target='_blank'&gt;Angry birds&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.rovio.angrybirdsseasons' target='_blank'&gt;Angry Birds Seasons&lt;/a&gt;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.google.android.apps.unveil' target='_blank'&gt;Goggles&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.google.zxing.client.android' target='_blank'&gt;Barcode Scanner&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.google.android.apps.shopper' target='_blank'&gt;Google Shoppper&lt;/a&gt;.&lt;br /&gt;-  &lt;a href='https://market.android.com/details?id=com.reader.laputa.free' target='_blank'&gt;Laputa&lt;/a&gt;&lt;br /&gt;- Media: &lt;a href='https://market.android.com/details?id=com.clov4r.android.nil' target='_blank'&gt;Moboplayer&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.tbig.playerpro' target='_blank'&gt;PlayerPro&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.mixzing.basic' target='_blank'&gt;Mixzing&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.tunewiki.lyricplayer.android' target='_blank'&gt;TuneWiki&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=org.iii.romulus.meridian' target='_blank'&gt;Meridian Player&lt;/a&gt;&lt;br /&gt;- Photo: &lt;a href='https://market.android.com/details?id=com.alensw.PicFolder' target='_blank'&gt;Quickpic&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.justpictures' target='_blank'&gt;JustPictures&amp;#33;&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=dk.nindroid.rss' target='_blank'&gt;Floating Image&lt;/a&gt;&lt;br /&gt;- Twitter: &lt;a href='https://market.android.com/details?id=com.levelup.touiteur' target='_blank'&gt;Plume&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.handmark.tweetcaster' target='_blank'&gt;Tweetcaster&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.twitter.android' target='_blank'&gt;Official twitter&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.thedeck.android.app' target='_blank'&gt;TweetDeck&lt;/a&gt;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.facebook.katana' target='_blank'&gt;Facebook for Android&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=uk.co.senab.blueNotifyFree' target='_blank'&gt;FriendCaster for Facebook&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.ipthing.speedyuploaderlite' target='_blank'&gt;Batch Upload to Facebook&lt;/a&gt;&lt;br /&gt;-  &lt;a href='https://market.android.com/details?id=com.google.android.stardroid' target='_blank'&gt;Google Sky Map&lt;/a&gt;&lt;br /&gt;- Weather widget: &lt;a href='https://market.android.com/details?id=com.levelup.beautifulwidgets' target='_blank'&gt;Beautiful Widget&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.anddoes.fancywidget' target='_blank'&gt;Fancy Widget&lt;/a&gt;&lt;br /&gt;- Browser: &lt;a href='https://market.android.com/details?id=com.opera.browser' target='_blank'&gt;Opera Mobile 11&lt;/a&gt; - the fastest as of now. see this &lt;a href='http://forum.lowyat.net/index.php?showtopic=1771996&amp;view=findpost&amp;p=40949612' target='_blank'&gt;guide&lt;/a&gt; to force desktop view, &lt;a href='https://market.android.com/details?id=sui.m' target='_blank'&gt;xScope&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=cn.miren.browser' target='_blank'&gt;Miren Browser&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=mobi.mgeek.TunnyBrowser' target='_blank'&gt;Dolphin HD&lt;/a&gt; &lt;br /&gt;- Notes: &lt;a href='https://market.android.com/details?id=com.rememberthemilk.MobileRTMt' target='_blank'&gt;RTM&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.taskos' target='_blank'&gt;Taskos&lt;/a&gt;,  &lt;a href='https://market.android.com/details?id=com.socialnmobile.dictapps.notepad.color.note' target='_blank'&gt;Color Notes&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=org.dayup.gtask' target='_blank'&gt;GTasks&lt;/a&gt;&lt;br /&gt;- Messenger: See Below &lt;br /&gt;- SMS: &lt;a href='https://market.android.com/details?id=com.handcent.nextsms' target='_blank'&gt;Handcent&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.jb.mms' target='_blank'&gt;GO SMS&lt;/a&gt;,  &lt;a href='https://market.android.com/details?id=com.p1.chompsms' target='_blank'&gt;Chomp SMS&lt;/a&gt;&lt;br /&gt;- GPS: &lt;a href='http://www.androlib.com/android.application.com-mactiontech-x5sea-jtpip.aspx' target='_blank'&gt;Papago X5&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.sygic.aura' target='_blank'&gt;Aura Sygic&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.ndrive.androidsingapore_malaysia' target='_blank'&gt;NDrive&lt;/a&gt;&lt;br /&gt;- Online radio: Hitz.fm &lt;a href='http://radiotime.com/station/s_14605/Hitz_FM_929.aspx' target='_blank'&gt;http://radiotime.com/station/s_14605/Hitz_FM_929.aspx&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.android.DroidLiveLite' target='_blank'&gt;XiiaLive Lite&lt;/a&gt;&lt;br /&gt;- Islamic Apps: &lt;a href='http://forum.lowyat.net/index.php?showtopic=1840895&amp;view=findpost&amp;p=41731078' target='_blank'&gt;http://forum.lowyat.net/index.php?showtopi...post&amp;p=41731078&lt;/a&gt; &lt;a href='https://market.android.com/search?q=mysolat' target='_blank'&gt;MySolat&lt;/a&gt; &lt;a href='https://market.android.com/details?id=com.asim.prayertimehd' target='_blank'&gt;Prayertimes HD&lt;/a&gt; &lt;a href='https://market.android.com/details?id=com.guidedways.iQuran' target='_blank'&gt;iQuran&lt;/a&gt;&lt;br /&gt;- Keyboard: See &lt;a href='http://www.electricpig.co.uk/2011/06/15/best-android-keyboards-apps/' target='_blank'&gt;keyboard reviews&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Try googling for top 10 android apps. there are lots of blogs writing about must haves app.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How about games other than Angry Birds?&lt;/b&gt;&lt;br /&gt;- There&amp;#39;s a huge list of games &lt;a href='http://androidforums.com/android-games/216857-android-games-list.html' target='_blank'&gt;here&lt;/a&gt;&lt;br /&gt;- Also see this &lt;a href='http://androidforums.com/android-games/' target='_blank'&gt;forum&lt;/a&gt; for a comprehensive guide&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Tips&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;b&gt;What is so special about TouchWiz interface? Any shortcuts?&lt;/b&gt;&lt;br /&gt;It is Samsung&amp;#39;s way to differentiate itself from other competitors by providing simple but beautiful interface to work with. There are a few known shortcuts:&lt;br /&gt;- In &amp;quot;Contacts&amp;quot; app, you can &lt;u&gt;swipe right&lt;/u&gt; on any of your contact for SMS shortcut&amp;#33;&lt;br /&gt;- If you &lt;u&gt;swipe left&lt;/u&gt;, you&amp;#39;ll call the person immediately&amp;#33;&lt;br /&gt;- On your puzzle lock screen: If you have unread SMS, you can drag the icon and complete the puzzle to go straight to the message&amp;#33; The same goes with missed calls.</description>
            <author>gmhafiz</author>
            <category>Android</category>
            <pubDate>Tue, 28 Jun 2011 19:03:28 +0800</pubDate>
        </item>
        <item>
            <title>WTA Photography Desktop</title>
            <link>http://forum.lowyat.net/topic/1923508</link>
            <description>Hello all. I&amp;#39;d like to ask for recommendations about upgrading my father&amp;#39;s aging year 2000 desktop &lt;br /&gt;&lt;br /&gt;Details:&lt;br /&gt;1. Budget: cheaper than my mother&amp;#39;s imac &amp;lt;Rm3800 &lt;!--emo&amp;:D--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' /&gt;&lt;!--endemo--&gt;&lt;br /&gt;2. Parts to re-use: hard disk, keyboard, mouse, casing, speaker, optical drive&lt;br /&gt;3. Purpose: Photo editing and web surfing - picasa and photoshop&lt;br /&gt; - Monitor: 24 inch, preferably IPS&lt;br /&gt;4. Purchase date: Next weekend&lt;br /&gt;5. Preference:&lt;br /&gt; - CPU: Whichever that gives good performance to price ratio. OC is not important&lt;br /&gt; - Graphic card: whichever is faster and quieter &lt;br /&gt; - Motherboard: I trust ASUS and gigabyte. Others are OK too if they are also good.&lt;br /&gt; - RAM: 4GB should be enough. If got more budget, 8GB&lt;br /&gt; - Power supply: I have a good silverstone PSU, &amp;gt;85% efficiency. Would like similar quality PSU&lt;br /&gt; - Bonus: If the hardware are linux friendly, then better  &lt;!--emo&amp;:thumbs:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/thumbup.gif' border='0' style='vertical-align:middle' alt='thumbup.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;I went to Goldfries website and looked for recommendation. Is it up-to-date? Subtracting the parts to re-use, that will be about RM1060. That leaves me RM2740 worth of hardware to improve upon the CPU, graphic card, motherboard, RAM, good 24&amp;quot; monitor, power supply&lt;br /&gt;&lt;img src='http://www.goldfries.com/images/pcbuyingguide/graphic.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;br /&gt;I hope I am giving enough details. Please do clarify if there were anything missing.</description>
            <author>gmhafiz</author>
            <category>Hardware</category>
            <pubDate>Sat, 18 Jun 2011 20:41:18 +0800</pubDate>
        </item>
        <item>
            <title>Samsung Galaxy S i9000 Official Thread V18</title>
            <link>http://forum.lowyat.net/topic/1909068</link>
            <description>&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Samsung Galaxy S&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;img src='http://www.crunchgear.com/wp-content/uploads/2010/03/galaxy-s.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Table of Contents&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1909068&amp;view=findpost&amp;p=42913408' target='_blank'&gt;&lt;b&gt;Post #1&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;- Smartphone Specifications&lt;br /&gt;- Prospective Buyer&lt;br /&gt;- New User&lt;br /&gt;- Tips&lt;br /&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1909068&amp;view=findpost&amp;p=42913453' target='_blank'&gt;&lt;b&gt;Post #2&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;- &lt;i&gt;FAQ&lt;/i&gt;&lt;br /&gt; - General&lt;br /&gt; - Screen&lt;br /&gt; - Looks and Customizations&lt;br /&gt; - Your Phone and Your PC&lt;br /&gt; - Lag&lt;br /&gt; - Battery&lt;br /&gt; - GPS/WIFI&lt;br /&gt; - Security&lt;br /&gt; - APN for Mobile Internet&lt;br /&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1909068&amp;view=findpost&amp;p=42913474' target='_blank'&gt;&lt;b&gt;Post #3&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;- &lt;i&gt;Advanced Usage of Galaxy S&lt;/i&gt;&lt;br /&gt; - General&lt;br /&gt; - Root&lt;br /&gt; - Custom ROM&lt;br /&gt; - Custom Kernel&lt;br /&gt; - Boot Animations&lt;br /&gt; - Overclock and Undervolting (OC/UV)&lt;br /&gt; - How to use ODIN to Flash&lt;br /&gt; - Going Back&lt;br /&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1909068&amp;view=findpost&amp;p=42913490' target='_blank'&gt;&lt;b&gt;Post #4&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;&lt;i&gt;Gingerbread Guide&lt;/i&gt;&lt;br /&gt;- Flashing DXJV9 or XXJVP&lt;br /&gt;- Flashing Cyanogenmod 7&lt;br /&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1909068&amp;view=findpost&amp;p=42913528' target='_blank'&gt;&lt;b&gt;Post #5&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;- Eclair/Froyo Guide&lt;br /&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1909068&amp;view=findpost&amp;p=42913577' target='_blank'&gt;&lt;b&gt;Post #6&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;- Useful Links&lt;br /&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1909068&amp;view=findpost&amp;p=42913601' target='_blank'&gt;&lt;b&gt;Post #7&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;- Troubleshoot&lt;br /&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1909068&amp;view=findpost&amp;p=42913710' target='_blank'&gt;&lt;b&gt;Post #8&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;- Accessories for Galaxy S&lt;br /&gt;&lt;br /&gt;&lt;img src='http://i.imgur.com/9X2Z3.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;More detailed &lt;a href='http://www.gsmarena.com/samsung_i9000_galaxy_s-3115.php' target='_blank'&gt;specs&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Previous threads&lt;/b&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('571e0c514bdd6ece0062c4d430a643f6')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;571e0c514bdd6ece0062c4d430a643f6&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;Thank you hihihehe for opening v1-v12, silentser for v13 and noobie1 for v16&amp;#33;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1366536&amp;hl=' target='_blank'&gt;v1&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1493879&amp;hl=galaxy+s' target='_blank'&gt;v2&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1521923' target='_blank'&gt;v3&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1553305' target='_blank'&gt;v4&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1585039' target='_blank'&gt;v5&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1609823' target='_blank'&gt;v6&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1632814' target='_blank'&gt;v7&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1649301' target='_blank'&gt;v8&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1662087' target='_blank'&gt;v9&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1675208&amp;hl=v10' target='_blank'&gt;v10&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1686354' target='_blank'&gt;v11&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1711463' target='_blank'&gt;v12&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1736100' target='_blank'&gt;v13&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1771996' target='_blank'&gt;v14&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1803509' target='_blank'&gt;v15&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1840895' target='_blank'&gt;v16&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1873435' target='_blank'&gt;v17&lt;/a&gt;&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Prospective Buyer&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;b&gt;Why Samsung Galaxy S?&lt;/b&gt;&lt;br /&gt;It is the most successful android smartphone to date for many reasons. &lt;br /&gt;- It has got the big and beautiful &lt;span style='color:red'&gt;Super AMOLED 4inch&lt;/span&gt; screen. It is very bright and the colour is rich and vibrant. Outdoor visibility is excellent thanks to the screen technology.&lt;br /&gt;- &lt;span style='color:red'&gt;Gorilla Glass&lt;/span&gt;. Like few other devices, the screen uses reinforced glass from Corning. It is the toughest glass to date. Scratch-resistant.&lt;br /&gt;- &lt;span style='color:red'&gt;Big storage&lt;/span&gt;. Useful for installing a lot of apps without the need to buy external sdcard. (2GB space to install app plus 13GB for data)&lt;br /&gt;- Slim profile. It is only &lt;span style='color:red'&gt;9.9mm&lt;/span&gt; thick. &lt;br /&gt;- Front facing camera. Can &lt;span style='color:red'&gt;video call&lt;/span&gt; using apps like Yahoo Messenger.&lt;br /&gt;- Unobtrusive and not annoying notification system&lt;br /&gt;- &lt;span style='color:red'&gt;Audiophile&lt;/span&gt; quality sound output.&lt;br /&gt;- &lt;span style='color:red'&gt;Entertainment friendly&lt;/span&gt;. Ability to play a wide range of videos and music&lt;br /&gt;- Can do &lt;span style='color:red'&gt;tv output&lt;/span&gt; using 3.5mm headphone jack to rca&lt;br /&gt;- &lt;span style='color:red'&gt;Swype&lt;/span&gt;. Don&amp;#39;t tap, swype across the keyboard instead&amp;#33;&lt;br /&gt;- And most importantly, &lt;span style='color:red'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&amp;quot;Latest GINGERBREAD 2.3.4 is here&amp;#33;&amp;quot;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Customization:&lt;br /&gt;- Useful widgets. You can see email, sms, missed calls, twitter updates, facebook updates, toggle wifi&amp;amp;3G without opening each app. Each widgets can be moved around the screen to your liking.&lt;br /&gt;- Live wallpaper. IMO, a gimmick but can impress your friends. A lot of these live wallpaper are interactive.&lt;br /&gt;- Choice of launchers. Can choose between &lt;a href='https://market.android.com/details?id=com.fede.launcher' target='_blank'&gt;LauncherPro&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=org.adw.launcher' target='_blank'&gt;ADW Launcher&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.gau.go.launcherex' target='_blank'&gt;GO Launcher Ex&lt;/a&gt;, SPB shell and others. See below for more details&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Can I have reviews for this smartphone?&lt;/b&gt;&lt;br /&gt;There are plenty reviews floating in the internet. Some may be biased, rushed and few may be good. Nothing beats user reviews who have enjoyed the phone for themselves&lt;br /&gt;- &lt;a href='http://www.gsmarena.com/samsung_i9000_galaxy_s-review-478.php' target='_blank'&gt;GSM Arena&lt;/a&gt;&lt;br /&gt;- &lt;a href='http://www.google.co.in/url?sa=t&amp;source=web&amp;cd=9&amp;sqi=2&amp;ved=0CGAQFjAI&amp;url=http%3A%2F%2Fwww.techradar.com%2Freviews%2Fphones%2Fmobile-phones%2Fsamsung-galaxy-s-689293%2Freview&amp;ei=gSBxTeTII4XLrQe08dHRCg&amp;usg=AFQjCNHf1VFNYh7lFMF0fm7nB-MxwsaYVw&amp;sig2=ZnU6DWupftq6TLMZA0AdKg' target='_blank'&gt;TechArena&lt;/a&gt;&lt;br /&gt;- &lt;a href='http://www.google.co.in/url?sa=t&amp;source=web&amp;cd=11&amp;sqi=2&amp;ved=0CHAQFjAK&amp;url=http%3A%2F%2Fwww.trustedreviews.com%2Fmobile-phones%2Freview%2F2010%2F07%2F21%2FSamsung-Galaxy-S%2Fp1&amp;ei=gSBxTeTII4XLrQe08dHRCg&amp;usg=AFQjCNHwTEMWIO_9dwQ6YvXQwBJiRmtXrQ&amp;sig2=4lYCTy7G4zK-wfAoLGE1jg' target='_blank'&gt;Trusted Reviews&lt;/a&gt;&lt;br /&gt;- &lt;a href='http://www.google.co.in/url?sa=t&amp;source=web&amp;cd=12&amp;sqi=2&amp;ved=0CHoQFjAL&amp;url=http%3A%2F%2Fwww.phonearena.com%2Freviews%2FSamsung-GALAXY-S-I9000-Review_id2461&amp;ei=gSBxTeTII4XLrQe08dHRCg&amp;usg=AFQjCNFIVScdo1e5PVwVlygPnOERvU7K8w&amp;sig2=aPMUtub43GEFBscUV9v_yg' target='_blank'&gt;PhoneArena&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What&amp;#39;s in the box?&lt;/b&gt;&lt;br /&gt;&lt;img src='http://i.imgur.com/9MRvF.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;- Phone&lt;br /&gt;- Charger&lt;br /&gt;- Earphones&lt;br /&gt;- Manuals&lt;br /&gt;- Warranty Card&lt;br /&gt;- Kies CD&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What to check before buying?&lt;/b&gt;&lt;br /&gt;Tips for those you are going to buy this phone:&lt;br /&gt;1. Check for recovery mode/download mode, more info in the FAQ below.&lt;br /&gt;2. GPS issue is solve in phone manufacture AFTER or on OCTOBER, Check your manufacture date by looking at the battery, insert the battery in the phone at look at the battery. almost at the end of the battery there is a line that have date. EXM: 2010.07.14, make sure this date is on OCTOBER or later.&lt;br /&gt;3. Check IMEI number. Dial *#06# check with the sticker on the box if it is the same number as the phone, and the sticker at the back of the phone whether it is the same also.&lt;br /&gt;4. If you wish to do some tweaking, check if 3 buttons recovery and download mode is present. Refer below.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Why not iphone4?&lt;/b&gt;&lt;br /&gt;Samsung Galaxy S certainly goes head to head with iphone4. Both phones have their own strengths and limitations. &lt;br /&gt;- Screen: Galaxy S has bigger and vibrant screen while iphone4 is a lot sharper.&lt;br /&gt;- Glass used is not gorilla glass like in Galaxy S. Thus, easier to crack. &lt;br /&gt;- Build: iphone4 is 0.6mm thinner with unibody metal case. although there may be problem with antenna-gate that galaxy s do not have&lt;br /&gt;- A bit heavier than galaxy s&lt;br /&gt;- Apps: iOS &amp;gt; 500k apps. Android has &amp;gt;250k apps. But both android and iOS has about the same amount of free apps.&lt;br /&gt;- Can video call on 3G network. While iphone needs to be jailbroken first.&lt;br /&gt;- Android can use any bluetooth device to pair with Galaxy S. Not with iphone&lt;br /&gt;- with iphone, cannot see embeddbuied flash in website. Ever&amp;#33;&lt;br /&gt;- Android phones do not need cables to sync, just do it wirelessly using apps like doubletwist or winamp&lt;br /&gt;- With android, can multitasking like on your computer. Can switch to the recent 6 apps by holding down home button. On iphone, only certain apps can run in the background while others are put to sleep.&lt;br /&gt;- And most importantly, can get free angry birds with all levels on android devices&amp;#33;&lt;br /&gt;&lt;br /&gt;iOS certainly is more polished overall.&lt;br /&gt;If you dig aesthetics, iphone is better.&lt;br /&gt;If you dig functionality and freedom, android is the way to go &lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;New User&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;b&gt;Recommendations for cool apps?&lt;/b&gt;&lt;br /&gt;See this &lt;a href='http://forum.xda-developers.com/showthread.php?t=765081' target='_blank'&gt;Make your Android life easier with these Apps to make your SGS cool&lt;/a&gt;&lt;br /&gt;I&amp;#39;d recommend:&lt;br /&gt;- Games: &lt;a href='https://market.android.com/details?id=com.rovio.angrybirds' target='_blank'&gt;Angry birds&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.rovio.angrybirdsseasons' target='_blank'&gt;Angry Birds Seasons&lt;/a&gt;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.google.android.apps.unveil' target='_blank'&gt;Goggles&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.google.zxing.client.android' target='_blank'&gt;Barcode Scanner&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.google.android.apps.shopper' target='_blank'&gt;Google Shoppper&lt;/a&gt;.&lt;br /&gt;-  &lt;a href='https://market.android.com/details?id=com.reader.laputa.free' target='_blank'&gt;Laputa&lt;/a&gt;&lt;br /&gt;- Media: &lt;a href='https://market.android.com/details?id=com.clov4r.android.nil' target='_blank'&gt;Moboplayer&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.tbig.playerpro' target='_blank'&gt;PlayerPro&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.mixzing.basic' target='_blank'&gt;Mixzing&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.tunewiki.lyricplayer.android' target='_blank'&gt;TuneWiki&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=org.iii.romulus.meridian' target='_blank'&gt;Meridian Player&lt;/a&gt;&lt;br /&gt;- Photo: &lt;a href='https://market.android.com/details?id=com.alensw.PicFolder' target='_blank'&gt;Quickpic&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.justpictures' target='_blank'&gt;JustPictures&amp;#33;&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=dk.nindroid.rss' target='_blank'&gt;Floating Image&lt;/a&gt;&lt;br /&gt;- Twitter: &lt;a href='https://market.android.com/details?id=com.levelup.touiteur' target='_blank'&gt;Plume&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.handmark.tweetcaster' target='_blank'&gt;Tweetcaster&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.twitter.android' target='_blank'&gt;Official twitter&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.thedeck.android.app' target='_blank'&gt;TweetDeck&lt;/a&gt;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.facebook.katana' target='_blank'&gt;Facebook for Android&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=uk.co.senab.blueNotifyFree' target='_blank'&gt;FriendCaster for Facebook&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.ipthing.speedyuploaderlite' target='_blank'&gt;Batch Upload to Facebook&lt;/a&gt;&lt;br /&gt;-  &lt;a href='https://market.android.com/details?id=com.google.android.stardroid' target='_blank'&gt;Google Sky Map&lt;/a&gt;&lt;br /&gt;- Weather widget: &lt;a href='https://market.android.com/details?id=com.levelup.beautifulwidgets' target='_blank'&gt;Beautiful Widget&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.anddoes.fancywidget' target='_blank'&gt;Fancy Widget&lt;/a&gt;&lt;br /&gt;- Browser: &lt;a href='https://market.android.com/details?id=com.opera.browser' target='_blank'&gt;Opera Mobile 11&lt;/a&gt; - the fastest as of now. see this &lt;a href='http://forum.lowyat.net/index.php?showtopic=1771996&amp;view=findpost&amp;p=40949612' target='_blank'&gt;guide&lt;/a&gt; to force desktop view, &lt;a href='https://market.android.com/details?id=sui.m' target='_blank'&gt;xScope&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=cn.miren.browser' target='_blank'&gt;Miren Browser&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=mobi.mgeek.TunnyBrowser' target='_blank'&gt;Dolphin HD&lt;/a&gt; &lt;br /&gt;- Notes: &lt;a href='https://market.android.com/details?id=com.rememberthemilk.MobileRTMt' target='_blank'&gt;RTM&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.taskos' target='_blank'&gt;Taskos&lt;/a&gt;,  &lt;a href='https://market.android.com/details?id=com.socialnmobile.dictapps.notepad.color.note' target='_blank'&gt;Color Notes&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=org.dayup.gtask' target='_blank'&gt;GTasks&lt;/a&gt;&lt;br /&gt;- Messenger: See Below &lt;br /&gt;- SMS: &lt;a href='https://market.android.com/details?id=com.handcent.nextsms' target='_blank'&gt;Handcent&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.jb.mms' target='_blank'&gt;GO SMS&lt;/a&gt;,  &lt;a href='https://market.android.com/details?id=com.p1.chompsms' target='_blank'&gt;Chomp SMS&lt;/a&gt;&lt;br /&gt;- GPS: &lt;a href='http://www.androlib.com/android.application.com-mactiontech-x5sea-jtpip.aspx' target='_blank'&gt;Papago X5&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.sygic.aura' target='_blank'&gt;Aura Sygic&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.ndrive.androidsingapore_malaysia' target='_blank'&gt;NDrive&lt;/a&gt;&lt;br /&gt;- Online radio: Hitz.fm &lt;a href='http://radiotime.com/station/s_14605/Hitz_FM_929.aspx' target='_blank'&gt;http://radiotime.com/station/s_14605/Hitz_FM_929.aspx&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.android.DroidLiveLite' target='_blank'&gt;XiiaLive Lite&lt;/a&gt;&lt;br /&gt;- Islamic Apps: &lt;a href='http://forum.lowyat.net/index.php?showtopic=1840895&amp;view=findpost&amp;p=41731078' target='_blank'&gt;http://forum.lowyat.net/index.php?showtopi...post&amp;p=41731078&lt;/a&gt; &lt;a href='https://market.android.com/search?q=mysolat' target='_blank'&gt;MySolat&lt;/a&gt; &lt;a href='https://market.android.com/details?id=com.asim.prayertimehd' target='_blank'&gt;Prayertimes HD&lt;/a&gt; &lt;a href='https://market.android.com/details?id=com.guidedways.iQuran' target='_blank'&gt;iQuran&lt;/a&gt;&lt;br /&gt;- Keyboard: See &lt;a href='http://www.electricpig.co.uk/2011/06/15/best-android-keyboards-apps/' target='_blank'&gt;keyboard reviews&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Try googling for top 10 android apps. there are lots of blogs writing about must haves app.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How about games other than Angry Birds?&lt;/b&gt;&lt;br /&gt;- There&amp;#39;s a huge list of games &lt;a href='http://androidforums.com/android-games/216857-android-games-list.html' target='_blank'&gt;here&lt;/a&gt;&lt;br /&gt;- Also see this &lt;a href='http://androidforums.com/android-games/' target='_blank'&gt;forum&lt;/a&gt; for a comprehensive guide&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Tips&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;b&gt;What is so special about TouchWiz interface? Any shortcuts?&lt;/b&gt;&lt;br /&gt;It is Samsung&amp;#39;s way to differentiate itself from other competitors by providing simple but beautiful interface to work with. There are a few known shortcuts:&lt;br /&gt;- In &amp;quot;Contacts&amp;quot; app, you can &lt;u&gt;swipe right&lt;/u&gt; on any of your contact for SMS shortcut&amp;#33;&lt;br /&gt;- If you &lt;u&gt;swipe left&lt;/u&gt;, you&amp;#39;ll call the person immediately&amp;#33;&lt;br /&gt;- On your puzzle lock screen: If you have unread SMS, you can drag the icon and complete the puzzle to go straight to the message&amp;#33; The same goes with missed calls.</description>
            <author>gmhafiz</author>
            <category>Android</category>
            <pubDate>Tue, 07 Jun 2011 19:30:22 +0800</pubDate>
        </item>
        <item>
            <title>Samsung Galaxy S I9000 Official Lowyat Forum V17</title>
            <link>http://forum.lowyat.net/topic/1873435</link>
            <description>&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Samsung Galaxy S&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;img src='http://www.crunchgear.com/wp-content/uploads/2010/03/galaxy-s.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;img src='http://i.imgur.com/9X2Z3.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;More detailed &lt;a href='http://www.gsmarena.com/samsung_i9000_galaxy_s-3115.php' target='_blank'&gt;specs&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Previous threads&lt;/b&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('772ba2f7db879febe81c8777bd19e185')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;772ba2f7db879febe81c8777bd19e185&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;Thank you hihihehe for opening v1-v12, silentser for v13 and noobie1 for v16&amp;#33;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1366536&amp;hl=' target='_blank'&gt;v1&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1493879&amp;hl=galaxy+s' target='_blank'&gt;v2&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1521923' target='_blank'&gt;v3&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1553305' target='_blank'&gt;v4&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1585039' target='_blank'&gt;v5&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1609823' target='_blank'&gt;v6&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1632814' target='_blank'&gt;v7&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1649301' target='_blank'&gt;v8&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1662087' target='_blank'&gt;v9&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1675208&amp;hl=v10' target='_blank'&gt;v10&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1686354' target='_blank'&gt;v11&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1711463' target='_blank'&gt;v12&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1736100' target='_blank'&gt;v13&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1771996' target='_blank'&gt;v14&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1803509' target='_blank'&gt;v15&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1840895' target='_blank'&gt;v16&lt;/a&gt;&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Prospective Buyer&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;b&gt;Why Samsung Galaxy S?&lt;/b&gt;&lt;br /&gt;It is the most successful android smartphone to date for many reasons. &lt;br /&gt;- It has got the big and beautiful &lt;span style='color:red'&gt;Super AMOLED 4inch&lt;/span&gt; screen. It is very bright and the colour is rich and vibrant. Outdoor visibility is excellent thanks to the screen technology.&lt;br /&gt;- &lt;span style='color:red'&gt;Gorilla Glass&lt;/span&gt;. Like few other devices, the screen uses reinforced glass from Corning. It is the toughest glass to date. Scratch-resistant.&lt;br /&gt;- &lt;span style='color:red'&gt;Big storage&lt;/span&gt;. Useful for installing a lot of apps without the need to buy external sdcard. (2GB space to install app plus 13GB for data)&lt;br /&gt;- Slim profile. It is only &lt;span style='color:red'&gt;9.9mm&lt;/span&gt; thick. &lt;br /&gt;- Front facing camera. Can &lt;span style='color:red'&gt;video call&lt;/span&gt; using apps like Yahoo Messenger.&lt;br /&gt;- Unobtrusive and not annoying notification system&lt;br /&gt;- &lt;span style='color:red'&gt;Audiophile&lt;/span&gt; quality sound output.&lt;br /&gt;- &lt;span style='color:red'&gt;Entertainment friendly&lt;/span&gt;. Ability to play a wide range of videos and music&lt;br /&gt;- Can do &lt;span style='color:red'&gt;tv output&lt;/span&gt; using 3.5mm headphone jack to rca&lt;br /&gt;- &lt;span style='color:red'&gt;Swype&lt;/span&gt;. Don&amp;#39;t tap, swype across the keyboard instead&amp;#33;&lt;br /&gt;- And most importantly, &lt;span style='color:red'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&amp;quot;GINGERBREAD IS COMING&amp;#33;&amp;#33;&amp;quot;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Customization:&lt;br /&gt;- Useful widgets. You can see email, sms, missed calls, twitter updates, facebook updates, toggle wifi&amp;amp;3G without opening each app. Each widgets can be moved around the screen to your liking.&lt;br /&gt;- Live wallpaper. IMO, a gimmick but can impress your friends. A lot of these live wallpaper are interactive.&lt;br /&gt;- Choice of launchers. Can choose between &lt;a href='https://market.android.com/details?id=com.fede.launcher' target='_blank'&gt;LauncherPro&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=org.adw.launcher' target='_blank'&gt;ADW Launcher&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.gau.go.launcherex' target='_blank'&gt;GO Launcher Ex&lt;/a&gt;, SPB shell and others. See below for more details&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Can I have reviews for this smartphone?&lt;/b&gt;&lt;br /&gt;There are plenty reviews floating in the internet. Some may be biased, rushed and few may be good. Nothing beats user reviews who have enjoyed the phone for themselves&lt;br /&gt;- &lt;a href='http://www.gsmarena.com/samsung_i9000_galaxy_s-review-478.php' target='_blank'&gt;GSM Arena&lt;/a&gt;&lt;br /&gt;- &lt;a href='http://www.google.co.in/url?sa=t&amp;source=web&amp;cd=9&amp;sqi=2&amp;ved=0CGAQFjAI&amp;url=http%3A%2F%2Fwww.techradar.com%2Freviews%2Fphones%2Fmobile-phones%2Fsamsung-galaxy-s-689293%2Freview&amp;ei=gSBxTeTII4XLrQe08dHRCg&amp;usg=AFQjCNHf1VFNYh7lFMF0fm7nB-MxwsaYVw&amp;sig2=ZnU6DWupftq6TLMZA0AdKg' target='_blank'&gt;TechArena&lt;/a&gt;&lt;br /&gt;- &lt;a href='http://www.google.co.in/url?sa=t&amp;source=web&amp;cd=11&amp;sqi=2&amp;ved=0CHAQFjAK&amp;url=http%3A%2F%2Fwww.trustedreviews.com%2Fmobile-phones%2Freview%2F2010%2F07%2F21%2FSamsung-Galaxy-S%2Fp1&amp;ei=gSBxTeTII4XLrQe08dHRCg&amp;usg=AFQjCNHwTEMWIO_9dwQ6YvXQwBJiRmtXrQ&amp;sig2=4lYCTy7G4zK-wfAoLGE1jg' target='_blank'&gt;Trusted Reviews&lt;/a&gt;&lt;br /&gt;- &lt;a href='http://www.google.co.in/url?sa=t&amp;source=web&amp;cd=12&amp;sqi=2&amp;ved=0CHoQFjAL&amp;url=http%3A%2F%2Fwww.phonearena.com%2Freviews%2FSamsung-GALAXY-S-I9000-Review_id2461&amp;ei=gSBxTeTII4XLrQe08dHRCg&amp;usg=AFQjCNFIVScdo1e5PVwVlygPnOERvU7K8w&amp;sig2=aPMUtub43GEFBscUV9v_yg' target='_blank'&gt;PhoneArena&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What&amp;#39;s in the box?&lt;/b&gt;&lt;br /&gt;&lt;img src='http://i.imgur.com/9MRvF.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;- Phone&lt;br /&gt;- Charger&lt;br /&gt;- Earphones&lt;br /&gt;- Manuals&lt;br /&gt;- Warranty Card&lt;br /&gt;- Kies CD&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What to check before buying?&lt;/b&gt;&lt;br /&gt;Tips for those you are going to buy this phone:&lt;br /&gt;1. Check for recovery mode/download mode, more info in the FAQ below.&lt;br /&gt;2. GPS issue is solve in phone manufacture AFTER or on OCTOBER, Check your manufacture date by looking at the battery, insert the battery in the phone at look at the battery. almost at the end of the battery there is a line that have date. EXM: 2010.07.14, make sure this date is on OCTOBER or later.&lt;br /&gt;3. Check IMEI number. Dial *#06# check with the sticker on the box if it is the same number as the phone, and the sticker at the back of the phone whether it is the same also.&lt;br /&gt;4. If you wish to do some tweaking, check if 3 buttons recovery and download mode is present. Refer below.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Why not iphone4?&lt;/b&gt;&lt;br /&gt;Samsung Galaxy S certainly goes head to head with iphone4. Both phones have their own strengths and limitations. &lt;br /&gt;- Screen: Galaxy S has bigger and vibrant screen while iphone4 is a lot sharper.&lt;br /&gt;- Glass used is not gorilla glass like in Galaxy S. Thus, easier to crack. &lt;br /&gt;- Build: iphone4 is 0.6mm thinner with unibody metal case. although there may be problem with antenna-gate that galaxy s do not have&lt;br /&gt;- A bit heavier than galaxy s&lt;br /&gt;- Apps: iOS &amp;gt; 300k apps. Android has &amp;gt;150k apps. But both android and iOS has about the same amount of free apps.&lt;br /&gt;- Can video call on 3G network. While iphone needs to be jailbroken first.&lt;br /&gt;- Android can use any bluetooth device to pair with Galaxy S. Not with iphone&lt;br /&gt;- with iphone, cannot see embedded flash in website. Ever&amp;#33;&lt;br /&gt;- Android phones do not need cables to sync, just do it wirelessly using apps like doubletwist or winamp&lt;br /&gt;- With android, can multitasking like on your computer. Can switch to the recent 6 apps by holding down home button. On iphone, only certain apps can run in the background while others are put to sleep.&lt;br /&gt;- And most importantly, can get free angry birds with all levels on android devices&amp;#33;&lt;br /&gt;&lt;br /&gt;iOS certainly is more polished overall.&lt;br /&gt;If you dig aesthetics, iphone is better.&lt;br /&gt;If you dig functionality and freedom, android is the way to go &lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;New User&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;b&gt;Recommendations for cool apps?&lt;/b&gt;&lt;br /&gt;See this &lt;a href='http://forum.xda-developers.com/showthread.php?t=765081' target='_blank'&gt;Make your Android life easier with these Apps to make your SGS cool&lt;/a&gt;&lt;br /&gt;I&amp;#39;d recommend:&lt;br /&gt;- Games: &lt;a href='https://market.android.com/details?id=com.rovio.angrybirds' target='_blank'&gt;Angry birds&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.rovio.angrybirdsseasons' target='_blank'&gt;Angry Birds Seasons&lt;/a&gt;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.google.android.apps.unveil' target='_blank'&gt;Goggles&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.google.zxing.client.android' target='_blank'&gt;Barcode Scanner&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.google.android.apps.shopper' target='_blank'&gt;Google Shoppper&lt;/a&gt;.&lt;br /&gt;-  &lt;a href='https://market.android.com/details?id=com.reader.laputa.free' target='_blank'&gt;Laputa&lt;/a&gt;&lt;br /&gt;- Media: &lt;a href='https://market.android.com/details?id=com.clov4r.android.nil' target='_blank'&gt;Moboplayer&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.mixzing.basic' target='_blank'&gt;Mixzing&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.tunewiki.lyricplayer.android' target='_blank'&gt;TuneWiki&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=org.iii.romulus.meridian' target='_blank'&gt;Meridian Player&lt;/a&gt;&lt;br /&gt;- Photo: &lt;a href='https://market.android.com/details?id=com.alensw.PicFolder' target='_blank'&gt;Quickpic&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.justpictures' target='_blank'&gt;JustPictures&amp;#33;&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=dk.nindroid.rss' target='_blank'&gt;Floating Image&lt;/a&gt;&lt;br /&gt;- Twitter: &lt;a href='https://market.android.com/details?id=com.levelup.touiteur' target='_blank'&gt;Plume&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.handmark.tweetcaster' target='_blank'&gt;Tweetcaster&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.twitter.android' target='_blank'&gt;Official twitter&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.thedeck.android.app' target='_blank'&gt;TweetDeck&lt;/a&gt;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.facebook.katana' target='_blank'&gt;Facebook for Android&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=uk.co.senab.blueNotifyFree' target='_blank'&gt;FriendCaster for Facebook&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.ipthing.speedyuploaderlite' target='_blank'&gt;Batch Upload to Facebook&lt;/a&gt;&lt;br /&gt;-  &lt;a href='https://market.android.com/details?id=com.google.android.stardroid' target='_blank'&gt;Google Sky Map&lt;/a&gt;&lt;br /&gt;- Weather widget: &lt;a href='https://market.android.com/details?id=com.levelup.beautifulwidgets' target='_blank'&gt;Beautiful Widget&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.anddoes.fancywidget' target='_blank'&gt;Fancy Widget&lt;/a&gt;&lt;br /&gt;- Browser: &lt;a href='https://market.android.com/details?id=com.opera.browser' target='_blank'&gt;Opera Mobile 11&lt;/a&gt; - the fastest as of now. see this &lt;a href='http://forum.lowyat.net/index.php?showtopic=1771996&amp;view=findpost&amp;p=40949612' target='_blank'&gt;guide&lt;/a&gt; to force desktop view, &lt;a href='https://market.android.com/details?id=sui.m' target='_blank'&gt;xScope&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=cn.miren.browser' target='_blank'&gt;Miren Browser&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=mobi.mgeek.TunnyBrowser' target='_blank'&gt;Dolphin HD&lt;/a&gt; &lt;br /&gt;- Notes: &lt;a href='https://market.android.com/details?id=com.rememberthemilk.MobileRTMt' target='_blank'&gt;RTM&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.taskos' target='_blank'&gt;Taskos&lt;/a&gt;,  &lt;a href='https://market.android.com/details?id=com.socialnmobile.dictapps.notepad.color.note' target='_blank'&gt;Color Notes&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=org.dayup.gtask' target='_blank'&gt;GTasks&lt;/a&gt;&lt;br /&gt;- Messenger: See Below &lt;br /&gt;- SMS: &lt;a href='https://market.android.com/details?id=com.handcent.nextsms' target='_blank'&gt;Handcent&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.jb.mms' target='_blank'&gt;GO SMS&lt;/a&gt;,  &lt;a href='https://market.android.com/details?id=com.p1.chompsms' target='_blank'&gt;Chomp SMS&lt;/a&gt;&lt;br /&gt;- GPS: &lt;a href='http://www.androlib.com/android.application.com-mactiontech-x5sea-jtpip.aspx' target='_blank'&gt;Papago X5&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.sygic.aura' target='_blank'&gt;Aura Sygic&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.ndrive.androidsingapore_malaysia' target='_blank'&gt;NDrive&lt;/a&gt;&lt;br /&gt;- Online radio: Hitz.fm &lt;a href='http://radiotime.com/station/s_14605/Hitz_FM_929.aspx' target='_blank'&gt;http://radiotime.com/station/s_14605/Hitz_FM_929.aspx&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.android.DroidLiveLite' target='_blank'&gt;XiiaLive Lite&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Try googling for top 10 android apps. there are lots of blogs writing about must haves app.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How about games other than Angry Birds?&lt;/b&gt;&lt;br /&gt;- There&amp;#39;s a huge list of games &lt;a href='http://androidforums.com/android-games/216857-android-games-list.html' target='_blank'&gt;here&lt;/a&gt;&lt;br /&gt;- Also see this &lt;a href='http://androidforums.com/android-games/' target='_blank'&gt;forum&lt;/a&gt; for a comprehensive guide&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Tips&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;b&gt;What is so special about TouchWiz interface? Any shortcuts?&lt;/b&gt;&lt;br /&gt;It is Samsung&amp;#39;s way to differentiate itself from other competitors by providing simple but beautiful interface to work with. There are a few known shortcuts:&lt;br /&gt;- In &amp;quot;Contacts&amp;quot; app, you can &lt;u&gt;swipe right&lt;/u&gt; on any of your contact for SMS shortcut&amp;#33;&lt;br /&gt;- If you &lt;u&gt;swipe left&lt;/u&gt;, you&amp;#39;ll call the person immediately&amp;#33;&lt;br /&gt;- On your puzzle lock screen: If you have unread SMS, you can drag the icon and complete the puzzle to go straight to the message&amp;#33; The same goes with missed calls.</description>
            <author>gmhafiz</author>
            <category>Android</category>
            <pubDate>Wed, 11 May 2011 16:03:16 +0800</pubDate>
        </item>
        <item>
            <title>Samsung Galaxy S I9000 Official Thread V15</title>
            <link>http://forum.lowyat.net/topic/1803509</link>
            <description>&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Samsung Galaxy S&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;img src='http://www.crunchgear.com/wp-content/uploads/2010/03/galaxy-s.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;img src='http://i.imgur.com/9X2Z3.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;More detailed &lt;a href='http://www.gsmarena.com/samsung_i9000_galaxy_s-3115.php' target='_blank'&gt;specs&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Previous threads&lt;/b&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('c98404ff0d02713c63b949c5471e5448')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;c98404ff0d02713c63b949c5471e5448&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;Thank you hihihehe for opening v1-v12 and silentser for v13&amp;#33;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1366536&amp;hl=' target='_blank'&gt;v1&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1493879&amp;hl=galaxy+s' target='_blank'&gt;v2&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1521923' target='_blank'&gt;v3&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1553305' target='_blank'&gt;v4&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1585039' target='_blank'&gt;v5&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1609823' target='_blank'&gt;v6&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1632814' target='_blank'&gt;v7&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1649301' target='_blank'&gt;v8&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1662087' target='_blank'&gt;v9&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1675208&amp;hl=v10' target='_blank'&gt;v10&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1686354' target='_blank'&gt;v11&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1711463' target='_blank'&gt;v12&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1736100' target='_blank'&gt;v13&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1771996' target='_blank'&gt;v14&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Prospective Buyer&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;b&gt;Why Samsung Galaxy S?&lt;/b&gt;&lt;br /&gt;It is the most successful android smartphone to date for many reasons. &lt;br /&gt;- It has got the big and beautiful &lt;span style='color:red'&gt;Super AMOLED 4inch&lt;/span&gt; screen. It is very bright and the colour is rich and vibrant. Outdoor visibility is excellent thanks to the screen technology.&lt;br /&gt;- &lt;span style='color:red'&gt;Gorilla Glass&lt;/span&gt;. Like few other devices, the screen uses reinforced glass from Corning. It is the toughest glass to date. Scratch-resistant.&lt;br /&gt;- &lt;span style='color:red'&gt;Big storage&lt;/span&gt;. Useful for installing a lot of apps without the need to buy external sdcard. (2GB space to install app plus 13GB for data)&lt;br /&gt;- Slim profile. It is only &lt;span style='color:red'&gt;9.9mm&lt;/span&gt; thick. &lt;br /&gt;- Front facing camera. Can &lt;span style='color:red'&gt;video call&lt;/span&gt; using apps like Yahoo Messenger.&lt;br /&gt;- Unobtrusive and not annoying notification system&lt;br /&gt;- &lt;span style='color:red'&gt;Audiophile&lt;/span&gt; quality sound output.&lt;br /&gt;- &lt;span style='color:red'&gt;Entertainment friendly&lt;/span&gt;. Ability to play a wide range of videos and music&lt;br /&gt;- Can do &lt;span style='color:red'&gt;tv output&lt;/span&gt; using 3.5mm headphone jack to rca&lt;br /&gt;- &lt;span style='color:red'&gt;Swype&lt;/span&gt;. Don&amp;#39;t tap, swype across the keyboard instead&amp;#33;&lt;br /&gt;- And most importantly, &lt;span style='color:red'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&amp;quot;GINGERBREAD IS COMING&amp;#33;&amp;#33;&amp;quot;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Customization:&lt;br /&gt;- Useful widgets. You can see email, sms, missed calls, twitter updates, facebook updates, toggle wifi&amp;amp;3G without opening each app. Each widgets can be moved around the screen to your liking.&lt;br /&gt;- Live wallpaper. IMO, a gimmick but can impress your friends. A lot of these live wallpaper are interactive.&lt;br /&gt;- Choice of launchers. Can choose between &lt;a href='https://market.android.com/details?id=com.fede.launcher' target='_blank'&gt;LauncherPro&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=org.adw.launcher' target='_blank'&gt;ADW Launcher&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.gau.go.launcherex' target='_blank'&gt;GO Launcher Ex&lt;/a&gt;, SPB shell and others. See below for more details&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Can I have reviews for this smartphone?&lt;/b&gt;&lt;br /&gt;There are plenty reviews floating in the internet. Some may be biased, rushed and few may be good. Nothing beats user reviews who have enjoyed the phone for themselves&lt;br /&gt;- &lt;a href='http://www.gsmarena.com/samsung_i9000_galaxy_s-review-478.php' target='_blank'&gt;GSM Arena&lt;/a&gt;&lt;br /&gt;- &lt;a href='http://www.google.co.in/url?sa=t&amp;source=web&amp;cd=9&amp;sqi=2&amp;ved=0CGAQFjAI&amp;url=http%3A%2F%2Fwww.techradar.com%2Freviews%2Fphones%2Fmobile-phones%2Fsamsung-galaxy-s-689293%2Freview&amp;ei=gSBxTeTII4XLrQe08dHRCg&amp;usg=AFQjCNHf1VFNYh7lFMF0fm7nB-MxwsaYVw&amp;sig2=ZnU6DWupftq6TLMZA0AdKg' target='_blank'&gt;TechArena&lt;/a&gt;&lt;br /&gt;- &lt;a href='http://www.google.co.in/url?sa=t&amp;source=web&amp;cd=11&amp;sqi=2&amp;ved=0CHAQFjAK&amp;url=http%3A%2F%2Fwww.trustedreviews.com%2Fmobile-phones%2Freview%2F2010%2F07%2F21%2FSamsung-Galaxy-S%2Fp1&amp;ei=gSBxTeTII4XLrQe08dHRCg&amp;usg=AFQjCNHwTEMWIO_9dwQ6YvXQwBJiRmtXrQ&amp;sig2=4lYCTy7G4zK-wfAoLGE1jg' target='_blank'&gt;Trusted Reviews&lt;/a&gt;&lt;br /&gt;- &lt;a href='http://www.google.co.in/url?sa=t&amp;source=web&amp;cd=12&amp;sqi=2&amp;ved=0CHoQFjAL&amp;url=http%3A%2F%2Fwww.phonearena.com%2Freviews%2FSamsung-GALAXY-S-I9000-Review_id2461&amp;ei=gSBxTeTII4XLrQe08dHRCg&amp;usg=AFQjCNFIVScdo1e5PVwVlygPnOERvU7K8w&amp;sig2=aPMUtub43GEFBscUV9v_yg' target='_blank'&gt;PhoneArena&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What&amp;#39;s in the box?&lt;/b&gt;&lt;br /&gt;&lt;img src='http://i.imgur.com/9MRvF.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;- Phone&lt;br /&gt;- Charger&lt;br /&gt;- Earphones&lt;br /&gt;- Manuals&lt;br /&gt;- Warranty Card&lt;br /&gt;- Kies CD&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What to check before buying?&lt;/b&gt;&lt;br /&gt;Tips for those you are going to buy this phone:&lt;br /&gt;1. Check for recovery mode/download mode, more info in the FAQ below.&lt;br /&gt;2. GPS issue is solve in phone manufacture AFTER or on OCTOBER, Check your manufacture date by looking at the battery, insert the battery in the phone at look at the battery. almost at the end of the battery there is a line that have date. EXM: 2010.07.14, make sure this date is on OCTOBER or later.&lt;br /&gt;3. Check IMEI number. Dial *#06# check with the sticker on the box if it is the same number as the phone, and the sticker at the back of the phone whether it is the same also.&lt;br /&gt;4. If you wish to do some tweaking, check if 3 buttons recovery and download mode is present. Refer below.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Why not iphone4?&lt;/b&gt;&lt;br /&gt;Samsung Galaxy S certainly goes head to head with iphone4. Both phones have their own strengths and limitations. &lt;br /&gt;- Screen: Galaxy S has bigger and vibrant screen while iphone4 is a lot sharper.&lt;br /&gt;- Glass used is not gorilla glass like in Galaxy S. Thus, easier to crack. &lt;br /&gt;- Build: iphone4 is 0.6mm thinner with unibody metal case. although there may be problem with antenna-gate that galaxy s do not have&lt;br /&gt;- A bit heavier than galaxy s&lt;br /&gt;- Apps: iOS &amp;gt; 300k apps. Android has &amp;gt;150k apps. But both android and iOS has about the same amount of free apps.&lt;br /&gt;- Can video call on 3G network. While iphone needs to be jailbroken first.&lt;br /&gt;- Android can use any bluetooth device to pair with Galaxy S. Not with iphone&lt;br /&gt;- with iphone, cannot see embedded flash in website. Ever&amp;#33;&lt;br /&gt;- Android phones do not need cables to sync, just do it wirelessly using apps like doubletwist or winamp&lt;br /&gt;- With android, can multitasking like on your computer. Can switch to the recent 6 apps by holding down home button. On iphone, only certain apps can run in the background while others are put to sleep.&lt;br /&gt;- And most importantly, can get free angry birds with all levels on android devices&amp;#33;&lt;br /&gt;&lt;br /&gt;iOS certainly is more polished overall.&lt;br /&gt;If you dig aesthetics, iphone is better.&lt;br /&gt;If you dig functionality and freedom, android is the way to go &lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;New User&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;b&gt;Recommendations for cool apps?&lt;/b&gt;&lt;br /&gt;See this &lt;a href='http://forum.xda-developers.com/showthread.php?t=765081' target='_blank'&gt;Make your Android life easier with these Apps to make your SGS cool&lt;/a&gt;&lt;br /&gt;I&amp;#39;d recommend:&lt;br /&gt;- Games: &lt;a href='https://market.android.com/details?id=com.rovio.angrybirds' target='_blank'&gt;Angry birds&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.rovio.angrybirdsseasons' target='_blank'&gt;Angry Birds Seasons&lt;/a&gt;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.google.android.apps.unveil' target='_blank'&gt;Goggles&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.google.zxing.client.android' target='_blank'&gt;Barcode Scanner&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.google.android.apps.shopper' target='_blank'&gt;Google Shoppper&lt;/a&gt;.&lt;br /&gt;-  &lt;a href='https://market.android.com/details?id=com.reader.laputa.free' target='_blank'&gt;Laputa&lt;/a&gt;&lt;br /&gt;- Media: &lt;a href='https://market.android.com/details?id=com.clov4r.android.nil' target='_blank'&gt;Moboplayer&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.mixzing.basic' target='_blank'&gt;Mixzing&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.tunewiki.lyricplayer.android' target='_blank'&gt;TuneWiki&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=org.iii.romulus.meridian' target='_blank'&gt;Meridian Player&lt;/a&gt;&lt;br /&gt;- Photo: &lt;a href='https://market.android.com/details?id=com.alensw.PicFolder' target='_blank'&gt;Quickpic&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.justpictures' target='_blank'&gt;JustPictures&amp;#33;&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=dk.nindroid.rss' target='_blank'&gt;Floating Image&lt;/a&gt;&lt;br /&gt;- Twitter: &lt;a href='https://market.android.com/details?id=com.levelup.touiteur' target='_blank'&gt;Plume&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.handmark.tweetcaster' target='_blank'&gt;Tweetcaster&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.twitter.android' target='_blank'&gt;Official twitter&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.thedeck.android.app' target='_blank'&gt;TweetDeck&lt;/a&gt;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.facebook.katana' target='_blank'&gt;Facebook for Android&lt;/a&gt;&lt;br /&gt;-  &lt;a href='https://market.android.com/details?id=com.google.android.stardroid' target='_blank'&gt;Google Sky Map&lt;/a&gt;&lt;br /&gt;- Weather widget: &lt;a href='https://market.android.com/details?id=com.levelup.beautifulwidgets' target='_blank'&gt;Beautiful Widget&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.anddoes.fancywidget' target='_blank'&gt;Fancy Widget&lt;/a&gt;&lt;br /&gt;- Browser: &lt;a href='https://market.android.com/details?id=com.opera.browser' target='_blank'&gt;Opera Mobile 11&lt;/a&gt; - the fastest as of now. see this &lt;a href='http://forum.lowyat.net/index.php?showtopic=1771996&amp;view=findpost&amp;p=40949612' target='_blank'&gt;guide&lt;/a&gt; to force desktop view, &lt;a href='https://market.android.com/details?id=sui.m' target='_blank'&gt;xScope&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=cn.miren.browser' target='_blank'&gt;Miren Browser&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=mobi.mgeek.TunnyBrowser' target='_blank'&gt;Dolphin HD&lt;/a&gt; &lt;br /&gt;- Notes: &lt;a href='https://market.android.com/details?id=com.rememberthemilk.MobileRTMt' target='_blank'&gt;RTM&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.taskos' target='_blank'&gt;Taskos&lt;/a&gt;,  &lt;a href='https://market.android.com/details?id=com.socialnmobile.dictapps.notepad.color.note' target='_blank'&gt;Color Notes&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=org.dayup.gtask' target='_blank'&gt;GTasks&lt;/a&gt;&lt;br /&gt;- Messenger: See Below &lt;br /&gt;- SMS: &lt;a href='https://market.android.com/details?id=com.handcent.nextsms' target='_blank'&gt;Handcent&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.jb.mms' target='_blank'&gt;GO SMS&lt;/a&gt;,  &lt;a href='https://market.android.com/details?id=com.p1.chompsms' target='_blank'&gt;Chomp SMS&lt;/a&gt;&lt;br /&gt;- GPS: &lt;a href='http://www.androlib.com/android.application.com-mactiontech-x5sea-jtpip.aspx' target='_blank'&gt;Papago X5&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.sygic.aura' target='_blank'&gt;Aura Sygic&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.ndrive.androidsingapore_malaysia' target='_blank'&gt;NDrive&lt;/a&gt;&lt;br /&gt;- Online radio: Hitz.fm &lt;a href='http://radiotime.com/station/s_14605/Hitz_FM_929.aspx' target='_blank'&gt;http://radiotime.com/station/s_14605/Hitz_FM_929.aspx&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.android.DroidLiveLite' target='_blank'&gt;XiiaLive Lite&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Try googling for top 10 android apps. there are lots of blogs writing about must haves app.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How about games other than Angry Birds?&lt;/b&gt;&lt;br /&gt;- There&amp;#39;s a huge list of games &lt;a href='http://androidforums.com/android-games/216857-android-games-list.html' target='_blank'&gt;here&lt;/a&gt;&lt;br /&gt;- Also see this &lt;a href='http://androidforums.com/android-games/' target='_blank'&gt;forum&lt;/a&gt; for a comprehensive guide&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Tips&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;b&gt;What is so special about TouchWiz interface? Any shortcuts?&lt;/b&gt;&lt;br /&gt;It is Samsung&amp;#39;s way to differentiate itself from other competitors by providing simple but beautiful interface to work with. There are a few known shortcuts:&lt;br /&gt;- In &amp;quot;Contacts&amp;quot; app, you can &lt;u&gt;swipe right&lt;/u&gt; on any of your contact for SMS shortcut&amp;#33;&lt;br /&gt;- If you &lt;u&gt;swipe left&lt;/u&gt;, you&amp;#39;ll call the person immediately&amp;#33;&lt;br /&gt;- On your puzzle lock screen: If you have unread SMS, you can drag the icon and complete the puzzle to go straight to the message&amp;#33; The same goes with missed calls.</description>
            <author>gmhafiz</author>
            <category>Android</category>
            <pubDate>Wed, 23 Mar 2011 13:47:57 +0800</pubDate>
        </item>
        <item>
            <title>Samsung Galaxy S I9000 Official Thread V14</title>
            <link>http://forum.lowyat.net/topic/1771996</link>
            <description>&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Samsung Galaxy S&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;img src='http://www.crunchgear.com/wp-content/uploads/2010/03/galaxy-s.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;img src='http://i.imgur.com/9X2Z3.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;More detailed &lt;a href='http://www.gsmarena.com/samsung_i9000_galaxy_s-3115.php' target='_blank'&gt;specs&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Previous threads&lt;/b&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('a902f38dd8f580b4efa5375453b0b9d7')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;a902f38dd8f580b4efa5375453b0b9d7&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;Thank you hihihehe for opening v1-v12 and silentser for v13&amp;#33;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1366536&amp;hl=' target='_blank'&gt;v1&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1493879&amp;hl=galaxy+s' target='_blank'&gt;v2&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1521923' target='_blank'&gt;v3&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1553305' target='_blank'&gt;v4&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1585039' target='_blank'&gt;v5&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1609823' target='_blank'&gt;v6&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1632814' target='_blank'&gt;v7&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1649301' target='_blank'&gt;v8&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1662087' target='_blank'&gt;v9&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/index.php?showtopic=1675208&amp;hl=v10' target='_blank'&gt;v10&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1686354' target='_blank'&gt;v11&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1711463' target='_blank'&gt;v12&lt;/a&gt;&lt;br /&gt;&lt;a href='http://forum.lowyat.net/topic/1736100' target='_blank'&gt;v13&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Prospective Buyer&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;b&gt;Why Samsung Galaxy S?&lt;/b&gt;&lt;br /&gt;It is the most successful android smartphone to date for many reasons. &lt;br /&gt;- It has got the big and beautiful &lt;span style='color:red'&gt;Super AMOLED 4inch&lt;/span&gt; screen. It is very bright and the colour is rich and vibrant. Outdoor visibility is excellent thanks to the screen technology.&lt;br /&gt;- &lt;span style='color:red'&gt;Gorilla Glass&lt;/span&gt;. Like few other devices, the screen uses reinforced glass from Corning. It is the toughest glass to date. Scratch-resistant.&lt;br /&gt;- &lt;span style='color:red'&gt;Big storage&lt;/span&gt;. Useful for installing a lot of apps without the need to buy external sdcard. (2GB space to install app plus 13GB for data)&lt;br /&gt;- Slim profile. It is only &lt;span style='color:red'&gt;9.9mm&lt;/span&gt; thick. &lt;br /&gt;- Front facing camera. Can &lt;span style='color:red'&gt;video call&lt;/span&gt; using apps like Yahoo Messenger.&lt;br /&gt;- Unobtrusive and not annoying notification system&lt;br /&gt;- &lt;span style='color:red'&gt;Audiophile&lt;/span&gt; quality sound output.&lt;br /&gt;- &lt;span style='color:red'&gt;Entertainment friendly&lt;/span&gt;. Ability to play a wide range of videos and music&lt;br /&gt;- Can do &lt;span style='color:red'&gt;tv output&lt;/span&gt; using 3.5mm headphone jack to rca&lt;br /&gt;- &lt;span style='color:red'&gt;Swype&lt;/span&gt;. Don&amp;#39;t tap, swype across the keyboard instead&amp;#33;&lt;br /&gt;- And most importantly, &lt;span style='color:red'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&amp;quot;GINGERBREAD IS COMING&amp;#33;&amp;#33;&amp;quot;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Customization:&lt;br /&gt;- Useful widgets. You can see email, sms, missed calls, twitter updates, facebook updates, toggle wifi&amp;amp;3G without opening each app. Each widgets can be moved around the screen to your liking.&lt;br /&gt;- Live wallpaper. IMO, a gimmick but can impress your friends. A lot of these live wallpaper are interactive.&lt;br /&gt;- Choice of launchers. Can choose between &lt;a href='https://market.android.com/details?id=com.fede.launcher' target='_blank'&gt;LauncherPro&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=org.adw.launcher' target='_blank'&gt;ADW Launcher&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.gau.go.launcherex' target='_blank'&gt;GO Launcher Ex&lt;/a&gt;, SPB shell and others. See below for more details&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Can I have reviews for this smartphone?&lt;/b&gt;&lt;br /&gt;There are plenty reviews floating in the internet. Some may be biased, rushed and few may be good. Nothing beats user reviews who have enjoyed the phone for themselves&lt;br /&gt;- &lt;a href='http://www.gsmarena.com/samsung_i9000_galaxy_s-review-478.php' target='_blank'&gt;GSM Arena&lt;/a&gt;&lt;br /&gt;- &lt;a href='http://www.google.co.in/url?sa=t&amp;source=web&amp;cd=9&amp;sqi=2&amp;ved=0CGAQFjAI&amp;url=http%3A%2F%2Fwww.techradar.com%2Freviews%2Fphones%2Fmobile-phones%2Fsamsung-galaxy-s-689293%2Freview&amp;ei=gSBxTeTII4XLrQe08dHRCg&amp;usg=AFQjCNHf1VFNYh7lFMF0fm7nB-MxwsaYVw&amp;sig2=ZnU6DWupftq6TLMZA0AdKg' target='_blank'&gt;TechArena&lt;/a&gt;&lt;br /&gt;- &lt;a href='http://www.google.co.in/url?sa=t&amp;source=web&amp;cd=11&amp;sqi=2&amp;ved=0CHAQFjAK&amp;url=http%3A%2F%2Fwww.trustedreviews.com%2Fmobile-phones%2Freview%2F2010%2F07%2F21%2FSamsung-Galaxy-S%2Fp1&amp;ei=gSBxTeTII4XLrQe08dHRCg&amp;usg=AFQjCNHwTEMWIO_9dwQ6YvXQwBJiRmtXrQ&amp;sig2=4lYCTy7G4zK-wfAoLGE1jg' target='_blank'&gt;Trusted Reviews&lt;/a&gt;&lt;br /&gt;- &lt;a href='http://www.google.co.in/url?sa=t&amp;source=web&amp;cd=12&amp;sqi=2&amp;ved=0CHoQFjAL&amp;url=http%3A%2F%2Fwww.phonearena.com%2Freviews%2FSamsung-GALAXY-S-I9000-Review_id2461&amp;ei=gSBxTeTII4XLrQe08dHRCg&amp;usg=AFQjCNFIVScdo1e5PVwVlygPnOERvU7K8w&amp;sig2=aPMUtub43GEFBscUV9v_yg' target='_blank'&gt;PhoneArena&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What&amp;#39;s in the box?&lt;/b&gt;&lt;br /&gt;&lt;img src='http://s2.postimage.org/4c2jcly3l/DSCF1222.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;- Phone&lt;br /&gt;- Charger&lt;br /&gt;- Earphones&lt;br /&gt;- Manuals&lt;br /&gt;- Warranty Card&lt;br /&gt;- Kies CD&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What to check before buying?&lt;/b&gt;&lt;br /&gt;Tips for those you are going to buy this phone:&lt;br /&gt;1. Check for recovery mode/download mode, more info in the FAQ below.&lt;br /&gt;2. GPS issue is solve in phone manufacture AFTER or on OCTOBER, Check your manufacture date by looking at the battery, insert the battery in the phone at look at the battery. almost at the end of the battery there is a line that have date. EXM: 2010.07.14, make sure this date is on OCTOBER or later.&lt;br /&gt;3. dial *#06# check with the sticker on the box if it is the same number as the phone, and the sticker at the back of the phone whether it is the same also.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Why not iphone4?&lt;/b&gt;&lt;br /&gt;Samsung Galaxy S certainly goes head to head with iphone4. Both phones have their own strengths and limitations. &lt;br /&gt;- Screen: Galaxy S has bigger and vibrant screen while iphone4 is a lot sharper.&lt;br /&gt;- Glass used is not gorilla glass like in Galaxy S. Thus, easier to crack. &lt;br /&gt;- Build: iphone4 is 0.6mm thinner with unibody metal case. although there may be problem with antenna-gate that galaxy s do not have&lt;br /&gt;- A bit heavier than galaxy s&lt;br /&gt;- Apps: iOS &amp;gt; 300k apps. Android has &amp;gt;150k apps. But both android and iOS has about the same amount of free apps.&lt;br /&gt;- Can video call on 3G network. While iphone needs to be jailbroken first.&lt;br /&gt;- Android can use any bluetooth device to pair with Galaxy S. Not with iphone&lt;br /&gt;- with iphone, cannot see embedded flash in website. Ever&amp;#33;&lt;br /&gt;- Android phones do not need cables to sync, just do it wirelessly using apps like doubletwist or winamp&lt;br /&gt;- With android, can multitasking like on your computer. Can switch to the recent 6 apps by holding down home button. On iphone, only certain apps can run in the background while others are put to sleep.&lt;br /&gt;- And most importantly, can get free angry birds with all levels on android devices&amp;#33;&lt;br /&gt;&lt;br /&gt;iOS certainly is more polished overall.&lt;br /&gt;If you dig aesthetics, iphone is better.&lt;br /&gt;If you dig functionality and freedom, android is the way to go &lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;New User&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;b&gt;Recommendations for cool apps?&lt;/b&gt;&lt;br /&gt;See this &lt;a href='http://forum.xda-developers.com/showthread.php?t=765081' target='_blank'&gt;Make your Android life easier with these Apps to make your SGS cool&lt;/a&gt;&lt;br /&gt;I&amp;#39;d recommend:&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.rovio.angrybirds' target='_blank'&gt;Angry birdsh&lt;/a&gt; &lt;a href='https://market.android.com/details?id=com.rovio.angrybirdsseasons' target='_blank'&gt;Angry Birds Seasons&lt;/a&gt;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.google.android.apps.unveil' target='_blank'&gt;Goggles&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.google.zxing.client.android' target='_blank'&gt;Barcode Scanner&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.google.android.apps.shopper' target='_blank'&gt;Google Shoppper&lt;/a&gt;.&lt;br /&gt;-  &lt;a href='https://market.android.com/details?id=com.reader.laputa.free' target='_blank'&gt;Laputa&lt;/a&gt;&lt;br /&gt;- Media: &lt;a href='http://www.moboplayer.com/moboplayer_en.html' target='_blank'&gt;Moboplayer&lt;/a&gt;(Download the high end version), &lt;a href='https://market.android.com/details?id=com.mixzing.basic' target='_blank'&gt;Mixzing&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.tunewiki.lyricplayer.android' target='_blank'&gt;TuneWiki&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=org.iii.romulus.meridian' target='_blank'&gt;Meridian Player&lt;/a&gt;&lt;br /&gt;- Twitter: &lt;a href='https://market.android.com/details?id=com.levelup.touiteur' target='_blank'&gt;Plume&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.handmark.tweetcaster' target='_blank'&gt;Tweetcaster&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.twitter.android' target='_blank'&gt;Official twitter&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.thedeck.android.app' target='_blank'&gt;TweetDeck&lt;/a&gt;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.facebook.katana' target='_blank'&gt;Facebook for Android&lt;/a&gt;&lt;br /&gt;-  &lt;a href='https://market.android.com/details?id=com.google.android.stardroid' target='_blank'&gt;Google Sky Map&lt;/a&gt;&lt;br /&gt;- Browser: &lt;a href='https://market.android.com/details?id=sui.m' target='_blank'&gt;xScope&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.opera.browser' target='_blank'&gt;Opera Mobile&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=mobi.mgeek.TunnyBrowser' target='_blank'&gt;Dolphin HD&lt;/a&gt; &lt;br /&gt;- Notes: &lt;a href='https://market.android.com/details?id=com.rememberthemilk.MobileRTMt' target='_blank'&gt;RTM&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.taskos' target='_blank'&gt;Taskos&lt;/a&gt;,  &lt;a href='https://market.android.com/details?id=com.socialnmobile.dictapps.notepad.color.note' target='_blank'&gt;Color Notes&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=org.dayup.gtask' target='_blank'&gt;GTasks&lt;/a&gt;&lt;br /&gt;- IM: See Below &lt;br /&gt;- SMS: &lt;a href='https://market.android.com/details?id=com.handcent.nextsms' target='_blank'&gt;Handcent&lt;/a&gt;, &lt;a href='https://market.android.com/details?id=com.p1.chompsms' target='_blank'&gt;Chomp SMS&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Try googling for top 10 android apps. there are lots of blogs writing about must haves app.&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Tips&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;b&gt;What is so special about TouchWiz interface? Any shortcuts?&lt;/b&gt;&lt;br /&gt;It is Samsung&amp;#39;s way to differentiate itself from other competitors by providing simple but beautiful interface to work with. There are a few known shortcuts:&lt;br /&gt;- In &amp;quot;Contacts&amp;quot; app, you can &lt;u&gt;swipe right&lt;/u&gt; on any of your contact for SMS shortcut&amp;#33;&lt;br /&gt;- If you &lt;u&gt;swipe left&lt;/u&gt;, you&amp;#39;ll call the person immediately&amp;#33;&lt;br /&gt;- On your puzzle lock screen: If you have unread SMS, you can drag the icon and complete the puzzle to go straight to the message&amp;#33; The same goes with missed calls.&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;b&gt;&lt;span style='color:blue'&gt;&lt;span style='font-size:16pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;FAQ&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;&lt;span style='color:purple'&gt;&lt;span style='font-size:14pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;General&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Is the Music Player good enough to take the place of my MP3 Player?&lt;/b&gt;&lt;br /&gt;Depending on your model, you will have about 13GB storage in a 16GB model. This smartphone also has an excellent hardware that gives audiophile quality of sound. The default music player is beautiful and functional. To sync with your computer, you can either use doubletwist  app or winamp.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;I want to to make my own ringtone from my music file. Is that possible?&lt;/b&gt;&lt;br /&gt;Yes&amp;#33; You can use an excllent app called &lt;a href='https://market.android.com/details?id=com.ringdroid' target='_blank'&gt;Ringdroid&lt;/a&gt;. You can choose which portion you want or have the whole length of music to be your ringtone.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;You talked about these launchers. What are they?&lt;/b&gt;&lt;br /&gt;It is one way of customizating your homescreen. Each launcher will have its own unique way of using them. Some of them includes beautiful animation that will surely wow your friends&amp;#33; Examples:&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.fede.launcher' target='_blank'&gt;LauncherPro&lt;/a&gt;: This is a high quality, very fast and popular launcher. There&amp;#39;s a paid version that can do more&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=org.adw.launcher' target='_blank'&gt;ADW Launcher&lt;/a&gt;: Its advantage is the availibility of themes to further customize your phones. Among the themes are Tron Legacy, Honeycomb, Matrix and Iron Man. The paid version add more animations and features.&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.gau.go.launcherex' target='_blank'&gt;GO Launcher Ex&lt;/a&gt;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=org.zeam' target='_blank'&gt;Zeam Launcher&lt;/a&gt;: Want a simple/minimalist launcher? There&amp;#39;s an app for that&amp;#33;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What messenger that you recommend?&lt;/b&gt;&lt;br /&gt;BlackBerry Messenger(BBM) alike:&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.whatsapp' target='_blank'&gt;WhatsApp Messenger&lt;/a&gt;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.liveprofile.android' target='_blank'&gt;LiveProfile&lt;/a&gt; - one of the hottest one right now&amp;#33;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.enflick.android.ping' target='_blank'&gt;PingChat&amp;#33;&lt;/a&gt;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.belugapods.beluga' target='_blank'&gt;Beluga&lt;/a&gt; (bought by facebook)&lt;br /&gt;&lt;br /&gt;multi-protocol IM (can connect to msn, yahoo, facebook, etc)&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.meebo' target='_blank'&gt;Meebo&lt;/a&gt;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.ebuddy.android' target='_blank'&gt;eBuddy Messenger&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;video-call&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.yahoo.mobile.client.android.im' target='_blank'&gt;Yahoo Messenger&lt;/a&gt;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.fring' target='_blank'&gt;Fring&lt;/a&gt;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.nimbuzz' target='_blank'&gt;Nimbuzz&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Wait, these links that you gave me goes to &lt;a href='http://market.android.com' target='_blank'&gt;http://market.android.com&lt;/a&gt; You mean I can install these apps without attaching a cable from computer to my phone?&lt;/b&gt;&lt;br /&gt;Yes&amp;#33; You just need to sign-in with your google account on your computer. When you click install, the app will automagically downloaded and installed on your phone. Cable-free. Very convenient isn&amp;#39;t it? &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;I want to transfer my music and videos to my phone over wifi. Is that possible?&lt;/b&gt;&lt;br /&gt;Absolutely&amp;#33; I recommend using these apps:&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.mobileaction.AmAgent' target='_blank'&gt;Android Manager Wifi&lt;/a&gt;&lt;br /&gt;- &lt;a href='https://market.android.com/details?id=com.fjsoft.myphoneexplorer.client' target='_blank'&gt;MyPhoneExplorer&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How do you get your PC to recognise the Galaxy S?&lt;/b&gt;&lt;br /&gt;You need to download a USB driver for windows. &lt;br /&gt;&lt;a href='http://drivers.softpedia.com/get/MOBILES/Samsung/Samsung-Galaxy-S-USB-Driver-for-Windows-x86.shtml' target='_blank'&gt;x86/x32&lt;/a&gt;&lt;br /&gt;&lt;a href='http://drivers.softpedia.com/get/MOBILES/Samsung/Samsung-Galaxy-S-USB-Driver-for-Windows-x64.shtml' target='_blank'&gt;x64&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How do Internal &amp;amp; External Memory mount to your PC? Are they Separate?&lt;/b&gt;&lt;br /&gt;Internal memory is either 8GB or 16GB depending on the model. When connected to the computer,&lt;br /&gt;- Internal sdcard is the /sdcard folder&lt;br /&gt;- External sdcard is in /sdcard/sd folder&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Did you have any problems connecting to WPA2-Enterprise?&lt;/b&gt;&lt;br /&gt;No, it connected just fine.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Super AMOLED, Retina Display or TFT – Which do you think is better?&lt;/b&gt;&lt;br /&gt;Super AMOLED has rich beautiful vibrant colour. Probably the best looking screen in a smartphone. Some opponent may say it is slightly oversaturated.&lt;br /&gt;Retina display is nothing but an IPS display with 4times pixel than the iphone 3gs, giving the sharpest display. It is colour accurate but may look a bit washed out when comparing to super amoled side-by-side.&lt;br /&gt;TFT is a very popular display used in many other phones other than samsung and apple.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What is a ROM/firmware?&lt;/b&gt;&lt;br /&gt;The firmware/ROM is the software that runs on the phone. In case of the Galaxy S this is (currently in Malaysia) Android 2.2 froyo&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Can I update my firmware?&lt;/b&gt;&lt;br /&gt;Yes. There are many routes to do this. Can use KIES or ODIN.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How can I reset my phone?&lt;/b&gt;&lt;br /&gt;On the Galaxy S the soft-reset is achieved by pressing and holding the power button. A hard-reset can executed by pressing and holding VolumeUP+Home+Power. There you will find the options &amp;quot;reboot&amp;quot;, &amp;quot;apply sdcard:update.zip&amp;quot;, &amp;quot;wipe data/factory reset&amp;quot; and &amp;quot;wipe cache partition&amp;quot;.&lt;br /&gt;The &amp;quot;wipe data/factory reset&amp;quot; option will restore your phone to the original configuration of the firmware YOU LAST INSTALLED (including any updates made via update.zip). This will NOT bring your phone back to the firmware installed when you originally bought it unless you haven&amp;#39;t flashed your phone.&lt;br /&gt;You can navigate the recovery screen using VolumeUp &amp;amp; VolumeDown and use the Home button to select.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;I&amp;#39;m running Windows 7(Vista) x64 and have installed Samsung Kies, but I cannot get my phone to connect. What can I do?&lt;/b&gt;&lt;br /&gt;- Make sure you are using touchwiz as the default home. Not Launcherpro or adw launcher&lt;br /&gt;- Make sure you have downloaded the usb driver found above&lt;br /&gt;- Try redownload and reinstall KIES&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Can I flash an Asian ROM on my European device or vice versa?&lt;/b&gt;&lt;br /&gt;Yes.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Can I get Asian language support in the European firmwares?&lt;/b&gt;&lt;br /&gt;Can install goole pinyin for input. For display, can install the fonts (link to be added)&lt;br /&gt;&lt;br /&gt;&lt;b&gt;I am experiencing long loading times when opening apps/intermittent lags when switching screens. What is the problem?&lt;/b&gt;&lt;br /&gt;Samsung uses its own proprietary RFS (Robust file system) while they could have gone to using other established and fast file system like ext4 or YAFFS. You have few methods to try&lt;br /&gt;- Update to latest firmware using KIES (2.2 froyo)&lt;br /&gt;- Flash optimized kernel like speedmod&lt;br /&gt;&lt;br /&gt;&lt;b&gt;I&amp;#39;m running Linux. Can I still flash my firmware? Do I need to install windows?&lt;/b&gt;&lt;br /&gt;Odin needs windows. Use virtualbox to install windows on your linux box.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Any recommended apps to check my data usage?&lt;/b&gt;&lt;br /&gt;Try to find &amp;quot;3G watchdog&amp;quot; on Android Market.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;I just bought this phone and the battery quickly drains out&lt;/b&gt;&lt;br /&gt;its normal, your new battery have to go charge and discharge cycle few days before it is really optimized, after about a week do battery calibration&lt;br /&gt;&lt;br /&gt;&lt;span style='color:purple'&gt;&lt;span style='font-size:14pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Battery&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;b&gt;How to calibrate the battery?&lt;/b&gt;&lt;br /&gt;Battery Calibration&lt;br /&gt;&lt;br /&gt;1.Run the device down until it turns itself off.&lt;br /&gt;2.Turn it back on and wait for it to turn itself off again.&lt;br /&gt;3.Remove the battery for 10 seconds.&lt;br /&gt;4.Replace the battery, but leave the device off.&lt;br /&gt;5.Charge the device until full and then for another hour.&lt;br /&gt;6.**Root users only** Using a Terminal Emulator, type “su” enter, followed by “rm /data/system/batterystats.bin” ( can also be done more easily through CWM or SGSTools app)&lt;br /&gt;7.Run the device’s battery down until it turns itself off.&lt;br /&gt;8.Turn the device on and charge for at least 8 hours.&lt;br /&gt;9.Unplug the device, turn off, then charge for another hour.&lt;br /&gt;10.Unplug the device, turn on, wait 2 minutes.&lt;br /&gt;11.Turn off again and charge for another hour.&lt;br /&gt;12.Restart and use as normal.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Tips to pro-long battery&lt;/b&gt;&lt;br /&gt;1) Avoid frequent full discharges because this puts additional strain on the battery. Several partial discharges with frequent recharges are better for lithium-ion than one deep one. Recharging a partially charged lithium-ion does not cause harm because there is no memory. (In this respect, lithium-ion differs from nickel-based batteries.) Short battery life in a device is mainly cause by heat rather than charge / discharge patterns.&lt;br /&gt;&lt;br /&gt;2) Batteries with fuel gauge should be calibrated by applying a deliberate full discharge once every 30 charges. Running the pack down in the equipment does this. If ignored, the fuel gauge will become increasingly less accurate and in some cases cut off the device prematurely.&lt;br /&gt;&lt;br /&gt;3) Keep the lithium-ion battery cool. Avoid a hot car. For prolonged storage, keep the battery at a 40% charge level.&lt;br /&gt;&lt;br /&gt;4) Avoid purchasing spare lithium-ion batteries for later use. Observe manufacturing dates. Do not buy old stock, even if sold at clearance prices.&lt;br /&gt;&lt;br /&gt;5) If you have a spare lithium-ion battery, use one to the fullest and keep the other cool by placing it in the refrigerator. Do not freeze the battery. For best results, store the battery at 40% state-of-charge.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;My battery goes down from 100% to 95% right after unplug from charger&lt;/b&gt;&lt;br /&gt;It is a feature introduced by samsung. When the phone is charged to the full, the phone will disconnect automatically and use the battery. This prevents overcharge and prolongs battery life. However, the indicator states 100% battery although in reality it may have gone down to 95%.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Do I need to root first before flash the firmware?&lt;/b&gt;&lt;br /&gt;No need to root before flashing stock or custom ROM.&lt;br /&gt;&lt;br /&gt;&lt;span style='color:purple'&gt;&lt;span style='font-size:14pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Root&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;b&gt;What is root/rooting?&lt;/b&gt;&lt;br /&gt;Short answer: Is simply means gaining administrator access.&lt;br /&gt;Long answer: root is the use account in Linux with all privileges. The root user can edit anything on the system. For safety reasons, users do not have all those privileges. When you root your phone, you will gain write access to areas of the phone you couldn&amp;#39;t previously access and are allowed to run more commands in the terminal. The latest guide can be found here, however, all current CustomROMs are rooted and can simply be applied via update.zip.&lt;br /&gt;If all of this means nothing to you then you are probably wise to NOT root your phone. Mistakes using root can break your phone very easily. (Usually, but not always, these can be solved with a reflash.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How do I go to recovery mode and download mode? (3 button combo)&lt;/b&gt;&lt;br /&gt;Recovery mode: Shutdown the phone. Hold &lt;u&gt;up&lt;/u&gt; volume, home button and power button simultaneously. Release when samsung logo shows up&lt;br /&gt;Download mode: Shutdown the phone. Hold &lt;u&gt;down&lt;/u&gt; volume, home button and power button simultaneously. Release when samsung logo shows up&lt;br /&gt;To navigate around recovery mode, use volume up and down and home button to select.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;3-button combo/3-button fix/3-button enable/3-button disable&lt;/b&gt;&lt;br /&gt;Follow this &lt;a href='http://forum.xda-developers.com/showthread.php?t=785201' target='_blank'&gt;link&lt;/a&gt; to get 3 button combo.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;2e vs 3e recovery&lt;/b&gt;&lt;br /&gt;when you get into recovery mode, you can see on the top the version of the recovery 2e or the default froyo uses 3e, with 2e you can use update.zip without any problem but with 3e there is not possible, you need to change it to 2e (there is guide at XDA) or flash CWM (clockworkmod) to get the custom recovery. &amp;lt;-- has green interface.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Clockworkmod (CWM)&lt;/b&gt;&lt;br /&gt;Clockworkmod is an extension of normal recovery, it will bypass all security ( no more 2e or 3e ), you can use any update.zip or better yet, you can choose any .zip in your SD card without renaming it to update.zip. some Clockwordmod have been modified to include ULK (Universal Lagfix) in them. To navigate, use volume up and down. To select, use &lt;u&gt;back&lt;/u&gt; button&lt;br /&gt;&lt;br /&gt;&lt;span style='color:purple'&gt;&lt;span style='font-size:14pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Custom ROM&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;b&gt;Custom ROM vs Stock Rom&lt;/b&gt;&lt;br /&gt;Rom/Firmware is the same thing, &lt;br /&gt;stock rom = official firmware directly release from samsung&lt;br /&gt;custom rom = made by developer by tweaking the official firmware&lt;br /&gt;&lt;br /&gt;custom rom got more advantage than stock, such faster phone, easy theme&lt;br /&gt;&lt;br /&gt;&lt;b&gt;What are custom ROMs? How do I get them?&lt;/b&gt;&lt;br /&gt;They are custom modified firmwares made by the community. &lt;br /&gt;A list can be found &lt;a href='http://forum.xda-developers.com/showthread.php?t=966646' target='_blank'&gt;here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;I want to install new firmware but I want to have a backup of my original firmware to go back to in case I need to go back for warranty reasons. Can I backup my original firmware somehow?&lt;/b&gt;&lt;br /&gt;Cannot backup but official stock rom can be downloaed to flashed to your smartphone. Samsung repair centre won&amp;#39;t know you have rooted and installed custom rom before.&lt;br /&gt;&lt;br /&gt;&lt;i&gt;DXJG4 Firmware (eclair 2.1)&lt;/i&gt;&lt;br /&gt;&lt;a href='http://www.multiupload.com/4EQOPSH2P6' target='_blank'&gt;http://www.multiupload.com/4EQOPSH2P6&lt;/a&gt;&lt;br /&gt;You need 7z to unzip.&lt;br /&gt;There are 4 files in it; the CODE, MODEM, CSC and PIT513 file.&lt;br /&gt;There is no necessity to put the MODEM into phone and CSC into the csc of Odin3, because CODE tar file already included these 2 items.&lt;br /&gt;Please use PIT513, with Re-partition checked.&lt;br /&gt;If you use PIT512, it will fail.&lt;br /&gt;P/S: Swype contains bahasa indonesia and melayu. useful for our malay friends.&lt;br /&gt;Locale we have english us and uk, bahasa indonesia, melayu, tieng viet, thai, koren and mandarin. would be useful for those who knows viet and thai.&lt;br /&gt;&lt;br /&gt;&lt;i&gt;DXJPA(froyo 2.2)&lt;/i&gt;&lt;br /&gt;&lt;a href='http://www.fileserve.com/file/6a8GgQx' target='_blank'&gt;Link 1&lt;/a&gt; &lt;a href='http://www.filesonic.com/file/106130312/I9000DXJPA.exe' target='_blank'&gt;Link 2&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;DXJPE(froyo 2.2)&lt;/i&gt;&lt;br /&gt;&lt;a href='http://www.fileserve.com/file/qSZ2J53' target='_blank'&gt;Link 1&lt;/a&gt; &lt;a href='http://www.filesonic.com/file/103588872' target='_blank'&gt;Link 2&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;WHAAAA&amp;#33; I think I bricked my phone. My flash was unsuccessful/My device boots to a black screen/similar scenarios. Can I still save my device?&lt;/b&gt;&lt;br /&gt;It is extremely difficult to brick Galaxy S. You should always be able to use ODIN to reflash stock firmware.&lt;br /&gt;&lt;br /&gt;&lt;span style='color:purple'&gt;&lt;span style='font-size:14pt;line-height:100%'&gt;&lt;span style='font-family:Geneva'&gt;GPS/WIFI&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;b&gt;My phone takes forever to get a GPS-fix? Is there a solution to this problem?&lt;/b&gt;&lt;br /&gt;There are a few workarounds&lt;br /&gt;- Download &lt;a href='http://forum.lowyat.net/index.php?act=Attach&amp;type=post&amp;id=2047202' target='_blank'&gt;fasterfix&lt;/a&gt; app. Copy it to your sdcard, open with MyFiles and click to install.&lt;br /&gt;- Use &lt;a href='https://market.android.com/details?id=ltodownloader.canaryx.net&amp;feature=search_result' target='_blank'&gt;GPS aids&lt;/a&gt;&lt;br /&gt;- Update/flash your ROM to the latest froyo (2.2.1)&lt;br /&gt;- &lt;a href='http://forum.xda-developers.com/showthread.php?t=878970' target='_blank'&gt;Hardware fix&lt;/a&gt; - This will void your warranty.&lt;br /&gt;&lt;br /&gt;If you are rooted, you can flash alternative modems found in &lt;a href='http://insanity.rollus.net/index.php?dir=rom/modems/' target='_blank'&gt;here.&lt;/a&gt; Download one, put it in your sdcard, go to recovery mode and select the zip file to install.&lt;br /&gt;&lt;br /&gt;For additional modem:&lt;br /&gt;- &lt;a href='http://dl.dropbox.com/u/17959/XXJVE-Modem.zip' target='_blank'&gt;XXJVE&lt;/a&gt; modem. The latest modem taken fron the leaked gingerbread firmware&lt;br /&gt;- &lt;a href='http://hotfile.com/dl/108785790/768a720/ZSJPG_Modem.zip.html' target='_blank'&gt;ZSJPG&lt;/a&gt; modem. From Hong Kong firmware. Thanks to coD33 for the link.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How do I know which one is the best for me?&lt;/b&gt;&lt;br /&gt;Modem performance varies according to network, location and phone. Nobody knows which one is. We need your help (espicially does who know how to flash modem....) to identify the best modem to be use with our phone in malaysia. and maybe with this finding we could pair it up to the best base later on and get best firmware for us&lt;br /&gt;&lt;br /&gt;here is a guide on what to do,  can pm result to me&lt;br /&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('e5dc5278a411f40945919f4cbd39ab83')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;e5dc5278a411f40945919f4cbd39ab83&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;- use wifi analayzer app to see wifi signal strength and at what distance from router.&lt;br /&gt;- use speedtest to see wifi speed&lt;br /&gt;- use speedtest to see edge and 3g speed&lt;br /&gt;- use lbs test mode (*#*#1472365#*#*) &amp;lt;-- eclair  (*#*#3214789650#*#*)&amp;lt;---froyo for gps test - using outdoor is more preferable&amp;#33;&lt;br /&gt;- flash a diferent modem and repeat.&lt;br /&gt;Need to include which carrier on location too because result will vary accordingly. Flashing a new modem is easy - just dl the modem cwm and flash in recovery mode.&lt;br /&gt;&lt;br /&gt;for GPS test please include if you have use fasterfix or not, if yes, what server&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;br /&gt;lets us help each other. flashing modem will not mess up your apps because only a single file is replaced. &lt;br /&gt;Also, see &lt;a href='http://forum.xda-developers.com/showpost.php?p=9579987&amp;postcount=11945' target='_blank'&gt;here&lt;/a&gt; for some compilation of modem by pele78 and &lt;a href='http://forum.xda-developers.com/showpost.php?p=9678756&amp;postcount=13293' target='_blank'&gt;GPS&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style='color:purple'&gt;&lt;span style='font-size:14pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Security&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;b&gt;What about the malware exploit that I heard about?&lt;/b&gt;&lt;br /&gt;If you are running 2.2.1 froyo and above, you are safe. If you are still on eclair(2.1) or froyo 2.2, you are going to need a patch. See the following link&lt;br /&gt;&lt;a href='http://forum.xda-developers.com/showthread.php?p=11801997#post11801997' target='_blank'&gt;http://forum.xda-developers.com/showthread...97#post11801997&lt;/a&gt;&lt;br /&gt;You have to be rooted to use that patch.&lt;br /&gt;&lt;br /&gt;&lt;span style='color:purple'&gt;&lt;span style='font-size:14pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;Boot Animations&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;b&gt;I want a different boot animation. Is that possible?&lt;/b&gt;&lt;br /&gt;Definitely. You must first be rooted. Then follow the following instruction:&lt;br /&gt;1. On your phone, go to doc&amp;#39;s &amp;amp; stefunel mobile kitchen: &lt;a href='http://romkitchen.org/m/' target='_blank'&gt;http://romkitchen.org/m/&lt;/a&gt;&lt;br /&gt;2. Click on update.zip Generator&lt;br /&gt;3. Click on boot animation&lt;br /&gt;4. Choose any boot animation that you want&lt;br /&gt;5. Click right green arrow at the top.&lt;br /&gt;6. Click generate&lt;br /&gt;&lt;br /&gt;You&amp;#39;ll get a zip file to be downloaded. To install, go to recovery mode, locate the downloaded zip file and flash.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style='color:purple'&gt;&lt;span style='font-size:14pt;line-height:100%'&gt;&lt;span style='font-family:Times'&gt;APN for Internet&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;b&gt;Maxis APN&lt;/b&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('c3582ec825bc50d367757009c2ec4178')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;c3582ec825bc50d367757009c2ec4178&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;1) Home -&amp;gt; Menu -&amp;gt; Settings -&amp;gt; Wireless &amp;amp; networks -&amp;gt; Mobile networks -&amp;gt; Access Points Name&lt;br /&gt;2) Menu -&amp;gt; New APN&lt;br /&gt;Name = Maxis(3G)&lt;br /&gt;APN = unet&lt;br /&gt;Username = maxis&lt;br /&gt;MMSC = &lt;a href='http://172.16.74.100:10021/mmsc' target='_blank'&gt;http://172.16.74.100:10021/mmsc&lt;/a&gt;&lt;br /&gt;MMS proxy = 202.75.133.49&lt;br /&gt;MMS port = 80&lt;br /&gt;APN type = default,mms&lt;br /&gt;(Others, leave blank)&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;DiGi APN&lt;/b&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('5ee597efcc5f0685c82bd65147540ab5')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;5ee597efcc5f0685c82bd65147540ab5&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;1) Home -&amp;gt; Menu -&amp;gt; Settings -&amp;gt; Wireless &amp;amp; networks -&amp;gt; Mobile networks -&amp;gt; Access Points Name&lt;br /&gt;2) Menu -&amp;gt; New APN&lt;br /&gt;Name : DiGi Internet&lt;br /&gt;APN: diginet&lt;br /&gt;MCC: 502&lt;br /&gt;MNC: 16&lt;br /&gt;APN Type: default&lt;br /&gt;(Others, blank)&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;DIGI MMS&lt;/b&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('838a0ba32ad6e401a7c4dc4a42fb8ec1')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;838a0ba32ad6e401a7c4dc4a42fb8ec1&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;APN: digimms&lt;br /&gt;username: mms&lt;br /&gt;password: mms&lt;br /&gt;Proxy: 203.092.128.160&lt;br /&gt;Port: 80&lt;br /&gt;MMSC: &lt;a href='http://mms.digi.com.my/servlets/mms' target='_blank'&gt;http://mms.digi.com.my/servlets/mms&lt;/a&gt;&lt;br /&gt;MMS Proxy: 203.092.128.160&lt;br /&gt;MMS Port: 80&lt;br /&gt;MCC: 502&lt;br /&gt;MNC: 16&lt;br /&gt;APN Type: mms&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Celcom APN&lt;/b&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('791e01282e0e3c3426a805d7d95c781b')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;791e01282e0e3c3426a805d7d95c781b&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;1) Home -&amp;gt; Menu -&amp;gt; Settings -&amp;gt; Wireless &amp;amp; networks -&amp;gt; Mobile networks -&amp;gt; Access Points Name&lt;br /&gt;2) Menu -&amp;gt; New APN&lt;br /&gt;Name: Celcom3G MMS Combo&lt;br /&gt;APN: celcom3g&lt;br /&gt;Proxy: Not Set&lt;br /&gt;Port: Not Set&lt;br /&gt;Username: Not Set&lt;br /&gt;Password: Not Set&lt;br /&gt;Server: Not Set&lt;br /&gt;MMSC: &lt;a href='http://mms.celcom.net.my' target='_blank'&gt;http://mms.celcom.net.my&lt;/a&gt;&lt;br /&gt;MMS proxy: 10.128.1.242&lt;br /&gt;MMS port: 8080&lt;br /&gt;MCC: 502&lt;br /&gt;MNC: 19&lt;br /&gt;Authentication: Not Set&lt;br /&gt;APN Type: Internet + MMS&lt;br /&gt;Thanks to uan for the update&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;CODE - Country;Telco;Customize Apps;Additional Info&lt;/b&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('c2f5f7e43ca2b5cee2937db58eb03079')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;c2f5f7e43ca2b5cee2937db58eb03079&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;CCM - Malaysia;Celcom;No Apps&lt;br /&gt;DGI - Malaysia;DIGI;No Apps&lt;br /&gt;GLB - Philippines;Globe;No Apps&lt;br /&gt;KOR - Korea;SEC Test;All Apps;For Testing IMHO&lt;br /&gt;MIS - Malaysia;Maxis;No Apps&lt;br /&gt;MM1 - Singapore;M1;M1 Apps + Bookmarks&lt;br /&gt;SIN - Singapore;SingTel;Singtel Apps;Bookmarks&lt;br /&gt;SMA - Philippines;Smart;No Apps&lt;br /&gt;STH - Singapore;Starhub;Starhub Apps;Bookmarks&lt;br /&gt;THL - Thailand;Multiple;No Apps&lt;br /&gt;UMB - Malaysia;U Mobile;No Apps&lt;br /&gt;XEV - Vietnam;Multiple;No Apps&lt;br /&gt;XME - Malaysia;Multiple;No Apps&lt;br /&gt;XSE - Indonesia;Multiple;No Apps&lt;br /&gt;XSO - Singapore;SingTel;No Apps;Bookmarks&lt;br /&gt;XSP - Singapore;Multiple;No Apps;Bookmarks&lt;br /&gt;XTC - Philippines;Multiple;No Apps&lt;br /&gt;XTE - Philippines;SUN;No Apps;Bookmarks&lt;br /&gt;XXV - Vietnam;Multiple;No Apps&lt;br /&gt;&lt;br /&gt;Note: Some of the code have it own boot animation.&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;thanks to hihihehe and silentser for the FAQs, headhunter7 and all others who have contributed directly or indirectly for this guide.</description>
            <author>gmhafiz</author>
            <category>Android</category>
            <pubDate>Mon, 28 Feb 2011 14:20:24 +0800</pubDate>
        </item>
        <item>
            <title>netbook USB speaker recommendation</title>
            <link>http://forum.lowyat.net/topic/1371548</link>
            <description>I wanted a speaker since my toshiba netbook has a lousy speaker. I browsed Altec Lansing BXR1220 and &amp;quot;Philips USB Powered Notebook Speakers&amp;quot;. Not sure if they are available in kl.&lt;br /&gt;&lt;br /&gt;My budget is below RM100&lt;br /&gt;&lt;br /&gt;Any recommendation for a speaker of that price range for a netbook?</description>
            <author>gmhafiz</author>
            <category>Hardware</category>
            <pubDate>Sun, 28 Mar 2010 18:03:09 +0800</pubDate>
        </item>
        <item>
            <title>Getting information on digital audio card</title>
            <link>http://forum.lowyat.net/topic/1258514</link>
            <description>As my knowledge on DAC is limited, I&amp;#39;d like to know from where you guys get information &amp;amp; reviews on current DAC. besides audiotrak, asus, creative, turtlebeach, m-audio and such.</description>
            <author>gmhafiz</author>
            <category>Hardware</category>
            <pubDate>Sun, 13 Dec 2009 21:55:57 +0800</pubDate>
        </item>
        <item>
            <title>Gadget Sale in Japan till December</title>
            <link>http://forum.lowyat.net/topic/853988</link>
            <description>I heard that there is a sale on gadgets in Japan till December is it true? I bet there will be so many cheap DAP over there.&lt;br /&gt;&lt;br /&gt;Does anyone knows how can I find help to buy a DAP over there. If you know someone over there or if there is an english speaking forum board like this that can help me for a recommendation?&lt;br /&gt;&lt;br /&gt;Or shall I resort to amazon.jp or ebay to find reviews?</description>
            <author>gmhafiz</author>
            <category>Audiophiles</category>
            <pubDate>Sun, 23 Nov 2008 13:52:51 +0800</pubDate>
        </item>
        <item>
            <title>Sound Card Recommendation</title>
            <link>http://forum.lowyat.net/topic/648445</link>
            <description>Hi,&lt;br /&gt;&lt;br /&gt;Can you guys recommend a pci sound card for my desktop? I looked a few of creative&amp;#39;s sound card. Their plethora of models made me confused. So help is appreciated.&lt;br /&gt;&lt;br /&gt;I would like a sound card for a music freak like me &lt;!--emo&amp;:D--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' /&gt;&lt;!--endemo--&gt;  &lt;br /&gt;&lt;br /&gt;Budget: &amp;lt;RM500&lt;br /&gt;Purpose: listening to lots and lots of music on a RM500 headphone and occasional games.&lt;br /&gt;&lt;br /&gt;Thanks.</description>
            <author>gmhafiz</author>
            <category>Hardware</category>
            <pubDate>Sun, 09 Mar 2008 23:31:46 +0800</pubDate>
        </item>
        <item>
            <title>Job prospect as a programmer</title>
            <link>http://forum.lowyat.net/topic/509955</link>
            <description>Hi.  I would like to know the job prospective for a programmer/software developer. I have good grades in pre-u and I checked that I can even enter many of aussie&amp;#39;s university for computer science degree programs.&lt;br /&gt;&lt;br /&gt;1. What are the prospects of having a job in Malaysia with a CS degree from overseas?&lt;br /&gt;2. I heard that programmers are underpaid in Malaysia. Is that true? What about salary increment? Will it stall up to a certain figure? &lt;br /&gt;3. As I&amp;#39;m willing to work hard, I don&amp;#39;t mind working like hell  &lt;!--emo&amp;:D--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' /&gt;&lt;!--endemo--&gt;  as long as the pay is justified with the workload.&lt;br /&gt;4. What are my chances of getting a job in aussie? My elder sister has a PR.</description>
            <author>gmhafiz</author>
            <category>Jobs &amp;amp; Careers</category>
            <pubDate>Fri, 24 Aug 2007 23:01:33 +0800</pubDate>
        </item>
        <item>
            <title>Any shops selling whitebooks?</title>
            <link>http://forum.lowyat.net/topic/502581</link>
            <description>Any idea if any stores are selling whitebooks around kl? I&amp;#39;m looking whitebooks such as ASUS c90s or compal (not compaq&amp;#33;)</description>
            <author>gmhafiz</author>
            <category>Mobile Computing</category>
            <pubDate>Sat, 11 Aug 2007 01:23:56 +0800</pubDate>
        </item>
        <item>
            <title>ASUS C90s</title>
            <link>http://forum.lowyat.net/topic/499726</link>
            <description>Any idea of asus c90s laptop availability around kl? So far I found &lt;a href='http://www.xoticpc.com' target='_blank'&gt;http://www.xoticpc.com&lt;/a&gt;, &lt;a href='http://1toppc.com' target='_blank'&gt;http://1toppc.com&lt;/a&gt; and &lt;a href='http://www.btotech.com' target='_blank'&gt;http://www.btotech.com&lt;/a&gt; which are selling this machine.</description>
            <author>gmhafiz</author>
            <category>Mobile Computing</category>
            <pubDate>Mon, 06 Aug 2007 00:29:18 +0800</pubDate>
        </item>
        <item>
            <title>Zen Micro V Plus vs Zen Neeon 2</title>
            <link>http://forum.lowyat.net/topic/425231</link>
            <description>Both digital audio player - DAP have almost the same features which makes me confused about creative&amp;#39;s marketing strategy.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m thinking of buying between these two DAP but  don&amp;#39;t know which is a better buy. Which is a newer product and more cheaper?&lt;br /&gt;&lt;br /&gt;I&amp;#39;m looking for a DAP with excellent sound quality for my koss ksc75. Video playing on zen v plus is nice but i&amp;#39;m not sure whether it is worth it. I might as well go for neeon2.&lt;br /&gt;&lt;br /&gt;Can you guys give me your recommendations and your reasons?&lt;br /&gt;&lt;br /&gt;Also, is true that most DAP including zen V plus will occasionally hang for no reason?</description>
            <author>gmhafiz</author>
            <category>Audiophiles</category>
            <pubDate>Mon, 12 Mar 2007 00:09:04 +0800</pubDate>
        </item>
    </channel>
</rss>
