User Pat - Stack Overflowmost recent 30 from stackoverflow.com2010-03-21T12:39:53Zhttp://stackoverflow.com/feeds/user/238http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2373154/jquery-1-4-vs-yui3-which-one-to-choose/2471195#24711950Answer by Pat for jQuery 1.4 vs YUI3, which one to choose?Pathttp://stackoverflow.com/users/2382010-03-18T15:46:51Z2010-03-18T15:46:51Z<p>Since you are already using jQuery 1.3 (as your comment states) upgrading to 1.4 seems like the sensible thing to do, you will get a speed boost and hardly have to change any code.</p>
<p>Unless you have a specific reason to change, no need to rewrite the code using a different library.</p>
http://stackoverflow.com/questions/2382089/optimal-database-table-optimization-method/2386526#23865260Answer by Pat for Optimal database table optimization methodPathttp://stackoverflow.com/users/2382010-03-05T12:08:20Z2010-03-05T12:08:20Z<p>I am no expert but it seems that partitioning on the column "a" would speed up your selects but partitioning on the date (as all the other answers are suggesting) would speed up the deleting (drop the table) but would be useless for your select.</p>
<p>It seems, both cases would enhance the insert performance.</p>
<p>Any expert care to weight in on the issue ?
Is it possible / useful to partition on both fields ?</p>
http://stackoverflow.com/questions/2336086/javascript-to-compare-two-dates-from-strings-begin-end/2336207#23362070Answer by Pat for Javascript to compare two dates, from strings, begin <= endPathttp://stackoverflow.com/users/2382010-02-25T17:38:05Z2010-03-01T20:52:58Z<p>Quick 'n dirty :</p>
<pre><code>function is_valid (start , end) {
return start.split('/').reverse().join('') <= end.split('/').reverse().join('') ;
}
</code></pre>
<p>That is, split the date into components, reverse the order join them again and do a string comparison.</p>
<p>Edit: As noted in the comment, of course this won't work if your month/days smaller than 10 are not zero padded.</p>
http://stackoverflow.com/questions/33923/what-is-tail-recursion/34105#341051Answer by Pat for What is tail-recursion?Pathttp://stackoverflow.com/users/2382008-08-29T07:21:31Z2010-02-16T17:34:13Z<p>The jargon file has this to say about the definition of tail recursion:</p>
<p><strong>tail recursion</strong> /n./</p>
<p>If you aren't sick of it already, see <a href="#34105" rel="nofollow">tail recursion</a>. </p>
http://stackoverflow.com/questions/254535/stunning-graphic-effects-with-javascript/254580#25458022Answer by Pat for Stunning graphic effects with javascriptPathttp://stackoverflow.com/users/2382008-10-31T19:08:14Z2010-02-10T10:28:25Z<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>
<p>Edit2:
And someone doing it without javascript at all (just css)</p>
<p><a href="http://www.romancortes.com/ficheros/meninas.html" rel="nofollow">CSS 3D menias</a></p>
http://stackoverflow.com/questions/2178733/getelementbyidarrayx/2178852#2178852-1Answer by Pat for getElementById(array[x])?Pathttp://stackoverflow.com/users/2382010-02-01T17:55:21Z2010-02-01T18:05:55Z<p>First you need to fix your loop!</p>
<p>Are you sure the id in question exist and contain numbers?</p>
<p>Can you confirm by splitting the expression into multiple lines and see where it fails, is it the div that does not exist or its content cannot be parsed as a number?</p>
http://stackoverflow.com/questions/2138600/jquery-update-a-a-number-within-a-div/2138762#21387621Answer by Pat for jQuery update a a number within a divPathttp://stackoverflow.com/users/2382010-01-26T10:30:08Z2010-01-26T11:04:13Z<p>This is an opportunity to use new jQuery 1.4 hotness :-)</p>
<pre><code>$("#downloaded").text( function (i,current) { return parseInt(current)+1;} ) ; //Works with jQuery1.4 and above
</code></pre>
<p>If you give a function to .text() the second parameter is the current value, so you can use it in the function as you wish.</p>
<p>Edit: You can aslo use <strong>return +current+1;</strong> instead of <strong>return parseInt(current)+1;</strong> so that you get 0+1=1 instead of NaN+1=NaN in case you start with an empty div.</p>
http://stackoverflow.com/questions/22088/why-do-the-others-think-you-can-fix-their-computer/22119#221199Answer by Pat for Why do 'the others' think you can fix their computer?Pathttp://stackoverflow.com/users/2382008-08-22T11:38:36Z2010-01-12T15:16:04Z<p>Eventually if I wear <a href="http://www.thinkgeek.com/tshirts/itdepartment/388b/" rel="nofollow">this</a> often enough , people get the hint :-)</p>
<p><img src="http://www.thinkgeek.com/images/products/front/will-not-fix.jpg"></p>
http://stackoverflow.com/questions/77226/how-can-i-capitalize-the-first-letter-of-each-word-in-a-string-in-perl/163826#1638269Answer by Pat for How can I capitalize the first letter of each word in a string in Perl?Pathttp://stackoverflow.com/users/2382008-10-02T18:27:06Z2010-01-05T12:53:24Z<p>As @brian is mentioning in the comments the currently accepted answer by @piCookie is wrong!</p>
<pre><code>$_="what's the wrong answer?";
s/\b(\w)/\U$1/g
print;
</code></pre>
<p>This will print "What'S The Wrong Answer?" notice the wrongly capitalized S </p>
<p>As the <a href="http://faq.perl.org/perlfaq4.html#How_do_I_capitalize_" rel="nofollow">FAQ</a> says you are probably better off using </p>
<pre><code>s/([\w']+)/\u\L$1/g
</code></pre>
<p>or <a href="http://search.cpan.org/perldoc?Text%3A%3AAutoformat" rel="nofollow">Text::Autoformat</a></p>
http://stackoverflow.com/questions/58640/great-programming-quotes/58854#58854650Answer by Pat for Great programming quotesPathttp://stackoverflow.com/users/2382008-09-12T12:48:39Z2009-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#17100343Answer by Pat for How can I install Perl's DBI module on Ubuntu?Pathttp://stackoverflow.com/users/2382009-11-10T18:13:53Z2009-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#17099421Answer by Pat for development symbian application for cellulars that has GPS Pathttp://stackoverflow.com/users/2382009-11-10T18:01:12Z2009-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#2895411Answer by Pat for Best javascript compressorPathttp://stackoverflow.com/users/2382008-08-26T19:48:34Z2009-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#15737182Answer by Pat for Quickest way to build a simple Symbian app?Pathttp://stackoverflow.com/users/2382009-10-15T17:00:27Z2009-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#3229019Answer by Pat for Regex Testing ToolsPathttp://stackoverflow.com/users/2382008-08-28T13:37:34Z2009-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-selector9Is there a case insensitive jQuery :contains selector?Pathttp://stackoverflow.com/users/2382008-10-09T14:30:19Z2009-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#18755721Answer by Pat for Is there a case insensitive jQuery :contains selector?Pathttp://stackoverflow.com/users/2382008-10-09T14:37:24Z2009-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())>=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#130142211Answer by Pat for How can I format a number to three decimal places with Perl?Pathttp://stackoverflow.com/users/2382009-08-19T17:23:48Z2009-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#13022390Answer by Pat for jquery ajax call to a remote php file failing Pathttp://stackoverflow.com/users/2382009-08-19T19:47:39Z2009-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#866820Answer by Pat for How do you create objects in Perl?Pathttp://stackoverflow.com/users/2382008-08-12T10:54:25Z2009-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' => (is => 'rw', isa => 'Int');
has 'y' => (is => 'rw', isa => 'Int');
sub clear {
my $self = shift;
$self->x(0);
$self->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->new({x=>10 , y=>20}); # Free constructor
$p->x(15); # Free setter
print $p->x(); # Free getter
$p->clear();
$p->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-javascript8Detecting font in javascriptPathttp://stackoverflow.com/users/2382008-08-03T21:42:37Z2009-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#297240Answer by Pat for Detecting font in javascriptPathttp://stackoverflow.com/users/2382008-08-27T08:17:05Z2009-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#259916Answer by Pat for How do you debug PHP scripts?Pathttp://stackoverflow.com/users/2382008-08-05T17:22:09Z2009-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#6522741Answer by Pat for Understanding PHP's & operatorPathttp://stackoverflow.com/users/2382009-03-16T21:50:16Z2009-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 & 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-stackoverflow23Greasemonkey users: Here is your vote/reputation info plug-in for StackOverflow [closed]Pathttp://stackoverflow.com/users/2382008-09-17T17:14:18Z2009-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#62150Answer by Pat for Split a string ignoring quoted sectionsPathttp://stackoverflow.com/users/2382008-08-08T18:12:49Z2009-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#6241302Answer by Pat for Great programming quotesPathttp://stackoverflow.com/users/2382009-03-08T19:25:25Z2009-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#7099910Answer by Pat for What's happening with Perl 6?Pathttp://stackoverflow.com/users/2382008-09-16T10:22:13Z2009-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#6486813Answer by Pat for Why don't Django admin "Today" and "Now" buttons show up in Safari?Pathttp://stackoverflow.com/users/2382009-03-15T22:25:08Z2009-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#6442729Answer by Pat for How do you create a function that returns a function in your language of choice?Pathttp://stackoverflow.com/users/2382009-03-13T19:31:37Z2009-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->(42);
</code></pre>
http://stackoverflow.com/questions/2443387/how-can-i-count-paragraphs-in-text-file-using-perl/2444613#2444613Comment by Pat on How can I count paragraphs in text file using Perl?Pathttp://stackoverflow.com/users/2382010-03-15T14:36:16Z2010-03-15T14:36:16ZBecause it is bad practice to use unquoted literals.http://stackoverflow.com/questions/2382089/optimal-database-table-optimization-method/2387997#2387997Comment by Pat on Optimal database table optimization methodPathttp://stackoverflow.com/users/2382010-03-05T16:57:30Z2010-03-05T16:57:30ZDoes PostgreSQL support hash partitioning ?http://stackoverflow.com/questions/2382089/optimal-database-table-optimization-method/2382109#2382109Comment by Pat on Optimal database table optimization methodPathttp://stackoverflow.com/users/2382010-03-05T16:56:15Z2010-03-05T16:56:15ZSo if I understand correctly, the partitioning you suggest will optimize delete and insert, it will not make the select worse because it is already bad. But the requirement is to speed "inserts and selects" instead of speed "deletes and inserts". Or am I missing something in your answer?http://stackoverflow.com/questions/2382089/optimal-database-table-optimization-method/2382109#2382109Comment by Pat on Optimal database table optimization methodPathttp://stackoverflow.com/users/2382010-03-05T12:04:37Z2010-03-05T12:04:37Zbut partitioning the table by Year/Month optimizes for the delete instead of the insert / select, right ?http://stackoverflow.com/questions/2382089/optimal-database-table-optimization-method/2382111#2382111Comment by Pat on Optimal database table optimization methodPathttp://stackoverflow.com/users/2382010-03-05T12:01:34Z2010-03-05T12:01:34ZThat's great for the delete but according to the question "The key requirement is to speed up INSERT and SELECT statements", wouldn't partitioning on column a be better in this case ?http://stackoverflow.com/questions/2382089/optimal-database-table-optimization-method/2382251#2382251Comment by Pat on Optimal database table optimization methodPathttp://stackoverflow.com/users/2382010-03-05T12:00:39Z2010-03-05T12:00:39ZThat's great for the delete but according to the question "The key requirement is to speed up INSERT and SELECT statements", wouldn't partitioning on column a be better in this case ?http://stackoverflow.com/questions/2336086/javascript-to-compare-two-dates-from-strings-begin-end/2336207#2336207Comment by Pat on Javascript to compare two dates, from strings, begin <= endPathttp://stackoverflow.com/users/2382010-02-25T20:05:28Z2010-02-25T20:05:28Zif it does not have padding then it won't work ... to me indicating dd instead of d and mm instead of m means 2 digits but I guess that's not necessarily the case.http://stackoverflow.com/questions/16815/accessing-html-parameter-in-php/16944#16944Comment by Pat on Accessing html parameter in PHPPathttp://stackoverflow.com/users/2382010-01-27T13:30:37Z2010-01-27T13:30:37ZReally? why is it important? If someone can fake a GET they can fake a POST as easily. I think it does not mater if your variables come from GET or POST you should treat both as equally untrusted regardless.http://stackoverflow.com/questions/273789/is-there-a-version-of-javascripts-string-indexof-that-allows-for-regular-expre/274094#274094Comment by Pat on Is there a version of JavaScript's String.indexOf() that allows for regular expressions?Pathttp://stackoverflow.com/users/2382009-11-01T18:27:27Z2009-11-01T18:27:27ZI 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-javascriptComment by Pat on What's the fastest way to iterate over an object's properties in Javascript?Pathttp://stackoverflow.com/users/2382009-10-15T16:47:23Z2009-10-15T16:47:23ZThis 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#196950Comment by Pat on How to ensure user submit only english textPathttp://stackoverflow.com/users/2382009-07-19T17:15:36Z2009-07-19T17:15:36Z@Tyson, Great, another advantage I hadn't thought about ;-)http://stackoverflow.com/questions/845/detecting-font-in-javascript/887291#887291Comment by Pat on Detecting font in javascriptPathttp://stackoverflow.com/users/2382009-05-20T21:38:54Z2009-05-20T21:38:54ZThanks for the warning.http://stackoverflow.com/questions/644714/what-regex-can-match-sequences-of-the-same-character/644723#644723Comment by Pat on What regex can match sequences of the same character?Pathttp://stackoverflow.com/users/2382009-03-15T22:34:30Z2009-03-15T22:34:30ZAlso 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#341883Comment by Pat on Javascript onchange functioning in a textarea (Symbian browser)Pathttp://stackoverflow.com/users/2382009-03-15T13:44:55Z2009-03-15T13:44:55ZI 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-browserComment by Pat on Javascript onchange functioning in a textarea (Symbian browser)Pathttp://stackoverflow.com/users/2382009-03-15T13:41:43Z2009-03-15T13:41:43ZDid the accepted answer work for you? I could not get it to work even for the simplest textareas!