<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by sctong147</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Wed, 10 Jun 2026 22:10:27 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Advise and help required from experienced sifu</title>
            <link>http://forum.lowyat.net/topic/3478167</link>
            <description>Dear all sifu, my house recently was affected by flood and before that my friends were help me to remove all audio system in my house, now we are stucked at nowhere to install back everything. Below are the hardwares : &lt;br /&gt;&lt;br /&gt;1. Yamaha DSP-A1&lt;br /&gt;2. NAD 208 &lt;br /&gt;3. BMB DA-X77&lt;br /&gt;4. Advante SUB-AW2 Woofer&lt;br /&gt;5. 2 pair Celestion A3 speaker&lt;br /&gt;6. Sound Dynamic center&lt;br /&gt;7. 4 JBL speaker&lt;br /&gt;8. BBE audio restoration system&lt;br /&gt;&lt;br /&gt;All sifus help are much appreciated&amp;#33;&lt;br /&gt;&lt;br /&gt;</description>
            <author>sctong147</author>
            <category>Audiophiles</category>
            <pubDate>Thu, 22 Jan 2015 22:06:49 +0800</pubDate>
        </item>
        <item>
            <title>[WTA] HTIB ADVISE NEEDED FOR ONKYO, DENON, YAMAHA</title>
            <link>http://forum.lowyat.net/topic/2707995</link>
            <description>Dear all sifus, currently come thru the stage of picking an entry level of HTIB. Some advise needed from all sifus here. My main usage will be music follow by movies, no games. Below are 3 of them in my mind :&lt;br /&gt;&lt;br /&gt;1. Onkyo HTS3500&lt;br /&gt;2. Denon DHT-1312XP&lt;br /&gt;3. Yamaha RX-V373 AVR with NS-P20 Speakers&lt;br /&gt;&lt;br /&gt;All suggestion are welcome&amp;#33;&lt;br /&gt;&lt;br /&gt;Thanks in advance. &lt;!--emo&amp;:clap:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/rclxms.gif' border='0' style='vertical-align:middle' alt='rclxms.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;</description>
            <author>sctong147</author>
            <category>Home Entertainment</category>
            <pubDate>Tue, 19 Feb 2013 18:05:36 +0800</pubDate>
        </item>
        <item>
            <title>Housing Loan for RM393K</title>
            <link>http://forum.lowyat.net/topic/2485469</link>
            <description>Hi all, I am currently on dilemma for 2 of the housing loan offer by local bank. May I check with all the sifus here about the loan. Below are the details :&lt;br /&gt;&lt;br /&gt;Loan Amount : RM390,000&lt;br /&gt;&lt;br /&gt;Bank P :&lt;br /&gt;Type : Semi-Flexi&lt;br /&gt;Tenure : 40 years&lt;br /&gt;First year : BLR-2.5&lt;br /&gt;Second year : BLR-2.45&lt;br /&gt;Third year and thereafter : BLR-2.4&lt;br /&gt;Lock in : 3 years with 2% penalty on the approved loan amount&lt;br /&gt;Withdraw : 2 days in advance and RM50/time&lt;br /&gt;Legal fee : 8k&lt;br /&gt;&lt;br /&gt;Bank M : Islamic Home Equity-i&lt;br /&gt;Type : Semi-Flexi&lt;br /&gt;Tenure: 40 years&lt;br /&gt;Whole tenure : BLR-2.4&lt;br /&gt;Lock in : 0 years (no lock in)&lt;br /&gt;Withdraw : No need to inform earlier, thru online banking, RM25/time&lt;br /&gt;Legal fee : 5-6K, 20% off stamp duty&lt;br /&gt;&lt;br /&gt;Your comment is most welcome for a new bird like me buying property.&lt;br /&gt;&lt;br /&gt;TQVM</description>
            <author>sctong147</author>
            <category>Property Talk</category>
            <pubDate>Mon, 27 Aug 2012 21:31:28 +0800</pubDate>
        </item>
        <item>
            <title>Need help with efficientcy of sum</title>
            <link>http://forum.lowyat.net/topic/2057992</link>
            <description>Guys, i have wrote a code to calculate the sum of the lengths whereby&lt;br /&gt;if &lt;br /&gt;syra(1) = 1&lt;br /&gt;syra(2) = n + syra(n/2) if n%2==0&lt;br /&gt;syra(3) = n + (n*3) + 1&lt;br /&gt;&lt;br /&gt;eg.&lt;br /&gt;syra(1) will generate 1&lt;br /&gt;syra(2) will generate 2 1&lt;br /&gt;syra(3) will generate 3 10 5 16 8 4 2 1&lt;br /&gt;&lt;br /&gt;lengths(3) will be sum of all syra(1),syra(2),syra(3) which is 11.&lt;br /&gt;&lt;br /&gt;Here&amp;#39;s the code :&lt;br /&gt;&lt;br /&gt;public static int lengths(int n) throws IllegalArgumentException{&lt;br /&gt;		int syra = n;&lt;br /&gt;		int count = 0;	&lt;br /&gt;		int sum = 0;&lt;br /&gt;		if (syra &amp;lt; 1){&lt;br /&gt;			throw new IllegalArgumentException(&amp;quot;Value must be greater than 0&amp;quot;);&lt;br /&gt;			}else{&lt;br /&gt;					for (int i=1; i&amp;lt;=syra; i++){&lt;br /&gt;						count = i;&lt;br /&gt;						sum++;&lt;br /&gt;						while (count &amp;gt; 1){&lt;br /&gt;							if ((count % 2) == 0){&lt;br /&gt;								count = count / 2;&lt;br /&gt;								sum++;&lt;br /&gt;							}else{&lt;br /&gt;								count = (count * 3) + 1;&lt;br /&gt;								sum++;&lt;br /&gt;								}&lt;br /&gt;							} &lt;br /&gt;					}	&lt;br /&gt;				}return sum;&lt;br /&gt;	}&lt;br /&gt;&lt;br /&gt;Question is, if i blast the lengths with big value eg 700000, it will take very long time and do repeat step for those syra(10),syra(5)...which already appear in syra(3). How can I fine tune the code to store some temp (array) of the overlap sequences? &lt;br /&gt;&lt;br /&gt;Thanks.&lt;br /&gt;</description>
            <author>sctong147</author>
            <category>Codemasters</category>
            <pubDate>Tue, 04 Oct 2011 20:51:12 +0800</pubDate>
        </item>
        <item>
            <title>Java L-System</title>
            <link>http://forum.lowyat.net/topic/2048273</link>
            <description>Recently having problem on solving this java asgnmnt and I am lost on this question :&lt;br /&gt;&lt;br /&gt;In a Java class called Rewrite write a recursive instance method called lindenmeyer that&lt;br /&gt;takes in a String: start and an integer iters and applies the following set of rules:&lt;br /&gt;A -&amp;gt; AB&lt;br /&gt;B -&amp;gt; BC&lt;br /&gt;C -&amp;gt; D&lt;br /&gt;D -&amp;gt; A&lt;br /&gt;and applies them to the String start simultaneously iter times in succession returning&lt;br /&gt;the new String. By simultaneously we mean that produce a result that looks as if each&lt;br /&gt;rule is applied to input string at the same time. So, for example the call:&lt;br /&gt;lindenmeyer(&amp;quot;A&amp;quot;,1)&lt;br /&gt;returns the string “AB” and the call:&lt;br /&gt;lindenmeyer(&amp;quot;A&amp;quot;,2)&lt;br /&gt;returns the string “ABBC” and, finally, the call:&lt;br /&gt;lindenmeyer(&amp;quot;A&amp;quot;,3)&lt;br /&gt;returns the string “ABBCBCD”.&lt;br /&gt;Hint: parallel rewriting of a string like this is harder than it looks (especially if it is done&lt;br /&gt;in situ) because we have to avoid rules we apply later picking up on changes made by&lt;br /&gt;rules we applied earlier. A simple trick is to make the rules match uppercase letters but&lt;br /&gt;produce lowercase letters. Once all the rewrites are applied you can then convert the&lt;br /&gt;whole string back to upper case.&lt;br /&gt;&lt;br /&gt;*any advise would be much appreciated...</description>
            <author>sctong147</author>
            <category>Codemasters</category>
            <pubDate>Tue, 27 Sep 2011 00:13:41 +0800</pubDate>
        </item>
        <item>
            <title>Wedding Carnival @ Bridal Roadshow</title>
            <link>http://forum.lowyat.net/topic/0</link>
            <description></description>
            <category>Girl&amp;#39;s Club</category>
            <pubDate>Thu, 01 Jan 1970 07:30:00 +0800</pubDate>
        </item>
        <item>
            <title>Wedding Carnival @ Bridal Roadshow</title>
            <link>http://forum.lowyat.net/topic/1002254</link>
            <description>Posting on behalf of my freind. There will be a Wedding Carnival coming in this weekend. Quite attraction for those couple who plan to wedding or those who looking for info that related to wedding. A detailed info can be found on the below flyer.  &lt;!--emo&amp;:clap:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/rclxms.gif' border='0' style='vertical-align:middle' alt='rclxms.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:thumbs:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/thumbup.gif' border='0' style='vertical-align:middle' alt='thumbup.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:clap:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/rclxms.gif' border='0' style='vertical-align:middle' alt='rclxms.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:thumbs:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/thumbup.gif' border='0' style='vertical-align:middle' alt='thumbup.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;img src='http://i142.photobucket.com/albums/r92/sctong147/Design2.jpg' border='0' alt='user posted image' /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src='http://i142.photobucket.com/albums/r92/sctong147/carnival.jpg' border='0' alt='user posted image' /&gt;</description>
            <author>sctong147</author>
            <category>Events and Gatherings</category>
            <pubDate>Sat, 18 Apr 2009 01:05:05 +0800</pubDate>
        </item>
        <item>
            <title>Anyone see this before in Malaysia?</title>
            <link>http://forum.lowyat.net/topic/431882</link>
            <description>is anyone see this jack before in Malaysia?Where can i get it?Thanks...&lt;br /&gt;&lt;img src='http://i142.photobucket.com/albums/r92/sctong147/Electrical-Car-Jack-JL-A20-.jpg' border='0' alt='user posted image' /&gt;</description>
            <author>sctong147</author>
            <category>The Fast &amp;amp; The Furious</category>
            <pubDate>Sun, 25 Mar 2007 12:49:07 +0800</pubDate>
        </item>
    </channel>
</rss>
