User Johnny - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T22:30:03Zhttp://stackoverflow.com/feeds/user/6078http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/224799/bitwise-flags-abandoned/224863#2248632Answer by Johnny for Bitwise Flags abandoned ?Johnny2008-10-22T08:25:32Z2008-10-22T08:25:32Z<p>If you have an already complex application, why would you make it more complex by using bitwise flags. I personally wouldn't use this kind flags if there weren't any more upsides then just being cool. And out of experience, writing it is quite easy, adjusting it later is more harder, let alone if you haven't written it yourself. </p>
<p>Oh and for the record, I do know how to use them. </p>
http://stackoverflow.com/questions/101540/prototype-get-by-tag-function-1Prototype get by tag functionJohnny2008-09-19T12:45:02Z2008-10-10T16:59:47Z
<p>How do I get an element or elementlist by it's tag name. Take for example that I want all elements from <h1></h1></p>
http://stackoverflow.com/questions/132194/php-storing-objects-inside-the-session/132234#1322341Answer by Johnny for PHP: Storing 'objects' inside the $_SESSION.Johnny2008-09-25T09:01:04Z2008-09-25T09:01:04Z<p>I would suggest don't use state unless you absolutely need it. If you can rebuild the object without using sessions do it.
Having states in your webapplication makes the application more complex to build, for every request you have to see what state the user is in. Ofcourse there are times where you cannot avoid using session (example: user have to be kept login during his session on the webapplication).
Last I would suggest keeping your session object as small as possible as it impacts performance to serialize and unserialize large objects. </p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127992#1279923Answer by Johnny for PHP Optimization TipsJohnny2008-09-24T15:49:52Z2008-09-24T15:49:52Z<p>There are several ways to improve performance including:</p>
<ul>
<li>Use a php accelerator.</li>
<li>Make use of Caching.</li>
<li>Best of all, use a profiler to actually pin-point your performance issues. Nothing is worse then to solve problems that aren't there. </li>
</ul>
<p>I would advice reading <a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">http://developer.yahoo.com/performance/rules.html</a> not php specific but very usefull.</p>
http://stackoverflow.com/questions/115629/simplest-php-routing-framework/121443#1214430Answer by Johnny for Simplest PHP Routing framework .. ?Johnny2008-09-23T14:39:57Z2008-09-23T14:39:57Z<p>You could easily execute the right function on the associative class using reflection. I would suggest using a /controller/action structure.
Something I made myself a few days back.</p>
<pre><code>class Dispatcher {
function run($controller, $action) {
if(file_excists("Controller". $controller .".php") {
require_once("Controller". $controller .".php");
$controller = new "Controller". $controller();
if(method_excists($controller,$action)) {
return $controller->$aciton();
}
}
}
}
class ControllerStartPage {
public function welcome() {
}
}
</code></pre>
http://stackoverflow.com/questions/115256/skills-in-demand-during-2009/115278#1152785Answer by Johnny for Skills in demand during 2009Johnny2008-09-22T14:52:23Z2008-09-22T14:52:23Z<p>The past few years we've seen the transition from rich-clients to thin(web)-client. I think in 2009 this trend will continue. Technologies involved asp.net/ruby/php etc. etc.</p>
http://stackoverflow.com/questions/101386/dynamic-class-variables/101420#101420-1Answer by Johnny for Dynamic class variablesJohnny2008-09-19T12:25:51Z2008-09-19T12:38:08Z<p>For associative arrays you can use the function "isset()" to see if the array contains a value on that particular key.</p>
<pre><code>if(isset($this->data['firstValue'])) {
// do anything with data['firstValue']
}
</code></pre>
http://stackoverflow.com/questions/666136/autoloader-with-upper-and-lowercase-classname/666310#666310Comment by Johnny on autoloader with upper and lowercase classnameJohnny2009-03-20T14:24:51Z2009-03-20T14:24:51ZWouldn't a meaningful exceptions/error message be more helpful then :)http://stackoverflow.com/questions/666136/autoloader-with-upper-and-lowercase-classname/666310#666310Comment by Johnny on autoloader with upper and lowercase classnameJohnny2009-03-20T14:15:19Z2009-03-20T14:15:19ZIsn't this some what dramatic for something you can clearly solve by using a convention for filenaminghttp://stackoverflow.com/questions/224799/bitwise-flags-abandoned/224863#224863Comment by Johnny on Bitwise Flags abandoned ?Johnny2008-10-22T11:23:33Z2008-10-22T11:23:33ZYeah I totally agree there, but because someone isn't using a particular technique doesn't necessarily mean he isn't aware or doesn't know it.http://stackoverflow.com/questions/132194/php-storing-objects-inside-the-session/132234#132234Comment by Johnny on PHP: Storing 'objects' inside the $_SESSION.Johnny2008-09-25T09:46:11Z2008-09-25T09:46:11ZIf it's important to you that it won't query the database again use caching instead of storing it in the session. But please before doing anything like building caching check whether it is really a performance hit.