User Novak - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T21:59:59Z http://stackoverflow.com/feeds/user/13243 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/355830/caching-html-output-with-php/357626#357626 0 Answer by Novak for Caching HTML output with PHP Novak 2008-12-10T21:12:17Z 2008-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-rss 1 Which is better for encoding HTML for RSS? Novak 2008-10-27T19:19:13Z 2008-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#76024 2 Answer by Novak for What, in your mind, is the best PHP MVC framework? Novak 2008-09-16T19:29:44Z 2008-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#134444 0 Answer by Novak for Which browsers and operating systems do you target on new websites? Novak 2008-09-25T16:44:58Z 2008-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#129352 1 Answer by Novak for Best practice: Self-referential scripts on a web site Novak 2008-09-24T19:33:32Z 2008-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-request 3 How to combine requests for multiple javascript files into one http request? Novak 2008-09-19T13:39:55Z 2008-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#104047 0 Answer by Novak for WordPress XMLRPC: Expat reports error code 5 Novak 2008-09-19T17:48:47Z 2008-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#103822 0 Answer by Novak for Best Javascript drop-down menu? Novak 2008-09-19T17:18:10Z 2008-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#102515 0 Answer by Novak for Is it possible to save metadata in an image? Novak 2008-09-19T14:56:11Z 2008-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#102400 1 Answer by Novak for Pro Bono Work For Non-Profits Novak 2008-09-19T14:44:22Z 2008-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#92428 1 Answer by Novak for Source Control for Web Development Novak 2008-09-18T13:15:38Z 2008-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#76405 1 Answer by Novak for Is there a way to emulate PHP5's __call() magic method in PHP4 ? Novak 2008-09-16T20:11:11Z 2008-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#75110 2 Answer by Novak for Good JavaScript Books? Novak 2008-09-16T17:58:54Z 2008-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-cheap Comment by Novak on Any good PHP IDE, preferably free or cheap? Novak 2008-11-06T21:13:23Z 2008-11-06T21:13:23Z Would 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-mysql Comment by Novak on Is there a Entity Attribute Value (EAV) framework out there for PHP/MySQL? Novak 2008-10-29T14:01:07Z 2008-10-29T14:01:07Z I 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#242991 Comment by Novak on Which is better for encoding HTML for RSS? Novak 2008-10-28T14:52:43Z 2008-10-28T14:52:43Z Gah! 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#241120 Comment by Novak on Which is better for encoding HTML for RSS? Novak 2008-10-28T14:44:32Z 2008-10-28T14:44:32Z Good 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#241120 Comment by Novak on Which is better for encoding HTML for RSS? Novak 2008-10-27T19:47:02Z 2008-10-27T19:47:02Z I 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#241118 Comment by Novak on Which is better for encoding HTML for RSS? Novak 2008-10-27T19:28:50Z 2008-10-27T19:28:50Z Not a direct answer...but thanks for the recommendation. http://stackoverflow.com/questions/24675/tactics-for-using-php-in-a-high-load-site/24689#24689 Comment by Novak on Tactics for using PHP in a high-load site Novak 2008-10-24T15:38:30Z 2008-10-24T15:38:30Z Pretty thorough answer! lot of good tips here... http://stackoverflow.com/questions/102093/wordpress-xmlrpc-expat-reports-error-code-5/123182#123182 Comment by Novak on WordPress XMLRPC: Expat reports error code 5 Novak 2008-09-29T16:45:06Z 2008-09-29T16:45:06Z Glad you figured this out! http://stackoverflow.com/questions/55363/best-tools-for-creating-website-wireframes/55366#55366 Comment by Novak on Best tools for creating website wireframes Novak 2008-09-24T19:37:07Z 2008-09-24T19:37:07Z I second Denim -- though, it's cooler if you have a tablet.