<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by AspireAcer</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Tue, 07 Jul 2026 00:27:59 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>2 diff widescreen setup Need some help here</title>
            <link>http://forum.lowyat.net/topic/0</link>
            <description></description>
            <category>Desktop Customization</category>
            <pubDate>Thu, 01 Jan 1970 07:30:00 +0800</pubDate>
        </item>
        <item>
            <title>2 diff widescreen setup Need some help here</title>
            <link>http://forum.lowyat.net/topic/703220</link>
            <description>Hi guys,&lt;br /&gt;&lt;br /&gt;I got a 20&amp;quot; lcd monitor and 14&amp;quot;laptop monitor ... which i make it dual screen.&lt;br /&gt;my problem is, when i play counter Stike(with fullscreen in 20&amp;quot;monitor), my laptop monitor will change smaller and like all things will push to right side and not fix with the screen anymore...&lt;br /&gt;I wonder how can i make it when i play any full screen game... my 2nd screen will stay still..?&lt;br /&gt;&lt;br /&gt;Thank You.</description>
            <author>AspireAcer</author>
            <category>Technical Support</category>
            <pubDate>Sat, 24 May 2008 01:53:57 +0800</pubDate>
        </item>
        <item>
            <title>Binary Search Tree (add/insert)..</title>
            <link>http://forum.lowyat.net/topic/701394</link>
            <description>i am quite new in java and I got some question here... i got this code down there which i can;t really find which one is actually the root. Can anyone give me some idea please... the bit that I cant work out is the boolean add(....) part.&lt;br /&gt;class BucketTree&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;{ //stores &amp;#40;key,value&amp;#41; pairs in a binary search tree&lt;br /&gt; &amp;nbsp;//the keys are unique&lt;br /&gt; &amp;nbsp;//ascending order&amp;#58; recursive left-visit-right tree traversal&lt;br /&gt; &amp;nbsp;private int key=0;&lt;br /&gt; &amp;nbsp;private int value=0;&lt;br /&gt; &amp;nbsp;private BucketTree lesser=null;&lt;br /&gt; &amp;nbsp;private BucketTree greater=null;&lt;br /&gt; &amp;nbsp;BucketTree&amp;#40;int key,&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; int value,&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BucketTree lesser,&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BucketTree greater&amp;#41;&lt;br /&gt; &amp;nbsp;{ this.key=key;&lt;br /&gt; &amp;nbsp; &amp;nbsp;this.value=value;&lt;br /&gt; &amp;nbsp; &amp;nbsp;this.lesser=lesser;&lt;br /&gt; &amp;nbsp; &amp;nbsp;this.greater=greater;&lt;br /&gt; &amp;nbsp;}&lt;br /&gt; &lt;br /&gt; &amp;nbsp;boolean add&amp;#40;Comparable elem&amp;#41;&lt;br /&gt; &amp;nbsp;{ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;int direction &amp;nbsp;= 0;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;BucketTree parent = null, curr = lesser=greater;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;for&amp;#40;;;&amp;#41;{&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;if &amp;#40;curr == null&amp;#41;{&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;BucketTree ins = new BucketTree&amp;#40;key, value, null, null&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if&amp;#40;lesser == null&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;lesser = ins;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else if &amp;#40;direction &amp;#60; 0&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;parent.lesser = ins;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;parent.greater= ins;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return true;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;direction = elem.compareTo&amp;#40;curr.key&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if&amp;#40;direction == 0&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return true;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;parent = curr;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if &amp;#40;direction &amp;#60; 0&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;curr = curr.lesser;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;curr = curr.greater;&lt;br /&gt; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp;}&lt;br /&gt;&lt;br /&gt; &amp;nbsp;void add&amp;#40;BucketTree store&amp;#41;&lt;br /&gt; &amp;nbsp;{ store.lesser=store.greater=null;&lt;br /&gt; &amp;nbsp; &amp;nbsp;if &amp;#40;store.key&amp;#60;key&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp;{ if &amp;#40;lesser==null&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;lesser=store;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;else &lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;lesser.add&amp;#40;store&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;return;&lt;br /&gt; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp; &amp;nbsp;if &amp;#40;greater==null&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;greater=store;&lt;br /&gt; &amp;nbsp; &amp;nbsp;else&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;greater.add&amp;#40;store&amp;#41;;&lt;br /&gt; &amp;nbsp;}&lt;br /&gt; &amp;nbsp;int assign&amp;#40;BucketTree&amp;#91;&amp;#93; store,&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; int index&amp;#41;&lt;br /&gt; &amp;nbsp;{ if &amp;#40;lesser&amp;#33;=null&amp;#41; index=lesser.assign&amp;#40;store,index&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;store&amp;#91;index++&amp;#93;=this;&lt;br /&gt; &amp;nbsp; &amp;nbsp;if &amp;#40;greater&amp;#33;=null&amp;#41; index=greater.assign&amp;#40;store,index&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;return index;&lt;br /&gt; &amp;nbsp;}&lt;br /&gt; &amp;nbsp;int cardinality&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp;{ return 1&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;+&amp;#40;lesser==null?0&amp;#58;lesser.cardinality&amp;#40;&amp;#41;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;+&amp;#40;greater==null?0&amp;#58;greater.cardinality&amp;#40;&amp;#41;&amp;#41;;&lt;br /&gt; &amp;nbsp;}&lt;br /&gt; &amp;nbsp;BucketTree delete&amp;#40;int key&amp;#41;&lt;br /&gt; &amp;nbsp;{ //to be completed by students//&lt;br /&gt; &amp;nbsp; &amp;nbsp;return this;&lt;br /&gt; &amp;nbsp;}&lt;br /&gt; &amp;nbsp;int key&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp;{ return key;&lt;br /&gt; &amp;nbsp;}&lt;br /&gt; &amp;nbsp;boolean present&amp;#40;int key&amp;#41;&lt;br /&gt; &amp;nbsp;{ if &amp;#40;key==this.key&amp;#41; return true;&lt;br /&gt; &amp;nbsp; &amp;nbsp;if &amp;#40;key&amp;#60;this.key&amp;#41; return lesser==null?false&amp;#58;lesser.present&amp;#40;key&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;return greater==null?false&amp;#58;greater.present&amp;#40;key&amp;#41;;&lt;br /&gt; &amp;nbsp;}&lt;br /&gt; &amp;nbsp;BucketTree setGreater&amp;#40;BucketTree bucket&amp;#41;&lt;br /&gt; &amp;nbsp;{ return greater=bucket;&lt;br /&gt; &amp;nbsp;}&lt;br /&gt; &amp;nbsp;BucketTree setLesser&amp;#40;BucketTree bucket&amp;#41;&lt;br /&gt; &amp;nbsp;{ return lesser=bucket;&lt;br /&gt; &amp;nbsp;}&lt;br /&gt; &amp;nbsp;public String toString&amp;#40;&amp;#41;&lt;br /&gt; &amp;nbsp;{ return toString&amp;#40;0&amp;#41;;&lt;br /&gt; &amp;nbsp;}&lt;br /&gt; &amp;nbsp;String toString&amp;#40;int level&amp;#41;&lt;br /&gt; &amp;nbsp;{ return &amp;#40;lesser==null?&amp;#34;&amp;#34;&amp;#58;lesser.toString&amp;#40;level+1&amp;#41;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;+&amp;#39; &amp;#39;+&amp;#39;&amp;#91;&amp;#39;+level+&amp;#39;&amp;#62;&amp;#39;+&amp;#39;&amp;#40;&amp;#39;+key+&amp;#39;,&amp;#39;+value+&amp;#39;&amp;#41;&amp;#39;+&amp;#39;&amp;#93;&amp;#39;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;+&amp;#40;greater==null?&amp;#34;&amp;#34;&amp;#58;greater.toString&amp;#40;level+1&amp;#41;&amp;#41;;&lt;br /&gt; &amp;nbsp;}&lt;br /&gt; &amp;nbsp;int value&amp;#40;int key&amp;#41;&lt;br /&gt; &amp;nbsp;{ if &amp;#40;key==this.key&amp;#41; return value;&lt;br /&gt; &amp;nbsp; &amp;nbsp;if &amp;#40;key&amp;#60;this.key&amp;#41; return lesser==null?-1&amp;#58;lesser.value&amp;#40;key&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;return greater==null?-1&amp;#58;greater.value&amp;#40;key&amp;#41;;&lt;br /&gt; &amp;nbsp;}&lt;br /&gt;}&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>AspireAcer</author>
            <category>Codemasters</category>
            <pubDate>Wed, 21 May 2008 19:21:40 +0800</pubDate>
        </item>
        <item>
            <title>No Signal After I changed my PSU</title>
            <link>http://forum.lowyat.net/topic/687768</link>
            <description>My Cousin just changed his PSU. After he changed is, the monitor display no signal. The problem here is, It load untill the WINDOWS screen(i means the window Loading). then it become no signal.&lt;br /&gt;i can access into bios and setup, but it can&amp;#39;t go into the my desktop.&lt;br /&gt;&lt;br /&gt;Can anyone tell me why ?&lt;br /&gt;Please&lt;br /&gt;Thank&lt;br /&gt;&lt;br /&gt;the PSU change from 450W to 550W(now).&lt;br /&gt;&lt;br /&gt;[addedon]May 3, 2008, 1:01 pm[/addedon]**&lt;br /&gt;I tried enter safe mode. It LOAD SUCCESSFULLY&amp;#33; why can&amp;#39;t i load normal mode?</description>
            <author>AspireAcer</author>
            <category>Hardware</category>
            <pubDate>Sat, 03 May 2008 12:20:10 +0800</pubDate>
        </item>
        <item>
            <title>Need Help On Getting a New PC</title>
            <link>http://forum.lowyat.net/topic/681369</link>
            <description>&lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;help Guys,&lt;br /&gt;I am looking for a Gaming PC, game that i usually play are CS:S , FIFA08, Dota(aged a time)&lt;br /&gt;Others than gaming, i also using ubuntu for my study forensics unit.&lt;br /&gt;&lt;br /&gt;MY BUDGET: below RM4000&lt;br /&gt;&lt;br /&gt;I am actually in Australia right now, just wonder is that alright that i get the part and build in Malaysia and ship in over here&lt;br /&gt;What i have to do now is compare the price in Malaysia and Aus and add up the ship cost to see which one is cheaper. So i will really appreciate for anyone that giving the latest price list in lowyat.&lt;br /&gt; &lt;br /&gt;All i need is just the CPU case, and another Samsung 206BW.&lt;br /&gt;&lt;br /&gt;Thank You for help.&lt;br /&gt;&lt;br /&gt;Edited: Specification</description>
            <author>AspireAcer</author>
            <category>Hardware</category>
            <pubDate>Thu, 24 Apr 2008 17:38:25 +0800</pubDate>
        </item>
        <item>
            <title>Cocomo Model(cost) need HELP please&amp;#33;</title>
            <link>http://forum.lowyat.net/topic/660233</link>
            <description>&lt;span style='color:red'&gt;i am sry for double posted from job and careers section, i really misclick there.&lt;/span&gt;&lt;br /&gt; &lt;br /&gt;Hi Guys, i am asked about estimate the cost (in labour months) and the development time for developing a software program for a project.&lt;br /&gt;&lt;br /&gt;the information that given : tight resources, critical function, new technology&lt;br /&gt;line of code : 65,000&lt;br /&gt;&lt;br /&gt;with this kind of information how can i actually estimate the cost?&lt;br /&gt;&lt;br /&gt;what i have done is like this:-&lt;br /&gt;&lt;u&gt;Embedded mode&lt;/u&gt;&lt;br /&gt;Effort in mm	= 3.6(65^1.20)&lt;br /&gt;= 539 labour months&lt;br /&gt;Productivity = 65000/539 = 120 delivered lines code per month&lt;br /&gt;Schedule in months = 2.5(539.26^0.32)&lt;br /&gt; = 18 months&lt;br /&gt;&lt;br /&gt;but i still can&amp;#39;t get the cost. can anyone tell me how can i actually get the cost?&lt;br /&gt;Thank You&lt;br /&gt;&lt;br /&gt;*At the end i got to compare this with the Walston-Felix Model, Bailey-Basili model, and Doty Model. how the result i got in these model are 232.14, 98.03 and 418.22.</description>
            <author>AspireAcer</author>
            <category>Codemasters</category>
            <pubDate>Wed, 26 Mar 2008 19:56:35 +0800</pubDate>
        </item>
        <item>
            <title>Cocomo Model(cost) need HELP please&amp;#33;</title>
            <link>http://forum.lowyat.net/topic/660230</link>
            <description>&lt;span style='color:red'&gt;OPS i am SORRY, WRONG SECTION. I TOT I CLICKED ON CODEMASTER&amp;#33;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Hi Guys, i am asked about estimate the cost (in labour months) and the development time for developing a software program for a project.&lt;br /&gt;&lt;br /&gt;the information that given : tight resources, critical function, new technology&lt;br /&gt;line of code : 65,000&lt;br /&gt;&lt;br /&gt;with this kind of information how can i actually estimate the cost?&lt;br /&gt;&lt;br /&gt;what i have done is like this:-&lt;br /&gt;&lt;u&gt;Embedded mode&lt;/u&gt;&lt;br /&gt;Effort in mm	= 3.6(65^1.20)&lt;br /&gt;= 539 labour months&lt;br /&gt;Productivity = 65000/539 = 120 delivered lines code per month&lt;br /&gt;Schedule in months = 2.5(539.26^0.32)&lt;br /&gt; = 18 months&lt;br /&gt;&lt;br /&gt;but i still can&amp;#39;t get the cost. can anyone tell me how can i actually get the cost?&lt;br /&gt;Thank You</description>
            <author>AspireAcer</author>
            <category>Jobs &amp;amp; Careers</category>
            <pubDate>Wed, 26 Mar 2008 19:49:55 +0800</pubDate>
        </item>
        <item>
            <title>New Kart in MARIO KART&amp;#33; How?</title>
            <link>http://forum.lowyat.net/topic/657980</link>
            <description>Can anybody out there tell me how to get new kart in MARIO DS KART&amp;#33; ? I wonder why i try everythings in there still can&amp;#39;t get a new racing kart. &lt;br /&gt;&lt;br /&gt;Thank You</description>
            <author>AspireAcer</author>
            <category>Nintendo</category>
            <pubDate>Sun, 23 Mar 2008 19:48:20 +0800</pubDate>
        </item>
        <item>
            <title>Problem while playing Game</title>
            <link>http://forum.lowyat.net/topic/648983</link>
            <description>&lt;!--emo&amp;:cry:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/cry.gif' border='0' style='vertical-align:middle' alt='cry.gif' /&gt;&lt;!--endemo--&gt;  I using AcerAspire as my sign below and I when i play game (any games with/without full screen) after few minute my laptop will automatically shutdown.&lt;br /&gt;anyone got idea why it happen?&lt;br /&gt;&lt;br /&gt;Is that my graphic card got problem d?&lt;br /&gt;or my memory(ram) overflow?&lt;br /&gt;or becoz of my fan overheat? &amp;lt;&amp;lt; using cooling system.&lt;br /&gt;&lt;br /&gt;I tried on my laptop for a very long time and it wont down. when ever i start the game its die. why?</description>
            <author>AspireAcer</author>
            <category>Technical Support</category>
            <pubDate>Mon, 10 Mar 2008 19:03:15 +0800</pubDate>
        </item>
        <item>
            <title>Gaming Mice</title>
            <link>http://forum.lowyat.net/topic/648221</link>
            <description>I saw gaming keyboard and and mouse pads but not gaming mice.&lt;br /&gt;and i currently looking for a gaming cool mice.&lt;br /&gt;&lt;br /&gt;Logitech G5 any owner here ? Its look so cool for me. Tell me some about this G5 please.&lt;br /&gt;how about razer Copperhead? &lt;br /&gt;&lt;br /&gt;</description>
            <author>AspireAcer</author>
            <category>Hardware</category>
            <pubDate>Sun, 09 Mar 2008 17:31:50 +0800</pubDate>
        </item>
        <item>
            <title>Computer/IT Careers discussion.</title>
            <link>http://forum.lowyat.net/topic/647754</link>
            <description>I was wonder is there any one working in Database, Networking, Software engineer, Programmer, System analyst  and others job that related in Computer.&lt;br /&gt;What yours jobs really is? and how much u guys got? Is that really many competitor and easy or hard job ?&lt;br /&gt;I am currently studying Computer Security and Software Engineering which my future maybe a computer forensics or a S/W engineer. Can anyone tell me more about this job? &lt;br /&gt;Thank Q.</description>
            <author>AspireAcer</author>
            <category>Jobs &amp;amp; Careers</category>
            <pubDate>Sat, 08 Mar 2008 21:27:15 +0800</pubDate>
        </item>
        <item>
            <title>2 Channel SoundCard Need Help &amp;#33;</title>
            <link>http://forum.lowyat.net/topic/646986</link>
            <description>Hey Guys...&lt;br /&gt;&lt;br /&gt; &lt;!--emo&amp;:cry:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/cry.gif' border='0' style='vertical-align:middle' alt='cry.gif' /&gt;&lt;!--endemo--&gt;  I just bought Logitech X-530 and should be abit happy one.. but when i back home, and trying to set it up i found out that out of 6 speaker, only 3 work for me.. others can&amp;#39;t use. because i got only 2 channel sound card on my laptop. is there anyone can teach me some tricks or tools that make my 2 channel sound card to 6,7, or 8 channel ?&lt;br /&gt;&lt;br /&gt;What i means is now the speaker should plug in green, black, orange(red) input. but my laptop for only green input. that why only 3 speaker are running.&lt;br /&gt;&lt;br /&gt;Help &amp;#33;  &lt;!--emo&amp;:cry:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/cry.gif' border='0' style='vertical-align:middle' alt='cry.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;additional : anyone know how to make the LogitechG15 keyboard display screen display stay there and not keep changing ? thank q</description>
            <author>AspireAcer</author>
            <category>Hardware</category>
            <pubDate>Fri, 07 Mar 2008 17:50:27 +0800</pubDate>
        </item>
        <item>
            <title>Not enough &amp;quot;place to let me plug in&amp;quot;</title>
            <link>http://forum.lowyat.net/topic/644273</link>
            <description>Hi... i do not know what it should call for the title... forgive me.&lt;br /&gt;&lt;br /&gt;I using Acer 5594.&lt;br /&gt;and i going to buy a set of speaker, LCD monitor, mouse, mouse pad(need usb). and 1 externa hard disk. and much more things.&lt;br /&gt;&lt;br /&gt;I would to know... is thats any things i can add on my laptop so i can plug in all this together? coz for Acer 5594... those usb drive are on the left hand side with annoying when using the mouse... i knew got some extra usb port.. but how about LCD monitor and speark port.... &lt;br /&gt;&lt;br /&gt;really need some help please.. thank q</description>
            <author>AspireAcer</author>
            <category>Mobile Computing</category>
            <pubDate>Mon, 03 Mar 2008 20:59:52 +0800</pubDate>
        </item>
        <item>
            <title>LCD Monitor Need Some Advice&amp;#33;</title>
            <link>http://forum.lowyat.net/topic/643524</link>
            <description>Hey guys..&lt;br /&gt;&lt;br /&gt;I am looking for a LCD monitor which this is really my 1st LCD monitor  &lt;!--emo&amp;:blush:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/blush.gif' border='0' style='vertical-align:middle' alt='blush.gif' /&gt;&lt;!--endemo--&gt; .. so i want to ask... is there really any diff for those diff brand LCD monitor.&lt;br /&gt;For me.. all the diff they got is just only the design of the monitor and the size. &lt;br /&gt;&lt;br /&gt;Is there any one got some nice 21&amp;quot;-22&amp;quot; LCD monitor can recommend to me? Hp or Samsung will be better for me coz they look really nice in thiere design.. but others brand still alright to have a look. &lt;br /&gt;&lt;br /&gt;Thank Guys. Budget is allright mate&amp;#39;s</description>
            <author>AspireAcer</author>
            <category>Hardware</category>
            <pubDate>Sun, 02 Mar 2008 21:16:09 +0800</pubDate>
        </item>
        <item>
            <title>HP Pavilion Elite m9040n..?</title>
            <link>http://forum.lowyat.net/topic/642269</link>
            <description>*I not sure is here the best place to post this topic, coz i can&amp;#39;t really find any desktop discussion place to let me post it. Correct me if i am wrong.&amp;quot;&lt;br /&gt;&lt;br /&gt;Hi,&lt;br /&gt;&lt;br /&gt;I actually still standing in the junction between Laptop and Desktop, and currently finding the way out of it. &lt;br /&gt;Ok. I am studying software engineering and computer security and game programming in Uni now. and i am looking for a new helper(PC).&lt;br /&gt;i am much more involves in Java coding, game designing and some computer security staff like cracking some kinds of staff and so on.&lt;br /&gt;&lt;br /&gt;my frens suggested me HP Pavilion Elite m9040n and i currectly using acer aspire as in my sign. Its having some grahpic card problem now and cozing me alot of trouble like auto shut down in the middle of I am CODING &amp;#33; darm it.&amp;#33; &lt;br /&gt;&lt;br /&gt;Or do u guys got any others suggestion? &lt;br /&gt;Budget not a problem, but i not really aim for those high costly dekstop coz everytime i bought somethings tmr will be somethings else more advance came out. &lt;br /&gt;High performace and cool enough is better. and i going to get a dual screen&amp;#33; and for gaming programing use.&lt;br /&gt;&lt;br /&gt;Thank Q. Please Help me ... Xie Xie.  &lt;!--emo&amp;:wub:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/wub.gif' border='0' style='vertical-align:middle' alt='wub.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>AspireAcer</author>
            <category>Hardware</category>
            <pubDate>Fri, 29 Feb 2008 21:12:04 +0800</pubDate>
        </item>
        <item>
            <title>Pokemon Diamond WiFi Problem&amp;#33;</title>
            <link>http://forum.lowyat.net/topic/589850</link>
            <description>&lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt;   &lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt;   &lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt;&lt;br /&gt;&lt;br /&gt;I playing pokemon diamond, and i saw you guys can trade pokemon or somethings with each others through the WiFi.&lt;br /&gt;I tried to connect to the WiFi, while all connection are successful, it nothings happen.&lt;br /&gt;What i means is, normally we got 3 step on the wifi rite ? i done 1st and 2nd .. then it just can;t go to step 3. So how i going to add friend code and actually how it work? can someone tell me please. &amp;#33;</description>
            <author>AspireAcer</author>
            <category>Nintendo</category>
            <pubDate>Wed, 12 Dec 2007 17:59:50 +0800</pubDate>
        </item>
        <item>
            <title>Database Design-Normalisation Need HELP &amp;#33;</title>
            <link>http://forum.lowyat.net/topic/555997</link>
            <description>I am currently studying Database Design. I having some problem on Normalization, this also my 1st time to do it. Hope someone can give me some idea to understand it.&lt;br /&gt;&lt;br /&gt;Here is my 0NF and 1NF&lt;br /&gt;&lt;br /&gt;0NF:&lt;br /&gt;R1= ( Order#, Order_Date, Supplier_Code, Supplier_Name, Supplier_Address, Supplier_Suburb, Supplier_Phone, Supplier_Fax, Supplier_ABN, Transport_Company, Transport_Company_Phone, Arrival_Data, Transport_Company_Reference { Item_Code, Item, Item_Category, Quantity, Unit_Price } )&lt;br /&gt;&lt;br /&gt;1NF:&lt;br /&gt;R11 = (&lt;u&gt;Order#&lt;/u&gt;, Order_Date, &lt;u&gt;Supplier_Code&lt;/u&gt;, Supplier_Name, Supplier_Address, Supplier_Suburb, Supplier_Phone, Supplier_Fax, Supplier_ABN, Transport_Company, Transport_Company_Phone, Arrival_Data, &lt;u&gt;Transport_Company_Reference&lt;/u&gt;)&lt;br /&gt;R12 = (&lt;u&gt;&lt;i&gt;Order#&lt;/i&gt;&lt;/u&gt;, &lt;u&gt;Item_Code&lt;/u&gt;, Item, Item_Category, Quantity, Unit_Price)&lt;br /&gt;&lt;br /&gt;&lt;span style='color:red'&gt;My Problem now is, when i create 2NF: as below. I wonder those relation are correct, coz if my R112 like that, how it going to connect with R111 ? But if i add a Order# on R112 that will be like 2 Order#. Can some one help me ?&lt;/span&gt;&lt;br /&gt;2NF:&lt;br /&gt;R111 = (&lt;u&gt;Order#&lt;/u&gt;, Order_Date)&lt;br /&gt;R112 = (&lt;u&gt;Supplier_Code&lt;/u&gt;, Supplier_Name, Supplier_Address, Supplier_Suburb, Supplier_Phone, Supplier_Fax, Supplier_ABN)&lt;br /&gt;R113 = (&lt;u&gt;Transport_Company_Reference&lt;/u&gt;, Transport_Company, Transport_Company_Phone, Arrival_Data)&lt;br /&gt;R121 = (&lt;i&gt;&lt;u&gt;Order#&lt;/u&gt;&lt;/i&gt;, Quantity, Unit_Price)&lt;br /&gt;R122 = (&lt;u&gt;Item_Code&lt;/u&gt;, Item, Item_Category)  &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thank You.&amp;#33;</description>
            <author>AspireAcer</author>
            <category>Codemasters</category>
            <pubDate>Sat, 17 Nov 2007 23:36:48 +0800</pubDate>
        </item>
        <item>
            <title>Nintendo DS Game Recoomanded ?</title>
            <link>http://forum.lowyat.net/topic/535219</link>
            <description>&lt;!--emo&amp;:hyper:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/rclxm9.gif' border='0' style='vertical-align:middle' alt='rclxm9.gif' /&gt;&lt;!--endemo--&gt; Just got my NDSL yesterday night, and looking for ROCK it out with some fun and kawaii games.&lt;br /&gt;&lt;br /&gt;I hope some one can give me some recommand on what game&amp;#39;(s) do you feel fun for you. Some of you might be answer me as Depand on what i like. I can give u some details for those game i preffer much.&lt;br /&gt;&lt;br /&gt;Cuurrrently bought Nintendogs, Final Fantasy III.&lt;br /&gt;Looking for some type of game like : Mario, Sonic, Pac-Man, Crash, or those quite old generation but new look in nintendo DS.&lt;br /&gt;&lt;br /&gt;The problem is when i walk into the store, they got like 4 or 5 type of Mario, Sonic and Crash. I really dunno choose which 1 and got not enough budget to get all of them at the same time.&lt;br /&gt;&lt;br /&gt;Can anyone give me some idea on that ? or any others game that you found out good to share. &lt;br /&gt;Thank You.&lt;br /&gt; &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;</description>
            <author>AspireAcer</author>
            <category>Nintendo</category>
            <pubDate>Thu, 11 Oct 2007 22:22:14 +0800</pubDate>
        </item>
        <item>
            <title>Lappies Auto Shut Down &amp;#33;</title>
            <link>http://forum.lowyat.net/topic/527446</link>
            <description>*Note: I not sure this topic should post here or in the mobile computing section. Move it if i am wrong. TQ&lt;br /&gt;&lt;br /&gt; &lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt;&lt;br /&gt;My Laptop(AserAspire 5594 WXMi) currently 10 Months old.&lt;br /&gt;From last few weeks, my laptop start running slower and slower... and then IT WILL AUTOMATIC SHUT DOWN if the laptop running too long.&lt;br /&gt;And comment about this problem ? &lt;br /&gt;&lt;br /&gt;Thank for Help&amp;#33;&lt;br /&gt;&lt;br /&gt;</description>
            <author>AspireAcer</author>
            <category>Technical Support</category>
            <pubDate>Thu, 27 Sep 2007 14:06:41 +0800</pubDate>
        </item>
        <item>
            <title>Is this means some one trying to access my PC?</title>
            <link>http://forum.lowyat.net/topic/522515</link>
            <description>I currently using ZoneAlarm Firewall. In this 2 weeks, i keep getting the same msg as :&lt;br /&gt;&amp;quot;The firewall has blocked Internet Access to Your Computer(NetBIOS Session) from 117.102.xxx.xx (TCP Port 11015) (TCP Flags: S).&amp;quot;&lt;br /&gt;&lt;br /&gt;Is this means some one is trying to access my system or any others reason i got this message.&lt;br /&gt;How to Stay AWAY from this ? &lt;br /&gt;&lt;br /&gt;*Everytime the IP address show are not the same &amp;#33;.&lt;br /&gt;&lt;br /&gt;Thank You.&lt;br /&gt;</description>
            <author>AspireAcer</author>
            <category>Security &amp;amp; Privacy</category>
            <pubDate>Tue, 18 Sep 2007 19:58:06 +0800</pubDate>
        </item>
    </channel>
</rss>
