User JW - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T23:15:55Zhttp://stackoverflow.com/feeds/user/4321http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1799584/php-file-exists-always-false/1799893#17998930Answer by JW for PHP File Exists Always FalseJW2009-11-25T20:57:42Z2009-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#17940610Answer by JW for php underscore in filename variable?JW2009-11-25T01:09:52Z2009-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#17770102Answer by JW for Multi-site SVN/Development workflowJW2009-11-21T22:31:57Z2009-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#17658351Answer by JW for PHP check if $_SESSION['text'] is textJW2009-11-19T19:18:11Z2009-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-formatter0Multi-language command-line source code formatterJW2009-11-13T19:29:15Z2009-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-on1Finding bytes in strings with PHP's mbstring.func_overload onJW2009-11-08T17:14:26Z2009-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-php0preg_match and UTF-8 in PHPJW2009-11-12T20:40:34Z2009-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#17244565Answer by JW for What programs/languages should I learn for a career in web programming/design?JW2009-11-12T18:44:44Z2009-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-do0What do these PHP mbstring settings do?JW2009-11-07T00:42:14Z2009-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-copies1Subversion: log of a path, regardless of copiesJW2009-10-31T19:06:47Z2009-11-01T17:00:16Z
<p>When I do <code>svn log <path></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 <path></code>, look for the revision where it was copied, and then do <code>svn log <path>@<revision - 2></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#16557170Answer by JW for SVN commit fails beacuse I did not check out.JW2009-10-31T21:51:45Z2009-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-objects0Capitalization convention for JavaScript objectsJW2009-10-08T22:04:26Z2009-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#16275781Answer by JW for Change directory and branch within CVS repository to read-onlyJW2009-10-26T22:00:17Z2009-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#16213250Answer by JW for How do I execute a PHP shell script as an Automator action on Mac OS XJW2009-10-25T16:30:27Z2009-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-interruption4Run external program from Java, read output, allow interruptionJW2009-03-18T19:38:21Z2009-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-syntax2Universal template/config syntaxJW2009-09-18T17:33:38Z2009-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 <username>.
Your balance is <balance format:usDollars>.
<if returning>You last logged in on <lastLoginDate format:m/d/Y></if>
</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-ant3Find working directory from AntJW2009-10-20T18:01:54Z2009-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><property environment="env" />
<echo>${env.CWD}</echo>
</code></pre>
<p>but that doesn't work.</p>
http://stackoverflow.com/questions/1591756/ignoring-eclipse-project-files-in-svn-project/1591828#15918281Answer by JW for Ignoring Eclipse project files in SVN projectJW2009-10-20T00:19:27Z2009-10-20T00:19:27Z<p>Preferences > Team > Ignored Resources</p>
http://stackoverflow.com/questions/1579978/javascript-variable-scope-confusion/1580004#15800042Answer by JW for JavaScript Variable Scope ConfusionJW2009-10-16T19:36:41Z2009-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 < 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#15700670Answer by JW for help with php FOREACH loopJW2009-10-15T02:54:33Z2009-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#15677361Answer by JW for PHP - Extension vs. Library vs. Class - when and whyJW2009-10-14T17:18:06Z2009-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#15633741Answer by JW for Programmer, not a bloggerJW2009-10-13T22:45:49Z2009-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#15626671Answer by JW for Is there an Eclipse plugin to run system shell in the Console?JW2009-10-13T20:14:29Z2009-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-recommendations1Framework design -- reading recommendationsJW2009-10-12T17:29:46Z2009-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#15465221Answer by JW for Closures: why are they so useful?JW2009-10-09T23:29:49Z2009-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#15443273Answer by JW for How to record an applescript in Snow Leopard?JW2009-10-09T14:55:57Z2009-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#15337411Answer by JW for What happens if you use a <script> tag with the same "src" attribute multiple times within a single HTML document?JW2009-10-07T19:40:27Z2009-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-files2Best location for ant build.xml files?JW2009-10-02T22:12:20Z2009-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#15265670Answer by JW for Removing characters from a PHP StringJW2009-10-06T16:06:36Z2009-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#15056682Answer by JW for PHP Import Foreign Class' Method into MyClassJW2009-10-01T18:33:06Z2009-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#1800603Comment by JW on In JavaScript, why is [ ] preferred over new Array(); ?JW2009-11-25T23:51:49Z2009-11-25T23:51:49ZUgh, that constructor thing is awful. Never noticed that before.http://stackoverflow.com/questions/1799584/php-file-exists-always-false/1799618#1799618Comment by JW on PHP File Exists Always FalseJW2009-11-25T20:53:44Z2009-11-25T20:53:44ZIn other words: "deprecated" 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#1772798Comment by JW on PHP Array sortingJW2009-11-20T19:44:55Z2009-11-20T19:44:55Zuksort in his case, since he wants a comparison function.http://stackoverflow.com/questions/1726116/run-a-php-script-every-second-using-cli/1726131#1726131Comment by JW on Run a PHP script every second using CLIJW2009-11-16T05:49:43Z2009-11-16T05:49:43ZNo, 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#1725432Comment by JW on preg_match and UTF-8 in PHPJW2009-11-12T22:21:01Z2009-11-12T22:21:01ZGreat...and they don't provide a mb_preg_replace.http://stackoverflow.com/questions/1697195/finding-bytes-in-strings-with-phps-mbstring-funcoverload-on/1697279#1697279Comment by JW on Finding bytes in strings with PHP's mbstring.func_overload onJW2009-11-08T21:08:48Z2009-11-08T21:08:48ZLooked 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#1697279Comment by JW on Finding bytes in strings with PHP's mbstring.func_overload onJW2009-11-08T20:50:49Z2009-11-08T20:50:49ZIs <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/…</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-subversionComment by JW on Replacing trunk with branch in SubversionJW2009-10-28T17:05:01Z2009-10-28T17:05:01ZNot yet...I ended up just doing the straight copy.http://stackoverflow.com/questions/1602571/ajax-and-php-helpComment by JW on Ajax and PHP helpJW2009-10-21T18:17:51Z2009-10-21T18:17:51ZYour 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#1601389Comment by JW on Is the order of rules within a single css file important?JW2009-10-21T15:05:33Z2009-10-21T15:05:33ZIn 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#1083425Comment by JW on Can someone define what a closure is in real world language?JW2009-10-21T03:05:46Z2009-10-21T03:05:46ZTrue, 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#1596354Comment by JW on Find working directory from AntJW2009-10-20T18:13:01Z2009-10-20T18:13:01ZIt was staring me in the face and I ignored it. Thanks!http://stackoverflow.com/questions/1580083/php-file-upload-to-memory/1580135#1580135Comment by JW on PHP File upload to memoryJW2009-10-16T20:06:23Z2009-10-16T20:06:23ZPHP does have a setting "upload_tmp_dir", 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-nameComment by JW on trying to use only one method nameJW2009-10-14T20:38:34Z2009-10-14T20:38:34ZAre you changing a class, or extending it?http://stackoverflow.com/questions/1563910/why-is-php-complaining-about-passing-by-reference-in-this-codeComment by JW on why is php complaining about passing by reference in this code?JW2009-10-14T04:02:46Z2009-10-14T04:02:46ZWhat 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.