Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
74 views

Should I delete the record of my site with WWW in it?

I currently have both urls of my site listed in google and yahoo siteexplorer etc, there is some difference in the pages that are indexed. Do I need both, or can I delete the one with the www at the ...
3
votes
3answers
704 views

Canonicalize NFL team names

This is actually a machine learning classification problem but I imagine there's a perfectly good quick-and-dirty way to do it. I want to map a string describing an NFL team, like "San Francisco" or ...
2
votes
1answer
590 views

Compute canonical cover using armstrong's axioms

question:Determine the canonical cover using Armstrong’s Axioms. Give the axioms that you use to arrive at each step. R = (A, B, C, D, E, F) Fdependencies = {A -> B, A -> C, CD -> E, CD -> F, B -> ...
2
votes
2answers
1k views

XML Canonicalization algorithm gives two difference results when called directly than when called as part of an xml digital signature?

I'm getting two different hashes of the same xml document when I directly canonicalize some xml than when I perform a digital signature on it which also performs the same canonicalization algoririth ...
2
votes
3answers
571 views

Canonical form of += operator for classes

I know that it's a good idea to make as much of the interface of a class non-member non-friend as possible, and I've just realised that for my 3D vector class, 'Vector3', I can move the +=, -= and so ...
1
vote
2answers
978 views

Which is the proper XML exclusive canonicalization?

I'm using xmlseclibs to try and sign a SOAP document, but it does not seem to canonicalize things in the same way depending on whether I'm signing or validating. I'll give you an example. This is the ...
1
vote
5answers
881 views

How can I canonicalize Windows file paths in Perl?

Update: I can make this a simpler problem to solve: I want to figure out what the correct regex would be to substitute any single occurrence of a back slash with two back slashes. I want to turn ...
0
votes
6answers
619 views

Are there canonical-forms for database queries?

Say I want to make an "Optimized query generator". Basically a SQL query optimizer that is a lot better than what can be put in an SQL server based on time/space limitations. It would take a query and ...
0
votes
2answers
360 views

What is the general complexity of building a canonical language representation?

It is often handy to have a canonical representation of a language (in my case they are usually domain specific languages); however, I believe there are strict limits on the expressiveness of the ...