User JamShady - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T08:37:45Z http://stackoverflow.com/feeds/user/11905 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/237842/best-lamp-setup-for-php-development 6 Best LAMP setup for PHP development JamShady 2008-10-26T10:35:54Z 2009-03-08T22:08:56Z <p>I'm a very novice Linux user, and am in the market for a new (virtual) machine after my last (physical) server has annoyed me for the last time, and threatens to die at any moment taking years of hard work with it. I need a LAMP server for web-development (thus require LAMP + SVN + (Trac + Python) at a minimum).</p> <p>Having trawled around the interweb, it appears that Ubuntu 8.04 is the distro of choice (although I am aware a new version is due to be released within the next few days). I also managed to find <a href="http://www.cricava.com/blogs/index.php?blog=6&amp;c=1&amp;more=1&amp;pb=1&amp;tb=1&amp;title=apache2-php5-mysql-xdebug-ssl-svn-python" rel="nofollow">a good guide</a> from Mariano Iglesias which I'll be following (but changing the various apps to the latest version, as that was written a couple of months ago) and hopefully that'll see me right. I plan to go with the desktop version, rather than the server version, because it seems to be the best way of getting my feet wet, and easiest way to get myself out of trouble should I find myself in trouble.</p> <p>Before I commit myself to this route, I was wondering if anyone else had any better suggestions, or even better guides? My ultimate aim of this exercise is as follows:</p> <ul> <li>Replace my aging server which consumes too much electricity, is slow, and sounds like it's about to die, with a nice new virtual machine on my new(ish) desktop pc</li> <li>Learn how to administer linux (at the moment I rely soly on apt-get, which on my old Debian machine, won't install a newer version of SVN than 1.4.3 which is not ideal)</li> <li>Be in control of what (and what version of) software is installed on the server</li> </ul> <p>Thanks in advance for your replies :-)</p> http://stackoverflow.com/questions/599809/combining-recursive-iterator-results-children-with-parents/623311#623311 2 Answer by JamShady for Combining recursive iterator results: children with parents JamShady 2009-03-08T09:26:10Z 2009-03-08T09:26:10Z <p>OK, I think I finally got my head around this. Here's roughly what I did in pseudo-code:</p> <p><strong>Step 1</strong> We need to list the directory contents, thus we can perform the following:</p> <pre><code>// Reads through the $dir directory // traversing children, and returns all contents $dirIterator = new RecursiveDirectoryIterator($dir); // Flattens the recursive iterator into a single // dimension, so it doesn't need recursive loops $dirContents = new RecursiveIteratorIterator($dirIterator); </code></pre> <p><strong>Step 2</strong> We need to consider only the PHP files</p> <pre><code>class PhpFileIteratorFilter { public function accept() { $current = $this-&gt;current(); return $current instanceof SplFileInfo &amp;&amp; $current-&gt;isFile() &amp;&amp; end(explode('.', $current-&gt;getBasename())) == 'php'; } } // Extends FilterIterator, and accepts only .php files $php_files = new PhpFileIteratorFilter($dirContents); </code></pre> <p><em>The PhpFileIteratorFilter isn't a great use of re-usable code. A better method would have been to be able to supply a file extension as part of the construction and get the filter to match on that. Although that said, I am trying to move away from construction arguments where they are not required and rely more on composition, because that makes better use of the Strategy pattern. The PhpFileIteratorFilter could simply have used the generic FileExtensionIteratorFilter and set itself up interally.</em></p> <p><strong>Step 3</strong> We must now read in the file contents</p> <pre><code>class SplFileInfoReader extends FilterIterator { public function accept() { // make sure we use parent, this one returns the contents $current = parent::current(); return $current instanceof SplFileInfo &amp;&amp; $current-&gt;isFile() &amp;&amp; $current-&gt;isReadable(); } public function key() { return parent::current()-&gt;getRealpath(); } public function current() { return file_get_contents($this-&gt;key()); } } // Reads the file contents of the .php files // the key is the file path, the value is the file contents $files_and_content = new SplFileInfoReader($php_files); </code></pre> <p><strong>Step 4</strong> Now we want to apply our callback to each item (the file contents) and somehow retain the results. Again, trying to make use of the strategy pattern, I've done away unneccessary contructor arguments, e.g. <code>$preserveKeys</code> or similar</p> <pre><code>/** * Applies $callback to each element, and only accepts values that have children */ class ArrayCallbackFilterIterator extends FilterIterator implements RecursiveIterator { public function __construct(Iterator $it, $callback) { if (!is_callable($callback)) { throw new InvalidArgumentException('$callback is not callable'); } $this-&gt;callback = $callback; parent::__construct($it); } public function accept() { return $this-&gt;hasChildren(); } public function hasChildren() { $this-&gt;results = call_user_func($this-&gt;callback, $this-&gt;current()); return is_array($this-&gt;results) &amp;&amp; !empty($this-&gt;results); } public function getChildren() { return new RecursiveArrayIterator($this-&gt;results); } } /** * Overrides ArrayCallbackFilterIterator to allow a fixed $key to be returned */ class FixedKeyArrayCallbackFilterIterator extends ArrayCallbackFilterIterator { public function getChildren() { return new RecursiveFixedKeyArrayIterator($this-&gt;key(), $this-&gt;results); } } /** * Extends RecursiveArrayIterator to allow a fixed $key to be set */ class RecursiveFixedKeyArrayIterator extends RecursiveArrayIterator { public function __construct($key, $array) { $this-&gt;key = $key; parent::__construct($array); } public function key() { return $this-&gt;key; } } </code></pre> <p>So, here I have my basic iterator which will return the results of the <code>$callback</code> I supplied through, but I've also extended it to create a version that will preserve the keys too, rather than using a constructor argument for it.</p> <p>And thus we have this:</p> <pre><code>// Returns a RecursiveIterator // key: file path // value: class name $class_filter = new FixedKeyArrayCallbackFilterIterator($files_and_content, 'getDefinedClasses'); </code></pre> <p><strong>Step 5</strong> Now we need to format it into a suitable manner. I desire the file paths to be the value, and the keys to be the class name (i.e. to provide a direct mapping for a class to the file in which it can be found for the auto loader)</p> <pre><code>// Reduce the multi-dimensional iterator into a single dimension $files_and_classes = new RecursiveIteratorIterator($class_filter); // Flip it around, so the class names are keys $classes_and_files = new FlipIterator($files_and_classes); </code></pre> <p>And voila, I can now iterate over <code>$classes_and_files</code> and get a list of all defined classes under $dir, along with the file they're defined in. And pretty much all of the code used to do this is re-usable in other contexts as well. I haven't hard-coded anything in the defined Iterator to achieve this task, nor have I done any extra processing outside the iterators</p> http://stackoverflow.com/questions/599809/combining-recursive-iterator-results-children-with-parents 3 Combining recursive iterator results: children with parents JamShady 2009-03-01T13:19:30Z 2009-03-08T09:26:10Z <p>I'm trying to iterate over a directory which contains loads of PHP files, and detect what classes are defined in each file.</p> <p>Consider the following:</p> <pre><code>$php_files_and_content = new PhpFileAndContentIterator($dir); foreach($php_files_and_content as $filepath =&gt; $sourceCode) { // echo $filepath, $sourceCode } </code></pre> <p>The above <code>$php_files_and_content</code> variable represents an iterator where the key is the filepath, and the content is the source code of the file (as if that wasn't obvious from the example).</p> <p>This is then supplied into another iterator which will match all the defined classes in the source code, ala:</p> <pre><code>class DefinedClassDetector extends FilterIterator implements RecursiveIterator { public function accept() { return $this-&gt;hasChildren(); } public function hasChildren() { $classes = getDefinedClasses($this-&gt;current()); return !empty($classes); } public function getChildren() { return new RecursiveArrayIterator(getDefinedClasses($this-&gt;current())); } } $defined_classes = new RecursiveIteratorIterator(new DefinedClassDetector($php_files_and_content)); foreach($defined_classes as $index =&gt; $class) { // print "$index =&gt; $class"; outputs: // 0 =&gt; Class A // 1 =&gt; Class B // 0 =&gt; Class C } </code></pre> <p>The reason the <code>$index</code> isn't sequential numerically is because 'Class C' was defined in the second source code file, and thus the array returned starts from index 0 again. This is preserved in the RecursiveIteratorIterator because each set of results represents a separate Iterator (and thus key/value pairs).</p> <p>Anyway, what I am trying to do now is find the best way to combine these, such that when I iterate over the new iterator, I can get the key is the class name (from the <code>$defined_classes</code> iterator) and the value is the original file path, ala:</p> <pre><code>foreach($classes_and_paths as $filepath =&gt; $class) { // print "$class =&gt; $filepath"; outputs // Class A =&gt; file1.php // Class B =&gt; file1.php // Class C =&gt; file2.php } </code></pre> <p>And that's where I'm stuck thus far.</p> <p>At the moment, the only solution that is coming to mind is to create a new RecursiveIterator, that overrides the current() method to return the outer iterator key() (which would be the original filepath), and key() method to return the current iterator() value. But I'm not favouring this solution because:</p> <ul> <li>It sounds complex (which means the code will look hideous and it won't be intuitive</li> <li>The business rules are hard-coded inside the class, whereas I would like to define some generic Iterators and be able to combine them in such a way to produce the required result.</li> </ul> <p>Any ideas or suggestions gratefully recieved.</p> <p>I also realise there are far faster, more efficient ways of doing this, but this is also an exercise in using Iterators for myselfm and also an exercise in promoting code reuse, so any new Iterators that have to be written should be as minimal as possible and try to leverage existing functionality.</p> <p>Thanks</p> http://stackoverflow.com/questions/599709/navigation-of-pages-only-when-submit-button-is-clicked/599717#599717 1 Answer by JamShady for navigation of pages only when submit button is clicked JamShady 2009-03-01T12:01:17Z 2009-03-01T12:01:17Z <p>Just set your form action to point to the second page</p> <pre><code>&lt;form target="Default2.aspx"&gt; &lt;input type="submit" /&gt; &lt;/form&gt; </code></pre> http://stackoverflow.com/questions/598137/in-php-how-to-do-session-instances/598153#598153 3 Answer by JamShady for In php how to do session instances? JamShady 2009-02-28T15:24:36Z 2009-02-28T15:24:36Z <p>If you define a <a href="http://uk.php.net/%5F%5Fdestruct" rel="nofollow">__destruct()</a> method on your object, it'll get called when the object is about to be destroyed. You can use this to close your database connection.</p> <p>You can also use <a href="http://uk.php.net/manual/en/language.oop5.magic.php#language.oop5.magic.sleep" rel="nofollow">__sleep() and __wakeup()</a> for <a href="http://uk.php.net/manual/en/language.oop.serialization.php" rel="nofollow">serializing your objects</a>. They'll get called automatically upon serialization and unserialization. You could use these methods to connect and disconnect as required.</p> http://stackoverflow.com/questions/575106/creating-new-iterator-from-the-results-of-another-iterator 1 Creating new Iterator from the results of another Iterator JamShady 2009-02-22T15:53:20Z 2009-02-25T23:21:22Z <p>Hi,</p> <p>I'm trying to get my head around using Iterators effectively in PHP 5, and without a lot of decent examples on the net, it's proving to be a little difficult.</p> <p>I'm trying to loop over a directory, and read all the (php) files within to search for defined classes. What I then want to do is have an associative array returned with the class names as keys, the the file paths as the values.</p> <p>By using a RecursiveDirectoryIterator(), I can recurse through directories. By passing this into a RecursiveIteratorIterator, I can retrieve the contents of the directory as a single dimensional iterator. By then using a filter on this, I can filter out all the directories, and non-php files which will just leave me the files I want to consider.</p> <p>What I now want to do is be able to pass this iterator into another iterator (not sure which would be suitable), such that when it loops over each entry, it could retrieve an array which it needs to combine into a master array.</p> <p>It's a little complicated to explain, so here's a code example:</p> <pre><code>// $php_files now represents an array of SplFileInfo objects representing files under $dir that match our criteria $php_files = new PhpFileFilter(new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir))); class ClassDetector extends FilterIterator { public function accept() { $file = $this-&gt;current(); // get the current item, which will be an SplFileInfo object // Match all the classes contained within this file if (preg_match($regex, $file-&gt;getContents(), $match)) { // Return an assoc array of all the classes matched, the class name as key and the filepath as value return array( 'class1' =&gt; $file-&gt;getFilename(), 'class2' =&gt; $file-&gt;getFilename(), 'class3' =&gt; $file-&gt;getFilename(), ); } } } foreach (new ClassDetector($php_files) as $class =&gt; $file) { print "{$class} =&gt; {$file}\n"; } // Expected output: // class1 =&gt; /foo.php // class2 =&gt; /foo.php // class3 =&gt; /foo.php // class4 =&gt; /bar.php // class5 =&gt; /bar.php // ... etc ... </code></pre> <p>As you can see from this example, I'm kind of hijacking the accept() method for FilterIterator, which is completely incorrect usage I know - but I use it only as an example to demonstrate how I just want the one function to be called, and for it to return an array which is merged into a master array.</p> <p>At the moment I'm thinking I'm going to have to use one of the RecursionIterators, since this appears to be what they do, but I'm not fond of the idea of using two different methods (hasChildren() and getChildren()) to achieve the goal.</p> <p>In short, I'm trying to identify which Iterator I can use (or extend) to get it to pass over a single-dimensional array(?) of objects, and get it to combine the resulting array into a master one and return that.</p> <p>I realise that there are several other ways around this, ala something like:</p> <pre><code>$master = array(); foreach($php_files as $file) { if (preg_match($regex, $file-&gt;getContents(), $match)) { // create $match_results $master = array_merge($master, $match_results); } } </code></pre> <p>but this defeats the purpose of using Iterators, and it's not very elegant either as a solution.</p> <p>Anyway, I hope I've explained that well enough. Thanks for reading this far, and for your answers in advance :)</p> http://stackoverflow.com/questions/575106/creating-new-iterator-from-the-results-of-another-iterator/588379#588379 0 Answer by JamShady for Creating new Iterator from the results of another Iterator JamShady 2009-02-25T23:21:22Z 2009-02-25T23:21:22Z <p>Right, I managed to get my head around it eventually. I had to use a Recursive iterator because the input iterator is essentially generating child results, and I extended IteratorIterator which already had the functionality to loop over an Iterator.</p> <p>Anyways, here's a code example, just in case this helps anyone else. This assumes you've passed in an array of SplFileInfo objects (which are the result of a DirectoryIterator anyway).</p> <pre><code>class ClassMatcher extends IteratorIterator implements RecursiveIterator { protected $matches; public function hasChildren() { return preg_match_all( '#class (\w+)\b#ism', file_get_contents($this-&gt;current()-&gt;getPathname()), $this-&gt;matches ); } public function getChildren() { $classes = $this-&gt;matches[1]; return new RecursiveArrayIterator( array_combine( $classes, // class name as key array_fill(0, count($classes), $this-&gt;current()-&gt;getPathname()) // file path as value ) ); } } </code></pre> http://stackoverflow.com/questions/278296/how-to-capture-and-display-output-from-a-task-via-windows-cmd 0 How to capture and display output from a task via Windows CMD JamShady 2008-11-10T16:15:03Z 2008-12-05T06:05:37Z <p>Hi,</p> <p>I've got a PHP script which I'm running from a command line (windows) that performs a variety of tasks, and the only output it gives is via 'print' statements which output direct to screen.</p> <p>What I want to do is capture this to a log file as well.</p> <p>I know I can do: </p> <pre><code>php-cli script.php &gt; log.txt </code></pre> <p>But the problem with this approach is that all the output is written to the log file, but I can't see how things are running in the mean time (so I can stop the process if anything dodgy is happening).</p> <p>Just to pre-empt other possible questions, I can't change all the print's to a log statement as there are far too many of them and I'd rather not change anything in the code lest I be blamed for something going fubar. Plus there's the lack of time aspect as well. I also have to run this on a windows machine.</p> <p>Thanks in advance :)</p> <p>Edit: Thanks for the answers guys, in the end I went with the browser method because that was the easiest and quickest to set up, although I am convinced there is an actual answer to this problem somewhere.</p> http://stackoverflow.com/questions/306497/what-should-every-php-programmer-know/306546#306546 2 Answer by JamShady for What should every PHP programmer know ? JamShady 2008-11-20T19:26:03Z 2008-11-20T19:26:03Z <p>I would say the most important thing is to learn how the whole process of building a page with PHP works - in that requests come from a client (web browser), hit the web server, get passed through to PHP, which then generates the response that is sent back. A solid understanding of this will ground you in</p> <ul> <li>why you can't send headers after output has started</li> <li>how sessions and cookies work</li> <li>how each page should be built in a stateless manner (i.e. deliver whatever the request asks for, don't remember what happened last time, or guess what the user is doing)</li> <li>The difference between HTML, PHP, JavaScript and CSS, and more importantly, what each is used for primarily and where the responsibility of each lies.</li> </ul> <p>Once you've got that down, then you should be quite comfortable with writing any app. But unless you've got that down, you'll start mixing things as I've seen many rookies do before now.</p> http://stackoverflow.com/questions/281527/defrag-a-virtual-hard-disk-vhd/281540#281540 0 Answer by JamShady for Defrag a virtual hard disk (.vhd) ? JamShady 2008-11-11T17:20:47Z 2008-11-11T17:20:47Z <p>Yes, your assumption is correct. The correct way to defrag is to defrag within the guest first, then the guest hdd file, and then the host hdd. Depending on the VM you're using, it should give you the option. VMWare gives you the option to defrag the guest hdd.</p> http://stackoverflow.com/questions/277914/how-can-i-get-phpunit-mockobjects-to-return-differernt-values-based-on-a-paramete/278099#278099 0 Answer by JamShady for How can I get PHPUnit MockObjects to return differernt values based on a parameter? JamShady 2008-11-10T15:13:04Z 2008-11-10T15:13:04Z <p>I had a similar problem which I couldn't work out as well (there's surprisingly little information about for PHPUnit). In my case, I just made each test separate test - known input and known output. I realised that I didn't need to make a jack-of-all-trades mock object, I only needed a specific one for a specific test, and thus I separated the tests out and can test individual aspects of my code as a separate unit. I'm not sure if this might be applicable to you or not, but that's down to what you need to test.</p> http://stackoverflow.com/questions/271743/whats-the-difference-between-b-and-strong-i-and-em/271773#271773 1 Answer by JamShady for What's the difference between <b> and <strong>, <i> and <em>? JamShady 2008-11-07T11:04:47Z 2008-11-07T11:04:47Z <p>As others have said &lt;b&gt; and &lt;i&gt; are explicit (i.e. "make this text bold"), whereas &lt;strong&gt; and &lt;em&gt; are semantic (i.e. "this text should be emphasised").</p> <p>In the context of a modern web-browser, it's difficult to see the difference (they both appear to produce the same result, right?), but think about screen readers for the visually impaired. If a screen-reader came across an &lt;i&gt; tag, it wouldn't know what to do. But if it comes across a &lt;em&gt; tag, it knows that whatever is within should be emphasised to the listener. And therein you get the practical difference.</p> http://stackoverflow.com/questions/263782/what-is-the-best-way-to-make-files-live-using-subversion-on-a-production-server/263793#263793 1 Answer by JamShady for What is the best way to make files live using subversion on a production server? JamShady 2008-11-04T22:54:46Z 2008-11-04T22:54:46Z <p>You can simply check out a copy of the repository in the /var/www folder, and then run <b>svn update</b> on it whenever you require (or switch it to a new branch/tag, etc). Thus you have one copy of the respository checked out on your local machine where you make changes and updates, and another copy on your webserver.</p> <p>Using an SVN repository also gives you the ability to revert to earlier versions as well.</p> http://stackoverflow.com/questions/262727/how-do-you-measure-the-quality-of-your-unit-tests/262760#262760 5 Answer by JamShady for How do you measure the quality of your unit tests? JamShady 2008-11-04T18:04:46Z 2008-11-04T18:04:46Z <p>I normally do TDD, so I write the tests first, which helps me see how I want to be able to use the objects.</p> <p>Then, when I'm writing the classes, for the most part I can spot common pitfalls (i.e. assumptions that I'm making, e.g. a variable being of a particular type, or range of values) and when these come up I write a specific test for that specific case.</p> <p>Aside from that, and getting as good as code coverage as possible (sometimes it's not possible to get 100%), you're more or less done. Then, if any bugs do come up in the future, you just make sure you write a test case for it that exposes it first, and will pass when fixed. Then fix as per normal.</p> http://stackoverflow.com/questions/842/best-way-to-implement-unit-testing-in-php/237936#237936 4 Answer by JamShady for Best way to implement unit testing in PHP JamShady 2008-10-26T12:10:08Z 2008-11-03T18:10:11Z <p>I've tried SimpleTest and PHPUnit, and stuck with PHPUnit because it works with PHP 5, and SimpleUnit seemed to throw a lot of notices and warnings (I like to develop with full error reporting turned on, there's no excuse for sloppy code). I also came across numerous bugs with SimpleTest (some of which caused me hours of wasted productivity and stress in trying to track them down).</p> <p>In terms of how unit-testing helps development, I find TDD (Test Driven Development) to be the best paradigm, because it forces you to think exactly how your code will be used before you write any of it. In fact, since I've adopted unit-testing and tdd, I've rewritten much of my own code because in writing tests for them, I've realised that my method names and functions weren't exactly the most intuitive, and also did some things that they shouldn't have been doing (i.e. like doing two tasks, instead of being specific and just do one each).</p> <p>Not only that, but writing tests for your code helps you understand your own code better (i.e. in that it helps you realise when your all-singing-and-dancing class is doing too many different things, and should be split up into different distinct components), and also helps others understand your code (because if you write your tests properly and elegantly, they can see how they're supposed to use your class - it's almost like writing code examples).</p> <p>There's a good guide <a href="http://sebastian-bergmann.de/archives/817-Quality-Assurance-in-PHP-Projects.html" rel="nofollow">involving a bowling game here</a> that gives you an insight to both PHPUnit and TDD, and that should help you get started. It starts from slide 14.</p> http://stackoverflow.com/questions/259072/which-is-faster-for-php5-to-deal-with-easier-to-work-with-in-php-xml-or-json-an/259181#259181 3 Answer by JamShady for Which is faster for PHP5 to deal with/easier to work with in PHP; XML or JSON, and file_get_contents or cURL? JamShady 2008-11-03T16:31:12Z 2008-11-03T16:31:12Z <p>I would go with JSON myself, simply because XML is very bloaty and excessively difficult to parse. JSON is small and neat, and thus saves on bandwidth, and should also speed up response times simply because it's easier to generate, faster to transmit, and quicker to decode.</p> http://stackoverflow.com/questions/258365/php-link-to-image-file-outside-default-web-directory/258370#258370 4 Answer by JamShady for php link to image file outside default web directory JamShady 2008-11-03T11:23:57Z 2008-11-03T11:23:57Z <p>You can't serve a page that's outside of the web directory because the path doesn't work, i.e. <a href="http://mydomain.com/../page.html" rel="nofollow">http://mydomain.com/../page.html</a> simply refers to an inaccessible location.</p> <p>If you really want to serve (static) files that are outside the webroot, you could write a small PHP script to read them and output them. Thus you would redirect requests to the PHP script, and the PHP would read the appropriate file from disk and return it back.</p> http://stackoverflow.com/questions/255723/xss-torture-test-does-it-exist 11 XSS Torture Test - does it exist? JamShady 2008-11-01T16:10:20Z 2008-11-02T12:25:35Z <p>Hi,</p> <p>I'm looking to write a html sanitiser, and obviously to test/prove that it works properly, I need a set of XSS examples to pitch against it to see how it performs. Here's a <a href="http://www.codinghorror.com/blog/archives/001167.html" rel="nofollow">nice example from Coding Horror</a></p> <pre><code>&lt;img src=""http://www.a.com/a.jpg&lt;script type=text/javascript src="http://1.2.3.4:81/xss.js"&gt;" /&gt;&lt;&lt;img src=""http://www.a.com/a.jpg&lt;/script&gt;" </code></pre> <p>I know there's a <a href="http://sourceforge.net/project/showfiles.php?group_id=32721&amp;package_id=98949" rel="nofollow">Mime Torture Test</a> which comprises of several nested emails with attachments that's used to test Mime decoders (if they can decode it properly, then they've been proven to work). I'm basically looking for an equivilent for XSS, i.e. a list of examples of dodgy html that I can throw at my sanitiser just to make sure it works OK.</p> <p>If anyone also has any good resources on how to write the sanitiser (i.e. what common exploits people try to use, etc) they'd be gratefully received too.</p> <p>Thanks in advance :-)</p> <p>Edit: Sorry if this wasn't clear before, but I was after a set of torture tests so I can write unit tests for the sanitiser, not test it in the browser, etc. The source data in theory may have come from anywhere - not just a browser.</p> http://stackoverflow.com/questions/228320/cs-majors-hardest-concepts-you-learned-in-school/255784#255784 0 Answer by JamShady for CS Majors: Hardest concept(s) you learned in school? JamShady 2008-11-01T17:11:33Z 2008-11-01T17:11:33Z <p>I never understood Bayesian algorithms, the maths just went right over my head. I understand how they work and what they do in a general sense, it's just the finer details of the higher maths that escapes me.</p> http://stackoverflow.com/questions/254093/best-practices-on-answering-dogfood-excuses/254154#254154 1 Answer by JamShady for Best practices on answering dogfood excuses JamShady 2008-10-31T16:41:47Z 2008-10-31T16:41:47Z <p>Surely it depends on what your software is? For instance, I write software that I need for a particular time, and then continue to reuse in other projects. Hence, I do actually eat my own dogfood because I created it to serve my needs (and as it happens, others use it also because it works for them and they think like I do).</p> <p>But as you rightly say, for some commercial enterprises, it's not possible because the employees of the company are not the target audience of the software being developed. In this case, you would need to be really proficient at testing your software, and also have loads of unit-tests to backup the stability of your software.</p> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253325#253325 10 Answer by JamShady for Exceptions or error codes JamShady 2008-10-31T12:30:10Z 2008-10-31T12:30:10Z <p>I prefer exceptions because</p> <ul> <li>they interupt the flow of logic</li> <li>they benefit from class hierarchy which gives more features/functionality <li>when used properly can represent a wide range of errors (e.g. an InvalidMethodCallException is also a LogicException, as both occur when there's a bug in your code that should be detectable before runtime), and</li> <li>they can be used to enhance the error (i.e. a FileReadException class definition can then contain code to check whether the file exists, or is locked, etc)</li> </ul> http://stackoverflow.com/questions/250616/when-do-should-i-use-construct-get-set-and-call-in-php/250668#250668 0 Answer by JamShady for When do/should I use __construct(), __get(), __set(), and __call() in PHP? JamShady 2008-10-30T15:43:06Z 2008-10-30T15:43:06Z <p>One good reason to use them would be in terms of a registry system (I think Zend Framework implements this as a Registry or Config class iirc), so you can do things like</p> <pre><code>$conf = new Config(); $conf-&gt;parent-&gt;child-&gt;grandchild = 'foo'; </code></pre> <p>Each of those properties is an automatically generated Config object, something akin to:</p> <pre><code>function __get($key) { return new Config($key); } </code></pre> <p>Obviously if $conf->parent already existed, the __get() method wouldn't be called, so to use this to generate new variables is a nice trick.</p> <p>Bear in mind this code I've just quoted isn't functionality, I just wrote it quickly for the sake of example.</p> http://stackoverflow.com/questions/250284/best-practices-many-small-functions-methods-or-bigger-functions-with-logical-pr/250310#250310 1 Answer by JamShady for Best practices: Many small functions/methods, or bigger functions with logical process components inline? JamShady 2008-10-30T14:17:32Z 2008-10-30T14:17:32Z <p>I make each function do one thing, and one thing only, and I try not to nest too many levels of logic. Once you start breaking your code down into <b>well named</b> functions, it becomes a lot easier to read, and practically self-documenting.</p> http://stackoverflow.com/questions/249545/iis-on-windows-xp/249554#249554 3 Answer by JamShady for IIS on Windows XP JamShady 2008-10-30T08:17:28Z 2008-10-30T10:48:46Z <p>As far as I know, you can only have one active at any one time, but see <a href="http://www.codinghorror.com/blog/archives/000329.html" rel="nofollow">this link</a> by Jeff for more info on how to uncripple IIS.</p> http://stackoverflow.com/questions/247772/im-somewhat-confused-about-the-serialization-of-a-php-associative-array/247784#247784 0 Answer by JamShady for I'm somewhat confused about the serialization of a PHP associative array. JamShady 2008-10-29T17:57:14Z 2008-10-29T17:57:14Z <p>Why don't you use the <a href="http://uk.php.net/unserialize" rel="nofollow">unserialize()</a> function to restore the data to how it was before?</p> http://stackoverflow.com/questions/247257/what-post-do-i-need-to-post-to-a-forum/247362#247362 1 Answer by JamShady for What $_POST[] do i need to post to a forum? JamShady 2008-10-29T15:56:02Z 2008-10-29T15:56:02Z <p>If you're using Firefox, you can use <a href="https://addons.mozilla.org/en-US/firefox/addon/1843" rel="nofollow">Firebug</a> to see what's being generated with the form, and also <a href="http://livehttpheaders.mozdev.org/" rel="nofollow">live http headers</a> to see what actually gets sent back.</p> <p>The HTTP headers would probably be the best way to go as it'll include cookie headers too, and you might find that phpbb 3 is checking for a user session before allowing a user to post.</p> <p>If you know your way around PHP as well, you could just look through the source and see what validation it's performing (or use a step through debugger).</p> http://stackoverflow.com/questions/247086/should-unit-tests-be-written-before-the-code-is-written/247142#247142 0 Answer by JamShady for Should unit tests be written before the code is written? JamShady 2008-10-29T15:01:06Z 2008-10-29T15:01:06Z <p>I write them at the same time. I create the skeleton code for the new class and the test class, and then I write a test for some functionality (which then helps me to see how I want the new object to be called), and implement it in the code.</p> <p>Usually, I don't end up with elegant code the first time around, it's normally quite hacky. But once all the tests are working, you can refactor away until you end up with something pretty neat, tidy and proveable to be rock solid.</p> http://stackoverflow.com/questions/241015/question-mark-characters-displaying-within-text-why-is-this/241025#241025 1 Answer by JamShady for Question mark characters displaying within text, why is this? JamShady 2008-10-27T18:49:20Z 2008-10-27T18:49:20Z <p>Your browser hasn't interpretted the encoding of the page correctly (either because you've forced it to a particular setting, or the page is set incorrectly), and thus cannot display some of the characters.</p> http://stackoverflow.com/questions/240758/how-do-you-encourage-someone-to-learn-to-use-the-debugger/240763#240763 0 Answer by JamShady for How do you encourage someone to learn to use the debugger? JamShady 2008-10-27T17:38:18Z 2008-10-27T17:38:18Z <p>I would give a quick demo of how quick and easy it is to set up and to do. A recursive example might be best because printlining usually falls over here with masses of output, but with a decent debugger you can put conditional statements in.</p> http://stackoverflow.com/questions/240468/worst-muscle-memory-keyboard-shortcut/240548#240548 0 Answer by JamShady for Worst "muscle memory" keyboard shortcut? JamShady 2008-10-27T16:39:41Z 2008-10-27T16:39:41Z <p>F5 - In Internet Explorer, Firefox and Google Chrome it refreshes the page. In MSSQL Enterprise Manager, it refreshes the current query results. But in Zend Studio (which I use for PHP development) it starts a debug session... arrgh!</p> http://stackoverflow.com/questions/237719/most-frustrating-programming-style-youve-encountered/237811#237811 Comment by JamShady on Most frustrating programming style you've encountered JamShady 2009-03-07T14:53:26Z 2009-03-07T14:53:26Z It's PHP, and I can't see how it's really well written at all. The use of variable names is not at all intuitive, and in fact makes the code far more confusing to read than it should have been. http://stackoverflow.com/questions/598137/in-php-how-to-do-session-instances/598171#598171 Comment by JamShady on In php how to do session instances? JamShady 2009-03-01T11:02:40Z 2009-03-01T11:02:40Z Or... if you use one of the magic functions, you can get PHP to connect to the db automatically for you, which is the substance of the question. http://stackoverflow.com/questions/598137/in-php-how-to-do-session-instances/598171#598171 Comment by JamShady on In php how to do session instances? JamShady 2009-02-28T16:27:52Z 2009-02-28T16:27:52Z I did, but I read it as though the OP wants to avoid $db-&gt;connect() calls on each page once a connection has been established, and if this could somehow be automated, it's one less thing to remember how to do. That's nothing to do with performance, it's to do with maintaining state via the session. http://stackoverflow.com/questions/598137/in-php-how-to-do-session-instances/598171#598171 Comment by JamShady on In php how to do session instances? JamShady 2009-02-28T16:12:10Z 2009-02-28T16:12:10Z The question isn't about performance, it's about how to maintain a db connection open. Caching/indexing/etc is a separate issue altogether, and even then, if you're using the db, you'll still need to address how to maintain the connection which is what this question is about. http://stackoverflow.com/questions/306497/what-should-every-php-programmer-know/306546#306546 Comment by JamShady on What should every PHP programmer know ? JamShady 2008-11-20T19:48:06Z 2008-11-20T19:48:06Z True, but given that PHP is aimed at web development, it's a good place to start. And these issues wouldn't have come up if you only did client side stuff in the past (e.g. html, css, and js). Understanding what PHP specifically is doing is essential to exploiting it. http://stackoverflow.com/questions/262657/the-coolest-server-names/262837#262837 Comment by JamShady on The Coolest Server Names JamShady 2008-11-04T23:12:43Z 2008-11-04T23:12:43Z Love the superhero idea! We use detectives where we work, but superheroes is just so much cooler http://stackoverflow.com/questions/254093/best-practices-on-answering-dogfood-excuses/254154#254154 Comment by JamShady on Best practices on answering dogfood excuses JamShady 2008-10-31T16:57:09Z 2008-10-31T16:57:09Z Why the downvote? Some feedback would be helpful. I fail to see how this could be a bad answer to &quot;What are the best practices about getting dogfooding to actually happen?&quot; http://stackoverflow.com/questions/247467/how-are-associative-arrays-implemented-in-php/247634#247634 Comment by JamShady on How are associative arrays implemented in PHP? JamShady 2008-10-29T21:08:14Z 2008-10-29T21:08:14Z Are you sure about this? I've just ran benchmarks on a test array of 1000 entries (copying to a new array, one by one), and if you don't specify the key for the new array, it's consistently 7% faster (on PHP 5.2.6) http://stackoverflow.com/questions/247772/im-somewhat-confused-about-the-serialization-of-a-php-associative-array/247784#247784 Comment by JamShady on I'm somewhat confused about the serialization of a PHP associative array. JamShady 2008-10-29T18:01:58Z 2008-10-29T18:01:58Z Shame your question didn't make that clear before you edited it and downvoted my comment. You first seem to ask what the data is, and then you're asking why PHP developers did it that way - two different questions with different answers. http://stackoverflow.com/questions/240758/how-do-you-encourage-someone-to-learn-to-use-the-debugger/240763#240763 Comment by JamShady on How do you encourage someone to learn to use the debugger? JamShady 2008-10-27T19:34:42Z 2008-10-27T19:34:42Z Yes, but you end up with more code cluttering up the original file which you have to remember to take out, print statements also require multiple tests to fine-tune the restrictions (whereas you can step through with a debugger), and it encourages global variables to be set for traces. It's not good