User Johnny - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T22:30:03Z http://stackoverflow.com/feeds/user/6078 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/224799/bitwise-flags-abandoned/224863#224863 2 Answer by Johnny for Bitwise Flags abandoned ? Johnny 2008-10-22T08:25:32Z 2008-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 -1 Prototype get by tag function Johnny 2008-09-19T12:45:02Z 2008-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#132234 1 Answer by Johnny for PHP: Storing 'objects' inside the $_SESSION. Johnny 2008-09-25T09:01:04Z 2008-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#127992 3 Answer by Johnny for PHP Optimization Tips Johnny 2008-09-24T15:49:52Z 2008-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#121443 0 Answer by Johnny for Simplest PHP Routing framework .. ? Johnny 2008-09-23T14:39:57Z 2008-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-&gt;$aciton(); } } } } class ControllerStartPage { public function welcome() { } } </code></pre> http://stackoverflow.com/questions/115256/skills-in-demand-during-2009/115278#115278 5 Answer by Johnny for Skills in demand during 2009 Johnny 2008-09-22T14:52:23Z 2008-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 -1 Answer by Johnny for Dynamic class variables Johnny 2008-09-19T12:25:51Z 2008-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-&gt;data['firstValue'])) { // do anything with data['firstValue'] } </code></pre> http://stackoverflow.com/questions/666136/autoloader-with-upper-and-lowercase-classname/666310#666310 Comment by Johnny on autoloader with upper and lowercase classname Johnny 2009-03-20T14:24:51Z 2009-03-20T14:24:51Z Wouldn't a meaningful exceptions/error message be more helpful then :) http://stackoverflow.com/questions/666136/autoloader-with-upper-and-lowercase-classname/666310#666310 Comment by Johnny on autoloader with upper and lowercase classname Johnny 2009-03-20T14:15:19Z 2009-03-20T14:15:19Z Isn't this some what dramatic for something you can clearly solve by using a convention for filenaming http://stackoverflow.com/questions/224799/bitwise-flags-abandoned/224863#224863 Comment by Johnny on Bitwise Flags abandoned ? Johnny 2008-10-22T11:23:33Z 2008-10-22T11:23:33Z Yeah 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#132234 Comment by Johnny on PHP: Storing 'objects' inside the $_SESSION. Johnny 2008-09-25T09:46:11Z 2008-09-25T09:46:11Z If 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.