<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by virtual</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Fri, 05 Jun 2026 23:07:39 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Linux System Engineer</title>
            <link>http://forum.lowyat.net/topic/0</link>
            <description></description>
            <category>Jobs &amp;amp; Careers</category>
            <pubDate>Thu, 01 Jan 1970 07:30:00 +0800</pubDate>
        </item>
        <item>
            <title>Server Casing</title>
            <link>http://forum.lowyat.net/topic/379487</link>
            <description>Hi there,&lt;br /&gt;    I saw your pricelist for Enlight&amp;#39;s 1U casing and it costs RM 1600. Is there any other brand which is cheaper? Thanks.</description>
            <author>virtual</author>
            <category>Price &amp;amp; Dealers Guide</category>
            <pubDate>Fri, 08 Dec 2006 11:32:37 +0800</pubDate>
        </item>
        <item>
            <title>Bittorrent with Secure-Tunnel</title>
            <link>http://forum.lowyat.net/topic/348921</link>
            <description>Come guys, I&amp;#39;m curious with the statistics.  &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;</description>
            <author>virtual</author>
            <category>Networks and Broadband</category>
            <pubDate>Wed, 04 Oct 2006 00:13:08 +0800</pubDate>
        </item>
        <item>
            <title>[JAVA] Code to check command line argument</title>
            <link>http://forum.lowyat.net/topic/328803</link>
            <description>The program should print the syntax if wrong command line argument is supplied. The syntax is roughly like this...&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;C&amp;#58;&amp;#092;java cmd 1 2&lt;br /&gt;Syntax &amp;nbsp; &amp;#58; java CmdLine &amp;#91;option&amp;#93; &amp;#91;file&amp;#93;&lt;br /&gt;Example &amp;nbsp;&amp;#58; java CmdLine -enc dummy.txt&lt;br /&gt;Information.&lt;br /&gt;-enc -&amp;#62; encrypt file&lt;br /&gt;-dec -&amp;#62; decrypt file&lt;br /&gt;file -&amp;#62; ASCII text file.&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;I&amp;#39;ll list my common approach first.&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;public class CmdLine {&lt;br /&gt; &amp;nbsp; public static void main&amp;#40;String&amp;#91;&amp;#93; args&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;if &amp;#40;args.length==2&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if &amp;#40;args&amp;#91;0&amp;#93;.equals&amp;#40;&amp;#34;-enc&amp;#34;&amp;#41;&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//perform encryption&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } else if &amp;#40;args&amp;#91;1&amp;#93;.equals&amp;#40;&amp;#34;-dec&amp;#34;&amp;#41;&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//perform decryption&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } else {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;displaySyntax&amp;#40;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;} else {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; displaySyntax&amp;#40;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt; &amp;nbsp; }&lt;br /&gt;&lt;br /&gt; &amp;nbsp; private static void displaySyntax&amp;#40;&amp;#41; {&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.out.println&amp;#40;&amp;#34;Syntax &amp;nbsp; &amp;#58; java CmdLine &amp;#91;option&amp;#93; &amp;#91;file&amp;#93;&amp;#34;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.out.println&amp;#40;&amp;#34;Example &amp;nbsp;&amp;#58; java CmdLine -enc dummy.txt&amp;#34;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.out.println&amp;#40;&amp;#34;Information.&amp;#34;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.out.println&amp;#40;&amp;#34;option -&amp;#62; -enc for encrypt, -dec for decrypt&amp;#34;&amp;#41;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.out.println&amp;#40;&amp;#34;file -&amp;#62; ASCII text file.&amp;#34;&amp;#41;;&lt;br /&gt; &amp;nbsp; }&lt;br /&gt;}&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;Is there any better way? Please post your approaches  &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;</description>
            <author>virtual</author>
            <category>Codemasters</category>
            <pubDate>Fri, 18 Aug 2006 18:49:42 +0800</pubDate>
        </item>
        <item>
            <title>SMS service center number</title>
            <link>http://forum.lowyat.net/topic/317643</link>
            <description>I want to know the specification of SMS service center number? Anyone knows? Usually it is 5 digits such as for tracking saman &amp;#39;SAMAN &amp;lt;Nombor I/C&amp;gt;&amp;#39; to &lt;b&gt;32244&lt;/b&gt;.</description>
            <author>virtual</author>
            <category>Networks and Broadband</category>
            <pubDate>Mon, 24 Jul 2006 01:03:14 +0800</pubDate>
        </item>
        <item>
            <title>Evertonians and Kopites</title>
            <link>http://forum.lowyat.net/topic/284406</link>
            <description>THREE EVERTON FANS AND THREE LIVERPOOL FANS ARE TRAVELLING BY TRAIN TO THEIR RESPECTIVE F.A.CUP TIES IN LONDON.&lt;br /&gt;&lt;br /&gt;AT THE STATION, THE THREE REDS BUY A TICKET AND WATCH AS THE THREE EVERTONIANS BUY JUST ONE TICKET BETWEEN THEM.&lt;br /&gt;&lt;br /&gt;&amp;quot;HOW ARE THE THREE OF YOU GOING TO TRAVEL ON ONLY ONE TICKET?&amp;quot; ASKS ONE OF THE KOPITES.&lt;br /&gt;&lt;br /&gt;&amp;quot;WATCH AND LEARN.&amp;quot; ANSWERS ONE OF THE BLUE NOSES. THEY ALL BOARD THE TRAIN. THE KOPITES TAKE THEIR RESPECTIVE SEATS BUT ALL THREE EVERTONIANS CRAM INTO A TOILET AND CLOSE THE DOOR BEHIND THEM.&lt;br /&gt;&lt;br /&gt;SHOTLY AFTER THE CONDUCTOR COMES AROUND COLLECTING TICKETS. HE KNOCKS ON THE TOILET DOOR AND SAYS, &amp;quot;TICKETS PLEASE.&amp;quot; THE DOOR OPENS AND A SINGLE ARM EMERGES WITH A TICKET IN HAND. THE CONDUCTOR TAKES IT AND MOVES ON.&lt;br /&gt;&lt;br /&gt;THE KOPITES SEE THIS AND AGREE IT WAS QUITE A CLEVER IDEA. SO AFTER THE GAME, THEY DECIDE TO COPY THE EVERTON FANS ON THE RETURN TRIP AND SAVE SOME MONEY (BEING CLEVER WITH MONEY AND ALL THAT)&lt;br /&gt;WHEN THEY GET TO THE STATION, THEY BUY SINGLE TICKET FOR THE RETURN TRIP. TO THEIR ASTONISHMENT, THE EVERTONIANS DON'T BUY A TICKET AT ALL.&lt;br /&gt;&lt;br /&gt;&amp;quot;HOW ARE ALL YOU GOING TO TRAVEL WITHOUT ANY TICKET?&amp;quot; SAYS ONE PERPLEXED RED. &amp;quot; WATCH AND LEARN,&amp;quot; ANSWERS A BLUENOSE.&lt;br /&gt;&lt;br /&gt;WHEN THEY BOARD THE TRAIN THE THREE KOPITES CRAM INTO A TOILET AND SOON AFTER THE THREE EVERTON FANS CRAM INTO ANOTHER NEARBY. THE TRAIN DEPARTS.&lt;br /&gt;&lt;br /&gt;SHORTLY AFTERWARDS, ONE OF THE EVERTONIANS LEAVES THE TOILET AND WALKS OVER TO THE TOILET WHERE THE KOPITES ARE HIDING. HE KNOCKS ON THE DOOR AND SAYS, &amp;quot;TICKET PLEASE.&quot;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Please don&amp;#39;t shoot me, i just copy paste the entire story. It&amp;#39;d take some time to convert all those CAPS.</description>
            <author>virtual</author>
            <category>Jokes Heaven</category>
            <pubDate>Thu, 04 May 2006 11:25:28 +0800</pubDate>
        </item>
        <item>
            <title>French words</title>
            <link>http://forum.lowyat.net/topic/273689</link>
            <description>A French teacher was explaining to her class that in French, unlike &lt;br /&gt;English,&lt;br /&gt;nouns are designated as either masculine or feminine.&lt;br /&gt;&lt;br /&gt;&amp;quot;House&amp;quot; is feminine - &amp;quot;la maison&amp;quot;&lt;br /&gt;&lt;br /&gt;&amp;quot;Pencil&amp;quot; is masculine - &amp;quot;le crayon&amp;quot;.&lt;br /&gt;&lt;br /&gt;A student asked &amp;quot;What gender is &amp;#39;computer&amp;#39;?&amp;quot;&lt;br /&gt;Instead of giving the answer, the teacher split the class into two&lt;br /&gt;groups: male and female. And asked them to decide for themselves &lt;br /&gt;whether&lt;br /&gt;&amp;quot;computer&amp;quot; should be a masculine or a feminine noun. Each group was&lt;br /&gt;asked to give four reasons for their recommendation.&lt;br /&gt;&lt;br /&gt;The men&amp;#39;s group decided that &amp;quot;computer&amp;quot; should definitely be of the&lt;br /&gt;feminine gender (&amp;quot;la computer&amp;quot;), because:&lt;br /&gt;&lt;br /&gt;1. No one but their creator understands their internal logic&lt;br /&gt;&lt;br /&gt;2. The native language they use to communicate with other computers is&lt;br /&gt;incomprehensible to everyone else&lt;br /&gt;&lt;br /&gt;3. Even the smallest mistakes are stored in long-term memory for &lt;br /&gt;possible&lt;br /&gt;later review&lt;br /&gt;&lt;br /&gt;4. As soon as you make a commitment to one, you find yourself spending &lt;br /&gt;half&lt;br /&gt;your salary on accessories for it.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The women&amp;#39;s group, however, concluded that computers should be&lt;br /&gt;masculine (&amp;quot;le computer&amp;quot;), because:&lt;br /&gt;&lt;br /&gt;1. In order to do anything with them, you have to turn them on.&lt;br /&gt;&lt;br /&gt;2. They have a lot of data but still can&amp;#39;t think for themselves.&lt;br /&gt;&lt;br /&gt;3. They are supposed to help you solve problems, but half the time they &lt;br /&gt;ARE&lt;br /&gt;the problem, and&lt;br /&gt;&lt;br /&gt;4. As soon as you commit to one, you realize that if you had waited a &lt;br /&gt;little&lt;br /&gt;longer, you could have got a better model.&lt;br /&gt;&lt;br /&gt;The women won.</description>
            <author>virtual</author>
            <category>Jokes Heaven</category>
            <pubDate>Sat, 08 Apr 2006 14:11:41 +0800</pubDate>
        </item>
    </channel>
</rss>
