<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by kirakosmos</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Wed, 17 Jun 2026 05:38:14 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>try to relearn</title>
            <link>http://forum.lowyat.net/topic/5563840</link>
            <description>Hi, Im interested in relearning OOP stuff, where the best link/youtube channel to relearn?&lt;br /&gt;&lt;br /&gt;</description>
            <author>kirakosmos</author>
            <category>Codemasters</category>
            <pubDate>Thu, 07 May 2026 14:27:09 +0800</pubDate>
        </item>
        <item>
            <title>WTS Steamdeck LCD 1TB</title>
            <link>http://forum.lowyat.net/topic/5538832</link>
            <description>I just got scammed by buyer and several transactions need to be done just to receive money from buyer..... so I want to let go steamdeck for RM1499. Thank you&lt;br /&gt;&lt;br /&gt;&lt;a href='https://pictr.com/image/xf3Ivr' target='_blank'&gt;&lt;img src='https://pictr.com/images/2025/09/09/xf3Ivr.md.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href='https://pictr.com/image/xf3w4I' target='_blank'&gt;&lt;img src='https://pictr.com/images/2025/09/09/xf3w4I.md.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;</description>
            <author>kirakosmos</author>
            <category>Games Garage Sales</category>
            <pubDate>Tue, 09 Sep 2025 13:03:36 +0800</pubDate>
        </item>
        <item>
            <title>[SOLVED] Trying to connect to MYSQL via c++</title>
            <link>http://forum.lowyat.net/topic/5533940</link>
            <description>I&amp;#39;m learning a bit of c++ a long ago so I try to connect with MYSQL&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;#include &amp;#60;iostream&amp;#62;&lt;br /&gt;#include &amp;#60;mysql_driver.h&amp;#62;&lt;br /&gt;#include &amp;#60;mysql_connection.h&amp;#62;&lt;br /&gt;#include &amp;#60;cppconn/statement.h&amp;#62;&lt;br /&gt;#include &amp;#60;cppconn/prepared_statement.h&amp;#62;&lt;br /&gt;&lt;br /&gt;int main&amp;#40;&amp;#41;&lt;br /&gt;{&lt;br /&gt;    sql&amp;#58;&amp;#58;mysql&amp;#58;&amp;#58;MySQL_Driver* driver;&lt;br /&gt;    sql&amp;#58;&amp;#58;Connection* conn;&lt;br /&gt;    sql&amp;#58;&amp;#58;PreparedStatement* pstm;&lt;br /&gt;&lt;br /&gt;    std&amp;#58;&amp;#58;string nama;&lt;br /&gt;    int a, umur;&lt;br /&gt;&lt;br /&gt;    std&amp;#58;&amp;#58;cout &amp;#60;&amp;#60; &amp;#34;Masukkan jumlah data&amp;#58; &amp;#34;;&lt;br /&gt;    std&amp;#58;&amp;#58;cin &amp;#62;&amp;#62; a;&lt;br /&gt;&lt;br /&gt;    try {&lt;br /&gt;        driver = sql&amp;#58;&amp;#58;mysql&amp;#58;&amp;#58;get_mysql_driver_instance&amp;#40;&amp;#41;;&lt;br /&gt;        conn = driver-&amp;#62;connect&amp;#40;&amp;#34;tcp&amp;#58;//127.0.0.1&amp;#58;3306&amp;#34;, &amp;#34;root&amp;#34;, &amp;#34;password&amp;#34;&amp;#41;; // adjust credential after test&lt;br /&gt;        conn-&amp;#62;setSchema&amp;#40;&amp;#34;test1&amp;#34;&amp;#41;; // databaseName&lt;br /&gt;        //}&lt;br /&gt;&lt;br /&gt;        for &amp;#40;int i = 0; i &amp;#60; a; ++i&amp;#41; {&lt;br /&gt;            std&amp;#58;&amp;#58;cout &amp;#60;&amp;#60; &amp;#34;Masukkan nama perserta&amp;#58; &amp;#34;;&lt;br /&gt;            std&amp;#58;&amp;#58;cin &amp;#62;&amp;#62; nama;&lt;br /&gt;            std&amp;#58;&amp;#58;cout &amp;#60;&amp;#60; &amp;#34; Masukkan umur perserta&amp;#58; &amp;#34;;&lt;br /&gt;            std&amp;#58;&amp;#58;cin &amp;#62;&amp;#62; umur;&lt;br /&gt;&lt;br /&gt;            pstm = conn-&amp;#62;prepareStatement&amp;#40;&amp;#34;INSERT INTO userData&amp;#40;nama, umur&amp;#41; VALUES &amp;#40;? , ? &amp;#41;&amp;#34;&amp;#41;;&lt;br /&gt;            pstm-&amp;#62;setString&amp;#40;1, nama&amp;#41;;&lt;br /&gt;            pstm-&amp;#62;setInt&amp;#40;2, umur&amp;#41;;&lt;br /&gt;            pstm-&amp;#62;execute&amp;#40;&amp;#41;;&lt;br /&gt;&lt;br /&gt;            std&amp;#58;&amp;#58;cout &amp;#60;&amp;#60; &amp;#34; Data &amp;#34; &amp;#60;&amp;#60; i + 1 &amp;#60;&amp;#60; &amp;#34; dimasukkan.&amp;#092;n&amp;#34;;&lt;br /&gt;            delete pstm;&lt;br /&gt;        }&lt;br /&gt;        delete conn;&lt;br /&gt;        std&amp;#58;&amp;#58;cout &amp;#60;&amp;#60; &amp;#34;Hello World&amp;#33; Data sudah disimpan.&amp;#092;n&amp;#34;;&lt;br /&gt;        return 0;&lt;br /&gt;    }&lt;br /&gt;    catch &amp;#40;sql&amp;#58;&amp;#58;SQLException&amp;amp; e&amp;#41; {&lt;br /&gt;        std&amp;#58;&amp;#58;cerr &amp;#60;&amp;#60; &amp;#34;SQL Error&amp;#58; &amp;#34; &amp;#60;&amp;#60; e.what&amp;#40;&amp;#41;&lt;br /&gt;            &amp;#60;&amp;#60; &amp;#34;&amp;#092;nMySQL Error Code&amp;#58; &amp;#34; &amp;#60;&amp;#60; e.getErrorCode&amp;#40;&amp;#41;&lt;br /&gt;            &amp;#60;&amp;#60; &amp;#34;&amp;#092;nSQLState&amp;#58; &amp;#34; &amp;#60;&amp;#60; e.getSQLState&amp;#40;&amp;#41;&lt;br /&gt;            &amp;#60;&amp;#60; std&amp;#58;&amp;#58;endl;&lt;br /&gt;    }&lt;br /&gt;}&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;I try to connect but it throws me an exception that it Can&amp;#39;t connect with MYSQL. Basically the error I got is:&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('6cfc91f4ce21e13c66ea8389f40be3a1')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;6cfc91f4ce21e13c66ea8389f40be3a1&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;location 0x00000014B2EFBFF0.&lt;br /&gt;Exception thrown at 0x00007FFAB8107F9A in slimApps.exe: Microsoft C++ exception: sql::SQLException at memory location 0x00000014B2EFD710.&lt;br /&gt;Exception thrown at 0x00007FFAB8107F9A in slimApps.exe: Microsoft C++ exception: [rethrow] at memory location 0x0000000000000000.&lt;br /&gt;Exception thrown at 0x00007FFAB8107F9A in slimApps.exe: Microsoft C++ exception: sql::SQLException at memory location 0x00000014B2EFD710.&lt;br /&gt;Exception thrown at 0x00007FF9BA762070 (ucrtbased.dll) in slimApps.exe: 0xC0000005: Access violation reading location 0x00007FF900000000.&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;but on he console it said unable to connect (gibberish) 3306&lt;br /&gt;&lt;br /&gt;Firewall already allowed port 3306 because it connect in workbench... Can someone help me in this? Or because of my latop spec?&lt;br /&gt;&lt;br /&gt;SOLVED&amp;gt; Thank fr anyone who help</description>
            <author>kirakosmos</author>
            <category>Codemasters</category>
            <pubDate>Wed, 30 Jul 2025 14:27:27 +0800</pubDate>
        </item>
        <item>
            <title>TgV tix</title>
            <link>http://forum.lowyat.net/topic/5501736</link>
            <description>3 tix for sale for Sonic 3 at OU tgv 4 PM. PM for details&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Reason for sale: mistakenly bought for today&lt;/b&gt;</description>
            <author>kirakosmos</author>
            <category>Garage Sales</category>
            <pubDate>Sat, 28 Dec 2024 15:07:21 +0800</pubDate>
        </item>
        <item>
            <title>To voters</title>
            <link>http://forum.lowyat.net/topic/0</link>
            <description></description>
            <category>Serious Kopitiam</category>
            <pubDate>Thu, 01 Jan 1970 07:30:00 +0800</pubDate>
        </item>
        <item>
            <title>Change IP address to names</title>
            <link>http://forum.lowyat.net/topic/5337015</link>
            <description>Just want to ask I&amp;#39;m a newbies at networking, &lt;br /&gt;&lt;br /&gt;My question is I have make an applications open to everyone via port forwarding. so canI I change the xxx.xxx.x.xxx to name? Already put under a domain but after clicking the link, the IP address is still visible?&lt;br /&gt;&lt;br /&gt;Please help ti newbies  &lt;!--emo&amp;:cool2:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/cool2.gif' border='0' style='vertical-align:middle' alt='cool2.gif' /&gt;&lt;!--endemo--&gt;  &lt;!--emo&amp;:cool2:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/cool2.gif' border='0' style='vertical-align:middle' alt='cool2.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>kirakosmos</author>
            <category>Content Creators, Blogmasters &amp;amp; Webmasters</category>
            <pubDate>Thu, 08 Dec 2022 10:37:39 +0800</pubDate>
        </item>
        <item>
            <title>WTS Samsung 980 PRO 500GB</title>
            <link>http://forum.lowyat.net/topic/5293911</link>
            <description>Open once only&lt;br /&gt;Warranty 5 years from samsung, sorry no receipt.&lt;br /&gt;Open once only to check&lt;br /&gt;Sale for RM 480</description>
            <author>kirakosmos</author>
            <category>HDDs &amp;amp; SSDs Garage Sales</category>
            <pubDate>Mon, 25 Jul 2022 11:04:21 +0800</pubDate>
        </item>
        <item>
            <title>WTB Macbook Pro 14</title>
            <link>http://forum.lowyat.net/topic/5293875</link>
            <description>As per topic, if I buy 2 macbook, where can i get a special price? This is for government project....</description>
            <author>kirakosmos</author>
            <category>Notebook Specific Discussion</category>
            <pubDate>Mon, 25 Jul 2022 09:04:41 +0800</pubDate>
        </item>
        <item>
            <title>Do pc/laptop....</title>
            <link>http://forum.lowyat.net/topic/5292528</link>
            <description>Do Lenovo,Dell etc or laptop/PC have expo like e3? I dont mean locally but for future release etc?</description>
            <author>kirakosmos</author>
            <category>Kopitiam</category>
            <pubDate>Wed, 20 Jul 2022 12:45:01 +0800</pubDate>
        </item>
        <item>
            <title>WTS Dr Strange tix</title>
            <link>http://forum.lowyat.net/topic/5268658</link>
            <description>As per title, WTS Dr Strange show for tmrw 1 pm at Sunway Pyramid TGV. Original price at RM 33, but let go at RM 30. PM for my acc detail. Will email tix detail after payment is done.</description>
            <author>kirakosmos</author>
            <category>Garage Sales</category>
            <pubDate>Wed, 04 May 2022 21:04:32 +0800</pubDate>
        </item>
        <item>
            <title>Email server</title>
            <link>http://forum.lowyat.net/topic/5262449</link>
            <description>Hi, lately my company company email server always get blocked and of course I ask the technician who haldled the server but till now no answer&lt;br /&gt;So I becomes frustrated so I ask here what is good and affordable web based email server in  malaysia right now? Is it easy to migrate the old setting to new ones?&lt;br /&gt;&lt;br /&gt;Or is there solutions? please help... I&amp;#39;m IT person but not on networking background. &lt;br /&gt;&lt;br /&gt;Sorry if erong place, i post to another thread if wrong place.</description>
            <author>kirakosmos</author>
            <category>Serious Kopitiam</category>
            <pubDate>Wed, 13 Apr 2022 13:19:12 +0800</pubDate>
        </item>
        <item>
            <title>Email server</title>
            <link>http://forum.lowyat.net/topic/5262447</link>
            <description>Hi, lately my company company email server always get blocked and of course I ask the technician who haldled the server but till now no answer&lt;br /&gt;So I becomes frustrated so I ask here what is good and affordable web based email server in  malaysia right now? Is it easy to migrate the old setting to new ones?&lt;br /&gt;&lt;br /&gt;Sorry if erong place, i post to another thread if wrong place.</description>
            <author>kirakosmos</author>
            <category>Content Creators, Blogmasters &amp;amp; Webmasters</category>
            <pubDate>Wed, 13 Apr 2022 13:11:06 +0800</pubDate>
        </item>
        <item>
            <title>SDXMZ Global Trading</title>
            <link>http://forum.lowyat.net/topic/5260294</link>
            <description>Hi,&lt;br /&gt;&lt;br /&gt;SDXMZ provide a service to those who need in repairing or buying computers/laptop in Selangor area. &lt;br /&gt;&lt;br /&gt;We also provide such services to the company who just open up a new premise.&lt;br /&gt;&lt;br /&gt;SDXMZ also available on &lt;a href='https://shp.ee/mm39txb' target='_blank'&gt;shopee&lt;/a&gt;. We sale a lot of IT peripherals, laptop and software especially anti-virus.&lt;br /&gt;&lt;br /&gt;Thank you. &lt;br /&gt;&lt;br /&gt;&lt;a href='http://WA.ME/60176203352' target='_blank'&gt;Whatsapp&lt;/a&gt; HERE&lt;br /&gt;&lt;br /&gt;Portfolio:&lt;br /&gt;&lt;br /&gt;&lt;a href='https://pictr.com/image/BcUqJq' target='_blank'&gt;&lt;img src='https://pictr.com/images/2022/04/06/BcUqJq.md.png' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;HP 15-S laptop for Autocad user&lt;br /&gt;&lt;br /&gt;&lt;a href='https://pictr.com/image/BcU2EI' target='_blank'&gt;&lt;img src='https://pictr.com/images/2022/04/06/BcU2EI.jpg' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;UPS &amp;amp; Router for BRAS Ventures Berhad&lt;br /&gt;&lt;br /&gt;&lt;a href='https://pictr.com/image/BcU3Vr' target='_blank'&gt;&lt;img src='https://pictr.com/images/2022/04/06/BcU3Vr.md.png' border='0' alt='user posted image' /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;3 PC For BRAS Ventures Berhad</description>
            <author>kirakosmos</author>
            <category>Services Noticeboard</category>
            <pubDate>Wed, 06 Apr 2022 09:04:16 +0800</pubDate>
        </item>
        <item>
            <title>Opening shop</title>
            <link>http://forum.lowyat.net/topic/5222156</link>
            <description>Hi, I tried to find proper thread for this but please help tell me if this is the wron place. I recently open a business selling IT stuff from software to hardware, PC and laptop. My question ia where i can search for wholeseller?</description>
            <author>kirakosmos</author>
            <category>Serious Kopitiam</category>
            <pubDate>Tue, 07 Dec 2021 13:44:28 +0800</pubDate>
        </item>
        <item>
            <title>Upgrade Laptop to SSD. Which to use?</title>
            <link>http://forum.lowyat.net/topic/5214461</link>
            <description>I want to upgrade my laptop ASUS A45V HDD to SSD. my budget kinda tight so which one is good? I think laptop more than 10 years, or better buy refurbished one?</description>
            <author>kirakosmos</author>
            <category>Mobile Computing</category>
            <pubDate>Thu, 11 Nov 2021 15:57:37 +0800</pubDate>
        </item>
        <item>
            <title>Got signal, but can&amp;#39;t call and receive</title>
            <link>http://forum.lowyat.net/topic/5194316</link>
            <description>Per title above, why I can&amp;#39;t call? is it because of Volte. My Handphone is Huawei nova 5t.</description>
            <author>kirakosmos</author>
            <category>Telco Talk</category>
            <pubDate>Mon, 13 Sep 2021 15:45:46 +0800</pubDate>
        </item>
        <item>
            <title>Interested in doing lalamove</title>
            <link>http://forum.lowyat.net/topic/5089985</link>
            <description>I like to do lalamove car service, but is it required to stick your car? I don&amp;#39;t want my car fill with sticker...</description>
            <author>kirakosmos</author>
            <category>E-hailing &amp;amp; Ride-sharing</category>
            <pubDate>Tue, 19 Jan 2021 11:12:10 +0800</pubDate>
        </item>
        <item>
            <title>WTR T-Parkland condo facing lake</title>
            <link>http://forum.lowyat.net/topic/5072872</link>
            <description>Look &lt;a href='https://mudah.my/T+Parkland+13A+Floor+for+rent+Bumiputera+only-87382140.htm' target='_blank'&gt;here&lt;/a&gt; for detail</description>
            <author>kirakosmos</author>
            <category>Property For Rent</category>
            <pubDate>Tue, 15 Dec 2020 14:21:33 +0800</pubDate>
        </item>
        <item>
            <title>Start a business</title>
            <link>http://forum.lowyat.net/topic/4977525</link>
            <description>I want to start a business that sells/service laptop, computers or all related stuff. It is my passion from my uni years ago. But then i don&amp;#39;t even know how financing works etc break-even stuff. let say i need 150,000-200,000 to start a business and achieved 75,000-80,000 per year. Is this logical?</description>
            <author>kirakosmos</author>
            <category>Serious Kopitiam</category>
            <pubDate>Thu, 11 Jun 2020 16:05:15 +0800</pubDate>
        </item>
        <item>
            <title>Changing job</title>
            <link>http://forum.lowyat.net/topic/4907676</link>
            <description>Hi, I&amp;#39;m trying to get a new job mainly bcoz of future of my family. Current company now faces uncertainty whether can pay or not. Anyway do I need past cert like spm result and surat beranak and such for interview? I 35 BTW</description>
            <author>kirakosmos</author>
            <category>Serious Kopitiam</category>
            <pubDate>Tue, 18 Feb 2020 10:47:46 +0800</pubDate>
        </item>
    </channel>
</rss>
