User Niko Gunadi - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T11:27:36Zhttp://stackoverflow.com/feeds/user/4499http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/150900/windows-forms-usercontrol-overrides-not-being-called/1216068#12160680Answer by Niko Gunadi for Windows Forms UserControl overrides not being calledNiko Gunadi2009-08-01T07:29:19Z2009-08-01T07:29:19Z<p>I am having this problem but I am using .Net Compact Framework.</p>
<p>There's no <strong>SetStyle</strong> method. Any other solution ?</p>
http://stackoverflow.com/questions/131571/recommended-books-for-software-engineering/131771#1317710Answer by Niko Gunadi for Recommended Books for Software EngineeringNiko Gunadi2008-09-25T06:50:08Z2008-09-25T06:50:08Z<p>How about <a href="http://www.scottberkun.com/making-things-happen/" rel="nofollow">Making Things Happen</a> ?</p>
http://stackoverflow.com/questions/131089/how-big-of-a-security-risk-is-checking-out-an-svn-project-right-into-production-s/131120#1311200Answer by Niko Gunadi for How big of a security risk is checking out an svn project right into production site?Niko Gunadi2008-09-25T02:11:15Z2008-09-25T02:11:15Z<p>If we are talking about application stability (or code), there is always a risk during deployment.</p>
<p>But other than that, what is the security risk if you can use https as opposed of http. Or you even use the SSH gateway.</p>
http://stackoverflow.com/questions/126134/which-is-the-most-suitable-web-framework-for-a-tax-wizard-application/126195#1261950Answer by Niko Gunadi for Which is the most suitable web framework for a tax wizard application?Niko Gunadi2008-09-24T09:26:51Z2008-09-24T09:26:51Z<p>You don't even mention the environment, language, # of users. How do you expect people to help you if you don't help yourself by defining the requirements?</p>
http://stackoverflow.com/questions/45252/load-balancing-of-process-in-1-server1Load Balancing of Process in 1 ServerNiko Gunadi2008-09-05T05:06:23Z2008-09-21T10:25:30Z
<p>I have 1 process that receives incoming connection from port 1000 in 1 <strong>linux</strong> server. However, 1 process is not fast enough to handle all the incoming request.</p>
<p>I want to run multiple processes in the server but with 1 end-point. In this way, the client will only see 1 end-point/process not multiple.</p>
<p>I have checked LVS and other Load Balancing Solution. Those solutions seem geared towards multiple servers load-balancing.</p>
<p>Any other solution to help on my case?</p>
http://stackoverflow.com/questions/70614/gnu-screen-survival-guide/70735#707351Answer by Niko Gunadi for GNU Screen Survival GuideNiko Gunadi2008-09-16T09:33:17Z2008-09-16T09:33:17Z<p>Ctrl+A is the base command</p>
<p>Ctrl+A N = go to the <strong><em>N</em></strong>ext screen</p>
<p>Ctrl+A P = go to the <strong><em>P</em></strong>revious screen</p>
<p>Ctrl+A C = <strong><em>C</em></strong>reate new screen</p>
<p>Ctrl+A D = <strong><em>D</em></strong>etach your screen</p>
http://stackoverflow.com/questions/62960/what-are-the-basics-of-networking-sys-administration-should-a-programmer-know/69955#699550Answer by Niko Gunadi for What are the Basics of Networking/Sys-administration Should a Programmer Know?Niko Gunadi2008-09-16T07:00:54Z2008-09-16T07:00:54Z<p>Anyone that works in IT field should at least read few chapters from TCP/IP Illustrated Vol 1. Because they need to know:</p>
<ol>
<li>How TCP/IP stack works</li>
<li>How IP Routing (including subnet) works</li>
<li>How DNS system works</li>
</ol>
http://stackoverflow.com/questions/54590/best-php-framework-w-ajax-support/55606#556062Answer by Niko Gunadi for Best PHP Framework w/ AJAX Support?Niko Gunadi2008-09-11T01:09:00Z2008-09-11T01:09:00Z<p>It's a nice and novel idea to have a PHP framework that supports AJAX out of the box. However, there are times that you need to modify the AJAX code or troubleshoot the javascript generated by the framework. So at the end of the day, you still can't avoid javascript.</p>
<p>Hence, maybe it's better that you pick your favorite PHP framework and take javascript framerwork that suits you. JQueary is a robust and light-weight framework that you can try.</p>
http://stackoverflow.com/questions/45252/load-balancing-of-process-in-1-server/48197#481970Answer by Niko Gunadi for Load Balancing of Process in 1 ServerNiko Gunadi2008-09-07T06:23:48Z2008-09-07T06:23:48Z<p>i am thinking to run multiple application similar to <a href="http://ypopsemail.com/" rel="nofollow">ypops</a>.</p>
http://stackoverflow.com/questions/45252/load-balancing-of-process-in-1-server/47112#471120Answer by Niko Gunadi for Load Balancing of Process in 1 ServerNiko Gunadi2008-09-06T00:04:17Z2008-09-06T00:04:17Z<p>i am looking something more like nginx where i will need to run multiple copies of my app.</p>
<p>Let me try it out.</p>
<p>Thanks for the help.</p>
http://stackoverflow.com/questions/45252/load-balancing-of-process-in-1-server/45288#452881Answer by Niko Gunadi for Load Balancing of Process in 1 ServerNiko Gunadi2008-09-05T05:44:41Z2008-09-05T05:44:41Z<p>Yes, i'm looking something like linux network daemon. I wonder whether there's a readily available program/solution to do this.</p>
http://stackoverflow.com/questions/39564/login-integration-in-php/43592#435924Answer by Niko Gunadi for Login Integration in PHPNiko Gunadi2008-09-04T12:15:14Z2008-09-04T12:15:14Z<p>when you integrate the system. Just remember 2 things:</p>
<ol>
<li><p>Login to system<br/>
Check username/password with both systems.</p></li>
<li><p>Change of Password<br/>
Update the password on both systems.</p></li>
</ol>
http://stackoverflow.com/questions/4164/what-is-a-good-barebones-cms-or-framework/43583#435830Answer by Niko Gunadi for What is a good barebones CMS or framework?Niko Gunadi2008-09-04T12:09:13Z2008-09-04T12:09:13Z<p>how about you use drupal but scale down and code it according to your needs.</p>
<p>definitely will be faster than code-from-scratch-with-framework</p>
http://stackoverflow.com/questions/42514/which-hardware-to-buy-for-a-new-linux-server-system/43371#433710Answer by Niko Gunadi for Which hardware to buy for a new Linux server system?Niko Gunadi2008-09-04T08:57:19Z2008-09-04T08:57:19Z<p>why don't you try the advise from <a href="http://www.codinghorror.com/blog/archives/001107.html" rel="nofollow">http://www.codinghorror.com/blog/archives/001107.html</a>
i don't think you want your home server to consume too much power.</p>
<p>I didn't test myself but i belive ubuntu server should just run perfectly fine in it.</p>
http://stackoverflow.com/questions/126134/which-is-the-most-suitable-web-framework-for-a-tax-wizard-application/126305#126305Comment by Niko Gunadi on Which is the most suitable web framework for a tax wizard application?Niko Gunadi2008-09-24T10:56:00Z2008-09-24T10:56:00Zi think struts at this era is overkill for this kind of task