<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by fArAh07</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Fri, 26 Jun 2026 06:27:43 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>[WTS] shirts, shoes, and more</title>
            <link>http://forum.lowyat.net/topic/2658239</link>
            <description>lace up boot&lt;br /&gt;blue color&lt;br /&gt;bought at dubai last year&lt;br /&gt;never used it&lt;br /&gt;[attachmentid=3248938]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;black flat shoes by carlo rino exchange&lt;br /&gt;used once&lt;br /&gt;[attachmentid=3248940]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;beats by dr.dre&lt;br /&gt;solo hd&lt;br /&gt;bought at dubai last year&lt;br /&gt;black color&lt;br /&gt;rarely used&lt;br /&gt;[attachmentid=3248941]&lt;br /&gt;[attachmentid=3248944]&lt;br /&gt;[attachmentid=3248945]&lt;br /&gt;[attachmentid=3248953]&lt;br /&gt;&lt;br /&gt;odm watch&lt;br /&gt;original one.&lt;br /&gt;word : farah&lt;br /&gt;can change it at any shop sell odm watch&lt;br /&gt;[attachmentid=3248957]&lt;br /&gt;&lt;br /&gt;all pm me ur best price&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.mudah.my/li?ca=8_s&amp;id=71142' target='_blank'&gt;my ads here&lt;/a&gt;</description>
            <author>fArAh07</author>
            <category>Garage Sales Archive</category>
            <pubDate>Mon, 07 Jan 2013 14:28:25 +0800</pubDate>
        </item>
        <item>
            <title>cron job</title>
            <link>http://forum.lowyat.net/topic/2640885</link>
            <description>anyone expert in this ?&lt;br /&gt;automatic update website when user upload video.&lt;br /&gt;like youtube.&lt;br /&gt;pm me with your price. tq</description>
            <author>fArAh07</author>
            <category>Codemasters</category>
            <pubDate>Mon, 24 Dec 2012 17:03:10 +0800</pubDate>
        </item>
        <item>
            <title>[help]any website creator here?</title>
            <link>http://forum.lowyat.net/topic/2447927</link>
            <description>i will pay for those who willing to create a website for me like&lt;br /&gt;&lt;a href='http://www.sold.my/' target='_blank'&gt;http://www.sold.my/&lt;/a&gt; or mudah.my&lt;br /&gt;website include link to any online payment methods like cimbclicks or maybank2u&lt;br /&gt;pm me ur best price.</description>
            <author>fArAh07</author>
            <category>Content Creators, Blogmasters &amp;amp; Webmasters</category>
            <pubDate>Sun, 29 Jul 2012 18:14:28 +0800</pubDate>
        </item>
        <item>
            <title>[help]any website creator here?</title>
            <link>http://forum.lowyat.net/topic/2447926</link>
            <description>i will pay for those who willing to create a website for me like&lt;br /&gt;&lt;a href='http://www.sold.my/' target='_blank'&gt;http://www.sold.my/&lt;/a&gt; or mudah.my&lt;br /&gt;website include link to any online payment methods like cimbclicks or maybank2u&lt;br /&gt;pm me ur best price.</description>
            <author>fArAh07</author>
            <category>Codemasters</category>
            <pubDate>Sun, 29 Jul 2012 18:14:13 +0800</pubDate>
        </item>
        <item>
            <title>array 2D prob~</title>
            <link>http://forum.lowyat.net/topic/1861655</link>
            <description>to get row total &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style='color:red'&gt;#include&amp;lt;iostream&amp;gt;&lt;br /&gt;float getRowTotal(float row[3][2]);&lt;br /&gt;using namespace std;&lt;br /&gt;int main(){&lt;br /&gt;float row[3][2];&lt;br /&gt;float rowtotal[3];&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;	cout&amp;lt;&amp;lt;&amp;quot;Please input 3 numbers for first column :&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;	for(int i=0;i&amp;lt;3;i++){&lt;br /&gt;		cin&amp;gt;&amp;gt;row[i][0];&lt;br /&gt;	}&lt;br /&gt;	cout&amp;lt;&amp;lt;&amp;quot;Please input 3 number for second column :&amp;quot;&amp;lt;&amp;lt;endl;&lt;br /&gt;	for(int a=0;a&amp;lt;3;a++){&lt;br /&gt;	cin&amp;gt;&amp;gt;row[a][1];&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;	rowtotal[3]=getRowTotal(row);	&lt;br /&gt;&lt;br /&gt;for(int c=0;c&amp;lt;3;c++){&lt;br /&gt;			cout&amp;lt;&amp;lt;&amp;quot;Row total &amp;quot;&amp;lt;&amp;lt;c+1&amp;lt;&amp;lt;&amp;quot; is &amp;quot;&amp;lt;&amp;lt;rowtotal[c]&amp;lt;&amp;lt;endl;&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;float getRowTotal(float row[3][2]){&lt;br /&gt;	float rowtotal[3]={0};&lt;br /&gt;	int w,x;&lt;br /&gt;		for(w=0;w&amp;lt;3;w++){&lt;br /&gt;		 for(x=0;x&amp;lt;2;x++){&lt;br /&gt;		rowtotal[w]=rowtotal[w]+row[w][x];&lt;br /&gt;			}&lt;br /&gt;	}&lt;br /&gt;		return rowtotal[3];&lt;br /&gt;	}&lt;/span&gt;[U][QUOTE]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;but ending output wrong not 3,7,11&lt;br /&gt;why?&lt;br /&gt;can help?</description>
            <author>fArAh07</author>
            <category>Codemasters</category>
            <pubDate>Tue, 03 May 2011 12:55:51 +0800</pubDate>
        </item>
        <item>
            <title>what is code data card?</title>
            <link>http://forum.lowyat.net/topic/0</link>
            <description></description>
            <category>Networks and Broadband</category>
            <pubDate>Thu, 01 Jan 1970 07:30:00 +0800</pubDate>
        </item>
        <item>
            <title>what is code data card?</title>
            <link>http://forum.lowyat.net/topic/1574431</link>
            <description>i have been using celcom broadband&lt;br /&gt;but when i connect celcom modem its appear&lt;br /&gt;&amp;#39;enter code data card number&amp;#39;&lt;br /&gt;what is that &amp;amp; how to get it?&lt;br /&gt;help me&lt;br /&gt;thanks&amp;#33;&lt;br /&gt; &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>fArAh07</author>
            <category>Networks and Broadband</category>
            <pubDate>Fri, 24 Sep 2010 21:27:22 +0800</pubDate>
        </item>
        <item>
            <title>windows 7</title>
            <link>http://forum.lowyat.net/topic/1176689</link>
            <description>does any 1 try it?&lt;br /&gt;currently use windows 7&lt;br /&gt;its cool&lt;br /&gt;but why my laptop always stuck after use it?</description>
            <author>fArAh07</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Mon, 28 Sep 2009 12:48:20 +0800</pubDate>
        </item>
        <item>
            <title>romantic place</title>
            <link>http://forum.lowyat.net/topic/1140329</link>
            <description>does any1 kno where?&lt;br /&gt;perfect for couple&lt;br /&gt;wit candle light mayb or sum live slow music (piano bla2)&lt;br /&gt;help me&lt;br /&gt;&lt;br /&gt; &lt;!--emo&amp;:wub:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/wub.gif' border='0' style='vertical-align:middle' alt='wub.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>fArAh07</author>
            <category>Cupid&amp;#39;s Corner</category>
            <pubDate>Mon, 24 Aug 2009 02:28:00 +0800</pubDate>
        </item>
    </channel>
</rss>
