<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by iAdor3 Naz</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Sat, 06 Jun 2026 17:43:20 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>so.. another video of me</title>
            <link>http://forum.lowyat.net/topic/3296305</link>
            <description>[YOUTUBE]http://www.youtube.com/watch?v=s94yFzeRdfI[/YOUTUBE]&lt;br /&gt;&lt;br /&gt; &lt;!--emo&amp;:peace:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_rolleyes.gif' border='0' style='vertical-align:middle' alt='icon_rolleyes.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:peace:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_rolleyes.gif' border='0' style='vertical-align:middle' alt='icon_rolleyes.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>iAdor3 Naz</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Mon, 21 Jul 2014 14:13:26 +0800</pubDate>
        </item>
        <item>
            <title>[C Guide Needed] Post #6 Monty Halls Problem</title>
            <link>http://forum.lowyat.net/topic/3210538</link>
            <description>Hello guys. I&amp;#39;m studying #C at the moment and I need help on the bold part below.&lt;br /&gt;&lt;br /&gt;What is the function of assigning n = 1 and i = 1 when afterwards we have to input an integer of n afterwards? and the variable i is not even use in the main function  &lt;!--emo&amp;:stars:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/rclxub.gif' border='0' style='vertical-align:middle' alt='rclxub.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;What does the result = 0 stand for? is it a FLAG ?&lt;br /&gt;&lt;br /&gt;About the result = sum(n) and result = mult(n) right. Does the variable on the left (result) is assign to the function prototype of long sum and mult above?&lt;br /&gt;&lt;br /&gt;And lastly, the long result = 0 and long result = 1 in the function prototype . Is it a flag too? &lt;br /&gt;&lt;br /&gt;THANKS a lot codemasters  &lt;!--emo&amp;:respect:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/notworthy.gif' border='0' style='vertical-align:middle' alt='notworthy.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:respect:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/notworthy.gif' border='0' style='vertical-align:middle' alt='notworthy.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:respect:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/notworthy.gif' border='0' style='vertical-align:middle' alt='notworthy.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&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;#include &amp;#60;stdio.h&amp;#62;&lt;br /&gt;&lt;br /&gt;long sum&amp;#40; int n &amp;#41;;&lt;br /&gt;long mult&amp;#40;int n&amp;#41;;&lt;br /&gt;&lt;br /&gt;int main &amp;#40;void&amp;#41;{&lt;br /&gt;&lt;br /&gt;&amp;#91;B&amp;#93;	int n = 1 , i = 1;&lt;br /&gt;	long result = 0;&amp;#91;/B&amp;#93;&lt;br /&gt;&lt;br /&gt;	printf&amp;#40;&amp;#34;Enter an integer&amp;#62;&amp;#34;&amp;#41;;&lt;br /&gt;	scanf&amp;#40;&amp;#34;%d&amp;#34;, &amp;amp;n&amp;#41;;&lt;br /&gt;&lt;br /&gt;	if &amp;#40; n % 2 == 0&amp;#41;&lt;br /&gt;	{&lt;br /&gt;  &amp;#91;B&amp;#93;result = sum&amp;#40;n&amp;#41;;&amp;#91;/B&amp;#93;&lt;br /&gt;	}else{&lt;br /&gt;  &amp;#91;B&amp;#93;result = mult&amp;#40;n&amp;#41;;&amp;#91;/B&amp;#93;&lt;br /&gt;	}&lt;br /&gt;&lt;br /&gt;	printf&amp;#40;&amp;#34;from %2d until %3d %s is %3d. &amp;#092;n&amp;#34;, 1 , n, &amp;#40;n%2&amp;#41; ? &amp;#34;multiplication&amp;#34; &amp;#58; &amp;#34;sum&amp;#34;, result&amp;#41;;&lt;br /&gt;	&lt;br /&gt;	return 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;long sum&amp;#40;int n&amp;#41;{&lt;br /&gt;	&amp;#91;B&amp;#93;long result = 0;&amp;#91;/B&amp;#93;&lt;br /&gt;	int i = 1;&lt;br /&gt;&lt;br /&gt;	for &amp;#40; i = 1; i &amp;#60;= n; i++&amp;#41; {&lt;br /&gt;  &lt;br /&gt;  result += i;&lt;br /&gt;&lt;br /&gt;	}&lt;br /&gt;	return result;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;long mult&amp;#40; int n&amp;#41;{&lt;br /&gt;	&amp;#91;B&amp;#93;long result = 1;&amp;#91;/B&amp;#93;&lt;br /&gt;	int i = 1;&lt;br /&gt;&lt;br /&gt;  for &amp;#40; i = 2; i &amp;#60;= n; i++&amp;#41;{&lt;br /&gt;  	result *= 1;&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;  return result;&lt;br /&gt;&lt;br /&gt;}&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
            <author>iAdor3 Naz</author>
            <category>Codemasters</category>
            <pubDate>Thu, 01 May 2014 02:23:43 +0800</pubDate>
        </item>
        <item>
            <title>tweet secret malaysia</title>
            <link>http://forum.lowyat.net/topic/3133437</link>
            <description>have u guys seen that account?&lt;br /&gt;&lt;br /&gt;like.. everyone can appear as anonymous and send their secret to twt_secretmy .. then they will tweet it.. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--QuoteBegin--&gt;&lt;div class='quotetop'&gt;QUOTE&lt;/div&gt;&lt;div class='quotemain'&gt;&lt;!--QuoteEBegin--&gt;Secrets Malaysia ‏@twtsecretsmy&amp;nbsp; 4h&lt;br /&gt;i dont want people to accept me as a gay but i want some1 to guide me bck to the right path. I dont wanna live ths life bcse of this madness&lt;!--QuoteEnd--&gt;&lt;/div&gt;&lt;!--QuoteEEnd--&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--QuoteBegin--&gt;&lt;div class='quotetop'&gt;QUOTE&lt;/div&gt;&lt;div class='quotemain'&gt;&lt;!--QuoteEBegin--&gt;Secrets Malaysia ‏@twtsecretsmy&amp;nbsp; 5h&lt;br /&gt;kenapa perlu gelakkan aku sebab guna perkataan baku? thats how i speak, communicate wtv. train yourself to respect others&amp;#33;&lt;!--QuoteEnd--&gt;&lt;/div&gt;&lt;!--QuoteEEnd--&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--QuoteBegin--&gt;&lt;div class='quotetop'&gt;QUOTE&lt;/div&gt;&lt;div class='quotemain'&gt;&lt;!--QuoteEBegin--&gt;Secrets Malaysia ‏@twtsecretsmy&amp;nbsp; 6h&lt;br /&gt;I am a 35 year old virgin and I hate myself for it&lt;!--QuoteEnd--&gt;&lt;/div&gt;&lt;!--QuoteEEnd--&gt;</description>
            <author>iAdor3 Naz</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Sun, 16 Feb 2014 18:41:49 +0800</pubDate>
        </item>
        <item>
            <title>is it okay to share own utube video in here?</title>
            <link>http://forum.lowyat.net/topic/3133412</link>
            <description>&lt;!--emo&amp;:hmm:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/hmm.gif' border='0' style='vertical-align:middle' alt='hmm.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:hmm:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/hmm.gif' border='0' style='vertical-align:middle' alt='hmm.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:hmm:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/hmm.gif' border='0' style='vertical-align:middle' alt='hmm.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;not trolling, i just want to share my video here but i scare later kena bash..  &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>iAdor3 Naz</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Sun, 16 Feb 2014 18:17:01 +0800</pubDate>
        </item>
        <item>
            <title>Windows 8 ( 8.1 ) Touchscreen Not Working</title>
            <link>http://forum.lowyat.net/topic/3101805</link>
            <description>It worked perfectly fine yesterday but today it isn&amp;#39;t anymore  &lt;!--emo&amp;:stars:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/rclxub.gif' border='0' style='vertical-align:middle' alt='rclxub.gif' /&gt;&lt;!--endemo--&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;  ..&lt;br /&gt;&lt;br /&gt;I googled and found out most of the instructions need this &amp;quot;Tablet Settings&amp;quot; which can be found at Control Panel but my laptop doesn&amp;#39;t have one .&lt;br /&gt;&lt;br /&gt;I&amp;#39;m using Aspire V5-473PG .&lt;br /&gt;&lt;br /&gt;&lt;img src='http://i.imgur.com/3AKXnR7.png' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src='http://i.imgur.com/zAzF3zM.png' border='0' alt='user posted image' /&gt;</description>
            <author>iAdor3 Naz</author>
            <category>Mobile Computing</category>
            <pubDate>Wed, 15 Jan 2014 23:44:52 +0800</pubDate>
        </item>
        <item>
            <title>Laptop suitable for college students (Guide)</title>
            <link>http://forum.lowyat.net/topic/2931629</link>
            <description>I plan to buy a new laptop tomorrow with a budget lower than rm2200. Any suggestion for a good laptop around that?..&lt;br /&gt;&lt;br /&gt;I am a gamer but lately I rarely really play games + I have lots of assignment in the future and hoping for stg good in battery life and also light in weight. hmm</description>
            <author>iAdor3 Naz</author>
            <category>Mobile Computing</category>
            <pubDate>Wed, 21 Aug 2013 22:28:19 +0800</pubDate>
        </item>
        <item>
            <title>NEWBIE : Buying new phone ?</title>
            <link>http://forum.lowyat.net/topic/2260803</link>
            <description>I&amp;#39;ve been using the noob phone since forever and now im going to buy a smartphone.&lt;br /&gt;but i don&amp;#39;t know which phone is much better etc.. either samsung s2 lte, samsung galaxy note or iphone 4s.&lt;br /&gt;any suggestion? and why?&lt;br /&gt;&lt;br /&gt;thanks so much ..</description>
            <author>iAdor3 Naz</author>
            <category>Mobile Phones and Tablets</category>
            <pubDate>Sun, 11 Mar 2012 01:05:44 +0800</pubDate>
        </item>
        <item>
            <title>What do you think of Korean Examination Grade</title>
            <link>http://forum.lowyat.net/topic/2229291</link>
            <description>95 A+ ( 4.50 )&lt;br /&gt;90 A ( 4.00 )&lt;br /&gt;85 B+ ( 3.50 )&lt;br /&gt;80 B ( 3.00 )&lt;br /&gt;75 C+ ( 2.50 )&lt;br /&gt;70 C ( 2.00 )&lt;br /&gt;65 D+ ( 1.50 )&lt;br /&gt;60 D ( 1.00 )&lt;br /&gt;Below F - Fail. &lt;br /&gt;&lt;br /&gt;Compare it with SPM . LOL&amp;#33;.. &lt;br /&gt;&lt;br /&gt;p/s - Please take this seriously, because I want to know your opinion in these. Just for fun ^^</description>
            <author>iAdor3 Naz</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Thu, 16 Feb 2012 14:48:43 +0800</pubDate>
        </item>
        <item>
            <title>This gal said she is sleepy and see what she got..</title>
            <link>http://forum.lowyat.net/topic/2148504</link>
            <description>&lt;img src='http://i249.photobucket.com/albums/gg238/Nuubame/Untitled-2.png' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;br /&gt;I think she needs a LIFE  &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;</description>
            <author>iAdor3 Naz</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Wed, 14 Dec 2011 12:42:04 +0800</pubDate>
        </item>
        <item>
            <title>Q : Magnetic Field ( Magnetism )</title>
            <link>http://forum.lowyat.net/topic/2134687</link>
            <description>Can you please guide me on how to solve this question?&lt;br /&gt;&lt;br /&gt;A horizontal compass is placed 18cm due south from a straight vertical wire carrying a 43A current downward. In what direction does the compass needle point a this location? Assume the horizontal component of the Earth&amp;#39;s field at this point is 0.453x10-^4T and the magnetic declination is 0.&lt;br /&gt;&lt;br /&gt;With explanation would be much better, I couldn&amp;#39;t imagine a 3D diagram on this one.&lt;br /&gt;And.. 1 more..&lt;br /&gt;&lt;br /&gt;- If there&amp;#39;s a magnetic field created by a wire with a current. What is it relationship to Earth magnetic field? Thanks&amp;#33;</description>
            <author>iAdor3 Naz</author>
            <category>Education Essentials</category>
            <pubDate>Sun, 04 Dec 2011 11:08:38 +0800</pubDate>
        </item>
        <item>
            <title>I lost my Surat Tawaran JPA</title>
            <link>http://forum.lowyat.net/topic/2115181</link>
            <description>I used to have one hard-copy and a soft-copy of my jpa scholarship offer letter.&lt;br /&gt;The hard-copy file as far as I remember I&amp;#39;ve handed it to the staff during my registration.&lt;br /&gt;And to add things worst, my soft-copy file has GONE&amp;#33;.. I don&amp;#39;t know if it has been deleted or not, but I could search it anywhere on my laptop . &lt;br /&gt;&lt;br /&gt;JWhat should I do? HELP&amp;#33; .. If there&amp;#39;s a case they asked for my surat tawaran , I will be screw&amp;#33; Thanks</description>
            <author>iAdor3 Naz</author>
            <category>Education Essentials</category>
            <pubDate>Sat, 19 Nov 2011 11:25:35 +0800</pubDate>
        </item>
        <item>
            <title>wai iz d mamak shop at sec. 18 very expensive?</title>
            <link>http://forum.lowyat.net/topic/2100944</link>
            <description>dis afternoon, i went to makan at this mamak shop nama I*********..&lt;br /&gt;i makan only nasi ( abit extra ) + ayam goreng + 2 ketul daging kecil2x + milo ais .. &lt;br /&gt;i no selera makan veggies that time so i no makan.. i tot if only lidat maybe around rm6 only.&lt;br /&gt;it turns out to be RM7.30&amp;#33;.. what da.. I RAGE&amp;#33;&amp;#33;..&lt;br /&gt;&lt;br /&gt;my pren who took nasi + ayam goreng same as me and veggies.. only 5.80?  &lt;!--emo&amp;:furious:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/vmad.gif' border='0' style='vertical-align:middle' alt='vmad.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:furious:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/vmad.gif' border='0' style='vertical-align:middle' alt='vmad.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:furious:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/vmad.gif' border='0' style='vertical-align:middle' alt='vmad.gif' /&gt;&lt;!--endemo--&gt; ..&lt;br /&gt;wai iz da mamak shop very expensive&amp;#33;.. rm7.30 can buy mcd food oredi&amp;#33; more delicious oso.. &lt;br /&gt;&lt;br /&gt;</description>
            <author>iAdor3 Naz</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Tue, 08 Nov 2011 20:07:13 +0800</pubDate>
        </item>
        <item>
            <title>wai iz dis become terend</title>
            <link>http://forum.lowyat.net/topic/2097525</link>
            <description>&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('a710d1b1a9ff61ea0f4e2fbfa16ff1b9')&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;a710d1b1a9ff61ea0f4e2fbfa16ff1b9&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&amp;quot;bekuz i no belog i post here&amp;quot; &lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;br /&gt;wai iz eberione bekam reparted?  &lt;!--emo&amp;:hehe:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/brows.gif' border='0' style='vertical-align:middle' alt='brows.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:hehe:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/brows.gif' border='0' style='vertical-align:middle' alt='brows.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:hehe:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/brows.gif' border='0' style='vertical-align:middle' alt='brows.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>iAdor3 Naz</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Sat, 05 Nov 2011 23:39:50 +0800</pubDate>
        </item>
        <item>
            <title>is it okay to tell a guy..you miss him?</title>
            <link>http://forum.lowyat.net/topic/2087872</link>
            <description>from guy to guy  &lt;!--emo&amp;:hehe:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/brows.gif' border='0' style='vertical-align:middle' alt='brows.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:hehe:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/brows.gif' border='0' style='vertical-align:middle' alt='brows.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:hehe:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/brows.gif' border='0' style='vertical-align:middle' alt='brows.gif' /&gt;&lt;!--endemo--&gt; ..&lt;br /&gt;in the mean of&lt;br /&gt;a) close friend?&lt;br /&gt;b) best friend?&lt;br /&gt;c) gay?&lt;br /&gt;d) long time no see?&lt;br /&gt;e) met after 3 hours ?</description>
            <author>iAdor3 Naz</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Sat, 29 Oct 2011 01:52:55 +0800</pubDate>
        </item>
        <item>
            <title>Electric Field Question - Guide Needed</title>
            <link>http://forum.lowyat.net/topic/2063938</link>
            <description>Two point charges are separated by a distance of 10.0cm as shown. Find the electric field and the acceleration of a particle at point P if it&amp;#39;s an electron. &lt;br /&gt;&lt;img src='http://i249.photobucket.com/albums/gg238/Nuubame/Physics.png' border='0' alt='user posted image' /&gt;&lt;br /&gt;Please guide me on how to solve this question. Thanks a lot.&lt;br /&gt;&lt;br /&gt;[addedon]October 9, 2011, 7:15 pm[/addedon]by the way, on the left side is a negatively charge.&lt;br /&gt;on the right , it&amp;#39;s a positively charge.</description>
            <author>iAdor3 Naz</author>
            <category>Education Essentials</category>
            <pubDate>Sun, 09 Oct 2011 19:12:51 +0800</pubDate>
        </item>
        <item>
            <title>i kno i iz slopok but i cannot stand this &amp;#33;</title>
            <link>http://forum.lowyat.net/topic/2009352</link>
            <description>[YOUTUBE]bAmH-nN8oHM[/YOUTUBE]&lt;br /&gt;&lt;br /&gt; &lt;!--emo&amp;:x--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/doh.gif' border='0' style='vertical-align:middle' alt='doh.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:x--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/doh.gif' border='0' style='vertical-align:middle' alt='doh.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:x--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/doh.gif' border='0' style='vertical-align:middle' alt='doh.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:x--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/doh.gif' border='0' style='vertical-align:middle' alt='doh.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>iAdor3 Naz</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Tue, 23 Aug 2011 22:28:29 +0800</pubDate>
        </item>
        <item>
            <title>how to go to LCCT ( KUL ) from Shah Alam.</title>
            <link>http://forum.lowyat.net/topic/2001851</link>
            <description>im currently living in shah alam.. seksyen 18 to be more precise.. how can i get to LCCT ( KUL ) , the cheapest way? =)..&lt;br /&gt;i know i can take Rapid Bus from seks 18 to KTM at sek 5 ( if im not wrong about the seksyen ).. but then, i donno how can i get to LCCT afterwards. please help me.. only SERIOUS talk.</description>
            <author>iAdor3 Naz</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Thu, 18 Aug 2011 00:36:50 +0800</pubDate>
        </item>
        <item>
            <title>TV TV TV nowadays&amp;#33; Topic~</title>
            <link>http://forum.lowyat.net/topic/1881152</link>
            <description>The topic is&lt;br /&gt;&lt;br /&gt;&amp;quot; Terkentut semasa berada dalam khalayak ramai &amp;quot;&lt;br /&gt;&lt;br /&gt;And , they interviewed some people about it.. and some of them replied&lt;br /&gt;- On the lift, just kentut then do this reaction &amp;quot;OMG, what is this smell?&amp;quot;&lt;br /&gt;- Just kentut then buat donno&lt;br /&gt;- Just kentut and said sorry, terlepas.&lt;br /&gt;&lt;br /&gt;lolololololol.. Chanel 132. ~ &lt;!--emo&amp;:x--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/doh.gif' border='0' style='vertical-align:middle' alt='doh.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:x--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/doh.gif' border='0' style='vertical-align:middle' alt='doh.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:x--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/doh.gif' border='0' style='vertical-align:middle' alt='doh.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>iAdor3 Naz</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Tue, 17 May 2011 13:35:06 +0800</pubDate>
        </item>
        <item>
            <title>Is it hard</title>
            <link>http://forum.lowyat.net/topic/1881144</link>
            <description>I&amp;#39;m going to study in Shah Alam. &lt;br /&gt;I&amp;#39;m kinda freak out that I will be lost in Shah Alam, I mean, I&amp;#39;m not good in mastering the places// how to get to one place and another etc.&lt;br /&gt;So, any guidance? Is it hard to live there?&lt;br /&gt;&lt;br /&gt;p/s - I&amp;#39;m a rural student going to urban area. So,&lt;br /&gt;&lt;br /&gt;ONLY GOOD COMMENT allowed, &lt;br /&gt;&lt;br /&gt;SERIOUS TALK TAG &lt;br /&gt;&lt;br /&gt;=) Thanks&amp;#33;</description>
            <author>iAdor3 Naz</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Tue, 17 May 2011 13:27:57 +0800</pubDate>
        </item>
        <item>
            <title>(JPA) Jabatan Perkhidmatan Awam - GOTCHA&amp;#39; me&amp;#33;</title>
            <link>http://forum.lowyat.net/topic/1876947</link>
            <description>&lt;img src='http://i249.photobucket.com/albums/gg238/Nuubame/Yaw.png' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;br /&gt;I LOLed  &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;  &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;  &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;&lt;br /&gt;&lt;br /&gt;* This is 100% real , I&amp;#39;m not lying =) *</description>
            <author>iAdor3 Naz</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Sat, 14 May 2011 04:45:35 +0800</pubDate>
        </item>
    </channel>
</rss>
