User Dave Marshall - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T20:55:40Z http://stackoverflow.com/feeds/user/1248 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/230062/whats-the-best-way-to-check-if-a-file-exists-in-c-cross-platform 8 What's the best way to check if a file exists in C? (cross platform) Dave Marshall 2008-10-23T14:57:24Z 2009-02-03T18:06:42Z <p>Is there a better way than simply trying to open the file?</p> <pre><code>int exists(const char *fname) { FILE *file; if (file = fopen(fname, "r")) { fclose(file); return 1; } return 0; } </code></pre> http://stackoverflow.com/questions/173400/php-arrays-a-good-way-to-check-if-an-array-is-associative-or-sequential/265144#265144 9 Answer by Dave Marshall for PHP Arrays: A good way to check if an array is associative or sequential? Dave Marshall 2008-11-05T13:36:30Z 2008-11-05T13:36:30Z <p>Surely this is a better alternative.</p> <pre><code>&lt;?php $arr = array(1,2,3,4); $isIndexed = array_values($arr) === $arr; ?&gt; </code></pre> http://stackoverflow.com/questions/264441/does-a-native-php-5-function-exist-that-does-the-following-in-1-line/264635#264635 1 Answer by Dave Marshall for Does a native php (5+) function exist that does the following in 1 line? Dave Marshall 2008-11-05T08:48:58Z 2008-11-05T08:48:58Z <p>You could return an <a href="http://www.php.net/~helly/php/ext/spl/classArrayObject.html" rel="nofollow">ArrayObject</a>, like so.</p> <pre><code>&lt;? class MyClass { public static function getArray() { $arr = array('dave' =&gt; 1, 'bob' =&gt; 2, 'james' =&gt; 3); return new ArrayObject($arr, ArrayObject::ARRAY_AS_PROPS); } } $var = MyClass::getArray()-&gt;bob; ?&gt; </code></pre> http://stackoverflow.com/questions/260064/php-convert-html-formatted-date/260092#260092 1 Answer by Dave Marshall for PHP Convert HTML Formatted Date Dave Marshall 2008-11-03T21:48:27Z 2008-11-03T21:48:27Z <p><a href="http://uk3.php.net/strtotime" rel="nofollow">strtotime</a> will handle that date format, giving you a unix timestamp. You can then follow the algorithms on <a href="http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time">How do I calculate relative time?</a> to get your result.</p> http://stackoverflow.com/questions/224065/is-there-a-entity-attribute-value-eav-framework-out-there-for-php-mysql/227283#227283 1 Answer by Dave Marshall for Is there a Entity Attribute Value (EAV) framework out there for PHP/MySQL? Dave Marshall 2008-10-22T19:49:30Z 2008-10-22T19:49:30Z <p>I think <a href="http://www.magentocommerce.com/wiki/" rel="nofollow">Magento</a> makes use of an EAV style architecture, might be worth having a look in there. Magento is an ecommerce platform based on the Zend Framework.</p> http://stackoverflow.com/questions/226052/can-i-reliably-create-excel-documents-from-a-php-application-on-a-linux-server/227241#227241 2 Answer by Dave Marshall for Can I reliably create Excel documents from a PHP application on a Linux server? Dave Marshall 2008-10-22T19:37:57Z 2008-10-22T19:37:57Z <p>I've used the PEAR package with lots of success, but there are some limitations when implementing complex formulas. It has something to do with the way excel stores the formula, along with the last calculated result. Sometimes even though the formula is correct, when first opening the sheet the cells show as empty. Once the cell has focus and then loses focus, the calculation is performed and the cell populated.</p> <p>The library is actually a port from a perl library, which is slightly more complete but has the same issues.</p> http://stackoverflow.com/questions/205927/how-to-get-google-to-show-table-of-contents/205952#205952 2 Answer by Dave Marshall for How to get google to show table of contents? Dave Marshall 2008-10-15T18:53:45Z 2008-10-15T18:53:45Z <p><a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=47334" rel="nofollow">Google says</a> they'll show them if your site structure fits and they think it'll be relevant to the user.</p> http://stackoverflow.com/questions/116682/firebug-1-2-document-cookie-inconsistency-with-web-developer/120542#120542 1 Answer by Dave Marshall for Firebug 1.2 document.cookie inconsistency with Web Developer Dave Marshall 2008-09-23T12:01:57Z 2008-09-23T12:01:57Z <p>I'm pretty sure the web developer toolbar shows cookies for domain and sub-domains.</p> <p>So it will show cookies for</p> <p>abc.xyz.com xyz.com</p> <p>whether you are on a page of either domain</p> http://stackoverflow.com/questions/37979/activerecord/38080#38080 0 Answer by Dave Marshall for ActiveRecord Dave Marshall 2008-09-01T15:54:35Z 2008-09-01T15:54:35Z <p>Whilst not strictly ActiveRecord, <a href="http://framework.zend.com/manual/en/zend.db.table.html" rel="nofollow">Zend_Db_Table</a> is pretty good.</p> http://stackoverflow.com/questions/22556/amazon-web-services/22567#22567 1 Answer by Dave Marshall for Amazon Web Services Dave Marshall 2008-08-22T14:53:25Z 2008-08-22T14:53:25Z <p>They have some <a href="http://www.amazon.com/Success-Stories-AWS-home-page/b/ref=sc_fe_l_1?ie=UTF8&amp;node=182241011&amp;no=3440661&amp;me=A36L942TSJ2AJA" rel="nofollow">case studies</a> on their site, it's definitely realistic for these people.</p> http://stackoverflow.com/questions/6371/how-do-you-manage-databases-in-development-test-and-production/22257#22257 1 Answer by Dave Marshall for How do you manage databases in development, test, and production? Dave Marshall 2008-08-22T12:53:34Z 2008-08-22T12:53:34Z <p>Check out the <a href="http://dbdeploy.com/" rel="nofollow">dbdeploy</a>, there are Java and .net tools already available, you could follow their standards for the SQL file layouts and schema version table and write your python version.</p> http://stackoverflow.com/questions/14032/whats-a-good-database-erd-tool-for-linux/20999#20999 1 Answer by Dave Marshall for What's a Good Database ERD Tool for Linux? Dave Marshall 2008-08-21T20:01:06Z 2008-08-21T20:01:06Z <p>I'd definitely recommend <a href="http://www.gliffy.com/" rel="nofollow">Gliffy.com</a> for simple ER diagrams, it's an online flash based tool, so cross platform. I wrote a small <a href="http://www.davedevelopment.co.uk/2008/08/11/review-gliffycom/" rel="nofollow">review</a> of it a week ago.</p> http://stackoverflow.com/questions/20263/is-there-a-profiler-equivalent-for-mysql/20951#20951 0 Answer by Dave Marshall for Is there a Profiler equivalent for MySql? Dave Marshall 2008-08-21T19:47:49Z 2008-08-21T19:47:49Z <p>If version 5.0.37 isn't available, you might want to look at <a href="http://jeremy.zawodny.com/mysql/mytop/" rel="nofollow">mytop</a>. It simply outputs the current status of the server, but allows you to run EXPLAIN as (mentioned by mercutio) on particular queries.</p> http://stackoverflow.com/questions/19958/what-free-and-or-open-source-tools-are-available-for-project-and-process-manageme/20913#20913 0 Answer by Dave Marshall for What free and/or open source tools are available for project and process management? Dave Marshall 2008-08-21T19:34:49Z 2008-08-21T19:34:49Z <p><a href="http://phing.info/trac/" rel="nofollow">Phing</a> is stable and already has built in tasks for running <a href="http://www.phpunit.de/" rel="nofollow">PHPUnit</a> tests, <a href="http://www.phpdoc.org/" rel="nofollow">PHPDocumentor</a> and other basics like packaging. </p> <p>We also use it to <a href="http://www.davedevelopment.co.uk/2008/04/14/how-to-simple-database-migrations-with-phing-and-dbdeploy/" rel="nofollow">migrate our databases</a>.</p> <p>As you're using PHP, you might also want to investigate <a href="http://www.phpundercontrol.org/" rel="nofollow">phpUnderControl</a>, which essentially patches CruiseControl to make use of PHPUnit and PHPDocumentor without the need for Phing.</p> http://stackoverflow.com/questions/19958/what-free-and-or-open-source-tools-are-available-for-project-and-process-manageme/20009#20009 2 Answer by Dave Marshall for What free and/or open source tools are available for project and process management? Dave Marshall 2008-08-21T14:08:10Z 2008-08-21T14:08:10Z <p>I think <a href="http://cruisecontrol.sourceforge.net/" rel="nofollow">CruiseControl</a> could be included, along with some sort of build tool.</p> http://stackoverflow.com/questions/12576/php-performance/16348#16348 0 Answer by Dave Marshall for PHP performance Dave Marshall 2008-08-19T14:59:57Z 2008-08-19T14:59:57Z <p>The ones I can think of...</p> <ul> <li><p><a href="http://hudzilla.org/phpwiki/index.php?title=Get_your_loops_right_first" rel="nofollow">Loop invariants</a> are always a good one to watch.</p></li> <li><p>Write E<em>STRICT and E</em>NOTICE compliant code, particularly if you are logging errors.</p></li> <li><p>Avoid the @ operator.</p></li> <li><p>Absolute paths for requires and includes.</p></li> <li><p>Use strpos, str_replace etc. instead of regular expressions whenever possible.</p></li> </ul> <p>Then there's a bunch of other methods that might work, but probably wont give you much benefit.</p> http://stackoverflow.com/questions/14193/looking-for-reviews-of-vs-php-visual-studio-plugin-for-php/16296#16296 1 Answer by Dave Marshall for Looking for Reviews of VS.PHP (Visual Studio Plugin for PHP) Dave Marshall 2008-08-19T14:40:14Z 2008-08-19T14:40:14Z <p>One of the trainees I mentor settled on using VS.php, the debugger seems to work pretty well, but I've only see it working on the apache instance that VS.php fires up for you, not a true remote 'server'.</p> http://stackoverflow.com/questions/16155/making-one-interface-overwrite-a-method-it-inherits-from-another-interface-in-php/16289#16289 1 Answer by Dave Marshall for Making one interface overwrite a method it inherits from another interface in PHP Dave Marshall 2008-08-19T14:37:42Z 2008-08-19T14:37:42Z <p>My first thoughts where the same as Ryans, I don't think interfaces should have constructors. </p> http://stackoverflow.com/questions/11532/tool-to-find-unused-functions-in-php-project/11658#11658 1 Answer by Dave Marshall for Tool to find unused functions in php project Dave Marshall 2008-08-14T20:17:09Z 2008-08-14T20:17:09Z <p><a href="http://www.xdebug.org/" rel="nofollow" title="excanvas">Xdebug</a> can also provide <a href="http://www.xdebug.org/docs/code_coverage" rel="nofollow">code coverage</a>. You could use it in combination with the auto<em>prepend</em>file and auto<em>append</em>file <a href="http://php.net/ini.core" rel="nofollow">ini directives</a> to log code coverage of your application during general use.</p> http://stackoverflow.com/questions/913/what-javascript-library-would-you-choose-for-a-new-project-and-why/10304#10304 2 Answer by Dave Marshall for What JavaScript library would you choose for a new project and why? Dave Marshall 2008-08-13T19:51:09Z 2008-08-13T19:51:09Z <p>We've moved onto using Dojo, mainly because of the licencing and CLA requirement.</p> http://stackoverflow.com/questions/264441/does-a-native-php-5-function-exist-that-does-the-following-in-1-line/264635#264635 Comment by Dave Marshall on Does a native php (5+) function exist that does the following in 1 line? Dave Marshall 2008-11-10T14:39:25Z 2008-11-10T14:39:25Z Sorry, just trying to offer a reasonable alternative... http://stackoverflow.com/questions/257550/php-ajax-best-practice-for-pre-loading-images Comment by Dave Marshall on php/Ajax - Best practice for pre-loading images Dave Marshall 2008-11-02T23:10:33Z 2008-11-02T23:10:33Z JSON is a text based transfer format, I don't think it'll provide any benefit for preloading images? http://stackoverflow.com/questions/230062/whats-the-best-way-to-check-if-a-file-exists-in-c-cross-platform Comment by Dave Marshall on What's the best way to check if a file exists in C? (cross platform) Dave Marshall 2008-10-30T12:23:30Z 2008-10-30T12:23:30Z @mhawke Cheers, typo http://stackoverflow.com/questions/230062/whats-the-best-way-to-check-if-a-file-exists-in-c-cross-platform Comment by Dave Marshall on What's the best way to check if a file exists in C? (cross platform) Dave Marshall 2008-10-23T15:18:44Z 2008-10-23T15:18:44Z I think I'll give the answer to the access method, despite the stat method being a very reasonable alternative, access gets the job done. http://stackoverflow.com/questions/230062/whats-the-best-way-to-check-if-a-file-exists-in-c-cross-platform Comment by Dave Marshall on What's the best way to check if a file exists in C? (cross platform) Dave Marshall 2008-10-23T15:17:34Z 2008-10-23T15:17:34Z No, it's for *nix. http://stackoverflow.com/questions/91528/where-would-you-advertise-for-a-uk-based-telecommuting-php-developer/152702#152702 Comment by Dave Marshall on Where would you advertise for a UK based telecommuting PHP developer? Dave Marshall 2008-10-07T11:19:40Z 2008-10-07T11:19:40Z @Topbit - It's dead simple and I'd like to keep it that way, concentrate on the marketing and getting more eyes on it for people like yourself @leek - Cheers for the link