<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by hamiru</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Sun, 28 Jun 2026 07:27:59 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>simplifying database design</title>
            <link>http://forum.lowyat.net/topic/2112222</link>
            <description>hello,&lt;br /&gt;i&amp;#39;m in need of suggestions to simplify the following tables:-&lt;br /&gt;&lt;br /&gt;&lt;img src='http://i.imgur.com/En9C4.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;br /&gt;Explanation:&lt;br /&gt;- there are 50 products (and counting) in the PRODUCT table&lt;br /&gt;- every product will undergo a series of tests to calculate a score for each test&lt;br /&gt;- for an example, product ID P001 will be tested for 100 times, and each test will generate a score. all the scores will be stored in PRODUCT_TEST table&lt;br /&gt;&lt;br /&gt;By this, table PRODUCT_TEST will become very humongous (50 products multiplying with 100 tests) to store all the data. So i&amp;#39;m welcoming any suggestion on how to make the tables more simplified and organized.&lt;br /&gt;My friend suggests of creating a table for each product named such as table TEST_P001, TEST_P002, TEST_P003 and so on. however i&amp;#39;m not sure whether this is the better solution</description>
            <author>hamiru</author>
            <category>Codemasters</category>
            <pubDate>Thu, 17 Nov 2011 04:21:28 +0800</pubDate>
        </item>
        <item>
            <title>get a MIMO or not?</title>
            <link>http://forum.lowyat.net/topic/1535198</link>
            <description>hello, just need a quick answer for these questions:-&lt;br /&gt;&lt;br /&gt;1) any difference between using &lt;b&gt;N MIMO&lt;/b&gt; and a &lt;b&gt;regular N&lt;/b&gt; router+modem in term of signal range?&lt;br /&gt;&lt;br /&gt;2) is Belkin &lt;b&gt;F5D8636 &lt;/b&gt;is also an N MIMO router+modem as &lt;b&gt;F5D8635&lt;/b&gt; or &lt;b&gt;F5D8633&lt;/b&gt;?&lt;br /&gt;&lt;br /&gt;thanks in advance</description>
            <author>hamiru</author>
            <category>Networks and Broadband</category>
            <pubDate>Sun, 22 Aug 2010 22:24:29 +0800</pubDate>
        </item>
        <item>
            <title>rdbss.sys BSOD</title>
            <link>http://forum.lowyat.net/topic/1217569</link>
            <description>Hi all,&lt;br /&gt;Forgive me if there&amp;#39;s any thread exists on this matter, but I&amp;#39;ve searched it with no luck&lt;br /&gt;&lt;br /&gt;Recently, everytime I shutdown my Dell Vostro 1220, this problem comes up.&lt;br /&gt;&lt;br /&gt;It started when it suddenly can&amp;#39;t shutdown properly (1 hour passed and still showing &amp;#39;Windows is shutting down&amp;#39; message), so I have to shut down in a hard way.&lt;br /&gt;&lt;br /&gt;Since then, whenever I&amp;#39;m using the internet, sometimes it will get &amp;#39;cut-off&amp;#39;. My router is running fine, but my wireless module can&amp;#39;t connect to my router so the only way is to reboot. And that&amp;#39;s where this bloody &amp;#39;rdbss.sys BSOD&amp;#39; appears.&lt;br /&gt;&lt;br /&gt;By the way, I&amp;#39;m running dual boot XP/Vista currently. Recently I&amp;#39;ve uninstalled Kaspersky (as it blocked my internet connection) and use AVG Free.&lt;br /&gt;&lt;br /&gt;Any help are appreciated.</description>
            <author>hamiru</author>
            <category>Technical Support</category>
            <pubDate>Thu, 05 Nov 2009 19:29:54 +0800</pubDate>
        </item>
        <item>
            <title>ORA-01858 error</title>
            <link>http://forum.lowyat.net/topic/1154715</link>
            <description>Hello all,&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve been searching a solution for this error, but most of the times I don&amp;#39;t understand what they&amp;#39;ve suggested.&lt;br /&gt;&lt;br /&gt;So here I&amp;#39;m posting a partial of the codes, along with its error output. I attach the full SQL codes too in case you want to try executing them.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m using Oracle by the way, and this is the infamous PetStore exercise for students studying at my place.&lt;br /&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('f5a8f8eef186eaa6d3f8aaf8a3813afb')&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;f5a8f8eef186eaa6d3f8aaf8a3813afb&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&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;CREATE TABLE Sale&lt;br /&gt;&amp;#40;&lt;br /&gt;SaleID &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;INTEGER,&lt;br /&gt;SaleDate &amp;nbsp; &amp;nbsp; &amp;nbsp;DATE,&lt;br /&gt;EmployeeID &amp;nbsp; &amp;nbsp;INTEGER&lt;br /&gt; &amp;nbsp; &amp;nbsp; DEFAULT 0,&lt;br /&gt;CustomerID &amp;nbsp; &amp;nbsp;INTEGER&lt;br /&gt; &amp;nbsp; &amp;nbsp; DEFAULT 0,&lt;br /&gt;SalesTax &amp;nbsp; &amp;nbsp; &amp;nbsp;NUMBER&amp;#40;38,4&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; DEFAULT 0,&lt;br /&gt; &amp;nbsp; &amp;nbsp; CONSTRAINT pk_Sale PRIMARY KEY &amp;#40;SaleID&amp;#41;&amp;#41;;&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&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;insert into Sale values&amp;#40;4,&amp;#39;14-Aug-2004&amp;#39;,3,18,14.62&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;5,&amp;#39;31-Oct-2004&amp;#39;,2,21,6.86&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;6,&amp;#39;15-Sep-2004&amp;#39;,5,44,9.82&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;7,&amp;#39;10-Feb-2004&amp;#39;,4,42,12.31&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;8,&amp;#39;10-Mar-2004&amp;#39;,1,15,17.58&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;9,&amp;#39;10-Feb-2004&amp;#39;,3,16,2.81&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;10,&amp;#39;1-Nov-2004&amp;#39;,8,53,7.83&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;11,&amp;#39;24-Dec-2004&amp;#39;,8,60,3.67&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;12,&amp;#39;15-Aug-2004&amp;#39;,2,53,1.19&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;13,&amp;#39;30-Jan-2004&amp;#39;,7,49,14.81&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;14,&amp;#39;18-Sep-2004&amp;#39;,2,9,3.56&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;15,&amp;#39;20-Jul-2004&amp;#39;,9,39,1.13&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;16,&amp;#39;18-Sep-2004&amp;#39;,8,62,12.96&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;17,&amp;#39;12-Feb-2004&amp;#39;,4,71,16.31&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;18,&amp;#39;21-Dec-2004&amp;#39;,5,35,14.95&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;19,&amp;#39;14-Feb-2004&amp;#39;,7,14,15.72&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;20,&amp;#39;9-Mar-2004&amp;#39;,5,2,12.96&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;21,&amp;#39;23-Apr-2004&amp;#39;,2,61,20.14&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;22,&amp;#39;27-Nov-2004&amp;#39;,2,16,9.67&amp;#41;;&lt;br /&gt;insert into Sale values&amp;#40;23,&amp;#39;8-Jul-2004&amp;#39;,6,27,10.53&amp;#41;;&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;error output&lt;br /&gt;&lt;!--QuoteBegin--&gt;&lt;div class='quotetop'&gt;QUOTE&lt;/div&gt;&lt;div class='quotemain'&gt;&lt;!--QuoteEBegin--&gt;SQL&amp;gt; insert into Sale values(4,&amp;#39;14-Aug-2004&amp;#39;,3,18,14.62);&lt;br /&gt;insert into Sale values(4,&amp;#39;14-Aug-2004&amp;#39;,3,18,14.62)&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; *&lt;br /&gt;ERROR at line 1:&lt;br /&gt;ORA-01858: a non-numeric character was found where a numeric was expected&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(5,&amp;#39;31-Oct-2004&amp;#39;,2,21,6.86);&lt;br /&gt;insert into Sale values(5,&amp;#39;31-Oct-2004&amp;#39;,2,21,6.86)&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; *&lt;br /&gt;ERROR at line 1:&lt;br /&gt;ORA-01858: a non-numeric character was found where a numeric was expected&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(6,&amp;#39;15-Sep-2004&amp;#39;,5,44,9.82);&lt;br /&gt;&lt;br /&gt;1 row created.&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(7,&amp;#39;10-Feb-2004&amp;#39;,4,42,12.31);&lt;br /&gt;&lt;br /&gt;1 row created.&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(8,&amp;#39;10-Mar-2004&amp;#39;,1,15,17.58);&lt;br /&gt;insert into Sale values(8,&amp;#39;10-Mar-2004&amp;#39;,1,15,17.58)&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; *&lt;br /&gt;ERROR at line 1:&lt;br /&gt;ORA-01858: a non-numeric character was found where a numeric was expected&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(9,&amp;#39;10-Feb-2004&amp;#39;,3,16,2.81);&lt;br /&gt;&lt;br /&gt;1 row created.&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(10,&amp;#39;1-Nov-2004&amp;#39;,8,53,7.83);&lt;br /&gt;&lt;br /&gt;1 row created.&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(11,&amp;#39;24-Dec-2004&amp;#39;,8,60,3.67);&lt;br /&gt;insert into Sale values(11,&amp;#39;24-Dec-2004&amp;#39;,8,60,3.67)&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  *&lt;br /&gt;ERROR at line 1:&lt;br /&gt;ORA-01858: a non-numeric character was found where a numeric was expected&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(12,&amp;#39;15-Aug-2004&amp;#39;,2,53,1.19);&lt;br /&gt;insert into Sale values(12,&amp;#39;15-Aug-2004&amp;#39;,2,53,1.19)&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  *&lt;br /&gt;ERROR at line 1:&lt;br /&gt;ORA-01858: a non-numeric character was found where a numeric was expected&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(13,&amp;#39;30-Jan-2004&amp;#39;,7,49,14.81);&lt;br /&gt;&lt;br /&gt;1 row created.&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(14,&amp;#39;18-Sep-2004&amp;#39;,2,9,3.56);&lt;br /&gt;&lt;br /&gt;1 row created.&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(15,&amp;#39;20-Jul-2004&amp;#39;,9,39,1.13);&lt;br /&gt;&lt;br /&gt;1 row created.&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(16,&amp;#39;18-Sep-2004&amp;#39;,8,62,12.96);&lt;br /&gt;&lt;br /&gt;1 row created.&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(17,&amp;#39;12-Feb-2004&amp;#39;,4,71,16.31);&lt;br /&gt;&lt;br /&gt;1 row created.&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(18,&amp;#39;21-Dec-2004&amp;#39;,5,35,14.95);&lt;br /&gt;insert into Sale values(18,&amp;#39;21-Dec-2004&amp;#39;,5,35,14.95)&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  *&lt;br /&gt;ERROR at line 1:&lt;br /&gt;ORA-01858: a non-numeric character was found where a numeric was expected&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(19,&amp;#39;14-Feb-2004&amp;#39;,7,14,15.72);&lt;br /&gt;&lt;br /&gt;1 row created.&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(20,&amp;#39;9-Mar-2004&amp;#39;,5,2,12.96);&lt;br /&gt;insert into Sale values(20,&amp;#39;9-Mar-2004&amp;#39;,5,2,12.96)&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  *&lt;br /&gt;ERROR at line 1:&lt;br /&gt;ORA-01858: a non-numeric character was found where a numeric was expected&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(21,&amp;#39;23-Apr-2004&amp;#39;,2,61,20.14);&lt;br /&gt;&lt;br /&gt;1 row created.&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(22,&amp;#39;27-Nov-2004&amp;#39;,2,16,9.67);&lt;br /&gt;&lt;br /&gt;1 row created.&lt;br /&gt;&lt;br /&gt;SQL&amp;gt; insert into Sale values(23,&amp;#39;8-Jul-2004&amp;#39;,6,27,10.53);&lt;br /&gt;&lt;br /&gt;1 row created.&lt;br /&gt;&lt;br /&gt;&lt;!--QuoteEnd--&gt;&lt;/div&gt;&lt;!--QuoteEEnd--&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;br /&gt;As you can see, some of the Insert queries are successful, while some of them don&amp;#39;t, resulting in &amp;#39;ORA-01858: a non-numeric character was found where a numeric was expected.&amp;#39;&lt;br /&gt;&lt;br /&gt;Also, I need to know what exactly using &lt;b&gt;to_date&lt;/b&gt; is, since a lot of people suggest it. I&amp;#39;m guessing &lt;b&gt;to_date&lt;/b&gt; is applied for a single query, so changing the above queries to have a &lt;b&gt;to_date&lt;/b&gt; function is definitely a time-consuming task.&lt;br /&gt;&lt;br /&gt;Thanks in advance.</description>
            <author>hamiru</author>
            <category>Codemasters</category>
            <pubDate>Sun, 06 Sep 2009 21:58:22 +0800</pubDate>
        </item>
        <item>
            <title>Motorcyclist hit my side mirror</title>
            <link>http://forum.lowyat.net/topic/960936</link>
            <description>Hello all,&lt;br /&gt;Recently a bloody idiot motorcyclist hit my right side mirror, but instead his side mirror is smashed (I could see the debris on the road) while mine has a minor scratches&lt;br /&gt;This incident happened when he tried to overtake a line of cars, while me and a lorry in front of me (of course, the view is blocked) coming on the opposite way&lt;br /&gt;The lorry suddenly going left a bit, like trying to avoid something, and out of the blue, the motorcyclist speeding (yes, he&amp;#39;s going fast&amp;#33;) on my lane, overtaking a line of cars, and hit my side mirror&lt;br /&gt;Although he (should) realize his smashed side mirror, he instead &lt;b&gt;sped away&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;I&amp;#39;m sure I am innocent totally, but should I make a report to the police station? The road isn&amp;#39;t double-lined, but he shouldn&amp;#39;t overtake whenever there&amp;#39;s any incoming vehicle&lt;br /&gt;&lt;br /&gt;Here&amp;#39;s a rough (and ugly) drawing I made&lt;br /&gt;&lt;br /&gt;&lt;img src='http://img2.uploadhouse.com/fileuploads/3589/3589452b7d225667a3c35c383298d66f674e21d.jpg' border='0' alt='user posted image' /&gt;</description>
            <author>hamiru</author>
            <category>The Fast &amp;amp; The Furious</category>
            <pubDate>Wed, 11 Mar 2009 11:00:18 +0800</pubDate>
        </item>
        <item>
            <title>Upgrading...again</title>
            <link>http://forum.lowyat.net/topic/898336</link>
            <description>Thinking of upgrading my rig, so I don&amp;#39;t have spent frequently every year on particular hardware. So I made a survey and here, the selection I made plus calculation&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;SELECTION 1&lt;/u&gt;&lt;br /&gt;Processor: Phenom AM2+ X4 9950 = RM620&lt;br /&gt;Motherboard: Asus M3N-HT DELUXE = RM650&lt;br /&gt;Graphic card: GigaByte 9800GTX+ x 2 (SLI) = RM1538&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Total = RM2808&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;SELECTION 2&lt;/u&gt;&lt;br /&gt;Processor: Core 2 Quad Q9550 = RM1170&lt;br /&gt;Motherboard: DFI LT X48-T2RS = RM899&lt;br /&gt;Graphic card: Sapphire HD4870 = RM865&lt;br /&gt;&lt;b&gt;&lt;br /&gt;Total = RM2934&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Please give your best opinion or suggestion. My budget is around RM3000, but if possible, can be maxed to RM4000. Currently my rig&amp;#39;s spec is:&lt;br /&gt;&lt;br /&gt;Intel Core 2 Duo E8200&lt;br /&gt;Asus P5KC&lt;br /&gt;Asus EN8600GT&lt;br /&gt;Corsair XMS2 2GB kit&lt;br /&gt;Cooler Master iGreen 500W&lt;br /&gt;1TB, 200GB, 80GB hard disks&lt;br /&gt;Pioneer DVDRW Dual Layer with Lightscribe</description>
            <author>hamiru</author>
            <category>Hardware</category>
            <pubDate>Tue, 06 Jan 2009 16:12:50 +0800</pubDate>
        </item>
        <item>
            <title>[WTA]Getting a 2nd Hand SUV</title>
            <link>http://forum.lowyat.net/topic/834249</link>
            <description>Hello guys&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve been thinking of getting a second hand SUV&lt;br /&gt;But I have no experience on finding a good SUV to be maintained and driven for a long term&lt;br /&gt;&lt;br /&gt;So what you guys think of Nissan Terrano?&lt;br /&gt;&lt;br /&gt;I actually has asked one of Nissan sale officer, but his words are not that specific that I figured he talked generally about buying second hand vehicles (like high FC, high maintenance, other minor problems, etc...).&lt;br /&gt;&lt;br /&gt;Still, I encouraging you guys to suggest other SUV, if there is any, that is better than Terrano. Maybe an Isuzu then?&lt;br /&gt;&lt;br /&gt;And the budget is around RM30,000 because initially that is the figure for the &amp;#39;00 Nissan Terrano I found in Mudah.com&lt;br /&gt;&lt;br /&gt;So, help me please  &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;</description>
            <author>hamiru</author>
            <category>The Fast &amp;amp; The Furious</category>
            <pubDate>Mon, 03 Nov 2008 03:01:18 +0800</pubDate>
        </item>
        <item>
            <title>Problem after installing Megaupload Toolbar</title>
            <link>http://forum.lowyat.net/topic/603541</link>
            <description>hello all&lt;br /&gt;currently facing a big problem&lt;br /&gt;&lt;br /&gt;right after installing Megaupload Toolbar, i can&amp;#39;t access many webpages i usually surf&lt;br /&gt;it will pop the message &amp;quot;Problem loading page: The connection has timed out&amp;quot;&lt;br /&gt;that includes Yahoo Mail, MSN, Mozilla Firefox site, the Megaupload site itself, and many of torrent sites&lt;br /&gt;also, i am unable to load video from Youtube&lt;br /&gt;&lt;br /&gt;i already uninstalling it, but still can&amp;#39;t solve the problem</description>
            <author>hamiru</author>
            <category>Technical Support</category>
            <pubDate>Thu, 03 Jan 2008 11:56:48 +0800</pubDate>
        </item>
        <item>
            <title>good ADSL modem, Router, or ADSL+Router</title>
            <link>http://forum.lowyat.net/topic/594465</link>
            <description>hi guys,&lt;br /&gt;sorry if i posted in wrong section&lt;br /&gt;&lt;br /&gt;recently my ADSL and router had been struck by lightning&lt;br /&gt;and later, i bought an Aztech DSL605EW&lt;br /&gt;but it won&amp;#39;t serve me as i want it to be like my previous modem and router (in short, too problematic)&lt;br /&gt;&lt;br /&gt;so i might as well to buy better ADSL modem and router, or ADSL+Router&lt;br /&gt;&lt;br /&gt;can recommend me a set of them that&amp;#39;s good for P2P, and easy to configure?&lt;br /&gt;or should i get a set that&amp;#39;s as same as my previous one?</description>
            <author>hamiru</author>
            <category>Networks and Broadband</category>
            <pubDate>Wed, 19 Dec 2007 21:36:47 +0800</pubDate>
        </item>
        <item>
            <title>multiboot</title>
            <link>http://forum.lowyat.net/topic/545117</link>
            <description>hi there,&lt;br /&gt;recently i am thinking of creating multiboot disk of win98se, winxp home, and vista home basic&lt;br /&gt;is it possible? and, how many disk space should i prepare?&lt;br /&gt;my pc initially has winxp home installed&lt;br /&gt;&lt;br /&gt;and, i have a program called acronis, but i&amp;#39;m kinda lost and new to it</description>
            <author>hamiru</author>
            <category>Technical Support</category>
            <pubDate>Tue, 30 Oct 2007 22:10:18 +0800</pubDate>
        </item>
        <item>
            <title>&amp;#39;File does not begin with %PDF&amp;#39;</title>
            <link>http://forum.lowyat.net/topic/538020</link>
            <description>sorry if there&amp;#39;s a thread for the similar problem&lt;br /&gt;&lt;br /&gt;whenever i tried opening .pdf link in LYN main page, it&amp;#39;ll launch acrobat and the error above will pop out&lt;br /&gt;&lt;br /&gt;before this, i&amp;#39;m using adobe CS2 and it worked fine, but the problem arise after upgrading to adobe CS3</description>
            <author>hamiru</author>
            <category>Technical Support</category>
            <pubDate>Thu, 18 Oct 2007 10:56:35 +0800</pubDate>
        </item>
        <item>
            <title>java</title>
            <link>http://forum.lowyat.net/topic/478272</link>
            <description>hi all,&lt;br /&gt;&lt;br /&gt;i have a java text field and a java button, let say it accepts a valid value range, like 0 to 100&lt;br /&gt;if i input value within range allowed and the button is clicked, an info message will appear&lt;br /&gt;whether i input value lower than 0 or higher than 100, it will display warning message&lt;br /&gt;&lt;br /&gt;but how to display warning message, if there is no input made, and the button is clicked?</description>
            <author>hamiru</author>
            <category>Codemasters</category>
            <pubDate>Mon, 25 Jun 2007 15:38:47 +0800</pubDate>
        </item>
        <item>
            <title>Java Problem [part 2]</title>
            <link>http://forum.lowyat.net/topic/470688</link>
            <description>&lt;u&gt;Java Problem (part 1)&lt;/u&gt; &lt;b&gt;SOLVED&lt;/b&gt;&lt;br /&gt;cannot find symbol (method)&lt;br /&gt;&lt;br /&gt;Hi guys,&lt;br /&gt;&lt;br /&gt;this is my source codes&lt;br /&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('3e58ef8fcd424e95caf2eb235b40a6d8')&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;3e58ef8fcd424e95caf2eb235b40a6d8&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;import java.awt.*;&lt;br /&gt;import java.awt.event.*;&lt;br /&gt;import java.applet.Applet;&lt;br /&gt;import javax.swing.*;&lt;br /&gt;import java.sql.*;&lt;br /&gt;import java.math.*;&lt;br /&gt;import java.io.*;&lt;br /&gt;import java.util.*;&lt;br /&gt;import java.lang.*;&lt;br /&gt;&lt;br /&gt;public class projek extends Applet implements ActionListener{&lt;br /&gt;    JTextArea jttitle;&lt;br /&gt;    JScrollPane sp_jttitle;&lt;br /&gt;    JComboBox jcbanimals;&lt;br /&gt;    JLabel jlbmainpic;&lt;br /&gt;    JLabel jlabel_1;&lt;br /&gt;    JLabel jlabel_2;&lt;br /&gt;    JLabel jlabel_3;&lt;br /&gt;&lt;br /&gt;    public void init() {&lt;br /&gt;        projekLayout customLayout = new projekLayout();&lt;br /&gt;&lt;br /&gt;        setFont(new Font(&amp;quot;Helvetica&amp;quot;, Font.PLAIN, 12));&lt;br /&gt;        setLayout(customLayout);&lt;br /&gt;&lt;br /&gt;        jttitle = new JTextArea(&amp;quot;MULTIMEDIA DATABASE FOR ANIMALS IN ZOO NEGARA&amp;quot;);&lt;br /&gt;        sp_jttitle = new JScrollPane(jttitle);&lt;br /&gt;        add(sp_jttitle);&lt;br /&gt;&lt;br /&gt;        jcbanimals = new JComboBox();&lt;br /&gt;        jcbanimals.addItem(&amp;quot;Select an animal&amp;quot;);&lt;br /&gt;        jcbanimals.addItem(&amp;quot;TIGER&amp;quot;);&lt;br /&gt;        jcbanimals.addItem(&amp;quot;GIRAFFE&amp;quot;);&lt;br /&gt;        jcbanimals.addItem(&amp;quot;ZEBRA&amp;quot;);&lt;br /&gt;        jcbanimals.addItem(&amp;quot;DEER&amp;quot;);&lt;br /&gt;        jcbanimals.addItem(&amp;quot;BUFFALO&amp;quot;);&lt;br /&gt;        jcbanimals.addItem(&amp;quot;BEAR&amp;quot;);&lt;br /&gt;        jcbanimals.addItem(&amp;quot;LEMUR&amp;quot;);&lt;br /&gt;        jcbanimals.addItem(&amp;quot;TAPIR&amp;quot;);&lt;br /&gt;        add(jcbanimals);&lt;br /&gt;        jcbanimals.addActionListener(this);&lt;br /&gt;&lt;br /&gt;        jlbmainpic = new JLabel(&amp;quot;&amp;quot;);&lt;br /&gt;        add(jlbmainpic);&lt;br /&gt;&lt;br /&gt;        jlabel_1 = new JLabel(&amp;quot;label_1&amp;quot;);&lt;br /&gt;        add(jlabel_1);&lt;br /&gt;&lt;br /&gt;        jlabel_2 = new JLabel(&amp;quot;label_2&amp;quot;);&lt;br /&gt;        add(jlabel_2);&lt;br /&gt;&lt;br /&gt;        jlabel_3 = new JLabel(&amp;quot;label_3&amp;quot;);&lt;br /&gt;        add(jlabel_3);&lt;br /&gt;&lt;br /&gt;        setSize(getPreferredSize());&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;	public void actionPerformed(ActionEvent e)&lt;br /&gt;	{&lt;br /&gt;&lt;br /&gt;		//jcbanimals_actionPerformed(e);&lt;br /&gt;		if(e.getSource().equals(jcbanimals(&amp;quot;TIGER&amp;quot;)))&lt;br /&gt;		{&lt;br /&gt;		//if(jcbanimals(&amp;quot;TIGER&amp;quot;).isSelected())&lt;br /&gt;		jlabel_1.setIcon(new ImageIcon(&amp;quot;C:&amp;#092;&amp;#092;FYP&amp;#092;&amp;#092;mages&amp;#092;&amp;#092;animal_01.jpg&amp;quot;));&lt;br /&gt;		}&lt;br /&gt;&lt;br /&gt;	}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    public static void main(String args[]) throws SQLException {&lt;br /&gt;        projek applet = new projek();&lt;br /&gt;        Frame window = new Frame(&amp;quot;projek&amp;quot;);&lt;br /&gt;&lt;br /&gt;        DriverManager.registerDriver (new oracle.jdbc.OracleDriver());&lt;br /&gt;&lt;br /&gt;		// Connect to the local database&lt;br /&gt;		Connection conn =&lt;br /&gt;		   DriverManager.getConnection(&amp;quot;jdbc:oracle:thin:@hamiru:1521:oracle&amp;quot;,&lt;br /&gt;                                   &amp;quot;scott&amp;quot;, &amp;quot;tiger&amp;quot;);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;        window.addWindowListener(new WindowAdapter() {&lt;br /&gt;            public void windowClosing(WindowEvent e) {&lt;br /&gt;                System.exit(0);&lt;br /&gt;            }&lt;br /&gt;        });&lt;br /&gt;&lt;br /&gt;        applet.init();&lt;br /&gt;        window.add(&amp;quot;Center&amp;quot;, applet);&lt;br /&gt;        window.pack();&lt;br /&gt;        window.setVisible(true);&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;class projekLayout implements LayoutManager {&lt;br /&gt;&lt;br /&gt;    public projekLayout() {&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    public void addLayoutComponent(String name, Component comp) {&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    public void removeLayoutComponent(Component comp) {&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    public Dimension preferredLayoutSize(Container parent) {&lt;br /&gt;        Dimension dim = new Dimension(0, 0);&lt;br /&gt;&lt;br /&gt;        Insets insets = parent.getInsets();&lt;br /&gt;        dim.width = 717 + insets.left + insets.right;&lt;br /&gt;        dim.height = 601 + insets.top + insets.bottom;&lt;br /&gt;&lt;br /&gt;        return dim;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    public Dimension minimumLayoutSize(Container parent) {&lt;br /&gt;        Dimension dim = new Dimension(0, 0);&lt;br /&gt;        return dim;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    public void layoutContainer(Container parent) {&lt;br /&gt;        Insets insets = parent.getInsets();&lt;br /&gt;&lt;br /&gt;        Component c;&lt;br /&gt;        c = parent.getComponent(0);&lt;br /&gt;        if (c.isVisible()) {c.setBounds(insets.left+64,insets.top+40,600,112);}&lt;br /&gt;        c = parent.getComponent(1);&lt;br /&gt;        if (c.isVisible()) {c.setBounds(insets.left+64,insets.top+184,240,24);}&lt;br /&gt;        c = parent.getComponent(2);&lt;br /&gt;        if (c.isVisible()) {c.setBounds(insets.left+64,insets.top+232,120,48);}&lt;br /&gt;        c = parent.getComponent(3);&lt;br /&gt;        if (c.isVisible()) {c.setBounds(insets.left+408,insets.top+184,72,24);}&lt;br /&gt;        c = parent.getComponent(4);&lt;br /&gt;        if (c.isVisible()) {c.setBounds(insets.left+408,insets.top+224,72,24);}&lt;br /&gt;        c = parent.getComponent(5);&lt;br /&gt;        if (c.isVisible()) {c.setBounds(insets.left+408,insets.top+264,72,24);}&lt;br /&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;br /&gt;and i think the problem lies in this section&lt;br /&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('bd088092f28817795b1785015005a6ae')&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;bd088092f28817795b1785015005a6ae&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;public void actionPerformed(ActionEvent e)&lt;br /&gt;	{&lt;br /&gt;&lt;br /&gt;		//jcbanimals_actionPerformed(e);&lt;br /&gt;		if(e.getSource().equals(jcbanimals(&amp;quot;TIGER&amp;quot;)))&lt;br /&gt;		{&lt;br /&gt;		//if(jcbanimals(&amp;quot;TIGER&amp;quot;).isSelected())&lt;br /&gt;		jlabel_1.setIcon(new ImageIcon(&amp;quot;C:&amp;#092;&amp;#092;FYP&amp;#092;&amp;#092;images&amp;#092;&amp;#092;animal_01.jpg&amp;quot;));&lt;br /&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;br /&gt;because the error returned&lt;br /&gt;&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;C&amp;#58;&amp;#092;FYP&amp;#092;projek.java&amp;#58;66&amp;#58; cannot find symbol&lt;br /&gt;symbol &amp;nbsp;&amp;#58; method jcbanimals&amp;#40;java.lang.String&amp;#41;&lt;br /&gt;location&amp;#58; class projek&lt;br /&gt; &amp;nbsp;if&amp;#40;e.getSource&amp;#40;&amp;#41;.equals&amp;#40;jcbanimals&amp;#40;&amp;#34;TIGER&amp;#34;&amp;#41;&amp;#41;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;^&lt;br /&gt;1 error&lt;br /&gt;&lt;br /&gt;Tool completed with exit code 1&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;anyway, i do think this may a silly mistake, but i&amp;#39;d tried many things to correct this, but failed&lt;br /&gt;&lt;br /&gt;please help, thanks</description>
            <author>hamiru</author>
            <category>Codemasters</category>
            <pubDate>Sun, 10 Jun 2007 23:30:45 +0800</pubDate>
        </item>
        <item>
            <title>Oracle DB with Java</title>
            <link>http://forum.lowyat.net/topic/462314</link>
            <description></description>
            <author>hamiru</author>
            <category>Codemasters</category>
            <pubDate>Fri, 25 May 2007 03:21:37 +0800</pubDate>
        </item>
    </channel>
</rss>
