<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by Krevaki</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Fri, 05 Jun 2026 22:32:12 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Files missing but space still used.</title>
            <link>http://forum.lowyat.net/topic/2987689</link>
            <description>Okay guys, going to need some serious help with this one.&lt;br /&gt;&lt;br /&gt;My laptop was working fine this morning, but then in the evening, I turned it on and my files are missing. This includes files in My Documents, My Pictures, Downloads, Desktop, etc. I looked at the free space of Local Disk C but it doesn&amp;#39;t seem that those files were deleted, since the space looks the same as before. Could a virus somehow did something? Forgot to add that I tried Folder Options but that did not work out. &lt;br /&gt;&lt;br /&gt;The programmes on C looks fine (I have not tested them and I dare not), and D looks untouched.&lt;br /&gt;&lt;br /&gt;I am scared to even turn it on now. Any suggestions?</description>
            <author>Krevaki</author>
            <category>Technical Support</category>
            <pubDate>Tue, 08 Oct 2013 20:30:13 +0800</pubDate>
        </item>
        <item>
            <title>Matlab help</title>
            <link>http://forum.lowyat.net/topic/2783471</link>
            <description>Any Matlab experts here?&lt;br /&gt;&lt;br /&gt;I am trying to plot the graph of Maclaurin series from degree 1 to N, where N=[4,10].&lt;br /&gt;The code I wrote is:&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;x=-2*pi&amp;#58;0.01&amp;#58;2*pi;&lt;br /&gt;y=cos&amp;#40;x&amp;#41;;&lt;br /&gt;for N=4&amp;#58;1&amp;#58;10&lt;br /&gt; &amp;nbsp; &amp;nbsp;M_N=1;&lt;br /&gt; &amp;nbsp; &amp;nbsp;for n=1&amp;#58;1&amp;#58;N&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;M_N=M_N+&amp;#40;&amp;#40;-1^n&amp;#41;*&amp;#40;x.^&amp;#40;2*n&amp;#41;&amp;#41;&amp;#41;/factorial&amp;#40;2*n&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;end&lt;br /&gt; &amp;nbsp; &amp;nbsp;hold on&lt;br /&gt; &amp;nbsp; &amp;nbsp;plot&amp;#40;x,y,x,M_N&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp;axis&amp;#40;&amp;#91;-2*pi 2*pi -3 3&amp;#93;&amp;#41;&lt;br /&gt; &amp;nbsp; &amp;nbsp;hold off&lt;br /&gt;end&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;But then when I run it, it will only give the series for n=1. I have been trying to crack this all morning. What exactly am I missing here?  &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;  &lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>Krevaki</author>
            <category>Codemasters</category>
            <pubDate>Mon, 22 Apr 2013 11:54:09 +0800</pubDate>
        </item>
        <item>
            <title>Noob C++ question</title>
            <link>http://forum.lowyat.net/topic/2719070</link>
            <description>Hello sifus and gurus, I&amp;#39;m just starting out on C++ and I&amp;#39;m new to programming. &lt;!--emo&amp;:respect:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/notworthy.gif' border='0' style='vertical-align:middle' alt='notworthy.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;So please go easy on me. Anyway, below is a simple exercise that I&amp;#39;m doing.&lt;br /&gt;&lt;br /&gt;Question:&lt;br /&gt;You buy a new car for &amp;#036; 80,000.00. You take a 90% hire purchase loan for 9 years (108 months) at the annual interest rate of 3.0%.&lt;br /&gt;Calculate the monthly payment and interest amount. Your program should display those calculations and other values that you find interesting to the screen.&lt;br /&gt;&lt;br /&gt;What I did was:&lt;br /&gt;    &lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;double Car_Price = 80000.00;&lt;br /&gt; &amp;nbsp; &amp;nbsp;double Hire_Purchase_Loan_Percentage = 0.9;&lt;br /&gt; &amp;nbsp; &amp;nbsp;double Annual_Interest_Rate = 0.03;&lt;br /&gt; &amp;nbsp; &amp;nbsp;double Repayment_Period_in_Years = 9;&lt;br /&gt; &amp;nbsp; &amp;nbsp;double Repayment_Period_in_Months = 108;&lt;br /&gt; &amp;nbsp; &amp;nbsp;double Loan_Taken;&lt;br /&gt; &amp;nbsp; &amp;nbsp;double Amount_to_be_Repaid;&lt;br /&gt; &amp;nbsp; &amp;nbsp;double Monthly_Payment;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;Loan_Taken = Car_Price*Hire_Purchase_Loan_Percentage;&lt;br /&gt; &amp;nbsp; &amp;nbsp;Amount_to_be_Repaid = Loan_Taken+Loan_Taken*Annual_Interest_Rate*Repayment_Period_in_Years;&lt;br /&gt; &amp;nbsp; &amp;nbsp;Monthly_Payment = Amount_to_be_Repaid/Repayment_Period_in_Months;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;cout &amp;#60;&amp;#60;&amp;#34;Car Price = 80000.00&amp;#092;n&amp;#34;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;cout &amp;#60;&amp;#60;&amp;#34;Hire Purchase Loan Percentage = 0.9&amp;#092;n&amp;#34;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;cout &amp;#60;&amp;#60;&amp;#34;Annual Interest Rate = 0.03&amp;#092;n&amp;#34;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;cout &amp;#60;&amp;#60;&amp;#34;Repayment Period in Years = 9&amp;#092;n&amp;#34;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;cout &amp;#60;&amp;#60;&amp;#34;Repayment Period in Months = 108&amp;#092;n&amp;#34;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;cout &amp;#60;&amp;#60;&amp;#34;Loan Taken=&amp;#34;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;cout &amp;#60;&amp;#60;Loan_Taken;&lt;br /&gt; &amp;nbsp; &amp;nbsp;cout &amp;#60;&amp;#60;&amp;#34;Amount to be Repaid=&amp;#34;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;cout &amp;#60;&amp;#60;Amount_to_be_Repaid;&lt;br /&gt; &amp;nbsp; &amp;nbsp;cout &amp;#60;&amp;#60;&amp;#34;Monthly Payment=&amp;#34;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;cout &amp;#60;&amp;#60; Monthly_Payment;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;I don&amp;#39;t really like what I did. So my questions are:&lt;br /&gt;1. Would it be better (neat and refined) if I use &lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;double a = 80000.00; //Car Price&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt; instead of &lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;double Car_Price = 80000.00;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;?&lt;br /&gt;2. What are the differences between all the float and double? Seems to me that they only affect the space taken and degree of accuracy.&lt;br /&gt;3. How do I make it round off to XXX.XX?&lt;br /&gt;&lt;br /&gt;Many thanks in advance. &lt;!--emo&amp;:respect:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/notworthy.gif' border='0' style='vertical-align:middle' alt='notworthy.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>Krevaki</author>
            <category>Codemasters</category>
            <pubDate>Thu, 28 Feb 2013 16:29:41 +0800</pubDate>
        </item>
        <item>
            <title>[WTA]At what point does</title>
            <link>http://forum.lowyat.net/topic/2669351</link>
            <description>Okay, the story goes like this:&lt;br /&gt;&lt;br /&gt;My neighbours saw an advertisement online saying beagle puppies for adoption. They went to the place, had their eyes set on one puppy, and the owner asked for RM1600.&lt;br /&gt;&lt;br /&gt;Now if you were to ask for two or three hundred Ringgit as compensation I would understand, but RM1600? To me, this smells like a backyard breeder trying to make a quick buck. What do all of you think? Adoption or selling? Reasonable or daylight robbery?&lt;br /&gt;&lt;br /&gt;Extra info on puppies:&lt;br /&gt;Claim to be pure breed beagle.&lt;br /&gt;Around two months old.&lt;br /&gt;Not vaccinated.&lt;br /&gt;No neutering/spaying whatsoever.</description>
            <author>Krevaki</author>
            <category>Pets Wonderland</category>
            <pubDate>Tue, 15 Jan 2013 20:54:13 +0800</pubDate>
        </item>
        <item>
            <title>An Engineer&amp;#39;s View On Three Phase Power System</title>
            <link>http://forum.lowyat.net/topic/2629863</link>
            <description>Engineers, allow me to pick your brain on one thing.  &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; &lt;br /&gt;&lt;br /&gt;&lt;u&gt;The question:&lt;/u&gt;&lt;br /&gt;As an engineer (especially electrical and/or electronics), what can you say about the voltage of a three phase power system? And what is your conclusion from it?&lt;br /&gt;&lt;br /&gt;Do pardon me if this troubles you. &lt;!--emo&amp;:blush:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/blush.gif' border='0' style='vertical-align:middle' alt='blush.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>Krevaki</author>
            <category>Education Essentials</category>
            <pubDate>Sun, 16 Dec 2012 09:49:55 +0800</pubDate>
        </item>
        <item>
            <title>[Car Stolen]</title>
            <link>http://forum.lowyat.net/topic/2501887</link>
            <description>Car: Naza Ria&lt;br /&gt;Plate : WLN 7740&lt;br /&gt;Colour: Sandstone&lt;br /&gt;Last seen: Sri Petaling&lt;br /&gt;Others: The rear end (the hatch) is dented&lt;br /&gt;&lt;br /&gt;Please help keep an eye out.  &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;br /&gt;&lt;br /&gt;</description>
            <author>Krevaki</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Sun, 09 Sep 2012 15:50:09 +0800</pubDate>
        </item>
        <item>
            <title>Changing University/Course: A Guide</title>
            <link>http://forum.lowyat.net/topic/2435385</link>
            <description>At the time of writing, most of you should have agreed to your IPTA offer. If not, do it.&lt;br /&gt;&lt;br /&gt;Before I start, I want you to take some time and reflect on this statement: &amp;quot;In life, you do not always get what you want.&amp;quot; Should you be grateful that you got an offer? Should you be asking for a transfer? Should you be whining about how you did not get what you want?&lt;br /&gt;&lt;br /&gt;&lt;span style='color:red'&gt;RAYUAN on UPU website is for those who &lt;b&gt;failed to secure an offer.&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Transfer to a Different University&lt;/u&gt;&lt;br /&gt;To do this, you write a letter to the dean of the faculty of the university with the course that you desire. Write about why you deserve to get in, why you want that particular course, what differences your presence can bring. Include all relevant supporting documents instead of throwing in everything, and preferably arrange in order of importance. If the dean says yes, you can register straight away.&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Intra-University Course Change&lt;/u&gt;&lt;br /&gt;The first way is after your orientation week, send an appeal letter (with supporting documents) to the dean of the faculty with your desired course. You can even get a supporting letter from the dean of the of your original faculty approving you to change (assuming the two courses are in different faculties), but this is optional.&lt;br /&gt;&lt;br /&gt;The second way has a high chance of succeeding. After you have studied for one semester, submit an application letter together with your first semester result to the dean of the faculty with your desired course. If your application does not get approved, try again after every semester until it gets approved. Although, most people just give up after 2 or 3 semesters.&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Through UPU Again&lt;/u&gt;&lt;br /&gt;Wait until the next year, when UPU starts accepting applications again and you apply using the same STPM result you got under the category Diploma (not current STPM). Take note that you will be competing with a new batch, so be careful of your choices.&lt;br /&gt;&lt;br /&gt;&lt;u&gt;That Kind of Cable &lt;/u&gt;&lt;br /&gt;You can try to get help from your local people&amp;#39;s representative/political parties/politicians, but the best kind of cable is the kind within the upper echelons of university staff.&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Change University, but Same Course&lt;/u&gt;&lt;br /&gt;This is not for those who just got their UPU offer. This is for those who did some time at their university (say 1 year), and decide to change to another university for reasons such as closer to home. For this, you need to go to the office and inquire about the procedures. But there is no need to worry about starting over again as it is possible to get exemptions.</description>
            <author>Krevaki</author>
            <category>Education Essentials</category>
            <pubDate>Fri, 20 Jul 2012 09:51:59 +0800</pubDate>
        </item>
        <item>
            <title>Mathematics for Future Engineers</title>
            <link>http://forum.lowyat.net/topic/2392242</link>
            <description>Hi all, this topic is created to help those who decide to go down the Engineering path but aren&amp;#39;t exactly confident when it comes to Mathematics. Here, we show you the kind of Mathematics that you may encounter so that you can have a rough idea as well as a head start. However, we defer the discussion of their applications in Engineering problems to your lecturer.&lt;br /&gt;&lt;br /&gt;We are just starting out so we are lacking from many aspects. Therefore, we would like to ask all those who read our notes to inform us of any error they find as well as provide us with advice on how to make our notes better. We would really appreciate that.&lt;br /&gt;&lt;br /&gt;&lt;a href='http://uploaded.net/file/zfpyzj3i' target='_blank'&gt;http://uploaded.net/file/zfpyzj3i&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Topics covered:&lt;br /&gt;&lt;b&gt;Mathematical Proof:&lt;/b&gt; Mathematical Induction&lt;br /&gt;&lt;b&gt;Coordinate Systems:&lt;/b&gt; Polar Coordinates, Circular Coordinates, Spherical Coordinates&lt;br /&gt;&lt;b&gt;Functions and Limits:&lt;/b&gt; Squeeze Theorem, l&amp;#39;Hopital&amp;#39;s Rule, Method of Bisections&lt;br /&gt;&lt;b&gt;Differentiation:&lt;/b&gt; Rolle&amp;#39;s Theorem, Mean Value Theorem, Linear Approximations&lt;br /&gt;&lt;b&gt;Integration:&lt;/b&gt; Reduction Formula, Improper Integral, Midpoint Rule, Simpson&amp;#39;s Rule, Arc Length, Surface Area&lt;br /&gt;&lt;b&gt;Power Series:&lt;/b&gt; Maclaurin Series, Taylor Series, Taylor&amp;#39;s Theorem&lt;br /&gt;&lt;b&gt;Fourier Series:&lt;/b&gt; Dirichlet Conditions, Fourier Convergence Theorem, Half Range Fourier Series&lt;br /&gt;&lt;b&gt;Multi Variable Differentiation:&lt;/b&gt; Partial Derivatives, Higher Order Partial Derivatives, Increments and Differentials, Chain Rule, Gradient, Directional Derivatives, Extrema, Extreme Value Theorem, Lagrange Multipliers&lt;br /&gt;&lt;b&gt;First Order Differential Equation:&lt;/b&gt; Integrating Factor, Power Series Approximation, Euler&amp;#39;s Method&lt;br /&gt;&lt;b&gt;Second Order Differential Equation:&lt;/b&gt; Homogeneous, Nonhomogeneous, Power Series Solution</description>
            <author>Krevaki</author>
            <category>Education Essentials</category>
            <pubDate>Mon, 18 Jun 2012 18:25:49 +0800</pubDate>
        </item>
        <item>
            <title>Confusion over NUS admission.</title>
            <link>http://forum.lowyat.net/topic/2322977</link>
            <description>Hi all, new here. All right, straight to topic:&lt;br /&gt;&lt;br /&gt;1. I receive an email from NUS congratulating me, saying I made it into FASS, but that is actually my fifth choice. So I&amp;#39;m mulling whether to accept or not (dateline: 4 of May 2012). I&amp;#39;m worried that UPU offer (comes out around July, I believe?) may not be very good.  &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;br /&gt;&lt;br /&gt;2. If I accept their offer, will they allow me to change course or something? Maybe after 1 semester? (I was vying for Mechanical Engineering.)&lt;br /&gt;&lt;br /&gt;3. Arts and Social Sciences cover so much. Do they ask you what you&amp;#39;re going into during admission? Any suggestions on what subjects to take up?&lt;br /&gt;&lt;br /&gt;4. The appeal form on their website (which will be available by 23 of May 2012) is actually for those who didn&amp;#39;t get NUS offer, right?&lt;br /&gt;&lt;br /&gt;5. I have also applied for ASEAN scholarship, but no news on that whatsoever. Anyone know when you will hear from them? I need to secure funding as my family is not loaded.</description>
            <author>Krevaki</author>
            <category>Education Essentials</category>
            <pubDate>Thu, 26 Apr 2012 21:39:09 +0800</pubDate>
        </item>
    </channel>
</rss>
