User Wesley Mason - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T14:22:18Zhttp://stackoverflow.com/feeds/user/28147http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1299082/simple-javascript-function-with-immediate-invocation-does-not-work-why/1299100#1299100-1Answer by Wesley Mason for Simple JavaScript function with immediate invocation does not work... why?Wesley Mason2009-08-19T10:49:00Z2009-08-19T11:03:59Z<p>Edited because my answer had incorrectly read the original post:</p>
<p>As your function is no longer being assigned as a lambda function to a value, invoking the function afterwards with ("Mike") won't work as there's no value to invoke the call on. As others suggested wrapping this with parenthesis to create a temporary variable will still let you invoke the anonymous function:</p>
<pre><code>(function sayHello (name) {
alert("Hello there " + name + "!");
})('Mike');
</code></pre>
http://stackoverflow.com/questions/1188616/php-function-to-split-an-array-at-each-blank-line/1188659#11886590Answer by Wesley Mason for php function to split an array at each blank line?Wesley Mason2009-07-27T14:57:20Z2009-07-27T14:57:20Z<p>You could do it by splitting first on the blank line and then on new lines, e.g.:</p>
<pre><code>$file = $target_path;
$fileData = file_get_contents($file) or die('Could not read file!');
$parts = explode("\n\n", $data);
$data = array();
foreach ($parts as $part) {
$data[] = explode("\n", $part);
}
</code></pre>
<p>You could also use preg_split() in place of the first explode() with a regex to sp.lit on lines containing just whitespace (e.g. \s+)</p>
http://stackoverflow.com/questions/1108002/rtf-library-phprtf-has-anyone-used-it/1120104#11201040Answer by Wesley Mason for RTF Library - PHPrtf Has anyone used it?Wesley Mason2009-07-13T15:18:35Z2009-07-13T15:18:35Z<p>Looking at the source for PHPrtf it looks like the author has forgotten to include regular line breaks. They've included DOS style line endings, "\r\n", which creates an RTF paragraph (\par), but nothing which creates an RTF linebreak (\line).</p>
<p>You have 2 options, replace your (I presume nix) line endings in the output from get_file_contents() with \r\n's, to create paragraphs in the RTF, e.g.:</p>
<pre><code>str_replace("\n", "\r\n", $text);
</code></pre>
<p>Or you can patch rtf/Container.php, specifically inserting the following at the top of "Container::writeText()":</p>
<pre><code>$text = str_replace("\n", "\n".'\line ', $text);
</code></pre>
http://stackoverflow.com/questions/951472/elmah-for-other-php/964735#9647350Answer by Wesley Mason for Elmah For other PHPWesley Mason2009-06-08T12:42:18Z2009-06-08T12:42:18Z<p>I'd recommend <a href="http://pear.php.net/package/Log" rel="nofollow">PEAR::Log</a> as recommended by @Jet, along with <a href="http://uk.php.net/manual/en/function.set-error-handler.php" rel="nofollow">set_error_handler()</a> and <a href="http://uk.php.net/manual/en/function.set-exception-handler.php" rel="nofollow">set_exception_handler()</a>.</p>
http://stackoverflow.com/questions/584886/fast-loading-web-pages/956421#9564210Answer by Wesley Mason for Fast Loading web pagesWesley Mason2009-06-05T15:14:51Z2009-06-05T15:14:51Z<p>A project which helps with a few of the points in Yahoo!'s guidelines (<a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">http://developer.yahoo.com/performance/rules.html</a>) is <a href="http://code.google.com/p/minify/" rel="nofollow">Minify</a> which employs minification, package bundling and conditional HTTP serving in the same space, used with good design practices can significantly reduce page loads, especially user experience (which differs from actually page loading times).</p>
http://stackoverflow.com/questions/857885/formatting-php-code-within-vim/857905#8579056Answer by Wesley Mason for Formatting PHP Code within VimWesley Mason2009-05-13T13:20:45Z2009-05-13T13:20:45Z<p>Quick way to fix PHP indentation in vim is to visually select the lines you want to work with using shift-v, and then press equals (=) to trigger auto-formatting.</p>
<p>As for other formatting issues you're probably looking at employing some regex search and replaces, such as ":%s/^M/\r/g" (that's ctrl-V ctrl-m, not caret-M) to fix line-endings</p>
http://stackoverflow.com/questions/656821/problem-with-php-array/657986#6579860Answer by Wesley Mason for Problem with PHP ArrayWesley Mason2009-03-18T12:08:09Z2009-03-18T12:08:09Z<p>The main reason is because unlike some languages like Python and JavaScript, <code>Array()</code> (or in fact <code>array()</code>) is not an object, but an language construct which creates an inbuilt data type.
Inbuilt datatypes themselves aren't objects either, and the <code>array()</code> construct doesn't return a reference to the "object" but the actual value itself when can then be assigned to a variable.</p>
http://stackoverflow.com/questions/511541/sharing-session-across-domain/511570#5115701Answer by Wesley Mason for Sharing session across domainWesley Mason2009-02-04T14:25:33Z2009-02-04T14:25:33Z<p>You need to set the domain for your cookie to your top domain pereceded by a dot, e.g. for subdomain1.domain.com and subdomain2.domain.com, you would the domain for the session cookie to: .domain.com.</p>
<p>In JBoss you should be able to override this for all the subdomains in the javax.servlet.http.Cookie class.</p>
http://stackoverflow.com/questions/424454/php-multiple-occurences-of-words-within-a-string/424523#4245232Answer by Wesley Mason for PHP Multiple Occurences Of Words Within A StringWesley Mason2009-01-08T14:55:50Z2009-01-08T14:55:50Z<pre><code><?php
$words = preg_split('\b', $string, PREG_SPLIT_NO_EMPTY);
$wordsUnique = array_unique($words);
if (count($words) != count($wordsUnique)) {
echo 'Duplicate word found!';
}
?>
</code></pre>
http://stackoverflow.com/questions/246057/how-to-debug-in-vi/377970#3779702Answer by Wesley Mason for How to debug in VIWesley Mason2008-12-18T14:20:58Z2008-12-18T14:20:58Z<p>See the link on using xdebug with vim that someone else posted for a full debugger, but as an extra tip you can do this from vim to run syntax check on the current PHP script:</p>
<pre><code>:!php -l %
</code></pre>
<p>I have this assigned to my F5 key by putting this in my .vimrc file (in your home(~) directory):</p>
<pre><code>nmap <F5> :! php5 -l %<CR>
</code></pre>
http://stackoverflow.com/questions/262448/replace-non-numeric-with-empty-string/262533#2625330Answer by Wesley Mason for Replace non-numeric with empty stringWesley Mason2008-11-04T17:07:07Z2008-11-04T17:07:07Z<p>Using the Regex methods in .NET you should be able to match any non-numeric digit using \D, like so:</p>
<pre><code>phoneNumber = Regex.Replace(phoneNumber, "\D", "");
</code></pre>
http://stackoverflow.com/questions/222925/in-php-is-there-a-way-to-capture-the-output-of-a-php-file-into-a-variable-withou/229193#2291931Answer by Wesley Mason for In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?Wesley Mason2008-10-23T10:06:28Z2008-10-23T10:06:28Z<p>A little known feature of PHP is being able to treat an included/required file like a function call, with a return value.</p>
<p>For example:</p>
<pre><code>// myinclude.php
$value = 'foo';
$otherValue = 'bar';
return $value . $otherValue;
// index.php
$output = include './myinclude.php';
echo $output;
// Will echo foobar
</code></pre>
http://stackoverflow.com/questions/1299082/simple-javascript-function-with-immediate-invocation-does-not-work-why/1299132#1299132Comment by Wesley Mason on Simple JavaScript function with immediate invocation does not work... why?Wesley Mason2009-08-19T11:04:52Z2009-08-19T11:04:52ZThis doesn't answer what he actually wants to do however, which is invoke the anonymous function. See Brian's answer.http://stackoverflow.com/questions/1299082/simple-javascript-function-with-immediate-invocation-does-not-work-why/1299100#1299100Comment by Wesley Mason on Simple JavaScript function with immediate invocation does not work... why?Wesley Mason2009-08-19T11:02:12Z2009-08-19T11:02:12ZAh yes, this is correct..which won't work in this context because it's never being assigned to a value to then invoke. My bad. Will edit.http://stackoverflow.com/questions/1205757/linux-command-line-recursively-overwriting-every-file-with-a-gzipped-version/1208772#1208772Comment by Wesley Mason on Linux Command line: recursively overwriting every file with a gzipped version?Wesley Mason2009-07-31T11:09:08Z2009-07-31T11:09:08ZAha, forgot about multiple -exec calls in find, me likeyhttp://stackoverflow.com/questions/1205757/linux-command-line-recursively-overwriting-every-file-with-a-gzipped-version/1205821#1205821Comment by Wesley Mason on Linux Command line: recursively overwriting every file with a gzipped version?Wesley Mason2009-07-31T10:13:31Z2009-07-31T10:13:31ZSee <a href="http://www.commandlinefu.com/commands/view/1387/backticks-are-evil" rel="nofollow">commandlinefu.com/commands/view/…</a>http://stackoverflow.com/questions/1205757/linux-command-line-recursively-overwriting-every-file-with-a-gzipped-version/1205821#1205821Comment by Wesley Mason on Linux Command line: recursively overwriting every file with a gzipped version?Wesley Mason2009-07-30T10:50:02Z2009-07-30T10:50:02ZAnd yes I do know backticks are evil, but as I said this is just a quick hack script.http://stackoverflow.com/questions/1188616/php-function-to-split-an-array-at-each-blank-line/1188666#1188666Comment by Wesley Mason on php function to split an array at each blank line?Wesley Mason2009-07-27T15:02:13Z2009-07-27T15:02:13ZRather than doing file(), implode(), preg_split(), you can use file_get_contents() instead.http://stackoverflow.com/questions/1188616/php-function-to-split-an-array-at-each-blank-line/1188648#1188648Comment by Wesley Mason on php function to split an array at each blank line?Wesley Mason2009-07-27T14:55:45Z2009-07-27T14:55:45ZSurely split() works on strings, he's talking about working on an array of strings.http://stackoverflow.com/questions/1016213/class-initiation-with-php/1016231#1016231Comment by Wesley Mason on class initiation with phpWesley Mason2009-06-19T14:21:59Z2009-06-19T14:21:59ZSometimes you want to statically retrieve next instances and the only way to do this in PHP <5.3 is using a factory method such as this, or by redefining factory methods in descendants.http://stackoverflow.com/questions/985656/can-this-regular-expression-find-replace-be-optimised/985680#985680Comment by Wesley Mason on can this regular expression find/replace be optimised?Wesley Mason2009-06-12T08:58:19Z2009-06-12T08:58:19ZSurely you could just use the none greedy operator in a preg, e.g. .*?http://stackoverflow.com/questions/857427/php-referer-redirect-script/857450#857450Comment by Wesley Mason on PHP - Referer redirect scriptWesley Mason2009-05-13T13:30:59Z2009-05-13T13:30:59Z@David I believe you are misunderstanding the mechanism of a redirect. In this case when your script sets the referrer it does it on the request to the link, it would then need to either serve that information back to the client, and thus not performing a redirect at all it would be proxying all information through itself, or it would redirect the client to the link, thus destroying the whole referrer hiding. Even if the script only partially proxied content, the referrer would still be sent for images/CSS/JS etc.http://stackoverflow.com/questions/424454/php-multiple-occurences-of-words-within-a-string/424523#424523Comment by Wesley Mason on PHP Multiple Occurences Of Words Within A StringWesley Mason2009-01-08T16:44:08Z2009-01-08T16:44:08ZI used the regex to split on word boundaries as opposed to just splitting on spaces, should have made this clear.