User Adam Crume - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T10:46:53Zhttp://stackoverflow.com/feeds/user/25498http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/890491/how-should-i-display-a-validation-error-detected-by-an-icelleditorvalidator0How should I display a validation error detected by an ICellEditorValidator?Adam Crume2009-05-20T22:03:48Z2009-12-09T09:39:44Z
<p>I have a TableViewer with an ICellModifier which seems to work fine. I set an ICellEditorValidator on one of the cell editors, though, and I can't get it to behave the way I would like. Here's my abbreviated code:</p>
<pre><code>cellEditors[1] = new TextCellEditor(table);
cellEditors[1].setValidator(new ICellEditorValidator() {
public String isValid(Object value) {
try {
Integer.parseInt((String) value);
return null;
} catch(NumberFormatException e) {
return "Not a valid integer";
}
}
});
</code></pre>
<p>It mostly works fine. However, there are two issues:</p>
<ol>
<li>The <code>modify</code> method of the cell
modifier receives a null as the new
value if the validator returns an
error. I can code to handle this,
but it doesn't seem right. Null
could be a valid value, for example,
if the user's picking a background
color and they picked transparent.
(This is a general issue, not specific to this example.)</li>
<li>The validator's error message is
never displayed to the user. This
is the big problem. I could also
add an ICellEditorListener and
display a dialog from the
<code>applyEditorValue</code> method if the
last value was invalid. Is this the
"proper" way to do it?</li>
</ol>
<p>By the way, for reasons beyond my control, I'm limited to the Eclipse 3.0 framework.</p>
http://stackoverflow.com/questions/247442/polymorphism-in-jax-rpc-web-services3Polymorphism in JAX-RPC web servicesAdam Crume2008-10-29T16:19:00Z2009-11-11T14:23:41Z
<p>I have a JAX-RPC (Java) web service that needs to return a complex polymorphic value. To be more specific, the class structure is something like this:</p>
<pre><code>abstract class Child {
}
class Question extends Child {
private String name;
// other fields, getters, and setters
}
class Section extends Child {
private String label;
private Child[] children;
// getters and setters
}
class Quiz {
private Child[] elements;
// getter and setter
}
</code></pre>
<p>My web service has a method that returns a Quiz, which of course may contain Questions and Sections which may contain Questions and other Sections, and so on and so forth. However, when I generate the WSDL, only Child and Quiz make it in. When I call the web service, I get back a Quiz element with the right number of children, but they're all Child elements, and they're all empty.</p>
<p>Is there a good way to make this work, short of just returning XML as a String?</p>
<p>Before anyone asks, due to circumstances beyond my control, I cannot use JAX-WS.</p>
http://stackoverflow.com/questions/1100869/how-to-properly-send-an-http-message-to-the-client1How to properly send an HTTP message to the clientAdam Crume2009-07-08T22:26:59Z2009-10-22T20:58:59Z
<p>I'm working on a RESTful web service in Java. I need a good way to send error messages to the client if something's wrong.</p>
<p>According to the <a href="http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/http/HttpServletResponse.html#setStatus(int,%20java.lang.String)" rel="nofollow">Javadoc</a>, HttpServletResponse.setStatus(int status, String message) is deprecated "due to ambiguous meaning of the message parameter."</p>
<p>Is there a preferred way to set the status message or "<a href="http://tools.ietf.org/html/rfc2616#section-6.1.1" rel="nofollow">reason phrase</a>" of the response? The sendError(int, String) method doesn't do it.</p>
<p>EDIT:
To clarify, I want to modify the HTTP status line, i.e. "HTTP/1.1 404 Not Found", not the body content. Specifically, I'd like to send responses like "HTTP/1.1 400 Missing customerNumber parameter".</p>
http://stackoverflow.com/questions/465748/using-xml-1-1-in-axis22Using XML 1.1 in Axis2Adam Crume2009-01-21T15:27:53Z2009-10-01T12:57:06Z
<p>I have a web service and client that are passing around strings containing character references such as &#26; (0x1A). These are invalid in XML 1.0 but valid in XML 1.1. Axis's XML parser is throwing exceptions because of these character references. Is there a way to force it to parse the response as XML 1.1, or to insert the XML declaration? (There currently isn't one.) I looked into using handlers, but my understanding is that they get invoked after the XML is already parsed.</p>
http://stackoverflow.com/questions/1483993/how-to-read-from-and-write-to-a-serial-port-ttys0-from-another-pc-via-ethernet/1484032#14840324Answer by Adam Crume for how to read from and write to a serial port (ttys0) from another pc via ethernet (eth0) on Ubuntu/Debian???Adam Crume2009-09-27T17:34:58Z2009-09-27T17:34:58Z<p>I don't know if Ubuntu has anything built-in, but you could run a couple of daemons using netcat. Of course, if you want it to be secure, you'd need to do a little more work.</p>
http://stackoverflow.com/questions/1481499/is-outlook-friendly-html-code-different-from-code-for-a-conventional-web-page/1481555#14815551Answer by Adam Crume for Is Outlook-friendly HTML code different from code for a conventional web page?Adam Crume2009-09-26T16:13:44Z2009-09-26T16:13:44Z<p>In Outlook 2007, it took a huge step backward: <a href="http://www.sitepoint.com/blogs/2007/01/10/microsoft-breaks-html-email-rendering-in-outlook/" rel="nofollow">http://www.sitepoint.com/blogs/2007/01/10/microsoft-breaks-html-email-rendering-in-outlook/</a></p>
<p>Instead of using IE for the rendering engine, it now uses Word. Only the most basic HTML is supported well or at all.</p>
http://stackoverflow.com/questions/1466905/hiding-sensitive-confidential-information-in-log-files/1466976#14669761Answer by Adam Crume for Hiding sensitive/confidential information in log filesAdam Crume2009-09-23T16:03:28Z2009-09-23T16:03:28Z<p>Regarding SQL statements specifically, if your language supports it, you should be using parameters instead of putting values in the statement itself. In other words:</p>
<pre><code>select * from customers where credit_card = ?
</code></pre>
<p>Then set the parameter to the credit card number.</p>
<p>Of course, if you plan to log SQL statements with parameters filled in, you'd need some other way to filter out sensitive data.</p>
http://stackoverflow.com/questions/1466410/how-to-have-subversion-store-an-empty-directory/1466439#14664398Answer by Adam Crume for How to have Subversion store an empty directoryAdam Crume2009-09-23T14:40:44Z2009-09-23T14:40:44Z<p>Add the folder to Subversion and give it an attribute of svn:ignore set to *.</p>
http://stackoverflow.com/questions/1451871/command-to-bulk-compress-all-files-folders-under-a-directory/1451921#14519211Answer by Adam Crume for Command to Bulk Compress All Files / Folders Under a DirectoryAdam Crume2009-09-20T20:16:53Z2009-09-20T20:16:53Z<pre><code>for f in `find -mindepth 1 -maxdepth 1 -type d`; do
tar -czf $f.tar.gz $f
done
</code></pre>
http://stackoverflow.com/questions/1445435/what-are-practical-applications-of-the-ao-algorithm/1445675#1445675-2Answer by Adam Crume for What are practical applications of the AO* algorithm?Adam Crume2009-09-18T16:44:23Z2009-09-18T16:44:23Z<p>Assuming you're referring to A*, two good applications are searching game trees and finding routes in road maps.</p>
http://stackoverflow.com/questions/1434787/algorithm-to-check-if-directional-graph-is-strongly-connected/1434834#14348340Answer by Adam Crume for Algorithm to check if directional graph is Strongly connectedAdam Crume2009-09-16T18:55:08Z2009-09-16T18:55:08Z<p>You can calculate the <a href="http://mathworld.wolfram.com/All-PairsShortestPath.html" rel="nofollow">All-Pairs Shortest Path</a> and see if any is infinite.</p>
http://stackoverflow.com/questions/1415569/string-table-encoding-vs-gzip-compression/1415643#14156430Answer by Adam Crume for String table encoding vs. gzip compressionAdam Crume2009-09-12T17:21:51Z2009-09-12T17:21:51Z<p>Simply using gzip would definitely be the easiest and probably sufficient. I'd recommend trying the string table and then gzipping that to see if you get slightly better compression than with gzip alone.</p>
http://stackoverflow.com/questions/1415592/what-is-the-major-difference-between-a-framework-and-a-toolkit/1415617#14156173Answer by Adam Crume for What is the major difference between a framework and a toolkit?Adam Crume2009-09-12T17:12:43Z2009-09-12T17:12:43Z<p>In my book, a framework provides a structure and encourages or requires that it be used in a certain way. This can be good if the developer wants to do things the framework's way, since it's easier for many thing to be automatic, but it can be bad if the developer wants to deviate from the framework's intent.</p>
<p>A toolkit, on the other hand, provides various tools that can be used together or separately. It's more flexible but requires more effort on the programmer's behalf.</p>
http://stackoverflow.com/questions/1411006/how-do-i-compare-two-longs-as-unsigned-in-java/1411062#14110621Answer by Adam Crume for How do I compare two longs as unsigned in Java?Adam Crume2009-09-11T14:03:11Z2009-09-11T14:03:11Z<p>If you're dealing with addition and subtraction, it doesn't matter whether you're using signed or unsigned types, as long as the arguments are both signed or both unsigned. If you need to compare a and b, compare a-b to 0.</p>
http://stackoverflow.com/questions/1402830/most-frequently-repeated-numbers-in-a-huge-list-of-numbers/1403108#14031081Answer by Adam Crume for Most frequently repeated numbers in a huge list of numbersAdam Crume2009-09-10T02:33:36Z2009-09-10T02:33:36Z<p>If the range of numbers is small (e.g. 0-1000), use an array. Otherwise, use a <code>HashMap<Integer, int[]></code>, where the values are all length 1 arrays. It should be much faster to increment a value in an array of primitives than create a new Integer each time you want to increment a value. You're still creating Integer objects for the keys, but that's hard to avoid. It's not feasible to create an array of 2^31-1 ints, after all.</p>
<p>If all of the input is normalized so you don't have values like 01 instead of 1, use Strings as keys in the map so you don't have to create Integer keys.</p>
http://stackoverflow.com/questions/1395177/regex-to-exclude-a-specific-string-constant/1395247#13952471Answer by Adam Crume for RegEx to exclude a specific string constantAdam Crume2009-09-08T17:31:16Z2009-09-08T17:31:16Z<p>You could use negative lookahead, or something like this:</p>
<pre><code>^([^A]|A([^B]|B([^C]|$)|$)|$).*$
</code></pre>
<p>Maybe it could be simplified a bit.</p>
http://stackoverflow.com/questions/1394370/what-gnu-make-substitute-do-you-recommend/1394379#1394379-5Answer by Adam Crume for What GNU make substitute do you recommend?Adam Crume2009-09-08T14:36:28Z2009-09-08T14:36:28Z<p>Personally, I prefer just using Bash scripts.</p>
http://stackoverflow.com/questions/1379907/is-a-hash-result-ever-the-same-as-the-source-value/1379996#13799961Answer by Adam Crume for Is a hash result ever the same as the source value?Adam Crume2009-09-04T15:37:28Z2009-09-04T15:37:28Z<p>Given a good hashing algorithm, one that returns a seemingly random output, I believe there should be on average one input that gives itself as the output. Let's say the hash can give N possible outputs. That means there are N possible inputs for which this is possible. For each of those, the odds of the output matching the input is 1/N, so there the expected number of fixed points is N*1/N, or 1.</p>
http://stackoverflow.com/questions/1373905/is-a-a-href-around-an-object-ie-flash-just-a-bad-idea-or-is-there-actually-a-s/1373952#13739522Answer by Adam Crume for Is a a-href around an object (ie. flash) just a bad idea or is there actually a standard about how a click on such an object has to be handled?Adam Crume2009-09-03T14:59:09Z2009-09-03T14:59:09Z<p>I would recommend against it. My computer is running 64-bit Linux, and Flash behaves a little funny in Firefox. (For one thing, it acts as though the z-index is always greater than everything else.) I haven't tested it, but I suspect it wouldn't behave well. Bottom line is that this is the sort of thing you'd want to test on all browsers on all platforms, and it'd just be better to avoid it if possible.</p>
http://stackoverflow.com/questions/1311790/most-elegant-way-to-extract-data-from-multiple-lists-into-a-new-one-in-java/1312401#13124011Answer by Adam Crume for Most elegant way to extract data from multiple lists into a new one in Java?Adam Crume2009-08-21T14:46:57Z2009-08-21T14:46:57Z<p>Remove the generic argument from your array, and your loop should work (although you'll get a warning):</p>
<pre><code>for (List<SomeType> rgSrc : new List[] { a.getOneSet(), a.getAnotherSet() } ) {
for (SomeType src : rgSrc) {
rgResults.add(B.convert(src));
}
}
</code></pre>
http://stackoverflow.com/questions/1312249/what-is-the-most-boring-and-hard-part-of-your-job/1312369#13123690Answer by Adam Crume for What is the most boring and hard part of your job?Adam Crume2009-08-21T14:41:15Z2009-08-21T14:41:15Z<p>Paperwork, paperwork, paperwork! I have to have a code review (good thing), risk assessment, 3 test plans, 3 test result documents, QA signoff, UAT signoff, and a checklist saying I did all of the aforementioned before I can put any change (even a typo fix) into production. Then I have to send out a notification that I put in a change and document that.</p>
http://stackoverflow.com/questions/1307092/java-applet-fails-to-load-with-msjvm/1307810#13078100Answer by Adam Crume for Java Applet fails to load with MSJVMAdam Crume2009-08-20T17:52:57Z2009-08-20T17:52:57Z<p>Microsoft's JVM was never Java-compliant: <a href="http://en.wikipedia.org/wiki/Microsoft%5FJava%5FVirtual%5FMachine" rel="nofollow">http://en.wikipedia.org/wiki/Microsoft%5FJava%5FVirtual%5FMachine</a></p>
http://stackoverflow.com/questions/1306827/which-is-better-more-efficient-check-for-bad-values-or-catch-exceptions-in-java/1306912#13069123Answer by Adam Crume for Which is better/more efficient: check for bad values or catch Exceptions in JavaAdam Crume2009-08-20T15:20:05Z2009-08-20T15:20:05Z<p>Purely from an efficiency standpoint, and given your code examples, I think it depends on how often you expect to see bad values. If bad values are not too uncommon, it's faster to do the comparison because exceptions are expensive. If bad values are very rare, however, it may be faster to use the exception.</p>
<p>The bottom line, though, is that if you're looking for performance, profile your code. This block of code may not even be a concern. If it is, then try it both ways and see which is faster. Again, it depends on how often you expect to see bad values.</p>
http://stackoverflow.com/questions/1289415/what-is-a-good-r-value-when-comparing-2-signals-using-cross-correlation/1289568#12895680Answer by Adam Crume for What is a "good" R value when comparing 2 signals using cross correlation?Adam Crume2009-08-17T18:23:41Z2009-08-17T18:23:41Z<p>Since they should be equal, the correlation coefficient should be high, between .99 and 1. I would take the max and abs functions out of your calculation, too.</p>
<p>EDIT:
I spoke too soon. I confused cross-correlation with correlation coefficient, which is completely different. My answer might not be worth much.</p>
http://stackoverflow.com/questions/1285279/java-synchronization-issue-with-numberformat/1285297#12852971Answer by Adam Crume for Java: Synchronization issue with NumberFormat ?Adam Crume2009-08-16T20:39:41Z2009-08-16T20:39:41Z<p>Even if format is the only method you ever call, it's still not thread-safe. In fact, we've had bugs at work due to this. We usually either create NumberFormat objects on the fly, or use a ThreadLocal as Gerco suggested. If you wanted to get fancy, you could subclass NumberFormat and in the format method, either synchronize before calling format on a delegate NumberFormat or use a ThreadLocal to retrieve a delegate.</p>
<p>However, I believe the most straightforward way, especially if you're going to format/parse several numbers in a row, is to use a ThreadLocal manually.</p>
http://stackoverflow.com/questions/481539/generated-exception-classes-with-axis20Generated exception classes with Axis2Adam Crume2009-01-26T21:54:04Z2009-08-14T13:22:11Z
<p>I have several web services in the same package that throw a custom exception. The problem is that the generated exception class contains a reference to the web service that generated it, so I can't use the same exception name across multiple web services. Is there a way to make Axis2 generate the exception classes inside the web service classes, the same way it does for other objects? I'm using ADB. I suspect that maybe there's a -E parameter, but since those aren't all documented, it's hard to say.</p>
http://stackoverflow.com/questions/1160302/monitoring-battery-or-power-supply-of-laptop-from-java/1160592#11605920Answer by Adam Crume for Monitoring battery or power supply of laptop from javaAdam Crume2009-07-21T17:29:23Z2009-07-21T17:29:23Z<p>A quick and dirty way to handle this is call a native program (via Runtime.exec(...)) and parse the output. On Windows, the native program might be VBScript that uses WMI.</p>
http://stackoverflow.com/questions/1140450/replace-character-in-sql-results/1140539#11405392Answer by Adam Crume for Replace character in SQL resultsAdam Crume2009-07-16T21:51:50Z2009-07-16T21:51:50Z<p>I would say there's a good chance the character is a single-tick "smart quote" (I hate the name). The smart quotes are characters 91-94 (using a Windows encoding), or Unicode U+2018, U+2019, U+201C, and U+201D.</p>
http://stackoverflow.com/questions/1128305/regular-expression-to-identify-camelcased-words/1128326#112832610Answer by Adam Crume for Regular expression to identify CamelCased wordsAdam Crume2009-07-14T22:04:34Z2009-07-16T15:10:35Z<p>([A-Z][a-z0-9]+)+</p>
<p>Assuming English. Use appropriate character classes if you want it internationalizable. This will match words such as "This". If you want to only match words with at least two capitals, just use</p>
<p>([A-Z][a-z0-9]+){2,}</p>
<p>UPDATE:
As I mentioned in a comment, a better version is:</p>
<pre><code>[A-Z]([A-Z0-9]*[a-z][a-z0-9]*[A-Z]|[a-z0-9]*[A-Z][A-Z0-9]*[a-z])[A-Za-z0-9]*
</code></pre>
<p>It matches strings that start with an uppercase letter, contain only letters and numbers, and contain at least one lowercase letter and at least one other uppercase letter.</p>
http://stackoverflow.com/questions/1130709/detect-if-system-clock-changed/1131214#11312140Answer by Adam Crume for Detect if system clock changed?Adam Crume2009-07-15T12:50:14Z2009-07-15T12:50:14Z<p>I haven't tried this, but it might work to have a background thread which wakes up once a minute, gets the current time, and compares it to what it last saw. Theoretically, the difference should be very close to one minute. If it differs much from that, that would mean the clock changed.</p>
http://stackoverflow.com/questions/1603012/java-is-there-a-framework-that-allows-dynamically-loading-and-unloading-of-jars/1603081#1603081Comment by Adam Crume on java: is there a framework that allows dynamically loading and unloading of jars (but not osgi)?Adam Crume2009-10-21T20:20:20Z2009-10-21T20:20:20ZUnloading is not quite that simple. All objects contain an implicit reference to their Class object, which contains a reference to the ClassLoader, which contains references to all the classes it loaded. You have to make sure all of that can be garbage collected before any of it can.http://stackoverflow.com/questions/1466905/hiding-sensitive-confidential-information-in-log-files/1466976#1466976Comment by Adam Crume on Hiding sensitive/confidential information in log filesAdam Crume2009-09-25T18:18:37Z2009-09-25T18:18:37ZThat's why I prefaced it with "Regarding SQL statements specifically". It wasn't intended to be 100% general.http://stackoverflow.com/questions/1456784/java-query-active-directory-information-with-minimal-user-information/1456932#1456932Comment by Adam Crume on Java: Query Active Directory information with minimal user informationAdam Crume2009-09-21T21:25:12Z2009-09-21T21:25:12ZWe have a similar setup. I second this answer.http://stackoverflow.com/questions/1451871/command-to-bulk-compress-all-files-folders-under-a-directory/1451911#1451911Comment by Adam Crume on Command to Bulk Compress All Files / Folders Under a DirectoryAdam Crume2009-09-21T14:44:41Z2009-09-21T14:44:41Z@opello: Since the find command is finding '.', wouldn't it create a file called '..tar.gz'? ls wouldn't show that by default.http://stackoverflow.com/questions/1451871/command-to-bulk-compress-all-files-folders-under-a-directory/1451911#1451911Comment by Adam Crume on Command to Bulk Compress All Files / Folders Under a DirectoryAdam Crume2009-09-20T20:17:41Z2009-09-20T20:17:41ZWithout -mindepth 1, won't it create an archive for the current directory?http://stackoverflow.com/questions/1445435/what-are-practical-applications-of-the-ao-algorithm/1445675#1445675Comment by Adam Crume on What are practical applications of the AO* algorithm?Adam Crume2009-09-18T16:52:12Z2009-09-18T16:52:12ZIf AO* is a separate algorithm, then I don't think I'd call it famous. I've never heard of it, and searching Google returns 30 times as many results for a* algorithm than ao* algorithm.http://stackoverflow.com/questions/1410970/getting-rid-of-non-ansi-outer-joins-how-do-i-setup-a-windows-search/1411001#1411001Comment by Adam Crume on Getting rid of non ansi outer joins "=*" "*=" -- how do I setup a windows searchAdam Crume2009-09-11T14:09:34Z2009-09-11T14:09:34ZWindows search is severely broken. Even when searching for "normal" text inside ASCII text files, I've seen it not return results that were clearly there.http://stackoverflow.com/questions/1408569/why-does-double-nan-equal-itself-when-wrapped-in-a-double-instance/1408605#1408605Comment by Adam Crume on Why does Double.NaN equal itself when wrapped in a Double instance?Adam Crume2009-09-11T01:47:00Z2009-09-11T01:47:00ZIf you look at the Javadoc (<a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Double.html#equals(java.lang.Object" rel="nofollow">java.sun.com/j2se/1.4.2/…</a>)), you'll see that's clearly not the case. "two double values are considered to be the same if and only if the method doubleToLongBits(double) returns the identical long value when applied to each."http://stackoverflow.com/questions/309300/defend-php-convince-me-it-isnt-horrible/309681#309681Comment by Adam Crume on Defend PHP; convince me it isn't horribleAdam Crume2009-09-09T23:41:47Z2009-09-09T23:41:47ZYou asked what alternative people have. Well, what about Java (JEE)?http://stackoverflow.com/questions/1394370/what-gnu-make-substitute-do-you-recommend/1394379#1394379Comment by Adam Crume on What GNU make substitute do you recommend?Adam Crume2009-09-08T15:39:39Z2009-09-08T15:39:39ZApparently my answer is a bit controversial. I know I didn't mention it, but I would agree that Bash scripts aren't good for monstrous projects. I was assuming the project was smallish. I would also like to point out that mos is right, make is not cross-platform. Makefiles ultimately depend on running binaries by name, and that often includes basic *nix commands like rm that don't exist in Windows (unless you install a compatibility layer like Cygwin).http://stackoverflow.com/questions/1394370/what-gnu-make-substitute-do-you-recommend/1394379#1394379Comment by Adam Crume on What GNU make substitute do you recommend?Adam Crume2009-09-08T14:42:12Z2009-09-08T14:42:12ZOuch, is there a reason I was downvoted? Comment, please.http://stackoverflow.com/questions/1374723/remembering-the-original-index-of-elements-after-sorting/1375040#1375040Comment by Adam Crume on Remembering the "original" index of elements after sorting Adam Crume2009-09-03T18:30:31Z2009-09-03T18:30:31ZTo be more precise, instead of saying that it would take at least O(N) space, I'd say it takes O(N log(N)) space.http://stackoverflow.com/questions/1373905/is-a-a-href-around-an-object-ie-flash-just-a-bad-idea-or-is-there-actually-a-s/1373952#1373952Comment by Adam Crume on Is a a-href around an object (ie. flash) just a bad idea or is there actually a standard about how a click on such an object has to be handled?Adam Crume2009-09-03T16:44:32Z2009-09-03T16:44:32Z@Niko: Well, the title of the question is: "Is a a-href around an object (ie. flash) a bad idea?"http://stackoverflow.com/questions/1364927/code-golf-reverse-quine/1365086#1365086Comment by Adam Crume on Code golf: Reverse quineAdam Crume2009-09-02T18:47:42Z2009-09-02T18:47:42ZQuines aren't supposed to read their own source code from the filesystem.http://stackoverflow.com/questions/1289415/what-is-a-good-r-value-when-comparing-2-signals-using-cross-correlation/1289568#1289568Comment by Adam Crume on What is a "good" R value when comparing 2 signals using cross correlation?Adam Crume2009-08-18T18:37:43Z2009-08-18T18:37:43ZDid you mean to comment on tom10's answer?