<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by lohmk</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Mon, 15 Jun 2026 12:51:24 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Need help with Samsung SGH-X500</title>
            <link>http://forum.lowyat.net/topic/389959</link>
            <description>Hi all,&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve just bought a Samsung SGH-X500 phone. But the manual is too simple for specific issues.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m trying to change the phone password but it seems that the manual doesn&amp;#39;t provide me with the default password. What usually would be the default password?&lt;br /&gt;&lt;br /&gt;Also, this phone is an MP3 supported phone. But the package doesn&amp;#39;t include a sync cable. I&amp;#39;ve tried to send MP3 from my Nokia N70 to it but the phone doesn&amp;#39;t seems to be able to open the file. It always shows an error message &amp;quot;Error reading file&amp;quot;. Any other way to transfer the file properly (without using sync cable) or is it there&amp;#39;s a defect on the phone? However, my gf using the same phone has the same problem.  &lt;!--emo&amp;:sweat:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/sweat.gif' border='0' style='vertical-align:middle' alt='sweat.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;Anybody using Samsung phones out there please advise.&lt;br /&gt;Thanks</description>
            <author>lohmk</author>
            <category>Mobile Phones and Tablets</category>
            <pubDate>Sun, 31 Dec 2006 11:22:08 +0800</pubDate>
        </item>
        <item>
            <title>Beverages Order the mamak way</title>
            <link>http://forum.lowyat.net/topic/350430</link>
            <description>I don&amp;#39;t know if this was posted before but kinda old anyway.&lt;br /&gt;Funny and not many people heard  &lt;!--emo&amp;:w--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/whistling.gif' border='0' style='vertical-align:middle' alt='whistling.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;When we go to coffee shop and order our drinks, the &amp;quot;waiter/waitress&amp;quot; will yell our drinks in short form.. eg. Kopi O Ais = Or Peng, Kopi + Teh Ais = Cham Peng..&lt;br /&gt;&lt;br /&gt;What will happen if Mamak decide to follow this trend..&lt;br /&gt;Kopi + Teh = KoTeh&lt;br /&gt;Milo + Kopi + Teh = My KoTeh&lt;br /&gt;Horlick + Milo + Kopi + Teh = LICK MY KOTEH&amp;#33;&amp;#33;&amp;#33;&amp;#33;&amp;#33;&lt;br /&gt;&lt;br /&gt; &lt;!--emo&amp;:w--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/whistling.gif' border='0' style='vertical-align:middle' alt='whistling.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>lohmk</author>
            <category>Jokes Heaven</category>
            <pubDate>Sat, 07 Oct 2006 09:25:17 +0800</pubDate>
        </item>
        <item>
            <title>CorelDRAW 12 under linux</title>
            <link>http://forum.lowyat.net/topic/349788</link>
            <description>I have planned to make a switch to open source, however there is an issue preventing me to do so.&lt;br /&gt;I am working and my work require CorelDRAW 12&amp;#33;&amp;#33;&lt;br /&gt;Do I have a method to work around this?&lt;br /&gt;Am I destined to stick to Microsoft?&lt;br /&gt;&lt;br /&gt;BTW, I&amp;#39;m planning to move over to SUSE Linux 10</description>
            <author>lohmk</author>
            <category>Linux &amp;amp; Open Source Software</category>
            <pubDate>Thu, 05 Oct 2006 20:38:03 +0800</pubDate>
        </item>
        <item>
            <title>C++ problem</title>
            <link>http://forum.lowyat.net/topic/252514</link>
            <description>These codes are found from a text by Jesse Liberty, which i find it very hard to understand..&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;&lt;br /&gt;#include &amp;#60;iostream.h&amp;#62;&lt;br /&gt;&lt;br /&gt;class Cat&lt;br /&gt;{&lt;br /&gt;public&amp;#58;&lt;br /&gt;	Cat&amp;#40;&amp;#41; { itsAge = 1; itsWeight = 5; }&lt;br /&gt;	~Cat&amp;#40;&amp;#41;;&lt;br /&gt;&lt;br /&gt;	int GetAge&amp;#40;&amp;#41; const { return itsAge; }&lt;br /&gt;	int GetWeight&amp;#40;&amp;#41; const { return itsWeight; }&lt;br /&gt;	void SetAge&amp;#40;int age&amp;#41; { itsAge = age; }&lt;br /&gt;&lt;br /&gt;private&amp;#58;&lt;br /&gt;	int itsAge;&lt;br /&gt;	int itsWeight;&lt;br /&gt;};&lt;br /&gt;&lt;br /&gt;Cat&amp;#58;&amp;#58;~Cat&amp;#40;&amp;#41;&lt;br /&gt;{&lt;br /&gt;	// cout &amp;#60;&amp;#60; &amp;#34;Destructor called&amp;#33;&amp;#092;n&amp;#34;;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;int main&amp;#40;&amp;#41;&lt;br /&gt;{&lt;br /&gt;	Cat * Family = new Cat&amp;#91;10&amp;#93;;&lt;br /&gt;	int i;&lt;br /&gt;	Cat * pCat;&lt;br /&gt;&lt;br /&gt;	for &amp;#40;i = 0; i &amp;#60; 10; i++&amp;#41;&lt;br /&gt;	{&lt;br /&gt; &amp;nbsp;pCat = new Cat;&lt;br /&gt; &amp;nbsp;pCat-&amp;#62;SetAge&amp;#40;2*i + 1&amp;#41;;&lt;br /&gt; &amp;nbsp;Family&amp;#91;i&amp;#93; = *pCat;&lt;br /&gt; &amp;nbsp;delete pCat;&lt;br /&gt;	}&lt;br /&gt;&lt;br /&gt;	for &amp;#40;i = 0; i &amp;#60; 10; i++&amp;#41;&lt;br /&gt;	{&lt;br /&gt; &amp;nbsp;cout &amp;#60;&amp;#60; &amp;#34;Cat #&amp;#34; &amp;#60;&amp;#60; i+1 &amp;#60;&amp;#60; &amp;#34;&amp;#58; &amp;#34;;&lt;br /&gt; &amp;nbsp;cout &amp;#60;&amp;#60; Family&amp;#91;i&amp;#93;.GetAge&amp;#40;&amp;#41; &amp;#60;&amp;#60; endl;&lt;br /&gt;	}&lt;br /&gt;&lt;br /&gt;	delete &amp;#91;&amp;#93; Family;&lt;br /&gt;&lt;br /&gt;	return 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;The author said that it is necessary to free the pointer after using it, to avoid creating memory leaks. My question is, after deleting Family, how am i gonna access the array on the free store again? Is it a wise move to release the Family pointer? Since then, if its not accessable again why not remove the whole array instead?</description>
            <author>lohmk</author>
            <category>Codemasters</category>
            <pubDate>Fri, 17 Feb 2006 02:21:40 +0800</pubDate>
        </item>
    </channel>
</rss>
