<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by nyem</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Wed, 03 Jun 2026 12:40:14 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>OpenAI</title>
            <link>http://forum.lowyat.net/topic/5334702</link>
            <description>I&amp;#39;m impressed with &lt;a href='https://chat.openai.com/chat' target='_blank'&gt;OpenAI&lt;/a&gt; &lt;a href='https://openai.com/blog/chatgpt/' target='_blank'&gt;https://openai.com/blog/chatgpt/&lt;/a&gt; capability to generate working codes.&lt;br /&gt;&lt;br /&gt;Here&amp;#39;s one of my simple questions:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Q&lt;/b&gt; How to create a javascript countdown to 2023?&lt;br /&gt;&lt;br /&gt;and the returned answer:&lt;br /&gt;&lt;br /&gt;&lt;!--QuoteBegin--&gt;&lt;div class='quotetop'&gt;QUOTE&lt;/div&gt;&lt;div class='quotemain'&gt;&lt;!--QuoteEBegin--&gt;&lt;br /&gt;Here&amp;#39;s one way to create a JavaScript countdown to 2023:&lt;br /&gt;&lt;br /&gt;First, create a Date object for the target date (2023) using the Date constructor:&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;const targetDate = new Date&amp;#40;2023, 0, 1&amp;#41;; // January 1, 2023&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;Next, create a function that calculates the time remaining until the target date and returns it as a string. This function can use the Date object&amp;#39;s getTime() method to get the current time, and then subtract that from the target date&amp;#39;s time to find the time remaining. It can then use the Date object&amp;#39;s getTime() method to convert that time into a human-readable format, such as days, hours, minutes, and seconds.&lt;br /&gt;&lt;br /&gt;Here&amp;#39;s an example of what that function might look like:&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;function getTimeRemaining&amp;#40;&amp;#41; {&lt;br /&gt; &amp;nbsp;const currentTime = new Date&amp;#40;&amp;#41;.getTime&amp;#40;&amp;#41;; // get current time&lt;br /&gt; &amp;nbsp;const timeRemaining = targetDate - currentTime; // find time remaining&lt;br /&gt; &amp;nbsp;const days = Math.floor&amp;#40;timeRemaining / &amp;#40;1000 * 60 * 60 * 24&amp;#41;&amp;#41;; // convert time to days&lt;br /&gt; &amp;nbsp;const hours = Math.floor&amp;#40;&amp;#40;timeRemaining % &amp;#40;1000 * 60 * 60 * 24&amp;#41;&amp;#41; / &amp;#40;1000 * 60 * 60&amp;#41;&amp;#41;; // convert time to hours&lt;br /&gt; &amp;nbsp;const minutes = Math.floor&amp;#40;&amp;#40;timeRemaining % &amp;#40;1000 * 60 * 60&amp;#41;&amp;#41; / &amp;#40;1000 * 60&amp;#41;&amp;#41;; // convert time to minutes&lt;br /&gt; &amp;nbsp;const seconds = Math.floor&amp;#40;&amp;#40;timeRemaining % &amp;#40;1000 * 60&amp;#41;&amp;#41; / 1000&amp;#41;; // convert time to seconds&lt;br /&gt;&lt;br /&gt; &amp;nbsp;return `&amp;#036;{days} days, &amp;#036;{hours} hours, &amp;#036;{minutes} minutes, and &amp;#036;{seconds} seconds`; // return time remaining as a string&lt;br /&gt;}&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;Finally, use setInterval() to call the getTimeRemaining() function repeatedly, at a regular interval (such as every second). This will update the countdown display with the latest time remaining.&lt;br /&gt;Here&amp;#39;s an example of how you might use setInterval() to call the getTimeRemaining() function every second:&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;setInterval&amp;#40;&amp;#40;&amp;#41; =&amp;#62; {&lt;br /&gt; &amp;nbsp;const timeRemaining = getTimeRemaining&amp;#40;&amp;#41;; // calculate time remaining&lt;br /&gt; &amp;nbsp;console.log&amp;#40;timeRemaining&amp;#41;; // log time remaining to the console&lt;br /&gt;}, 1000&amp;#41;; // call getTimeRemaining&amp;#40;&amp;#41; every second&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;You can use the timeRemaining string returned by getTimeRemaining() to display the countdown on your webpage using a &amp;lt;p&amp;gt; element or some other HTML element.&lt;br /&gt;&lt;br /&gt;I hope this helps&amp;#33; Let me know if you have any other questions.&lt;br /&gt;&lt;!--QuoteEnd--&gt;&lt;/div&gt;&lt;!--QuoteEEnd--&gt;&lt;br /&gt;&lt;br /&gt;It can come up with some algorithms that might take us hours to code, surely a big help for us programmers so that we can concentrate on the bigger logic and let openai do the details.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description>
            <author>nyem</author>
            <category>Codemasters</category>
            <pubDate>Thu, 01 Dec 2022 20:35:10 +0800</pubDate>
        </item>
        <item>
            <title>Github pages data update</title>
            <link>http://forum.lowyat.net/topic/4920653</link>
            <description>This site &lt;a href='https://stayinghome.club/' target='_blank'&gt;https://stayinghome.club/&lt;/a&gt; is published on github pages: &lt;a href='https://github.com/phildini/stayinghomeclub/' target='_blank'&gt;https://github.com/phildini/stayinghomeclub/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;How do they update the data, is it via pull requests only?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description>
            <author>nyem</author>
            <category>Codemasters</category>
            <pubDate>Wed, 11 Mar 2020 02:33:53 +0800</pubDate>
        </item>
        <item>
            <title>Robotics, IoT &amp;amp; Big Data Researchers</title>
            <link>http://forum.lowyat.net/topic/4706834</link>
            <description>Cross posted to &lt;a href='https://forum.lowyat.net/topic/4706831' target='_blank'&gt;Job Enlistment&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Multiple positions available at Malaysia Automotive, Robotics &amp;amp; IoT Institute (MARii), see &lt;a href='http://mai.org.my/careers-at-marii/' target='_blank'&gt;http://mai.org.my/careers-at-marii/&lt;/a&gt; for more info and full listings.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description>
            <author>nyem</author>
            <category>Codemasters</category>
            <pubDate>Wed, 12 Dec 2018 11:55:39 +0800</pubDate>
        </item>
        <item>
            <title>Big Data Researchers</title>
            <link>http://forum.lowyat.net/topic/4706831</link>
            <description>Multiple positions available at Malaysia Automotive, Robotics &amp;amp; IoT Institute (MARii), see &lt;a href='http://mai.org.my/careers-at-marii/' target='_blank'&gt;http://mai.org.my/careers-at-marii/&lt;/a&gt; for more info and full listings.&lt;br /&gt;&lt;br /&gt;Please send in your enquiries and resume to jobs@marii.my&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;POSITION: &lt;b&gt;Researcher, Big Data Analytics System Integrator&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;QUALIFICATION &amp;amp; REQUIREMENTS: Minimum Master in Engineering / Applied Science / IT, any related technology field discipline (with minimum 2 years working experience)&lt;br /&gt;&lt;br /&gt;JOB DESCRIPTION:&lt;br /&gt;• Prepare the materials required for the presentation of the division’s pertaining to the use cases of Big Data Analytics in upcoming/potential MDOTS project;&lt;br /&gt;• Knowledgeable in the field of Industry 4.0 and System Integrator;&lt;br /&gt;• Strategize, plan and execute strategic research projects under MDOTS;&lt;br /&gt;• Develop the research or projects framework with the best possible methodological manner;&lt;br /&gt;• Provide research findings to be aligned with use cases and wider scope of technology applications;&lt;br /&gt;• Provide planning for technology development (localisation/local capacity building) and commercialization;&lt;br /&gt;• Provide critical and analytical impact analysis/cost benefit analysis to accelerate the economic spin-off for the developing technologies;&lt;br /&gt;• Conduct engagements with relevant stakeholders (Government/Industry/Academia) for research/projects development; and&lt;br /&gt;• Responsible to plan, execute and monitor all projects.&lt;br /&gt;• To report to the Manager of MDOTS Research &amp;amp; Development Division.&lt;br /&gt;&lt;br /&gt;OTHER SPECIFIC REQUIREMENTS&lt;br /&gt;• Strong research methodological approach in work nature;&lt;br /&gt;• Critical and analytical thinking;&lt;br /&gt;• Work with minimal supervision and long hours;&lt;br /&gt;• Able to provide solutions in best possible and feasible ways with limited resources; and&lt;br /&gt;&lt;br /&gt;Able to work flexible working hours and provide necessary support as assigned by the Manager.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;POSITION: &lt;b&gt;Researcher, Use Cases of Big Data Analytics&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;QUALIFICATION &amp;amp; REQUIREMENTS: Minimum Master in Engineering / Applied Science / IT, any related technology field discipline (with minimum 2 years working experience)&lt;br /&gt;&lt;br /&gt;JOB DESCRIPTION:&lt;br /&gt;• Prepare the materials required for the presentation of the division’s pertaining to the use cases of Big Data Analytics in upcoming/potential MDOTS project;&lt;br /&gt;• Knowledgeable in the field of Industry 4.0 and System Integrator;&lt;br /&gt;• Strategize, plan and execute strategic research projects under MDOTS;&lt;br /&gt;• Develop the research or projects framework with the best possible methodological manner;&lt;br /&gt;• Provide research findings to be aligned with use cases and wider scope of technology applications;&lt;br /&gt;• Provide planning for technology development (localisation/local capacity building) and commercialization;&lt;br /&gt;• Provide critical and analytical impact analysis/cost benefit analysis to accelerate the economic spin-off for the developing technologies;&lt;br /&gt;• Conduct engagements with relevant stakeholders (Government/Industry/Academia) for research/projects development; and&lt;br /&gt;• Responsible to plan, execute and monitor all projects.&lt;br /&gt;• To report to the Manager of MDOTS Research &amp;amp; Development Division.&lt;br /&gt;&lt;br /&gt;OTHER SPECIFIC REQUIREMENTS&lt;br /&gt;• Strong research methodological approach in work nature;&lt;br /&gt;• Critical and analytical thinking;&lt;br /&gt;• Work with minimal supervision and long hours;&lt;br /&gt;• Able to provide solutions in best possible and feasible ways with limited resources; and&lt;br /&gt;Able to work flexible working hours and provide necessary support as assigned by the Manager.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;POSITION: &lt;b&gt;Researcher, Big Data Analytics Architecture&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;QUALIFICATION &amp;amp; REQUIREMENTS: Minimum Master in Engineering / Applied Science / IT, any related technology field discipline (with minimum 2 years working experience)&lt;br /&gt;&lt;br /&gt;JOB DESCRIPTION:&lt;br /&gt;• Prepare the materials required for the presentation of the division’s pertaining to the Architecture of Big Data Analytics in upcoming/potential MDOTS project;&lt;br /&gt;• Knowledgeable in the field of Industry 4.0 and System Integrator;&lt;br /&gt;• Strategize, plan and execute strategic research projects under MDOTS;&lt;br /&gt;• Develop the research or projects framework with the best possible methodological manner;&lt;br /&gt;• Provide research findings to be alligned with use cases and wider scope of technology applications;&lt;br /&gt;• Provide planning for technology development (localisation/local capacity building) and commercialization;&lt;br /&gt;• Provide critical and analytical impact analysis/cost benefit analysis to accelerate the economic spin-off for the developing technologies;&lt;br /&gt;• Conduct engagements with relevant stakeholders (Government/Industry/Academia) for research/projects development;&lt;br /&gt;• Responsible to plan, execute and monitor all projects; and&lt;br /&gt;• To report to the Manager of MDOTS Research &amp;amp; Development Division.&lt;br /&gt;&lt;br /&gt;</description>
            <author>nyem</author>
            <category>Job Enlistments</category>
            <pubDate>Wed, 12 Dec 2018 11:50:40 +0800</pubDate>
        </item>
        <item>
            <title>[WTH] System/Network Admin</title>
            <link>http://forum.lowyat.net/topic/4588283</link>
            <description>&lt;b&gt;Name of Company:&lt;/b&gt; &lt;br /&gt;Aga Touch Sdn Bhd &lt;br /&gt;Kota Kemuning, Shah Alam&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Role:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;System/Network Admin&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Remuneration:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;* Depends on experience, skill sets, certificates&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Requirements:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;* Knowledge of IT infrastructure technology including servers , storage , networks , operating systems, platforms and configurations in particular&lt;br /&gt;&lt;br /&gt;* VMware solution (vSphere) and Linux environment.&lt;br /&gt;&lt;br /&gt;* Experience in configuring and managing firewall such as Cisco ASA, Fortigate or Huawei firewall.&lt;br /&gt;&lt;br /&gt;* At least a Bachelor&amp;#39;s Degree, Post Graduate Diploma, Professional Degree, Computer Science/Information Technology or equivalent.&lt;br /&gt;&lt;br /&gt;* Required skill(s): mcse, ccna, ccnp, VMware are desirable.&lt;br /&gt;&lt;br /&gt;* At least 6 year(s) of working experience in the related field&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Role &amp;amp; Responsibilities:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;*  Provides technical guidance for directing and monitoring information systems operations. designs, builds, and implements systems.&lt;br /&gt;&lt;br /&gt;*  Assist Development Team on providing IT infrastructure for deploying services.&lt;br /&gt;&lt;br /&gt;*  Performs system-level design and configuration of products including determination of hardware, OS, and other platform specifications.&lt;br /&gt;&lt;br /&gt;*  Provides assistance and oversight for all systems operations activities, including computer and telecommunications, operating systems, system security policy procedures, and/or web strategy and operations&lt;br /&gt;&lt;br /&gt;*  Manages network environment such as firewalls and switches.&lt;br /&gt;&lt;br /&gt;*  Develop and maintain comprehensive and current support documentation (hardware/software inventory, checklists, SOP&amp;#39;s, diagrams, etc.)&lt;br /&gt;&lt;br /&gt;*  Establish and maintain comprehensive capacity management planning process at the enterprise, system and IT component level taking into account current and new requirements, including those from new or modified Software.&lt;br /&gt;&lt;br /&gt;*  Assess Incidents/Problems and make appropriate capacity IT changes to improve Services performance&lt;br /&gt;&lt;br /&gt;*  Develop and maintain a business recovery plan to ensure timely and effective restoration of IT services in the event of a disaster&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Contact Person:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Email: walid@agagroup.my&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description>
            <author>nyem</author>
            <category>Job Enlistments</category>
            <pubDate>Tue, 22 May 2018 11:27:22 +0800</pubDate>
        </item>
        <item>
            <title>Programming Competitions / Hackathons</title>
            <link>http://forum.lowyat.net/topic/3989186</link>
            <description>Anyone interested on this programming competition&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.theregister.co.uk/Design/page/hub/ibm2016/#five' target='_blank'&gt;http://www.theregister.co.uk/Design/page/hub/ibm2016/#five&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--QuoteBegin--&gt;&lt;div class='quotetop'&gt;QUOTE&lt;/div&gt;&lt;div class='quotemain'&gt;&lt;!--QuoteEBegin--&gt;&lt;br /&gt;STARTS: 28th June 2016&lt;br /&gt;&lt;br /&gt;ENDS: 28th August 2016&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Eligibility&lt;br /&gt;&lt;br /&gt;○ THE CHALLENGE is free and accessible to all potential participants: developers, digital designers, marketing specialists or entrepreneurs.&lt;br /&gt;&lt;br /&gt;○ The participants can be students, employees, freelance or in job search.&lt;br /&gt;&lt;br /&gt;○ THE CHALLENGE is open to all countries and nationalities.&lt;br /&gt;&lt;br /&gt;○ THE CHALLENGE is open to every person who can prove that he/she is not a minor (18 years and older) on the participation date.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Entries and judging&lt;br /&gt;&lt;br /&gt;You should submit your solution via this web page. The judge will run your programme using test data (which is not published). No feedback will be given prior to the end of the competition.&lt;br /&gt;&lt;br /&gt;&lt;!--QuoteEnd--&gt;&lt;/div&gt;&lt;!--QuoteEEnd--&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style='font-size:14pt;line-height:100%'&gt;&lt;b&gt;The Question - Decathlon&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The Decathlon is a sporting competition comprising ten events which is usually run over the course of two days. The events are of three types:&lt;br /&gt;&lt;br /&gt;Running: 100m, 110m hurdles, 400m and 1,500m.&lt;br /&gt;Throwing: Discus, javelin and shot put.&lt;br /&gt;Jumping: Long jump, high jump and pole vault.&lt;br /&gt;When calculating the scores for competitors:&lt;br /&gt;&lt;br /&gt;Running events are measured in seconds (the time taken to run from start to finish).&lt;br /&gt;Throwing events are measured in metres (the distance the piece of equipment is thrown).&lt;br /&gt;Jumping events are measured in centimetres (the height or distance jumped/vaulted).&lt;br /&gt;The points formulae are as follows, and are taken from the scoring template of the International Association of Athletics Federations (IAAF). Note that:&lt;br /&gt;&lt;br /&gt;P is the number of points scored for the event in question by a competitor.&lt;br /&gt;T is the time in seconds the competitor took to run a race.&lt;br /&gt;M is the measurement in centimetres for jumps.&lt;br /&gt;D is the distance in metres achieved in a throwing event.&lt;br /&gt;T is the time in seconds for running events.&lt;br /&gt;A, B and C are taken from the table below.&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;Event &amp;nbsp; &amp;nbsp;Abbreviation &amp;nbsp;A &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;B &amp;nbsp; C&lt;br /&gt;100m &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 100m 25.4347 &amp;nbsp; &amp;nbsp;18 &amp;nbsp; 1.81&lt;br /&gt;110m hurdles &amp;nbsp; &amp;nbsp; 110m &amp;nbsp;5.74352 &amp;nbsp; 28.5 1.92&lt;br /&gt;400m &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 400m &amp;nbsp;1.53775 &amp;nbsp; 82 &amp;nbsp; 1.81&lt;br /&gt;1500m &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1500m &amp;nbsp;0.03768 &amp;nbsp;480 &amp;nbsp; 1.85&lt;br /&gt;Discus &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Discus 12.91 &amp;nbsp; &amp;nbsp; &amp;nbsp; 4 &amp;nbsp; 1.1&lt;br /&gt;Javelin &amp;nbsp; &amp;nbsp; &amp;nbsp; Javelin 10.14 &amp;nbsp; &amp;nbsp; &amp;nbsp; 7 &amp;nbsp; 1.08&lt;br /&gt;Shot put &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Shot 51.39 &amp;nbsp; &amp;nbsp; &amp;nbsp; 1.5 1.05&lt;br /&gt;Long jump &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Long &amp;nbsp;0.14354 &amp;nbsp;220 &amp;nbsp; 1.4&lt;br /&gt;High jump &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;High &amp;nbsp;0.8465 &amp;nbsp; &amp;nbsp;75 &amp;nbsp; 1.42&lt;br /&gt;Pole vault &amp;nbsp; &amp;nbsp; &amp;nbsp; Pole &amp;nbsp;0.2797 &amp;nbsp; 100 &amp;nbsp; 1.35&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;For running events: P = A(B-T)C&lt;br /&gt;For throwing events: P = A(D-B)C&lt;br /&gt;For jumping events: P = A(M-B)C&lt;br /&gt;In all cases P should be rounded down if it is not already an integer. So for instance 49.99 would round down to 49.&lt;br /&gt;&lt;br /&gt;For example, a 100m time of 10.2 seconds would be calculated as 25.4347 x (18-10.2)1.81, which works out to 1047.412736, which in turn rounds down to 1047 points.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Sample input&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;Carter 100m 10.64&lt;br /&gt;Bush 100m 10.20&lt;br /&gt;Reagan 100m 10.3&lt;br /&gt;#&lt;br /&gt;Reagan Javelin 60.4&lt;br /&gt;Carter Javelin 64.3&lt;br /&gt;REAGAN Long 690&lt;br /&gt;Bush 400m 43.2&lt;br /&gt;#&lt;br /&gt;##&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Sample output&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;BUSH &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1047&lt;br /&gt;REAGAN &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1023&lt;br /&gt;CARTER &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;942&lt;br /&gt;&lt;br /&gt;REAGAN &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1534&lt;br /&gt;BUSH &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1155&lt;br /&gt;CARTER &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;803&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;</description>
            <author>nyem</author>
            <category>Codemasters</category>
            <pubDate>Wed, 29 Jun 2016 17:47:21 +0800</pubDate>
        </item>
        <item>
            <title>1PC with 6 HDMI output possible?</title>
            <link>http://forum.lowyat.net/topic/3475426</link>
            <description>I need to connect a PC to 6 TVs via HDMI.  &lt;br /&gt;&lt;br /&gt;Currently cannot find a display card with more than two HDMIs, most are with 2 HDMI, 1 DVI &amp;amp; 1 RGB.  RGB resolution is low making it not consistent with HDMI output. Not sure about the DVi resolution though.&lt;br /&gt;&lt;br /&gt;Tried to look at video-wall solution but they deal mostly with video output, I&amp;#39;ll be displaying web apps from browsers. Those TVs are already in place so cannot ask for smart-TVs with built-in browsers.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description>
            <author>nyem</author>
            <category>Hardware</category>
            <pubDate>Tue, 20 Jan 2015 14:02:07 +0800</pubDate>
        </item>
        <item>
            <title>Monitors suitable for video wall</title>
            <link>http://forum.lowyat.net/topic/2988344</link>
            <description>I&amp;#39;m tying to create a video wall with 8 monitors in my office but can&amp;#39;t seem to find cheap one with at least 1 usb port and vesa mount. LED TV with usb port + vesa mount are plentily available and much cheaper but I&amp;#39;m concerned on their display quality as the screens will be used to display text rather than videos.&lt;br /&gt;&lt;br /&gt;Any suggestions?&lt;br /&gt;&lt;br /&gt;</description>
            <author>nyem</author>
            <category>Hardware</category>
            <pubDate>Wed, 09 Oct 2013 11:29:09 +0800</pubDate>
        </item>
        <item>
            <title>coders&amp;#39; kopitiam</title>
            <link>http://forum.lowyat.net/topic/2006403</link>
            <description>&lt;img src='http://www.landingpages.co.il/wix/web-designers-vs-developers.png' border='0' alt='user posted image' /&gt;</description>
            <author>nyem</author>
            <category>Codemasters</category>
            <pubDate>Sun, 21 Aug 2011 18:43:59 +0800</pubDate>
        </item>
        <item>
            <title>Astro cannot calculate</title>
            <link>http://forum.lowyat.net/topic/1121017</link>
            <description>Got an SMS from Astro to upgrade my package via &lt;a href='http://www.astro.com.my/getastro/packages/packages_lineup.asp?x=up' target='_blank'&gt;http://www.astro.com.my/getastro/packages/...lineup.asp?x=up&lt;/a&gt; but there must be something wrong with their calculation when I get 2 different results for whatever I chose&lt;br /&gt;&lt;br /&gt;Looking at the &lt;a href='http://www.astro.com.my/code_inc/js/pckCnt.js' target='_blank'&gt;code&lt;/a&gt; I see lots of else if  statements. &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; &amp;nbsp; total_price=total_price; &amp;nbsp;&lt;br /&gt; &amp;nbsp; if &amp;#40;FinalMatrix==&amp;#34;1,0,0&amp;#34;&amp;#41; { //family&lt;br /&gt; &amp;nbsp;total_price = &amp;#34;37.95&amp;#34;;&lt;br /&gt; &amp;nbsp; }else if &amp;#40;FinalMatrix==&amp;#34;1,2,0&amp;#34;&amp;#41; { //family+2mini&lt;br /&gt; &amp;nbsp;total_price = &amp;#34;49.95&amp;#34;;&lt;br /&gt; &amp;nbsp; }else if &amp;#40;FinalMatrix==&amp;#34;1,3,0&amp;#34;&amp;#41; { //family+3mini&lt;br /&gt; &amp;nbsp;total_price = &amp;#34;54.95&amp;#34;;&lt;br /&gt; &amp;nbsp; }else if &amp;#40;FinalMatrix==&amp;#34;1,4,0&amp;#34;&amp;#41; { //family+4mini&lt;br /&gt; &amp;nbsp;total_price = &amp;#34;69.95&amp;#34;;&lt;br /&gt; &amp;nbsp; }else if &amp;#40;FinalMatrix==&amp;#34;4,0,0&amp;#34;&amp;#41; { //family+Movies&lt;br /&gt; &amp;nbsp;total_price = &amp;#34;75.95&amp;#34;;&lt;br /&gt; &amp;nbsp; }else if &amp;#40;FinalMatrix==&amp;#34;4,2,0&amp;#34;&amp;#41; { //family+Movies+2mini&lt;br /&gt; &amp;nbsp;total_price = &amp;#34;84.95&amp;#34;; &lt;br /&gt;...&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;Anyone can suggest a better (and correct) algorithm?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description>
            <author>nyem</author>
            <category>Codemasters</category>
            <pubDate>Thu, 06 Aug 2009 12:23:03 +0800</pubDate>
        </item>
        <item>
            <title>number of files per folder limitation</title>
            <link>http://forum.lowyat.net/topic/559607</link>
            <description>Is there a limit on the number of files that a folder can have in any of the following OS? xp, mac, nokia memory card.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m rendering map tiles and on the detail levels the number of files can be very large.  If there&amp;#39;s such limits I might want to reorganise the output folders.&lt;br /&gt;</description>
            <author>nyem</author>
            <category>Codemasters</category>
            <pubDate>Fri, 23 Nov 2007 12:50:13 +0800</pubDate>
        </item>
        <item>
            <title>[mysql] How to get date from a known week number</title>
            <link>http://forum.lowyat.net/topic/541578</link>
            <description></description>
            <author>nyem</author>
            <category>Codemasters</category>
            <pubDate>Wed, 24 Oct 2007 15:32:51 +0800</pubDate>
        </item>
        <item>
            <title>setAttribute name doesn&amp;#39;t work in IE7</title>
            <link>http://forum.lowyat.net/topic/476351</link>
            <description>I have the following html input box&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&amp;#60;input type=&amp;#34;text&amp;#34; name=&amp;#34;StartDate&amp;#34; size=&amp;#34;12&amp;#34;/&amp;#62;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;Which I cloned and assign different name via&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;element.setAttribute&amp;#40;&amp;#39;name&amp;#39;, &amp;#39;StartDate&amp;#39;+1 &amp;#41;;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;The above code works in Opera,Safari &amp;amp; FF, but not in IE7. Tried the following but also fails in IE7&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;element.name = &amp;#39;StartDate&amp;#39;+1;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;Any workaround?&lt;br /&gt;&lt;br /&gt;</description>
            <author>nyem</author>
            <category>Codemasters</category>
            <pubDate>Thu, 21 Jun 2007 15:03:14 +0800</pubDate>
        </item>
        <item>
            <title>Opera Widget contest</title>
            <link>http://forum.lowyat.net/topic/457307</link>
            <description>There&amp;#39;s a new contest for Opera Widget developers.&lt;br /&gt;&lt;br /&gt;Widget Theme: Widget for travelers&lt;br /&gt;&lt;br /&gt;Prizes: &lt;br /&gt;     1st: Windows Mobile phone that runs Opera&lt;br /&gt;     2nd: Nintendo DS Lite&lt;br /&gt;     5 runner-ups will get Opera goodie bags with t-shirts, pins, stickers, etc.&lt;br /&gt;    &lt;br /&gt;Early Bird Prize: Nintendo DS Lite (for most downloaded widget by 28 May)&lt;br /&gt;&lt;br /&gt;Deadline: 4 June 2007&lt;br /&gt;&lt;br /&gt;Contest details: &lt;a href='http://my.opera.com/widgets/blog/show.dml/1004278' target='_blank'&gt;Calling All Widget Developers: Lend a hand to travelers everywhere&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;For more info about Opera widget see &lt;a href='http://widgets.opera.com/' target='_blank'&gt;Opera Widgets&lt;/a&gt; and&lt;br /&gt;&lt;a href='http://my.opera.com/community/forums/forum.dml?id=1296' target='_blank'&gt;Opera Widgets Forum&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve won myself Opera goodie bags for my &lt;a href='http://widgets.opera.com/widget/5178' target='_blank'&gt;Earthquake Map&lt;/a&gt; widget last year. Quite easy and fun programming exercise.&lt;br /&gt;&lt;br /&gt;</description>
            <author>nyem</author>
            <category>Codemasters</category>
            <pubDate>Tue, 15 May 2007 14:45:21 +0800</pubDate>
        </item>
    </channel>
</rss>
