User Marc Gear - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T12:36:47Zhttp://stackoverflow.com/feeds/user/6563http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/72956#729566Answer by Marc Gear for What should a developer know before building a public web site?Marc Gear2008-09-16T14:32:33Z2009-05-08T17:09:40Z<p>How to avoid Cross site request forgeries (xsrf) (this is not cross site scripting (xss))</p>
<p>Now i'll probably be modded down for overuse of parenthesis</p>
http://stackoverflow.com/questions/82620/what-is-the-best-physical-operating-environment-for-a-developer8What is the best physical operating environment for a developer.Marc Gear2008-09-17T12:33:43Z2009-03-04T07:55:15Z
<p>Obviously this is completely subjective, but what environment do you like to work in? Well lit or dark? Warm or cool? Noisy, quiet or do you listen to music via headphones? Open plan, shared/individual office, cubicle? Do you need a fancy aeron chair or are you happy to slump on a couch in starbucks? Laptop on the lap, or fully ergonomic desk with multiple displays. Do you require free donuts?</p>
<p>How important are these things, and <em>control</em> over these things, to developers?</p>
http://stackoverflow.com/questions/121525/php-use-pecl-pear-or-build-my-own-systems/121578#1215784Answer by Marc Gear for PHP: Use Pecl/Pear, or build my own systems?Marc Gear2008-09-23T15:02:27Z2008-12-05T20:05:46Z<p>Save on development time by developing with the pear libraries, and provide the libraries bundled in what you distribute (though you'll have to make sure it obeys licensing requirements)</p>
<p>I would not depend on certain PECL extensions being installed unless you're doing something particularly related to one (say an XDebug web-frontend or something), the majority of installs will be carrying a fairly vanilla set of extensions.</p>
http://stackoverflow.com/questions/72312/how-should-i-capitalize-perl/72334#723342Answer by Marc Gear for How should I capitalize Perl?Marc Gear2008-09-16T13:43:05Z2008-10-08T07:32:43Z<p>"The name is normally capitalized (Perl) when referring to the language and uncapitalized (perl) when referring to the interpreter program itself since Unix-like file systems are case-sensitive." From <a href="http://en.wikipedia.org/wiki/Perl" rel="nofollow">wikipedia</a> at time of posting.</p>
http://stackoverflow.com/questions/150637/why-are-the-built-in-functions-in-php-named-so-randomly/152819#15281910Answer by Marc Gear for Why are the built in functions in PHP named so randomly?Marc Gear2008-09-30T12:28:32Z2008-09-30T12:28:32Z<p>Historically many of the functions are direct maps to their C counterparts, so a lot of the naming and argument ordering weirdness in PHP is due to that. </p>
<p>Contributors to PHP have generally contributed the language to meet their own needs, so the language has grown organically and at times ill-diciplined. Its popularity has also meant that it has strived to maintain backwards compatability throughout its lifecycle, meaning that poor decisions about the language live on for some time after they are depreciated.</p>
http://stackoverflow.com/questions/117987/best-text-search-engine-for-integrating-with-custom-web-app/149425#1494252Answer by Marc Gear for Best text search engine for integrating with custom web app?Marc Gear2008-09-29T16:15:17Z2008-09-29T16:15:17Z<p><a href="http://www.sphinxsearch.com/" rel="nofollow">Sphinx</a> may be worth your consideration, as it works well with several common RDMS (notably MySQL)</p>
http://stackoverflow.com/questions/133686/what-is-the-best-way-to-profile-php-code/133943#1339430Answer by Marc Gear for What is the best way to profile PHP codeMarc Gear2008-09-25T15:20:47Z2008-09-25T15:20:47Z<p>XDebug is nice but its not that easy to use or setup IMO. </p>
<p>The profiler built into Zend Studio is very easy to use. You just hit a button on a browser toolbar and <em>BAM</em> you have your code profile. ts perhaps not as indepth as a CacheGrind dump, but its always been good enough for me.</p>
<p>You do need to setup Zend Platform too, but thats straightforward and free for development use - you'd still have to pay for the Zend Studio licence though. </p>
http://stackoverflow.com/questions/132194/php-storing-objects-inside-the-session/132219#1322191Answer by Marc Gear for PHP: Storing 'objects' inside the $_SESSION.Marc Gear2008-09-25T08:55:27Z2008-09-25T08:55:27Z<p>You'll have to remember that resource types (such as db connections or file pointers) wont persist between page loads, and you'll need to invisibly re-create these. </p>
<p>Also consider the size of the session, depending how it is stored, you may have size restrictions, or latency issues.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127796#1277960Answer by Marc Gear for PHP Optimization TipsMarc Gear2008-09-24T15:16:17Z2008-09-24T15:35:50Z<p>prefer require and include over thier _once counterparts</p>
<p>EDIT: added at request of commenter: because require_once requires checks to see if the file has been included before. Benchmark it yourself and you'll see its noticeably slower.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127907#1279070Answer by Marc Gear for PHP Optimization TipsMarc Gear2008-09-24T15:33:24Z2008-09-24T15:33:24Z<p>use the <a href="http://www.php.net/manual/en/ref.strings.php" rel="nofollow">string handling functions</a> instead of preg_ and ereg_ functions if you can.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127811#1278111Answer by Marc Gear for PHP Optimization TipsMarc Gear2008-09-24T15:18:09Z2008-09-24T15:27:51Z<p>the mysql extension is faster than the mysqli extention, which is (sometimes) faster than PDO.</p>
<p>If you use mysqli in conjunction with <a href="http://dev.mysql.com/downloads/connector/php-mysqlnd/" rel="nofollow">mysqlnd</a> thats faster still</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127849#1278496Answer by Marc Gear for PHP Optimization TipsMarc Gear2008-09-24T15:23:21Z2008-09-24T15:23:21Z<p>I realise this doesn't answer the question - but I happen to think its worth saying.</p>
<p>Nearly all of these 'optimizations' are premature, and should probably not be implemented at the expense of making code easy to understand and maintain. There are likley to me much larger bottlenecks than these optimizations.</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127837#1278370Answer by Marc Gear for PHP Optimization TipsMarc Gear2008-09-24T15:20:38Z2008-09-24T15:20:38Z<p>foreach is faster than while(list()=each()) when you're not modifying values, if you're modifying the hash, while(list()=each()) is faster</p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127806#127806-1Answer by Marc Gear for PHP Optimization TipsMarc Gear2008-09-24T15:17:16Z2008-09-24T15:17:16Z<p>use array_key_exists() to find values in arrays rather than in_array()</p>
http://stackoverflow.com/questions/127084/how-do-you-deal-with-micromanagers/127278#1272781Answer by Marc Gear for How do you deal with micromanagers?Marc Gear2008-09-24T13:54:30Z2008-09-24T13:54:30Z<p>This is the worlds best article on dealing with micromanagers:</p>
<p><a href="http://www.randsinrepose.com/archives/2006/07/25/secret_titles.html" rel="nofollow">http://www.randsinrepose.com/archives/2006/07/25/secret_titles.html</a></p>
<p>Read it, and then read everything else on the site. </p>
http://stackoverflow.com/questions/121599/couchdb-backups-and-cloneing-the-database/121632#1216327Answer by Marc Gear for CouchDB Backups and Cloneing the DatabaseMarc Gear2008-09-23T15:13:29Z2008-09-24T11:54:37Z<p>CouchDB supports replication, so just replicate to another instance of CouchDB and backup from there, avoiding disturbing where you write changes to.</p>
<p><a href="http://wiki.apache.org/couchdb/FrequentlyAskedQuestions#how_replication" rel="nofollow">http://wiki.apache.org/couchdb/FrequentlyAskedQuestions#how_replication</a></p>
<p>You literally send a POST request to your CouchDB instance telling it where to replicate to, and it Works(tm)</p>
<p>EDIT: You can just cp out the files from under the running database as long as you can accept the I/O hit.</p>
http://stackoverflow.com/questions/123092/underused-features-of-html/123170#1231704Answer by Marc Gear for Underused Features of HTMLMarc Gear2008-09-23T19:18:10Z2008-09-23T19:18:10Z<p><abbr></p>
http://stackoverflow.com/questions/121203/how-to-detect-if-javascript-is-disabled/121259#12125916Answer by Marc Gear for How to detect if JavaScript is disabled?Marc Gear2008-09-23T14:16:38Z2008-09-23T14:16:38Z<p>I assume that you're trying to decide whether or not to deliver JavaScript enhanced content. Obviously the best thing to do is to degrade cleanly, so that your site still operates without JS, and I guess that you mean detection on the server-side, rather than just the use of <noscript> tags.</p>
<p>There isn't really a good way to do server-side JavaScript detection. The best option open to you is to use JavaScript to drop a cookie, and then test for that cookie in your server side scripting for future page views, and deliver content appropriately.</p>
http://stackoverflow.com/questions/120764/ideal-size-working-area-per-developer/120769#1207693Answer by Marc Gear for Ideal size working area per developerMarc Gear2008-09-23T12:47:20Z2008-09-23T12:47:20Z<p>at least 2560x1024 ;)</p>
http://stackoverflow.com/questions/119281/how-do-you-copy-a-php-object-into-a-different-object-type/120758#1207581Answer by Marc Gear for How do you copy a PHP object into a different object typeMarc Gear2008-09-23T12:45:09Z2008-09-23T12:45:09Z<p>A php object isn't a whole lot different to an array, and since all PHP 4 object variables are public, you can do some messy stuff like this:</p>
<pre><code>function clone($object, $class)
{
$new = new $class();
foreach ($object as $key => $value)
{
$new->$key = $value;
}
return $new;
}
$mySubclassObject = clone($myObject, 'mySubclass');
</code></pre>
<p>Its not pretty, and its certianly not what I'd consider to be good practice, but it <em>is</em> reusable, and it is pretty neat.</p>
http://stackoverflow.com/questions/120016/php-simplexml-problem/120069#1200692Answer by Marc Gear for PHP simplexml problemMarc Gear2008-09-23T09:40:35Z2008-09-23T09:40:35Z<p>I believe its equivalent to the __toString() method on the object, so </p>
<pre><code>echo $description[0];
</code></pre>
<p>Should display it, or you can cast it;</p>
<pre><code>$str = (string) $description[0];
</code></pre>
http://stackoverflow.com/questions/93279/how-to-create-a-fast-php-library/93458#934581Answer by Marc Gear for How to create a fast PHP library ?Marc Gear2008-09-18T15:13:44Z2008-09-18T15:13:44Z<p>You could use spl_autoload_register() or __autoload() to create whatever rules you need for including the files that you need for classes, however autoload introduces its own performance overheads. You'll need to make sure whatever you use is prepended to all gui pages using a php.ini setting or an apache config.</p>
<p>For your files with generic functions, I would suggest that you wrap them in a utility class and do a simple find and replace to replace all your function() calls with util::function(), which would then enable you to autoload these functions (again, there is an overhead introduced to calling a method rather than a global function).</p>
<p>Essentially the best thing to do is go back through your code and pay off your design debt by fixing the include issues. This will give you the most performance benefit, and it will allow you to make the most of optimisers like eAccelerator, Zend Platform and APC</p>
<p>Here is a sample method for loading stuff dynamically</p>
<pre><code>public static function loadClass($class)
{
if (class_exists($class, false) ||
interface_exists($class, false))
{
return;
}
$file = YOUR_LIB_ROOT.str_replace('_', DIRECTORY_SEPARATOR, $class).'.php';
if (file_exists($file))
{
include_once $file;
if (!class_exists($class, false) &&
!interface_exists($class, false))
{
throw new Exception('File '.$file.' was loaded but class '.$class.' was not found');
}
}
}
</code></pre>
http://stackoverflow.com/questions/84980/resending-invitation-action-emails/85031#850310Answer by Marc Gear for Resending invitation/action emailsMarc Gear2008-09-17T16:28:38Z2008-09-17T16:28:38Z<p>If you implement it I would get the user to re-enter and re-confirm the email address they entered and I would not allow it to be used more than a few times, otherwise it would be very easy to script an abuse script to bomb someones mailbox.</p>
http://stackoverflow.com/questions/83696/strategy-for-fixing-layout-bugs-in-ie6/83759#83759-1Answer by Marc Gear for Strategy for Fixing Layout Bugs in IE6?Marc Gear2008-09-17T14:22:58Z2008-09-17T14:22:58Z<p>In theory, use CSS compatible with IE6 layout bugs, utilise only well known workarounds (css and html filters) and code for them in a way that wont break forward compatibility, test for quirks/strict mode.</p>
<p>In reality, resort to tables.</p>
http://stackoverflow.com/questions/83185/should-you-administer-iq-tests-to-programmers-during-the-interview-process/83213#832132Answer by Marc Gear for Should you administer IQ tests to programmers during the interview process?Marc Gear2008-09-17T13:32:05Z2008-09-17T14:17:42Z<p>Well I wouldn't go any further with the application process if I was asked to complete an IQ test. I've also been asked to complete 'personality tests' that claim to evaluate 'team fit' or 'leadership style' which I think are Bad News (tm).</p>
<p>I have no problem with programming tests.</p>
http://stackoverflow.com/questions/83088/php-mysql-regular-recalcuation-of-benchmark-values-as-new-users-submit-their-da/83150#831501Answer by Marc Gear for PHP/mySQL - regular recalcuation of benchmark values as new users submit their dataMarc Gear2008-09-17T13:26:02Z2008-09-17T13:26:02Z<p>What you're considering could be done in a number of ways.</p>
<ol>
<li><p>You could setup a trigger in your DB to recalculate the values whenever a new record is updated. You could store the code needed to update the values in a sproc if necessary.</p></li>
<li><p>You could write a PHP script and run it regularly via cron.</p></li>
</ol>
<p>#1 will slow down inserts to your database but will make sure your data is <em>always</em> up to date. #2 may lock the tables while it updates the new values, and your data will only be accurate until the next update. #2 is much easier to back up, as the script can easily be stored in your versioning system, whereas you'd need to store the trigger and sproc creation scripts in whatever backup you'd make.</p>
<p>Obviously you'll have to weigh up your requirements before you pick a method.</p>
http://stackoverflow.com/questions/82933/managing-feature-creep/82973#8297315Answer by Marc Gear for Managing Feature creepMarc Gear2008-09-17T13:10:06Z2008-09-17T13:10:06Z<p>Have feature requests handled in a formal process, normally through the project manager and whoever analyzed the requirements originally. Its always better to palm those sorts of decisions off to someone that isn't the developer, assuming that whoever is going to do that job is actually capable of it.</p>
<p>If you're freelance then obviously charge for changes to the requirements, and if you're an internal development team, then you could consider inter-department billing to make sure people think about what they want to spend money on. </p>
<p>Finally, <strong>expect</strong> requirements to change and feature creep to happen. If you code without considering what changes might be requested, or your process and/or deadlines are so inflexible that you can't adjust to this, then you'll find that the project will become a nightmare.</p>
http://stackoverflow.com/questions/82872/php-rss-builder/82894#828942Answer by Marc Gear for PHP - RSS builderMarc Gear2008-09-17T13:02:09Z2008-09-17T13:02:09Z<p>I would use <a href="http://www.php.net/simplexml" rel="nofollow">simpleXML</a> to create the required structure and export the XML. Then I'd cache it to disk with file_put_contents().</p>
http://stackoverflow.com/questions/75857/how-can-myisam-tables-be-used-more-safely/82840#828400Answer by Marc Gear for How can MyISAM tables be used more safely?Marc Gear2008-09-17T12:56:14Z2008-09-17T12:56:14Z<p>This really depends a lot on how your use of the tables. If they are write heavy, then you may want to consider removing indexes, which will speed up the recovery time. If they are read heavy, you may want to consider using replication which will serialise all writes to your tables, minimising the recovery time for your read copy after a crash. </p>
<p>Once thing you could do is write to an InnoDB copy of the table, and then replicate to a MyISAM copy. The performance benefits of MyISAM are mostly read-oriented anyway.</p>
<p>Using replication of course, you will have lag time between reads and writes</p>
http://stackoverflow.com/questions/82611/is-there-textmate-like-editor-for-windows/82631#826312Answer by Marc Gear for Is there TextMate-like editor for Windows?Marc Gear2008-09-17T12:34:58Z2008-09-17T12:34:58Z<p>I'm a big fan of <a href="http://www.editplus.com/" rel="nofollow">editplus</a></p>
http://stackoverflow.com/questions/127765/php-optimization-tips/127811#127811Comment by Marc Gear on PHP Optimization TipsMarc Gear2008-09-29T12:35:23Z2008-09-29T12:35:23Z<a href="http://myphpdigest.com/tutorial/Benchmark_-_MYSQL_vs_MYSQLi" rel="nofollow">myphpdigest.com/tutorial/…</a> <a href="http://blogs.vinuthomas.com/2006/08/07/benchmark-mysql-mysqli-pdo-in-php/" rel="nofollow">blogs.vinuthomas.com/2006/08/…</a> <a href="http://dealnews.com/developers/php-mysql.html" rel="nofollow">dealnews.com/developers/php-mysql.html</a>
There are a bunch of others who have done benchmarks but i'd encourage you to do your own and see what works for you.http://stackoverflow.com/questions/127765/php-optimization-tips/127849#127849Comment by Marc Gear on PHP Optimization TipsMarc Gear2008-09-24T16:08:42Z2008-09-24T16:08:42ZThose sorts of things will give you much better scope for improvement, as well as being easier to do than refactor all your code to do things like ommiting double quotes.http://stackoverflow.com/questions/127765/php-optimization-tips/127849#127849Comment by Marc Gear on PHP Optimization TipsMarc Gear2008-09-24T16:07:55Z2008-09-24T16:07:55ZIf you're working on a mature product, then this isn't the sort of otimisation you should really be making. Profile your code, and see where the biggest wins are, add a data caching strategy, and an opcode cache as well as profiling the use of your external dependancies (db etc). http://stackoverflow.com/questions/127765/php-optimization-tips/127806#127806Comment by Marc Gear on PHP Optimization TipsMarc Gear2008-09-24T16:05:33Z2008-09-24T16:05:33Zif you're just checking that a particular value exists in an array in_array() is a slow way to do it, array_key_exists(array_flip($array)) is likely to be faster.http://stackoverflow.com/questions/127765/php-optimization-tips/127796#127796Comment by Marc Gear on PHP Optimization TipsMarc Gear2008-09-24T15:24:34Z2008-09-24T15:24:34ZBecause require_once requires checks to see if the file has been included before. Benchmark it yourself and you'll see its noticably slowerhttp://stackoverflow.com/questions/122954/timed-events-with-php-mysqlComment by Marc Gear on Timed events with php/MySQLMarc Gear2008-09-23T19:20:33Z2008-09-23T19:20:33ZWhat sort of timespan are you looking at? updating after a few seconds would be easy, updating after a few hours, more difficult.http://stackoverflow.com/questions/120764/ideal-size-working-area-per-developer/120769#120769Comment by Marc Gear on Ideal size working area per developerMarc Gear2008-09-23T14:52:32Z2008-09-23T14:52:32ZI was trying to be funny, but you're right not a bad size for a desk in mm More geeky than regular sizes too
http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/121380#121380Comment by Marc Gear on What is the one programming skill you have always wanted to master but haven't had time?Marc Gear2008-09-23T14:46:31Z2008-09-23T14:46:31ZDefinately functional programming. I studied ML at university, but it completely baffled me. At the time so did Java, and now I don't have any trouble understanding those concepts. Time to take another look at functional programming.http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-usedComment by Marc Gear on What is the strangest programming language you have used?Marc Gear2008-09-17T13:14:33Z2008-09-17T13:14:33ZSo you dont mean LOLcode then?http://stackoverflow.com/questions/77172/stored-procedures-db-schema-in-source-controlComment by Marc Gear on Stored procedures/DB schema in source controlMarc Gear2008-09-17T10:16:47Z2008-09-17T10:16:47ZMake more than one "Accepted Answer" a feature request ;)http://stackoverflow.com/questions/73045/whats-the-best-way-to-organize-code/73081#73081Comment by Marc Gear on What's the best way to organize code?Marc Gear2008-09-16T16:28:49Z2008-09-16T16:28:49ZAn example is that in PHP there is a magic method __call() which if implements, will be called whenever a method which is not implemented in the class of the receiver or its parent classes is called.http://stackoverflow.com/questions/73045/whats-the-best-way-to-organize-code/73081#73081Comment by Marc Gear on What's the best way to organize code?Marc Gear2008-09-16T16:27:40Z2008-09-16T16:27:40Z'magic' methods are methods that have special behavior, that doesn't represent part of the objects API, but adds functionality - they are notoriously difficult to document and can make code disobey the rule that you should not 'do the unexpected'...http://stackoverflow.com/questions/73045/whats-the-best-way-to-organize-code/73081#73081Comment by Marc Gear on What's the best way to organize code?Marc Gear2008-09-16T16:02:21Z2008-09-16T16:02:21ZWell its a fairly generic structure that really just lists the order I put things. It certainly is more relevant to a value object - as I tend to use many more value objects than entities. Added behaviors to my list to clarify where I'd put them http://stackoverflow.com/questions/72166/penetration-testing-tools/72257#72257Comment by Marc Gear on Penetration testing toolsMarc Gear2008-09-16T15:11:47Z2008-09-16T15:11:47ZI would add that it's a scanner, so it might not be suitable for your dev environmenthttp://stackoverflow.com/questions/72166/penetration-testing-tools/72257#72257Comment by Marc Gear on Penetration testing toolsMarc Gear2008-09-16T15:11:00Z2008-09-16T15:11:00ZCan't say for sure, but its definately up for me at the moment