User Augusto Radtke - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T22:25:46Zhttp://stackoverflow.com/feeds/user/18623http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/514120/how-can-i-avoid-the-bluish-border-when-clicking-a-hyperlinkbutton-in-silverlight0How can I avoid the bluish border when clicking a HyperlinkButton in Silverlight?Augusto Radtke2009-02-05T01:06:53Z2009-08-14T14:58:23Z
<p>I have a Silverlight menu for my application with an image as the background. I use some empty HyperlinkButton at a specific position and size to simulate a real button on the image (think as a HTML image-map):</p>
<pre><code><HyperlinkButton x:Name="Portfolio" Width="86" Height="40" Canvas.Top="50" NavigateUri="/portfolio"/>
<HyperlinkButton x:Name="Analysis" Width="79" Height="40" Canvas.Top="50" Canvas.Left="124" NavigateUri="/analysis" BorderThickness="0"/>
<HyperlinkButton x:Name="News" Width="77" Height="40" Canvas.Top="50" Canvas.Left="240" NavigateUri="/news"/>
<HyperlinkButton x:Name="Questions" Width="80" Height="40" Canvas.Top="50" Canvas.Left="357" NavigateUri="/questions"/>
<HyperlinkButton x:Name="Companies" Width="80" Height="40" Canvas.Top="50" Canvas.Left="477" NavigateUri="/companies"/>
</code></pre>
<p>The problem is when I click these buttons it shows a bluish border corresponding to the hyperlink button area during the click event. There is a way I can avoid showing that?</p>
http://stackoverflow.com/questions/224475/is-it-possible-to-use-full-text-search-fts-with-linq13Is it possible to use Full Text Search (FTS) with LINQ?Augusto Radtke2008-10-22T04:16:55Z2009-07-31T13:12:47Z
<p>I wonder if is possible to use FTS with LINQ using .NET Framework 3.5. I'm searching around the documentation that I didn't find anything useful yet.</p>
<p>Does anyone have any experience on this?</p>
http://stackoverflow.com/questions/521107/how-can-i-unit-test-handleunknownaction-of-an-asp-net-mvc-controller0How can I unit test HandleUnknownAction() of an ASP.NET MVC Controller?Augusto Radtke2009-02-06T16:55:00Z2009-06-23T00:52:51Z
<p>I have the following HandleUnknownAction set on my base controller class:</p>
<pre><code>protected override void HandleUnknownAction(string action)
{
Response.Redirect("/");
}
</code></pre>
<p>How can I unit test that? Another point, is that way to handle the unknown action correct? Seems that calling RedirectToAction() would be more correct but the HandleUnknownAction doesn't have a return value.</p>
<p>The far I could get to test that is:</p>
<pre><code>[Test]
public void TestHandleUnknownAction()
{
ctroler.ActionInvoker.InvokeAction(ctroler.ControllerContext, "unknown");
}
</code></pre>
<p>I'm stuck at it.</p>
http://stackoverflow.com/questions/787533/is-pragma-once-a-safe-include-guard/788928#7889282Answer by Augusto Radtke for Is #pragma once a safe include guard?Augusto Radtke2009-04-25T13:32:36Z2009-04-25T13:32:36Z<p>I use it and I'm happy with it, as I have to type much less to make a new header. It worked fine for me in three platforms: Windows, Mac and Linux. </p>
<p>I don't have any performance information but I believe that the difference between #pragma and the include guard will be nothing comparing to the slowness of parsing the C++ grammar. That's the real problem. Try to compile the same number of files and lines with a C# compiler for example, to see the difference.</p>
<p>In the end, using the guard or the pragma, won't matter at all.</p>
http://stackoverflow.com/questions/710212/there-is-a-way-to-access-the-previous-row-value-in-a-select-statement2There is a way to access the "previous row" value in a SELECT statement?Augusto Radtke2009-04-02T15:28:12Z2009-04-02T18:51:50Z
<p>I need to calculate the difference of a column between two lines of a table, there is any way I can do this directly in SQL? I'm using Microsoft SQL Server 2008.</p>
<p>I'm looking for something like this:</p>
<pre><code>SELECT value - (previous.value) FROM table
</code></pre>
<p>Imagining that the "previous" variable reference the latest selected row. Of course that with a select like this I will end up with n-1 rows selected in a table with n rows, that's not a probably, actually is exactly what I need.</p>
<p>Is that possible in some way?</p>
http://stackoverflow.com/questions/595601/delphis-interoperability-with-net/595647#5956472Answer by Augusto Radtke for Delphi's interoperability with .NETAugusto Radtke2009-02-27T17:04:05Z2009-02-27T17:04:05Z<p>You can compile your Delphi code for .NET using latest <a href="http://www.codegear.com/products/delphi/prism" rel="nofollow">Delphi Prism</a> (ie 2009). It is possible to make a .NET assembly out of Delphi files and them extend that classes using regularly C#.</p>
<p>If your classes are sealed you can also use extension methods.</p>
http://stackoverflow.com/questions/595062/networking-framework-for-c-udp-or-tcp/595096#5950960Answer by Augusto Radtke for Networking Framework for C++ (UDP or TCP)?Augusto Radtke2009-02-27T14:54:54Z2009-02-27T14:54:54Z<p>Try <a href="http://www.boost.org/doc/libs/1%5F38%5F0/doc/html/boost%5Fasio.html" rel="nofollow">Boost.Asio</a> perhaps.</p>
http://stackoverflow.com/questions/573543/is-java-due-for-a-reboot/573553#5735531Answer by Augusto Radtke for Is Java due for a reboot?Augusto Radtke2009-02-21T18:56:44Z2009-02-21T18:56:44Z<p>Most of what you ask is for an API change instead of the language itself. You can always design your own base class library and start with that, if you are not happy with the current one. </p>
<p>Away from telling you to do that, but you can always look for <em>alternatives</em> before trying to fix the current issues, there is also .NET that have a lot of features of what you ask for.</p>
http://stackoverflow.com/questions/549274/what-programming-languages-and-language-features-are-under-10/549480#5494800Answer by Augusto Radtke for What programming languages and language features are under 10?Augusto Radtke2009-02-14T18:14:55Z2009-02-14T18:14:55Z<p>The AgentSpeak(L) language for programming intelligent agents. It is based on Prolog (which is very old) but there is some very specific features, and it's brand new.</p>
<p>You can check a fully interpreter called <a href="http://jason.sf.net" rel="nofollow">Jason</a>. </p>
http://stackoverflow.com/questions/544382/where-did-cs-attributes-come-from/544538#5445380Answer by Augusto Radtke for Where did C#'s attributes come from?Augusto Radtke2009-02-13T02:39:18Z2009-02-13T02:39:18Z<p>It's an old concept, metadata. Check out <a href="http://stackoverflow.com/questions/445332/what-was-the-historical-precursor-for-net-attributes">this</a> question, it's the same of yours.</p>
http://stackoverflow.com/questions/544462/global-variables-and-scope-c/544522#5445221Answer by Augusto Radtke for Global variables and scope - C++Augusto Radtke2009-02-13T02:32:25Z2009-02-13T02:32:25Z<p>The kind of behavior you describe seems more like a problem when you have a DLL, but you are saying that your library is static, which looks weird. </p>
<p>Anyway, take care with global variables in multiple libraries, if you have a shared code library (DLL) you'll get a value for each part. Check out <a href="http://stackoverflow.com/questions/75701/what-happens-to-global-variables-declared-in-a-dll">this</a> question, can be useful.</p>
http://stackoverflow.com/questions/539908/interprocess-communication-between-c-application-and-unmanaged-c-application/539935#5399350Answer by Augusto Radtke for Interprocess Communication Between C# application and unmanaged C++ applicationAugusto Radtke2009-02-12T03:46:30Z2009-02-12T03:46:30Z<p>I would say sockets <em>and</em> a messaging system. Check our for <a href="http://code.google.com/p/protobuf/" rel="nofollow">Google Protocol Buffers</a>.</p>
http://stackoverflow.com/questions/539877/should-non-public-functions-be-unit-tested-and-how/539923#5399232Answer by Augusto Radtke for Should non-public functions be unit tested and how?Augusto Radtke2009-02-12T03:42:02Z2009-02-12T03:42:02Z<p>I would say to use a code coverage tool to check if these function are already tested somehow. </p>
<p>Theoretically if your public API is passing all the tests then the private functions are working fine, as long as every possible scenario is covered. That's the main problem, I think.</p>
<p>I know there is tools for that working with C/C++. <a href="http://www.coveragemeter.com/" rel="nofollow">CoverageMeter</a> is one of them.</p>
http://stackoverflow.com/questions/539859/how-to-create-real-life-robots/539881#5398810Answer by Augusto Radtke for How to create real-life robots?Augusto Radtke2009-02-12T03:24:50Z2009-02-12T03:24:50Z<p>Is probably easier to get a more high-level language to describe the robot's behaviors and intelligence and let the low level language to the actions (move arm, walk, stop). There is a lot of research in what is called BDI architecture for intelligent agents, google for it.</p>
<p>You can find more about at this <a href="http://jason.sf.net" rel="nofollow">site</a>, it's a DSL for describing agent behavior made in Java. It's called Jason interpreter and the language is AgentSpeak(L).</p>
http://stackoverflow.com/questions/539854/how-do-i-dev-test-effectively/539866#5398662Answer by Augusto Radtke for How do I dev test effectively?Augusto Radtke2009-02-12T03:18:37Z2009-02-12T03:18:37Z<p>Looks like unit testing and code reviewing through unit testing. I think the developer should do that, for me the QA job is more for <em>validation</em> than <em>verification</em>. </p>
<p>They should take care of more high level tests, IMO. </p>
http://stackoverflow.com/questions/539513/client-server-if-the-clients-announce-their-presence-to-the-server-and-then-t/539830#5398300Answer by Augusto Radtke for Client - Server: If the clients announce their presence to the server, and then the server takes over, is it still client server, or is it P2P?Augusto Radtke2009-02-12T03:06:11Z2009-02-12T03:06:11Z<p>Read <a href="http://www.codeplex.com/AppArchGuide" rel="nofollow">this</a> for better understanding of available architecture options.</p>
http://stackoverflow.com/questions/539694/what-metrics-would-be-usable-to-determine-expertise-level-in-a-particular-program/539810#5398100Answer by Augusto Radtke for What metrics would be usable to determine expertise level in a particular programming languageAugusto Radtke2009-02-12T02:50:50Z2009-02-12T02:50:50Z<p>WTF/s * LOC, smaller is best.</p>
http://stackoverflow.com/questions/537577/where-do-you-keep-your-code/539742#5397420Answer by Augusto Radtke for Where do you keep your code?Augusto Radtke2009-02-12T02:18:11Z2009-02-12T02:18:11Z<p>In a memory-mapped partition, that's way better than dying with I/O, if you want it secure, commit it!</p>
http://stackoverflow.com/questions/539703/what-are-the-advantages-of-using-an-imageless-button/539709#5397094Answer by Augusto Radtke for What are the advantages of using an imageless button?Augusto Radtke2009-02-12T02:04:47Z2009-02-12T02:04:47Z<p>I think in this specific case I can only see the advantage that the buttons can be programatically generated. If you don't know what your button will say it's probably easy to make this way than generating it using somekind of image library generator.</p>
<p>Also changing one CSS can make you change the look-and-feel of <em>all</em> buttons at once. Using image buttons you'll need to update everyone and each of images.</p>
http://stackoverflow.com/questions/539668/help-understanding-academic-notation-for-type-system/539701#5397010Answer by Augusto Radtke for Help understanding academic notation for type systemAugusto Radtke2009-02-12T01:59:06Z2009-02-12T01:59:06Z<p>Looks like <a href="http://en.wikipedia.org/wiki/Formal_semantics_of_programming_languages" rel="nofollow">formal semantics</a>, and in this case of syntax probably <a href="http://en.wikipedia.org/wiki/Denotational_semantics" rel="nofollow">denotational semantics</a>, but some symbols look pretty much cryptic. </p>
http://stackoverflow.com/questions/539549/do-i-always-have-to-check-for-null-after-a-safe-cast/539577#5395775Answer by Augusto Radtke for Do I *always* have to check for null after a safe cast?Augusto Radtke2009-02-12T00:56:15Z2009-02-12T01:02:17Z<p>That will depend on your code contract. </p>
<p>If you know for sure that is not null you don't need to check. You can introduce an assert to check only on debugging mode. I normally only check for null after an as if I don't make a check with is before, otherwise I trust my contract, and sometimes I use assert.</p>
<pre><code>var button = sender is Button ? sender as Button
: throw new Exception("Not a button");
</code></pre>
<p>You can try something like this, if you want an Exception different from bad cast. Again, a formal code contract would be better. Check out <a href="http://research.microsoft.com/en-us/projects/contracts/" rel="nofollow">this</a> library.</p>
http://stackoverflow.com/questions/537969/task-life-cycle/537992#5379921Answer by Augusto Radtke for Task Life CycleAugusto Radtke2009-02-11T17:58:35Z2009-02-11T21:03:30Z<p>I like to keep it simple:</p>
<ul>
<li>Pending</li>
<li>In Risk</li>
<li>In Production</li>
<li>Complete</li>
</ul>
<p>I also have very specific visual aid colors for these tasks, when I list them in systems or Excel spreadsheets, as show above:</p>
<p><img src="http://i44.tinypic.com/14dhp5l.png" alt="Task Colors" /></p>
<p>A detailed view of each one:</p>
<p><strong>Pending</strong> is for tasks I'm stil not working on it, mainly because it <em>requires</em> some external event to start it, like some approval or just because I'm not sure that I'll make it anyway.</p>
<p><strong>In Risk</strong> is for tasks that I did start but they are getting close to a due date and I'm quite away from finishing it. If I'm getting too much In Risk tasks I start to priorize them to get them done in time.</p>
<p><strong>In Production</strong> is a regular task I'm working on. It maybe doesn't have a due date so it will never get In Risk, or maybe if I delay too much I set a due date and that task can change to In Risk.</p>
<p><strong>Complete</strong> is pretty much self-explanatory.</p>
http://stackoverflow.com/questions/536771/with-this-technology-would-it-be-possible-to-compile-and-run-silverlight-il-in-f/536833#5368331Answer by Augusto Radtke for With this technology, would it be possible to compile and run silverlight IL in Flash?Augusto Radtke2009-02-11T13:47:21Z2009-02-11T14:01:32Z<p>Probably is possible, at the first time, but just <em>compile</em>. Let me see if I got where you want go.</p>
<p>Mono can run on-the-fly code, but even now that there is a <a href="http://www.mono-project.com/CsharpRepl" rel="nofollow">C# Shell</a> it first compiles to IL (and maybe JIT) and after that it executes. With that technology will be possible to make Flash generate .NET assemblies, but not run them!</p>
<p>We will need a .NET IL to AS3 bytecode converter in order to run .NET assemblies in Flash. Probably you are thinking in this, right? But that's not crazy at all, it's <em>compatibility</em>! </p>
http://stackoverflow.com/questions/535438/in-a-unix-environment-is-there-a-way-to-programmatically-call-which-in-c/535459#5354591Answer by Augusto Radtke for In a Unix Environment, is there a way to programmatically call Which in C?Augusto Radtke2009-02-11T04:43:57Z2009-02-11T04:43:57Z<p>Not that I'm aware off, but you can mimic the which functionality on a helper function. I'll need to search over all paths in the PATH environment variable for a file named as your command, and after that check if that file is executable, then you probably found your executable.</p>
<p>To get the PATH variable you can use getenv(). You'll need to split it with strtok(). For searching a directory you can use opendir(), will be something like this:</p>
<pre><code>#include <sys/types.h>
#include <dirent.h>
...
DIR *dir;
struct dirent *dp;
...
if ((dir = opendir (".")) == NULL) {
perror ("Cannot open .");
exit (1);
}
while ((dp = readdir (dir)) != NULL) {
}
...
</code></pre>
<p>Check for dirent struct on the readdir() function man page.</p>
http://stackoverflow.com/questions/535266/threading-and-gui-elements-in-c/535278#5352781Answer by Augusto Radtke for Threading and GUI elements in C#Augusto Radtke2009-02-11T03:11:24Z2009-02-11T03:11:24Z<p>I believe you are using Windows Forms. Check out <a href="http://www.yoda.arachsys.com/csharp/threads/winforms.shtml" rel="nofollow">this</a> text about it, there is some remarks that you have to take care before making a thread accessing forms elements directly.</p>
<p>If this is not exactly your problem, please elaborate more the question.</p>
http://stackoverflow.com/questions/534737/best-way-to-store-survey-data/534773#5347730Answer by Augusto Radtke for best way to store survey data?Augusto Radtke2009-02-10T23:30:40Z2009-02-10T23:30:40Z<p>Both seem fine, and that will depend in what you expect your users to do or what you expect to your users to behave. </p>
<p>The first method will allow users to return back (even after closing the browser) to finish the survey. That's a good point, if your survey were big and users can't finish it before get lost in something else, but that's also a negative point if you want to force the users to finish, I mean, if you don't want incomplete surveys.</p>
<p>The second method forces the user to finish the survey at the same time they start. That's a good point if your survey is quick and you want complete data about them, but it's bad if your survey is long and normally the user gets distracted before finishing it.</p>
<p>I would say that the number of questions of each of pages will be defining factor to choose between the two methods for me, perhaps it can be for you too.</p>
http://stackoverflow.com/questions/533386/asp-net-mvc-view-architecture/533427#5334270Answer by Augusto Radtke for ASP.Net MVC View ArchitectureAugusto Radtke2009-02-10T17:50:17Z2009-02-10T17:50:17Z<p>Just make the return action be like this:</p>
<pre><code>return View("Profile/Index");
</code></pre>
<p>That will make the trick for the controller find the "subview". For mapping the URLs to the right controller you can use the routing system, but ignore the subview, just map to the right controller and let the controller handle the correct view.</p>
http://stackoverflow.com/questions/530287/linux-c-programming-how-can-i-write-utf-8-encoded-text-to-a-file/530395#5303951Answer by Augusto Radtke for Linux & C-Programming: How can I write utf-8 encoded text to a file? Augusto Radtke2009-02-09T22:41:01Z2009-02-09T22:41:01Z<p>Yes, you can do it with glibc. They call it multibyte instead of UTF-8, because it can handle more than one encoding type. Check out <a href="http://www.gnu.org/software/libc/manual/html_node/Character-Set-Handling.html" rel="nofollow">this</a> part of the manual. </p>
<p>Look for functions that start with the prefix mb, and also function with wc prefix, for converting from multibyte to wide char. You'll have to set the locale first with setlocale() to UTF-8 so it chooses this implementation of multibyte support.</p>
<p>If you are coming from an Unicode file I believe the function you looking for is wcstombs().</p>
http://stackoverflow.com/questions/530275/what-are-the-latest-and-greatest-books-for-net-development/530300#5303000Answer by Augusto Radtke for What are the latest and greatest books for .Net development?Augusto Radtke2009-02-09T22:21:34Z2009-02-09T22:21:34Z<p>Following your lead of subject, not really just for .NET but made with .NET implementation in mind is <a href="http://www.codeplex.com/AppArchGuide" rel="nofollow">Application Architecture Guide 2.0</a>, I found to be one of the best I've seen, and it's also free.</p>
http://stackoverflow.com/questions/487904/what-advantages-of-extension-methods-have-you-found/514558#5145581Answer by Augusto Radtke for What Advantages of Extension Methods have you found?Augusto Radtke2009-02-05T04:19:59Z2009-02-05T04:19:59Z<p>I use them to reuse my object model classes. I have a bunch of classes that represent objects that I have in a database. These classes are used in the client side only to display the objects so the basic usage is accessing properties.</p>
<pre><code>public class Stock {
public Code { get; private set; }
public Name { get; private set; }
}
</code></pre>
<p>Because of that usage pattern I don't want to have business logic methods in these classes, so I make every business logic to be an extension method. </p>
<pre><code>public static class StockExtender {
public static List <Quote> GetQuotesByDate(this Stock s, DateTime date)
{...}
}
</code></pre>
<p>This way I can use the same classes for business logic processing and for user interface displaying without overloading the client side with unnecessary code.</p>
<p>One interesting thing about this solution it's that my object model classes are dynamic generated using <a href="http://www.mono-project.com/Cecil" rel="nofollow">Mono.Cecil</a>, so it would be very difficult to add business logic methods even if I wanted. I have a compiler that reads XML definition files and generate these stubs classes representing some object I have in the database. The only approach in this case is to extend them. </p>
http://stackoverflow.com/questions/710212/there-is-a-way-to-access-the-previous-row-value-in-a-select-statement/710222#710222Comment by Augusto Radtke on There is a way to access the "previous row" value in a SELECT statement?Augusto Radtke2009-04-02T16:04:25Z2009-04-02T16:04:25ZThat won't run often in the database, and the rows are never deleted. I believe it gonna work fine.http://stackoverflow.com/questions/710212/there-is-a-way-to-access-the-previous-row-value-in-a-select-statement/710222#710222Comment by Augusto Radtke on There is a way to access the "previous row" value in a SELECT statement?Augusto Radtke2009-04-02T15:33:52Z2009-04-02T15:33:52ZThat's fine, order is not a issue, I just removed it from the example to make it simpler, I gonna try that.http://stackoverflow.com/questions/537969/task-life-cycle/537992#537992Comment by Augusto Radtke on Task Life CycleAugusto Radtke2009-02-13T17:09:56Z2009-02-13T17:09:56ZI don't know, never had after it started, probably I would put on Pending again.http://stackoverflow.com/questions/545703/combination-of-listlistintComment by Augusto Radtke on Combination of List<List<int>>Augusto Radtke2009-02-13T12:31:51Z2009-02-13T12:31:51ZIt's a cross product, trust Garry answer, it will do it.http://stackoverflow.com/questions/545646/do-you-believe-universities-help-create-great-people-for-it-i-do-notComment by Augusto Radtke on Do you believe universities help create great people for IT? I do not.Augusto Radtke2009-02-13T12:28:50Z2009-02-13T12:28:50Z@mghie Probably that's true, but is still a relevant topic, perhaps we should close the entire 131 questions in the [fun] tag.http://stackoverflow.com/questions/545646/do-you-believe-universities-help-create-great-people-for-it-i-do-notComment by Augusto Radtke on Do you believe universities help create great people for IT? I do not.Augusto Radtke2009-02-13T12:09:45Z2009-02-13T12:09:45ZI think he had a good point in the last paragraph, more useful discussion than Jon Skeet facts (sorry Jon).http://stackoverflow.com/questions/539824/problem-with-thread-safe-queueComment by Augusto Radtke on Problem with thread-safe queue?Augusto Radtke2009-02-12T03:13:03Z2009-02-12T03:13:03ZDid you really measured that precise 93% / 7% rates? LOL.http://stackoverflow.com/questions/539642/net-streamreader-wont-close/539664#539664Comment by Augusto Radtke on .NET StreamReader Won't CloseAugusto Radtke2009-02-12T02:23:31Z2009-02-12T02:23:31ZThat makes me think that I never really tested if Dispose() closes the stream, but I trust the documentation!http://stackoverflow.com/questions/537577/where-do-you-keep-your-code/537752#537752Comment by Augusto Radtke on Where do you keep your code?Augusto Radtke2009-02-12T02:14:46Z2009-02-12T02:14:46ZOne directory to rule them all!http://stackoverflow.com/questions/539668/help-understanding-academic-notation-for-type-systemComment by Augusto Radtke on Help understanding academic notation for type systemAugusto Radtke2009-02-12T01:59:58Z2009-02-12T01:59:58ZYou could grab a image snip of the text instead of trying to mimic the notation and use an <img> tag.http://stackoverflow.com/questions/539642/net-streamreader-wont-close/539664#539664Comment by Augusto Radtke on .NET StreamReader Won't CloseAugusto Radtke2009-02-12T01:41:49Z2009-02-12T01:41:49ZI would also suggest to use "using" directive.http://stackoverflow.com/questions/539642/net-streamreader-wont-closeComment by Augusto Radtke on .NET StreamReader Won't CloseAugusto Radtke2009-02-12T01:34:47Z2009-02-12T01:34:47ZIf you close and dispose that seems strange, can you paste some sample code?http://stackoverflow.com/questions/536771/with-this-technology-would-it-be-possible-to-compile-and-run-silverlight-il-in-f/536833#536833Comment by Augusto Radtke on With this technology, would it be possible to compile and run silverlight IL in Flash?Augusto Radtke2009-02-11T18:42:12Z2009-02-11T18:42:12ZTrue, you can't even compile as I remember the Mono csc.exe is in C#, you'll need the runtime first. But I doubt that could be easily ported because VMs are pretty optimized for specific architectures.http://stackoverflow.com/questions/537969/task-life-cycleComment by Augusto Radtke on Task Life CycleAugusto Radtke2009-02-11T18:06:24Z2009-02-11T18:06:24ZPerhaps this question should be a community wiki.http://stackoverflow.com/questions/62496/similarity-between-line-strings/84253#84253Comment by Augusto Radtke on Similarity between line stringsAugusto Radtke2009-02-11T04:08:53Z2009-02-11T04:08:53ZAs a mathematician, +1 just for citing Fréchet!