User Twan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T18:25:46Z http://stackoverflow.com/feeds/user/6702 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/115528/how-to-make-a-program-bug-free-or-with-the-less-possible-bugs/115591#115591 6 Answer by Twan for How to make a program bug-free (or, with the less possible bugs) Twan 2008-09-22T15:37:40Z 2008-09-22T15:37:40Z <p>First of all: <strong>Bug-free software is a myth!</strong></p> <p>Second, the tools themselves depend on a lot of things, but if you want to keep things as general as possible:</p> <ul> <li>A good editor</li> <li>A good version control system</li> <li>Proper development stages (functional design, technical design, etc.)</li> <li>A proper test-team</li> <li>An improper test-team (basically the milkman, the cleaning lady and the bus driver you brought in... people who have no idea what they're doing if it comes to computers and interfaces)</li> <li>A way to indicate that you want <strong>no distractions</strong> whatsoever</li> <li>The time to be able to resolve issues when you get stuck on them</li> </ul> http://stackoverflow.com/questions/62617/whats-the-best-way-to-separate-php-code-and-html/63444#63444 0 Answer by Twan for What's the best way to separate PHP Code and HTML? Twan 2008-09-15T14:33:11Z 2008-09-22T14:20:14Z <p>Personally I found the way that works for me is to work with <A href="http://www.w3.org/TR/xslt" rel="nofollow">XSL Transformations (XSLT)</A>. </p> <p>Have one script containing your (PHP) logic outputting XML and one script produce the XSL to translate the XML to something visible. I usually implement this all on top of a homemade rewrite of <A href="http://www.fusebox.org/" rel="nofollow">Fusebox</A> (the rewrite is purely because I don't use most of the features Fusebox offers and they do create overhead).</p> <p>This might seem like a bit of overkill, especially on smaller projects, but I noticed a huge increase in the speed with which I can make modifications. Let's just say that my boss was pleased.</p> <p>Imagine having the following information in an array, which you want to display in a table.</p> <pre><code>Array { [car] =&gt; green [bike] =&gt; red } </code></pre> <p>You easily create a script that outputs this information in XML:</p> <pre><code>echo "&lt;VEHICLES&gt;\n"; foreach(array_keys($aVehicles) as $sVehicle) echo "\t&lt;VEHICLE&gt;".$sVehicle."&lt;/NAME&gt;&lt;COLOR&gt;".$aVehicles[$sVehicle]."&lt;/COLOR&gt;&lt;/VEHICLE&gt;\n"; echo "&lt;/VEHICLES&gt;\n"; </code></pre> <p>Resulting in the following XML:</p> <pre><code>&lt;VEHICLES&gt; &lt;VEHICLE&gt; &lt;NAME&gt;car&lt;/NAME&gt; &lt;COLOR&gt;green&lt;/COLOR&gt; &lt;/VEHICLE&gt; &lt;VEHICLE&gt; &lt;NAME&gt;bike&lt;/NAME&gt; &lt;COLOR&gt;red&lt;/COLOR&gt; &lt;/VEHICLE&gt; &lt;/VEHICLES&gt; </code></pre> <p>Now this is all excellent, but that won't display in a nice format. This is where XSLT comes in. With some simple code, you can transform this into a table:</p> <pre><code>&lt;xsl:template match="VEHICLES"&gt; &lt;TABLE&gt; &lt;xsl:apply-templates select="VEHICLE"&gt; &lt;/TABLE&gt; &lt;/xsl:template&gt; &lt;xsl:template match="VEHICLE"&gt; &lt;TR&gt; &lt;TD&gt;&lt;xsl:value-of select="NAME"&gt;&lt;/TD&gt; &lt;TD&gt;&lt;xsl:value-of select="COLOR"&gt;&lt;/TD&gt; &lt;/TR&gt; &lt;/xsl:template&gt; </code></pre> <p>Et voila, you have:</p> <pre><code>&lt;TABLE&gt; &lt;TR&gt; &lt;TD&gt;car&lt;/TD&gt; &lt;TD&gt;green&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt; &lt;TD&gt;bike&lt;/TD&gt; &lt;TD&gt;red&lt;/TD&gt; &lt;/TR&gt; &lt;/TABLE&gt; </code></pre> <p>Now for this simple example, this is a bit of overkill; but for complex structures in big projects, this is an absolute way to keep your scripting logic away from your markup.</p> http://stackoverflow.com/questions/113077/keeping-my-php-pretty/114141#114141 0 Answer by Twan for Keeping my PHP pretty Twan 2008-09-22T10:21:42Z 2008-09-22T10:27:19Z <p>In stead of implementing templating systems on top of a templating system (PHP itself), creating overhead per default, you can go for a more robust solution like <a href="http://www.w3schools.com/xsl/" rel="nofollow">XSL Transformations</a>, which also complies with the <a href="http://www.phpmvc.net/" rel="nofollow">MVC princples</a> (provided you seperate your data-retrieval; plus, I personally split the logic from displaying the XML with different files).</p> <p>Imagine having the following information in an array, which you want to display in a table.</p> <pre><code>Array { [car] =&gt; green [bike] =&gt; red } </code></pre> <p>You easily create a script that outputs this information in XML:</p> <pre><code>echo "&lt;VEHICLES&gt;\n"; foreach(array_keys($aVehicles) as $sVehicle) echo "\t&lt;VEHICLE&gt;".$sVehicle."&lt;/NAME&gt;&lt;COLOR&gt;".$aVehicles[$sVehicle]."&lt;/COLOR&gt;&lt;/VEHICLE&gt;\n"; echo "&lt;/VEHICLES&gt;\n"; </code></pre> <p>Resulting in the following XML:</p> <pre><code>&lt;VEHICLES&gt; &lt;VEHICLE&gt; &lt;NAME&gt;car&lt;/NAME&gt; &lt;COLOR&gt;green&lt;/COLOR&gt; &lt;/VEHICLE&gt; &lt;VEHICLE&gt; &lt;NAME&gt;bike&lt;/NAME&gt; &lt;COLOR&gt;red&lt;/COLOR&gt; &lt;/VEHICLE&gt; &lt;/VEHICLES&gt; </code></pre> <p>Now this is all excellent, but that won't display in a nice format. This is where XSLT comes in. With some simple code, you can transform this into a table:</p> <pre><code>&lt;xsl:template match="VEHICLES"&gt; &lt;TABLE&gt; &lt;xsl:apply-templates select="VEHICLE"&gt; &lt;/TABLE&gt; &lt;/xsl:template&gt; &lt;xsl:template match="VEHICLE"&gt; &lt;TR&gt; &lt;TD&gt;&lt;xsl:value-of select="NAME"&gt;&lt;/TD&gt; &lt;TD&gt;&lt;xsl:value-of select="COLOR"&gt;&lt;/TD&gt; &lt;/TR&gt; &lt;/xsl:template&gt; </code></pre> <p>Et voila, you have:</p> <pre><code>&lt;TABLE&gt; &lt;TR&gt; &lt;TD&gt;car&lt;/TD&gt; &lt;TD&gt;green&lt;/TD&gt; &lt;/TR&gt; &lt;TR&gt; &lt;TD&gt;bike&lt;/TD&gt; &lt;TD&gt;red&lt;/TD&gt; &lt;/TR&gt; &lt;/TABLE&gt; </code></pre> <p>Now for this simple example, this is a bit of overkill; but for complex structures in big projects, this is an absolute way to keep your scripting logic away from your markup.</p> http://stackoverflow.com/questions/110928/is-there-a-valid-reason-for-enforcing-a-maximum-width-of-80-characters-in-a-code/110935#110935 4 Answer by Twan for Is there a valid reason for enforcing a maximum width of 80 characters in a code file, this day and age? Twan 2008-09-21T12:45:26Z 2008-09-21T12:45:26Z <p>I use the the advantage of bigger screens to have multiple pieces of code next to eachother.</p> <p>You won't get any ammo from me. In fact, I'd hate to see it changed since in emergencies I still see rare cases where I need to change code from a text-console.</p> http://stackoverflow.com/questions/100774/javascript-xsltprocessor-occasionally-not-working/110853#110853 0 Answer by Twan for javascript XSLTProcessor occasionally not working Twan 2008-09-21T12:04:02Z 2008-09-21T12:04:02Z <p>Are you forced into the synchronous solution you are using now, or is an asynchronous solution an option as well? I recall Firefox has had it's share of problems with synchronous calls in the past, and I don't know how much of that is still carried with it. I have seen situations where the entire Firefox interface would lock up for as long as the request was running (which, depending on timeout settings, can take a very long time).</p> <p>It would require a bit more work on your end, but the solution would be something like the following. This is the code I use for handling XSLT stuff with Ajax (rewrote it slightly because my code is object oriented and contains a loop that parses out the appropriate XSL document from the XML document first loaded)</p> <p>Note: make sure you declare your version of oCurrentRequest and oXMLRequest outside of the functions, since it will be carried over.</p> <pre><code>if (window.XMLHttpRequest) { oCurrentRequest = new XMLHttpRequest(); oCurrentRequest.onreadystatechange = processReqChange; oCurrentRequest.open('GET', sURL, true); oCurrentRequest.send(null); } else if (window.ActiveXObject) { oCurrentRequest = new ActiveXObject('Microsoft.XMLHTTP'); if (oCurrentRequest) { oCurrentRequest.onreadystatechange = processReqChange; oCurrentRequest.open('GET', sURL, true); oCurrentRequest.send(); } } </code></pre> <p>After this you'd just need a function named processReqChange that contains something like the following:</p> <pre><code>function processReqChange() { if (oCurrentRequest.readyState == 4) { if (oCurrentRequest.status == 200) { oXMLRequest = oCurrentRequest; oCurrentRequest = null; loadXSLDoc(); } } } </code></pre> <p>And ofcourse you'll need to produce a second set of functions to handle the XSL loading (starting from loadXSLDoc on, for example).</p> <p>Then at the end of you processXSLReqChange you can grab your XML result and XSL result and do the transformation.</p> http://stackoverflow.com/questions/108087/how-do-you-convince-your-boss-not-to-jump-on-every-hype/108096#108096 5 Answer by Twan for How do you convince your boss not to jump on every hype? Twan 2008-09-20T13:05:19Z 2008-09-20T13:05:19Z <p>I am wondering if I should answer 'get a new boss' or 'cheer him on', really. The latter on account of my own employer being rather slow in accepting that technology doesn't stand still. He'd rather wait for a new hype to build up years of 'track record' (which, in this business, is way too long if you ask me).</p> <p>The first would be put jokingly. But I find it a rather suspicious quirk for someone who should be showing signs of management. As long as he doesn't understand the concept of "the right tools for the right job" you will always have problems. What's really leaving me wondering is where he thinks the time/money is going to come from if you keep re-writing all your products with new hypes.</p> <p>This last part is probably your key to dealing with it. Every time he comes with a 'suggestion' to implement a hype, make a list of pros and cons, putting it against the techniques you think are most suited for the job. When that's done and discussed, put a price tag on both options.</p> http://stackoverflow.com/questions/108066/whats-the-best-way-to-track-and-submit-a-timesheet/108080#108080 10 Answer by Twan for What's the best way to track and submit a timesheet? Twan 2008-09-20T12:59:02Z 2008-09-20T12:59:02Z <p>Unless you go for the option of clocking in and out (be it electronically or not), keeping your time record is always going to be obstrusive. You are always going to have to go out of your way to record how much time you spent on doing what you just did.</p> <p>So you really answered your own question there: it's discipline. And it doesn't have to be paper. Is it possible to grab the timesheet at the start of the week, keep updating it (every time you switch projects/tasks) and then submit at the end of the week?</p> http://stackoverflow.com/questions/107828/how-can-i-turn-on-php-errors-display-on-just-a-subfolder/107849#107849 3 Answer by Twan for How can I turn on PHP errors display on just a subfolder Twan 2008-09-20T10:33:08Z 2008-09-20T10:33:08Z <p>The easiest way would be to control the error reporting from a .htaccess file. But this is assuming you are using Apache and the scripts in /html/beta/usercomponent are called from that directory and not included from elsewhere.</p> <p>.htacess</p> <pre><code>php_value error_reporting [int] </code></pre> <p>You will have to compose the integer value yourself from the list as described in the <a href="http://nl3.php.net/manual/en/function.error-reporting.php" rel="nofollow">error_reporting</a> documentation, since the constants like E_ERROR aren't defined when Apache interprets the .htaccess.</p> <p>It's a simple bitwise flag, so a value of 12, for example, would be E_WARNING + E_PARSE + E_NOTICE.</p> http://stackoverflow.com/questions/100774/javascript-xsltprocessor-occasionally-not-working/101048#101048 0 Answer by Twan for javascript XSLTProcessor occasionally not working Twan 2008-09-19T10:50:17Z 2008-09-19T10:50:17Z <p>To avoid problems with things loading in parallel (as hinted by Dan), it is always a good idea to call such scripting only when the page has fully loaded.</p> <p>Ideally you put the script-tags in the page head and call ShowPopularTags(); in the body Onload item. I.e.</p> <pre><code>&lt;BODY onLoad="ShowPopularTags();"&gt; </code></pre> <p>That way you are completely sure that your document.getElementById("popularTags") doesn't fail because the scripting is called before the HTML containing the element is fully loaded.</p> <p>Also, can we see your XMLDocLoad function? If that contains non-sequential elements as well, you might be facing a problem where the XSLT transformation takes place before the objects xml and xsl are fully loaded.</p> http://stackoverflow.com/questions/100898/browser-detection/100918#100918 1 Answer by Twan for Browser Detection Twan 2008-09-19T10:16:27Z 2008-09-19T10:16:27Z <p>Since I just posted this in a (now-deleted question) and it's still in my paste buffer, I'll just repost. Note: this is a server-side PHP solution</p> <p>I currently use the following code for this. It is not nearly an exhausting solution, but it should be easy to implement more browsers. I didn't know about <a href="http://user-agents.org/" rel="nofollow">user-agents.org</a> (thanks PConroy), "one of these days" I'll loop through it and see if I can update and add to my list.</p> <pre><code>define("BROWSER_OPERA","Opera"); define("BROWSER_IE","IE"); define("BROWSER_OMNIWEB","Omniweb"); define("BROWSER_KONQUEROR","Konqueror"); define("BROWSER_SAFARI","Safari"); define("BROWSER_MOZILLA","Mozilla"); define("BROWSER_OTHER","other"); $aBrowsers = array ( array("regexp" =&gt; "@Opera(/| )([0-9].[0-9]{1,2})@", "browser" =&gt; BROWSER_OPERA, "index" =&gt; 2), array("regexp" =&gt; "@MSIE ([0-9].[0-9]{1,2})@", "browser" =&gt; BROWSER_IE, "index" =&gt; 1), array("regexp" =&gt; "@OmniWeb/([0-9].[0-9]{1,2})@", "browser" =&gt; BROWSER_OMNIWEB, "index" =&gt; 1), array("regexp" =&gt; "@(Konqueror/)(.*)(;)@", "browser" =&gt; BROWSER_KONQUEROR, "index" =&gt; 2), array("regexp" =&gt; "@Safari/([0-9]*)@", "browser" =&gt; BROWSER_SAFARI, "index" =&gt; 1), array("regexp" =&gt; "@Mozilla/([0-9].[0-9]{1,2})@", "browser" =&gt; BROWSER_MOZILLA, "index" =&gt; 1) ); foreach($aBrowsers as $aBrowser) { if (preg_match($aBrowser["regexp"], $_SERVER["HTTP_USER_AGENT"], $aBrowserVersion)) { define("BROWSER_AGENT",$aBrowser["browser"]); define("BROWSER_VERSION",$aBrowserVersion[$aBrowser["index"]]); break; } } </code></pre> http://stackoverflow.com/questions/85019/how-can-you-make-a-web-page-send-to-the-printer-something-different-than-whats-i/85087#85087 0 Answer by Twan for How can you make a web page send to the printer something different than what's in the browser window? Twan 2008-09-17T16:33:45Z 2008-09-17T16:33:45Z <p>I tried using different style sheets based on the media, but I ran into trouble getting all the options I needed in. Since then I usually redirect to a different entrance of our (Fusebox) framework (i.e. print.php in stead of index.php) which in essence is the same file except it sets an extra flag/constant. </p> <p>In the XSL file associated with the page I then do additional work based on that flag/constant like leaving out the menu, columns of a table etc.</p> <p>i.e. (Page shows a link that the user has to click to display the password on the screen. The print version has the password printed.)</p> <pre><code>if (!BOOL_PRINT) echo "&lt;TD class=\"tbl_teams_scroll_item\"&gt;&lt;SPAN class=\"span_password_hidden\" id=\"span_password_{\$team_id}\" onClick=\"RevealPassword('{\$team_id}','{\$password}');\"&gt;&lt;xsl:value-of select=\"/PAGE/TEXTS/HIDDEN\" /&gt;&lt;/SPAN&gt;&lt;/TD&gt;\n"; else echo "TD class=\"tbl_teams_scroll_item\"&gt;&lt;xsl:value-of select=\"PASSWORD\" /&gt;&lt;/TD&gt;\n"; </code></pre> http://stackoverflow.com/questions/84912/what-is-the-easiest-or-fastest-way-to-make-css-render-the-same-in-all-browsers/84977#84977 0 Answer by Twan for What is the easiest or fastest way to make CSS render the same in all browsers Twan 2008-09-17T16:21:59Z 2008-09-17T16:21:59Z <p>At the basis there is no guarantee that such a thing will ever work perfectly. As long as the browser developers find ways to do their own thing rather than the 'standard' way of doing things, you will have differences.</p> <p>I've had positive results using the <a href="http://developer.yahoo.com/yui/base/#code" rel="nofollow">Yahoo User Interface Base CSS</a>, but in the end even that couldn't cope with the more complex items that should be possible with CSS.</p> <p>In the end I went for a less-than-perfect solution and simply made my framework check if I had set up browser-specific stylesheets.</p> <p>Here's a PHP snippet to illustrate. Sorry for the language-specific solution, but I guess the idea is clear enough to implement in different languages:</p> <pre><code>$sHTML .= "\t\t&lt;LINK rel=\"stylesheet\" type=\"text/css\" href=\"".$sURLCSS.$sStyle."\" /&gt;\n"; if (file_exists($sPathCSS.$sFileStyle."_".BROWSER_AGENT.".".$sExtension)) $sHTML .= "\t\t&lt;LINK rel=\"stylesheet\" type=\"text/css\" href=\"".$sURLCSS.$sFileStyle."_".BROWSER_AGENT.".".$sExtension."\" /&gt;\n"; if (file_exists($sPathCSS.$sFileStyle."_".BROWSER_AGENT."_".BROWSER_VERSION.".".$sExtension)) $sHTML .= "\t\t&lt;LINK rel=\"stylesheet\" type=\"text/css\" href=\"".$sURLCSS.$sFileStyle."_".BROWSER_AGENT."_".BROWSER_VERSION.".".$sExtension."\" /&gt;\n"; </code></pre> <p>With no missing files, no unrecognized tags or other code that might choke some browsers, the pages from the framework render as we want them to render in all browsers requested by our clients. More importantly, they do so without producing errors (i.e. an empty Error Console in FireFox) which makes debugging when you actually do run into an error a lot easier.</p> http://stackoverflow.com/questions/82933/managing-feature-creep/83000#83000 3 Answer by Twan for Managing Feature creep Twan 2008-09-17T13:12:50Z 2008-09-17T13:12:50Z <p>Ideally requests like this should be handled by the person in charge of the Functional Design. Wether you like it or not, changes will happen (from the first letter in the functional design to the last byte of code and beyond) and there will always be requests for extra features. So make sure your design is up for such a dynamic process.</p> <p>This will probably sound like a very lame solution (and I doubt it's good practice), but I have been struggling with the same issues in the past. The fact that it happened in a very small company (lack of 'layers' in management) made it worse, since I was in charge of development, functional design, technical design and managing my own projects.</p> <p>What worked for me is to deflect the problem back to the person asking (wether it was a superior or the customer). Hand over the functional design, a prototype printout or whatever describes the current situation and ask them to figure out 'how' and 'where' this mighty new feature should be implemented.</p> <p>Both the superiors and the customers were then 'forced' to take it back to their own people, discuss it in meetings and whatnot. Usually this means that you don't hear from it a second time. In the cases where it did come around, it was actually a concept that worked.</p> http://stackoverflow.com/questions/23016/checklist-for-testing-a-new-site/77409#77409 0 Answer by Twan for Checklist for testing a new site Twan 2008-09-16T21:38:24Z 2008-09-16T21:38:24Z <p>There's seperate stages for this one.</p> <p>Firstly there's the technical testing, where you check all technical functionality:</p> <ul> <li>SQL injections</li> <li>Cross-site Scripting (XSS)</li> <li>load times</li> <li>stress levels</li> </ul> <p>Then there's the phase where you have someone completely computer-illiterate sit down and ask them to find something. Not only does it show you where there's flaws in your navigational logic (I find that developers look upon things way differently than 'other people') but they're also guaranteed to find some way to break your site.</p> http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72436#72436 24 Answer by Twan for What should a developer know before building a public web site? Twan 2008-09-16T13:51:10Z 2008-09-16T15:25:11Z <p>It might be a bit outside of the scope, but I'd say that knowing how <strong><a href="http://www.robotstxt.org/robotstxt.html" rel="nofollow">robots.txt</a></strong> and search engine spiders work is a plus.</p> http://stackoverflow.com/questions/49284/file-downloads-in-ie6/72399#72399 0 Answer by Twan for File downloads in IE6 Twan 2008-09-16T13:48:22Z 2008-09-16T13:48:22Z <p>As pilif already mentions, make sure to turn off the server-side gzip compression. For me this has caused problems with PDF files (among other types) and for maybe-not-so-obscure reasons also with .zip files both under Internet Explorer and FireFox.</p> <p>As far as I could tell, the last bit of the zip footer would get stripped (at least by FireFox) causing a corrupted format.</p> <p>In PHP you can use the following code:</p> <pre><code>ini_set("zlib.output_compression",0); </code></pre> http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/67899#67899 0 Answer by Twan for Confessions of your worst WTF Moment. (What not to do.) Twan 2008-09-15T23:21:33Z 2008-09-15T23:21:33Z <p>First day on the job I was asked to set up a new machine for development. So I log onto the machine, sudo to root and start by covering all the basics... like the firewall. Ofcourse I previously had only configured such basics from the console, so it took me a few moments to figure out why I lost my connection right after the</p> <pre><code>ipchains -F ipchains -A input -j DENY </code></pre> <p>Lucky for me the machine was one floor down, not half a country away.</p> http://stackoverflow.com/questions/63743/innerhtml-manipulation-in-javascript/64219#64219 0 Answer by Twan for innerHTML manipulation in JavaScript Twan 2008-09-15T16:01:43Z 2008-09-15T16:01:43Z <p>Would it work to set the scroll position back to the top (element.scrollTop = 0; element.scrollLeft = 0; by heart) before replacing the content?</p> http://stackoverflow.com/questions/85019/how-can-you-make-a-web-page-send-to-the-printer-something-different-than-whats-i/85087#85087 Comment by Twan on How can you make a web page send to the printer something different than what's in the browser window? Twan 2009-10-09T10:03:04Z 2009-10-09T10:03:04Z Above example is somewhat simplified. In reality you'd want to wrap the example SPAN into a check for the boolean, to avoid double code in the form of an if/else statement. In the end, common sense avoids more issues here than the methodology. http://stackoverflow.com/questions/100898/browser-detection/100918#100918 Comment by Twan on Browser Detection Twan 2009-05-09T10:17:39Z 2009-05-09T10:17:39Z This is obviously easily fixed by updating the corresponding regular expression. @Opera(/| )([0-9]{1,2}.[0-9]{1,2})@ should do the trick. Feature detecting might be outdated less often, but requires maintenance as well. Plus, I'm using this to create clean CSS files (so alongside feature detecting in my scripting). http://stackoverflow.com/questions/762328/who-should-i-neglect-when-considering-web-compatability/762344#762344 Comment by Twan on Who should I neglect when considering web compatability? Twan 2009-04-28T21:54:41Z 2009-04-28T21:54:41Z I can confirm this. I develop for the educational sector as well, and sadly school networks are slow in updating. While we have over the past year seen a steady rise in the use of FireFox, the most commong browser and resolution combination still is IE6 @ 1024x768. http://stackoverflow.com/questions/772471/how-to-make-a-chat-room-script-with-php/772647#772647 Comment by Twan on How to make a chat room script with PHP? Twan 2009-04-21T13:49:05Z 2009-04-21T13:49:05Z It is possible to implement push techniques like Comet/reverse-Ajax with PHP. <a href="http://www.zeitoun.net/articles/comet_and_php/start" rel="nofollow">zeitoun.net/articles/comet_and_php/&hellip;</a> holds a simple example. http://stackoverflow.com/questions/113077/keeping-my-php-pretty/114141#114141 Comment by Twan on Keeping my PHP pretty Twan 2008-09-22T10:52:51Z 2008-09-22T10:52:51Z You are absolutely right. And a CDATA tag is always good too. But I left those out, since they'd only obfuscate the goal of this post :) http://stackoverflow.com/questions/113077/keeping-my-php-pretty/113097#113097 Comment by Twan on Keeping my PHP pretty Twan 2008-09-22T09:40:15Z 2008-09-22T09:40:15Z A templating system (Smarty) on top of another templating system (PHP itself) is overhead in principle. I'm all for using techniques like XSL Transformations (<a href="http://www.w3schools.com/xsl/" rel="nofollow">w3schools.com/xsl</a>) Twan http://stackoverflow.com/questions/108066/whats-the-best-way-to-track-and-submit-a-timesheet/108079#108079 Comment by Twan on What's the best way to track and submit a timesheet? Twan 2008-09-20T13:12:25Z 2008-09-20T13:12:25Z This solution would never work for me. To illustrate with an example: all time spent on stackoverflow.com would be counted as 'firefox' time, wether I spent it looking for the answer to a current problem or stumbled upon something interesting, useful, but related to a completely different project. http://stackoverflow.com/questions/62617/whats-the-best-way-to-separate-php-code-and-html/62634#62634 Comment by Twan on What's the best way to separate PHP Code and HTML? Twan 2008-09-20T11:05:01Z 2008-09-20T11:05:01Z With Smarty, all you're doing is adding a templating system on top of a templating system (PHP itself). You are still going to find code in your markup. Limiting yourself to just loops and conditionals is an option, but then you might as well go for true seperation in other forms (i.e. XSLT). http://stackoverflow.com/questions/93279/how-to-create-a-fast-php-library/93305#93305 Comment by Twan on How to create a fast PHP library ? Twan 2008-09-18T15:11:09Z 2008-09-18T15:11:09Z I am actually wondering the same thing. I have not noticed any serious overhead in my use of the __autoload function and it has served me very well.