<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by othniel91</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Wed, 10 Jun 2026 16:42:08 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Extending RJ11 (Phone line)</title>
            <link>http://forum.lowyat.net/topic/3757869</link>
            <description>Does extending the RJ11 cable say 50 meters deteriorates the line? As in from the wall port to the router 50M. Doing some reorganization of routers placement, not sure if it will lose signal or increase attenuation and decrease the SNR margin. &lt;br /&gt;&lt;br /&gt;Googled but this is as assuring as I can find: &lt;a href='http://arstechnica.com/civis/viewtopic.php?f=10&amp;t=706107' target='_blank'&gt;Ars Forums&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;But i need some network eng/tech to confirm this or If anyone run this type of configuration before, obviously I want to LAN my router instead of using wireless and CAT5/6 cables are way expensive then phone cable. &lt;br /&gt;&lt;br /&gt;Thanks in advance</description>
            <author>othniel91</author>
            <category>Networks and Broadband</category>
            <pubDate>Wed, 28 Oct 2015 11:49:32 +0800</pubDate>
        </item>
        <item>
            <title>Essential Port</title>
            <link>http://forum.lowyat.net/topic/0</link>
            <description></description>
            <category>Networks and Broadband</category>
            <pubDate>Thu, 01 Jan 1970 07:30:00 +0800</pubDate>
        </item>
        <item>
            <title>Essential Port</title>
            <link>http://forum.lowyat.net/topic/3360973</link>
            <description>&lt;u&gt;Broadband provider&lt;/u&gt;&lt;br /&gt;ISP/package: Unifi 20MB biz&lt;br /&gt;Location: Sabah&lt;br /&gt;Have you called your ISP&amp;#39;s helpline?: No, it isnt regarding their service&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Personal equipment&lt;/u&gt;&lt;br /&gt;Router/Modem: l7-n-r2000 (rebradned DLINK DIR 615 )&lt;br /&gt;Firewall used: None&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Problem details&lt;/u&gt;&lt;br /&gt;Problem description: &lt;br /&gt;So far I am implementing a block on all (outgoing and incoming, meaning local network application should be working) port except the essential one&lt;br /&gt;&lt;br /&gt;80: Hypertext Transfer Protocol (HTTP) - Web&lt;br /&gt;53: DNS&lt;br /&gt;443: HTTP Secure (HTTPS)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Blocking 53 because I am using OpenDNS router, this is to prevent from bypassing with Google DNS. Did I miss any? I want to keep the internet connection limited to web surfing and email (web mail). Do comment</description>
            <author>othniel91</author>
            <category>Networks and Broadband</category>
            <pubDate>Fri, 26 Sep 2014 15:33:22 +0800</pubDate>
        </item>
        <item>
            <title>FACEBOOK down</title>
            <link>http://forum.lowyat.net/topic/3263479</link>
            <description>[attachmentid=4020199]&lt;br /&gt;Hacked? or just power failure?</description>
            <author>othniel91</author>
            <category>The Museum Of Kopitiam</category>
            <pubDate>Thu, 19 Jun 2014 16:16:25 +0800</pubDate>
        </item>
        <item>
            <title>Contract of Service vs Termination of Service</title>
            <link>http://forum.lowyat.net/topic/3256506</link>
            <description>Say the Contract of Service is 2 years and Termination of Service requires 3 months notice or pay 1 month penalty from either party that decides the termination.&lt;br /&gt;&lt;br /&gt;What if next month my contract ended and I would like to resign voluntarily without renewing my contract. &lt;br /&gt;&lt;br /&gt;Do I just write the resignation letter contains notice of one month (or less like 1 week) or would that course of action breach my contract? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;PS: I know I would have better answer if I ask HR (my dept actually) but I&amp;#39;d prefer to ask here instead :|</description>
            <author>othniel91</author>
            <category>Jobs &amp;amp; Careers</category>
            <pubDate>Fri, 13 Jun 2014 08:55:01 +0800</pubDate>
        </item>
        <item>
            <title>C Programming - Storing String in Structured Array</title>
            <link>http://forum.lowyat.net/topic/3244297</link>
            <description>Why I can do 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;#include &amp;#60;stdlib.h&amp;#62;&lt;br /&gt;#include &amp;#60;stdio.h&amp;#62;&lt;br /&gt;#include &amp;#60;string.h&amp;#62;&lt;br /&gt;&lt;br /&gt;struct record {&lt;br /&gt;	char name&amp;#91;50&amp;#93;;&lt;br /&gt;	float marks;&lt;br /&gt;};&lt;br /&gt;&lt;br /&gt;void main&amp;#40;&amp;#41;{&lt;br /&gt;	int x;&lt;br /&gt;	struct record results&amp;#91;50&amp;#93; = {&amp;#34;Ben&amp;#34;, 77.10};&lt;br /&gt;	for &lt;br /&gt;	for&amp;#40;x=0;x&amp;#60;50;x++&amp;#41;{&lt;br /&gt; &amp;nbsp;printf&amp;#40;&amp;#34;Name&amp;#58; %s&amp;#092;nMarks&amp;#58; %3.2f&amp;#092;n&amp;#34;, results&amp;#91;x&amp;#93;.name, results&amp;#91;x&amp;#93;.marks&amp;#41;;&lt;br /&gt;	}&lt;br /&gt;}&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;See the: struct record results[50] = {&amp;quot;Ben&amp;quot;, 77.10};&lt;br /&gt;&lt;br /&gt;But I can&amp;#39;t do it individually, example&lt;br /&gt;&lt;br /&gt;results.name[0] = &amp;quot;Ben&amp;quot;;&lt;br /&gt;&lt;br /&gt;or&lt;br /&gt;&lt;br /&gt;results[0].name[0] = &amp;quot;Ben&amp;quot;;&lt;br /&gt;&lt;br /&gt;or &lt;br /&gt;&lt;br /&gt;results[0].name = &amp;quot;Ben&amp;quot;;&lt;br /&gt;&lt;br /&gt;However for real data type and int can, example: 	results[0].marks = 77.10;&lt;br /&gt;&lt;br /&gt;I&amp;#39;m not expecting straight answers, give me a clue or tip would do&amp;#33; thanks&amp;#33;</description>
            <author>othniel91</author>
            <category>Codemasters</category>
            <pubDate>Mon, 02 Jun 2014 10:19:42 +0800</pubDate>
        </item>
        <item>
            <title>Forward US IP to MSIA IP</title>
            <link>http://forum.lowyat.net/topic/3240459</link>
            <description>This is my situation, not sure should I post here or Networking section. I have a linux admin cert but never learn IP Tables or NAT, so bear with me.&lt;br /&gt;&lt;br /&gt;I am running a 2 server, a dedicated which is in Malaysia and a VPS which is located in Seatle, USA.&lt;br /&gt;&lt;br /&gt;Aside from other service that the dedicated server is running, among them is a web server, what i want to achive here is like this:&lt;br /&gt;&lt;br /&gt;Public visit Domain (example.com) which the DNS (cloudflare) points to the US VPS, then fetch the web content from Msia Server. I&amp;#39;m not sure how to explain as simple as that, its like I want people to not access directly to the Msia server, but through a proxy site which represents the dedicated server. &lt;br /&gt;&lt;br /&gt;I&amp;#39;ve googled and not sure if IP Tables is my solution? Not asking for a copy paste answer, just a quick tip or guide to help me steer the right direction.&lt;br /&gt;&lt;br /&gt;Details (IP is not real for security purposes)&lt;br /&gt;&lt;br /&gt;Dedicated&lt;br /&gt;OS: CentOS&lt;br /&gt;Dedicated IP: 101.127.90.1&lt;br /&gt;Listening Port: 80, 443&lt;br /&gt;&lt;br /&gt;VPS: CentOS&lt;br /&gt;Dedicated IP: 221.51.31.90&lt;br /&gt;Listening Port: 80, 443&lt;br /&gt;&lt;br /&gt;Domain&lt;br /&gt;myserver.com&lt;br /&gt;Manage by cloudflare: lee &amp;amp; kate.cloudflare.com&lt;br /&gt;A or @ &amp;gt; 221.51.31.90&lt;br /&gt;&lt;br /&gt;Thanks&amp;#33;</description>
            <author>othniel91</author>
            <category>Linux &amp;amp; Open Source Software</category>
            <pubDate>Thu, 29 May 2014 15:09:41 +0800</pubDate>
        </item>
        <item>
            <title>Fan Cooling suggestion</title>
            <link>http://forum.lowyat.net/topic/3039015</link>
            <description>Anyone here can help suggest to me for an optimum fan/cooling configuration:&lt;br /&gt;My chasiss: &lt;a href='http://raidmax.com/chassis/super_viper.html' target='_blank'&gt;http://raidmax.com/chassis/super_viper.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;or IMG [attachmentid=3732937]&lt;br /&gt;&lt;br /&gt;Its a raidmax viper, though the image and link given is Super Viper (have 2 grilled top panel, mine doest have)&lt;br /&gt;Have a total 3 fan&lt;br /&gt;1: Back&lt;br /&gt;2. Front (hdd location)&lt;br /&gt;3. Side panel&lt;br /&gt;&lt;br /&gt;For my CPU cooler, it is a Deepcool Gammaxx 400, will add picture of current configuration once I get home.&lt;br /&gt;&lt;br /&gt;So is it this way &amp;lt; (back) &amp;lt; (cpu cooler) ^ (side pane) &amp;lt; (front panel)&lt;br /&gt;or all push out&lt;br /&gt;or all push in&lt;br /&gt;&lt;br /&gt;CPU: FX 8350&lt;br /&gt;GPU: GTX 660&lt;br /&gt;3 HDD&lt;br /&gt;4 RAM&lt;br /&gt;&lt;br /&gt;Heat is really an issue for me.&lt;br /&gt;&lt;br /&gt;Oh btw, my room is not air conditioned. Back facing wall (3-4 cm maybe)</description>
            <author>othniel91</author>
            <category>Hardware</category>
            <pubDate>Thu, 21 Nov 2013 12:49:24 +0800</pubDate>
        </item>
        <item>
            <title>[WTA] FX8350 + GTX 660</title>
            <link>http://forum.lowyat.net/topic/3034757</link>
            <description>Recommended for the GPU is 450w&lt;br /&gt;but&lt;br /&gt;Recommended for the CPU is 500w&lt;br /&gt;&lt;br /&gt;Budget RM 200- 300&lt;br /&gt;&lt;br /&gt;Will use it for 2 years+&lt;br /&gt;Potential upgrade for GPU next year.&lt;br /&gt;&lt;br /&gt;Help me  &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>othniel91</author>
            <category>Hardware</category>
            <pubDate>Mon, 18 Nov 2013 08:02:40 +0800</pubDate>
        </item>
        <item>
            <title>What Mouse for Gaming</title>
            <link>http://forum.lowyat.net/topic/2999405</link>
            <description>I tried Kinzu V2 and Abyssus, so far same problem, right click become unresponsive after few months.&lt;br /&gt;&lt;br /&gt;1. Logitech G300 and G400&lt;br /&gt;2. ARMAGEDDON FOXBAT&lt;br /&gt;3. ROCCAT Lua&lt;br /&gt;4. Gigabyte Thor M7&lt;br /&gt;5. Gigabyte Ghost.&lt;br /&gt;&lt;br /&gt;Who have experience of any of this mouse? Or can recommend me some based on your experience. Thanks</description>
            <author>othniel91</author>
            <category>Hardware</category>
            <pubDate>Fri, 18 Oct 2013 22:38:43 +0800</pubDate>
        </item>
        <item>
            <title>Neigbour using spray machine</title>
            <link>http://forum.lowyat.net/topic/2891995</link>
            <description>I have a neighbor who once in a while spray his car using a machine, the problem is, it gets very smelly and sound from the machine gets very disturbing after quite some time, I&amp;#39;m thinking of reporting it to the authorities because previously he was doing it in the evening which I wouldn&amp;#39;t mind but now he does it even at midnight&amp;#33;&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve skim through the Act 127 of environmental quality, it did not mention of air pollution from spray in particular, I wouldn&amp;#39;t want to make a report and fail which will make him retaliate by doing it more often, i want to make sure it stopped once and for all.&lt;br /&gt;&lt;br /&gt;A neighbor across the street did talk to him once but it did not work, if anyone were to take the blame after the report it&amp;#39;d be him &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt;&lt;br /&gt;&lt;br /&gt;Anyway is it illegal and against the law? I live at a residential area, a terrace house with no management, basically i only have Dewan Bandaraya to complain to...&lt;br /&gt;&lt;br /&gt;</description>
            <author>othniel91</author>
            <category>Serious Kopitiam</category>
            <pubDate>Fri, 19 Jul 2013 21:58:13 +0800</pubDate>
        </item>
        <item>
            <title>Hmail Server (static IP)</title>
            <link>http://forum.lowyat.net/topic/2766047</link>
            <description>&lt;u&gt;Broadband provider&lt;/u&gt;&lt;br /&gt;ISP/package: 4mbps&lt;br /&gt;Location: kota kinabalu sabah&lt;br /&gt;Have you called your ISP&amp;#39;s helpline?: did, they ask me to use 587 or tmnet proxy&lt;br /&gt;His name is Kobra o.0?&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Personal equipment&lt;/u&gt;&lt;br /&gt;Modem: the blue one, standard&lt;br /&gt;Router: load balancer&lt;br /&gt;Firewall used: none, off&lt;br /&gt;Using load balancer as an intermediary for 2 lines&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Problem details&lt;/u&gt;&lt;br /&gt;First occurence of problem: When i first started doing a mail server (27/3/2013)&lt;br /&gt;Problem frequency: nil&lt;br /&gt;Problem description: Can send to hotmail, gmail, yahoo, private email but cant receive&lt;br /&gt;&lt;br /&gt;Info:&lt;br /&gt;I&amp;#39;m using hmail server as my smtp server for windows 2008, the webclient is using roundcube on top of xampp (not iis)&lt;br /&gt;&lt;br /&gt;The setup is fine&lt;br /&gt;&lt;br /&gt;on my dns manager on my domain (go daddy)&lt;br /&gt;&lt;br /&gt;A record: mail.domain.com - mystaticip&lt;br /&gt;MX record: priority: 0 host: mail.domain.com&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve portforward 25, 587&lt;br /&gt;&lt;br /&gt;after searching around, i am aware tmnet block 25 so i change to 587, same results, can send cant receive, then i use their relay service, same can send cant receive.&lt;br /&gt;&lt;br /&gt;Anyone who can guide me?&lt;br /&gt;</description>
            <author>othniel91</author>
            <category>Networks and Broadband</category>
            <pubDate>Mon, 08 Apr 2013 11:05:56 +0800</pubDate>
        </item>
        <item>
            <title>Old PC Upgrade  or Buy New? For home server</title>
            <link>http://forum.lowyat.net/topic/2762907</link>
            <description>I have with me an old am2 sempron processor (Sempron 3000+ Manila), It&amp;#39;s been kept idle back in the box since 4 years ago. I&amp;#39;m re-purposing it to be a home server because I&amp;#39;m in need of one. The server for all intents and purposes is goinng to be a simple LAMP server, it wont perform intense cpu task. The problem is that the previous board is faulty (capacitor problem and southbridge overheating problem) but the parts is such as DDR2 RAM (1GB x2) 160GB HDD are in good condition. So now what&amp;#39;s between me making it into the server is the motherboard.&lt;br /&gt;&lt;br /&gt;Before going to my dilemma of options, my main question is&lt;b&gt; which options will be more worth the money that fits my purpose of a home server&lt;/b&gt;? especially in terms of power, performance and cost.&lt;br /&gt;&lt;br /&gt;Option 1:&lt;br /&gt;Buy a new board: Asrock N68C-GS FX Supports DDR2 and DDR3 AM2 - AM3+ = RM 160 or so&lt;br /&gt;&lt;br /&gt;Option 2:&lt;br /&gt;Raspberry Pi + 8GB CARD = RM 190&lt;br /&gt;&lt;br /&gt;Option 3:&lt;br /&gt;Intel Desktop D2500HN w Integrated Intel Atom Processor Motherboard = RM200&lt;br /&gt;*I have 2GB DDR3 ram&lt;br /&gt;&lt;br /&gt;I&amp;#39;ll rephrase my question once more, considering my budget of RM 300, I&amp;#39;m intending to get myself a personal home server. Which one of those option above will be more well suited for this purpose? I am yet to decide yet because every one of those option are presumably good enough, I need another persons opinion on this. Thanks &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;br /&gt;</description>
            <author>othniel91</author>
            <category>Hardware</category>
            <pubDate>Fri, 05 Apr 2013 12:18:54 +0800</pubDate>
        </item>
        <item>
            <title>Installing RAM from 2GB + 4GB</title>
            <link>http://forum.lowyat.net/topic/2228653</link>
            <description>When I bought my system, it had 2GB RAM installed, but I am running on W7 64bit and I would like to get the most out of my system, but getting the same model of 2GB is rather a waste of cash and will only disrupt my plans for future upgrades. So I thought of getting 4GB first and maybe adding it up later on if I need to, so here&amp;#39;s the problem, will there be any memory conflict in installing 2GB + 4GB RAM DDR3?</description>
            <author>othniel91</author>
            <category>Hardware</category>
            <pubDate>Thu, 16 Feb 2012 00:36:58 +0800</pubDate>
        </item>
        <item>
            <title>How much Watt PSU Recommend for My Build</title>
            <link>http://forum.lowyat.net/topic/2226239</link>
            <description>I am using&lt;br /&gt;&lt;br /&gt;AMD Athlon II X2 260 (65 TDP)&lt;br /&gt;Sapphire HD 6570 (Low profile card, non 6pin powered)&lt;br /&gt;an ATX Mobo (24pin)&lt;br /&gt;1 DVD Drive&lt;br /&gt;1 320 HDD&lt;br /&gt;&lt;br /&gt;No casing fans&lt;br /&gt;&lt;br /&gt;So what wattage suitable for this? I&amp;#39;m currently using Cooler Master 500w but my problem is that I always keep this machine on everyday and figure out that 500w would hurt my electricity bill if this keeps going on. &lt;br /&gt;&lt;br /&gt;Thanks and awaiting reply.&lt;br /&gt;&lt;br /&gt;EDIT: I&amp;#39;m not into overclocking.</description>
            <author>othniel91</author>
            <category>Hardware</category>
            <pubDate>Tue, 14 Feb 2012 11:29:41 +0800</pubDate>
        </item>
        <item>
            <title>Opinions on this Poor Gaming Built</title>
            <link>http://forum.lowyat.net/topic/2210644</link>
            <description>This will be super low budget gaming system (Budget: RM 500-700 for CPU, Motherboard, RAM and GC) and I have come out with this built:&lt;br /&gt;&lt;br /&gt;CPU: Intel Pentium G620 2.6GHz or AMD Athlon x2 260 3.2 GHz&lt;br /&gt;Motherboard: GA-H61M-S2-B3 (Gigabyte)&lt;br /&gt;RAM: 4GB&lt;br /&gt;Graphic Card: ATi RADEON HD 5770 (Thinking of getting the one from Gigabyte)&lt;br /&gt;&lt;br /&gt;I know with this built could at least play the latest game such as Serious Sam 3 or Skyrim at low/med settings with acceptable frame-rates. So, I&amp;#39;m not asking for recommendation but opinions, as I myself am not an expert in hardware comparison and benchmark, I&amp;#39;ve done research but couldn&amp;#39;t get the &amp;quot;YES IT IS GOOD&amp;quot; satisfaction, so thought I shoot this in the forum.&lt;br /&gt;&lt;br /&gt;So the real question (Just in case you guys confused with my poor grammar)&lt;br /&gt;1. Is AMD Athlon x2 260 which have 3.2 GHz is more beneficial than this Intel Pentium? In terms of gaming not video encoding etc.&lt;br /&gt;&lt;br /&gt;2. Is there any other Graphic Card that are a little/lot better than the one mention in that price range or category of budget gaming cards?&lt;br /&gt;&lt;br /&gt;3. Have anyone ever owned or have this similar built? Or at least voiced out your opinion, if you think it is rubbish say so, if you think it&amp;#39;s totally outdated say so, I wouldn&amp;#39;t mind harsh opinions.&lt;br /&gt;&lt;br /&gt;</description>
            <author>othniel91</author>
            <category>Hardware</category>
            <pubDate>Thu, 02 Feb 2012 12:40:17 +0800</pubDate>
        </item>
        <item>
            <title>2.5 HDD to Desktop</title>
            <link>http://forum.lowyat.net/topic/2208542</link>
            <description>I would like to know if the 2.5 Hard Disk (that was directly taken out from laptop) can be used on the desktop? As it has similar connectors like the 3.5 HDD. Anyone tried it out?</description>
            <author>othniel91</author>
            <category>Hardware</category>
            <pubDate>Tue, 31 Jan 2012 19:51:13 +0800</pubDate>
        </item>
        <item>
            <title>Lowest Entry CPU Recomendation</title>
            <link>http://forum.lowyat.net/topic/1994196</link>
            <description>Need a pc recommendation, getting this for my mom&amp;#39;s friend =,=&amp;#33;&lt;br /&gt;The thing is the budget is RM 700, and I been sourcing around all I can find is RM 900 and above, anyhow I don&amp;#39;t know much about the latest hardware and price in the market so I need some help. LCD screen, keyboard, mouse and speaker no need, just the computer system, nothing fancy.&lt;br /&gt;&lt;br /&gt;These are the important needs:&lt;br /&gt;1. Able to run web browser without lag&lt;br /&gt;2. Able to to open Microsoft office without lag&lt;br /&gt;3. Able to run windows xp&lt;br /&gt;&lt;br /&gt;If you can fulfill these other needs is a bonus:&lt;br /&gt;1. Able to play really low-graphic games like dota, counter strike, starcraft: brood war, diablo those. &lt;br /&gt;2. Able to play movies (hd is a bonus, but if can, SD videos could be played)&lt;br /&gt;&lt;br /&gt;Sorry for the limitation, I even tried to built a Intel Atom but then, from my experienced of a netbook before, it&amp;#39;s not suitable as there&amp;#39;s always casual lags. I was thinking Athlon or some sort. So anyone mind helping me 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;Take your time, maybe end of this month will buy it.</description>
            <author>othniel91</author>
            <category>Hardware</category>
            <pubDate>Thu, 11 Aug 2011 19:28:45 +0800</pubDate>
        </item>
        <item>
            <title>Building a Home Server 3k budget</title>
            <link>http://forum.lowyat.net/topic/1960359</link>
            <description>Usage:&lt;br /&gt;It&amp;#39;s a home business server.&lt;br /&gt;&lt;br /&gt;Type of server usage:&lt;br /&gt;1. Email&lt;br /&gt;2. Web Server&lt;br /&gt;3. Database&lt;br /&gt;&lt;br /&gt;My budget is RM 3 000 but can go up to RM 3.5k if needed. I want to use be Intel i7 960, but if anyone could suggest to me something better I would consider.&lt;br /&gt;&lt;br /&gt;So what recommendation I need is:&lt;br /&gt;&lt;br /&gt;1. Motherboard (if can have future upgradable options and power saving too if possible)&lt;br /&gt;2. RAM (Clueless, should I go with KVR or get some gaming RAM that have heatsink?)&lt;br /&gt;3. Hard Disk (I need to run on RAID 1, so a good performance drive not ssd, capacity of 1TB)&lt;br /&gt;4. Casing (It must have good cooling system as it will run almost 24/7 most of the time)&lt;br /&gt;5. Third Party CPU Fan &lt;br /&gt;6. Power Supply that can power all these, if can have more power cable for fans&lt;br /&gt;7. Also a UPS.&lt;br /&gt;8. Any other thing that I&amp;#39;ve missed out?&lt;br /&gt;&lt;br /&gt;The rest such as optical drive, keyboard, monitor, etc is not included in the budget so just focus on this first. Help me out ya, pretty urgent as I need to get all these by next week.&lt;br /&gt;&lt;br /&gt;Oh the OS I&amp;#39;ll be running is CentOS 6 64bit.&lt;br /&gt;&lt;br /&gt;Edit: Can i use built-in graphics from motherboard? I don&amp;#39;t think 960 have built in graphics.</description>
            <author>othniel91</author>
            <category>Hardware</category>
            <pubDate>Sat, 16 Jul 2011 22:52:32 +0800</pubDate>
        </item>
        <item>
            <title>FilesTubes for MY</title>
            <link>http://forum.lowyat.net/topic/1921177</link>
            <description>Guys here&amp;#39;s the link&amp;#33; At first it was piratebay now it&amp;#39;s filestube&amp;#33; hooray&lt;br /&gt;&lt;a href='http://www.filestube.me/' target='_blank'&gt;http://www.filestube.me/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;</description>
            <author>othniel91</author>
            <category>Networks and Broadband</category>
            <pubDate>Thu, 16 Jun 2011 21:27:58 +0800</pubDate>
        </item>
    </channel>
</rss>
