User Cebjyre - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T02:44:30Zhttp://stackoverflow.com/feeds/user/1612http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/56090/subversion-merge-history-visualisation4Subversion merge history visualisationCebjyre2008-09-11T09:02:49Z2009-12-14T15:23:40Z
<p>Are there any utilities out there which can draw pictures of the merge history of a subversion repo - we always commit merges with a (fairly) consistent log message, and it would be handy to be able to automatically extract this info into a single picture that shows what branches occurred when, and what the state of merges is.</p>
<p>I'm just interested in an informational tool, not something to help with actually performing merges.</p>
http://stackoverflow.com/questions/1759488/why-does-perls-autovivification-work-in-this-case/1759596#17595962Answer by Cebjyre for Why does Perl's autovivification work in this case?Cebjyre2009-11-18T22:26:16Z2009-11-18T22:26:16Z<p>Basically the string "foo" is the only value of <code>%hash</code>, but (due to non-strictyness) %foo is being created that contains <code>(world => "bar")</code></p>
http://stackoverflow.com/questions/1635377/how-to-make-own-file-upload-using-html-and-javascript/1635426#16354260Answer by Cebjyre for How to make own file upload using HTML and javascriptCebjyre2009-10-28T06:02:51Z2009-10-28T06:02:51Z<p>The file upload is a specific input type, which you can't easily replace, but in some browsers you may be able to style it.</p>
<p>You should be able to access the filename from javascript, and display this in a different part of the page (possibly hiding the file input at the same time) so the user can see what will be selected.</p>
<p>Another option is to use Flash for a fancier front-end (see <a href="http://www.flickr.com/photos/upload/" rel="nofollow">http://www.flickr.com/photos/upload/</a> (assuming you have a flickr account) as an example), but I've never used one of these as a developer </p>
http://stackoverflow.com/questions/1425030/how-to-update-git-log-after-git-svn-fetch-on-a-bare-repo/1425208#14252081Answer by Cebjyre for How to update 'git log' after 'git svn fetch' on a bare repo?Cebjyre2009-09-15T05:07:30Z2009-09-15T05:07:30Z<p>Try <code>git log git-svn</code> - I don't have a bare repo, but I've just run <code>git svn fetch</code>, and standard <code>git log</code> gives me the current (rebased) log, but with the git-svn arg (which is the other branch besides master that is identified by <code>git branch -a</code> in my case) I get the log up to the fetched revision</p>
http://stackoverflow.com/questions/22539/operator-user-script-for-stack-overflow6Operator user script for Stack Overflow [closed]Cebjyre2008-08-22T14:46:23Z2009-09-14T18:56:11Z
<p>Inspired by <a href="http://beta.stackoverflow.com/questions/20830/firefox-users-here-is-your-stackoverflow-search-plugin" rel="nofollow">this post</a>, I've knocked together a user script to add Stack Overflow tag search to <a href="https://addons.mozilla.org/en-US/firefox/addon/4106" rel="nofollow">Operator</a> (a microformat plugin for firefox).</p>
<p>Put this code </p>
<pre><code>var stackoverflow = {
description: "Search Tag on Stack Overflow",
shortDescription: "Stack Overflow",
icon: "http://stackoverflow.com/favicon.ico",
scope: { semantic: {"tag" : "tag"}},
doAction: function(obj) {return "http://stackoverflow.com/questions/tagged/" + escape(obj.tag);}
};
SemanticActions.add("stackoverflow", stackoverflow);
</code></pre>
<p>in a js file, and from the Operator options dialog, add it to the User Scripts section, then add the action in the Actions section and restart Firefox to get it to activate. You'll be able to right click a tags on an external site and search for posts matching that tag here.</p>
http://stackoverflow.com/questions/1360616/mysql-query-with-some-type-of-join-not-sure/1360640#13606400Answer by Cebjyre for MySQL Query with some type of join? Not sure.Cebjyre2009-09-01T05:15:06Z2009-09-01T05:15:06Z<p>Change the <code>LEFT JOIN</code> to <code>LEFT OUTER JOIN</code></p>
http://stackoverflow.com/questions/1321157/whats-wrong-with-the-mysql-date-function1What's wrong with the MySQL DATE() function?Cebjyre2009-08-24T08:38:44Z2009-08-25T01:19:12Z
<p>I've had some bizarre results from queries I've been testing out with the <code>DATE</code> function, culminating in these little beauties:</p>
<pre><code>mysql> SELECT id FROM job WHERE DATE(due)=CURRENT_DATE;
Empty set (0.00 sec)
mysql> SELECT id FROM job WHERE DATE(due)=CURRENT_DATE AND id>2022;
Empty set (0.00 sec)
mysql> SELECT id FROM job WHERE DATE(due)=CURRENT_DATE AND id=2023;
+------+
| id |
+------+
| 2023 |
+------+
</code></pre>
<p>and for a bit more comedy</p>
<pre><code>mysql> SELECT id, DATE(due) FROM job WHERE DATE(due) IS NULL AND id>2022;
</code></pre>
<p>gives us:</p>
<pre><code>+------+------------+
| id | DATE(due) |
+------+------------+
| 2023 | 2009-08-24 |
| 2024 | 2009-08-24 |
| 2025 | NULL |
| 2026 | 2009-08-24 |
| 2027 | NULL |
| 2032 | NULL |
| 2031 | NULL |
| 2033 | NULL |
| 2034 | NULL |
| 2035 | NULL |
| 2036 | NULL |
| 2037 | NULL |
| 2038 | NULL |
+------+------------+
</code></pre>
<p>this is on 5.0.45</p>
<p>Is the <code>DATE()</code> function completely unreliable, or am I missing something?</p>
<p><strong>Clarifications:</strong></p>
<p>The due field is of type <code>datetime</code>, and there hasn't been a date rollover in the intervening period between the queries - all queries mentioned above are still giving the same results and <code>NOW()</code> is currently <code>2009-08-24 22:54:17</code></p>
<p>In answer to Eric's query:</p>
<pre><code>mysql> SELECT id, due, DATE(due) FROM job WHERE id>2022;
+------+---------------------+------------+
| id | due | DATE(due) |
+------+---------------------+------------+
| 2023 | 2009-08-24 00:00:00 | 2009-08-24 |
| 2024 | 2009-08-24 17:20:56 | 2009-08-24 |
| 2025 | NULL | NULL |
| 2026 | 2009-08-24 17:22:07 | 2009-08-24 |
| 2027 | NULL | NULL |
| 2032 | NULL | NULL |
| 2031 | NULL | NULL |
| 2033 | NULL | NULL |
| 2034 | NULL | NULL |
| 2035 | NULL | NULL |
| 2036 | NULL | NULL |
| 2037 | NULL | NULL |
| 2038 | NULL | NULL |
+------+---------------------+------------+
</code></pre>
http://stackoverflow.com/questions/1321157/whats-wrong-with-the-mysql-date-function/1325591#13255910Answer by Cebjyre for What's wrong with the MySQL DATE() function?Cebjyre2009-08-25T01:19:12Z2009-08-25T01:19:12Z<p>It looks like the <code>TO_DAYS</code> function is a whole lot more reliable for my purposes - a straight replacement of <code>DATE</code> with <code>TO_DAYS</code> seems to be going alright.</p>
http://stackoverflow.com/questions/1225144/why-does-mysql-allow-group-by-queries-without-aggregate-functions/1225210#12252105Answer by Cebjyre for Why does MySql allow "group by" queries WITHOUT aggregate functions?Cebjyre2009-08-04T00:06:47Z2009-08-04T00:56:23Z<p>I believe that it was to handle the case where grouping by one field would imply other fields are also being grouped:</p>
<pre><code>SELECT user.id, user.name, COUNT(post.*) AS posts
FROM user
LEFT OUTER JOIN post ON post.owner_id=user.id
GROUP BY user.id
</code></pre>
<p>In this case the user.name will always be unique per user.id, so there is convenience in not requiring the user.name in the <code>GROUP BY</code> clause (although, as you say, there is definite scope for problems)</p>
http://stackoverflow.com/questions/1210143/how-to-undo-removal-of-a-file-in-svn/1210183#12101832Answer by Cebjyre for How to undo removal of a file in svnCebjyre2009-07-31T00:57:47Z2009-07-31T00:57:47Z<p>You could try a reverse merge, but if it's a single file, <a href="http://svnbook.red-bean.com/en/1.5/svn.ref.svn.c.copy.html" rel="nofollow">svn copy</a> might be easier:</p>
<pre><code>svn copy file:///var/svn/repos/test/far-away -r 6 near-here
</code></pre>
<p>(Search that page for 'recommended')</p>
http://stackoverflow.com/questions/1206464/how-can-i-split-a-string-along-a-user-provided-string-separator-in-perl/1206551#12065515Answer by Cebjyre for How can I split a string along a user-provided string separator in Perl?Cebjyre2009-07-30T13:19:22Z2009-07-30T13:19:22Z<p>The problem is that + is used as a metacharacter to indicate 'one or more' of the preceding items (so you are asking for one or more, without specifying what it is you want)</p>
<p>Sinan's answer is a good one, and check out the <a href="http://perldoc.perl.org/functions/quotemeta.html" rel="nofollow">quotemeta</a> function as well.</p>
http://stackoverflow.com/questions/1176011/sql-to-determine-minimum-sequential-days-of-access/1176222#11762220Answer by Cebjyre for SQL to determine minimum sequential days of access?Cebjyre2009-07-24T07:25:06Z2009-07-24T07:25:06Z<p>Off the top of my head, MySQLish:</p>
<pre><code>SELECT start.UserId
FROM UserHistory AS start
LEFT OUTER JOIN UserHistory AS pre_start ON pre_start.UserId=start.UserId
AND DATE(pre_start.CreationDate)=DATE_SUB(DATE(start.CreationDate), INTERVAL 1 DAY)
LEFT OUTER JOIN UserHistory AS subsequent ON subsequent.UserId=start.UserId
AND DATE(subsequent.CreationDate)<=DATE_ADD(DATE(start.CreationDate), INTERVAL 30 DAY)
WHERE pre_start.Id IS NULL
GROUP BY start.Id
HAVING COUNT(subsequent.Id)=30
</code></pre>
<p>Untested, and almost certainly needs some conversion for MSSQL, but I think that give some ideas.</p>
http://stackoverflow.com/questions/1090867/why-doesnt-this-perl-regex-work/1090896#10908962Answer by Cebjyre for Why doesn't this Perl regex work?Cebjyre2009-07-07T07:47:34Z2009-07-07T07:47:34Z<p>Are you sure it doesn't work? It looks fine for your example case, and a slightly adjusted version of your code that I just ran gave the expected answer:</p>
<pre><code>#!/usr/bin/perl
use strict; use warnings;
my $st = q{Sometimes, he says "hey fred, what's up?"};
foreach($st)
{
if(/.*\s+[fF][rR][eE][dD][^ \t\r\n,.:;'"].*/){
print "found fred at beginning of a word:\n $_\n";
}
else
{
print "not found in $_";
}
}
</code></pre>
<p>is reporting the 'not found' part (as expected, since I'm not doing the 'just fred' check).</p>
http://stackoverflow.com/questions/1052976/what-is-the-scope-of-1-through-9-in-perl/1053034#10530344Answer by Cebjyre for What is the scope of $1 through $9 in Perl? Cebjyre2009-06-27T15:30:53Z2009-06-27T15:30:53Z<p>By making a couple of small alterations to your example code:</p>
<pre><code>sub bla {
my $x = shift;
print "$1\n";
$x =~ s/(\d+)/$1 $1/;
return $x;
}
my $y = "hello world9";
# some code that manipulates $y
$y =~ /(\w*)\s+(\w*)/;
my $z = &bla($2);
my $w = $1;
print "$1 $2\n$z\n";
</code></pre>
<p>we get the following output:</p>
<pre><code>hello
hello world9
world9 9
</code></pre>
<p>showing that the <code>$1</code> is limited to the <a href="http://perldoc.perl.org/perlfaq7.html#What%27s-the-difference-between-dynamic-and-lexical-%28static%29-scoping%3f--Between-local%28%29-and-my%28%29%3f" rel="nofollow">dynamic scope</a> (ie the <code>$1</code> assigned within <code>bla</code> ceases to exist at the end of that function (but the <code>$1</code> assigned from the <code>$y</code> regex is accessible within <code>bla</code> until it is overwritten))</p>
http://stackoverflow.com/questions/949512/can-i-make-git-svn-import-a-subversion-repository-which-itself-contains-git-repos/949575#9495750Answer by Cebjyre for Can I make git-svn import a Subversion repository which itself contains git repositoriesCebjyre2009-06-04T09:51:48Z2009-06-04T09:51:48Z<p>You could dump the current svn repo, <a href="http://svnbook.red-bean.com/en/1.5/svn.reposadmin.maint.html#svn.reposadmin.maint.filtering" rel="nofollow">filter</a> out the .git directories, and create another svn repo based on this filtered dump, and use this new one as a basis for the git repo.</p>
<p>Parallel use of git and svn would probably be <em>interesting</em> - you'd have to replace the existing repo with new gitless one, and the missing .git directories could cause some hassles.</p>
<p>I have not tried this, so you're going to want to be careful, and have backups.</p>
http://stackoverflow.com/questions/949449/json-spec-does-the-key-have-to-be-surrounded-with-quotes/949480#9494800Answer by Cebjyre for JSON Spec - does the key have to be surrounded with quotes?Cebjyre2009-06-04T09:29:12Z2009-06-04T09:29:12Z<p>From <strong>2.2. Objects</strong></p>
<blockquote>
<p>An object structure is represented as a pair of curly brackets surrounding zero or more name/value pairs (or members). A name is a string.</p>
</blockquote>
<p>and from <strong>2.5. Strings</strong></p>
<blockquote>
<p>A string begins and ends with quotation marks.</p>
</blockquote>
<p>So I would say that according to the standard: yes, you should always quote the key (although some parsers may be more forgiving)</p>
http://stackoverflow.com/questions/923956/how-to-back-up-private-branches-in-git/923971#9239711Answer by Cebjyre for How to back up private branches in git Cebjyre2009-05-29T01:09:00Z2009-05-29T01:09:00Z<p>Can you set up another remote repository that you do push all of your branches to? The other thing to consider is just backing up everything (important) on your local machine, including the git repo.</p>
http://stackoverflow.com/questions/914080/svn-script-to-rename-member-variables-on-checkout-update/914121#9141213Answer by Cebjyre for svn script to rename member variables on checkout/updateCebjyre2009-05-27T05:34:20Z2009-05-27T05:34:20Z<p>Subversion doesn't have hooks that work on update - you could have a post-commit hook* that would allow you to convert from one convention to another (repository standard), and you could use a script that you write yourself that does the checkout, and then performs the necessary adjustments, but this would give you false readings on <code>svn diff</code> etc.</p>
<p>My suggestion is to just sit down with your colleagues and agree on a standard. The post-commit hook would still be useful to catch slip-ups though.</p>
<p>*I'm thinking something that sees a commit has occurred, automatically checks out and alters the code to adhere to the repository standard convention, and then commits if necessary. Another option is to have a pre-commit hook that disallows the commit if the code doesn't adhere to the standard.</p>
http://stackoverflow.com/questions/850825/google-analytics-alternative-for-a-rails-application/850923#8509232Answer by Cebjyre for Google Analytics Alternative for a Rails ApplicationCebjyre2009-05-12T02:36:11Z2009-05-12T02:36:11Z<p>If the problem with Analytics is your data leaving your server environment, there is the <a href="http://www.google.com/urchin/index.html" rel="nofollow">Urchin</a> version, but that's not free.</p>
http://stackoverflow.com/questions/728625/how-do-i-add-text-to-graph-in-perls-gdgraph/728635#7286350Answer by Cebjyre for How do I add text to graph in Perl's GD::Graph?Cebjyre2009-04-08T05:38:03Z2009-04-08T08:13:35Z<p>Have you tried title?</p>
<p>From the USAGE section:</p>
<pre><code>$graph->set(
x_label => 'X Label',
y_label => 'Y label',
title => 'Some simple graph',
y_max_value => 8,
y_tick_number => 8,
y_label_skip => 2
) or die $my_graph->error;
</code></pre>
<p><strong>Edit:</strong></p>
<p>Apparently I misunderstood the question, and the text should be overlayed on the chart area. In that case, the <em>experimental</em> get_feature_coordinates method can apparently be used to get "the coordinates of the rectangle within the axes", and from that you should know where you can draw directly on the GD::Image you get from <code>$graph->plot(\@data)</code></p>
http://stackoverflow.com/questions/718926/modperl-headersin-not-working2mod_perl headers_in not workingCebjyre2009-04-05T13:22:26Z2009-04-08T05:31:19Z
<p>I'm using mod_perl 2 with Apache 2.2.3 on Red Hat 5.2, and I'm trying to access the request headers, but the Apache2::RequestRec <a href="http://perl.apache.org/docs/2.0/api/Apache2/RequestRec.html#C%5Fheaders%5Fin%5F" rel="nofollow">headers_in</a> method (or rather, its return value) is not behaving the way I would expect.</p>
<p>Code fragment:</p>
<pre><code>$logger->warn('version ' . $mod_perl::VERSION);
$logger->warn('r ' . $r);
my $headers = $r->headers_in;
$logger->warn('headers ' . $headers);
my $accept = $headers->get('Accept');
$logger->warn('got $accept');
$logger->warn($accept);
</code></pre>
<p>gives the following log output:</p>
<pre><code>WARN version 2.000004
WARN r Apache2::RequestRec=SCALAR(0x2ae0598e9ef0)
WARN headers APR::Table=HASH(0x2ae06cad15a0)
</code></pre>
<p>with execution appearing to halt as soon as any access to the APR::Table is attempted.
The tied interface for APR::Table had the same effect - i.e. changing the <code>get('Accept')</code> line to:</p>
<pre><code>my $accept = $headers->{Accept};
</code></pre>
<p>gives exactly the same log output.</p>
<p>According to the above linked documentation:</p>
<blockquote>
<p>This table is available starting from the PerlHeaderParserHandler phase</p>
</blockquote>
<p>So I would expect my code, running in the PerlResponseHandler phase, to be able to access the headers.</p>
<p>Does anyone have any ideas what I'm doing wrong?</p>
<p><strong>Edit:</strong> Using Data::Dumper hasn't really clarified matters at all.</p>
<p>Code:</p>
<pre><code>use Data::Dumper;
$logger->warn(Dumper($r));
my $headers = $r->headers_in;
$logger->warn($headers);
$logger->warn(Dumper($headers));
$logger->warn('have dumped $headers');
</code></pre>
<p>Output:</p>
<pre><code>WARN $VAR1 = bless( do{\(my $o = '47143456365192')}, 'Apache2::RequestRec' );
WARN APR::Table=HASH(0x2ae071b06fd0)
</code></pre>
<p>So it seems that trying to get into $headers even through Data::Dumper results in the execution halting.</p>
<p><strong>Edit:</strong> Attempting to set one of the headers fails as well.</p>
<pre><code>$logger->warn('reset accept');
$r->headers_in->{'Accept'}= 'everything';
$logger->warn('post set accept');
</code></pre>
<p>stops log output at the </p>
<pre><code>WARN reset accept
</code></pre>
<p>point. I tried the <code>set(Accept => 'everything')</code> alternative as well, with the same result.</p>
http://stackoverflow.com/questions/718926/modperl-headersin-not-working/728622#7286220Answer by Cebjyre for mod_perl headers_in not workingCebjyre2009-04-08T05:31:19Z2009-04-08T05:31:19Z<p>Problem found:</p>
<p>I needed to add</p>
<pre><code>use APR::Table;
</code></pre>
<p>somewhere. Kind of weird that it was happily able to create an APR::Table object though.</p>
http://stackoverflow.com/questions/664951/how-can-i-port-perl-code-from-modperl-to-fastcgi/665083#6650832Answer by Cebjyre for How can I port Perl code from mod_perl to FastCGI?Cebjyre2009-03-20T05:32:20Z2009-03-20T05:32:20Z<p>From quickly looking at the CPAN docs, it looks like CGI::Fast is a wrapper around FCGI;
from the CGI::Fast page:</p>
<blockquote>
<p>In order to use CGI::Fast you'll need the FCGI module</p>
</blockquote>
<p>My take is that it basically lets you use the standard functionality of CGI.pm with the speed benefits of FastCGI (header creation and parameter access being the main aspects of CGI.pm you are probably already using).</p>
<p>I haven't used either of these, this is just what it looks like to me from the documentation, so I could well be wrong.</p>
http://stackoverflow.com/questions/657058/how-do-i-retrieve-tag-attributes-with-xmlsimple/657200#6572003Answer by Cebjyre for How do I retrieve tag attributes with XML::Simple?Cebjyre2009-03-18T06:54:36Z2009-03-18T14:05:38Z<p>I took the xml from that page you provided, used the entire thing as a string for the argument to XMLin, and had success with</p>
<pre><code>print $data->{DocSum}->{Item}->[5]->{content};
</code></pre>
<p>giving the output</p>
<blockquote>
<p>Bromoxynil degradation in a Mississippi silt loam soil.</p>
</blockquote>
<p>This is pretty much the same thing derobert was saying.</p>
<p>Edit:</p>
<p>Rather than assuming the 6th Item element is the one you are after, to print the content of the node where the Name attribute is 'Title' (and then break out of the loop since you've found what you want):</p>
<pre><code>foreach my $item_node (@{$data->{DocSum}->{Item}})
{
if($item_node->{Name} eq 'Title')
{
print $item_node->{content};
last;
}
}
</code></pre>
<p>Of course, this is still only looking at the Item nodes immediately under DocSum, so if you were looking for PubType instead of Title, it wouldn't be found due to that being a child of the PubTypeList Item node.</p>
http://stackoverflow.com/questions/648933/how-can-i-remove-every-third-html-tag-in-perl/649062#6490622Answer by Cebjyre for How can I remove every third HTML tag in Perl?Cebjyre2009-03-16T02:24:33Z2009-03-16T02:24:33Z<p>Once you get the squiggly brackets matching each other, and start using the substitution regex properly, you also need to move the</p>
<pre><code>my $int = 0;
</code></pre>
<p>out of the for loop - it is currently being reset on every line that is read, so it will only ever have the value of 0 or 1.</p>
http://stackoverflow.com/questions/632939/help-shortening-a-regular-expression/633003#6330033Answer by Cebjyre for Help Shortening a Regular ExpressionCebjyre2009-03-11T01:39:10Z2009-03-11T01:46:05Z<pre><code>/\(PRD\)(.+;.+;.*;){2}(.*;){2}/
</code></pre>
<p>is shorter than</p>
<pre><code>/\(PRD\)((.+;){2}.*;){2}(.*;){2}/
</code></pre>
<p>but arguably less awesome. Both are successfully shorter than</p>
<pre><code>/[(]PRD[)].+;.+;.*;.+;.+;.*;.*;.*;/
</code></pre>
<p>though (if only because of the character class change).</p>
<p>Or you could even go with</p>
<pre><code>/\(PRD\)(.+;.+;.*;){2}.*;.*;/
</code></pre>
<p>which <em>may</em> be the shortest you can get with the same rules.</p>
http://stackoverflow.com/questions/632724/svn-to-git-conversion/632807#6328075Answer by Cebjyre for svn to git conversionCebjyre2009-03-11T00:17:05Z2009-03-11T00:17:05Z<p>From a <a href="http://sourceforge.net/scm/?type=svn&group%5Fid=234930" rel="nofollow">svn project page</a> it looks like you are using the wrong URL - try:</p>
<pre><code>git svn clone http://PROJECT.svn.sourceforge.net/svnroot/PROJECT PROJECT.git
</code></pre>
<p>I just successfully checked one out (with git 1.6.2 on OS X 10.5) with:</p>
<pre><code>git svn clone http://javaautoupdater.svn.sourceforge.net/svnroot/javaautoupdater ok.git
</code></pre>
http://stackoverflow.com/questions/629257/nan-value-in-float-field-in-mssql/629320#6293200Answer by Cebjyre for NaN value in float field in MSSQLCebjyre2009-03-10T08:26:30Z2009-03-10T08:26:30Z<p>NaN values are often the result of dividing by zero - this would be the first thing I'd check for.</p>
http://stackoverflow.com/questions/577190/how-do-i-make-a-dbixclass-relationship-with-a-fixed-join-condition3How do I make a DBIx::Class relationship with a fixed join condition?Cebjyre2009-02-23T10:43:44Z2009-02-23T16:58:59Z
<p>We have a link table that can handle multiple types of object on one side, and I can't work out how to get from one of these objects to the link table using has_many.</p>
<p>Example: link table contains:</p>
<blockquote>
<pre><code>id link_id link_table resource_id
1 1 page 3
2 1 page 5
3 2 page 3
4 1 not_page 1
</code></pre>
</blockquote>
<p>Building the relationship from the resource side is easy enough:</p>
<pre><code>Resource->has_many(links => 'Link', 'resource_id');
</code></pre>
<p>but I haven't been able to get the corresponding relationship from the page side:</p>
<pre><code>Page->has_many(links => 'Link', 'link_id');
</code></pre>
<p>would get the not_page link</p>
<pre><code>Page->has_many(links => 'Link', {'foreign.link_id' => 'self.id', 'foreign.link_table' => 'page'});
</code></pre>
<p>gives an 'Invalid rel cond val page' error (which was not that surprising to me).</p>
<pre><code>Page->has_many(links => 'Link', {'foreign.link_id' => 'self.id', 'foreign.link_table' => '"page"'});
</code></pre>
<p>gives an 'Invalid rel cond val "page"' error. Throwing backslashes in didn't help.</p>
<p><a href="http://search.cpan.org/perldoc?DBIx::Class::Relationship::Base#add_relationship" rel="nofollow">DBIx::Class::Relationship::Base</a> says:</p>
<blockquote>
<p>The condition needs to be an <a href="http://search.cpan.org/perldoc?SQL%3A%3AAbstract" rel="nofollow">SQL::Abstract</a>-style representation of the join between the tables</p>
</blockquote>
<p>and I have tried various different options from there, such as:</p>
<pre><code>Page->has_many(links => 'Link', {'foreign.link_id' => 'self.id', 'foreign.link_table' => {'=', 'page'}});
</code></pre>
<p>but without any success at all.</p>
<p>If I added another field to the page table which always contains the value 'page' I could do</p>
<pre><code>Page->has_many(links => 'Link', {'foreign.link_id' => 'self.id', 'foreign.link_table' => 'self.what_table_am_i'});
</code></pre>
<p>but that's hardly an optimal solution.</p>
<p>Splitting the link table into a separate one for each type may be a possibility, but this is an existing project that is being considered for adaptation to DBIx::Class, and there may be other places where splitting a table into multiple other tables is more hassle than it's worth.</p>
http://stackoverflow.com/questions/576775/as-a-programmer-how-would-you-explain-imaginary-numbers/576806#5768060Answer by Cebjyre for As a programmer how would you explain imaginary numbers?Cebjyre2009-02-23T07:36:45Z2009-02-23T07:36:45Z<p>It might be easiest to stop trying to understand <em>how</em> a number can be a square root of a negative number, and just carry on with the assumption that it is.</p>
<p>So (using the <em>i</em> as the square root of -1):</p>
<pre><code>(3+5i)*(2-i)
= (3+5i)*2 + (3+5i)*(-i)
= 6 + 10i -3i - 5i * i
= 6 + (10 -3)*i - 5 * (-1)
= 6 + 7i + 5
= 11 + 7i
</code></pre>
<p>works according to the standard rules of maths (remembering that i squared equals -1 on line four).</p>
http://stackoverflow.com/questions/1627692/input-change-event-on-blur/1627710#1627710Comment by Cebjyre on Input change event on blurCebjyre2009-10-26T23:23:10Z2009-10-26T23:23:10ZHave you tried the onchange handler on the field itself - <a href="http://www.w3.org/TR/html401/interact/scripts.html#adef-onchange" rel="nofollow">w3.org/TR/html401/…</a> ?http://stackoverflow.com/questions/1365922/how-do-i-find-a-date-which-is-three-days-earlier-than-a-given-date-in-perl/1365946#1365946Comment by Cebjyre on How do I find a date which is three days earlier than a given date in Perl?Cebjyre2009-09-02T05:48:42Z2009-09-02T05:48:42ZIf you are going to do this, I would suggest using a time in the middle of the day as input to mktime, rather than sec,min,hour=0 to avoid any chance of problem with daylight savings, leap seconds etc, then throw away the time component from localtimehttp://stackoverflow.com/questions/1321157/whats-wrong-with-the-mysql-date-function/1322918#1322918Comment by Cebjyre on What's wrong with the MySQL DATE() function?Cebjyre2009-08-25T01:21:10Z2009-08-25T01:21:10ZThanks - it also looks like I can have <code>WHERE due IS NOT NULL AND ...</code> instead of the subquery, but I'm a bit hesitant to use <code>DATE</code> at all now.http://stackoverflow.com/questions/1231171/sha1-c-method-equivalent-in-perl/1231193#1231193Comment by Cebjyre on SHA1 C# method equivalent in Perl?Cebjyre2009-08-05T04:42:49Z2009-08-05T04:42:49ZMy reading of the question is that the asker has the C# code and wants equivalent Perl code, in which case using the CPAN module is a much better idea that writing new code (with some exceptions - learning about stuff being one reason to rewrite it)http://stackoverflow.com/questions/1058783/regular-expression-to-find-and-remove-duplicate-words/1212118#1212118Comment by Cebjyre on Regular expression to find and remove duplicate wordsCebjyre2009-07-31T13:46:45Z2009-07-31T13:46:45ZHow about "it can can't it"? \b picks up the boundary between letters and apostrophes in Perl-land, but we've already established that rules are different there :)http://stackoverflow.com/questions/1210143/how-to-undo-removal-of-a-file-in-svn/1210161#1210161Comment by Cebjyre on How to undo removal of a file in svnCebjyre2009-07-31T01:00:07Z2009-07-31T01:00:07ZIt depends on how the older revision of the file is added - if Ivo just copied a version of the file from somewhere else and added it as a new file, then svn blame would treat every line as coming from that addition, rather than the original revision it was entered.http://stackoverflow.com/questions/1169985/how-do-i-do-tab-completion-in-perls-termshell/1171024#1171024Comment by Cebjyre on How do I do tab completion in Perl's Term::Shell?Cebjyre2009-07-23T11:21:23Z2009-07-23T11:21:23ZSame here: sh[tab] expands to showhttp://stackoverflow.com/questions/1090867/why-doesnt-this-perl-regex-work/1090980#1090980Comment by Cebjyre on Why doesn't this Perl regex work?Cebjyre2009-07-07T14:12:07Z2009-07-07T14:12:07ZIt's probably worth pointing out to the original asker that the spaces in this regex are essentially ignored due to the x flaghttp://stackoverflow.com/questions/1090867/why-doesnt-this-perl-regex-work/1090895#1090895Comment by Cebjyre on Why doesn't this Perl regex work?Cebjyre2009-07-07T07:48:47Z2009-07-07T07:48:47ZAccording to his question, that's the point - it shouldn't report 'Fred at the beginning of the word', but it is.http://stackoverflow.com/questions/1029963/open-source-vs-microsoft-technologies-as-a-career-foundation/1030026#1030026Comment by Cebjyre on Open source vs Microsoft technologies as a career foundation.Cebjyre2009-06-23T01:28:51Z2009-06-23T01:28:51ZAs well as the ease/cheapness of acquiring open source tools privately, you probably have more options to make a recognisable impact in your own time with open source projects than with MS ones. As one example your options for a Google App Engine demo piece are currently limited to Python and Java - these options will probably widen over time, but if/when .Net enters the stack is anyone's guesshttp://stackoverflow.com/questions/866347/regex-to-match-www-example-com-only-if-http-not-present/866387#866387Comment by Cebjyre on Regex to match www.example.com only if http:// not presentCebjyre2009-05-15T10:06:27Z2009-05-15T10:06:27ZTo clarify a bit: \b matches if and only if the character on one side matches \w and the character on the other side matches \W (the imaginary characters before the beginning and after the end of the string match \W.)http://stackoverflow.com/questions/728625/how-do-i-add-text-to-graph-in-perls-gdgraph/728635#728635Comment by Cebjyre on How do I add text to graph in Perl's GD::Graph?Cebjyre2009-04-08T07:54:34Z2009-04-08T07:54:34ZAh, so you want the text overlayed on top of the actual chart area? It's probably worth clarifying that in your question.http://stackoverflow.com/questions/718926/modperl-headersin-not-working/727443#727443Comment by Cebjyre on mod_perl headers_in not workingCebjyre2009-04-08T01:54:05Z2009-04-08T01:54:05ZThat was how I was initially attempting to access it, I split it up to make it clearer which part was causing the problemshttp://stackoverflow.com/questions/718926/modperl-headersin-not-working/721326#721326Comment by Cebjyre on mod_perl headers_in not workingCebjyre2009-04-07T00:42:27Z2009-04-07T00:42:27ZThose warnings are going into the error log - there is nothing else after the log output I've recorded.http://stackoverflow.com/questions/703979/what-is-the-best-way-to-port-from-objective-c-to-cComment by Cebjyre on What is the best way to port from Objective-C to C++?Cebjyre2009-04-01T04:03:07Z2009-04-01T04:03:07ZI'll accept that as a possibility, but I'd say the conversion process would be likely to introduce more bugs in buggy code, so a tool to convert known C++ code into Obj C code would be handy from a learning perspective.