User Novak - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T21:59:59Zhttp://stackoverflow.com/feeds/user/13243http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/355830/caching-html-output-with-php/357626#3576260Answer by Novak for Caching HTML output with PHPNovak2008-12-10T21:12:17Z2008-12-10T21:12:17Z<p>If you're not opposed to frameworks, try using the Zend Frameworks's <a href="http://framework.zend.com/manual/en/zend.cache.html#zend.cache.introduction" rel="nofollow">Zend_Cache</a>. It's pretty flexible, and (unlike some of the framework modules) easy to implement.</p>
http://stackoverflow.com/questions/241112/which-is-better-for-encoding-html-for-rss1Which is better for encoding HTML for RSS?Novak2008-10-27T19:19:13Z2008-10-28T11:44:59Z
<p>I recently introduced HTML into some RSS feeds that I publish (which up to now only had plain text, no markup), and I was wondering which method is better: use character encoding (such as htmlspecialchars) or just encapsulate everything in CDATA?</p>
<p>It seems to me that CDATA might be easier, but I'm unclear as to whether there might be any reasons (subtle or otherwise) for choosing one approach versus the other. (For starters, the CDATA approach would be easier to read when viewing source...)</p>
http://stackoverflow.com/questions/75882/what-in-your-mind-is-the-best-php-mvc-framework/76024#760242Answer by Novak for What, in your mind, is the best PHP MVC framework?Novak2008-09-16T19:29:44Z2008-10-15T02:29:18Z<p>I've played around with Cake, Symfony, and the Zend Framework, and ZF appealed to me the most. Easy to implement, and the fact that it's backed by Zend at least provides me the illusion of safety I need to stick with it without worrying it's going to disappear any time soon. ;-) It has its drawbacks, though -- like most frameworks, it's starting to suffer from "let's make it do everything" instead of "let's keep it simple and let people build their own solutions on top of it." But, to each their own...</p>
http://stackoverflow.com/questions/131508/which-browsers-and-operating-systems-do-you-target-on-new-websites/134444#1344440Answer by Novak for Which browsers and operating systems do you target on new websites?Novak2008-09-25T16:44:58Z2008-09-25T16:44:58Z<p>Target none. Test against many.</p>
http://stackoverflow.com/questions/129208/best-practice-self-referential-scripts-on-a-web-site/129352#1293521Answer by Novak for Best practice: Self-referential scripts on a web siteNovak2008-09-24T19:33:32Z2008-09-24T19:33:32Z<p>The strongest argument behind the single file approach for form handling is that it's simply easier to maintain.</p>
<p>Allow me play devil's advocate: if your original two file approach works and is measurable, why change it -- particularly if changing it forces you to come up with workarounds to measure the form submission?</p>
<p>On the other hand, if you're dealing with something more complex than what I'm imagining as a simple contact form submission (for example) then it might behoove you to <a href="http://pear.php.net/package/Log" rel="nofollow">learn how to log your actions</a> instead of depending on a web stats package.</p>
http://stackoverflow.com/questions/101893/how-to-combine-requests-for-multiple-javascript-files-into-one-http-request3How to combine requests for multiple javascript files into one http request?Novak2008-09-19T13:39:55Z2008-09-21T03:39:38Z
<p>This concept is a new one for me -- I first came across it at the <a href="http://developer.yahoo.com/yui/articles/hosting/#configure" rel="nofollow">YUI dependency configurator</a>. Basically, instead of having multiple requests for many files, the files are chained into one http request to cut down on page load time.</p>
<p>Anyone know how to implement this on a LAMP stack? (I saw a similar question was asked already, but it <a href="http://stackoverflow.com/questions/47937/combining-and-caching-multiple-javascript-files-in-aspnet">seems to be ASP specific</a>.</p>
<p>Thanks!</p>
<p>Update: Both answers are helpful...(my rep isn't high enough to comment yet so I'm adding some parting thoughts here). I also came <a href="http://www.artzstudio.com/2008/08/using-modconcat-to-speed-up-render-start/" rel="nofollow">across another blog post</a> with PHP-specific examples that might be useful. David's build answer, though, is making me consider a different approach. Thanks, David!</p>
http://stackoverflow.com/questions/102093/wordpress-xmlrpc-expat-reports-error-code-5/104047#1040470Answer by Novak for WordPress XMLRPC: Expat reports error code 5Novak2008-09-19T17:48:47Z2008-09-19T17:48:47Z<p>Expat is the XML parser in PHP. Error code 5 is one of many expat error constants, in this case: XML_ERROR_UNCLOSED_TOKEN. Sounds to me like there's an error in the result returned from the RPC call. You might want to do some error checking in RPCRequest after file_get_contents and before xmlrpc_decode.</p>
http://stackoverflow.com/questions/101536/best-javascript-drop-down-menu/103822#1038220Answer by Novak for Best Javascript drop-down menu?Novak2008-09-19T17:18:10Z2008-09-19T17:18:10Z<p>I've been an (unabashed) fan of the Yahoo! User Interface Library. <a href="http://developer.yahoo.com/yui/menu/" rel="nofollow">They have a nice menubar system</a> that's easy to implement. Great cross-browser support.</p>
<p>You can probably get something similar from the other popular Javascript frameworks, such as jQuery, as well.</p>
http://stackoverflow.com/questions/102466/is-it-possible-to-save-metadata-in-an-image/102515#1025150Answer by Novak for Is it possible to save metadata in an image?Novak2008-09-19T14:56:11Z2008-09-19T14:56:11Z<p><a href="http://xml.coverpages.org/XMP-Embedding.pdf" rel="nofollow">Embedding XMP Metadata in Application Files</a> (PDF)</p>
http://stackoverflow.com/questions/102221/pro-bono-work-for-non-profits/102400#1024001Answer by Novak for Pro Bono Work For Non-ProfitsNovak2008-09-19T14:44:22Z2008-09-19T14:44:22Z<p>Why not do some outreach on your own in your local community? Call or email an organization and let them know what your skills are -- often times the charities that really need the help might not have the resources to recruit the volunteers they really need.</p>
http://stackoverflow.com/questions/59952/source-control-for-web-development/92428#924281Answer by Novak for Source Control for Web DevelopmentNovak2008-09-18T13:15:38Z2008-09-18T13:15:38Z<p>I recommend SVN, and along with it <a href="http://pragprog.com/titles/svn2/pragmatic-version-control-using-subversion" rel="nofollow">Pragmatic Version Control with Subversion</a> from The Pragmatic Programmers. The book made adopting SVN for me absolutely painless (and a little entertaining). Coincidentally, it also made me a fan of the publishers...but I suppose that's neither here nor there.</p>
<p>Also, I second Greg's comment above about setting up a development environment on your local machine so you don't have to rely on saving changes to your server for testing.</p>
http://stackoverflow.com/questions/76328/is-there-a-way-to-emulate-php5s-call-magic-method-in-php4/76405#764051Answer by Novak for Is there a way to emulate PHP5's __call() magic method in PHP4 ?Novak2008-09-16T20:11:11Z2008-09-16T20:11:11Z<p>This article, <a href="http://www.devshed.com/c/a/PHP/Using-Method-Call-Overloading-in-PHP-4/" rel="nofollow">Using Method Call Overloading in PHP 4 </a> over on DevShed might help.</p>
http://stackoverflow.com/questions/74884/good-javascript-books/75110#751102Answer by Novak for Good JavaScript Books?Novak2008-09-16T17:58:54Z2008-09-16T17:58:54Z<p><a href="http://oreilly.com/catalog/9780596517748/" rel="nofollow">Javascript: The Good Parts</a></p>
http://stackoverflow.com/questions/6166/any-good-php-ide-preferably-free-or-cheapComment by Novak on Any good PHP IDE, preferably free or cheap?Novak2008-11-06T21:13:23Z2008-11-06T21:13:23ZWould interested to know if anyone has down a side-by-side comparison of the oft-mentioned ones (such as Zend, Aptana, and NetBeans).http://stackoverflow.com/questions/224065/is-there-a-entity-attribute-value-eav-framework-out-there-for-php-mysqlComment by Novak on Is there a Entity Attribute Value (EAV) framework out there for PHP/MySQL?Novak2008-10-29T14:01:07Z2008-10-29T14:01:07ZI don't have an answer, but I just read about this recently in php|architect. <a href="http://www.phparch.com/c/magazine/issue/76" rel="nofollow">phparch.com/c/magazine/issue/76</a> Might help you find more info...http://stackoverflow.com/questions/241112/which-is-better-for-encoding-html-for-rss/242991#242991Comment by Novak on Which is better for encoding HTML for RSS?Novak2008-10-28T14:52:43Z2008-10-28T14:52:43ZGah! Guess it's time for me to stop putting off reading up on Atom.http://stackoverflow.com/questions/241112/which-is-better-for-encoding-html-for-rss/241120#241120Comment by Novak on Which is better for encoding HTML for RSS?Novak2008-10-28T14:44:32Z2008-10-28T14:44:32ZGood point. I've had mixed results with various readers when the html characters are encoded -- some will render the HTML, others display the markup.http://stackoverflow.com/questions/241112/which-is-better-for-encoding-html-for-rss/241120#241120Comment by Novak on Which is better for encoding HTML for RSS?Novak2008-10-27T19:47:02Z2008-10-27T19:47:02ZI can see how it'd be easier...but I'm curious if there are any other known advantages/disadvantages.http://stackoverflow.com/questions/241112/which-is-better-for-encoding-html-for-rss/241118#241118Comment by Novak on Which is better for encoding HTML for RSS?Novak2008-10-27T19:28:50Z2008-10-27T19:28:50ZNot a direct answer...but thanks for the recommendation.http://stackoverflow.com/questions/24675/tactics-for-using-php-in-a-high-load-site/24689#24689Comment by Novak on Tactics for using PHP in a high-load siteNovak2008-10-24T15:38:30Z2008-10-24T15:38:30ZPretty thorough answer! lot of good tips here...http://stackoverflow.com/questions/102093/wordpress-xmlrpc-expat-reports-error-code-5/123182#123182Comment by Novak on WordPress XMLRPC: Expat reports error code 5Novak2008-09-29T16:45:06Z2008-09-29T16:45:06ZGlad you figured this out!http://stackoverflow.com/questions/55363/best-tools-for-creating-website-wireframes/55366#55366Comment by Novak on Best tools for creating website wireframesNovak2008-09-24T19:37:07Z2008-09-24T19:37:07ZI second Denim -- though, it's cooler if you have a tablet.