User Ovid - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T03:19:53Zhttp://stackoverflow.com/feeds/user/8003http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/511820/select-count-is-slow-even-with-where-clause8"SELECT COUNT(*)" is slow, even with where clauseOvid2009-02-04T15:25:50Z2009-12-07T20:20:40Z
<p>I'm trying to figure out how to optimize a very slow query in MySQL (I didn't design this):</p>
<pre><code>SELECT COUNT(*) FROM change_event me WHERE change_event_id > '1212281603783391';
+----------+
| COUNT(*) |
+----------+
| 3224022 |
+----------+
1 row in set (1 min 0.16 sec)
</code></pre>
<p>Comparing that to a full count:</p>
<pre><code>select count(*) from change_event;
+----------+
| count(*) |
+----------+
| 6069102 |
+----------+
1 row in set (4.21 sec)
</code></pre>
<p>The explain statement doesn't help me here:</p>
<pre><code> explain SELECT COUNT(*) FROM change_event me WHERE change_event_id > '1212281603783391'\G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: me
type: range
possible_keys: PRIMARY
key: PRIMARY
key_len: 8
ref: NULL
rows: 4120213
Extra: Using where; Using index
1 row in set (0.00 sec)
</code></pre>
<p>OK, it still thinks it needs roughly 4 million entries to count, but I could count lines in a file faster than that! I don't understand why MySQL is taking this long.</p>
<p>Here's the table definition:</p>
<pre><code>CREATE TABLE `change_event` (
`change_event_id` bigint(20) NOT NULL default '0',
`timestamp` datetime NOT NULL,
`change_type` enum('create','update','delete','noop') default NULL,
`changed_object_type` enum('Brand','Broadcast','Episode','OnDemand') NOT NULL,
`changed_object_id` varchar(255) default NULL,
`changed_object_modified` datetime NOT NULL default '1000-01-01 00:00:00',
`modified` datetime NOT NULL default '1000-01-01 00:00:00',
`created` datetime NOT NULL default '1000-01-01 00:00:00',
`pid` char(15) default NULL,
`episode_pid` char(15) default NULL,
`import_id` int(11) NOT NULL,
`status` enum('success','failure') NOT NULL,
`xml_diff` text,
`node_digest` char(32) default NULL,
PRIMARY KEY (`change_event_id`),
KEY `idx_change_events_changed_object_id` (`changed_object_id`),
KEY `idx_change_events_episode_pid` (`episode_pid`),
KEY `fk_import_id` (`import_id`),
KEY `idx_change_event_timestamp_ce_id` (`timestamp`,`change_event_id`),
KEY `idx_change_event_status` (`status`),
CONSTRAINT `fk_change_event_import` FOREIGN KEY (`import_id`) REFERENCES `import` (`import_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
</code></pre>
<p>Version:</p>
<pre><code>$ mysql --version
mysql Ver 14.12 Distrib 5.0.37, for pc-solaris2.8 (i386) using readline 5.0
</code></pre>
<p>Is there something obvious I'm missing? (Yes, I've already tried "SELECT COUNT(change_event_id)", but there's no performance difference).</p>
http://stackoverflow.com/questions/91585/what-do-you-need-from-a-test-harness15What do you need from a test harness?Ovid2008-09-18T10:52:34Z2009-12-06T15:54:20Z
<p>I'm one of the people involved in the <a href="http://testanything.org/wiki/index.php/TAP_at_IETF:_Notes" rel="nofollow">Test Anything Protocol (TAP) IETF group</a> (if interested, feel free to join the mailing list). Many programming languages are starting to adopt TAP as their primary testing protocol and they want more from it than what we currently offer. As a result, we'd like to get feedback from people who have a background in xUnit, TestNG or any other testing framework/methodology.</p>
<p>Basically, aside from a simple pass/fail, what information do you need from a test harness? Just to give you some examples:</p>
<ul>
<li>Filename and line number (if applicable) </li>
<li>Start and end time</li>
<li>Diagnostic output such as the difference between what you got and what you expected.</li>
</ul>
<p>And so on ...</p>
http://stackoverflow.com/questions/1796906/cobol-migrations-strategies2COBOL Migrations Strategies?Ovid2009-11-25T13:28:13Z2009-11-27T19:30:44Z
<p>Has anyone here been involved in any projects designed to eliminate COBOL or mitigate the risk of COBOL (for example, writing in-house compilers or using COBOL to generate NetBeans, etc.)? If so, what tools/strategies were adopted? Were you successful? What would you do differently?</p>
<p>Anecdotal stories welcome. Just trying to understand the approaches people use and the complexity of the problem.</p>
http://stackoverflow.com/questions/1808029/perl-to-python-ruby-code-translator/1809410#18094103Answer by Ovid for Perl to Python/Ruby code translatorOvid2009-11-27T15:41:50Z2009-11-27T15:41:50Z<p>You're not going to be successful, sorry. Your best bet (that I can think of) is to use PPI (<a href="http://search.cpan.org/dist/PPI/" rel="nofollow">http://search.cpan.org/dist/PPI/</a>) and try to create an abstract syntax tree. Use that tree to translate to desired target.</p>
<p>It's a hard, hard problem and you're not going to get it right. If you don't have a lot of Perl code, then translating by hand is your best option.</p>
http://stackoverflow.com/questions/1465398/git-pull-broken1"git pull" brokenOvid2009-09-23T11:24:31Z2009-10-13T05:00:24Z
<p>I recently upgraded my MacBook Pro to Snow Leopard and "git pull" returns:</p>
<pre><code>rakudo $ git pull
git: 'pull' is not a git-command. See 'git --help'
Did you mean this?
shell
rakudo $ git-pull
-bash: git-pull: command not found
</code></pre>
<p>I've tried reinstalling via macports, but to no avail. Then I saw this</p>
<pre><code>rakudo $ git --exec-path
/Users/ovid/libexec/git-core
</code></pre>
<p>That surprised me as that directory does not exist, nor has it ever existed. Google is not helping here. Hopefully you can :)</p>
http://stackoverflow.com/questions/200578/how-can-i-localize-perl-variables-in-a-different-stack-frame16How can I localize Perl variables in a different stack frame?Ovid2008-10-14T09:57:58Z2009-07-06T17:07:01Z
<p>I have some auto-generated code which effectively writes out the following in a bunch of different places in some code:</p>
<pre><code>no warnings 'uninitialized';
local %ENV = %ENV;
local $/ = $/;
local @INC = @INC;
local %INC = %INC;
local $_ = $_;
local $| = $|;
local %SIG = %SIG;
use warnings 'uninitialized';
</code></pre>
<p>When auto-generating code, some argue that it's not strictly necessary that the code be "beautiful", but I'd like to pull that out into a subroutine. However, that would localize those variables in that subroutine. Is there a way to localize those variables in the calling stack frame?</p>
<p><strong>Update</strong>: In a similar vein, it would be nice to be able to run eval in a higher stack frame. I think Python already has this. It would be nice if Perl did, too.</p>
http://stackoverflow.com/questions/590972/how-do-i-add-doc-to-the-end-of-every-url-in-catalyst3How do I add /doc/ to the end of every URL in Catalyst?Ovid2009-02-26T15:18:34Z2009-06-23T16:31:54Z
<p>We're trying to make our REST API a bit more friendly, We have a base class for our REST API which inherits from Catalyst::Controller::REST. Each REST class can identify the query parameters it accepts. We thought it would be nice to make this information public and put this into the base class:</p>
<pre><code>sub doc : Regex('/doc$') {
my ( $self, $c ) = @_;
$c->stash->{params} = $c->forward('allowed_query_params');
}
</code></pre>
<p>And from there, every REST url could have /doc/ added to the end to show which query parameters it accepts.</p>
<p>It doesn't work. $self is <em>always</em> a PIPs::C::API::V1::Franchise instance, no matter which URL is called. This appears to be because of these:</p>
<pre><code>[26 Feb 2009 15:07:40,509] [Catalyst.Dispatcher] [DEBUG] Loaded Private actions:
.-----------------------+--------------------------------------+--------------.
| Private | Class | Method |
+-----------------------+--------------------------------------+--------------+
...
| /api/v1/franchise/doc | PIPs::C::Api::V1::Franchise | doc |
</code></pre>
<p>And:</p>
<pre><code>[26 Feb 2009 15:07:40,514] [Catalyst.DispatchType.Regex] [DEBUG] Loaded Regex actions:
.--------------------------------------+--------------------------------------.
| Regex | Private |
+--------------------------------------+--------------------------------------+
| /doc$ | /api/v1/franchise/doc |
| /doc$ | /api/v1/version/doc |
| /doc$ | /api/v1/creditrole/doc |
| /doc$ | /api/v1/doc |
| /doc$ | /api/v1/segmentevent/doc |
| /doc$ | /api/v1/collection/doc |
| /doc$ | /api/v1/episode/doc |
</code></pre>
<p>So the very first instance of the "doc" method dispatches through Franchise, even if the controller for a given URL would be API::V1::Version or something like that.</p>
<p>How can I work around this? LocalRegex doesn't work, obviously, and chained actions don't seem appropriate because, due to the nature of our app, we never know how many path parts will be between '/api/v1/' and '/doc/'.</p>
<p>What am I missing?</p>
http://stackoverflow.com/questions/188162/what-is-the-most-useful-script-youve-written-for-everyday-life/224898#22489823Answer by Ovid for What is the most useful script you've written for everyday life?Ovid2008-10-22T08:38:47Z2009-06-11T02:02:38Z<p>I don't have the code any more, but possibly the most useful script I wrote was, believe it or not, in VBA. I had an annoying colleague who had such a short fuse that I referred to him as Cherry Bomb. He would often get mad when customers would call and then stand up and start ranting at me over the cubicle wall, killing my productivity and morale.</p>
<p>I always had Microsoft Excel open. When he would do this, I would alt-tab to Excel and there, on the toolbar, was a new icon with an image of a cherry bomb. I would discreetly click that ... and nothing would happen.</p>
<p>However, shortly after that I would get a phone call and would say something like "yeah, yeah, that sounds bad. I had better take a look." And then I would get up, apologize to the Cherry Bomb and walk away.</p>
<p>What happened is that we used NetWare and it had a primitive messaging system built in. When I clicked the button, a small VBA script would send out a NetWare message to my friends, telling them that the Cherry Bomb was at it again and would they please call me. He never figured it out :)</p>
http://stackoverflow.com/questions/283957/rest-correct-http-response-code-for-a-post-which-is-ignored2REST: Correct HTTP Response Code For a POST Which Is IgnoredOvid2008-11-12T13:43:03Z2009-05-01T06:29:45Z
<p>We have a REST API which clients routinely POST and PUT data to. When they do this, sometimes they POST data which results in no change on our system. The POSTs and PUTs are well-formed, but they data they're sending is identical to the data in our database. When this happens, I've just found out that we're returning a 400 HTTP status. Unfortunatly, this means "bad request" as in "request could not be understood by the server due to malformed syntax".</p>
<p>Clearly this is not the case, but I'm told that we're going to use this since there's no other appropriate status code. Choices we've considered:</p>
<ul>
<li>304 Not Modified. This, regrettably, is only for GET requests.</li>
<li>204 No Content. Seems close, but forbids an entity-body.</li>
</ul>
<p>Other choices seem equally bad. We might go with <code>200 OK</code> and have the relevant information in the XML document we return, but this doesn't seem very "RESTish". How does the REST world generally handle this?</p>
<p>(Fixed Not Modified response code. Thanks Mkoeller)</p>
http://stackoverflow.com/questions/623680/detecting-overridden-methods-in-perl8Detecting Overridden Methods in PerlOvid2009-03-08T14:37:56Z2009-03-08T20:31:09Z
<p>Last week I was bitten <em>twice</em> by accidentally overriding methods in a subclass. While I am not a fan of inheritance, we (ab)use this in our application at work. What I would like to do is provide some declarative syntax for stating that a method is overriding a parent method. Something like this:</p>
<pre><code>use Attribute::Override;
use parent 'Some::Class';
sub foo : override { ... } # fails if it doesn't override
sub bar { ... } # fails if it does override
</code></pre>
<p>There are a couple of issues here. First, if method loading is delayed somehow (for example, methods loaded via AUTOLOAD or otherwise later installed in the symbol table), this won't detect those methods.</p>
<p>Walking the inheritance tree could also get similarly expensive. I do this with <a href="http://search.cpan.org/dist/Class-Sniff/" rel="nofollow">Class::Sniff</a>, but it's not really suitable for running code. I could walk the inheritance tree and simply match where there's a defined CODE slot in the appropriate symbol table and that would be faster, but if the method cache is invalidated, that would break if I were to cache those results.</p>
<p>So I have two questions: is this a reasonable approach and is there a hook which allows me to check if the method cache has changed? (search for 'cache' in 'perldoc perlobj').</p>
<p>Of course, this shouldn't break production code, I am thinking about only having it fail or warn if the TEST_HARNESS environment variable is active (and have an explicit environment variable to force it to be inactive, if production code were to set the TEST_HARNESS environment variable for some reason).</p></p>
http://stackoverflow.com/questions/585341/whats-the-difference-between-iterating-over-a-file-with-foreach-or-while-in-perl/586532#5865328Answer by Ovid for What's the difference between iterating over a file with foreach or while in Perl?Ovid2009-02-25T15:43:37Z2009-02-25T15:43:37Z<p>In addition to the previous responses, another benefit of using while is that you can use the $. variable. This is the current line number of the last filehandle accessed (see perldoc perlvar).</p>
<pre><code>while ( my $line = <FILE> ) {
if ( $line =~ /some_target/ ) {
print "Found some_target at line $.\n";
}
}
</code></pre>
http://stackoverflow.com/questions/565486/how-can-i-autofold-pod-in-perl-with-vim2How can I autofold POD in Perl with vim?Ovid2009-02-19T14:16:17Z2009-02-19T21:29:32Z
<p>I'm trying to edit files with vim and get the POD automatically folded (just the POD, not the Perl).</p>
<p>I can't get it to work, so I've tried disabling all of my plugins and my .vimrc with this:</p>
<pre><code>vim -u NONE some_perl.pl
</code></pre>
<p>I assume that my POD blocks in my project with start with '=head1', '=head2' or '=head3'. They will always end with '=cut'.</p>
<p>Then, in command mode, I type type the following:</p>
<pre><code>:setf perl
:syntax on
:set foldenable
:syn region POD start=/^=head[123]/ end=/^=cut/ fold
</code></pre>
<p>That's identifying the POD because the POD turns white while the rest of the syntax highlighting remains, but it's not folding the POD.</p>
<p>I've tried the above with various combinations of:</p>
<pre><code>:syn-sync-first
</code></pre>
<p>And:</p>
<pre><code>:syn sync fromstart
</code></pre>
<p>But no luck.</p>
<p>I know the folding itself works because I can manually highlight the lines and type 'zF' and it folds properly.</p>
<p>Can anyone shed light on this? More importantly, how do I debug this?</p>
http://stackoverflow.com/questions/503769/how-can-i-get-the-file-and-line-number-where-a-perl-subroutine-reference-was-crea6How can I get the file and line number where a Perl subroutine reference was created?Ovid2009-02-02T16:14:40Z2009-02-15T09:39:44Z
<p>Given a subroutine reference, is there a way to find out the file and line number where the subroutine was declared? warn and friends seems to get this right, but I need this externally. Here's my test program:</p>
<pre><code>#!/usr/bin/perl -l
use strict;
use warnings;
use B;
# line 99 'bin/some_code.pl'
{
no strict 'refs';
print B::svref_2object(\*{'Foo::some_sub'})->LINE;
print B::svref_2object(\&Foo::some_sub)->GV->LINE;
}
Foo::some_sub();
package Foo;
# line 23 'bin/some_file.pl'
sub some_sub {
warn "Got to here";
}
</code></pre>
<p>That outputs:</p>
<pre><code>102
102
Got to here at 'bin/some_file.pl' line 24.
</code></pre>
<p>The line information is not what I'm expecting, so I assume I'm doing something wrong (B::GV has a corresponding FILE method, but until I get LINE working, it's not much use to me).</p>
<p>Is there some other way to get this information and am I doing something wrong in the above code?</p>
<p><em>Update</em>: As it turns out, the 'FILE' and 'LINE' methods seem to work OK if I'm not using line directives. Looks like it may be a bug in the B::GV module.</p>
http://stackoverflow.com/questions/450835/how-do-you-stop-scripters-from-slamming-your-website-hundreds-of-times-a-second/545189#54518916Answer by Ovid for How do you stop scripters from slamming your website hundreds of times a second?Ovid2009-02-13T08:36:21Z2009-02-13T08:36:21Z<p>So the problem really seems to be: the bots want their "bag 'o crap" because it has a high perceived value at a low perceived price. You sometimes offer this item and the bots lurk, waiting to see if it's available and then they buy the item.</p>
<p>Since it seems like the bot owners are making a profit (or potentially making a profit), the trick is to make this unprofitable for them by <em>encouraging</em> them to buy the crap.</p>
<p>First, <em>always</em> offer the "bag 'o crap".</p>
<p>Second, make sure that crap is usually crap.</p>
<p>Third, rotate the crap frequently.</p>
<p>Simple, no?</p>
<p>You'll need a permanent "why is our crap sometimes crap?" link next to the offer to explain to humans what's going on.</p>
<p>When the bot sees that there's crap and the crap is automatically purchased, the recipient is going to be awfully upset that they've paid $10 for a broken toothpick. And then an empty trash bag. And then some dirt from the bottom of your shoe.</p>
<p>If they buy enough of this crap in a relatively short period of time (and you have large disclaimers all over the place explaining why you're doing this), they're going to lose a fair "bag 'o cash" on your "bag 'o crap". Even human intervention on their part (checking to ensure that the crap isn't crap) can fail if you rotate the crap often enough. Heck, maybe the bots will notice and not buy anything that's been in the rotation for too short a time, but that means the humans will buy the non-crap.</p>
<p>Heck, your regular customers might be so amused that you can turn this into a huge marketing win. Start posting how much of the "crap" carp is being sold. People will come back just to see how hard the bots have been bitten.</p>
<p><strong>Update:</strong> I expect that you might get a few calls up front with people complaining. I don't think you can stop that entirely. However, if this kills the bots, you can always stop it and restart it later.</p>
http://stackoverflow.com/questions/511386/how-can-i-get-my-database-under-version-control-with-perl/515603#5156035Answer by Ovid for How can I get my database under version control with Perl?Ovid2009-02-05T11:58:43Z2009-02-05T11:58:43Z<p>At work, we use a modified version of <a href="http://search.cpan.org/dist/DBIx-Migration/" rel="nofollow">DBIx::Migration</a> (it has some limitations, such as no more than 10 migrations). Then, you have a core schema that you've dumped from your database and when the version number is too low, you upgrade your database using the migrations from the migration schema directory.</p>
<p>I also highly recommend the <a href="http://databaserefactoring.com/" rel="nofollow">Database Refactoring</a> book. Amongst other things, it will give you excellent techniques for managing migrations <em>safely</em> in such a way that if you need to roll back, you don't lose data (such as when you drop a column you think you don't need).</p>
<p>To help with the automatic deprecation schedules it suggests, I've written <a href="http://search.cpan.org/dist/Devel-Deprecate/" rel="nofollow">Devel::Deprecate</a> so that you don't need to remember when to do the deprecations. Your code will complain loudly for you (and only in testing, not in production).</p>
<p><strong><em>Important</em></strong>: You'll periodically find that you're applying so many database migration levels with this technique that you'll sometimes need to "bump up" your minimum base migration because it takes too long to rebuild the database. Just take a new dump of the database at the desired migration level and remove all migrations less than or equal to that level.</p>
http://stackoverflow.com/questions/515531/why-does-exec-ing-gtar-hang-my-perl-program/515567#5155675Answer by Ovid for Why does exec-ing gtar hang my Perl program?Ovid2009-02-05T11:50:14Z2009-02-05T11:50:14Z<p>You want "system", not "exec". Here's a cleaner version:</p>
<pre><code>my $tarball = "flex_${yearA}_${monthA}.tar.gz";
if ( -e $tarball ) {
print"accessing Flex tar \n";
my $command = "gtar --append --file=$tarball $FILE";
system($command) == 0
or die "Could not ($command): $?";
}
else{
print "creating Flex Tar \n ";
my $command = "gtar -cvsf $tarball $FILE";
system($command) == 0
or die "Could not ($command): $?";
}
</code></pre>
<p>However, I'm wondering where all of those variables come from. You could expose a serious security hole here. Read "perldoc -f system" for more information about passing a list to system (safer).</p>
http://stackoverflow.com/questions/513818/is-there-sql-parameter-binding-for-arrays/515547#5155471Answer by Ovid for Is there SQL parameter binding for arrays?Ovid2009-02-05T11:44:15Z2009-02-05T11:44:15Z<p>If you don't like the map there, you can use the 'x' operator:</p>
<pre><code>my $params = join ', ' => ('?') x @foo;
my $sql = "SELECT * FROM table WHERE id IN ($params)";
my $sth = $dbh->prepare( $sql );
$sth->execute( @vals );
</code></pre>
<p>The parentheses are needed around the '?' because that forces 'x' to be in list context.</p>
<p>Read "perldoc perlop" and search for 'Binary "x"' for more information (it's in the "Multiplicative Operators" section).</p>
http://stackoverflow.com/questions/503189/object-oriented-exception-handling-in-perl-is-it-worth-it/503757#5037574Answer by Ovid for Object Oriented Exception Handling in Perl, is it worth it?Ovid2009-02-02T16:10:55Z2009-02-02T16:10:55Z<p>Absolutely. If you throw a simple 'die', you really don't have any more information that the <em>computer</em> can handle. For example, I have a test framework which uses Test::Most and that module can allow you to die on test failures. However, my framework needed to know if I was dying because a test failed or because the code died. Thus, I threw a Test::Most::Exception and my framework can check the exception type and take appropriate action.</p>
<p>Exceptions are your friend :)</p>
http://stackoverflow.com/questions/258462/xml-schema-validation-with-relaxng6XML Schema Validation with RelaxNGOvid2008-11-03T12:12:29Z2008-12-23T10:07:08Z
<p>Which XML validation tools can you recommend for both performance and accuracy, each of which is a critical issue on our system? We have the following requirements:</p>
<ul>
<li>It is not <em>not</em> xmllint (see below)</li>
<li>Supports RelaxNG</li>
<li>Can easily integrate with Perl (this is optional, but it would be nice)</li>
</ul>
<p>Why not xmllint? (This is background and you can skip it if you like)</p>
<p>We have a large Perl system which uses RelaxNG to validate our XML. We use the <a href="http://www.relaxng.org/compact-tutorial-20030326.html" rel="nofollow">compact RelaxNG format</a> and <a href="http://www.thaiopensource.com/relaxng/trang.html" rel="nofollow">trang</a> to convert it to the standard RelaxNG format. Then we do the actual validation via <a href="http://xmlsoft.org/xmllint.html" rel="nofollow">xmllint</a>.</p>
<p>That's when the problems kick in. xmllint routinely has issues in reporting validation errors incorrectly. It doesn't give false positives or negatives, but if the document fails to validate, xmllint will often report the wrong element or attribute for a given error. Sometimes the error is correct ("did not expect to see element 'bar'), but only because a previous error was not reported (because 'bar' was supposed to be following the required but missing element 'foo', but xmllint doesn't tell us that bit). Note that this is a long-standing problem with xmllint and even the latest version has the same problems. We often have huge XML documents and misreporting the errors causes much grief for both clients and developers.</p>
http://stackoverflow.com/questions/271571/filtering-dbixclass-resultsets-with-external-data3Filtering DBIX::Class Resultsets With External DataOvid2008-11-07T09:02:43Z2008-11-07T09:48:19Z
<p>Using <a href="http://search.cpan.org/dist/DBIx-Class/" rel="nofollow">DBIx::Class</a> and I have a resultset which needs to be filtered by data which cannot be generated by SQL. What I need to do is something effectively equivalent to this hypothetical example:</p>
<pre><code>my $resultset = $schema->resultset('Service')->search(\%search);
my $new_resultset = $resultset->filter( sub {
my $web_service = shift;
return $web_service->is_available;
} );
</code></pre>
<p>Reading through the docs gives me no clue how to accomplish a strategy like this.</p>
http://stackoverflow.com/questions/240661/whats-the-best-practice-for-changing-working-directories-inside-scripts/240675#2406753Answer by Ovid for What's the best practice for changing working directories inside scripts?Ovid2008-10-27T17:12:39Z2008-10-27T17:12:39Z<p>I don't do this often, but sometimes it can save quite a bit of headache. Just be sure that if you change directories, you always change back to the directory you started from. Otherwise, changing code paths could leave the application somewhere it should not be.</p>
http://stackoverflow.com/questions/14205/whats-your-favourite-programming-language-and-its-killer-feature/239875#2398753Answer by Ovid for What's your favourite programming language, and its killer feature?Ovid2008-10-27T13:31:39Z2008-10-27T13:31:39Z<p>At the risk of getting downvoted :), I'll say "Perl 6". Yes, I know it's not in alpha yet, but it's getting closer all of the time. My favorite features? Too many to count, but here are a few:</p>
<ul>
<li><p>Subtypes:</p>
<pre><code>subtype PosInt of Int where { $_ > 0 }
</code></pre></li>
<li><p>Roles: </p>
<p>Known to many as <a href="http://www.iam.unibe.ch/~scg/Research/Traits/" rel="nofollow">traits</a>, they solve many class composition problems.</p></li>
<li><p>Junctions (they're automatically parallelizable, too):</p>
<pre><code>if ( $role eq 'manager' | 'consultant' ) { ... }
</code></pre></li>
<li><p><a href="http://en.wikipedia.org/wiki/Meta-object_protocol" rel="nofollow">A complete meta-object protocol</a></p></li>
<li><p>A mutable grammar allowing for much more powerful macros than what one sees in other languages.</p></li>
</ul>
<p>There's plenty more and I fully expect an alpha out by next year.</p>
http://stackoverflow.com/questions/239601/modeling-a-1-to-1-n-relationship-in-the-database/239616#2396160Answer by Ovid for Modeling a 1 to 1..n relationship in the databaseOvid2008-10-27T11:32:30Z2008-10-27T11:32:30Z<p>What about a room which has not been rented out? What you're looking for are reservations and a reservation presumably needs at least one guest on it.</p>
<p>I think what you're asking is whether you can guarantee that a reservation record is not added unless you have at least one guest for and you can't add a guest without a reservation. It's a bit of a Catch-22 for most DBMSs systems.</p>
http://stackoverflow.com/questions/239468/patterns-for-controllers-in-mvc-application/239503#2395031Answer by Ovid for patterns for controllers in MVC applicationOvid2008-10-27T10:21:19Z2008-10-27T10:21:19Z<p>This is rather a tough question as MVC is applied differently in different contexts. For example, for a desktop GUI, you might have listeners for event notifications of view changes but such behavior typically isn't used for Web forms (AJAX is changing this).</p>
<p>For the Web, you generally have:</p>
<ul>
<li>Model: business logic</li>
<li>View: presentation logic</li>
<li>Controller: application logic</li>
</ul>
<p>The controller should generally be minimalistic and if you find yourself pushing display information or business rules in it, there's probably a design flaw somewhere. Classic examples of such flaws in the controller are building HTML (view) or accessing the database directly (model).</p>
<p>I've written up <a href="http://www.oreillynet.com/onlamp/blog/2007/06/what_is_mvc.html" rel="nofollow">a more thorough description of MVC on my O'Reilly blog</a>. I have concrete examples there which can help explain things a bit more in depth.</p>
http://stackoverflow.com/questions/236737/language-showdown-how-do-you-make-a-system-call-that-returns-the-stdout-output-a/236769#2367695Answer by Ovid for Language showdown: how do you make a system call that returns the stdout output as a string?Ovid2008-10-25T18:02:29Z2008-10-25T18:02:29Z<p>Ruby: either backticks or the '%x' builtin syntax.</p>
<pre><code>puts `ls`;
puts %x{ls};
</code></pre>
http://stackoverflow.com/questions/236354/error-handling-when-taking-user-input/236373#2363731Answer by Ovid for error handling when taking user inputOvid2008-10-25T13:03:10Z2008-10-25T13:03:10Z<p>What does "I tried this but it doesn't work" mean? What output are you getting? Do you mean it doesn't compile? (it won't in the state you're showing it). Do you mean that there's more to the program then what we see but it's producing unexpected results? There's not enough for us to debug this. For what it's worth, I didn't see anything wrong (aside from it obviously being incomplete):</p>
<pre><code>#include <iostream>
using namespace std;
char displayMainMenu() {
char mainMenuChoice;
cout << "\nQuadratic equation: a*X^2 + b*X + c = 0 main menu: ";
cout << "\n <r> Give new coefficients";
cout << "\n <c> Calculate equations solutions";
cout << "\n <t> Terminate the program";
cout<<"\nEnter choice : ";
cin>>mainMenuChoice;
return mainMenuChoice;
}
int main() {
bool done = false;
while(!done) {
char choice = displayMainMenu();
if( isalpha(choice) ) {
switch(tolower(choice))
{
case 'r':
cout << "got 'r'\n";
break;
case 'c':
cout << "got 'c'\n";
break;
case 't':
cout << "got 't'\n";
done = true;
break;
default:
cout<<"Invalid choice!\n"<<endl;
}
}
}
return 0;
}
</code></pre>
<p>And the output:</p>
<pre><code>~ $ g++ input.cc -o input
~ $ ./input
Quadratic equation: a*X^2 + b*X + c = 0 main menu:
<r> Give new coefficients
<c> Calculate equations solutions
<t> Terminate the program
Enter choice : a
Invalid choice!
Quadratic equation: a*X^2 + b*X + c = 0 main menu:
<r> Give new coefficients
<c> Calculate equations solutions
<t> Terminate the program
Enter choice : c
got 'c'
Quadratic equation: a*X^2 + b*X + c = 0 main menu:
<r> Give new coefficients
<c> Calculate equations solutions
<t> Terminate the program
Enter choice : t
got 't'
~ $
</code></pre>
<p><strong>Update</strong> I see it doesn't give the 'Invalid choice' message for non-numerics, but that can be fixed with removing the 'isalpha' check.</p>
http://stackoverflow.com/questions/236349/asp-net-mvc-handling-bad-url-parameters/236353#2363530Answer by Ovid for ASP.Net MVC - handling bad URL parametersOvid2008-10-25T12:50:55Z2008-10-25T12:50:55Z<p>The problem with that approach is that they still might pass an integer which doesn't map to a page. Just return a 404 if they do that, just as you would with "foo". It's not something to worry about unless you have clear security implications.</p>
http://stackoverflow.com/questions/236335/when-i-calculate-a-large-factorial-why-do-i-get-a-negative-number/236345#23634513Answer by Ovid for When I calculate a large factorial, why do I get a negative number?Ovid2008-10-25T12:46:25Z2008-10-25T12:46:25Z<p>In addition to the other comments, I'd like to point out two serious bugs in your code.</p>
<ul>
<li>You have no guard against negative numbers. </li>
<li>The factorial of zero is one, not zero.</li>
</ul>
http://stackoverflow.com/questions/236323/which-is-the-best-way-to-compare-the-integer-part-of-two-non-integer-numbers/236333#2363331Answer by Ovid for Which is the best way to compare the integer part of two non-integer numbers?Ovid2008-10-25T12:36:30Z2008-10-25T12:36:30Z<p>Personally, I try to avoid creating extra variables unless I need them.</p>
<pre><code>if ( (int)dA != (int)dB ) {
...
}
</code></pre>
<p>As code evolves over time, having extra variables hanging around for no purpose leads to confusion. Of course, if you need those variables, that's another issue :)</p>
<p>Side note: you appear to be trying to hint at the data type via a simple Hungarian notation. May I recommend not doing that? If you must prefix information to your variables, try to prefix what the variable is for, rather than its type. If you do that, mistakes in code can be easier to see:</p>
<pre><code>if ( (int)ageA != (int)idB ) {
...
}
</code></pre>
<p>In this case, without even knowing what the data is, seeing that you're trying to compare an 'age' with an 'id' is a good clue that something is wrong here.</p>
http://stackoverflow.com/questions/235848/most-astonishing-violation-of-the-principle-of-least-astonishment/236319#23631941Answer by Ovid for Most Astonishing Violation of the Principle of Least AstonishmentOvid2008-10-25T12:26:08Z2008-10-25T12:26:08Z<p>Hyperlinks which you can't click unless JavaScript is enabled!</p>
<p>I'm sick of "Prev/Next" links which do nothing if you click on them. I'm sick of "page X of Y" links which mock me for having JavaScript disabled. I'm tired of Web forms with form buttons which don't do anything without JavaScript.</p>
<p>Many times they do this for an "enhanced" experience I don't want embedding tracking information which is unreliable anyway. Yes, it will likely cost the companies more money to develop sites which work fine without JavaScript and I can understand that, but breaking <em>hyperlinks</em>? That's f'ing ridiculous.</p>
http://stackoverflow.com/questions/1796906/cobol-migrations-strategiesComment by Ovid on COBOL Migrations Strategies?Ovid2009-11-25T17:11:41Z2009-11-25T17:11:41Z@S.Lott: how does referring to this as a "cost" or "liability" instead of a "risk" help with the analysis?http://stackoverflow.com/questions/1796906/cobol-migrations-strategiesComment by Ovid on COBOL Migrations Strategies?Ovid2009-11-25T14:43:19Z2009-11-25T14:43:19Zpaxdiablo: it's an extremely well-known problem. It's a 50 year-old, poorly designed (by modern standards) language that fewer and fewer developers want to program in. The Gartner Group (amongst others) estimates that over 75% of the world's business data passes through software that few people want to touch. Many businesses want to find more cost-effective alternatives, but that's hard to do given the sheer amount of CODE out there.http://stackoverflow.com/questions/1465398/git-pull-broken/1466029#1466029Comment by Ovid on "git pull" brokenOvid2009-09-23T14:06:33Z2009-09-23T14:06:33ZExcellent! That fixed it.http://stackoverflow.com/questions/1465398/git-pull-broken/1465570#1465570Comment by Ovid on "git pull" brokenOvid2009-09-23T12:30:18Z2009-09-23T12:30:18ZYeah, did that a couple of days ago after I found so many of my ports not working. It was, as you mention, painful. It also didn't solve my git problem :)http://stackoverflow.com/questions/1465398/git-pull-broken/1465416#1465416Comment by Ovid on "git pull" brokenOvid2009-09-23T11:51:39Z2009-09-23T11:51:39Z$GIT_EXEC_PATH is not set and "which git" returns /opt/local/bin/git, as I'm expecting.http://stackoverflow.com/questions/925609/mixins-vs-traits/925675#925675Comment by Ovid on Mixins vs. TraitsOvid2009-07-16T11:40:23Z2009-07-16T11:40:23ZA good summary, but a couple of points. First, with mixins, it's actually the last mixin whose methods win and will override previous mixin methods (at least in Ruby). With traits (aka "roles"), if traits provide identical method names, there's a composition time conflict and the programmer will have to explicitly resolve the conflict in code, making the behavior more clear. Finally (though there's a lot more to say), with traits, you can ask a class or instance if it implements a given trait, allowing greater meta-programming. I'm not aware of mixins offering this ability.http://stackoverflow.com/questions/574337/does-anyone-know-of-a-good-perl-unit-test-generator/574348#574348Comment by Ovid on Does anyone know of a good Perl unit test generator?Ovid2009-02-22T14:07:44Z2009-02-22T14:07:44ZPerlUnit was abandoned years ago and does not play well with Perl's standard testing tools. Test::Class is a better choice for this.http://stackoverflow.com/questions/565486/how-can-i-autofold-pod-in-perl-with-vim/565980#565980Comment by Ovid on How can I autofold POD in Perl with vim?Ovid2009-02-20T07:54:46Z2009-02-20T07:54:46Z@jrockway D'oh! I'll have to do that with my plugins, too. Those are the ones which will be a pain, but yeah, I'll figure out how to get this working :)http://stackoverflow.com/questions/565486/how-can-i-autofold-pod-in-perl-with-vim/565980#565980Comment by Ovid on How can I autofold POD in Perl with vim?Ovid2009-02-19T16:42:20Z2009-02-19T16:42:20ZIt only works if I fail to load my .vimrc. Regrettably, I can't figure out how to debug what's causing the conflict. Still, it's a step closer. Thanks!http://stackoverflow.com/questions/511820/select-count-is-slow-even-with-where-clause/511966#511966Comment by Ovid on "SELECT COUNT(*)" is slow, even with where clauseOvid2009-02-04T17:03:52Z2009-02-04T17:03:52Zbenjismith: We really don't have much to simulate a proper load, unfortunately. Given my workload right now, I won't be able to return to this unless we have more issues (though I'd like to know this myself).http://stackoverflow.com/questions/511820/select-count-is-slow-even-with-where-clause/511966#511966Comment by Ovid on "SELECT COUNT(*)" is slow, even with where clauseOvid2009-02-04T16:52:28Z2009-02-04T16:52:28ZThe hires-timestamp was needed because InnoDB does a full table lock to get the next key and that was a significant performance hit. It wasn't my decision, but it worked.http://stackoverflow.com/questions/511820/select-count-is-slow-even-with-where-clause/511963#511963Comment by Ovid on "SELECT COUNT(*)" is slow, even with where clauseOvid2009-02-04T16:49:56Z2009-02-04T16:49:56ZThe "optimize table" didn't help much, but the redundant index solved the problem. Thanks!http://stackoverflow.com/questions/511820/select-count-is-slow-even-with-where-clause/511966#511966Comment by Ovid on "SELECT COUNT(*)" is slow, even with where clauseOvid2009-02-04T16:36:58Z2009-02-04T16:36:58ZGiven that we have numbers like "1212281603783397", I think that already overflows "int unsigned" (it's a high-res timestamp).
"OPTIMIZE TABLE" had no performance impact :(
Isn't MyISAM much slower with "where" clauses since it needs to do a table scan? Also, we'd lose our FK constraint.http://stackoverflow.com/questions/511820/select-count-is-slow-even-with-where-clause/511863#511863Comment by Ovid on "SELECT COUNT(*)" is slow, even with where clauseOvid2009-02-04T15:56:39Z2009-02-04T15:56:39ZMyISAM has radically different performance characteristics from InnoDB. That's because MyISAM does table level locking and effectively only has one transaction at a time. InnoDB behaves much differently under the covers.http://stackoverflow.com/questions/511820/select-count-is-slow-even-with-where-clause/511929#511929Comment by Ovid on "SELECT COUNT(*)" is slow, even with where clauseOvid2009-02-04T15:54:09Z2009-02-04T15:54:09ZExcept that we need counts on ranges, so a managing a count via triggers doesn't work (unless I've misunderstood you).