<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by theanser</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Sat, 27 Jun 2026 23:27:27 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Blue Screen Help</title>
            <link>http://forum.lowyat.net/topic/1914331</link>
            <description>Recently my laptop keep on crash with BSOD everytime I turned on my laptop after shutdown and normally during halfway of my usage. &lt;br /&gt;&lt;br /&gt;How can I check whether which drivers or devices are causing the crashing?&lt;br /&gt;&lt;br /&gt;Below is the Bluescreen screenshot:&lt;img src='http://farm4.static.flickr.com/3304/5820842504_b69cc2b7d8_z.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thank you.</description>
            <author>theanser</author>
            <category>Technical Support</category>
            <pubDate>Sat, 11 Jun 2011 18:32:18 +0800</pubDate>
        </item>
        <item>
            <title>Rapidshare reseller?</title>
            <link>http://forum.lowyat.net/topic/1191371</link>
            <description>Any good promotions of online rapidshare reseller ?</description>
            <author>theanser</author>
            <category>Price &amp;amp; Dealers Guide</category>
            <pubDate>Mon, 12 Oct 2009 08:27:03 +0800</pubDate>
        </item>
        <item>
            <title>Itunes Problem cant convert wma</title>
            <link>http://forum.lowyat.net/topic/714284</link>
            <description>Hi,&lt;br /&gt;&lt;br /&gt;My itunes cant convert wma files automatically in windows vista&lt;br /&gt;Any ideA?&lt;br /&gt;&lt;br /&gt;thanks</description>
            <author>theanser</author>
            <category>Software</category>
            <pubDate>Sun, 08 Jun 2008 10:03:09 +0800</pubDate>
        </item>
        <item>
            <title>Vista fail to install sd memory card driver</title>
            <link>http://forum.lowyat.net/topic/585669</link>
            <description>Hi all,&lt;br /&gt;&lt;br /&gt;I cannot install the driver for my sd memory card...i did a search directly into the windows system 32 folder....it installed but with error.... i encountered similar problem with usb but managed to fix it...however i fail to do so for my sd memory card...any idea?</description>
            <author>theanser</author>
            <category>Software</category>
            <pubDate>Thu, 06 Dec 2007 09:14:22 +0800</pubDate>
        </item>
        <item>
            <title>Why there is a looping?</title>
            <link>http://forum.lowyat.net/topic/561751</link>
            <description>#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;   &lt;br /&gt;   #define F( x) (x* x)&lt;br /&gt;   &lt;br /&gt;   int foo(int *x);&lt;br /&gt;   &lt;br /&gt;   int main()&lt;br /&gt;   {&lt;br /&gt;      int a=3, b;&lt;br /&gt;      b= F(foo(&amp;amp;a));&lt;br /&gt;      printf(&amp;quot;%i&amp;#092;n&amp;quot;, a);&lt;br /&gt;      &lt;br /&gt;      return 0;&lt;br /&gt;      &lt;br /&gt;  }&lt;br /&gt;  &lt;br /&gt;  int foo(int *x)&lt;br /&gt;  {&lt;br /&gt;      *x += 1;&lt;br /&gt;    return *x;&lt;br /&gt;  }  &lt;br /&gt;&lt;br /&gt;The value of a is 5&lt;br /&gt;i run the program the a is being loopd twice from 3 to 4 to 5&lt;br /&gt;then b  = 4*5 ....any idea? why there is a looping?</description>
            <author>theanser</author>
            <category>Codemasters</category>
            <pubDate>Mon, 26 Nov 2007 23:44:11 +0800</pubDate>
        </item>
        <item>
            <title>matrix multiplication</title>
            <link>http://forum.lowyat.net/topic/555937</link>
            <description>Hi this is my code for a 3X4 matrix multiplying a 4X1 matrix...however i get output of zero...any idea?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;&lt;br /&gt;int main(void)&lt;br /&gt;{&lt;br /&gt;	int stock[3][4]={{10,13,14,23},{21,24,18,5},{9,14,12,4}};&lt;br /&gt;&lt;br /&gt;	double cost[4] = {35.45,99.99,210.50,145.00};&lt;br /&gt;	double value[3];&lt;br /&gt;	 int i;&lt;br /&gt;&lt;br /&gt;	void matrix_vector (int [][4],double [],double []);&lt;br /&gt;&lt;br /&gt;	matrix_vector (stock,cost,value);&lt;br /&gt;&lt;br /&gt;	for (i=0;i&amp;lt;3;i++)&lt;br /&gt;	{&lt;br /&gt;		int counter=1;&lt;br /&gt;		printf(&amp;quot;The cost for item %d is %.3lf&amp;#092;n&amp;quot;,value[i]);&lt;br /&gt;		counter++;&lt;br /&gt;	}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;	return 0;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void matrix_vector(int stock_p [][4], double cost_p[],double value_p[])&lt;br /&gt;{&lt;br /&gt;	int row,col;&lt;br /&gt;	for (row=0;row&amp;lt;3;row++)&lt;br /&gt;		for (col=0;col&amp;lt;4;col++)&lt;br /&gt;		value_p[row]=	(stock_p[row][col])*(cost_p[col]);&lt;br /&gt;			}&lt;br /&gt;&lt;br /&gt;[addedon]November 17, 2007, 9:53 pm[/addedon]i found my error thx:)</description>
            <author>theanser</author>
            <category>Codemasters</category>
            <pubDate>Sat, 17 Nov 2007 21:37:43 +0800</pubDate>
        </item>
        <item>
            <title>Hexadecimal</title>
            <link>http://forum.lowyat.net/topic/554538</link>
            <description>How do we interprets the following hexadecimal as in how to get their value&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1x12=12&lt;br /&gt;0x12=18&lt;br /&gt;0x2D = 45&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;thanks&lt;br /&gt;</description>
            <author>theanser</author>
            <category>Codemasters</category>
            <pubDate>Thu, 15 Nov 2007 16:23:34 +0800</pubDate>
        </item>
        <item>
            <title>logical and or question</title>
            <link>http://forum.lowyat.net/topic/554313</link>
            <description>int y =5,z=0,t=-4;&lt;br /&gt;&lt;br /&gt;&amp;#33;(4+5*y&amp;gt;=z-4)&amp;amp;&amp;amp;(z-2) this statement gives and output of 0&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;(4+5*y&amp;gt;=z-4) this will produce 0 then &amp;#33;0= 1&lt;br /&gt;&lt;br /&gt;1 &amp;amp;&amp;amp; -2 = 1 is it correct since -2 is non zero value is considered as true?&lt;br /&gt;</description>
            <author>theanser</author>
            <category>Codemasters</category>
            <pubDate>Thu, 15 Nov 2007 10:49:08 +0800</pubDate>
        </item>
        <item>
            <title>C fscanf</title>
            <link>http://forum.lowyat.net/topic/550006</link>
            <description>Hi ,&lt;br /&gt;&lt;br /&gt;THis is the original code and the file attached is my modified code. I am suppose to change the original code so that it will scan data from the Handson11_2.txt and not by user input. However i cant get the desired results...&lt;br /&gt;&lt;br /&gt;Thanks.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/*****************************************************************/&lt;br /&gt;/* Hands-on 11: Exercise 3                                       */&lt;br /&gt;/* This program is written with two programmer-defined functions */&lt;br /&gt;/*  function 1: prompts user to enter twenty                     */&lt;br /&gt;/*        employees&amp;#39; salaries and groups the number of           */&lt;br /&gt;/*        employess under each category as follows:              */&lt;br /&gt;/*        Cat 1:  Above &amp;#036;5,000                                   */&lt;br /&gt;/*        Cat 2:  Between &amp;#036;3,000 - &amp;#036;5,000                        */&lt;br /&gt;/*        Cat 3:  Between &amp;#036;1,000 - &amp;#036;3,000                        */&lt;br /&gt;/*        Cat 4:  Below &amp;#036;1,000                                   */&lt;br /&gt;/*                                                               */&lt;br /&gt;/*  function 2: displays the results                             */&lt;br /&gt;&lt;br /&gt;#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;&lt;br /&gt;int main (void)&lt;br /&gt;{&lt;br /&gt;  int cat1=0, cat2=0, cat3=0, cat4=0;&lt;br /&gt;	&lt;br /&gt;  /*--------------Function prototype-----------------------------*/&lt;br /&gt;  void get_salary ( int* cat1p, int* cat2p, int* cat3p, int* cat4p);&lt;br /&gt;  void print_cat  ( int, int, int, int);&lt;br /&gt;&lt;br /&gt; /*-------------Invoking functions-------------------------------*/&lt;br /&gt;  get_salary (&amp;amp;cat1, &amp;amp;cat2, &amp;amp;cat3, &amp;amp;cat4);&lt;br /&gt;  print_cat  (cat1, cat2, cat3, cat4);&lt;br /&gt;&lt;br /&gt;  return 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;void  get_salary ( int *cat1p, int *cat2p, int *cat3p, int *cat4p)&lt;br /&gt;{&lt;br /&gt;	double salary=0;&lt;br /&gt;	int    emp_no=1;&lt;br /&gt;&lt;br /&gt;	do{&lt;br /&gt;		printf(&amp;quot;Enter employee %d salary&amp;gt; &amp;quot;, emp_no);&lt;br /&gt;		scanf (&amp;quot;%lf&amp;quot;, &amp;amp;salary);&lt;br /&gt;        &lt;br /&gt;	 	if (salary &amp;lt;=0)&lt;br /&gt;           printf(&amp;quot;Please enter +ve value&amp;#33;&amp;#092;n&amp;quot;);&lt;br /&gt;		else&lt;br /&gt;		{ &lt;br /&gt;		  if (salary &amp;gt;5000)&lt;br /&gt;			  (*cat1p)++;&lt;br /&gt;		  else if (salary &amp;gt; 3000 &amp;amp;&amp;amp; salary &amp;lt; 5000)&lt;br /&gt;			  (*cat2p)++;&lt;br /&gt;		  else if (salary &amp;gt; 1000 &amp;amp;&amp;amp; salary &amp;lt; 3000)&lt;br /&gt;			  (*cat3p)++;&lt;br /&gt;		  else &lt;br /&gt;			  (*cat4p)++;&lt;br /&gt;		  emp_no++;&lt;br /&gt;		}&lt;br /&gt;	} while (emp_no &amp;lt;= 20);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void print_cat (int cat1, int cat2, int cat3, int cat4)&lt;br /&gt;{&lt;br /&gt;	printf (&amp;quot;&amp;#092;n&amp;#092;nThe salary structure based on your input is:&amp;#092;n&amp;quot;);&lt;br /&gt;	printf (&amp;quot;Above &amp;#036;5,000 ------------ %2d&amp;#092;n&amp;quot;, cat1);&lt;br /&gt;	printf (&amp;quot;&amp;#036;3,000-&amp;#036;5,000 ----------- %2d&amp;#092;n&amp;quot;, cat2);&lt;br /&gt;	printf (&amp;quot;&amp;#036;1,000-&amp;#036;3,000 ----------- %2d&amp;#092;n&amp;quot;, cat3);&lt;br /&gt;	printf (&amp;quot;Below &amp;#036;1,000  ----------- %2d&amp;#092;n&amp;quot;, cat4);&lt;br /&gt;}</description>
            <author>theanser</author>
            <category>Codemasters</category>
            <pubDate>Thu, 08 Nov 2007 00:17:00 +0800</pubDate>
        </item>
        <item>
            <title>Global to local variables</title>
            <link>http://forum.lowyat.net/topic/537970</link>
            <description>Hi all, I&amp;#39;m having this problem here when i change the global to local variables the output isnt random anymore but producing the same number.....any idea how to change the variables?&lt;br /&gt;&lt;br /&gt;thanks alot.&lt;br /&gt;&lt;br /&gt;/****************************************************************/&lt;br /&gt;/* Program Handson9_exe4.C                                      */&lt;br /&gt;/* This program declares a and b as global variables            */&lt;br /&gt;/* Re-write the program by shifting variables a and             */&lt;br /&gt;/* b to the function main(). Make necessary changes so that the */&lt;br /&gt;/* program will produce the same output as the original version */&lt;br /&gt;/****************************************************************/&lt;br /&gt;&lt;br /&gt;#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;#include &amp;lt;stdlib.h&amp;gt;  /* for rand() and srand() functions */&lt;br /&gt;#include &amp;lt;time.h&amp;gt;    /* for time() function*/&lt;br /&gt;#include &amp;lt;ctype.h&amp;gt;&lt;br /&gt;&lt;br /&gt;time_t t; /* this is declared for generating random number */&lt;br /&gt;int   a;  /* global variable */&lt;br /&gt;char  b;  /* global variable */&lt;br /&gt;&lt;br /&gt;int main(void)&lt;br /&gt;{&lt;br /&gt;/* The program calls the function gennum() to generate a       */&lt;br /&gt;/* number. If the number is greater than 16383, it is          */&lt;br /&gt;/* considered as a Big number. Otherwise, it is considered     */&lt;br /&gt;/* as a small number*/&lt;br /&gt;&lt;br /&gt;  void gennum(void);&lt;br /&gt;  char  guess;&lt;br /&gt;&lt;br /&gt;  srand((unsigned) time(&amp;amp;t));  /* srand() is to set a seed number*/&lt;br /&gt;&lt;br /&gt;  do{&lt;br /&gt;     printf (&amp;quot;Hi&amp;#092;7, guess for Big or Small (B or S) =&amp;gt;&amp;quot;);&lt;br /&gt;     guess = toupper ( getchar() );&lt;br /&gt;&lt;br /&gt;     gennum();&lt;br /&gt;&lt;br /&gt;     if (&amp;#33;( guess == &amp;#39;S&amp;#39; || guess ==&amp;#39;B&amp;#39;))&lt;br /&gt;		 return 0;&lt;br /&gt;	 else if( b == guess)&lt;br /&gt;        printf (&amp;quot;Random number is %d, You win&amp;#33;&amp;#092;n&amp;quot;, a);&lt;br /&gt;     else&lt;br /&gt;        printf (&amp;quot;Random number is %d, Sorry, you lose&amp;#33;&amp;#092;n&amp;quot;, a);&lt;br /&gt;     fflush(stdin);&lt;br /&gt;    }while ( guess == &amp;#39;B&amp;#39; || guess == &amp;#39;S&amp;#39;);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  return 0;&lt;br /&gt; }&lt;br /&gt;&lt;br /&gt;/*-------------Definition of the function gennum()-------------*/&lt;br /&gt; void gennum(void)&lt;br /&gt;  {&lt;br /&gt;    a = rand();   /* rand() is a standard library function */&lt;br /&gt;    if ( a &amp;gt; 16383)&lt;br /&gt;       b = &amp;#39;B&amp;#39;;&lt;br /&gt;    else&lt;br /&gt;       b = &amp;#39;S&amp;#39;;&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;</description>
            <author>theanser</author>
            <category>Codemasters</category>
            <pubDate>Thu, 18 Oct 2007 09:31:52 +0800</pubDate>
        </item>
        <item>
            <title>C syntax</title>
            <link>http://forum.lowyat.net/topic/535061</link>
            <description>printf (&amp;quot;Hi&amp;#092;7, guess for Big or Small (B or S) =&amp;gt;&amp;quot;);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;what does the &amp;#092;7 represents?&lt;br /&gt;&lt;br /&gt;Thanks.</description>
            <author>theanser</author>
            <category>Codemasters</category>
            <pubDate>Thu, 11 Oct 2007 16:36:52 +0800</pubDate>
        </item>
        <item>
            <title>Newton Raphson in C</title>
            <link>http://forum.lowyat.net/topic/534742</link>
            <description>Hey...i should get an output as below &lt;br /&gt;&lt;br /&gt;Solving the following Cubic Equation:&lt;br /&gt;    +1x^3 -6x^2 +11x -6 = 0&lt;br /&gt;    where x0 = 2.600000&lt;br /&gt;One solution for x = 3.000000&lt;br /&gt;&lt;br /&gt;Solving the following Cubic Equation:&lt;br /&gt;    +2x^3 -6x^2 +12x -7 = 0&lt;br /&gt;    where x0 = -3.700000&lt;br /&gt;One solution for x = 0.834835&lt;br /&gt;&lt;br /&gt;Solving the following Cubic Equation:&lt;br /&gt;    -3x^3 +0x^2 +5x +0 = 0&lt;br /&gt;    where x0 = -2.000000&lt;br /&gt;One solution for x = -1.290994&lt;br /&gt;&lt;br /&gt;i attached my code and the data file (cubic1.txt) together &lt;br /&gt;&lt;br /&gt;i looped till the 2nd result...and get floating point overflow...any idea how to solve it?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Code:&lt;br /&gt;</description>
            <author>theanser</author>
            <category>Codemasters</category>
            <pubDate>Thu, 11 Oct 2007 00:14:37 +0800</pubDate>
        </item>
        <item>
            <title>C Increment</title>
            <link>http://forum.lowyat.net/topic/532009</link>
            <description>usually we increment as follows : i++ or ++i&lt;br /&gt;&lt;br /&gt;issit error if we use ++ (a+b)?&lt;br /&gt;&lt;br /&gt;if yes why issit so?&lt;br /&gt;&lt;br /&gt;Thanks</description>
            <author>theanser</author>
            <category>Codemasters</category>
            <pubDate>Fri, 05 Oct 2007 20:50:52 +0800</pubDate>
        </item>
        <item>
            <title>Compilation Error...why?</title>
            <link>http://forum.lowyat.net/topic/531763</link>
            <description>#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;int main(void)&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;int i =15, j=0;&lt;br /&gt;if (i&amp;gt;20)&lt;br /&gt;  ++j;&lt;br /&gt;  j+=2;&lt;br /&gt;else&lt;br /&gt;  j+=4;&lt;br /&gt;printf(&amp;quot;%i&amp;#092;n&amp;quot;, j);&lt;br /&gt;return 0;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;the reason given is misplaced else in main function..why is it so?&lt;br /&gt;Thanks&lt;br /&gt;</description>
            <author>theanser</author>
            <category>Codemasters</category>
            <pubDate>Fri, 05 Oct 2007 12:34:15 +0800</pubDate>
        </item>
        <item>
            <title>C HELP</title>
            <link>http://forum.lowyat.net/topic/531590</link>
            <description>f int a =5, b=5&lt;br /&gt;int sum = 0&lt;br /&gt;sum = a++&amp;gt;b++?b++:a+b%a&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;the answer is sum=6 b= 6&lt;br /&gt;&lt;br /&gt;why b++ is being executed.... &lt;br /&gt;shud a and b be incremented first then 6 &amp;gt; 6 is false....  and a+b%a executed instead?</description>
            <author>theanser</author>
            <category>Codemasters</category>
            <pubDate>Fri, 05 Oct 2007 01:26:12 +0800</pubDate>
        </item>
        <item>
            <title>Greatest Common Divisor</title>
            <link>http://forum.lowyat.net/topic/531557</link>
            <description>#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;&lt;br /&gt;int main(void)&lt;br /&gt;{&lt;br /&gt;/*-------------------Declaration--------------------------------*/&lt;br /&gt;	int x,y,a,gcd;&lt;br /&gt;&lt;br /&gt;/*-----------------Block 1: Read data input---------------------*/&lt;br /&gt;	printf(&amp;quot;Enter the first integer: &amp;quot;);&lt;br /&gt;	scanf(&amp;quot;%d&amp;quot;,&amp;amp;x);&lt;br /&gt;	printf(&amp;quot;Enter the second integer: &amp;quot;);&lt;br /&gt;	scanf(&amp;quot;%d&amp;quot;,&amp;amp;y);&lt;br /&gt;&lt;br /&gt;	if (x&amp;lt;y)&lt;br /&gt;	{&lt;br /&gt;		a = x;&lt;br /&gt;		x = y;&lt;br /&gt;		y = a;&lt;br /&gt;	}&lt;br /&gt;&lt;br /&gt;	gcd = x%y;&lt;br /&gt;	if (gcd == 0)&lt;br /&gt;	gcd = y;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;	printf(&amp;quot;The greatest common divisor for the inputs is %d&amp;#092;n&amp;quot;,gcd);&lt;br /&gt;&lt;br /&gt;	return 0;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;this is my code.... it works for small value but if i key in &lt;br /&gt;Enter the first integer: 461952&lt;br /&gt;Enter the second integer: 116298&lt;br /&gt;The greatest common divisor for the inputs is 18&lt;br /&gt;i couldnt get 18.....any idea?&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;</description>
            <author>theanser</author>
            <category>Codemasters</category>
            <pubDate>Fri, 05 Oct 2007 00:24:25 +0800</pubDate>
        </item>
        <item>
            <title>HOw to make this effect</title>
            <link>http://forum.lowyat.net/topic/530589</link>
            <description>How to i make this effect using photoshop?&lt;br /&gt;&lt;br /&gt;Thanks</description>
            <author>theanser</author>
            <category>Arts &amp;amp; Designs</category>
            <pubDate>Wed, 03 Oct 2007 12:58:06 +0800</pubDate>
        </item>
        <item>
            <title>C assignment</title>
            <link>http://forum.lowyat.net/topic/523427</link>
            <description>Write a program that creates the following pattern &lt;br /&gt;given input height(no of rows) and width (print character per line) which is to be inputed by us.&lt;br /&gt;&lt;br /&gt;Enter height and width :  7 12&lt;br /&gt;&lt;br /&gt;output:&lt;br /&gt;&lt;br /&gt;============&lt;br /&gt;*                       *&lt;br /&gt;*                       *&lt;br /&gt;*                       *&lt;br /&gt;*                       *&lt;br /&gt;*                       *&lt;br /&gt;============&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;how do i make the middle part where the blank spaces are according to the width i entered.....&lt;br /&gt;&lt;br /&gt;thanks...</description>
            <author>theanser</author>
            <category>Codemasters</category>
            <pubDate>Thu, 20 Sep 2007 10:22:41 +0800</pubDate>
        </item>
        <item>
            <title>how to find factorial of positive integers</title>
            <link>http://forum.lowyat.net/topic/523160</link>
            <description>factorial of n = n(n-1)(n-2)................&lt;br /&gt;&lt;br /&gt;how can i write a source code using either for while or do while...thx&lt;br /&gt;&lt;br /&gt;[addedon]September 19, 2007, 9:41 pm[/addedon]Nvm solved:D</description>
            <author>theanser</author>
            <category>Codemasters</category>
            <pubDate>Wed, 19 Sep 2007 21:24:04 +0800</pubDate>
        </item>
        <item>
            <title>User Account Control</title>
            <link>http://forum.lowyat.net/topic/521658</link>
            <description>Is it advisable to turn off the User Account Control?</description>
            <author>theanser</author>
            <category>Software</category>
            <pubDate>Mon, 17 Sep 2007 07:23:42 +0800</pubDate>
        </item>
    </channel>
</rss>
