User Pat - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T01:44:47Z http://stackoverflow.com/feeds/user/238 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/58640/great-programming-quotes/58854#58854 596 Answer by Pat for Great programming quotes Pat 2008-09-12T12:48:39Z 2009-12-09T14:47:28Z <blockquote> <p>The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.</p> </blockquote> <p>Tom Cargill</p> http://stackoverflow.com/questions/1707117/how-can-i-install-perls-dbi-module-on-ubuntu/1710034#1710034 3 Answer by Pat for How can I install Perl's DBI module on Ubuntu? Pat 2009-11-10T18:13:53Z 2009-11-10T18:13:53Z <p>For Ubuntu the command would be </p> <pre><code>sudo aptitude install libdbi-perl </code></pre> http://stackoverflow.com/questions/1708277/development-symbian-application-for-cellulars-that-has-gps/1709942#1709942 1 Answer by Pat for development symbian application for cellulars that has GPS Pat 2009-11-10T18:01:12Z 2009-11-10T18:01:12Z <p>You need to develop for Symbian S60 V3 and newer.</p> <p>Here is a list of <a href="http://www.gsmarena.com/nokia-phones-f-1-11.php" rel="nofollow">phones with GPS receiver</a> that will be supported</p> http://stackoverflow.com/questions/28932/best-javascript-compressor/28954#28954 10 Answer by Pat for Best javascript compressor Pat 2008-08-26T19:48:34Z 2009-11-08T10:00:04Z <p>Google released <a href="http://code.google.com/p/closure-compiler/" rel="nofollow"><strong>Closure Compiler</strong></a> which seems to be generating the smallest files so far as seen <a href="http://blog.feedly.com/2009/11/06/google-closure-vs-yui-min/" rel="nofollow">here</a> and <a href="http://news.ycombinator.com/item?id=924426" rel="nofollow">here</a></p> <p>Previous to that the various options <a href="http://www.julienlecomte.net/blog/2007/08/13/" rel="nofollow"> were as follow </a></p> <p>Basically <a href="http://dean.edwards.name/packer/" rel="nofollow">Packer</a> does a better job at initial compression , but if you are going to gzip the files before sending on the wire (which you should be doing) <a href="http://www.julienlecomte.net/yuicompressor/" rel="nofollow">YUI Compressor</a> gets the smallest final size.</p> <p>The tests were done on jQuery code btw.</p> <ul> <li>Original jQuery library 62,885 bytes , 19,758 bytes after gzip</li> <li>jQuery minified with JSMin 36,391 bytes , 11,541 bytes after gzip</li> <li>jQuery minified with Packer 21,557 bytes , 11,119 bytes after gzip</li> <li>jQuery minified with the YUI Compressor 31,822 bytes , 10,818 bytes after gzip</li> </ul> <p>@<a href="http://stackoverflow.com/users/2434/daniel-james">daniel james</a> mentions in the comment <a href="http://compressorrater.thruhere.net/" rel="nofollow">compressorrater</a> which shows Packer leading the chart in best compression, so I guess ymmv </p> http://stackoverflow.com/questions/1542188/quickest-way-to-build-a-simple-symbian-app/1573718#1573718 2 Answer by Pat for Quickest way to build a simple Symbian app? Pat 2009-10-15T17:00:27Z 2009-10-25T10:56:57Z <p>For your device, definitely use <a href="http://opensource.nokia.com/projects/pythonfors60/" rel="nofollow"><strong>Python for S60</strong></a>. It is much easier to start with than Symbian's C++ SDK and in case you ever need more low level functionality than python gives you, you can write small modules in c++ and use them in your Python program. </p> <p>For a simple application like the one you are describing, Python will do just fine. You don't even need any of Nokia's IDEs / tools on the PC, you can just write the code in any text editor, copy it to the phone and test it live.</p> <p>As others have mentioned, other options include:</p> <ul> <li><strong>Symbian C++ SDK</strong> : As you have discovered the tools and not the most intuitive to work with, development is not straight forward either.</li> <li><strong>Nokia's WRT</strong> : Using javascript/css/html, but it is not available for your phone.</li> <li><strong>Qt</strong> : Not available for your phone.</li> <li><strong>Java Me</strong> : Probably your second best option, your code will be slightly larger but more protable. The tools are not as straight forward as with Python, but definitely not as complicated as with Symbian.</li> </ul> http://stackoverflow.com/questions/32282/regex-testing-tools/32290#32290 18 Answer by Pat for Regex Testing Tools Pat 2008-08-28T13:37:34Z 2009-09-25T17:10:25Z <p>According to Jeff's <a href="http://www.codinghorror.com/blog/archives/001016.html" rel="nofollow">post</a>:</p> <p><a href="http://www.regexbuddy.com/" rel="nofollow">RegexBuddy</a> recommended by most, costs US$ 39.95</p> <p>If you don't want to pay :</p> <ul> <li><a href="http://regexpal.com/" rel="nofollow">http://regexpal.com/</a> Online free tool </li> <li><a href="http://www.weitz.de/regex-coach/" rel="nofollow">The Regex Coach</a> Free tool </li> <li><a href="http://www.perlfect.com/articles/regextutor.shtml" rel="nofollow">Perl Regex Tutorial</a></li> </ul> <p>Other tools recommended by SO users include:</p> <ul> <li><a href="http://www.rubular.com/" rel="nofollow">http://www.rubular.com/</a> Online free tool (@<a href="#32298" rel="nofollow">Neall</a>)</li> <li><a href="http://www.txt2re.com/" rel="nofollow">http://www.txt2re.com/</a> Online free tool to generate regular expressions for multiple language (@<a href="http://beta.stackoverflow.com/questions/4736/learning-regular-expressions#4763" rel="nofollow">palmsey</a> another thread)</li> <li>The Added Bytes <a href="http://www.addedbytes.com/cheat-sheets/regular-expressions-cheat-sheet/" rel="nofollow">Regular Expressions Cheat Sheet</a> (@<a href="http://beta.stackoverflow.com/questions/4736/learning-regular-expressions#4739" rel="nofollow">GateKiller</a> another thread)</li> <li><a href="http://regexhero.net/" rel="nofollow">Regex Hero</a> - The Online .NET Regular Expression Tester</li> </ul> http://stackoverflow.com/questions/187537/is-there-a-case-insensitive-jquery-contains-selector 8 Is there a case insensitive jQuery :contains selector? Pat 2008-10-09T14:30:19Z 2009-09-14T11:03:07Z <p>Is there a case insensitive version of the <a href="http://docs.jquery.com/Selectors/contains" rel="nofollow">:contains</a> jQuery selector or should I do the work manually by looping over all elements and comparing their .text() to my string?</p> http://stackoverflow.com/questions/187537/is-there-a-case-insensitive-jquery-contains-selector/187557#187557 19 Answer by Pat for Is there a case insensitive jQuery :contains selector? Pat 2008-10-09T14:37:24Z 2009-09-14T11:03:07Z <p>What I ended up doing is (after some googling) :</p> <pre><code>jQuery.extend( jQuery.expr[':'], { Contains : "jQuery(a).text().toUpperCase().indexOf(m[3].toUpperCase())&gt;=0" }); </code></pre> <p>This will extend jquery to have a :Contains selector that is case insensitive, the :contains selector remains unchanged.</p> <p>Edit: Apparently accessing the DOM directly by using</p> <pre><code>(a.textContent || a.innerText || "") </code></pre> <p>instead of </p> <pre><code>jQuery(a).text() </code></pre> <p>In the previous expression speeds it up considerably so try at your own risk. (see @John 's question)</p> http://stackoverflow.com/questions/1301266/how-can-i-format-a-number-to-three-decimal-places-with-perl/1301422#1301422 11 Answer by Pat for How can I format a number to three decimal places with Perl? Pat 2009-08-19T17:23:48Z 2009-08-21T16:56:52Z <p>Here is another solution just for the fun of it:</p> <p>In Perl substr() can be an lvalue which can help in your case.</p> <pre><code>substr ($num , -3 , 0) = '.'; </code></pre> <p>will add a dot before the last three digits.</p> <p>You can also use the four arguments version of substr (as pointed in the comments) to get the same effect:</p> <pre><code>substr( $num, -3, 0, '.' ); </code></pre> <p>I would hope it is more elegant / readable than the regexp solution, but I am sure it will throw off anyone not used to substr() being used as an lvalue.</p> http://stackoverflow.com/questions/1302061/jquery-ajax-call-to-a-remote-php-file-failing/1302239#1302239 0 Answer by Pat for jquery ajax call to a remote php file failing Pat 2009-08-19T19:47:39Z 2009-08-19T19:47:39Z <p>If you want to leave the type, send you document with the correct content type by starting the php with:</p> <pre><code>header ("content-type: text/xml"); </code></pre> http://stackoverflow.com/questions/7885/how-do-you-create-objects-in-perl/8668#8668 19 Answer by Pat for How do you create objects in Perl? Pat 2008-08-12T10:54:25Z 2009-07-15T04:48:37Z <p>You should definitely take a look at <a href="http://search.cpan.org/perldoc?Moose" rel="nofollow"><code>Moose</code></a>.</p> <pre><code>package Point; use Moose; # automatically turns on strict and warnings has 'x' =&gt; (is =&gt; 'rw', isa =&gt; 'Int'); has 'y' =&gt; (is =&gt; 'rw', isa =&gt; 'Int'); sub clear { my $self = shift; $self-&gt;x(0); $self-&gt;y(0); } </code></pre> <p>Moose gives you (among other things) a constructor, accessor methods, and type checking for free! </p> <p>So in your code you can:</p> <pre><code>my $p = Point-&gt;new({x=&gt;10 , y=&gt;20}); # Free constructor $p-&gt;x(15); # Free setter print $p-&gt;x(); # Free getter $p-&gt;clear(); $p-&gt;x(15.5); # FAILS! Free type check. </code></pre> <p>A good starting point is <a href="http://search.cpan.org/perldoc?Moose::Manual" rel="nofollow"><code>Moose::Manual</code></a> and <a href="http://search.cpan.org/perldoc?Moose::Cookbook" rel="nofollow"><code>Moose::Cookbook</code></a></p> <p>If you just need the basic stuff you can also use <a href="http://search.cpan.org/perldoc?Mouse" rel="nofollow"><code>Mouse</code></a> which is not as complete, but without most of the compile time penalty.</p> http://stackoverflow.com/questions/845/detecting-font-in-javascript 7 Detecting font in javascript Pat 2008-08-03T21:42:37Z 2009-05-20T21:40:32Z <p>Suppose I have the following css rule in my html</p> <pre>body { font-family:Calibri,Trebuchet MS,Helvetica,sans-serif; }</pre> <p>How can I detect which one of the defined fonts was used in the user's browser?</p> <p>Edit for people wondering why I want to do this: The font I am detecting contains glyphs not available in other fonts and when the user does not have it I want to display a link asking the user to download that font so they can use my web app.</p> <p>Currently I am displaying the download font link for all users, now I can only display it for people who do not have the correct font installed.</p> http://stackoverflow.com/questions/845/detecting-font-in-javascript/29724#29724 0 Answer by Pat for Detecting font in javascript Pat 2008-08-27T08:17:05Z 2009-05-20T21:40:32Z <p>@<a href="#29025" rel="nofollow">runeh</a></p> <p>You are right! Opera and Safari give the font used, while Firefox and IE give the rule used (which contains all the fonts).</p> <p>However on my machine I noticed that Opera returns Arial While Safari returns Helvetica! Maybe Safari for windows does not use the system fonts, but its own.</p> <p>Edit: See <a href="http://stackoverflow.com/questions/845/detecting-font-in-javascript/887291#887291">philoye</a>'answer regarding Safari's behavior.</p> http://stackoverflow.com/questions/888/how-do-you-debug-php-scripts/2599#2599 15 Answer by Pat for How do you debug PHP scripts? Pat 2008-08-05T17:22:09Z 2009-05-17T07:16:32Z <p>You can use <a href="http://www.firephp.org/" rel="nofollow">Firephp</a> an add-on to firebug to debug php in the same environment as javascript.</p> <p>I also use <a href="http://xdebug.org/" rel="nofollow">Xdebug</a> mentioned earlier for profiling php.</p> http://stackoverflow.com/questions/600202/understanding-phps-operator/652274#652274 1 Answer by Pat for Understanding PHP's & operator Pat 2009-03-16T21:50:16Z 2009-05-04T09:41:56Z <p>I know your question is about understanding the bitwise operator and the accepted answer explains it well. But for the example you give, I cannot help but recommending you use the modulo operator instead:</p> <pre><code>($var % 2) instead of ($var &amp; 1) </code></pre> <p>Because it makes the intent clear that you are checking that the number is odd (not divisible by two), and it is more generic, so you can use ($var % 3) the same way and deduce how it works for any N. </p> http://stackoverflow.com/questions/85492/greasemonkey-users-here-is-your-vote-reputation-info-plug-in-for-stackoverflow 23 Greasemonkey users: Here is your vote/reputation info plug-in for StackOverflow [closed] Pat 2008-09-17T17:14:18Z 2009-05-02T23:01:13Z <p>I often wish my profile page on SO shows me the diff in votes for my questions / answers since last time I checked.</p> <p>Since the SO team has more important things to worry about I decided to add this myself using a greasemonkey script: <a href="http://userscripts.org/scripts/source/33891.user.js" rel="nofollow">Stack Overflow: New Votes</a>.</p> <p>After you install the script , the first time you visit your user page it remembers how many votes each of your questions/answers has.<br /> Upon every subsequent visit, if any of your questions has new up votes or down votes they are displayed next to the number [(+2) 14 votes] instead of just [14 votes].<br /> The data is saved locally and updated every time you visit you profile page.</p> <p>I have only tested with Firefox3 on WinXP but it should work across OSes and FF versions.</p> <p>I hope you find this useful, if you have any problems bugs / feature requests let me know in the answers. </p> <p>Cheers</p> <p>Edit: Now also shows the total reputation increase / decrease.</p> http://stackoverflow.com/questions/6209/split-a-string-ignoring-quoted-sections/6215#6215 0 Answer by Pat for Split a string ignoring quoted sections Pat 2008-08-08T18:12:49Z 2009-04-08T12:35:54Z <p>Of course using a CSV parser is better but just for the fun of it you could:</p> <pre><code>Loop on the string letter by letter. If current_letter == quote : toggle inside_quote variable. Else if (current_letter ==comma and not inside_quote) : push current_word into array and clear current_word. Else append the current_letter to current_word When the loop is done push the current_word into array </code></pre> http://stackoverflow.com/questions/58640/great-programming-quotes/624130#624130 2 Answer by Pat for Great programming quotes Pat 2009-03-08T19:25:25Z 2009-03-28T03:51:45Z <blockquote> <p>"A well-written program is its own heaven; a poorly-written program is its own hell."</p> </blockquote> <p>From the TAO Of Programming</p> <blockquote> <p>It's hard enough to find an error in your code when you're looking for it; it's even harder when you've assumed your code is error-free.</p> </blockquote> <p>Steve McConnell</p> http://stackoverflow.com/questions/66165/whats-happening-with-perl-6/70999#70999 9 Answer by Pat for What's happening with Perl 6? Pat 2008-09-16T10:22:13Z 2009-03-18T21:35:42Z <p>You should not forget that Perl 5 is being developed in parallel. <a href="http://perlbuzz.com/2007/12/perl-510-now-available.html" rel="nofollow">5.10</a> was out not so long ago with new features and additions to the language.</p> <p>Progress on Perl 6 is slow but steady, PUGS (Perl 6 over Haskell ) has been stalled for a while but Audrey might resume workingon it soon. In the mean while Rakudo (Perl 6 over parrot) is progressing well. Here is a post detailing <a href="http://perlgeek.de/blog-en/perl-5-to-6/22-state.writeback" rel="nofollow">various implementations progress</a></p> <p>Realistically I would not hold my breath for it but no matter how late it will be I think when it comes out it will still be relevant.</p> http://stackoverflow.com/questions/443920/why-dont-django-admin-today-and-now-buttons-show-up-in-safari/648681#648681 3 Answer by Pat for Why don't Django admin "Today" and "Now" buttons show up in Safari? Pat 2009-03-15T22:25:08Z 2009-03-15T22:25:08Z <p>I think you have to look at what is different between your firefox configuration and safary config</p> <p>Off the top of my head:</p> <ul> <li><p>One could be configured to use a proxy (messing with the trafic) the other not. Make sure the configuration is the same in both.</p></li> <li><p>Safari could have cached the error clear the cache before testing again.</p></li> <li><p>Try to access the gif files directly from the browser (by inputting the full url of the images) and run wireshark on the wire comparing both GET requests and responses. Something WILL be different that will help you to track the problem.</p></li> </ul> http://stackoverflow.com/questions/644246/how-do-you-create-a-function-that-returns-a-function-in-your-language-of-choice/644272#644272 9 Answer by Pat for How do you create a function that returns a function in your language of choice? Pat 2009-03-13T19:31:37Z 2009-03-13T20:13:07Z <h2>perl</h2> <pre><code>sub quadratic { my ($a, $b, $c) = @_; return sub { my ($x) = @_; return $a*($x*$x) + $b*$x + $c; } } my $f = quadratic (1, -79, 1601); print $f-&gt;(42); </code></pre> http://stackoverflow.com/questions/22836/how-do-i-perform-a-perl-substitution-on-a-string-while-keeping-the-original/24090#24090 8 Answer by Pat for How do I perform a Perl substitution on a string while keeping the original? Pat 2008-08-23T08:53:44Z 2009-01-28T20:30:17Z <p>Just a word of caution, John's answer correctly answers the question, but</p> <pre><code>($new = $original) =~ s/foo/bar/; </code></pre> <p>Is equivalent to</p> <pre><code>$newstring = $oldstring; $newstring =~ s/foo/bar/g; #Modify $newstring instead of $oldstring </code></pre> <p>Which is I think what you meant in the first place. Probably better edit the question and correct your sample code.</p> http://stackoverflow.com/questions/439927/how-does-map-interpret-its-first-argument-in-perl/440062#440062 4 Answer by Pat for How does "map" interpret its first argument in Perl? Pat 2009-01-13T17:59:31Z 2009-01-13T18:04:44Z <p>Adding to @Leon's correct answers to help you with your second question: </p> <p>from <a href="http://perldoc.perl.org/perlop.html#Symbolic-Unary-Operators" rel="nofollow">perlop</a></p> <blockquote> <p>Unary "+" has no effect whatsoever, even on strings. It is useful syntactically for separating a function name from a parenthesized expression that would otherwise be interpreted as the complete list of function arguments. </p> </blockquote> <p>You can use deparse to see how perl interprets each:</p> <pre><code>perl -MO=Deparse,-p -e "%h = map ($_ =&gt; 1), @a;" (((%h) = map($_, 1)), @a); </code></pre> <p>where as</p> <pre><code>perl -MO=Deparse,-p -e "%h = map +($_ =&gt; 1), @a;" ((%h) = map(($_, 1), @a)); </code></pre> <p>I hope this helps</p> http://stackoverflow.com/questions/54237/is-there-a-way-to-highlight-the-target-of-a-bookmark-www-site-com-page-htmboo/54326#54326 5 Answer by Pat for Is there a way to highlight the target of a bookmark? (www.site.com/page.htm#bookmark) ? Pat 2008-09-10T15:09:37Z 2009-01-08T18:23:40Z <p>In your css you need to define </p> <pre><code>a.highlight {border:1px solid red;} </code></pre> <p>or something similar</p> <p>Then using jQuery, </p> <pre><code>$(document).ready ( function () { //Work as soon as the DOM is ready for parsing var id = location.hash.substr(1); //Get the word after the hash from the url if (id) $('#'+id).addClass('highlight'); // add class highlight to element whose id is the word after the hash }); </code></pre> <p>To highlight the targets on mouse over also add:</p> <pre><code>$("a[href^='#']") .mouseover(function() { var id = $(this).attr('href').substr(1); $('#'+id).addClass('highlight'); }) .mouseout(function() { var id = $(this).attr('href').substr(1); $('#'+id).removeClass('highlight'); }); </code></pre> http://stackoverflow.com/questions/425189/howto-create-a-jquery-like-wrapper-function/425243#425243 1 Answer by Pat for Howto create a jquery-like $() wrapper function? Pat 2009-01-08T17:57:00Z 2009-01-08T18:02:17Z <p>I am not sure this is the best syntax to get what you want, but I suppose this is a trimmed down example ... Anyways here is a quick way to make it work</p> <pre><code>var arrayFunction = window.arrayFunction = function(array) { return new arrayFunction.fn.init(array); } arrayFunction.fn = arrayFunction.prototype = { init: function(array){ var a = array; return { someSpecialArrayFunction: function(){ alert (a.join(' - ') ); //Super cool custom stuff here. } }; }, } arrayFunction( [1, 2, 3] ).someSpecialArrayFunction(); </code></pre> http://stackoverflow.com/questions/254535/stunning-graphic-effects-with-javascript/254580#254580 22 Answer by Pat for Stunning graphic effects with javascript Pat 2008-10-31T19:08:14Z 2009-01-04T21:05:45Z <p>the javascript parallax is pretty interesting, here is a <a href="http://webdev.stephband.info/parallax.html" rel="nofollow">demo</a></p> <p>Edit: I just found a Firefox add-on that uses this effect for the new tab page.</p> <p><a href="https://addons.mozilla.org/en-US/firefox/addon/9882" rel="nofollow">Auto Dial 3D</a></p> http://stackoverflow.com/questions/334370/using-an-anchor-as-a-javascript-action-what-should-the-link-be/334801#334801 0 Answer by Pat for Using an anchor as a javascript action, what should the link be? Pat 2008-12-02T17:41:09Z 2008-12-02T17:41:09Z <p>Why not have the href point to a page explaining they have JavaScript turned off and they need to turn it on to get the missing functionality ?</p> <p>Since the link will only be followed when they have javascript turned off, let it be something informative!</p> <p>Also remember people sometimes middle click on such links and the OnClick event does not fire, so if you can get them a page that works without the need for javascript it would be ideal.</p> http://stackoverflow.com/questions/9009/why-does-the-perl-conditional-operator-not-do-what-i-expect 23 Why does the Perl conditional operator not do what I expect? Pat 2008-08-12T16:03:54Z 2008-11-25T14:39:20Z <p>This snippet of Perl code in my program is giving the wrong result.</p> <pre><code>$condition ? $a = 2 : $a = 3 ; print $a; </code></pre> <p>No matter what the value of $condition is, the output is always 3, how come?</p> <p>Edit: I wonder if Perl is alone in this regard. Does your favorite language suffer from this bug/feature ?</p> http://stackoverflow.com/questions/57034/jquery-and-java-applets/57047#57047 2 Answer by Pat for jQuery and Java applets Pat 2008-09-11T16:31:39Z 2008-11-22T03:24:56Z <p>For the first issue, how about trying</p> <pre><code>alert( $("#applet-id")[0].foo() ); </code></pre> <p>For the second issue here is a <a href="http://groups.google.com/group/jquery-dev/browse_thread/thread/c67483e58caacbfd" rel="nofollow">thread</a> with a possible workaround.</p> <p>Quoting the workaround</p> <blockquote> <pre><code>// Prevent memory leaks in IE // And prevent errors on refresh with events like mouseover in other browsers // Window isn't included so as not to unbind existing unload events jQuery(window).bind("unload", function() { jQuery("*").add(document).unbind(); }); </code></pre> </blockquote> <p>change that code to:</p> <blockquote> <pre><code>// Window isn't included so as not to unbind existing unload events jQuery(window).bind("unload", function() { jQuery("*:not('applet, object')").add(document).unbind(); }); </code></pre> </blockquote> http://stackoverflow.com/questions/23962/is-there-some-way-to-speed-up-recursion-by-remembering-child-nodes/25419#25419 0 Answer by Pat for Is there some way to speed up recursion by remembering child nodes? Pat 2008-08-24T22:49:49Z 2008-11-21T14:18:33Z <p>By the way Perl has a <a href="http://search.cpan.org/perldoc?Memoize" rel="nofollow">memoize</a> module that does this for any function in your code that you specify.</p> <pre><code># Compute Fibonacci numbers sub fib { my $n = shift; return $n if $n &lt; 2; fib($n-1) + fib($n-2); } </code></pre> <p>In order to memoize this function all you do is start your program with </p> <pre><code>use Memoize; memoize('fib'); # Rest of the fib function just like the original version. # Now fib is automagically much faster ;-) </code></pre> http://stackoverflow.com/questions/273789/is-there-a-version-of-javascripts-string-indexof-that-allows-for-regular-expre/274094#274094 Comment by Pat on Is there a version of JavaScript's String.indexOf() that allows for regular expressions? Pat 2009-11-01T18:27:27Z 2009-11-01T18:27:27Z I finally got time to benchmark the proposed solutions and yours came out on top so I am accepting it for now. http://stackoverflow.com/questions/1573593/whats-the-fastest-way-to-iterate-over-an-objects-properties-in-javascript Comment by Pat on What's the fastest way to iterate over an object's properties in Javascript? Pat 2009-10-15T16:47:23Z 2009-10-15T16:47:23Z This smells like misplaced/premature optimization... Are you sure this is the part of your code that needs optimization? http://stackoverflow.com/questions/196924/how-to-ensure-user-submit-only-english-text/196950#196950 Comment by Pat on How to ensure user submit only english text Pat 2009-07-19T17:15:36Z 2009-07-19T17:15:36Z @Tyson, Great, another advantage I hadn't thought about ;-) http://stackoverflow.com/questions/845/detecting-font-in-javascript/887291#887291 Comment by Pat on Detecting font in javascript Pat 2009-05-20T21:38:54Z 2009-05-20T21:38:54Z Thanks for the warning. http://stackoverflow.com/questions/644714/what-regex-can-match-sequences-of-the-same-character/644723#644723 Comment by Pat on What regex can match sequences of the same character? Pat 2009-03-15T22:34:30Z 2009-03-15T22:34:30Z Also it is better not to use pipes (or any other non default delimiters) for the regular expression unless you have a reason to. http://stackoverflow.com/questions/341744/javascript-onchange-functioning-in-a-textarea-symbian-browser/341883#341883 Comment by Pat on Javascript onchange functioning in a textarea (Symbian browser) Pat 2009-03-15T13:44:55Z 2009-03-15T13:44:55Z I can't get this to work even for the simplest textareas! can you update the answer with a working sample for a textarea? http://stackoverflow.com/questions/341744/javascript-onchange-functioning-in-a-textarea-symbian-browser Comment by Pat on Javascript onchange functioning in a textarea (Symbian browser) Pat 2009-03-15T13:41:43Z 2009-03-15T13:41:43Z Did the accepted answer work for you? I could not get it to work even for the simplest textareas! http://stackoverflow.com/questions/644246/how-do-you-create-a-function-that-returns-a-function-in-your-language-of-choice/644284#644284 Comment by Pat on How do you create a function that returns a function in your language of choice? Pat 2009-03-13T19:36:42Z 2009-03-13T19:36:42Z Which reminds me how much I LOATH javascript's create_function! http://stackoverflow.com/questions/54237/is-there-a-way-to-highlight-the-target-of-a-bookmark-www-site-com-page-htmboo/54326#54326 Comment by Pat on Is there a way to highlight the target of a bookmark? (www.site.com/page.htm#bookmark) ? Pat 2009-01-08T18:25:20Z 2009-01-08T18:25:20Z Thanks for the tip Ryan, fixed the code to work on ids instead of name attributes, so it is a bit cleaner now. http://stackoverflow.com/questions/7885/how-do-you-create-objects-in-perl/8668#8668 Comment by Pat on How do you create objects in Perl? Pat 2008-12-29T10:57:53Z 2008-12-29T10:57:53Z @Alexandr,thanks updated the answer. @melaos I have edited the answer to provide links http://stackoverflow.com/questions/301766/mutability-and-reference-of-php5-get-variables/302011#302011 Comment by Pat on Mutability and Reference of PHP5 GET Variables Pat 2008-11-19T18:22:13Z 2008-11-19T18:22:13Z @EoghanM you could have solved it 2 hours earlier if you had read my answer ;-) http://stackoverflow.com/questions/301766/mutability-and-reference-of-php5-get-variables/301783#301783 Comment by Pat on Mutability and Reference of PHP5 GET Variables Pat 2008-11-19T12:57:17Z 2008-11-19T12:57:17Z I suppose it depends on the exact version .... In the page I linked there are numerous (user) warnings about register_globals such as &quot;If you manipulate $user you'll manipulate $_SESSION['user'] as well&quot; which I figured is what the OP is suffering from http://stackoverflow.com/questions/296134/why-does-this-leak/296396#296396 Comment by Pat on Why does this leak? Pat 2008-11-17T19:17:18Z 2008-11-17T19:17:18Z Thanks John, problem is I do have a leak in my program and it seems Devel::LeakTrace::Fast is not going to be helpful since it it showing many false positives like this. http://stackoverflow.com/questions/296134/why-does-this-leak/296396#296396 Comment by Pat on Why does this leak? Pat 2008-11-17T18:51:10Z 2008-11-17T18:51:10Z ok but why does perl -MDevel::LeakTrace::Fast -e 'our @a = (1);' show no leaks ? but perl -MDevel::LeakTrace::Fast -e 'our @a = (1);our @b = (1);' ? http://stackoverflow.com/questions/273789/is-there-a-version-of-javascripts-string-indexof-that-allows-for-regular-expre/274680#274680 Comment by Pat on Is there a version of JavaScript's String.indexOf() that allows for regular expressions? Pat 2008-11-08T22:48:52Z 2008-11-08T22:48:52Z Form the mozilla page :-) I just took the code ad change two lines leaving all the edge cases. Since a couple of the other answers were updated to pass the tests, I will try benchmarking them and accept the most efficent. When I have time to revisit the issue.