User Clayton - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T21:33:09Zhttp://stackoverflow.com/feeds/user/49529http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1625435/whats-the-best-place-for-external-libraries-in-a-php-project2What's the best place for external libraries in a PHP project?Clayton2009-10-26T15:18:34Z2009-10-26T15:33:46Z
<p>What's the best practice for locating external libraries in a PHP project (e.g., GoogleMapAPI, Recaptcha, etc.)? Right now I have all classes in /lib or subdirectories thereof, and am using Zend convention for naming (e.g., class Foo sits in /lib/Foo.php, class Db_Bar sits in /lib/Db/Bar.php).</p>
<p>But should I segregate third-party stuff? If so, how? Where? Inside /lib? Elsewhere? Note: Autoloading of these classes is not an issue because they are always included/required explicitly where needed (unlike my own classes).</p>
<p>THANKS!</p>
http://stackoverflow.com/questions/524647/what-things-are-best-not-done-in-a-constructor6What things are best not done in a constructor?Clayton2009-02-07T21:48:41Z2009-09-25T09:00:43Z
<p>I started off by drafting a question: "What is the best way to perform unit testing on a constructor (e.g., __construct() in PHP5)", but when reading through the related questions, I saw several comments that seemed to suggest that setting member variables or performing any complicated operations in the constructor are no-nos.</p>
<p>The constructor for the class in question here takes a param, performs some operations on it (making sure it passes a sniff test, and transforming it if necessary), and then stashes it away in a member variable.</p>
<p>I thought the benefits of doing it this way were:</p>
<p>1) that client code would always be
certain to have a value for this
member variable whenever an object
of this class is instantiated, and</p>
<p>2) it saves a step in client code
(one of which could conceivably be
missed), e.g.,</p>
<pre><code>$Thing = new Thing;
$Thing->initialize($var);
</code></pre>
<p>when we could just do this</p>
<pre><code>$Thing = new Thing($var);
</code></pre>
<p>and be done with it.</p>
<p>Is this a no-no? If so why? </p>
http://stackoverflow.com/questions/1106410/how-do-you-sanitize-your-data/1106580#11065800Answer by Clayton for How do you sanitize your data?Clayton2009-07-09T21:33:12Z2009-07-09T21:33:12Z<ol>
<li><p>In general, use filter_var()</p></li>
<li><p>In cases where only very specific formats or values are allowed it may be better to use regexes or in_array() of valid values.</p></li>
<li><p>Remember that "input" means <em>any</em> source of input that you don't directly control.</p></li>
<li><p>If the input is going into a query, use prepared statements (e.g., mysqli)</p></li>
</ol>
http://stackoverflow.com/questions/627062/class-with-variations-store-retrieve-parameters-or-subclass0Class with variations: Store/retrieve parameters? Or subclass?Clayton2009-03-09T16:49:55Z2009-06-12T11:28:22Z
<p>Let's say one has a class that performs a certain type of task. And let's say that there are a number of variations of that task. The actions are the same, just a few parameters change (<em>e.g.</em>, for soft boiled egg, action = boil, time = 5 min.; for hard boiled egg, action = boil, time = 11 min., <em>etc</em>.). Number of parameters that vary is about 10.</p>
<p>I see there are three ways to do this:</p>
<ul>
<li><p>Use a switch and set the params in
code based on type.</p></li>
<li><p>Save the parameters in a database or
file and retrieve them based on
task type.</p></li>
<li><p>Subclass the task, overriding the
parameters of the parent class and
instantiate subclassed objects to
perform the task in question.</p></li>
</ul>
<p>The first option is clumsy. But how do I decide between the other two?</p>
<p>1) Retrieve parameters from file or db.</p>
<ul>
<li>PRO: No need for subclassing or
factory. Simple.</li>
<li>CON: Requires additional query or file access. Parameters no longer visible in code.</li>
</ul>
<p>2) Subclass the task.</p>
<ul>
<li>PRO: Does not require additional
query or file access. Parameters
maintained in code.</li>
<li>CON: Proliferation of classes and
need to make factory.</li>
</ul>
<p>Have I correctly identified the pros and cons? What other criteria should I use to decide the issue? </p>
<p>Please advise. THANKS!</p>
http://stackoverflow.com/questions/944558/which-is-better-requireonce-or-if-definedfoobar-require-or-something-e1Which is better: require_once? or if (!defined('FOOBAR')) require? or something entirely different?Clayton2009-06-03T12:49:58Z2009-06-03T13:55:41Z
<p>Assuming PHP version >= 5.2, which is a better solution for managing includes: </p>
<pre><code>require_once DEFPATH . 'config.inc.php';
</code></pre>
<p>or </p>
<pre><code>if (!defined('FOOBAR')) require DEFPATH . 'config.inc.php';
</code></pre>
<p>or something entirely different?</p>
<p>Site does not use a front controller or autoloader. Typical number of files needed to be included is 3 - 8.</p>
<p>I've heard, here and elsewhere, that <code>require_once</code> adds overhead and does not play nice with caching. But I've also heard that a small number of <code>require_once</code> statements is OK in practice in later versions of PHP.</p>
<p>There must also be some overhead associated with checking if something is defined, but that may be less of an issue.</p>
<p>In general, which is the better practice and why?</p>
<p>THANKS</p>
http://stackoverflow.com/questions/927626/how-do-you-deal-with-internet-explorer/927734#9277349Answer by Clayton for How do you deal with Internet Explorer?Clayton2009-05-29T19:31:48Z2009-05-29T19:31:48Z<p>Browser reset to start. Level the playing field as much as possible and do away with browser defaults. Build your CSS from the ground up. (See: <a href="http://meyerweb.com/eric/thoughts/2007/04/12/reset-styles/" rel="nofollow">http://meyerweb.com/eric/thoughts/2007/04/12/reset-styles/</a>)</p>
<p>Test early and often across all major browsers during development.</p>
<p>Try to accomplish as much as possible without browser specific hacks. Sometimes you'll need to work in some browser-specific CSS but it should validate (use the W3C Validation tool). Sometimes though there's just nothing for it but a conditional (and maybe even some JavaScript), e.g. fix for transparent PNGs in IE6 (See: <a href="http://nettuts.com/videos/screencasts/5-easy-ways-to-tackle-ie6s-transparency-issues/" rel="nofollow">http://nettuts.com/videos/screencasts/5-easy-ways-to-tackle-ie6s-transparency-issues/</a>).</p>
<p>If you cannot run IE on one of your development machines, try <a href="http://browsershots.org" rel="nofollow">http://browsershots.org</a>. At least you can get some feedback this way.</p>
<p>Use a debug.css that highlights or outlines divs and other elements. Toss this into your HTML head if needed during development. This can be a huge help.</p>
<p>Use "developer toolbars" where available (IE, Firefox).</p>
<p>EXPECT THAT IE IS GOING TO BE A PAIN, and TEST IN 6, 7 and 8.</p>
<p><a href="http://ie6update.com/" rel="nofollow">http://ie6update.com/</a> + PRAY :)</p>
<p>Have fun!</p>
http://stackoverflow.com/questions/619900/determining-class-responsibility-and-collaborators1Determining Class Responsibility and CollaboratorsClayton2009-03-06T18:23:22Z2009-03-06T18:59:52Z
<p>I'm using ActiveRecord to maintain information about users. The User class has the expected load(), insert(), update(), and delete() methods, setters, getters, and a few others. But I am having trouble deciding whether or not certain other methods should be included in the User class, or handled by collaborators.</p>
<p>Here's an example:</p>
<p>There are several transactions that a user might request that require confirmation. This is handled in a conventional way -- sending an email to the user with a link; clicking the link confirms that the user does indeed want the transaction to proceed. A hash of the verification key and it's expiration date/time persist as part of the user record.</p>
<p>Where should I draw the line in this process? Should there be a collaborator that handles verification (for example by taking the plain-text verification key from the query string and accepting a User object as a param)? Or should this be handled internally by the User class (passing the plain-text verification key in a method call)?</p>
<p>The very next thing that would happen upon verification, of course, is that the transaction would proceed requiring an update to the active record -- and there, it seems to me, the User class must have responsibility.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/532754/inheritance-of-static-members-in-php4Inheritance of static members in PHPClayton2009-02-10T15:19:51Z2009-03-06T01:36:08Z
<p>In PHP, if a static attribute is defined in the parent class, it cannot be overridden in a child class. But I'm wondering if there's any way around this. </p>
<p>I'm trying to write a wrapper for someone else's (somewhat clunky) function. The function in question can be applied to lots of different data types but requires different flags and options for each. But 99% of the time, a default for each type would suffice.</p>
<p>It would be nice if this could be done with inheritance, without having to write new functions each time. For example:</p>
<pre><code>class Foo {
public static $default = 'DEFAULT';
public static function doSomething ($param = FALSE ) {
$param = ($param === FALSE) ? self::$default : $param;
return $param;
}
}
class Bar extends Foo {
public static $default = 'NEW DEFAULT FOR CHILD CLASS';
}
echo Foo::doSomething() . "\n";
// echoes 'DEFAULT'
echo Bar::doSomething() . "\n";
// echoes 'DEFAULT' not 'NEW DEFAULT FOR CHILD CLASS'
// because it references $default in the parent class :(
</code></pre>
<p>Any suggestions? Is there a way around this behavior in PHP?</p>
<p>THANKS MUCH</p>
http://stackoverflow.com/questions/261338/what-is-the-best-way-to-insert-html-via-php/603396#6033960Answer by Clayton for What is the best way to insert HTML via PHP ?Clayton2009-03-02T18:18:45Z2009-03-02T18:18:45Z<p>If you <em>must</em> do it either way use the curly braces. Don't echo HTML with PHP.</p>
http://stackoverflow.com/questions/282150/how-do-i-write-unit-tests-in-php/603387#6033870Answer by Clayton for How do I write unit tests in PHP?Clayton2009-03-02T18:15:45Z2009-03-02T18:15:45Z<p>Get PHPUnit. It is very easy to use.</p>
<p>Then start with very simple assertions. You can do alot with AssertEquals before you get into anything else. That's a good way to get your feet wet.</p>
<p>You may also want to try writing your test first (since you gave your question the TDD tag) and then write your code. If you haven't done this before it is an eye-opener.</p>
<pre><code>require_once 'ClassYouWantToTest';
require_once 'PHPUnit...blah,blah,whatever';
class ClassYouWantToTest extends PHPUnit...blah,blah,whatever
{
private $ClassYouWantToTest;
protected function setUp ()
{
parent::setUp();
$this->ClassYouWantToTest = new ClassYouWantToTest(/* parameters */);
}
protected function tearDown ()
{
$this->ClassYouWantToTest = null;
parent::tearDown();
}
public function __construct ()
{
// not really needed
}
/**
* Tests ClassYouWantToTest->methodFoo()
*/
public function testMethodFoo ()
{
$this->assertEquals(
$this->ClassYouWantToTest->methodFoo('putValueOfParamHere), 'expectedOutputHere);
/**
* Tests ClassYouWantToTest->methodBar()
*/
public function testMethodFoo ()
{
$this->assertEquals(
$this->ClassYouWantToTest->methodBar('putValueOfParamHere), 'expectedOutputHere);
}
</code></pre>
http://stackoverflow.com/questions/174730/what-is-the-best-way-to-validate-a-credit-card-in-php/603361#6033612Answer by Clayton for What is the best way to validate a credit card in PHP?Clayton2009-03-02T18:06:03Z2009-03-02T18:06:03Z<p>It's probably better NOT to validate in code at your end. Send the card info right over to your payment gateway and then deal with their response. It helps them detect fraud if you don't do anything like Luhn checking first -- let them see the failed attempts.</p>
http://stackoverflow.com/questions/238550/what-do-you-think-of-phps-new-namespace-separator/603356#6033560Answer by Clayton for What do you think of PHP's new namespace separator?Clayton2009-03-02T18:03:32Z2009-03-02T18:03:32Z<p>One word: YUCK.</p>
http://stackoverflow.com/questions/62617/whats-the-best-way-to-separate-php-code-and-html/603347#6033472Answer by Clayton for What's the best way to separate PHP Code and HTML?Clayton2009-03-02T18:00:58Z2009-03-02T18:00:58Z<p>I agree with the answers here suggesting that you avoid using anything besides PHP for templating. And of course, there <em>is</em> such a thing as presentation or display logic. That said ...</p>
<p>You can separate your PHP and HTML into separate files -- putting HTML files into a views or templates directory -- depending on how you want to set things up. If you do it this way, the last line of any PHP script using that template or view can just be an include statement.</p>
<p>If you keep things in the same file, that can work too, if the project isn't too complicated. In this case, instead of an include statement, you'd have two chunks of stuff, PHP to start and HTML to follow.</p>
<p>Of course, you will need to pepper your HTML with echos, and sometimes you will need some logic right there along side your HTML, but try to keep it to a minimum. There's often no way around it when you are presenting results, say, from multiple rows in a database. Sometimes you can put the WHILE chunk in a nested sub-template.</p>
<p>One thing is don't echo HTML with PHP. Yuck. You will regret this.</p>
<p>I try to avoid using curly braces around chunks of HTML too. Not always feasible, but a good rule to follow.</p>
http://stackoverflow.com/questions/353795/inherited-a-php-nightmare-where-to-start/603303#6033030Answer by Clayton for Inherited a PHP nightmare, where to start?Clayton2009-03-02T17:50:19Z2009-03-02T17:50:19Z<ol>
<li><p><strong>Get it under revision control.</strong></p></li>
<li><p><strong>Decide on naming conventions and file/directory structure.</strong></p></li>
<li><p><strong>Make sure you have decent tools/IDE.</strong></p></li>
<li><p><strong>Set up a separate development/testing environment if you haven't already</strong></p></li>
</ol>
<p>THEN ...</p>
<ol>
<li><p>Unfortunately, you'll need to sift through all those 1, 2, 3 files and determine which ones are in use, and which can be disposed of. No other way besides a brute force grind through, file by file.</p></li>
<li><p>Even though I have an RCS in place, I still often move what I think are unused scripts to a hidden location, say .mausoleum and then have the RCS ignore that location. Nice to be able to take a peek locally without going back to the repo.</p></li>
<li><p><strong>Separate HTML and PHP to the greatest extent possible</strong>. I cannot stress this enough! If this is done in each file, fine. Just so long as you have separate chunks of PHP and HTML. Of course, HTML will be peppered with echos here and there, but try to have all tests, switches, everything else moved out of the HTML block and into the PHP block. This alone can be <em>HUGE</em> when it comes to getting things sorted out.</p></li>
<li><p>If the code is primarily procedural -- I assume in your case it is -- it's probably best to do some clean up first, before doing any serious refactoring or refactoring into classes.</p></li>
<li><p>As you find files/scripts that can logically be combined, do so. (I've seen projects -- probably not unlike yours -- where the total number of surviving files is about 1/4 of what we started with).</p></li>
</ol>
<p>Once you've gone this far, then you can begin a proper refactoring or refactoring into classes.</p>
<p>Bonne chance!</p>
http://stackoverflow.com/questions/602990/how-do-you-fight-design-complexity/603220#6032200Answer by Clayton for How do you fight design complexity?Clayton2009-03-02T17:34:03Z2009-03-02T17:34:03Z<p>Don't try to do everything at a stretch. Break every problem/task into manageable chunks. Then prioritize, keeping KISS and YAGNI in mind. This will help you focus on building what you <em>need</em>. If you've done it right, you'll have a good core you can add to later, given time, money, resources and inspiration.</p>
http://stackoverflow.com/questions/199679/whats-the-best-beginner-book-for-assembly-language/598532#5985320Answer by Clayton for What's the best "beginner" book for Assembly Language?Clayton2009-02-28T19:28:37Z2009-02-28T19:28:37Z<p>I learned with <a href="http://rads.stackoverflow.com/amzn/click/0673386023" rel="nofollow">Zen of Assembly Language (Abrash)</a>. Though I suspect this is more of a collector's item by now, it does have some great material that is relevant today.</p>
http://stackoverflow.com/questions/593249/dry-and-similar-queries1DRY and similar queriesClayton2009-02-27T01:51:10Z2009-02-27T03:43:38Z
<p>Working on a particular application, I keep writing very similar queries, again and again. They're not exactly the same, but are of very similar form, and embedded in almost identical chunks of code, <em>e.g.</em>,</p>
<pre><code>$Mysqli = new mysqli;
if ($Stmt = $Mysqli->prepare("SELECT foo
FROM tblFoo
WHERE something = ?")) {
$Stmt->bind_param('s', $this->_something);
$Stmt->execute();
if (0 != $Stmt->errno)
throw new Exception("blah, blah, blah");
$Stmt->bind_result($foo);
while ($Stmt->fetch()){
$this->_foos[] = new Foo($foo);
}
$Stmt->close();
} else {
throw new Exception("blah, blah, blah"););
}
}
</code></pre>
<p>and later, somewhere else ...</p>
<pre><code>$Mysqli = new mysqli;
if ($Stmt = $Mysqli->prepare("SELECT bar, baz
FROM tblBar
WHERE somethingElse = ?")) {
$Stmt->bind_param('s', $this->_somethingElse);
$Stmt->execute();
if (0 != $Stmt->errno)
throw new Exception("blah, blah, blah");
$Stmt->bind_result($bar, $baz);
while ($Stmt->fetch()){
// do something else with $bar and $baz
}
$Stmt->close();
} else {
throw new Exception("blah, blah, blah"););
}
}
</code></pre>
<p>... and then another, and elsewhere another ... etc.</p>
<p>Is this a real violation of DRY? It doesn't seem to make sense to write a class for performing this kind of query (with constructor params or setters for table, column, bound variables, etc.) and then reusing it throughout my app. But at the same time, I can't shake this nagging feeling that I'm repeating myself.</p>
<p>Maybe it's just that there are only so many ways to write a simple query and that a certain amount of repetition like this is to be expected.</p>
<p>Thoughts?</p>
http://stackoverflow.com/questions/266569/whats-your-first-program-that-you-were-proud-of/588722#5887220Answer by Clayton for What's your first program that you were proud of?Clayton2009-02-26T01:23:43Z2009-02-26T01:23:43Z<p>Multivariate regressions. BASIC. Circa 1981.</p>
http://stackoverflow.com/questions/140270/humor-in-code/573541#5735410Answer by Clayton for Humor in codeClayton2009-02-21T18:48:26Z2009-02-21T18:48:26Z<pre><code>die (Strings::get('Obituary') . $e->getMessage());
</code></pre>
<p>or</p>
<pre><code>$validArchType = array ('A-Frame', ..., 'McMansion', ...);
</code></pre>
<p>or</p>
<pre><code>define ('DEVIANCY_OR_MALFEASANCE', -1);
</code></pre>
<p>or </p>
<pre><code><string key="VICE_PRESIDENT">Just making sure Kathy is paying attention.</string>
</code></pre>
http://stackoverflow.com/questions/566082/coding-standards-and-line-length5Coding standards and line lengthClayton2009-02-19T16:24:33Z2009-02-19T22:59:24Z
<p>Every coding standard I've ever seen has a recommended or absolute limit on number of characters in a line. There are various ways of working within this limitation, but I've not seen any specific guidance in this regard.</p>
<p>Obviously, if possible, don't write excessively long lines.</p>
<p>But what if that's not practical? How should long lines be handled?</p>
<p>Here are a couple of examples</p>
<pre><code>if ($Stmt = $Mysqli->prepare("SELECT color, pattern, size,
manufacturer, mfgSku, storeLocation,
aisle, status
FROM tblItems WHERE ourSku = ?")) {
</code></pre>
<p>or</p>
<pre><code>$flavors = array ('chocolate', 'strawberry', 'vanilla', 'cookie dough',
'chocolate chip', 'mint chocolate chip', 'rocky road',
'peach', 'fudge brownie', 'coffee', 'mocha chip');
</code></pre>
<p>or</p>
<pre><code>$Stmt->bind_result( $this->_firstName,
$this->_lastName,
$this->_BillToAddress->address1,
$this->_BillToAddress->address2,
$this->_BillToAddress->city,
$this->_BillToAddress->state,
$this->_BillToAddress->zip,
$this->_BillToAddress->country,
$this->_email,
$this->_status,
$this->_primaryPhone,
$this->_mobilePhone );
</code></pre>
<p>In each of these examples, the indenting of lengthy code is different. Is there a better or more "standard" way of doing this? Should extra lines always be indented the same way. Or is this OK?</p>
http://stackoverflow.com/questions/304876/annoying-or-idiotic-naming-conventions/563183#5631830Answer by Clayton for Annoying or idiotic naming conventions?Clayton2009-02-18T22:42:28Z2009-02-19T02:46:09Z<p>Hungarian sucks, of course, for variable names (not to mention being pointless in loosely/dynamically typed languages, but "tbl" prefixes <em>are</em> helpful for tables).</p>
<p>If possible, I start all class names and variable names that hold a class with capital letters; all others start with lower case. Some folks find this annoying.</p>
<p>P.S. <em>What's the beef with ternaries</em>? They make a nice, tidy one-liner and aren't hard to read at all. True, if there are clusters or nesting of ifs, it's better to use expanded form.</p>
http://stackoverflow.com/questions/547000/why-would-you-choose-a-fixed-width-design/547121#5471211Answer by Clayton for Why would you choose a fixed-width design?Clayton2009-02-13T18:27:51Z2009-02-13T19:00:21Z<p>Fixed width layouts are perfectly acceptable. </p>
<p>Fluid layouts are nice, but are more difficult to implement, especially if there are more than two columns and source div order is important.</p>
<p>Line length is an issue regarding readability, but this interacts with font size. So you have to balance width against likely font sizes on screen.</p>
<p>Nowadays, it's reasonable to assume that 1024 x 768 and up is the vast majority of the desktop user market, so you can safely design for 960 px fixed width -- for screen media type.</p>
<p>A couple of important constraints: </p>
<ul>
<li>ensure is that horizontal scrolling
is <em>never</em> required by the user</li>
<li>if conversions are an issue, make sure
that clickable things -- particularly
"calls to action" or anything than
makes your cash register go
"ka-ching" should not fall to the
right of the 770th pixel or so --
just in case.</li>
</ul>
<p>But another consideration is handheld media. You should provide alternate CSS for handheld media type. Many of these screens are under 400 px wide.</p>
<p>Delivering a site that looks good and functions on a wide variety browsers, devices, display widths and viewport sizes is a moving target and continuous challenge.</p>
<p>As regards the filmstarts.de site, it is definitely a mess, but the problem is not that it is a fixed width layout, but rather with how the layout is designed and implemented. There are good and bad implementations of fixed width layouts, just like there are good and bad implementations of fluid layouts, or semi-fluid layouts with fixed width elements, etc.</p>
http://stackoverflow.com/questions/543877/if-you-could-take-one-computer-science-course-now-what-would-it-be/544466#5444661Answer by Clayton for If you could take one computer science course now, what would it be?Clayton2009-02-13T02:04:44Z2009-02-13T02:04:44Z<p>Security or cryptography</p>
http://stackoverflow.com/questions/544239/mysql-injection-protection-and-vulnerability-signs-using-php/544334#5443345Answer by Clayton for Mysql injection protection and vulnerability signs using PHPClayton2009-02-13T01:14:31Z2009-02-13T01:14:31Z<p>Trust no one!</p>
<p>Sanitize all input -- <code>filter_var()</code> or regexes or <code>in_array()</code> of valid values or a mixed strategy depending on datatype.</p>
<p>"Input" means any source of input that you don't directly control -- not just forms!</p>
<p>Sanitize anything you get back from <code>$_GET</code>, <code>$_POST</code>, <code>$_SESSION</code>, <code>$_COOKIE</code> -- anything that could have any possibility of being tainted.</p>
<p>AND </p>
<p>Use prepared statements</p>
http://stackoverflow.com/questions/539511/how-do-i-select-mysql-database-in-php/539535#5395353Answer by Clayton for How do I select mysql database in php?Clayton2009-02-12T00:38:50Z2009-02-12T03:17:33Z<p>Where are you saving the value returned by mysql_connect()? Don't see it here. I assume $host, $user, $password and $db are properly set ahead of time. But you're passing a param to mysql_select_db that may not be properly set.</p>
<pre><code>$connect = mysql_connect($host,$user,$passwd);
if (!$connect) {
die('Could not connect: ' . mysql_error());
}
if(!mysql_select_db($db,$connect)) ...
</code></pre>
<p>Start by checking to see if you can select <em>without</em> the CREATE query first. Try a simple SELECT query to start. If you can connect, select the db, and execute a SELECT query, that's one step. <em>Then</em> try the CREATE query. If that doesn't work, it's almost certainly a matter of permissions.</p>
http://stackoverflow.com/questions/536791/what-content-management-system-do-you-use/536871#5368714Answer by Clayton for What Content Management System do you use?Clayton2009-02-11T13:56:09Z2009-02-11T13:56:09Z<p>Various, depending on needs and requirements.
One size <em>does not</em> fit all.</p>
<ul>
<li><a href="http://expressionengine.com/" rel="nofollow">ExpressionEngine</a> (PHP, very nice but not free, relatively inexpensive, though)</li>
<li><a href="http://radiantcms.org/" rel="nofollow">Radiant</a> (Ruby/Rails, super-easy for your users to add content, minimal set-up)</li>
<li><a href="http://drupal.org/" rel="nofollow">Drupal</a> (PHP, better for larger sites requiring varied roles, access permissions, lots of plug-ins, not quite so easy as ExpressionEngine or Radiant)</li>
<li>Home-grown (PHP/MySQL)</li>
</ul>
http://stackoverflow.com/questions/533243/hobbies-careers-that-complement-programming/534378#53437810Answer by Clayton for Hobbies/Careers that complement programmingClayton2009-02-10T21:52:31Z2009-02-10T21:52:31Z<p>WHATEVER YOU ENJOY. Don't pay any attention to what others say. </p>
<p>There's no ONE thing that's best for everyone.</p>
<p>Do something YOU enjoy and can lose yourself in.</p>
http://stackoverflow.com/questions/524421/reducing-duplication-in-static-html-pages/524605#5246052Answer by Clayton for reducing duplication in static HTML pagesClayton2009-02-07T21:14:40Z2009-02-07T21:14:40Z<p>Forget doing it on the server altogether.</p>
<p>If all you <em>really</em> want to do is maintain some static pages -- and don't anticipate ever having to really use PHP -- I'd just do it with Dreamweaver, which will allow you create and manage templates and variable content on your end. </p>
<p>No includes needed. No templating engine needed. (These would be overkill for what you are trying to accomplish.)</p>
http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/523077#5230770Answer by Clayton for What is the strangest programming language you have used?Clayton2009-02-07T03:39:57Z2009-02-07T03:39:57Z<ul>
<li>SAIL </li>
<li>XPL</li>
</ul>
http://stackoverflow.com/questions/521418/reading-ssl-page-with-curl-php/521469#5214690Answer by Clayton for reading SSL page with CURL (php)Clayton2009-02-06T18:11:01Z2009-02-06T18:11:01Z<p>You're not SENDing the SSL cert. It appears there's a problem with the SSL cert as it is installed on the host you are contacting. Use option -k or --insecure, to get past the complaint.</p>
<p>Ah. See Ryan Graham's answer</p>
http://stackoverflow.com/questions/1625435/whats-the-best-place-for-external-libraries-in-a-php-project/1625480#1625480Comment by Clayton on What's the best place for external libraries in a PHP project?Clayton2009-10-26T15:37:31Z2009-10-26T15:37:31Z@DisgruntledGoat Thanks!http://stackoverflow.com/questions/627062/class-with-variations-store-retrieve-parameters-or-subclass/986175#986175Comment by Clayton on Class with variations: Store/retrieve parameters? Or subclass?Clayton2009-06-13T17:02:16Z2009-06-13T17:02:16Z@esko-luontola Interesting! Thanks. I'll need to mull this over.http://stackoverflow.com/questions/944558/which-is-better-requireonce-or-if-definedfoobar-require-or-something-e/944651#944651Comment by Clayton on Which is better: require_once? or if (!defined('FOOBAR')) require? or something entirely different?Clayton2009-06-03T13:35:24Z2009-06-03T13:35:24Z@brent-baisley I'll make an edit to the question for clarity, indicating the use of a defined path. Does your answer still hold if this is the case? Thanks. http://stackoverflow.com/questions/627062/class-with-variations-store-retrieve-parameters-or-subclass/627192#627192Comment by Clayton on Class with variations: Store/retrieve parameters? Or subclass?Clayton2009-03-10T01:03:25Z2009-03-10T01:03:25Z@annakata - Thanks for clarifying!http://stackoverflow.com/questions/627062/class-with-variations-store-retrieve-parameters-or-subclass/627158#627158Comment by Clayton on Class with variations: Store/retrieve parameters? Or subclass?Clayton2009-03-09T18:07:56Z2009-03-09T18:07:56ZYou may be right. THANKS.http://stackoverflow.com/questions/627062/class-with-variations-store-retrieve-parameters-or-subclass/627192#627192Comment by Clayton on Class with variations: Store/retrieve parameters? Or subclass?Clayton2009-03-09T18:07:24Z2009-03-09T18:07:24Z@annakata - Thanks. But forgive me, I'm having a little trouble understanding your answer. Are you suggesting that subclassing is the better option? It seems that way, but I'm not quite certain. Sorry. Thanks for any clarification you can provide.http://stackoverflow.com/questions/627062/class-with-variations-store-retrieve-parameters-or-subclass/627158#627158Comment by Clayton on Class with variations: Store/retrieve parameters? Or subclass?Clayton2009-03-09T17:20:02Z2009-03-09T17:20:02Z@jro -- Thanks. Should I assume from your answer that both are evil (though one is the lesser) and that there may be another option? Or am I reading too much into your answer?http://stackoverflow.com/questions/619900/determining-class-responsibility-and-collaborators/619995#619995Comment by Clayton on Determining Class Responsibility and CollaboratorsClayton2009-03-06T20:26:19Z2009-03-06T20:26:19Z@Vlad - Thanks for the reality check. This is no doubt the correct choice!http://stackoverflow.com/questions/593249/dry-and-similar-queries/593266#593266Comment by Clayton on DRY and similar queriesClayton2009-03-04T13:45:03Z2009-03-04T13:45:03Z@Kibbee - Thank you. I won't be using Hibernate, but I did create an ActiveRecord class and then subbed out a couple of classes for specific tables.http://stackoverflow.com/questions/593249/dry-and-similar-queries/593275#593275Comment by Clayton on DRY and similar queriesClayton2009-03-04T13:42:15Z2009-03-04T13:42:15Z@ Bill K. This was a close call but I went with Kibbee's answer because it's a little closer to how I actually dealt with this. Your comments were very helpful too -- especially about extracting strings as a first step in refactoring. +1 thank you!http://stackoverflow.com/questions/598466/what-projects-do-you-wish-you-could-contribute-to/598468#598468Comment by Clayton on What projects do you wish you could contribute to?Clayton2009-02-28T19:25:26Z2009-02-28T19:25:26Z@Meeh Agreed. Visio ain't gettin' no dates for the prom. Could <i>definitely</i> use a new UI. http://stackoverflow.com/questions/266569/whats-your-first-program-that-you-were-proud-of/588647#588647Comment by Clayton on What's your first program that you were proud of?Clayton2009-02-26T01:24:49Z2009-02-26T01:24:49Z@chaos Terminate and Stay Resident. And they WERE the bomb. Around 1990-1991.http://stackoverflow.com/questions/539511/how-do-i-select-mysql-database-in-php/569968#569968Comment by Clayton on How do I select mysql database in php?Clayton2009-02-21T01:24:04Z2009-02-21T01:24:04Z@perfectDay The good thing is you got the problem solved. I was beginning to wonder what happened with this one ... Thanks.http://stackoverflow.com/questions/566082/coding-standards-and-line-length/566103#566103Comment by Clayton on Coding standards and line lengthClayton2009-02-19T16:55:02Z2009-02-19T16:55:02ZApart from the question of standards, the high resolution doesn't change the nature of reading. When lines become too long, they are hard to read. I can fit more than twice what I'm comfortable reading on the width of my screen. Using the full width would only slow me down.http://stackoverflow.com/questions/566082/coding-standards-and-line-lengthComment by Clayton on Coding standards and line lengthClayton2009-02-19T16:44:48Z2009-02-19T16:44:48Z@EBGreen - Thanks