<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by amunriel</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Sun, 07 Jun 2026 18:11:17 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Laravel vs Django</title>
            <link>http://forum.lowyat.net/topic/2989084</link>
            <description>Hi guys, for any sifus out there which have used both of these frameworks, mind sharing some insight as to their pros and cons? Also, in terms of their ORM, which is currently better? Can any of them contend with SQLalchemy from python?</description>
            <author>amunriel</author>
            <category>Codemasters</category>
            <pubDate>Wed, 09 Oct 2013 20:54:44 +0800</pubDate>
        </item>
        <item>
            <title>GF/BF too Clingy or Too Dependent?</title>
            <link>http://forum.lowyat.net/topic/1756387</link>
            <description>Ever had a girlfriend/boyfriend that is too clingy or too dependent?&lt;br /&gt;&lt;br /&gt;When I say clingy meaning she would want to spend 24/7 with you, and if you dont, he/she becomes unhappy and question alot on who you go out with etc. She will expect you to company him/her even just to get the newspaper across the street.&lt;br /&gt;&lt;br /&gt;Dependent side meaning he/she does not know how to do alot of normal chores or solving simple problems, and will need you to teach or do them for him/her. For example, setting up a microwave or tidy up the wardrobe or even opening the suitcase kind of simple chore.&lt;br /&gt;&lt;br /&gt;Also they tend to be quite emotional and can be pissed for little things and expect you to comfort them.In chinese we say siu hei/ xiao qi.&lt;br /&gt;&lt;br /&gt;These guys/girls usually has a common symptom called &amp;quot;Princess Sickness&amp;quot;.&lt;br /&gt;&lt;br /&gt;They can be really nice and willing to sacrifice alot for you, but they can be too much and frustrating at times.&lt;br /&gt;&lt;br /&gt;How do you deal with this type of partner?</description>
            <author>amunriel</author>
            <category>Cupid&amp;#39;s Corner</category>
            <pubDate>Wed, 16 Feb 2011 17:32:19 +0800</pubDate>
        </item>
        <item>
            <title>Regarding upcoming concerts?</title>
            <link>http://forum.lowyat.net/topic/1750246</link>
            <description>Hi guys,&lt;br /&gt;&lt;br /&gt;Need abit of help here,&lt;br /&gt;&lt;br /&gt;I was wondering if there is any site stating upcoming concerts for both Chinese and Western singers.&lt;br /&gt;&lt;br /&gt;I would like to get some tickets as gifts for my colleagues, but I have no idea who are coming in the coming year.&lt;br /&gt;&lt;br /&gt;Any help will be much appreciated.&lt;br /&gt;&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; THANK YOU &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>amunriel</author>
            <category>Movies &amp;amp; Music</category>
            <pubDate>Fri, 11 Feb 2011 18:15:13 +0800</pubDate>
        </item>
        <item>
            <title>Android settings for Maxis Mobile Internet</title>
            <link>http://forum.lowyat.net/topic/1749421</link>
            <description>I have tried all possible settings on the internet, even the one stated in Desire HD thread, is anyone using the mobile internet for Hotlink, kindly share your working APN configuration.&lt;br /&gt;&lt;br /&gt;FYI, I activated Prepaid Broadband before, and swapped profile before, now I have initiated to swap back to Hotlink instead of Broadband Profile. But my phone still tells me incorrect APN configuration even when I have tried all possible configurations.&lt;br /&gt;&lt;br /&gt;Currently network mode, I have set to GSM only, I doubt this is the affecting factor.</description>
            <author>amunriel</author>
            <category>Android</category>
            <pubDate>Fri, 11 Feb 2011 02:01:31 +0800</pubDate>
        </item>
        <item>
            <title>Quicksort</title>
            <link>http://forum.lowyat.net/topic/1291909</link>
            <description>How come this quicksort doesnt work? The test input was {3,1,2,11,9,6,4,5,14}&lt;br /&gt;but the quicksort outputs 1,1,2,3,9,6,4,4,4 which is completely screwed up&lt;br /&gt;&lt;br /&gt;I am setting the pivot using the 1st element instead of random.&lt;br /&gt;&lt;br /&gt;Please any guru out there can help me with this, its sorta urgent.&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;void&lt;br /&gt;quicksort(int test[],int n)&lt;br /&gt;{&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; int p,i,j,leftsize,rightsize;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; int left[n],right[n];&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; leftsize = 0;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; rightsize = 0;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(n&amp;gt;1){&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  p = test[0];&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  for(i=1;i&amp;lt;n;i++){&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  if(test[i]&amp;lt;=p){&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; left[leftsize]=test[i];&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; leftsize++;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  }else{&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  &lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; right[rightsize]=test[i];&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; rightsize++;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  }&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  }&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  &lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  quicksort(left,leftsize);&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  quicksort(right,rightsize);&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  &lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  for(j=0;j&amp;lt;leftsize;j++){&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  test[j]= left[j];&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;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  }&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  test[leftsize+1] = p;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  for(j=0;j&amp;lt;rightsize;j++){&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  test[j+1+rightsize]= right[j];&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;  }&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;}&lt;br /&gt;&lt;!--QuoteEnd--&gt;&lt;/div&gt;&lt;!--QuoteEEnd--&gt;</description>
            <author>amunriel</author>
            <category>Codemasters</category>
            <pubDate>Tue, 12 Jan 2010 18:48:38 +0800</pubDate>
        </item>
        <item>
            <title>Mergesort</title>
            <link>http://forum.lowyat.net/topic/1291817</link>
            <description>Segmentation fault for merge function, I tried debugging this code and found that the merge function is producing segmentation fault, can anyone tell me whats the reason? I cant seem to fix it.&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;#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;&lt;br /&gt;void mergesort(int test[], int n ,int temp[]);&lt;br /&gt;&lt;br /&gt;void merge(int one[], int two[], int n, int m, int merged[]);&lt;br /&gt;&lt;br /&gt;int &lt;br /&gt;main(int argc, char *argv[])&lt;br /&gt;{&lt;br /&gt;	int n,i,j,p,max,min,maxgap;&lt;br /&gt;	int test[9] = {3,1,2,11,9,6,4,5,14};&lt;br /&gt;	int temp[9];&lt;br /&gt;	max = test[0];&lt;br /&gt;	min = test[0];&lt;br /&gt;	n=9;&lt;br /&gt;	// Calculating the biggest gap&lt;br /&gt;	for(i=1;i&amp;lt;n;i++){&lt;br /&gt;&amp;nbsp; if(test[i]&amp;lt;min){&lt;br /&gt;&amp;nbsp; 	min = test[i]; &lt;br /&gt;&amp;nbsp; }else if(test[i]&amp;gt;max){&lt;br /&gt;&amp;nbsp; 	max = test[i];&lt;br /&gt;&amp;nbsp; } &lt;br /&gt;	}&lt;br /&gt;&lt;br /&gt;	maxgap = max-min;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Mergesort&lt;br /&gt;	mergesort(test,n,temp);&lt;br /&gt;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; for(j=0;j&amp;lt;n;j++){&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; printf(&amp;quot;%d &amp;quot;,test[j]);&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;br /&gt;&lt;br /&gt;	printf(&amp;quot;&amp;#092;nThe maximum gap in this array is %d&amp;#092;n&amp;quot;,maxgap);&lt;br /&gt;	return;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void&lt;br /&gt;mergesort(int test[],int n,int temp[])&lt;br /&gt;{&lt;br /&gt;&amp;nbsp; &amp;nbsp; int i;&lt;br /&gt;	if(n&amp;gt;1){&lt;br /&gt;&amp;nbsp; &amp;nbsp; mergesort(test,n/2,temp);&lt;br /&gt;&amp;nbsp; &amp;nbsp; mergesort(test+n/2,n-n/2,temp);&lt;br /&gt;&amp;nbsp; &amp;nbsp; merge(test,test+n/2,n/2,n-(n/2),temp);&lt;br /&gt;&amp;nbsp; &amp;nbsp; for(i=0;i&amp;lt;n;i++){&lt;br /&gt;&amp;nbsp; test[i] = temp[i];&lt;br /&gt;&amp;nbsp; &amp;nbsp; }&lt;br /&gt;	}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;void&lt;br /&gt;merge(int one[], int two[],int n ,int m, int merged[])&lt;br /&gt;{&lt;br /&gt;	int i,j;&lt;br /&gt;	&lt;br /&gt;	// Base cases&lt;br /&gt;	if( n == 0 ){&lt;br /&gt;&amp;nbsp; for(i = 0; i &amp;lt; m; i++){&lt;br /&gt;&amp;nbsp; 	merged[i]=two[i];&lt;br /&gt;&amp;nbsp; }	&lt;br /&gt;	}&lt;br /&gt;	&lt;br /&gt;	if( m == 0 ){&lt;br /&gt;&amp;nbsp; for(j = 0; j &amp;lt; n; j++){&lt;br /&gt;&amp;nbsp; 	merged[j]= one[j];&lt;br /&gt;&amp;nbsp; }&lt;br /&gt;	}&lt;br /&gt;	&lt;br /&gt;	if ( one[0] &amp;lt;= two[0] ){&lt;br /&gt;&amp;nbsp; merged[0] = one[0];&lt;br /&gt;&amp;nbsp; merge(one+1,two,n-1,m,merged+1);&lt;br /&gt;	}else{&lt;br /&gt;&amp;nbsp; merged[0] = two[0];&lt;br /&gt;&amp;nbsp; merge(one,two+1,n,m-1,merged+1);&lt;br /&gt;	}	&lt;br /&gt;}&lt;!--QuoteEnd--&gt;&lt;/div&gt;&lt;!--QuoteEEnd--&gt;</description>
            <author>amunriel</author>
            <category>Codemasters</category>
            <pubDate>Tue, 12 Jan 2010 17:30:40 +0800</pubDate>
        </item>
        <item>
            <title>HostMonster, JustHost, Lunarpages, Surpasshost</title>
            <link>http://forum.lowyat.net/topic/1273433</link>
            <description>Or is there any better Asia located choices that I could choose from?&lt;br /&gt;&lt;br /&gt;I would wish for similar prices with free domain for life and unlimited* shared webhosting will be suffice.</description>
            <author>amunriel</author>
            <category>Content Creators, Blogmasters &amp;amp; Webmasters</category>
            <pubDate>Sun, 27 Dec 2009 20:02:04 +0800</pubDate>
        </item>
        <item>
            <title>Best Asia based webhosting</title>
            <link>http://forum.lowyat.net/topic/1272004</link>
            <description>I need a recommendation on a  webhosting space thats based at Asia with atleast 99.8% uptime and good speed.&lt;br /&gt;&lt;br /&gt;Dont mind shared or dedicated as long as its a good price with good service.&lt;br /&gt;&lt;br /&gt;Thanks</description>
            <author>amunriel</author>
            <category>Codemasters</category>
            <pubDate>Fri, 25 Dec 2009 23:29:36 +0800</pubDate>
        </item>
        <item>
            <title>Where can I find these at KL?</title>
            <link>http://forum.lowyat.net/topic/0</link>
            <description></description>
            <category>Cupid&amp;#39;s Corner</category>
            <pubDate>Thu, 01 Jan 1970 07:30:00 +0800</pubDate>
        </item>
        <item>
            <title>Jack Skelington&amp;#39;s Collectables and Snow Globe</title>
            <link>http://forum.lowyat.net/topic/1249027</link>
            <description>Hi guys, noob shopper here, I am just wondering where can I get pretty and nice snowglobe ( good quality ones ) or Jack Skelington merchandise/collectables ( good quality ones as well ) around KL? Preferbly Bintang area or One U?&lt;br /&gt;&lt;br /&gt;They are intended to be Christmas gifts and birthday gifts.&lt;br /&gt;&lt;br /&gt;Besides, where can I get original D&amp;amp;G wallet at a cheap price in KL? I cant seem to find their store around One U.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Your help is highly appreciated.&lt;br /&gt;&lt;br /&gt;Thanks lots.</description>
            <author>amunriel</author>
            <category>Serious Kopitiam</category>
            <pubDate>Fri, 04 Dec 2009 20:45:58 +0800</pubDate>
        </item>
        <item>
            <title>Where can I find these at KL?</title>
            <link>http://forum.lowyat.net/topic/1248893</link>
            <description>Hi guys, noob shopper here, I am just wondering where can I get pretty and nice snowglobe ( good quality ones ) or Jack Skelington merchandise/collectables ( good quality ones as well ) around K? Preferbly Bintang area or One U?&lt;br /&gt;&lt;br /&gt;They are intended to be Christmas gifts and birthday gifts.&lt;br /&gt;&lt;br /&gt;Besides, where can I get original D&amp;amp;G wallet at a cheap price in KL? I cant seem to find their store around One U.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Your help is highly appreciated.&lt;br /&gt;&lt;br /&gt;Thanks lots.</description>
            <author>amunriel</author>
            <category>Serious Kopitiam</category>
            <pubDate>Fri, 04 Dec 2009 17:56:33 +0800</pubDate>
        </item>
        <item>
            <title>MSI U100 vs Lenovo S10 vs Mini 1000 ..?</title>
            <link>http://forum.lowyat.net/topic/931959</link>
            <description>Hi guys, I need to buy a netbook like urgently, I am leaving to Australia this Thursday, but I cant decide on which model should I get.&lt;br /&gt;&lt;br /&gt;I went to lowyat a few times already, been surveying around.&lt;br /&gt;&lt;br /&gt;I want a netbook for coding sites with dreamweaver, taking notes down using Word, good battery life for its weight ( energy efficient ) , less than Rm 2k.</description>
            <author>amunriel</author>
            <category>Mobile Computing</category>
            <pubDate>Tue, 10 Feb 2009 21:21:30 +0800</pubDate>
        </item>
        <item>
            <title>Best netbook in the market</title>
            <link>http://forum.lowyat.net/topic/918234</link>
            <description>I cant find a proper article on the best netbook up-to-date currently, may anyone share their opinion?&lt;br /&gt;&lt;br /&gt;Happy Chinese New Year &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;On my list I know Asus EEEPC , Dell Mini , MSI Wind , Acer Aspire, Hp mini note are currently the better ones in the market, but I am not sure which is the best.&lt;br /&gt;</description>
            <author>amunriel</author>
            <category>Mobile Computing</category>
            <pubDate>Tue, 27 Jan 2009 21:48:30 +0800</pubDate>
        </item>
        <item>
            <title>Need user review on Dell XPS studio 13 and 16</title>
            <link>http://forum.lowyat.net/topic/914079</link>
            <description>Are they worth the price? Would their price go lower in like 2~4 months?</description>
            <author>amunriel</author>
            <category>Notebook Specific Discussion</category>
            <pubDate>Thu, 22 Jan 2009 01:25:15 +0800</pubDate>
        </item>
        <item>
            <title>Buying flowers/gifts online with doorstep delivery</title>
            <link>http://forum.lowyat.net/topic/870531</link>
            <description>Guys, I wouldnt be around in Malaysia during Valentine 2009  &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; so I am thinking of ordering some flowers/gift online so that it would be delivered to my gf place on the day itself.&lt;br /&gt;&lt;br /&gt;Any nice flower/gift site for recommendation?</description>
            <author>amunriel</author>
            <category>Cupid&amp;#39;s Corner</category>
            <pubDate>Tue, 09 Dec 2008 23:56:25 +0800</pubDate>
        </item>
        <item>
            <title>Need help with Hotlink prepaid SMS</title>
            <link>http://forum.lowyat.net/topic/582440</link>
            <description>I am using Hotlink prepaid ( phone :N73 )  and I have more than RM100 balance but I cant send any sms successfully&lt;br /&gt;I kept receiving a message sending error showing:&lt;br /&gt;&lt;br /&gt;Text message:&lt;br /&gt;Invalid phone or message centre number. Check the number.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Can anyone please help   &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;!--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;  thx &lt;br /&gt;</description>
            <author>amunriel</author>
            <category>Mobile Phones and Tablets</category>
            <pubDate>Sat, 01 Dec 2007 00:21:55 +0800</pubDate>
        </item>
        <item>
            <title>Need suggestion on 17&amp;quot; widescreen Notebook Cooler</title>
            <link>http://forum.lowyat.net/topic/411339</link>
            <description>need some suggestion on notebook cooler for my 9400&lt;br /&gt;any good brand or model?</description>
            <author>amunriel</author>
            <category>Mobile Computing</category>
            <pubDate>Fri, 09 Feb 2007 11:05:23 +0800</pubDate>
        </item>
        <item>
            <title>Need help about Australia Student Visa</title>
            <link>http://forum.lowyat.net/topic/406387</link>
            <description>Well , due to my underage issue for just 4 months to my 18 bday , I am required to submit 1 copy of my Birth Certificate in English Translation and I have to do it myself and certify it. Therefore I hereby seek for help in getting a format of the Birth Certificate in English Version&lt;br /&gt;or can anyone help me translate these words... I am not very sure in how to translate them&lt;br /&gt;&lt;br /&gt;[Salinan Untuk Pemaklum]&lt;br /&gt;Akta Pendaftaran Kelahiran and Kematian&lt;br /&gt;[ Seksyen 14; Aturan  7 ]&lt;br /&gt;Kawasan Kecil &lt;br /&gt;&lt;br /&gt;your help is highly appreciated thanks</description>
            <author>amunriel</author>
            <category>Education Essentials</category>
            <pubDate>Tue, 30 Jan 2007 16:46:45 +0800</pubDate>
        </item>
        <item>
            <title>Javascript/Html DOM</title>
            <link>http://forum.lowyat.net/topic/403292</link>
            <description>Without using pop-ups method , isit possible for me to open a new page with selected page size?</description>
            <author>amunriel</author>
            <category>Codemasters</category>
            <pubDate>Wed, 24 Jan 2007 16:25:53 +0800</pubDate>
        </item>
        <item>
            <title>Cartoons/Manga Drawing</title>
            <link>http://forum.lowyat.net/topic/403258</link>
            <description>Guys , anyone here hav any nice tuts site/books to recommend?&lt;br /&gt;In fact , I need a tutorial for cartoon type MAP drawing? anyone have any to recoomend?</description>
            <author>amunriel</author>
            <category>Arts &amp;amp; Designs</category>
            <pubDate>Wed, 24 Jan 2007 15:23:17 +0800</pubDate>
        </item>
    </channel>
</rss>
