User JW - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T23:15:55Z http://stackoverflow.com/feeds/user/4321 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1799584/php-file-exists-always-false/1799893#1799893 0 Answer by JW for PHP File Exists Always False JW 2009-11-25T20:57:42Z 2009-11-25T20:57:42Z <p>Also check the parent directory, and all of their parents, to make sure that everyone has execute access.</p> <p>If you're running this under Apache (instead of on the command line), remember that it runs under the <code>_www</code> user and <code>_www</code> group on Snow Leopard. So that's the group that needs access.</p> http://stackoverflow.com/questions/1794021/php-underscore-in-filename-variable/1794061#1794061 0 Answer by JW for php underscore in filename variable? JW 2009-11-25T01:09:52Z 2009-11-25T01:09:52Z <p>As others have said, it's just constructing a filename from a GET/POST variable. As far as readability, I think it's fine.</p> <p>However, you need to be very careful when using GET/POST variables, or anything that a user can change, to construct file paths. I would almost always say you shouldn't do it at all. If you're going to, at least make sure they can't do things like <code>postmessage=../../filename</code>.</p> http://stackoverflow.com/questions/1776998/multi-site-svn-development-workflow/1777010#1777010 2 Answer by JW for Multi-site SVN/Development workflow JW 2009-11-21T22:31:57Z 2009-11-21T22:31:57Z <p>Why do you need three different SVN servers? Why not just use branches or tags on a single server? You can still have scripts that check for updates to a particular tag, and upload them to the web server.</p> http://stackoverflow.com/questions/1765819/php-check-if-sessiontext-is-text/1765835#1765835 1 Answer by JW for PHP check if $_SESSION['text'] is text JW 2009-11-19T19:18:11Z 2009-11-19T19:54:29Z <p>Why would you care? Are you planning to execute it? If a session field happens to contain binary data that could be executed, that doesn't mean it <strong>will</strong> be executed.</p> <p>Even a text string can contain executable code; depending on how you execute it. It could contain "rm -rf *", and if you ran that with "exec", you'd be in trouble. No amount of filtering can guarantee that a string isn't executable in some language. The time to worry about that is when you're actually doing the executing, and using a variable as part of it.</p> <p>As for your second question, if you've copied the array before destroying the session, your copy won't change even if the session changes. That's true of all PHP arrays.</p> http://stackoverflow.com/questions/1731357/multi-language-command-line-source-code-formatter 0 Multi-language command-line source code formatter JW 2009-11-13T19:29:15Z 2009-11-13T20:21:01Z <p>Is there a command-line Unix tool that will format/indent/prettify source code in different languages? I'm especially interested in Java, JavaScript, PHP, and XML, but ideally it would handle others.</p> <p>(I'm not looking for something to generate syntax-highlighting markup; I already know of a few tools that do that.)</p> http://stackoverflow.com/questions/1697195/finding-bytes-in-strings-with-phps-mbstring-funcoverload-on 1 Finding bytes in strings with PHP's mbstring.func_overload on JW 2009-11-08T17:14:26Z 2009-11-12T23:53:24Z <p>I have PHP configured with <code>mbstring.func_overload = 7</code>, so all the single-byte-string functions are mapped to their multi-byte equivalents. But I still sometimes need to treat strings as byte arrays; for example, when calculating their size or doing encryption.</p> <p>What's the best approach here? Can I just use the multi-byte functions and pass them a single-byte encoding, even though that's not actually how the string is encoded? For example:</p> <pre><code>mb_substr($utf8str, 0, 1, "latin1"); mb_strlen($utf8str, "latin1"); </code></pre> <p><strong>EDIT:</strong> I noticed when looking through PHP's source that they rename the original functions to mb_orig_X, as in mb_orig_strlen. Probably not safe to use, as they're not documented, but interesting.</p> http://stackoverflow.com/questions/1725227/pregmatch-and-utf-8-in-php 0 preg_match and UTF-8 in PHP JW 2009-11-12T20:40:34Z 2009-11-12T21:10:22Z <p>I'm trying to search a UTF8-encoded string using <a href="http://www.php.net/manual/en/function.preg-match.php" rel="nofollow">preg_match</a>.</p> <pre><code>preg_match('/H/u', "\xC2\xA1Hola!", $a_matches, PREG_OFFSET_CAPTURE); echo $a_matches[0][1]; </code></pre> <p>This should print 1, since "H" is at index 1 in the string "¡Hola!". But it prints 2. So it seems like it's not treating the subject as a UTF8-encoded string, even though I'm passing the "u" <a href="http://www.php.net/manual/en/reference.pcre.pattern.modifiers.php" rel="nofollow">modifier</a> in the regular expression.</p> <p>I have the following settings in my php.ini, and other UTF8 functions are working:</p> <pre><code>mbstring.func_overload = 7 mbstring.language = Neutral mbstring.internal_encoding = UTF-8 mbstring.http_input = pass mbstring.http_output = pass mbstring.encoding_translation = Off </code></pre> <p>Any ideas?</p> http://stackoverflow.com/questions/1724391/what-programs-languages-should-i-learn-for-a-career-in-web-programming-design/1724456#1724456 5 Answer by JW for What programs/languages should I learn for a career in web programming/design? JW 2009-11-12T18:44:44Z 2009-11-12T18:44:44Z <p>Forget about languages for a minute. Understand the HTTP protocol, and how browsers communicate with web servers, and how web servers communicate back to browsers. You'll be ahead of most of the web programmers out there.</p> http://stackoverflow.com/questions/1691461/what-do-these-php-mbstring-settings-do 0 What do these PHP mbstring settings do? JW 2009-11-07T00:42:14Z 2009-11-07T17:43:12Z <p>I'm trying to figure out exactly what these php.ini settings do. What happens when they're set to different values? When are they necessary? When are they harmful?</p> <ul> <li><a href="http://us3.php.net/manual/en/function.mb-language.php" rel="nofollow">mbstring.language</a></li> <li><a href="http://us3.php.net/manual/en/function.mb-http-input.php" rel="nofollow">mbstring.http_input</a></li> <li><a href="http://us3.php.net/manual/en/function.mb-http-output.php" rel="nofollow">mbstring.http_output</a></li> <li>mbstring.encoding_translation</li> </ul> <p>As usual, the <a href="http://www.php.net/manual/en/mbstring.configuration.php" rel="nofollow">PHP manual</a> is less than helpful.</p> <p><strong>EDIT</strong>: Just to clarify, I understand how character encodings work, and I understand how PHP's multi-byte functions differ from their single-byte counterparts. I'm looking for specifics on what the above settings do.</p> <p><strong>EDIT 2</strong>: OK, it looks like they actually do provide more documentation than just the <a href="http://www.php.net/manual/en/mbstring.configuration.php" rel="nofollow">page on runtime configuration</a>, which just has one-line summaries. The first three of these are also functions, and there are more details on the pages that describe the function versions. I added links above.</p> http://stackoverflow.com/questions/1655284/subversion-log-of-a-path-regardless-of-copies 1 Subversion: log of a path, regardless of copies JW 2009-10-31T19:06:47Z 2009-11-01T17:00:16Z <p>When I do <code>svn log &lt;path&gt;</code>, it will show me the history of that path, up until the point where it was copied from another path. At that point, it will start showing me the history of the original path.</p> <p>Is there a way to get the history of all changes to a particular path, regardless of whether it was copied from somewhere else? I know you can pass <code>--stop-on-copy</code>, but that cuts off all history before the copy, which is exactly what I want to see.</p> <p>The only workaround I've found is to first do <code>svn log &lt;path&gt;</code>, look for the revision where it was copied, and then do <code>svn log &lt;path&gt;@&lt;revision - 2&gt;</code> (assuming that the original file was deleted immediately before the copy). Then repeat for subsequent copies. But there must be a simpler way.</p> <p>This would be useful in several situations:</p> <ul> <li><p>Sometimes you copy a file, not because you want to share its history, but just because you want its contents. If you're copying it over an existing file, you still may want to retain the existing file's history.</p></li> <li><p>When you do a merge from a branch using <code>--reintegrate</code>, you <a href="http://blogs.open.collab.net/svn/2008/07/subversion-merg.html" rel="nofollow">have to delete</a> the branch, since it will break on future merges. If you want to reuse the same branch name, you have to make a new copy of it. But you may want to see what was in the branch before it was re-copied.</p></li> </ul> <p>If this isn't possible, isn't this a pretty major omission?</p> http://stackoverflow.com/questions/1655620/svn-commit-fails-beacuse-i-did-not-check-out/1655717#1655717 0 Answer by JW for SVN commit fails beacuse I did not check out. JW 2009-10-31T21:51:45Z 2009-10-31T21:51:45Z <p>bendin's answer is correct. However, if you don't care about keeping the original version, you could also just start over and re-import your folder as it is now. You'll have to remove the old version first (<code>svn rm -m '' oldFolder</code>).</p> http://stackoverflow.com/questions/1540763/capitalization-convention-for-javascript-objects 0 Capitalization convention for JavaScript objects JW 2009-10-08T22:04:26Z 2009-10-31T10:00:04Z <p>I know this question has no answer, but I'm curious to know what other people think.</p> <p>In a language like Java, it's a convention to begin classes with capital letters, and objects with lowercase letters. But what about JavaScript, where everything is an object?</p> <p>I've seen some people suggest capitalizing only objects that are treated as classes; i.e. function objects with a prototype, that are intended to be used with the <strong>new</strong> operator. Instances of those objects would be lowercased.</p> <p>That sounds logical. But what do you do about "global objects", where there's only one instance? Most people seem to capitalize these (for example, <strong>Math</strong> or <strong>Ext.History</strong>). This intuitively feels right, but it's hard to justify it with a consistent rule.</p> <p>And what about objects that are used as namespaces? These seem to be all over the map: <strong>YUI</strong>, <strong>Ext.util</strong>, <strong>jQuery</strong>, etc.</p> <p>Please provide secular rationalizations for your heart-felt religious views.</p> http://stackoverflow.com/questions/1470063/change-directory-and-branch-within-cvs-repository-to-read-only/1627578#1627578 1 Answer by JW for Change directory and branch within CVS repository to read-only JW 2009-10-26T22:00:17Z 2009-10-26T22:00:17Z <p>You can use cvs_acls, which comes with the CVS distribution. It allows you to define branch-level permissions for commits.</p> http://stackoverflow.com/questions/1398591/how-do-i-execute-a-php-shell-script-as-an-automator-action-on-mac-os-x/1621325#1621325 0 Answer by JW for How do I execute a PHP shell script as an Automator action on Mac OS X JW 2009-10-25T16:30:27Z 2009-10-25T16:30:27Z <p>The list of shells that Automator supports is in</p> <pre><code> /System/Library/Automator/Run\ Shell\ Script.action/Contents/Resources/Shells.plist </code></pre> <p>You can follow <a href="http://www.patrickpatoray.com/index.php?Page=112" rel="nofollow">this guy's instructions</a> to add an entry for /usr/bin/php. You may want to copy the .action file to ~/Library/Automator first, and work on the copy instead.</p> <p>Of course, it's probably easier to just wrap it in a bash script, as others have suggested.</p> http://stackoverflow.com/questions/659796/run-external-program-from-java-read-output-allow-interruption 4 Run external program from Java, read output, allow interruption JW 2009-03-18T19:38:21Z 2009-10-25T16:08:26Z <p>I want to launch a process from Java, read its output, and get its return code. But while it's executing, I want to be able to cancel it. I start out by launching the process:</p> <pre><code>ProcessBuilder pb = new ProcessBuilder(args); pb.redirectErrorStream(true); Process proc = pb.start(); </code></pre> <p>If I call proc.waitFor(), I can't do anything until the process exits. So I'm assuming I need to something like this:</p> <pre><code>while (true) { see if process has exited capture some output from the process decide if I want to cancel it, and if so, cancel it sleep for a while } </code></pre> <p>Is this right? Can someone give me an example of how to do this in Java?</p> http://stackoverflow.com/questions/1445890/universal-template-config-syntax 2 Universal template/config syntax JW 2009-09-18T17:33:38Z 2009-10-22T22:35:24Z <p>I have a number of applications written in different languages (Java, JavaScript, PHP, etc.). Their view/presentation layers display things in various formats: HTML, plain text, etc.</p> <p>I want to display some textual/numeric data in roughly the same way in each application. Of course, the result would be slightly different depending on the output format (e.g. if you're outputting HTML, you'd have to run some HTML-encoding functions, and if you're outputting plain text, you'd have to ignore things like links.)</p> <p>So I was thinking of storing the formatting information in some sort of abstract configuration language. Then each application could parse the formatting info, convert it to code in its own language, and run the code to generate the actual display text.</p> <p>For example:</p> <pre> Welcome &lt;username&gt;. Your balance is &lt;balance format:usDollars&gt;. &lt;if returning&gt;You last logged in on &lt;lastLoginDate format:m/d/Y&gt;&lt;/if&gt; </pre> <p>My question is: do I need to invent such a syntax from scratch? Or is there an existing templating/formatting language that's made to be cross-platform?</p> http://stackoverflow.com/questions/1596318/find-working-directory-from-ant 3 Find working directory from Ant JW 2009-10-20T18:01:54Z 2009-10-20T18:12:38Z <p>Is it possible to tell which directory the user ran Ant from?</p> <p>For example, I might want to run only the unit tests in the current working directory, rather than all tests for the entire project.</p> <p>I tried this:</p> <pre><code>&lt;property environment="env" /&gt; &lt;echo&gt;${env.CWD}&lt;/echo&gt; </code></pre> <p>but that doesn't work.</p> http://stackoverflow.com/questions/1591756/ignoring-eclipse-project-files-in-svn-project/1591828#1591828 1 Answer by JW for Ignoring Eclipse project files in SVN project JW 2009-10-20T00:19:27Z 2009-10-20T00:19:27Z <p>Preferences > Team > Ignored Resources</p> http://stackoverflow.com/questions/1579978/javascript-variable-scope-confusion/1580004#1580004 2 Answer by JW for JavaScript Variable Scope Confusion JW 2009-10-16T19:36:41Z 2009-10-16T19:36:41Z <p>You're trying to create a closure containing the variable "i". But closures are only created at the end of a function. So if your functions are created in a <strong>for</strong> loop, they will all have the values from the last iteration.</p> <p>You can fix it with something like this:</p> <pre><code>var createFunction = function(index) { return function() { console.log(index); } }; for (var i = 0; i &lt; 5; i++) { setTimeout(createFunction(i), i * 200); } </code></pre> <p>where you return the function from another function.</p> http://stackoverflow.com/questions/1564731/help-with-php-foreach-loop/1570067#1570067 0 Answer by JW for help with php FOREACH loop JW 2009-10-15T02:54:33Z 2009-10-15T02:54:33Z <p>A tip: the error message refers to the foreach line. That only reads from one variable, $_POST[sortlist], which isn't modified inside the loop. So you can ignore all the SQL stuff; it's not relevant to your problem. Reduce the problem to the smallest possible piece of code that still has an error. That will help you solve it.</p> http://stackoverflow.com/questions/1567605/php-extension-vs-library-vs-class-when-and-why/1567736#1567736 1 Answer by JW for PHP - Extension vs. Library vs. Class - when and why JW 2009-10-14T17:18:06Z 2009-10-14T17:18:06Z <p>Some libraries (including libpuzzle) also include a command-line tool. So if you're unable to use the PHP library due to your shared hosting environment, maybe you can compile the command-line tool. Then you can run it from PHP using something like <a href="http://php.net/manual/en/function.exec.php" rel="nofollow">exec</a>. It will be slower and require more memory than a library, but it might get the job done. Of course, many hosts also have restrictions on commands like exec, so this might not work either.</p> http://stackoverflow.com/questions/1563280/programmer-not-a-blogger/1563374#1563374 1 Answer by JW for Programmer, not a blogger JW 2009-10-13T22:45:49Z 2009-10-13T22:45:49Z <p>One of the most important tasks we face as programmers is communicating our ideas to other people. It's arguably just as important as communicating our ideas to machines. Most projects are done in collaboration with other developers, managers, and designers. And they need to be documented well enough that future developers can maintain them.</p> <p>So your job is to explain your work in such a way that anyone can understand it. In this case your audience is wider than you're used to, but it's basically the same task. Take a complex technical concept and reduce it to its essentials. Get out of your head a little, and try to look at it from other people's perspective.</p> <p>Of course, it's difficult for people who don't have Aspergers (I don't) to understand exactly how it affects your ability to communicate. You might want to expand on that in your question. But in any case, it seems like a worthwhile effort to make.</p> <p>Or -- how about explicitly writing from the perspective of someone with Aspergers? Not sure if your company would go for that, but it could be interesting.</p> http://stackoverflow.com/questions/1562600/is-there-an-eclipse-plugin-to-run-system-shell-in-the-console/1562667#1562667 1 Answer by JW for Is there an Eclipse plugin to run system shell in the Console? JW 2009-10-13T20:14:29Z 2009-10-13T20:14:29Z <p>It exists, and it's built into Eclipse! Go to the Remote Systems view, and you'll see an entry for "Local". Right-click "Local Shells" and choose "Launch Shell."</p> <p>You can't launch it directly from the project navigator. But you can right-click in the navigator and choose "Show in Remote Systems view". From there you can right-click the parent folder and choose "Launch Shell."</p> http://stackoverflow.com/questions/1555882/framework-design-reading-recommendations 1 Framework design -- reading recommendations JW 2009-10-12T17:29:46Z 2009-10-13T02:50:29Z <p>I'm writing a small application framework which other programmers will use. So I'm looking to do some reading on framework design issues. I'm not completely new to framework design, but it's always a bit of a challenge.</p> <p>Although I'm looking for general design principles, this particular framework is for Javascript applications, so it will need to handle things like window management, event passing, server calls, etc.. I'm already using one of the popular JS libraries, so this will be a (hopefully thin) layer on top of that.</p> <p>The kinds of issues I'm running into:</p> <ul> <li>should there be one overall controller object for the application, or is it better to think of it as just a bunch of independent objects talking to each other?</li> <li>if there is a main controller or event loop, should it be part of the framework, or part of the individual application?</li> <li>in general, should the individual application be in control, calling the framework when it needs to, or should the framework be in control, calling the application when it needs to?</li> <li>when an object needs to be used in many places, who should own it, and what should its scope be?</li> <li>when should objects communicate by publishing and subscribing to events, and when should they communicate directly?</li> </ul> <p>Does anyone have any books or links they would recommend?</p> http://stackoverflow.com/questions/1305570/closures-why-are-they-so-useful/1546522#1546522 1 Answer by JW for Closures: why are they so useful? JW 2009-10-09T23:29:49Z 2009-10-09T23:29:49Z <p>For me, the biggest benefit of closures is when you're writing code that starts a task, leaves the task to run, and specifies what should happen when the task is done. Generally the code that runs at the end of the task needs access to the data that's available at the beginning, and closures make this easy.</p> <p>For example, a common use in JavaScript is to start an HTTP request. Whoever's starting it probably wants to control what happens when the response arrives. So you'll do something like this:</p> <pre><code>function sendRequest() { var requestID = "123"; Ext.Ajax.request({ url:'/myUrl' success: function(response) { alert("Request " + requestID + " returned"); } }); } </code></pre> <p>Because of JavaScript's closures, the "requestID" variable is captured inside of the success function. This shows how you can write the request and response functions in the same place, and share variables between them. Without closures, you'd need to pass in requestID as an argument, or create an object containing requestID and the function.</p> http://stackoverflow.com/questions/1544284/how-to-record-an-applescript-in-snow-leopard/1544327#1544327 3 Answer by JW for How to record an applescript in Snow Leopard? JW 2009-10-09T14:55:57Z 2009-10-09T14:55:57Z <p>You can only record applications that are written to be recordable. Try recording some actions in the Finder, and it should work.</p> http://stackoverflow.com/questions/1533723/what-happens-if-you-use-a-script-tag-with-the-same-src-attribute-multiple-tim/1533741#1533741 1 Answer by JW for What happens if you use a <script> tag with the same "src" attribute multiple times within a single HTML document? JW 2009-10-07T19:40:27Z 2009-10-07T19:40:27Z <p>Even if they're cached, you may have problems since the same code will be executed twice. At the very least, this will cause the browser to take more time than necessary. And it may cause errors, since most JavaScript code isn't written to be executed twice. For example, it may attach the same event handlers twice.</p> http://stackoverflow.com/questions/1512043/best-location-for-ant-build-xml-files 2 Best location for ant build.xml files? JW 2009-10-02T22:12:20Z 2009-10-06T18:40:05Z <p>For those of you that use Ant with multiple projects, where do you put the build.xml files? Do you put one in each project, or do you put them in a separate project that contains all your Ant-related files?</p> <p>The usual recommendation is to put a build.xml in each project. But this has a few drawbacks:</p> <ul> <li><p>It makes it hard to reuse common targets in multiple projects.</p></li> <li><p>Sometimes you want to use Ant to export a project from source control and deploy it. Obviously you can't do this if the build file is in the project itself.</p></li> </ul> <p>But if you put them all in a common location:</p> <ul> <li><p>People need to be aware of their location to use them; they can't just use "ant -find" to find the current project's file.</p></li> <li><p>You can't have different build instructions for different branches of the project.</p></li> </ul> <p>What do you guys do?</p> <p><strong>EDIT</strong>: Thanks for the good suggestions so far. As far Maven, these aren't Java projects, and I get the impression that Maven is only meant for Java.</p> http://stackoverflow.com/questions/1525858/removing-characters-from-a-php-string/1526567#1526567 0 Answer by JW for Removing characters from a PHP String JW 2009-10-06T16:06:36Z 2009-10-06T16:06:36Z <p>Take a look at <a href="http://stackoverflow.com/questions/591446/how-do-i-get-the-byte-values-of-a-string-in-php">this question</a> to get the value of each byte in your string. (This assumes that <a href="http://www.php.net/manual/en/mbstring.overload.php" rel="nofollow">multibyte overloading</a> is turned off.)</p> <p>Once you have the bytes, you can use them to determine what these "rubbish" characters actually are. It's possible that they're a result of misinterpreting the encoding of the string, or displaying it in the wrong font, or something else. Post them here and people can help you further.</p> http://stackoverflow.com/questions/1505621/php-import-foreign-class-method-into-myclass/1505668#1505668 2 Answer by JW for PHP Import Foreign Class' Method into MyClass JW 2009-10-01T18:33:06Z 2009-10-01T18:33:06Z <p>A better approach would be to move the complex method into its own class. Then both of your classes can instantiate it, pass any necessary data, and call the method.</p> http://stackoverflow.com/questions/1800594/in-javascript-why-is-preferred-over-new-array/1800603#1800603 Comment by JW on In JavaScript, why is [ ] preferred over new Array(); ? JW 2009-11-25T23:51:49Z 2009-11-25T23:51:49Z Ugh, that constructor thing is awful. Never noticed that before. http://stackoverflow.com/questions/1799584/php-file-exists-always-false/1799618#1799618 Comment by JW on PHP File Exists Always False JW 2009-11-25T20:53:44Z 2009-11-25T20:53:44Z In other words: &quot;deprecated&quot; doesn't mean it no longer works. It means it may no longer work in future versions, so you should avoid it. http://stackoverflow.com/questions/1772788/php-array-sorting/1772798#1772798 Comment by JW on PHP Array sorting JW 2009-11-20T19:44:55Z 2009-11-20T19:44:55Z uksort in his case, since he wants a comparison function. http://stackoverflow.com/questions/1726116/run-a-php-script-every-second-using-cli/1726131#1726131 Comment by JW on Run a PHP script every second using CLI JW 2009-11-16T05:49:43Z 2009-11-16T05:49:43Z No, sleeping will almost certainly use less CPU than re-loading the PHP interpreter every second. http://stackoverflow.com/questions/1725227/pregmatch-and-utf-8-in-php/1725432#1725432 Comment by JW on preg_match and UTF-8 in PHP JW 2009-11-12T22:21:01Z 2009-11-12T22:21:01Z Great...and they don't provide a mb_preg_replace. http://stackoverflow.com/questions/1697195/finding-bytes-in-strings-with-phps-mbstring-funcoverload-on/1697279#1697279 Comment by JW on Finding bytes in strings with PHP's mbstring.func_overload on JW 2009-11-08T21:08:48Z 2009-11-08T21:08:48Z Looked through the source. <code>binary</code> and <code>8bit</code> seem to be the same. <code>7bit</code> includes only 7-bit characters (of course), and <code>ascii</code> includes 0x20-0x80, plus 0, 0x09, 0x0a, and 0x0d. http://stackoverflow.com/questions/1697195/finding-bytes-in-strings-with-phps-mbstring-funcoverload-on/1697279#1697279 Comment by JW on Finding bytes in strings with PHP's mbstring.func_overload on JW 2009-11-08T20:50:49Z 2009-11-08T20:50:49Z Is <code>binary</code> a real encoding? I don't see it listed on <a href="http://php.net/manual/en/mbstring.supported-encodings.php" rel="nofollow">php.net/manual/en/&hellip;</a>, but it seems to work. Do you know what the differences are between <code>binary</code>, <code>8bit</code>, and <code>ascii</code>? http://stackoverflow.com/questions/587603/replacing-trunk-with-branch-in-subversion Comment by JW on Replacing trunk with branch in Subversion JW 2009-10-28T17:05:01Z 2009-10-28T17:05:01Z Not yet...I ended up just doing the straight copy. http://stackoverflow.com/questions/1602571/ajax-and-php-help Comment by JW on Ajax and PHP help JW 2009-10-21T18:17:51Z 2009-10-21T18:17:51Z Your last paragraph is pretty confusing....not sure what you mean. http://stackoverflow.com/questions/1601383/is-the-order-of-rules-within-a-single-css-file-important/1601389#1601389 Comment by JW on Is the order of rules within a single css file important? JW 2009-10-21T15:05:33Z 2009-10-21T15:05:33Z In the given example it doesn't matter, but in many other cases it does. http://stackoverflow.com/questions/1083419/can-someone-define-what-a-closure-is-in-real-world-language/1083425#1083425 Comment by JW on Can someone define what a closure is in real world language? JW 2009-10-21T03:05:46Z 2009-10-21T03:05:46Z True, but I don't think that's the type of closure than he was looking for. http://stackoverflow.com/questions/1596318/find-working-directory-from-ant/1596354#1596354 Comment by JW on Find working directory from Ant JW 2009-10-20T18:13:01Z 2009-10-20T18:13:01Z It was staring me in the face and I ignored it. Thanks! http://stackoverflow.com/questions/1580083/php-file-upload-to-memory/1580135#1580135 Comment by JW on PHP File upload to memory JW 2009-10-16T20:06:23Z 2009-10-16T20:06:23Z PHP does have a setting &quot;upload_tmp_dir&quot;, which controls where the uploaded files go. So it seems like it does have some control. http://stackoverflow.com/questions/1568828/trying-to-use-only-one-method-name Comment by JW on trying to use only one method name JW 2009-10-14T20:38:34Z 2009-10-14T20:38:34Z Are you changing a class, or extending it? http://stackoverflow.com/questions/1563910/why-is-php-complaining-about-passing-by-reference-in-this-code Comment by JW on why is php complaining about passing by reference in this code? JW 2009-10-14T04:02:46Z 2009-10-14T04:02:46Z What are you trying to do here? If you're expecting end() to give you the last element in the array, you're misunderstanding the function.