User Michiel Borkent - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T18:18:49Z http://stackoverflow.com/feeds/user/6264 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/170914/f-books-question 3 F# books question Michiel Borkent 2008-10-04T19:50:31Z 2009-10-22T02:14:21Z <p>I am now reading Foundations of F# by Robert Pickering and parallelly the book in progress 'Real World Functional Programming' by Tomas Petricek.</p> <p>My question is, what is the added value I would get from buying and reading the following books:</p> <p>1) Expert F# by Don Syme and others</p> <p>2) F# for Scientists by John Harrop</p> <p>Are those books still up to date with the current CTP version. What are things to keep notice of with respect to the recent changes in the language? Will there be reprinted updated versions?</p> <p>Also I want to learn more about datamining techniques with F# as a tool for this. What are good books to read next on this topic?</p> http://stackoverflow.com/questions/1565315/datetime-with-milliseconds-in-sas-highest-precision-numbers-out-of-nowhere 1 Datetime with milliseconds in SAS: highest precision numbers out of nowhere Michiel Borkent 2009-10-14T09:56:13Z 2009-10-14T17:52:32Z <p>Can someone explain where the highest precision numbers in variables d4 to d7 came from?</p> <p>The SAS program:</p> <pre><code>data foo; format d1-d7 datetime30.6; timestring = "23:59:59.997000000"; time = input(timestring,time18.); d1 = dhms(0,0,0,time); d2 = dhms('08DEC1981'd,0,0,time); d3 = dhms('31DEC2503'd,0,0,time); d4 = dhms('31DEC2504'd,0,0,time); d5 = dhms('08DEC2981'd,0,0,time); d6 = dhms('08DEC4981'd,0,0,time); d7 = dhms('08DEC9999'd,0,0,time); run; proc print;run; </code></pre> <p>The output:</p> <pre><code>Obs d1 d2 d3 1 01JAN1960:23:59:59.997000 08DEC1981:23:59:59.997000 31DEC2503:23:59:59.997000 Obs d4 d5 d6 1 31DEC2504:23:59:59.997002 08DEC2981:23:59:59.997002 08DEC4981:23:59:59.996994 Obs d7 timestring time 1 08DEC9999:23:59:59.997009 23:59:59.997000000 86400.00 </code></pre> http://stackoverflow.com/questions/132329/full-text-search-engine-example-in-f 2 Full text search engine example in F#? Michiel Borkent 2008-09-25T09:34:36Z 2009-09-24T14:48:25Z <p>Are there any good examples (websites or books) around of how to build a full text search engine in F#? </p> http://stackoverflow.com/questions/1108865/f-warning-fs0020-this-expression-should-have-type-unit-but-has-type-bool/1111139#1111139 1 Answer by Michiel Borkent for F#: warning FS0020: This expression should have type 'unit', but has type 'bool'. Michiel Borkent 2009-07-10T18:14:54Z 2009-07-10T18:14:54Z <p>If you're trying to adopt the functional style, try to avoid mutable values.</p> <p>For example like this:</p> <pre><code>let nr = let rec compute nr = if checkMod nr then nr else compute (nr + 20) compute 0 </code></pre> http://stackoverflow.com/questions/1033552/how-is-lisp-related-to-f-and-is-learning-lisp-a-useful-leg-up-to-f/1034048#1034048 2 Answer by Michiel Borkent for How is Lisp related to F#, and is learning Lisp a useful leg up to F#? Michiel Borkent 2009-06-23T17:40:58Z 2009-06-23T17:40:58Z <p>Two important things to consider is:</p> <ul> <li>LISP is dynamically typed whereas F# is statically typed.</li> <li>LISP has macro's built in. F# does not.</li> </ul> <p>Although they are both considered functional and share many common features, they are also different. Learning LISP will certainly make you a better F# programmer and vice versa, but still you would have to learn the peculiarities of both to be able to be practical in them. </p> <p>For being able to interop with .NET I would certainly choose F# but for the sake of programming beauty I would try LISP as well.</p> http://stackoverflow.com/questions/998570/great-resources-in-f-for-beginners-use-and-examples-for-business/1020407#1020407 1 Answer by Michiel Borkent for Great resources in F# for beginners use and examples for business. Michiel Borkent 2009-06-19T23:01:07Z 2009-06-19T23:01:07Z <p>I would recommend reading the book "Functional Programming for the Real World" by Tomas Petricek with Jon Skeet. It will guide you from the basics to practical real world problems and their solutions in F#.</p> <p><a href="http://www.manning.com/petricek/" rel="nofollow">http://www.manning.com/petricek/</a></p> http://stackoverflow.com/questions/121499/when-onblur-occurs-how-can-i-find-out-which-element-focus-went-to 6 When onblur occurs, how can I find out which element focus went *to*? Michiel Borkent 2008-09-23T14:48:43Z 2009-06-03T22:06:35Z <p>Suppose I attach an onblur function to an html input box like this:</p> <pre><code>&lt;input id="myInput" onblur="function() { ... }"&gt;&lt;/input&gt; </code></pre> <p>Is there a way to get the ID of the element which caused the onblur event to fire (the element which was clicked) inside the function? How?</p> <p>For example, suppose I have a span like this:</p> <pre><code>&lt;span id="mySpan"&gt;Hello World&lt;/span&gt; </code></pre> <p>If I click the span right after the input element has focus, the input element will lose its focus. How does the function know that it was <code>mySpan</code> that was clicked?</p> <p>PS: If the onclick event of the span would occur before the onblur event of the input element my problem would be solved, because I could set some status value indicating a specific element had been clicked.</p> <p>PPS: The background of this problem is that I want to trigger an Ajax.AutoCompleter control externally (from a clickable element) to show its suggestions, without the suggestions disappearing immediately because of the onblur event on the input element. So I want to check in the OnBlur function if one specific element has been clicked, and if so, ignore the blur event. </p> http://stackoverflow.com/questions/917778/sas-pocket-reference/917895#917895 3 Answer by Michiel Borkent for SAS Pocket Reference Michiel Borkent 2009-05-27T20:36:00Z 2009-05-27T20:36:00Z <p>I think this is exactly what you are looking for:</p> <p>Professional SAS Programmer's Pocket Reference (Paperback) by Rick Aster</p> <p><a href="http://rads.stackoverflow.com/amzn/click/1891957023" rel="nofollow">http://www.amazon.com/Professional-SAS-Programmers-Pocket-Reference/dp/1891957023</a></p> http://stackoverflow.com/questions/95635/what-does-a-just-in-time-jit-compiler-do 10 What does a just-in-time (JIT) compiler do? Michiel Borkent 2008-09-18T18:52:08Z 2009-04-21T11:39:46Z <p>What does a JIT compiler specifically do as opposed to a non-JIT compiler? Can someone give a succinct and easy to understand description?</p> http://stackoverflow.com/questions/126790/if-you-already-know-lisp-why-would-you-also-want-to-learn-f 4 If you already know LISP, why would you also want to learn F#? Michiel Borkent 2008-09-24T12:22:03Z 2009-04-01T12:51:03Z <p>What is the added value for learning F# when you are already familiar with LISP?</p> http://stackoverflow.com/questions/95954/are-delegates-not-just-shorthand-interfaces 3 Are delegates not just shorthand interfaces? Michiel Borkent 2008-09-18T19:20:24Z 2009-03-05T14:48:13Z <p>Suppose we have:</p> <pre><code>interface Foo { bool Func(int x); } class Bar: Foo { bool Func(int x) { return (x&gt;0); } } class Baz: Foo { bool Func(int x) { return (x&lt;0); } } </code></pre> <p>Now we can toss around Bar and Baz as a Foos and call their Func methods.</p> <p>Delegates simplify this a little bit:</p> <pre><code>delegate bool Foo(int x); bool Bar(int x) { return (x&lt;0); } bool Baz(int x) { return (x&gt;0); } </code></pre> <p>Now we can toss around Bar and Baz as Foo delegates.</p> <p>What is the real benefit of delegates, except for getting shorter code?</p> http://stackoverflow.com/questions/161348/f-while-woes-given-tuple-condition/161528#161528 1 Answer by Michiel Borkent for F# - while woes given tuple condition Michiel Borkent 2008-10-02T09:41:16Z 2008-10-02T10:18:12Z <p>Another solution which is slightly better in my opinion. It gets x out of the condition clause scope of the while and puts it in a reference y which is available in the higher scope. Still not the best (functional) solution but it works.</p> <pre><code>let y = ref 1 while (let (c,x) = foo() y := !x c) do printf "%i" !y </code></pre> <p>I think your <code>rec loop</code> solution works best since it is the most functional one (avoiding side effects, although foo uses state) and the most general one (it works on all functions of the same time as foo). It is longer typing, but if you will use more functions like foo, loop is more productive than the single one shortest solution just for foo.</p> <p>I would even generalize loop some more and abstract away the action of what you want to do with a value in a 'true' situation:</p> <pre><code>let loop f a = let rec loop2() = match f() with | (true, x) -&gt; a x loop2() | (false, _) -&gt; () loop2() loop foo print_any </code></pre> http://stackoverflow.com/questions/161348/f-while-woes-given-tuple-condition/161509#161509 1 Answer by Michiel Borkent for F# - while woes given tuple condition Michiel Borkent 2008-10-02T09:32:46Z 2008-10-02T09:32:46Z <p>This is one solution, but I personally think it is abuse of the while construction.</p> <pre><code>#light while (let (c,x) = foo() if c then print_any !x c) do () </code></pre> http://stackoverflow.com/questions/121499/when-onblur-occurs-how-can-i-find-out-which-element-focus-went-to/128452#128452 0 Answer by Michiel Borkent for When onblur occurs, how can I find out which element focus went *to*? Michiel Borkent 2008-09-24T17:17:36Z 2008-09-24T17:17:36Z <p>I solved it eventually with a timeout on the onblur event (thanks to the advice of a friend who is not StackOverflow):</p> <pre><code>&lt;input id="myInput" onblur="setTimeout(function() {alert(clickSrc);},200);"&gt;&lt;/input&gt; &lt;span onclick="clickSrc='mySpan';" id="mySpan"&gt;Hello World&lt;/span&gt; </code></pre> <p>Works both in FF and IE. </p> http://stackoverflow.com/questions/120950/what-is-the-best-way-to-deal-with-recruiters/121035#121035 1 Answer by Michiel Borkent for What is the best way to deal with recruiters? Michiel Borkent 2008-09-23T13:35:40Z 2008-09-23T13:35:40Z <p>Personally, I try to avoid recruiters. I rather search for interesting companies myself or let myself be found by them. I found that companies rather employ me directly than through a ridiculously expensive agency who usually are superficial when it comes to technological knowledge. </p> http://stackoverflow.com/questions/104618/what-does-mean-in-f/105157#105157 1 Answer by Michiel Borkent for What does -> mean in F#? Michiel Borkent 2008-09-19T20:15:18Z 2008-09-21T15:09:07Z <p>In the context of defining a function, it is similar to <code>=&gt;</code> from the lambda expression in C# 3.0.</p> <pre><code>F#: let f = fun x -&gt; x*x C#: Func&lt;int, int&gt; f = x =&gt; x * x; </code></pre> <p>The <code>-&gt;</code> in F# is also used in pattern matching, where it means: if the expression matches the part between <code>|</code> and <code>-&gt;</code>, then what comes after <code>-&gt;</code> should be given back as the result:</p> <pre><code>let isOne x = match x with | 1 -&gt; true | _ -&gt; false </code></pre> http://stackoverflow.com/questions/110390/whats-a-good-common-lisp-implementation-for-windows/110478#110478 1 Answer by Michiel Borkent for What's a good Common Lisp implementation for Windows? Michiel Borkent 2008-09-21T07:28:05Z 2008-09-21T07:28:05Z <p>Take a look at <a href="http://www.franz.com/products/" rel="nofollow">Allegro</a> CL.</p> http://stackoverflow.com/questions/110433/are-there-any-common-lisp-implementations-for-net/110469#110469 3 Answer by Michiel Borkent for Are there any Common Lisp implementations for .Net? Michiel Borkent 2008-09-21T07:22:14Z 2008-09-21T07:22:14Z <p>No, but you might want to consider <a href="http://www.codeplex.com/IronScheme" rel="nofollow">IronScheme</a> running on the <a href="http://en.wikipedia.org/wiki/Dynamic_Language_Runtime" rel="nofollow">DLR</a>.</p> <p>From the website:</p> <p>IronScheme will aim to be a R6RS conforming Scheme implementation based on the Microsoft DLR.</p> <p>IronScheme will be a complete rewrite of IronLisp incorporating lessons learnt while developing IronLisp. </p> http://stackoverflow.com/questions/105710/what-is-a-good-functional-language-on-which-to-build-a-web-service/107707#107707 4 Answer by Michiel Borkent for What is a good functional language on which to build a web service? Michiel Borkent 2008-09-20T09:18:04Z 2008-09-20T09:18:04Z <p>Please read this introduction on <a href="http://tomasp.net/articles/aspnet-in-fsharp.aspx" rel="nofollow">F# and ASP.NET</a> which will give you a good start.</p> <p>There are several examples on the web in which F# is used in web applications. One of them is for example the <a href="http://wintax.ms.mff.cuni.cz/petrt4cm/afax/dictionary/suggest.aspx" rel="nofollow">autocompleter</a> of Tomas Petricek which he built as an illustrative application to his article <a href="http://tomasp.net/blog/fswebtools-intro.aspx" rel="nofollow">"F# Web Tools: Ajax applications made simple"</a>. I have used F# as part of a webservice myself too and I guarantee you that it works well :).</p> http://stackoverflow.com/questions/97329/fastest-way-to-find-objects-from-a-collection-matched-by-condition-on-string-memb 0 Fastest way to find objects from a collection matched by condition on string member Michiel Borkent 2008-09-18T21:45:39Z 2008-09-19T22:06:41Z <p>Suppose I have a collection (be it an array, generic List, or whatever is the <strong>fastest</strong> solution to this problem) of a certain class, let's call it <code>ClassFoo</code>:</p> <pre><code>class ClassFoo { public string word; public float score; //... etc ... } </code></pre> <p>Assume there's going to be like 50.000 items in the collection, all in memory. Now I want to obtain as fast as possible all the instances in the collection that obey a condition on its bar member, for example like this:</p> <pre><code>List&lt;ClassFoo&gt; result = new List&lt;ClassFoo&gt;(); foreach (ClassFoo cf in collection) { if (cf.word.StartsWith(query) || cf.word.EndsWith(query)) result.Add(cf); } </code></pre> <p>How do I get the results as fast as possible? Should I consider some advanced indexing techniques and datastructures?</p> <p>The application domain for this problem is an autocompleter, that gets a query and gives a collection of suggestions as a result. Assume that the condition doesn't get any more complex than this. Assume also that there's going to be a lot of searches.</p> http://stackoverflow.com/questions/95111/what-are-good-ways-of-improving-my-programming-skills-during-times-of-low-energy 3 What are good ways of improving my programming skills during times of low energy? Michiel Borkent 2008-09-18T18:09:41Z 2008-09-18T18:41:32Z <p>What are good ways to improve my programming skills when I don't have the energy to think really hard? For example during illness (right now) or in the evening after an intensive day of coding yet still desiring to learn something new.</p> http://stackoverflow.com/questions/24319/where-can-i-find-good-technical-video-podcasts-or-videos-for-download/94831#94831 2 Answer by Michiel Borkent for Where can I find good technical video podcasts or videos for download? Michiel Borkent 2008-09-18T17:43:33Z 2008-09-18T17:43:33Z <p><a href="http://www.dnrtv.com/" rel="nofollow">http://www.dnrtv.com/</a></p> <p>From the site:</p> <p>dnrTv is a fusion of a training video and an interview show. Training videos are typically sterile and one-way. Let's face it, you can only take so much. But you need to see the code! In this format, you get the spontaneity of an interview talk show, and the detail of a webcast or training video. </p> <p>Carl Franklin is the host of the wildly popular mp3 talk show .NET Rocks!, which he started recording in August, 2002. dnrTV launched on January 12th, 2006, the same week as .NET Rocks! show number 159!</p> <p>We see dnrTV as a natural adjunct to .NET Rocks!, allowing more technical topics to be explored in detail. As always, Carl keeps the atmosphere light and conversational, which makes for a nice way to spend your lunch hour! </p> http://stackoverflow.com/questions/93439/add-rss-to-any-website/93464#93464 0 Answer by Michiel Borkent for Add RSS to any website? Michiel Borkent 2008-09-18T15:14:43Z 2008-09-18T15:14:43Z <p>Write a webhandler that exposes the content of the database as an RSS feed.</p> http://stackoverflow.com/questions/92113/how-do-you-get-through-the-inevitable-motivational-slump-near-the-end-of-projec/92141#92141 1 Answer by Michiel Borkent for How do you get through the inevitable motivational "slump" near the end of projects? Michiel Borkent 2008-09-18T12:36:35Z 2008-09-18T12:36:35Z <p>Usually I try to tell myself that <strong>getting things to work in the real world</strong> is just as interesting, because there is where your code will get <strong>credits</strong> or will be <strong>improved</strong> by discovered bugs and feature requests.</p> http://stackoverflow.com/questions/91367/how-to-trace-javascript-events-like-onclick-onblur/91410#91410 0 Answer by Michiel Borkent for How to trace javascript events like onclick onblur? Michiel Borkent 2008-09-18T10:13:19Z 2008-09-18T10:13:19Z <p>You might want to try Visual Studio 2008 and its feature to debug javascript. </p> <p>If the problem is not specific to IE7 but also occurs in Firefox, then another good way to debug javascript is Firefox and the FireBug add-on which has a javascript debugger. Then you can also put console.log statements in the javascript which you can then see the output of in the Console Window in FireBug, instead of using alerts which sometimes mess up the event chain.</p> http://stackoverflow.com/questions/86708/what-should-be-included-in-a-programmers-code-of-ethics/86938#86938 0 Answer by Michiel Borkent for What should be included in a programmer's code of ethics? Michiel Borkent 2008-09-17T19:51:39Z 2008-09-17T19:51:39Z <p>Have time for people (colleagues) AND code.</p> http://stackoverflow.com/questions/86708/what-should-be-included-in-a-programmers-code-of-ethics/86815#86815 1 Answer by Michiel Borkent for What should be included in a programmer's code of ethics? Michiel Borkent 2008-09-17T19:40:18Z 2008-09-17T19:40:18Z <p>Write code you would want to use yourself.</p> http://stackoverflow.com/questions/76571/prototypes-enumerablepluck-in-f 0 Prototype's Enumerable#pluck in F#? Michiel Borkent 2008-09-16T20:24:23Z 2008-09-17T19:09:47Z <p>In JavaScript, using the Prototype library, the following functional construction is possible:</p> <pre><code>var words = ["aqueous", "strength", "hated", "sesquicentennial", "area"]; words.pluck('length'); //-&gt; [7, 8, 5, 16, 4] </code></pre> <p>Note that this example code is equivalent to</p> <pre><code>words.map( function(word) { return word.length; } ); </code></pre> <p>I wondered if something similar is possible in F#:</p> <pre><code>let words = ["aqueous"; "strength"; "hated";"sesquicentennial"; "area"] //val words: string list List.pluck 'Length' words //int list = [7; 8; 5; 16; 4] </code></pre> <p>without having to write:</p> <pre><code>List.map (fun (s:string) -&gt; s.Length) words </code></pre> <p>This would seem quite useful to me because then you don't have to write functions for every property to access them.</p> http://stackoverflow.com/questions/86204/how-to-conditionally-enable-actions-in-c-asp-net-website 1 How to conditionally enable actions in C# ASP.NET website Michiel Borkent 2008-09-17T18:35:37Z 2008-09-17T19:02:35Z <p>Using a configuration file I want to enable myself to turn on and off things like (third party) logging and using a cache in a C# website. The solution should not be restricted to logging and caching in particular but more general, so I can use it for other things as well.</p> <p>I have a configuration xml file in which I can assert that logging and caching should be turned on or off (it could also be in the Web.Config, that's not the point right now) which will result in for example a <code>bool logging</code> and a <code>bool caching</code> that are <code>true</code> or <code>false</code>.</p> <p>The question is about this part: <strong>What I can do is prepend every logging/caching related statement with <code>if (logging)</code> and <code>if (caching)</code>. What is better way of programming this? Is there also a programming term for this kind of problem? Maybe attributes are also a way to go?</strong></p> http://stackoverflow.com/questions/83749/how-to-access-custom-fields-from-the-global-class-in-a-webhandler 1 How to access custom fields from the global class in a webhandler? Michiel Borkent 2008-09-17T14:22:25Z 2008-09-17T18:59:29Z <p>I added some custom fields (public booleans) to the global class in global.asax.cs which are initialized during the Application_Start event. How do I access them in a webhandler (ashx)? Or is it better to save them in the Application state object?</p> http://stackoverflow.com/questions/1565315/datetime-with-milliseconds-in-sas-highest-precision-numbers-out-of-nowhere/1565945#1565945 Comment by Michiel Borkent on Datetime with milliseconds in SAS: highest precision numbers out of nowhere Michiel Borkent 2009-10-17T18:29:12Z 2009-10-17T18:29:12Z Thanks. The Python example was also helpful. http://stackoverflow.com/questions/626056/is-the-usage-of-sas-in-business-increasing-or-decreasing/626406#626406 Comment by Michiel Borkent on Is the usage of SAS in business increasing or decreasing? Michiel Borkent 2009-03-09T19:31:07Z 2009-03-09T19:31:07Z F# is a compiled language of the .NET family. Its success would mainly depend on the integration of the Database with .NET. Does .NET integrate well with non-Windows Database systems, like DB2 which is used in (very) large companies which have very much money? No! But SAS does and is good at it. http://stackoverflow.com/questions/170914/f-books-question/171382#171382 Comment by Michiel Borkent on F# books question Michiel Borkent 2008-10-05T09:01:50Z 2008-10-05T09:01:50Z yes, I listened to them and I like listening to those podcasts. still my question is, how much really new will I learn from buying those books? Still they are nice to have of course to complete my F# book collection ;-) http://stackoverflow.com/questions/132329/full-text-search-engine-example-in-f/132407#132407 Comment by Michiel Borkent on Full text search engine example in F#? Michiel Borkent 2008-09-25T10:34:03Z 2008-09-25T10:34:03Z I want it to write myself to have a learning experience. http://stackoverflow.com/questions/121499/when-onblur-occurs-how-can-i-find-out-which-element-focus-went-to/124578#124578 Comment by Michiel Borkent on When onblur occurs, how can I find out which element focus went *to*? Michiel Borkent 2008-09-24T17:27:37Z 2008-09-24T17:27:37Z It's almost the solution, but in the onblur event handler I already needed to know what item had been clicked, so a timeout on the onblur did it for me. http://stackoverflow.com/questions/121499/when-onblur-occurs-how-can-i-find-out-which-element-focus-went-to/128452#128452 Comment by Michiel Borkent on When onblur occurs, how can I find out which element focus went *to*? Michiel Borkent 2008-09-24T17:18:26Z 2008-09-24T17:18:26Z Is this considered bad practice in javascript world btw? http://stackoverflow.com/questions/121499/when-onblur-occurs-how-can-i-find-out-which-element-focus-went-to Comment by Michiel Borkent on When onblur occurs, how can I find out which element focus went *to*? Michiel Borkent 2008-09-23T17:36:48Z 2008-09-23T17:36:48Z Rahul and roosteronacid, I updated the question as a reaction to your comments (the PPS). http://stackoverflow.com/questions/121499/when-onblur-occurs-how-can-i-find-out-which-element-focus-went-to/121517#121517 Comment by Michiel Borkent on When onblur occurs, how can I find out which element focus went *to*? Michiel Borkent 2008-09-23T14:57:55Z 2008-09-23T14:57:55Z this doesn't answer the question, hopefully I made it clearer with the additional example http://stackoverflow.com/questions/62302/whats-a-good-book-for-learning-f/69027#69027 Comment by Michiel Borkent on What’s a good book for learning F#? Michiel Borkent 2008-09-19T09:47:21Z 2008-09-19T09:47:21Z I don't have editing permissions yet, but the name of Petricek is Tomas, without an H. Minor detail, but still :) http://stackoverflow.com/questions/97329/fastest-way-to-find-objects-from-a-collection-matched-by-condition-on-string-memb/97545#97545 Comment by Michiel Borkent on Fastest way to find objects from a collection matched by condition on string member Michiel Borkent 2008-09-18T22:37:47Z 2008-09-18T22:37:47Z Ok thanks for the help! http://stackoverflow.com/questions/97329/fastest-way-to-find-objects-from-a-collection-matched-by-condition-on-string-memb/97545#97545 Comment by Michiel Borkent on Fastest way to find objects from a collection matched by condition on string member Michiel Borkent 2008-09-18T22:34:47Z 2008-09-18T22:34:47Z Will: sort it and use a binary search I could sort the collection on the string member. But how am I going to search binary through it? Is there some standard .NET stuff for this, or do I have to write a binary tree structure in which I hang the objects? http://stackoverflow.com/questions/97329/fastest-way-to-find-objects-from-a-collection-matched-by-condition-on-string-memb/97611#97611 Comment by Michiel Borkent on Fastest way to find objects from a collection matched by condition on string member Michiel Borkent 2008-09-18T22:27:48Z 2008-09-18T22:27:48Z Yes, it's all going to be in memory. Assume approx. 50.000 items. http://stackoverflow.com/questions/97329/fastest-way-to-find-objects-from-a-collection-matched-by-condition-on-string-memb/97545#97545 Comment by Michiel Borkent on Fastest way to find objects from a collection matched by condition on string member Michiel Borkent 2008-09-18T22:26:10Z 2008-09-18T22:26:10Z Changed the question a little and added this: The application domain for this problem is an autocompleter, that gets a query and gives a collection of suggestions as a result. Assume that the condition doesn't get any more complex than this. Assume also that there's going to be a lot of searches. http://stackoverflow.com/questions/97329/fastest-way-to-find-objects-from-a-collection-matched-by-condition-on-string-memb/97432#97432 Comment by Michiel Borkent on Fastest way to find objects from a collection matched by condition on string member Michiel Borkent 2008-09-18T22:25:10Z 2008-09-18T22:25:10Z Changed question according to your reaction: The application domain for this problem is an autocompleter, that gets a query and gives a collection of suggestions as a result. Assume that the condition doesn't get any more complex than this. Assume also that there's going to be a lot of searches. http://stackoverflow.com/questions/91367/how-to-trace-javascript-events-like-onclick-onblur/91410#91410 Comment by Michiel Borkent on How to trace javascript events like onclick onblur? Michiel Borkent 2008-09-18T10:18:32Z 2008-09-18T10:18:32Z Yes, thanks. I adapted my answer to your comment.