<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by nerd</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Wed, 25 Nov 2009 01:23:42 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Pasar Malams and Wet Markets in Subang</title>
            <link>http://forum.lowyat.net/topic/1176449</link>
            <description>hey guys, I need some help in pinpointing the wet markets and pasar malams around Subang.&lt;br /&gt;&lt;br /&gt;I know that the SS15 wet market is open every morning til noon and the Taipan wet market is around Sundays.&lt;br /&gt;&lt;br /&gt;as for pasar malams, the most notable one is SJ Uptown in SS15.&lt;br /&gt;&lt;br /&gt;if there&amp;#39;s anything you guys can add on, that&amp;#39;ll be great.&lt;br /&gt;&lt;br /&gt;thanks &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;</description>
            <author>nerd</author>
            <category>Kopitiam Q&amp;amp;A</category>
            <pubDate>Mon, 28 Sep 2009 09:29:33 +0800</pubDate>
        </item>
        <item>
            <title>[WTS] PS3 Fallout 3 [R3]</title>
            <link>http://forum.lowyat.net/topic/1155317</link>
            <description>Game: Fallout 3 [Region 3]&lt;br /&gt;Price: RM100 &lt;br /&gt;Method of transaction: COD in Subang/Sunway only. &lt;br /&gt;Condition: Like new, haven&amp;#39;t played it in months, not my type of game.</description>
            <author>nerd</author>
            <category>Games</category>
            <pubDate>Mon, 07 Sep 2009 13:45:59 +0800</pubDate>
        </item>
        <item>
            <title>removing script error upon Windows startup</title>
            <link>http://forum.lowyat.net/topic/1054596</link>
            <description>hey guys, I&amp;#39;ve been having this annoying script error which pops up everytime I start up Windows.&lt;br /&gt;&lt;br /&gt;I did a Spybot, antivirus (Avira) scan and registry clean but the problem still persists. I googled the URL but found nothing much of use.. and I don&amp;#39;t think I want to run the URL in the browser.&lt;br /&gt;&lt;br /&gt;using Firefox as my default browser, but have disabled script popups in IE8.&lt;br /&gt;&lt;br /&gt;any help would be appreciated.&lt;br /&gt;&lt;br /&gt;here&amp;#39;s a screenshot of the error:&lt;br /&gt;&lt;br /&gt;&lt;img src='http://img.photobucket.com/albums/v378/aman23/error.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;br /&gt;thanks&amp;#33; &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;</description>
            <author>nerd</author>
            <category>Security &amp;amp; Privacy</category>
            <pubDate>Sat, 06 Jun 2009 19:59:23 +0800</pubDate>
        </item>
        <item>
            <title>Java help&amp;#33;</title>
            <link>http://forum.lowyat.net/topic/868543</link>
            <description>hey guys, first year university student here. &lt;br /&gt;&lt;br /&gt;I&amp;#39;m supposed to create programs that can calculate multiples of 5 using for, while and do..while statements. I got the for statement working, but no such luck on the other two &lt;!--emo&amp;:(--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/sad.gif' border='0' style='vertical-align:middle' alt='sad.gif' /&gt;&lt;!--endemo--&gt;&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve did so many ammendments but yet failed to get it working. can anyone just check the code and tell me where I went wrong?&lt;br /&gt;&lt;br /&gt;here&amp;#39;s the one for do..while:&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;public class Multi5dw&lt;br /&gt;{&lt;br /&gt;	public static void main &amp;#40;String args &amp;#91;&amp;#93;&amp;#41;&lt;br /&gt;	{&lt;br /&gt; &amp;nbsp;&lt;br /&gt; &amp;nbsp;int i = 1;&lt;br /&gt; &amp;nbsp;int number = 1;&lt;br /&gt; &amp;nbsp;&lt;br /&gt; &amp;nbsp;do&lt;br /&gt; &amp;nbsp;{&lt;br /&gt; &amp;nbsp;	number % 5 == 0;&lt;br /&gt; &amp;nbsp;	System.out.printf &amp;#40; &amp;#34;The multiples of 5 are&amp;#58;%d &amp;#34;, i&amp;#41;;&lt;br /&gt; &amp;nbsp;	number = number + 1;&lt;br /&gt; &amp;nbsp;	i = i + 1;&lt;br /&gt; &amp;nbsp;} &amp;nbsp;&lt;br /&gt; &amp;nbsp;	while &amp;#40; i &amp;#60;= 20 &amp;#41;;&lt;br /&gt;	}&lt;br /&gt;}&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;here&amp;#39;s the one for while:&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;public class Multi5w&lt;br /&gt;{&lt;br /&gt;	public static void main &amp;#40;String args &amp;#91;&amp;#93;&amp;#41;&lt;br /&gt;	{&lt;br /&gt; &amp;nbsp;int i = 1;&lt;br /&gt; &amp;nbsp;&lt;br /&gt; &amp;nbsp;while &amp;#40;i &amp;#60;= 20&amp;#41;&lt;br /&gt; &amp;nbsp;{&lt;br /&gt; &amp;nbsp;	i = 1;&lt;br /&gt; &amp;nbsp;	i = i++;&lt;br /&gt; &amp;nbsp;	&lt;br /&gt; &amp;nbsp; &amp;nbsp;if &amp;#40;i % 5 == 0&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp;&lt;br /&gt; &amp;nbsp; &amp;nbsp;{	&lt;br /&gt; &amp;nbsp; &amp;nbsp;	System.out.println &amp;#40;i +&amp;#34;&amp;#092;t&amp;#34; +&amp;#34;is a multiple of 5&amp;#34;&amp;#41;;&lt;br /&gt; &amp;nbsp;	}&lt;br /&gt; &amp;nbsp;	&lt;br /&gt; &amp;nbsp;	&lt;br /&gt; &amp;nbsp;}&lt;br /&gt;	&lt;br /&gt;	}&lt;br /&gt;	&lt;br /&gt;}&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;thanks guys. much appreciated &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;</description>
            <author>nerd</author>
            <category>Codemasters</category>
            <pubDate>Mon, 08 Dec 2008 01:03:22 +0800</pubDate>
        </item>
        <item>
            <title>XP refuses to boot after adding RAM.. after a week</title>
            <link>http://forum.lowyat.net/topic/782696</link>
            <description>hey guys, I recently installed a 2GB Corsair Value Select module on my notebook which came with 1GB RAM. so it means that I&amp;#39;m running 1GB + 2GB of RAM. my OS is Windows XP, genuine of course.&lt;br /&gt;&lt;br /&gt;initially after some teething problems there were no more problems after a week..&lt;br /&gt;&lt;br /&gt;and then suddenly when I was surfing and listening to music as usual, my whole computer crashed, showed a blue screen and rebooted. it managed to get to the desktop where it got stuck and I had to manually reboot it.&lt;br /&gt;&lt;br /&gt;after that it refused to reboot at all. it kept on resetting and resetting after the XP splash screen. sometimes Scandisk came up and tried to fix the errors, and it would get stuck after a certain percent and refused to budge until I rebooted it again.. rinse and repeat.&lt;br /&gt;&lt;br /&gt;now I can&amp;#39;t even get to the XP splash screen &amp;#39;coz so many files are corrupted based on what Scandisk did.&lt;br /&gt;&lt;br /&gt;basically that&amp;#39;s that and I didn&amp;#39;t miss any details.&lt;br /&gt;&lt;br /&gt;is the the OS or the RAM module? I&amp;#39;m gonna try and take out one of the RAM modules but I doubt it will make much difference because my OS is already screwed. I also read reports saying that XP becomes unstable once you put in more than 3GB of RAM. actually I upgraded to 3GB of RAM because I wanted to run Vista, but I couldn&amp;#39;t find one going at a good price so I didn&amp;#39;t buy the DVD.&lt;br /&gt;&lt;br /&gt;my dad&amp;#39;s notebook is running a 2GB + 1GB combo as well on Vista and it&amp;#39;s working fine, so I&amp;#39;m guessing XP is shocked with my sudden drastic increase in RAM.&lt;br /&gt;&lt;br /&gt;any suggestions on what I should do?&lt;br /&gt;&lt;br /&gt;Thanks.</description>
            <author>nerd</author>
            <category>Technical Support</category>
            <pubDate>Thu, 04 Sep 2008 01:09:27 +0800</pubDate>
        </item>
        <item>
            <title>calling all Computer Science students&amp;#33;</title>
            <link>http://forum.lowyat.net/topic/761303</link>
            <description>hi guys, I&amp;#39;ll be starting my BSc (Hons) IT (major Computer Science) most probably in Sunway soon, under Lancaster Uni.&lt;br /&gt;&lt;br /&gt;anyone else currently studying there? any feedback?&lt;br /&gt;&lt;br /&gt;and also for all current/ex Com Science students out there, anything that I should brace myself for prior to entering the course?&lt;br /&gt;&lt;br /&gt;yes I know the course outline, syllabus and all.. I just want to hear something from those who have experience in 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;all input will be greatly appreciated. &lt;br /&gt;&lt;br /&gt;thanks&amp;#33;</description>
            <author>nerd</author>
            <category>Education Essentials</category>
            <pubDate>Thu, 07 Aug 2008 23:09:06 +0800</pubDate>
        </item>
        <item>
            <title>Toyota Recall</title>
            <link>http://forum.lowyat.net/topic/671735</link>
            <description>&lt;a href='http://paultan.org/archives/2008/04/11/toyota-power-window-recall-in-the-us/' target='_blank'&gt;http://paultan.org/archives/2008/04/11/toy...call-in-the-us/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; &lt;!--emo&amp;:clap:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/rclxms.gif' border='0' style='vertical-align:middle' alt='rclxms.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;so any of those Savvy recall bashers wanna bash Toyota for recalling now??&lt;br /&gt;&lt;br /&gt;and POWER WINDOW problem summore&amp;#33;&lt;br /&gt;&lt;br /&gt;Proton bashers, this is for you&amp;#33;</description>
            <author>nerd</author>
            <category>The Fast &amp;amp; The Furious</category>
            <pubDate>Fri, 11 Apr 2008 18:43:59 +0800</pubDate>
        </item>
        <item>
            <title>getting Subscription Notification e-mails</title>
            <link>http://forum.lowyat.net/topic/664699</link>
            <description>Hi Admins, Mods and Staffs, since last week I&amp;#39;ve been getting Forum Subscription Notifications for the Music Garage Sales subforum. I didn&amp;#39;t change any settings nor did I subscribe to any subforum. At first I thought it was a system glitch so I let it be, but after a week I guess I should inform you guys as the e-mails are getting annoying &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;Would appreciate if you guys would look into the matter for me. Please PM me for whatever info is needed regarding my account.&lt;br /&gt;&lt;br /&gt;Thank you in advance&amp;#33;</description>
            <author>nerd</author>
            <category>Main Site/Forum Feedback and Helpdesk</category>
            <pubDate>Wed, 02 Apr 2008 09:19:40 +0800</pubDate>
        </item>
        <item>
            <title>cat repellent</title>
            <link>http://forum.lowyat.net/topic/653038</link>
            <description>Hi guys, I don&amp;#39;t know whether this is the correct section or not but here goes:&lt;br /&gt;&lt;br /&gt;I&amp;#39;m having trouble with cats peeing on my car&amp;#39;s windscreen at home. I want to buy a commercial cat repellent to put around the perimeter of my car so that it won&amp;#39;t come near. Any idea of where to get some?&lt;br /&gt;&lt;br /&gt;thanks &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;</description>
            <author>nerd</author>
            <category>Pets Wonderland</category>
            <pubDate>Sun, 16 Mar 2008 19:36:00 +0800</pubDate>
        </item>
        <item>
            <title>[WTComplain] Conquest Computer Centre</title>
            <link>http://forum.lowyat.net/topic/652934</link>
            <description>Hi all, I want to share my bad experience with Conquest Computer Centre, Sunway Pyramid.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;22/12/07 -&lt;/b&gt; I bought a Winfast A7300GT AGP from them to replace my damaged Radeon 9600XT.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;17/01/08 -&lt;/b&gt; Not even a month later, the card died on me. I knew the culprit was the card because when I swapped it with my trusty 7-year old Geforce 2 MX200, my computer was running again. My mobo doesn&amp;#39;t have an integrated graphics card. So, I sent the card back to them.&lt;br /&gt;&lt;br /&gt;[I&amp;#39;ll just overlook the fact that they made me wait nearly an hour while they tested the card, claimed nothing was wrong and refused to accept it, to the extent that the salesguy was nearly arguing with me]&lt;br /&gt;&lt;br /&gt;Between then and now, I visited their shop a few times and they gave me the same excuse, that they sent to the factory but haven&amp;#39;t got it back, so they can&amp;#39;t do anything about it.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;15/03/08 -&lt;/b&gt; I got fed up of waiting and went to the shop with my dad. It was a Saturday night and they were almost closing. They gave the same excuse again but my dad didn&amp;#39;t accept it. They then said they will give me a call on Monday (today). My dad also told them that if they didn&amp;#39;t call, we (my dad and I) would report the shop to this forum.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;17/03/08 -&lt;/b&gt; Today. I waited until 8.15pm and no call. My dad called them and again same excuse. After my dad gave them a piece of his mind, the guy just ignored my dad and didn&amp;#39;t say anything. After awhile he put down and when he tried to call back, the line was engaged. Tried again a few minutes later and another guy picked up. My dad demanded to talk to the previous guy.&lt;br /&gt;&lt;br /&gt;Long story short, he said he will call again tomorrow.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m still bringing this up because he didn&amp;#39;t call me today when he promised he would.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m just reporting this so that other people won&amp;#39;t experience the same crap I did from this shop.&lt;br /&gt;&lt;br /&gt;The reason why I am so agitated is because I can&amp;#39;t do anything with the Geforce MX200 except surf the internet and listen to mp3s. I had to disable all visual enhancements and run Windows classic. Even then, the card will crash occasionally and any time I stress it. My computer is suffering from a massive performance hit and everything runs extremely slowly now.</description>
            <author>nerd</author>
            <category>Price &amp;amp; Dealers Guide</category>
            <pubDate>Sun, 16 Mar 2008 16:28:32 +0800</pubDate>
        </item>
        <item>
            <title>New Honda Inspire</title>
            <link>http://forum.lowyat.net/topic/598532</link>
            <description>&lt;a href='http://paultan.org/archives/2007/12/26/honda-inspire-for-the-japanese-market-unveiled/' target='_blank'&gt;http://paultan.org/archives/2007/12/26/hon...arket-unveiled/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;personally, I&amp;#39;m not too keen on the look, especially the rear. the front looks like a Hyundai.  &lt;!--emo&amp;:shakehead:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/shakehead.gif' border='0' style='vertical-align:middle' alt='shakehead.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;what I&amp;#39;m REALLY interested in though, is the Variable Cylinder Management. another boost to fuel economy.  &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;</description>
            <author>nerd</author>
            <category>The Fast &amp;amp; The Furious</category>
            <pubDate>Wed, 26 Dec 2007 22:03:42 +0800</pubDate>
        </item>
        <item>
            <title>Trauma Center</title>
            <link>http://forum.lowyat.net/topic/597931</link>
            <description>didn&amp;#39;t see a thread on this great game, which is surprising.&lt;br /&gt;&lt;br /&gt;it surely is a refreshing change from the usual killing people. anybody tried it?</description>
            <author>nerd</author>
            <category>Nintendo</category>
            <pubDate>Wed, 26 Dec 2007 00:48:39 +0800</pubDate>
        </item>
        <item>
            <title>Naza Forza</title>
            <link>http://forum.lowyat.net/topic/592529</link>
            <description>&lt;a href='http://paultan.org/archives/2007/12/17/naza-forza-short-test-drive/' target='_blank'&gt;http://paultan.org/archives/2007/12/17/naz...ort-test-drive/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Basically a facelifted Sutera.&lt;br /&gt;&lt;br /&gt;First thing you guys are going to say... SAME DAMN TOY CAR &lt;!--emo&amp;:lol:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/laugh.gif' border='0' style='vertical-align:middle' alt='laugh.gif' /&gt;&lt;!--endemo--&gt;&lt;br /&gt;&lt;br /&gt;oh and I think Nasimuddin is addicted to Xbox 360&amp;#39;s Forza Motorsport.. hence the name. &lt;br /&gt;&lt;br /&gt;Bashers?</description>
            <author>nerd</author>
            <category>The Fast &amp;amp; The Furious</category>
            <pubDate>Mon, 17 Dec 2007 02:30:14 +0800</pubDate>
        </item>
        <item>
            <title>Proton-VW talks are OFF&amp;#33;</title>
            <link>http://forum.lowyat.net/topic/557782</link>
            <description>I&amp;#39;m sure you guys have read it from Paultan.&lt;br /&gt;&lt;br /&gt;What do you guys think about it?&lt;br /&gt;&lt;br /&gt;I think the G&amp;#39;s decision to back off from the talks is a bad one. Just because sales have picked up, they don&amp;#39;t want to partner anyone??&lt;br /&gt;&lt;br /&gt;It&amp;#39;s for the technology and finances, not sales for God&amp;#39;s sake&amp;#33; Imagine how much ground Proton would gain if VW can transfer some technology over to their cars&amp;#33;&lt;br /&gt;&lt;br /&gt;I think they&amp;#39;re being overconfident, especially when VW have been really interested in partnering Proton for the Tanjung Malim plant.</description>
            <author>nerd</author>
            <category>The Fast &amp;amp; The Furious</category>
            <pubDate>Tue, 20 Nov 2007 19:53:05 +0800</pubDate>
        </item>
        <item>
            <title>Gen-2 Hatchback Facelift&amp;#33;</title>
            <link>http://forum.lowyat.net/topic/450175</link>
            <description>Refer to &lt;a href='http://paultan.org/archives/2007/04/30/proton-gen2-facelift-spotted/' target='_blank'&gt;http://paultan.org/archives/2007/04/30/pro...celift-spotted/&lt;/a&gt; for details.&lt;br /&gt;&lt;br /&gt;Credits to Paul Tan. &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;Damn, the prospect is mouthwatering  &lt;!--emo&amp;:drool:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/drool.gif' border='0' style='vertical-align:middle' alt='drool.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;Don&amp;#39;t really like the big grille though.</description>
            <author>nerd</author>
            <category>The Fast &amp;amp; The Furious</category>
            <pubDate>Mon, 30 Apr 2007 22:48:03 +0800</pubDate>
        </item>
        <item>
            <title>burning dvd video</title>
            <link>http://forum.lowyat.net/topic/421351</link>
            <description>hello, I did a tag search and the existing threads are either out of date or are not relevant.&lt;br /&gt;&lt;br /&gt;how do I burn DVD videos? the video is Divx encoded.&lt;br /&gt;&lt;br /&gt;I tried using Nero Vision Express 2, but it hangs at the transcoding bit.&lt;br /&gt;&lt;br /&gt;What other software is available?&lt;br /&gt;&lt;br /&gt;Thanks.</description>
            <author>nerd</author>
            <category>Multimedia</category>
            <pubDate>Sun, 04 Mar 2007 11:34:58 +0800</pubDate>
        </item>
        <item>
            <title>need help tabbing&amp;#33;</title>
            <link>http://forum.lowyat.net/topic/305193</link>
            <description>posted this in the phreaks thread but i think it will drown in all the &lt;s&gt;spam&lt;/s&gt; contributions so might as well i open a new thread. &lt;!--emo&amp;:P--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/tongue.gif' border='0' style='vertical-align:middle' alt='tongue.gif' /&gt;&lt;!--endemo--&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--QuoteBegin-nerd+Jun 23 2006, 09:58 PM--&gt;&lt;div class='quotetop'&gt;QUOTE(nerd &amp;#064; Jun 23 2006, 09:58 PM)&lt;/div&gt;&lt;div class='quotemain'&gt;&lt;!--QuoteEBegin--&gt;eh guys, i need help tabbing this x_x &lt;br /&gt;&lt;br /&gt;without any knowledge of scales whatsoever lol x_x &lt;br /&gt;&lt;br /&gt;only found the first 3 notes haha&amp;#33; &lt;!--emo&amp;:P--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/tongue.gif' border='0' style='vertical-align:middle' alt='tongue.gif' /&gt;&lt;!--endemo--&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.yousendit.com/transfer.php?action=download&amp;ufid=B644A2E77E4367F8' target='_blank'&gt;http://www.yousendit.com/transfer.php?acti...644A2E77E4367F8&lt;/a&gt;&lt;br /&gt;[right][snapback]7557166[/snapback][/right]&lt;br /&gt;&lt;!--QuoteEnd--&gt;&lt;/div&gt;&lt;!--QuoteEEnd--&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--QuoteBegin-plankton+Jun 23 2006, 10:19 PM--&gt;&lt;div class='quotetop'&gt;QUOTE(plankton &amp;#064; Jun 23 2006, 10:19 PM)&lt;/div&gt;&lt;div class='quotemain'&gt;&lt;!--QuoteEBegin--&gt;erm, the open tapping part is on the 2nd n 4th fret on the high e string.. will listen to the rest later .. hope this helps a bit &lt;!--emo&amp;;)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/wink.gif' border='0' style='vertical-align:middle' alt='wink.gif' /&gt;&lt;!--endemo--&gt;&lt;br /&gt;[right][snapback]7557356[/snapback][/right]&lt;br /&gt;&lt;!--QuoteEnd--&gt;&lt;/div&gt;&lt;!--QuoteEEnd--&gt;&lt;br /&gt;&lt;br /&gt;my findings so far..&lt;br /&gt;&lt;br /&gt;i found the first few seconds plus the tapping part thanks to plankton. &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;can i ask help from everyone around here pls? &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;!--QuoteBegin-nerd+Jun 23 2006, 10:32 PM--&gt;&lt;div class='quotetop'&gt;QUOTE(nerd &amp;#064; Jun 23 2006, 10:32 PM)&lt;/div&gt;&lt;div class='quotemain'&gt;&lt;!--QuoteEBegin--&gt;i think i&amp;#39;ll open a new thread, easier.. thanks plankton&amp;#33; based on my findings with the help of my cousin, it&amp;#39;s based on the same notes, just that an octave higher. &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;[right][snapback]7557491[/snapback][/right]&lt;br /&gt;&lt;!--QuoteEnd--&gt;&lt;/div&gt;&lt;!--QuoteEEnd--&gt;&lt;br /&gt;</description>
            <author>nerd</author>
            <category>Musicians</category>
            <pubDate>Fri, 23 Jun 2006 22:35:42 +0800</pubDate>
        </item>
        <item>
            <title>Further Maths vs Computing</title>
            <link>http://forum.lowyat.net/topic/298394</link>
            <description>as per topic title.&lt;br /&gt;&lt;br /&gt;Anyone taking Further Maths or Computing for their A Levels? Can I have a small lowdown on both? Any bit of information will be welcome. &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;Thanks.</description>
            <author>nerd</author>
            <category>Education Essentials</category>
            <pubDate>Wed, 07 Jun 2006 19:36:42 +0800</pubDate>
        </item>
        <item>
            <title>japanese english class</title>
            <link>http://forum.lowyat.net/topic/291927</link>
            <description>&lt;a href='http://www.youtube.com/watch?v=plSfKHZZwZ4' target='_blank'&gt;http://www.youtube.com/watch?v=plSfKHZZwZ4&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--emo&amp;:lol:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/laugh.gif' border='0' style='vertical-align:middle' alt='laugh.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>nerd</author>
            <category>Jokes Heaven</category>
            <pubDate>Tue, 23 May 2006 02:05:53 +0800</pubDate>
        </item>
        <item>
            <title>Vox AD series Official Thread</title>
            <link>http://forum.lowyat.net/topic/286876</link>
            <description>Ok I think we have enough Vox AD series owners here to open our own thread. &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;List of owners:&lt;br /&gt;- nerd - AD30VT&lt;br /&gt;- led_zep_freak - AD50VT&lt;br /&gt;- nick_drake - AD30VT&lt;br /&gt;- sean392 - AD30VT&lt;br /&gt;- jo5h - AD30VT&lt;br /&gt;- PSY84 - AD15VT&lt;br /&gt;- chanti-sama - AD30VT&lt;br /&gt;- dilin - AD30VT&lt;br /&gt;- Reload - AD50VT&lt;br /&gt;- Banzai - AD30VT&lt;br /&gt;-Gen-X &amp;#39;s son -ad50vt&lt;br /&gt;-darrencw -ad30vt&lt;br /&gt;-yuejon -ad50vt&lt;br /&gt;-Ryo -ad15vt&lt;br /&gt;-judas -ad30vt&lt;br /&gt;-winkybear -ad50vt&lt;br /&gt;-eye -ad30vt&lt;br /&gt;-antonio -ad100vt &lt;br /&gt;-YS- -ad50vt &lt;br /&gt;&lt;br /&gt;anyone who has a Vox AD series report in with your amp model, and I&amp;#39;ll update &amp;#39;em here. &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;Post reserved for owner&amp;#39;s list. &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>nerd</author>
            <category>Musicians</category>
            <pubDate>Wed, 10 May 2006 23:21:43 +0800</pubDate>
        </item>
    </channel>
</rss>
