User Peter Stone - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T20:25:53Z http://stackoverflow.com/feeds/user/1806 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/32809/javascript-unit-testing 20 Javascript Unit-testing? Peter Stone 2008-08-28T17:02:23Z 2009-11-17T11:40:14Z <p>What's the best way to go about running unit tests for Javascript? I've been playing around with Selenium IDE, but it's Firefox-specific. Selenium RC looks... difficult - but is it the best way to run tests in, say, IE6?</p> <p>Also, is it worth doing? I haven't seen much about automated tests for Javascript applications, but it seems to me that as the language running most of the user experience it should be tested. Do you test your Javascript, just back end code, or neither?</p> http://stackoverflow.com/questions/227473/parse-phone-number-into-component-parts/227524#227524 0 Answer by Peter Stone for Parse Phone Number into component parts Peter Stone 2008-10-22T20:57:21Z 2009-09-18T00:09:14Z <p>Strip out anything that's not a digit first. Then all your examples reduce to:</p> <p><code>/^1?(\d{3})(\d{3})(\d{4})(\d*)$/</code></p> <p>To support all country codes is a little more complicated, but the same general rule applies.</p> http://stackoverflow.com/questions/1140781/can-i-get-feedback-on-this-php-function-that-tests-if-a-user-has-signed-up/1140814#1140814 1 Answer by Peter Stone for Can I get feedback on this PHP function that tests if a user has signed up? Peter Stone 2009-07-16T23:27:24Z 2009-07-17T15:40:32Z <p>Try this:</p> <pre><code>$conn = get_db_conn(); # should reuse a connection if it exists # Have MySQL count the rows, instead of fetching a list (also prevent injection) $res = mysql_query(sprintf("SELECT COUNT(*) FROM users WHERE uid=%d", $user)); # if the query fails if (!$res) return false; # explode the result list($count) = mysql_fetch_row($res); return ($count === '1'); </code></pre> <p>Thoughts:</p> <ul> <li><p>You'll want better handling of a failed query, since return false means the user doesn't already exist.</p></li> <li><p>Use the database to count, it'll be faster.</p></li> <li><p>I'm assuming <code>uid</code> is an integer in the sprintf statement. This is now safe for user input.</p></li> <li><p>If you have an if statement that looks like <code>if (something) { true } else { false }</code> you should collapse it to just <code>return something</code>.</p></li> </ul> <p>HTH</p> http://stackoverflow.com/questions/1139934/encoding-json-for-jquery-calendar/1139981#1139981 5 Answer by Peter Stone for Encoding JSON for jQuery Calendar Peter Stone 2009-07-16T20:08:50Z 2009-07-16T21:21:56Z <p>You're echoing each string separately, so json_encode never knows it's a list.</p> <p>You could change your while statement to build up the list:</p> <pre><code>while($row = $result-&gt;fetch_array(MYSQLI_ASSOC)) { echo json_encode(array( .... </code></pre> <p>to</p> <pre><code>$rows = array(); while($row = $result-&gt;fetch_array(MYSQLI_ASSOC)) { $rows[] = array( .... } </code></pre> <p>then json_encode the whole thing:</p> <pre><code>echo json_encode($rows); </code></pre> <p>That will output the [{...},{...}] structure you're looking for, which is a valid JSON object.</p> http://stackoverflow.com/questions/1070153/stop-post-data-from-different-domain-php/1070185#1070185 0 Answer by Peter Stone for Stop Post Data From Different Domain PHP Peter Stone 2009-07-01T16:45:23Z 2009-07-01T16:45:23Z <p>If you're looking for a quick-and-dirty approach, you can check the REFERER header.</p> <p>If you really want to make sure that the form was fetched from your site though, you should generate a token each time the form is loaded and attach it to a session. A simple way to do this would be something like:</p> <pre><code>$_SESSION['formToken'] = sha1(microtime()); </code></pre> <p>Then your form can have a hidden input:</p> <pre><code>&lt;input type="hidden" name="token" value='&lt;?=$_SESSION['formToken'];?&gt;' /&gt; </code></pre> <p>and you can check that when deciding whether to process your form data.</p> http://stackoverflow.com/questions/708005/how-does-apache-determine-the-fqdn 0 How does Apache determine the FQDN? Peter Stone 2009-04-02T01:50:56Z 2009-04-02T02:58:02Z <p>I'm using Apache2, and when reloading/restarting the server I get this warning:</p> <p><code>apache2: Could not reliably determine the server's fully qualified domain name, using (my FQDN) for ServerName</code></p> <p>Everything works fine, but I'm trying to figure out what's causing the error. I'm grabbing the source to see if can find it, but since my C's not very good....</p> <p>Some notes:<ul> <li>If I change the system hostname, Apache uses the new hostname</li> <li>I have a <code>ServerName</code> set; it's the same as the hostname</li> <li>I have a static, unique IP - <code>dig (hostname)</code> returns (my ip), <code>dig -x (my ip)</code> returns (hostname)</li> <li>My hosts file is correct</li> </ul></p> <p>Versions:</p> <pre> Apache/2.2.9 Linux 2.6.24-23-xen x86_64 Description: Debian GNU/Linux 5.0 (lenny) </pre> <p>Any ideas?</p> http://stackoverflow.com/questions/422648/any-good-online-c-book/422662#422662 0 Answer by Peter Stone for Any good online C book Peter Stone 2009-01-07T23:43:03Z 2009-01-07T23:43:03Z <p>Your local library may have a <a href="http://www.proquest.com/en-US/" rel="nofollow">ProQuest</a> / <a href="http://www.safaribooksonline.com/" rel="nofollow">Safari</a> subscription - usually accessible online with a library card. I've had good luck with that.</p> http://stackoverflow.com/questions/421209/open-source-kb-support-web-application-suggestions/421243#421243 1 Answer by Peter Stone for Open source KB/support web application suggestions Peter Stone 2009-01-07T17:36:32Z 2009-01-07T17:36:32Z <p><a href="http://bestpractical.com/rt/" rel="nofollow">RT</a> has a good FAQ Manager (called, unsurprisingly, RTFM) - a full RT install may be a little overkill for what you need, but apparently you can use RTFM <a href="http://bestpractical.com/rtfm/" rel="nofollow">stand-alone</a>.</p> http://stackoverflow.com/questions/417726/how-to-move-a-single-folder-from-one-subversion-repository-to-another-repository/417734#417734 0 Answer by Peter Stone for How to move a single folder from one Subversion repository to another repository? Peter Stone 2009-01-06T19:09:40Z 2009-01-06T19:56:41Z <p>I don't believe you can do it remotely (i.e., without a local copy). But this should work: <code>svn export</code> the folder from the original server, then <code>svn add</code> it to your new repo.</p> <p>Like:</p> <pre><code>$ svn checkout svn://example.net/newrepo . $ svn export svn://example.com/oldrepo/mydir ./mydir $ svn add ./mydir; svn commit </code></pre> <p>Edit: D'oh, this drops the history. Use <code>svnadmin</code> as <a href="http://stackoverflow.com/questions/417726/how-to-move-a-single-folder-from-one-subversion-repository-to-another-repository#417748">Samuel describes</a>.</p> http://stackoverflow.com/questions/414835/avoid-race-conditions-in-php-on-submit-please-do-not-click-submit-more-than-once/414881#414881 2 Answer by Peter Stone for Avoid Race Conditions in PHP on Submit: Please do not click submit more than once! Peter Stone 2009-01-05T23:17:42Z 2009-01-05T23:17:42Z <p>As others have noted, you can disable the button. I like server-side checks better, though - JS may be disabled, user might hit refresh (although if you're properly using POST that will generate a warning), etc.</p> <p>You can add a timestamp to the form and track it in the session - require the POSTed timestamp be greater than the tracked one. That will prevent most double-posts without noticeably affecting the UI.</p> http://stackoverflow.com/questions/414809/how-do-i-determine-whether-a-page-is-secure-via-javascript/414827#414827 3 Answer by Peter Stone for How do I determine whether a page is secure via JavaScript? Peter Stone 2009-01-05T23:00:33Z 2009-01-05T23:00:33Z <p><code>location.protocol</code> should do it for you.</p> <p>(as in:</p> <pre><code>if (location.protocol === 'https:') { // page is secure } </code></pre> <p>)</p> http://stackoverflow.com/questions/230718/redirection-and-vim/230794#230794 3 Answer by Peter Stone for redirection and vim Peter Stone 2008-10-23T18:12:55Z 2008-10-23T18:12:55Z <p><code>vim -d file1 file2</code></p> http://stackoverflow.com/questions/227172/what-should-i-use-for-a-ruby-development-environment-on-windows/227189#227189 0 Answer by Peter Stone for What should I use for a Ruby development environment on Windows? Peter Stone 2008-10-22T19:22:26Z 2008-10-22T19:22:26Z <p>For a tabbed console, try <a href="http://software.jessies.org/terminator/" rel="nofollow">Terminator</a>.</p> http://stackoverflow.com/questions/227117/file-transfer-protocol-options/227167#227167 4 Answer by Peter Stone for File Transfer Protocol options? Peter Stone 2008-10-22T19:16:39Z 2008-10-22T19:16:39Z <p>I use rsync (over SSH) to transfer anything that I think might take more than a minute. </p> <p>It's easy to rate-limit, suspend/resume and get progress reports. You can automate it with SSH keys. It's (usually) already installed (on *nix boxes, anyway).</p> <p>Depending on what you need, rsync can probably adapt. If you're distributing to a lot of users, FTP/HTTP might be better for firewall concerns; but rsync is great for one-to-one or one-to-a-few transfers.</p> http://stackoverflow.com/questions/124652/should-i-learn-play-with-perl-6/124665#124665 13 Answer by Peter Stone for Should I learn/play with Perl 6? Peter Stone 2008-09-24T00:09:25Z 2008-10-09T13:37:02Z <p>I think it's worth playing with, even if just to make you hate all other languages. :-)</p> <p>There's a really good series of articles by Moritz Lenz over at <a href="http://perlgeek.de/blog-en/perl-5-to-6/" rel="nofollow">perlgeek.de</a> (in English) that address the differences from Perl 5 (many!) pretty well.</p> http://stackoverflow.com/questions/33471/subversion-fail-update-when-there-are-conflicts 2 Subversion: Fail update when there are conflicts? Peter Stone 2008-08-28T21:44:08Z 2008-10-02T23:24:29Z <p>Is there a way to tell subversion "update/merge unless it would cause a conflict"?</p> <p>I know you can use <code>--dry-run</code> / <code>status -u</code> to check before running the update, but I often have others running updates and getting broken webpages because they don't notice the "C index.php" line.</p> <p>I've also noticed that svn doesn't seem too unhappy about conflicts - it still says "updated to revision blah" and exits zero, regardless of conflicts. So I have to parse the line-by-line output to discover them. Surely there's a better way?</p> http://stackoverflow.com/questions/159625/how-do-you-implement-a-multiculture-web-application/159974#159974 1 Answer by Peter Stone for How do you implement a multiculture web application Peter Stone 2008-10-01T22:06:14Z 2008-10-01T22:06:14Z <p>If you're on *NIX, use <a href="http://www.gnu.org/software/gettext/" rel="nofollow">gettext</a>. Most languages I've used have some level of support; <a href="http://php.net/gettext" rel="nofollow">PHP's</a> is pretty good, for instance.</p> http://stackoverflow.com/questions/96597/how-do-i-upgrade-to-subversion-1-5-on-centos-5/97105#97105 1 Answer by Peter Stone for How do I Upgrade to Subversion 1.5 On CentOS 5? Peter Stone 2008-09-18T21:20:47Z 2008-09-18T23:53:09Z <blockquote> <p>I'm not overly concerned about the other outdated packages at the moment, but as you can see there is no Subversion update available.</p> </blockquote> <p>Nor any packages from <code>rpmforge</code>. It's your priority settings. Try disabling yum-priorities (change <code>enabled=1</code> to <code>enabled=0</code> in <code>/etc/yum/pluginconf.d/priorities.conf</code>) - then it should work.</p> <p>So I guess the next question is why the priority is screwing it up.... I'm not sure on this, though.</p> <p>Edit: See <a href="http://stackoverflow.com/questions/96597/how-do-i-upgrade-to-subversion-15-on-centos-5#97106">8jean's answer</a> for more about priorities.</p> http://stackoverflow.com/questions/97063/can-anyone-give-me-a-list-of-the-business-objects-error-codes-and-what-they-mean/97139#97139 0 Answer by Peter Stone for Can anyone give me a list of the Business Objects Error Codes and what they mean? Peter Stone 2008-09-18T21:24:16Z 2008-09-18T21:24:16Z <p>Perhaps <a href="http://resources.businessobjects.com/support/communitycs/TechnicalPapers/pecodes.pdf?recDnlReq=Record&amp;dnlPath=pecodes.pdf" rel="nofollow">This</a>? (PDF Link - beware)</p> <p>Found here: (Google cache, as the page appears dead): <a href="http://209.85.173.104/search?q=cache:fyB21Ywrj-MJ:support.businessobjects.com/communityCS/TechnicalPapers/pecodes.pdf.asp+%22Business+Objects%22+%22Error+Codes%22&amp;hl=en&amp;ct=clnk&amp;cd=1&amp;gl=us" rel="nofollow">http://209.85.173.104/search?q=cache:fyB21Ywrj-MJ:support.businessobjects.com/communityCS/TechnicalPapers/pecodes.pdf.asp+%22Business+Objects%22+%22Error+Codes%22&amp;hl=en&amp;ct=clnk&amp;cd=1&amp;gl=us</a></p> http://stackoverflow.com/questions/96597/how-do-i-upgrade-to-subversion-1-5-on-centos-5/96662#96662 1 Answer by Peter Stone for How do I Upgrade to Subversion 1.5 On CentOS 5? Peter Stone 2008-09-18T20:37:50Z 2008-09-18T20:49:19Z <p>If you install <a href="http://wiki.centos.org/AdditionalResources/Repositories/RPMForge" rel="nofollow">RPMForge</a>'s repos, you should then be able to get a newer package - this isn't working for you?</p> <p>You should see rpmforge.list in /etc/apt/sources.list.d with a line like:</p> <pre><code>repomd http://apt.sw.be redhat/el$(VERSION)/en/$(ARCH)/dag </code></pre> <p>I just tested on a clean CentOS 5 install, and <code>yum check-update</code> shows</p> <pre><code>subversion.i386 1.5.2-0.1.el5.rf rpmforge subversion-perl.i386 1.5.2-0.1.el5.rf rpmforge </code></pre> <p>So check your sources list and run check-update again.</p> <p>Edit: Whoops, lost part of my answer. Added it back above.</p> http://stackoverflow.com/questions/84980/resending-invitation-action-emails/85004#85004 0 Answer by Peter Stone for Resending invitation/action emails Peter Stone 2008-09-17T16:25:24Z 2008-09-17T16:25:24Z <p>Useful - any number of factors can change between the first and the second sending.</p> http://stackoverflow.com/questions/66037/challenge-sites/66079#66079 0 Answer by Peter Stone for Challenge Sites Peter Stone 2008-09-15T19:40:04Z 2008-09-15T19:40:04Z <p>Good basic C questions: <a href="http://www.gowrikumar.com/c/index.html" rel="nofollow">http://www.gowrikumar.com/c/index.html</a>. These vary from "spot the bug" type questions to tricks that check your knowledge of the basic libraries and syntax, to exercises working through the logic of a snippet.</p> http://stackoverflow.com/questions/65879/should-i-use-an-initialization-vector-iv-along-with-my-encryption/65987#65987 1 Answer by Peter Stone for Should I use an initialization vector (IV) along with my encryption? Peter Stone 2008-09-15T19:31:25Z 2008-09-15T19:31:25Z <p>I found the writeup of HTTP Digest Auth (<a href="http://www.faqs.org/rfcs/rfc2617.html" rel="nofollow">RFC 2617</a>) very helpful in understanding the use and need for IVs / nonces.</p> http://stackoverflow.com/questions/64174/how-to-change-firefox-icon/64239#64239 0 Answer by Peter Stone for How to change Firefox icon? Peter Stone 2008-09-15T16:03:49Z 2008-09-15T16:03:49Z <p>I think you mean the system icon, not the site icon as someone else thought. On a Mac, you can hold-Click -> Get Info on Firefox.app, then drag or paste an image on top of the icon.</p> <p>I'm not sure about Windows, but I think you may need to compile from source to change it.</p> http://stackoverflow.com/questions/34896/when-is-it-best-to-sanitize-user-input/34984#34984 1 Answer by Peter Stone for When is it Best to Sanitize User Input? Peter Stone 2008-08-29T18:40:14Z 2008-08-29T18:40:14Z <p>Early is good, definitely before you try to parse it. Anything you're going to output later, or especially pass to other components (i.e., shell, SQL, etc) must be sanitized.</p> <p>But don't go overboard - for instance, passwords are hashed before you store them (right?). Hash functions can accept arbitrary binary data. And you'll never print out a password (right?). So don't parse passwords - and don't sanitize them.</p> <p>Also, make sure that you're doing the sanitizing from a trusted process - JavaScript/anything client-side is worse than useless security/integrity-wise. (It might provide a better user experience to fail early, though - just do it both places.)</p> http://stackoverflow.com/questions/31173/ubiquity-hack/33548#33548 2 Answer by Peter Stone for Ubiquity Hack Peter Stone 2008-08-28T22:24:28Z 2008-08-28T22:24:28Z <p>"translate this" and "edit-page". I think I'd find the Google Apps features useful if they supported hosted domains.</p> http://stackoverflow.com/questions/33471/subversion-fail-update-when-there-are-conflicts/33504#33504 1 Answer by Peter Stone for Subversion: Fail update when there are conflicts? Peter Stone 2008-08-28T22:01:21Z 2008-08-28T22:01:21Z <p>@jsight: TortoiseSVN is great, but I primarily develop in a *NIX environment, without X. So I'm usually using (restricted to) the command line.</p> <p>In re your script suggestion, that's what I'm working on now - which is why I'm annoyed that I can't just check $?. Right now I'm skipping the "output to a file" and using a pipe, but otherwise exactly what you describe.</p> http://stackoverflow.com/questions/32570/how-to-make-pretty-urls-work-in-php-hosted-in-iis/32911#32911 0 Answer by Peter Stone for How to make 'pretty urls' work in php hosted in IIS? Peter Stone 2008-08-28T17:52:46Z 2008-08-28T17:52:46Z <p>We use the free version of <a href="http://www.isapirewrite.com/" rel="nofollow">ISAPI_Rewrite</a>. It uses similar syntax to mod_rewrite, so if you're familiar with that you may have an easier time getting started.</p> <p>There used to be a (syntax-compatible) port of mod_rewrite for IIS, but I can't find it now.</p> http://stackoverflow.com/questions/1139934/encoding-json-for-jquery-calendar/1139981#1139981 Comment by Peter Stone on Encoding JSON for jQuery Calendar Peter Stone 2009-07-16T21:20:31Z 2009-07-16T21:20:31Z Take the &quot;echo json_encode($rows)&quot; out of the while loop. so: &quot;while (fetch_array) { $rows[] = array(); } echo json_encode....&quot; You want to build up the array in your loop, then json_encode the whole thing afterwards. http://stackoverflow.com/questions/708005/how-does-apache-determine-the-fqdn/708088#708088 Comment by Peter Stone on How does Apache determine the FQDN? Peter Stone 2009-04-02T03:22:26Z 2009-04-02T03:22:26Z OK, that is in fact what it means - the main site config is parsed like any other vhost in server/vhost.c: &quot;if (!s-&gt;server_hostname) { s-&gt;server_hostname = ap_get_local_host(p); }&quot; (ap_get_local_host prints the error). I guess it's just a slightly confusing error message. http://stackoverflow.com/questions/708005/how-does-apache-determine-the-fqdn/708088#708088 Comment by Peter Stone on How does Apache determine the FQDN? Peter Stone 2009-04-02T03:06:10Z 2009-04-02T03:06:10Z @guns see my original post - &quot;dig -x (my ip) returns (hostname)&quot;. <code>dig -x</code> returns the PTR. http://stackoverflow.com/questions/708005/how-does-apache-determine-the-fqdn/708088#708088 Comment by Peter Stone on How does Apache determine the FQDN? Peter Stone 2009-04-02T02:52:54Z 2009-04-02T02:52:54Z Hey, you're right - I didn't and that fixes it. So then does &quot;reliably determine the fqdn&quot; really mean &quot;find a default/global ServerName in my config file&quot;? http://stackoverflow.com/questions/420974/what-is-the-fastest-way-to-transfer-files-between-linux-and-windows/420980#420980 Comment by Peter Stone on What is the fastest way to transfer files between Linux and Windows? Peter Stone 2009-01-07T17:26:06Z 2009-01-07T17:26:06Z Yeah, if you want to use the network, rsync is the way to go. Otherwise, sneakernet's probably faster... http://stackoverflow.com/questions/418154/can-rss-readers-follow-redirects-if-the-url-of-the-feed-changes/418167#418167 Comment by Peter Stone on Can RSS readers follow redirects if the url of the feed changes? Peter Stone 2009-01-06T23:28:24Z 2009-01-06T23:28:24Z Sure, a compliant library will <i>follow</i> the redirect, but the app itself needs to 1) know about the redirect, and 2) update its record of the URL. I think the issue here is properly handling the difference between 301 and 307, not just following the redirect when fetching the URL. http://stackoverflow.com/questions/418160/benefits-of-programming-doing-versus-reading-blogs-thinking Comment by Peter Stone on Benefits of programming (doing) versus reading blogs (thinking?) Peter Stone 2009-01-06T23:23:37Z 2009-01-06T23:23:37Z You mean very <i>small</i> signal-to-noise ratio, right? :-) http://stackoverflow.com/questions/414809/how-do-i-determine-whether-a-page-is-secure-via-javascript/414838#414838 Comment by Peter Stone on How do I determine whether a page is secure via JavaScript? Peter Stone 2009-01-05T23:13:40Z 2009-01-05T23:13:40Z Yeah, if you need SSL for security, check server-side (Apache sets the HTTPS environment variable if SSL is in use). If you just need to know which it is (i.e., use secure Google Analytics to avoid &quot;partial security&quot; warnings), this will be okay. http://stackoverflow.com/questions/238384/using-activex-objects-in-javascript-in-linux-in-firefox/239569#239569 Comment by Peter Stone on Using ActiveX objects in Javascript in Linux (in Firefox) Peter Stone 2008-11-07T20:24:57Z 2008-11-07T20:24:57Z You could try installing the Windows version of Firefox in Wine. Linux Firefox, though, you'd have to recompile, with some work to add the Wine check. I don't think you can do this for client code. http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/112186#112186 Comment by Peter Stone on What is the worst interviewee answer? Peter Stone 2008-10-28T23:18:33Z 2008-10-28T23:18:33Z I've always said that I'm a programmer because I hate computers... http://stackoverflow.com/questions/227117/file-transfer-protocol-options/227167#227167 Comment by Peter Stone on File Transfer Protocol options? Peter Stone 2008-10-24T16:18:45Z 2008-10-24T16:18:45Z Look at these options to get started: -avzP --stats --bwlimit http://stackoverflow.com/questions/230718/redirection-and-vim/230731#230731 Comment by Peter Stone on redirection and vim Peter Stone 2008-10-23T18:11:38Z 2008-10-23T18:11:38Z If you have an alias on <code>vim</code> (to a custom installation, maybe), <code>vimdiff</code> will use the site-wide vim. You can use <code>vim -d</code> (or set up another alias) to get &quot;diff&quot; behavior with your custom vim.