User Prajwal Tuladhar - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T06:04:43Zhttp://stackoverflow.com/feeds/user/5558http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/311947#3119477Answer by Prajwal Tuladhar for Defend PHP; convince me it isn't horriblePrajwal Tuladhar2008-11-23T00:25:07Z2009-07-04T04:46:27Z<p>PHP is not horrible by any means if one consider following points:</p>
<ul>
<li>Google 'PHP' and PHP related stuff: one will find results more than that of any programming language</li>
<li>PHP is open source and light weight</li>
<li>If one uses PHP for its core purpose i.e. scripting then, one won't find any significant side-effect in the language</li>
<li>Now from PHP 5, PHP can be considered as a pure Object Oriented language. There is interface, reflection, PHP Data Object (PDO) as kinda native data access layer or much like ADO.NET, type hinting and the list goes on.</li>
<li>please don't compare PHP with C# and/or Java. It's just not fair. If one only compares scripting part of these languages with PHP, it's far more easier to code in PHP.</li>
</ul>
<p>And finally, rather than comparing languages it would be rather better to focus on using design patterns, test driven approach, object oriented doctrines and modularization concepts. Anyone can learn languages in a matter of time but once one have ideas about agile development, one can implement it in any language with ease.</p>
http://stackoverflow.com/questions/1047007/mysql-between-query-returning-redundant-results/1047051#10470510Answer by Prajwal Tuladhar for MySQL between query returning redundant resultsPrajwal Tuladhar2009-06-26T02:16:42Z2009-06-26T02:16:42Z<p>These links may answer your question:</p>
<ul>
<li><a href="http://www.mysqlperformanceblog.com/2006/06/09/why-mysql-could-be-slow-with-large-tables/" rel="nofollow">http://www.mysqlperformanceblog.com/2006/06/09/why-mysql-could-be-slow-with-large-tables/</a></li>
<li><a href="http://www.slideshare.net/techdude/how-to-kill-mysql-performance" rel="nofollow">http://www.slideshare.net/techdude/how-to-kill-mysql-performance</a></li>
</ul>
http://stackoverflow.com/questions/449424/can-anybody-explain-the-concept-of-pluggable-adapter-to-me-with-good-example1Can anybody explain the concept of pluggable adapter to me with good example?Prajwal Tuladhar2009-01-16T03:38:09Z2009-01-16T05:43:16Z
<p>Can anybody explain the concept of pluggable adapter to me with good example?</p>
http://stackoverflow.com/questions/366156/what-is-difference-between-published-and-public-methods-attributes1What is difference between published and public methods / attributes?Prajwal Tuladhar2008-12-14T03:55:13Z2008-12-14T16:39:20Z
<p>According to Martin Fowler "Something can be public but that does not mean you have published it." Does this mean something like this:</p>
<pre><code>public interface IRollsRoyceEngine
{
void Start();
void Stop();
String GenerateEngineReport();
}
public class RollsRoyceEngine : IRollsRoyceEngine
{
public bool EngineHasStarted { get; internal set; }
public bool EngineIsServiceable { get; internal set; }
#region Implementation of IRollsRoyceEngine
public void Start()
{
if (EngineCanBeStarted())
EngineHasStarted = true;
else
throw new InvalidOperationException("Engine can not be started at this time!");
}
public void Stop()
{
if (EngineCanBeStopped())
EngineHasStarted = false;
else
throw new InvalidOperationException("Engine can not be started at this time!");
}
public string GenerateEngineReport()
{
CheckEngineStatus();
return EngineIsServiceable ? "Engine is fine for now" : "Hmm...there may be some problem with the engine";
}
#endregion
#region Non published methods
public bool EngineCanBeStarted()
{
return EngineIsServiceable ? true : false;
}
public bool EngineCanBeStopped()
{
return EngineIsServiceable ? true : false;
}
public void CheckEngineStatus()
{
EngineIsServiceable = true;
//_EngineStatus = false;
}
#endregion
}
</code></pre>
<p>Can it be said that published interface of this is IRollsRoyceEngine not whatever is in RollsRoyceEngine? </p>
<p>If so what is the real difference between public and published methods?</p>
http://stackoverflow.com/questions/150637/why-are-the-built-in-functions-in-php-named-so-randomly/366299#3662990Answer by Prajwal Tuladhar for Why are the built in functions in PHP named so randomly?Prajwal Tuladhar2008-12-14T08:18:53Z2008-12-14T08:18:53Z<p>Initially PHP was mere a scripting language with no object oriented support (PHP 3) so, the function names used in PHP upto version 3 and 4 are mostly inspired from PERL syntax. But PHP 5 has lots of OO features like Reflection, type hinting, interface, access modifiers and list goes on. Most of these new features are inspired from JAVA. For example; implementing interface and inheriting class are same in PHP and JAVA. So, most of the new functions with their naming styles and conventions are JAVA based.
One can call it evolution of PHP of a mere scripting language to a kinda robust OO language.</p>
http://stackoverflow.com/questions/311987/best-way-to-pass-json-from-browser-to-php-using-ajax-request/312053#3120534Answer by Prajwal Tuladhar for Best way to pass JSON from Browser to PHP using Ajax.RequestPrajwal Tuladhar2008-11-23T02:51:19Z2008-11-23T02:51:19Z<p>You can also use Prototype's function <a href="http://www.prototypejs.org/api/array/tojson" rel="nofollow">toJSON()</a> to convert an array into a JSON object. After passing it to server via Ajax call, simply use PHP's fucntion <a href="http://us.php.net/json_decode" rel="nofollow">json_decode()</a> to decode the object.</p>
http://stackoverflow.com/questions/308539/when-to-use-domain-driven-development-and-database-driven-development4When to use domain driven development and database driven development?Prajwal Tuladhar2008-11-21T11:48:11Z2008-11-21T12:59:50Z
<p>Can anybody have good answer when should be database driven development be used and when should domain driven development be used. These both development approach have their importance in their respected areas. But I am not so clear which approach is appropriate in what type of situation. Any recommendation?</p>
http://stackoverflow.com/questions/308027/can-you-hint-return-types-in-php-5-2-5/308570#3085700Answer by Prajwal Tuladhar for Can you hint return types in PHP 5.2.5?Prajwal Tuladhar2008-11-21T12:03:49Z2008-11-21T12:03:49Z<p>The only way to hint return type in PHP is to use a good IDE like Eclispe PDT or Zend Studio with standard comment block. PHP simply can n not predict return type because it is dynamically typed language so type checking is done in the run time unlike for the statically typed languages like C#, JAVA and C++.</p>
http://stackoverflow.com/questions/305446/what-operating-system-do-you-use-for-development/308552#3085520Answer by Prajwal Tuladhar for What operating system do you use for development?Prajwal Tuladhar2008-11-21T11:55:12Z2008-11-21T11:55:12Z<p>I usuallu use Windows Vista and Ubuntu Hardy. Vista for doing .NET and PHP related stuffs and Linux for doing some basic hacking and PHP stuffs.</p>
http://stackoverflow.com/questions/449424/can-anybody-explain-the-concept-of-pluggable-adapter-to-me-with-good-example/449438#449438Comment by Prajwal Tuladhar on Can anybody explain the concept of pluggable adapter to me with good example?Prajwal Tuladhar2009-01-16T03:48:16Z2009-01-16T03:48:16ZI did refer that article. I guess you also search that with Google. But it does not explain about Pluggable adapter clearly. It is referring to GoF book which I have read.http://stackoverflow.com/questions/366156/what-is-difference-between-published-and-public-methods-attributes/366161#366161Comment by Prajwal Tuladhar on What is difference between published and public methods / attributes?Prajwal Tuladhar2008-12-14T08:11:24Z2008-12-14T08:11:24ZMore can be found about this issue at <a href="http://martinfowler.com/ieeeSoftware/published.pdf" rel="nofollow">martinfowler.com/ieeeSoftware/published.pdf/…</a>http://stackoverflow.com/questions/308539/when-to-use-domain-driven-development-and-database-driven-development/308655#308655Comment by Prajwal Tuladhar on When to use domain driven development and database driven development?Prajwal Tuladhar2008-11-22T23:57:06Z2008-11-22T23:57:06Zyes you right in the sense that domain driven approach may be far better than data driven but the problem is that most of the people in my opinion still struggle to build domain driven app due to its abstract boundaries and requirement for experienced system architect.http://stackoverflow.com/questions/308539/when-to-use-domain-driven-development-and-database-driven-development/308647#308647Comment by Prajwal Tuladhar on When to use domain driven development and database driven development?Prajwal Tuladhar2008-11-22T23:54:10Z2008-11-22T23:54:10ZYeah something similar has been expressed number of experts. For a beginners like me, I would like to go with Data Driven approach since it is comparatively easier with large number of tools being available. Domain driven may be suitable for large apps with experienced developers.