User Sridhar Iyer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T00:42:28Z http://stackoverflow.com/feeds/user/13820 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1846592/prototyping-neural-networks/1884049#1884049 2 Answer by Sridhar Iyer for Prototyping neural networks Sridhar Iyer 2009-12-10T21:10:20Z 2009-12-10T21:10:20Z <p>This depends on your current setup. When I used to work on them back in college days, I had to use C++ + MPI+numerical recipes. This was done because I had to load share on big beowulf cluster.</p> <p>If your computation needs are not big, anything would do. Prepackaged libraries are available on all the platforms (R, Python(numPy, scipy), C/C++(Numerical recipes) etc). If you are comfortable programming in any one of them, it should not be a big deal.</p> <p>If I had to prototype anything now, I'd probably go with Python (just because I find it much more easier for prototyping)</p> http://stackoverflow.com/questions/1883896/what-is-your-favorite-way-to-comment-several-lines-in-vim/1883936#1883936 0 Answer by Sridhar Iyer for What is your favorite way to comment several lines in vim? Sridhar Iyer 2009-12-10T20:52:05Z 2009-12-10T20:52:05Z <p>I normally just save the step in a macro and then invoke the macro in whichever fashion I feel like.</p> http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744181#1744181 2 Answer by Sridhar Iyer for Why should exceptions be used conservatively? Sridhar Iyer 2009-11-16T19:07:04Z 2009-11-16T19:07:04Z <ol> <li>Maintainability: As mentioned by people above, throwing exceptions at a drop of a hat is akin to using gotos.</li> <li>Interoperability: You can't interface C++ libraries with C/Python modules (atleast not easily) if you are using exceptions.</li> <li>Performance degradation: RTTI is used to actually find the type of the exception which imposes additional overhead. Thus exceptions are not suitable for handling commonly occurring use cases(user entered int instead of string etc).</li> </ol> http://stackoverflow.com/questions/192957/efficiently-querying-one-string-against-multiple-regexes 16 Efficiently querying one string against multiple regexes. Sridhar Iyer 2008-10-10T20:42:16Z 2009-09-01T09:00:53Z <p>Lets say that I have 10,000 regexes and one string and I want to find out if the string matches any of them and get all the matches. The trivial way to do it would be to just query the string one by one against all regexes. Is there a faster,more efficient way to do it? </p> <p>EDIT: I have tried substituting it with DFA's (lex) The problem here is that it would only give you one single pattern. If I have a string "hello" and patterns "[H|h]ello" and ".{0,20}ello", DFA will only match one of them, but I want both of them to hit.</p> http://stackoverflow.com/questions/1034957/follow-up-to-english-grammar-parser/1035015#1035015 1 Answer by Sridhar Iyer for Follow up to English Grammar Parser Sridhar Iyer 2009-06-23T20:33:49Z 2009-06-23T20:33:49Z <p>Look into lex &amp; yacc for easier and more elegant way to implement this.</p> http://stackoverflow.com/questions/366849/generating-random-fixed-length-permutations-of-a-string 1 Generating random fixed length permutations of a string Sridhar Iyer 2008-12-14T19:07:18Z 2009-06-22T16:09:05Z <p>Lets say my alphabet contains X letters and my language supports only Y letter words (Y &lt; X ofcourse). I need to generate all the words possible in random order.</p> <p>E.g. Alphabet=a,b,c,d,e,f,g Y=3</p> <p>So the words would be: aaa aab aac aba .. bbb ccc .. (the above should be generated in random order)</p> <p>The trivial way to do it would be to generate the words and then randomize the list. I DONT want to do that. I want to generate the words in random order.</p> <p>rondom(n)=letter[x].random(n-1) will not work because then you'll have a list of words starting with letter[x].. which will make the list not so random.</p> <p>Any code/pseudocode appreciated.</p> http://stackoverflow.com/questions/873899/fail-using-hashmapvectorint-string-why/879044#879044 0 Answer by Sridhar Iyer for fail using hash_map<vector<int>,string>, why ? Sridhar Iyer 2009-05-18T18:09:00Z 2009-05-18T18:09:00Z <p>To compare the keys, &lt;,==,> operators should be defined. The find() function here doesn't know how to compare the keys.</p> http://stackoverflow.com/questions/808546/grad-school-for-compsci-and-or-software-engineering/808640#808640 0 Answer by Sridhar Iyer for Grad School for CompSci and/or Software Engineering Sridhar Iyer 2009-04-30T19:25:28Z 2009-04-30T19:25:28Z <p>Instead of going for by the degree name or the school, first figure out what you wanna study. Then check the schools you are interested in one by one and figure out which degree will allow you to take maximum of those. Figure if you really care about the "core" subjects offered in each degree. In case of a tie, do some research on the faculty teaching the courses you are interested in (Makes a big difference.). </p> <p>I don't agree with Dan. I find that quite unethical, sadly people do do it. If you are good you can easily work your way up. (I was a MS student 2 years ago and had funding for two years). A Prof can be your lifelong mentor/friend.</p> http://stackoverflow.com/questions/577659/real-world-examples-of-tree-structures/604160#604160 0 Answer by Sridhar Iyer for Real world examples of tree structures Sridhar Iyer 2009-03-02T21:49:22Z 2009-03-02T21:49:22Z <p>DNS queries.. anything using a map uses AVL</p> http://stackoverflow.com/questions/576693/how-to-minimize-a-programming-language-compile-time/578832#578832 0 Answer by Sridhar Iyer for how to minimize a programming language compile time? Sridhar Iyer 2009-02-23T18:51:27Z 2009-02-23T18:51:27Z <p>I haven't seen much work done for minimizing the compile time. But some ideas do come to mind:</p> <ol> <li>Keep the grammar simple. Convoluted grammar will increase your compile time.</li> <li>Try making use of parallelism, either using multicore GPU or CPU.</li> <li>Benchmark a modern compiler and see what are the bottlenecks and what you can do in you compiler/language to avoid them.</li> </ol> <p>Unless you are writing a highly specialized language, compile time is not really an issue.. </p> http://stackoverflow.com/questions/544324/how-can-i-have-a-green-font-in-nixs-gvim/544355#544355 1 Answer by Sridhar Iyer for How can I have a green font in *NIX's gvim? Sridhar Iyer 2009-02-13T01:23:33Z 2009-02-13T01:23:33Z <p>I normally put all gvim related commands in .gvimrc. If you are using vi/vim, then the terminal colorscheme messes up with the vim colorscheme. If MacVim has a separate .rc file, you can check that (assuming MacVim pops a new window).</p> http://stackoverflow.com/questions/544025/convincing-an-it-manager-to-allow-sql-server-instead-of-access/544273#544273 1 Answer by Sridhar Iyer for Convincing an IT Manager to allow SQL Server instead of Access Sridhar Iyer 2009-02-13T00:55:39Z 2009-02-13T00:55:39Z <p>Just grab a testsuite (or just throw one together):</p> <ol> <li>compare the time taken for create a db with 1000,000 enteries.</li> <li>search an entry in the db.</li> <li>Vaccum the db</li> <li>Delete the db </li> <li>Do couple of operations that you think will be done more on the db couple of times.</li> </ol> <p>and do it infront of him to compare (write a script).My guess is that either your IT manager is joking, or the site that you are working on are non critical and he doesn't want to allocate resources(including you).</p> http://stackoverflow.com/questions/522684/how-much-documentation-is-optimal-for-an-agile-project/522853#522853 0 Answer by Sridhar Iyer for How much documentation is optimal for an Agile project? Sridhar Iyer 2009-02-07T01:05:54Z 2009-02-07T01:05:54Z <p>We use Scrum along with Agile. Although the amount of documentation we generate is not much.. we tend to include the documentation in the code itself. Or documentation can itself be classified into a subtask and have an associated burn down chart.</p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/496923#496923 2 Answer by Sridhar Iyer for What are Code Smells? What is the best way to correct them? Sridhar Iyer 2009-01-30T19:43:44Z 2009-01-30T19:43:44Z <p><strong>Global variables</strong></p> <p>Normally most developers with even a thimble worth of knowledge stay away from them. But somewhere down the line, in some year, somebody inevitably adds one to short circuit some logic or just get a legacy system to work.. further down the line this causes issues in threaded systems which are caught much much later and almost too easily escape regression tests.</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/486263#486263 0 Answer by Sridhar Iyer for What real life bad habits has programming given you? Sridhar Iyer 2009-01-28T02:24:24Z 2009-01-28T02:24:24Z <p>I get totally irritated when someone uses the word "I think blah blah" when they are guessing something. Either they know it or they dont and should say whatever they exactly mean.</p> http://stackoverflow.com/questions/481862/extracting-info-from-large-structured-text-files/484866#484866 0 Answer by Sridhar Iyer for Extracting info from large structured text files Sridhar Iyer 2009-01-27T19:29:55Z 2009-01-27T19:29:55Z <p>I wouldn't use regex here. If you know that your lines will be starting with fixed strings, why not check those strings and write a logic around it?</p> <pre><code>for line in open(file): if line[0:3]=='No.': currIndex='No' map['No']=line[4:] .... ... else if line.strip()=='': //store the record in the map and clear the map else: //append line to the last index in map.. this is when the record overflows to the next line. Map[currIndex]=Map[currIndex]+"\n"+line </code></pre> <p>Consider the above code as just the pseudocode.</p> http://stackoverflow.com/questions/479013/requirements-for-compiler-design/480916#480916 0 Answer by Sridhar Iyer for Requirements for Compiler Design Sridhar Iyer 2009-01-26T18:53:11Z 2009-01-26T18:53:11Z <p>I have used <a href="http://rads.stackoverflow.com/amzn/click/0130830984" rel="nofollow">this</a> book to design a compiler. However, the book is quite old and the code is in pascal.. but it is still readable and this is the closest book that gave step by step instructions on how to write a compiler. You have to brush up on BNF. Your first step should be to have a BNF for your language, you might have issues with verification later if your BNF isn't mathematically well grounded. </p> <p>IMHO compiler design is much closer to mathematics than software engineering as we know it. A simple warning/error in the compiler is NOT tolerable. </p> http://stackoverflow.com/questions/474483/how-to-exercise-and-feel-well-when-you-are-programming/474578#474578 2 Answer by Sridhar Iyer for How to exercise and feel well when you are programming Sridhar Iyer 2009-01-23T21:15:22Z 2009-01-23T21:15:22Z <p>Sometimes you just can't help throwing all the advice down the drain, and stick your eyes on the screen when you are debugging or doing something immersive. After the initial ergonomic setup (keyboard, monitor, mouse etc), I do the following things that I think, help me.</p> <ul> <li>Use Vi (or emacs). As long as only my fingers are moving and not reaching out frequently to the mouse, I don't have strain. Or if I'm using mouse, I dont tend to use shortcuts.. just use the input device exclusively.</li> <li>Another non-conventional thing I do is take a washroom break.. sometimes I just don't want to freak out my colleagues by standing up, move about and rotate my head. I do that in the washroom.. or while walking to the water cooler or walking to another colleague's cube.</li> </ul> http://stackoverflow.com/questions/472030/cool-project-to-use-a-genetic-algorithm-for/472356#472356 0 Answer by Sridhar Iyer for cool project to use a genetic algorithm for? Sridhar Iyer 2009-01-23T09:29:40Z 2009-01-23T09:29:40Z <p>Back in college I did multidimensional function minimization.. lets say you have a f(x) which takes parameters x1,x2,x3,...,xn and generates a value Y.. you need to find the parameters x1,..,xn such that Y=Y1.. not so difficult.. interesting way to learn nevertheless. Although Nedlermead is way more efficient.. this is not prone to getting stuck in local minimas.</p> http://stackoverflow.com/questions/459874/recommendations-easy-to-use-low-dependency-c-c-rss-library/459932#459932 1 Answer by Sridhar Iyer for Recommendations: Easy To Use/Low Dependency C/C++ RSS Library Sridhar Iyer 2009-01-20T02:18:15Z 2009-01-20T02:18:15Z <p>I have used <a href="http://xmlsoft.org/downloads.html" rel="nofollow">libxml</a> earlier. Its fairly easy to use. </p> http://stackoverflow.com/questions/459503/how-can-i-avoid-dynamiccast-in-my-c-code/459551#459551 4 Answer by Sridhar Iyer for How can I avoid dynamic_cast in my C++ code? Sridhar Iyer 2009-01-19T23:06:55Z 2009-01-19T23:06:55Z <p>I don't see why a car can't be composed of an engine (if BarCar will always contain BarEngine). Engine has a pretty strong relationship with the car. I would prefer:</p> <pre><code>class BarCar:public Car { //..... private: BarEngine engine; } </code></pre> http://stackoverflow.com/questions/436265/emptying-a-c-object/437492#437492 2 Answer by Sridhar Iyer for Emptying a C++ object Sridhar Iyer 2009-01-12T23:39:12Z 2009-01-12T23:39:12Z <p>This can be a potential source of memory leak if you have a dynamically allocated memory in the constructor.</p> http://stackoverflow.com/questions/31757/should-programmers-be-excellent-typists/425942#425942 0 Answer by Sridhar Iyer for Should programmers be excellent typists? Sridhar Iyer 2009-01-08T21:05:46Z 2009-01-08T21:05:46Z <p>Most of the programmers I meet at conferences and user group meets are touch typists.. Most programmers(including me) are touch typists because we are typing day in and day out. We code at work, go home and work on pet projects.. write blogs for relaxing.. even mundane activities require typing (using IM to chat with 4 ppl simultaneously).</p> <p>I have been programming since the 4th grade (working for sometime now), but learned touch typing just an year ago.. and I must say that my efficiency jumped up (22wpm to 63wpm). Coupled with Vi, typing is just not a hindrance (I didn't realize that it was a hindrance until I learnt to type) any more.. </p> <ul> <li>Can you touch type? Yes</li> <li>Do you have a very high accuracy level? Yes</li> <li>Are you working to improve it? Used to, not anymore.. current speed/accuracy is enough for the job I do.</li> <li>Do you use any tools/software to do so? I owe it all to gtypist and typespeed. (both in debian/ubuntu repos)</li> </ul> http://stackoverflow.com/questions/425536/who-would-you-say-are-the-most-well-rounded-programmers/425879#425879 0 Answer by Sridhar Iyer for Who would you say are the most well rounded programmers? Sridhar Iyer 2009-01-08T20:51:16Z 2009-01-08T20:51:16Z <p>Language really doesn't matter. As long as you are able to solve a problem with any tool in your toolbox (i.e any language), you are well rounded. I have seen too many developers crib when they go from Linux to Windows or vice versa that its outside their domain... It really doesn't matter. After a day or two you take to get used to the dev environment, all it takes is brains to transliterate logic into tangible projects.</p> http://stackoverflow.com/questions/381557/how-do-i-get-started-programming-in-linux/418770#418770 0 Answer by Sridhar Iyer for How do I get started programming in Linux? Sridhar Iyer 2009-01-07T00:36:26Z 2009-01-07T00:36:26Z <p>Quite frankly, most programming language are platform agnostic. If you already know how to program in some language (say X) on windows, you can get a similar IDE to compile/run X on Linux too. Then I would suggest when you get your code up and running, slowly wean yourself from the IDE and start using the powerful command line to get the things done.. one baby step at a time. This involves:</p> <ul> <li>Finding the editor that fits your style. Emacs and Vi are the most popular.. but use whatever you are comfortable with. You will slowly gravitate towards the one of those eventually (if you stay on Linux long enough).</li> <li>Finding a compiler/interpreter. This is a no brainer most of the time. Most modern distros are supplied with compilers/interpreters that you would need. You can learn about their options when you need them.. dont have to learn them all at once.</li> <li>Getting a good debugger for your code.</li> <li>Learning to use a profiler.</li> <li>Learning about toolkits. Eg Qt or GTK for gui development.</li> <li>If you need to get into system programming, start with a book on system calls... if not don't worry about it too much.</li> </ul> <p>PS: if you don't know how to program in any language, just pick up a good book on programming. What language you want to use, is a matter of personal choice.</p> http://stackoverflow.com/questions/370477/what-are-your-new-year-resolutions-as-a-programmer-for-2009/404134#404134 1 Answer by Sridhar Iyer for What are your New year Resolutions as a programmer for 2009? Sridhar Iyer 2008-12-31T22:00:31Z 2008-12-31T22:00:31Z <ul> <li>Atleast two "marketable" prototypes based on Arduino.</li> <li>Finish the software project have been meaning to do for so long.</li> <li>Dont accept/participate in more projects than humanly possible.</li> </ul> http://stackoverflow.com/questions/387713/what-languages-for-very-large-lists/387724#387724 0 Answer by Sridhar Iyer for What language(s) for very large lists? Sridhar Iyer 2008-12-22T23:14:11Z 2008-12-22T23:14:11Z <p>There is no limit if you write your own container.</p> http://stackoverflow.com/questions/360542/plumber-programmers-vs-computer-scientists/360692#360692 0 Answer by Sridhar Iyer for "Plumber" Programmers vs. Computer Scientists Sridhar Iyer 2008-12-11T20:02:33Z 2008-12-11T20:02:33Z <p>I am a 26 yo CS graduate.. started programming at 10. Here are something I did and might be helpful: Write small programs on paper, stay away from computer. Write it in pseudocode or some really barebones language like C (avoid using libraries). Implement some common but simple algorithmic problems like tree traversal etc. Once done, check your loops and recursions, try making them small, learn about cyclometric complexity and big-O notation as it relates to your code. Code it up, run on a large corpus and compare your throughput with existing libraries.</p> http://stackoverflow.com/questions/349833/what-programming-jobs-do-you-aspire-to/350579#350579 0 Answer by Sridhar Iyer for What programming jobs do you aspire to? Sridhar Iyer 2008-12-08T19:32:39Z 2008-12-08T19:32:39Z <p>I wanna do something like Rodney McKay (stargate atlantis).. Something way cooler and cutting edge than what people do now. Maybe some project in NSA that is declassified after 30 years (and am not even a US citizen so cant make that happen :( ).</p> <p>Normally in the industry "what is profitable" is generally not "What is cooler". I want something that pays enough for me and my family to have a decent living standard and something good enough to make Mondays much more exciting. </p> http://stackoverflow.com/questions/342152/why-cant-variable-names-start-with-numbers/342315#342315 -2 Answer by Sridhar Iyer for Why can't variable names start with numbers? Sridhar Iyer 2008-12-04T22:22:03Z 2008-12-04T22:22:03Z <p>I agree with all the answers.. philosophically speaking, each variable in a language stand for a concept(that is why its preffered to have readable names). English language doesn't have any names which begins with a number.. so that translated to programming language.</p> http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744181#1744181 Comment by Sridhar Iyer on Why should exceptions be used conservatively? Sridhar Iyer 2009-11-17T21:00:36Z 2009-11-17T21:00:36Z Catskul: <a href="http://www.codesourcery.com/public/cxx-abi/abi-eh.html#cxx-abi" rel="nofollow">codesourcery.com/public/cxx-abi/&hellip;</a> RTTI is used according to C++ standard. http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744181#1744181 Comment by Sridhar Iyer on Why should exceptions be used conservatively? Sridhar Iyer 2009-11-17T20:35:11Z 2009-11-17T20:35:11Z Catskul: <a href="http://www.codeproject.com/KB/cpp/exceptionhandler.aspx" rel="nofollow">codeproject.com/KB/cpp/&hellip;</a> explains the implementation. Easy to see why it degrades performance from that article.(See how the control flow of the function is modified due to exception, how the type of the exception is resolved etc) http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744181#1744181 Comment by Sridhar Iyer on Why should exceptions be used conservatively? Sridhar Iyer 2009-11-17T20:33:04Z 2009-11-17T20:33:04Z UncleBens: (1) is for Maintainability not performance. Excessive use to try/catch/throw reduces the readability of the code. Rule of thumb(and I might come under fire for this but its just my opinion), lesser the entry and exit points, the easier it is to read the code. David Thornley: Not when you need interoperability. -fno-exceptions flag in gcc disables exceptions when you are compiling a library that is called from C code. http://stackoverflow.com/questions/130965/what-is-the-worst-code-youve-ever-written/135086#135086 Comment by Sridhar Iyer on What is the worst code you've ever written? Sridhar Iyer 2009-10-13T15:27:55Z 2009-10-13T15:27:55Z the code was an implementation of newton-raphson, fitting a model (i.e the buggy program). The operating dataset was small enough.. it was the fitting operation that took a long time. The pattern of outputs flagged the bug. I don't know how I could have caught it any other way. http://stackoverflow.com/questions/192957/efficiently-querying-one-string-against-multiple-regexes/1346398#1346398 Comment by Sridhar Iyer on Efficiently querying one string against multiple regexes. Sridhar Iyer 2009-09-02T23:20:38Z 2009-09-02T23:20:38Z Am accepting this answer, because I've gone through all the other routes and failed (yes I have really implemented all the other solution and find them falling short in many areas). I've taken up the project to port the library from Haskell to C++.. might open source it later. This might not really work out later but this does seems promising and theoretically sound. http://stackoverflow.com/questions/192957/efficiently-querying-one-string-against-multiple-regexes/193013#193013 Comment by Sridhar Iyer on Efficiently querying one string against multiple regexes. Sridhar Iyer 2009-09-02T20:29:52Z 2009-09-02T20:29:52Z This was already implemented by us, but unfortunately the disadvantages you mention is why we are looking for a different solution. http://stackoverflow.com/questions/192957/efficiently-querying-one-string-against-multiple-regexes/1361359#1361359 Comment by Sridhar Iyer on Efficiently querying one string against multiple regexes. Sridhar Iyer 2009-09-02T20:26:44Z 2009-09-02T20:26:44Z If you are testing 10,000 regexes, it'll be very slow. You need some way to combine the tree to get a single pass parser. http://stackoverflow.com/questions/1034957/follow-up-to-english-grammar-parser/1035015#1035015 Comment by Sridhar Iyer on Follow up to English Grammar Parser Sridhar Iyer 2009-06-24T18:07:08Z 2009-06-24T18:07:08Z Then I would say, that first write down the grammar on paper (sample BNF on <a href="http://www.faqs.org/docs/perl5int/lexparse.html" rel="nofollow">faqs.org/docs/perl5int/lexparse.html</a>). Then tackle each rule one by one (Compiler Design by Per Brinch Hansen demonstrates this approach in an excellent way) http://stackoverflow.com/questions/86550/is-there-a-linux-ubuntu-svn-client-that-doesnt-suck/86586#86586 Comment by Sridhar Iyer on Is there a Linux (Ubuntu) svn client that doesn't suck?? Sridhar Iyer 2009-02-05T19:33:38Z 2009-02-05T19:33:38Z who on earth codes on Linux(presuming that is what your are using svn for) and doesn't touches the shell!! http://stackoverflow.com/questions/459503/how-can-i-avoid-dynamiccast-in-my-c-code/459551#459551 Comment by Sridhar Iyer on How can I avoid dynamic_cast in my C++ code? Sridhar Iyer 2009-01-20T20:01:11Z 2009-01-20T20:01:11Z Of course.. and what is stopping the private methods of Car to call the Engine's public methods? Unless you are trying to abstract it further.. i.e. Car class consists of Engine pointer to start with. http://stackoverflow.com/questions/376657/find-the-minimum-positive-value/376666#376666 Comment by Sridhar Iyer on Find the Minimum Positive Value Sridhar Iyer 2008-12-18T19:42:24Z 2008-12-18T19:42:24Z Needs to be edited: result=number[0]; //line 1 and delete the last condition. http://stackoverflow.com/questions/366849/generating-random-fixed-length-permutations-of-a-string/366870#366870 Comment by Sridhar Iyer on Generating random fixed length permutations of a string Sridhar Iyer 2008-12-14T20:00:09Z 2008-12-14T20:00:09Z I want to generate all X&lt;sup&gt;Y&lt;/sup&gt; entries. If I use Zach's answer, then there is no guarantee that it'll terminate. If I wanted to use hashmap.. I could as well dump everything to hashmap and print it out as the hashmap will randomize the entries for me anyway. http://stackoverflow.com/questions/366849/generating-random-fixed-length-permutations-of-a-string/366888#366888 Comment by Sridhar Iyer on Generating random fixed length permutations of a string Sridhar Iyer 2008-12-14T19:56:39Z 2008-12-14T19:56:39Z I did think of this, but this algorithm has no guarantee that it'll terminate. http://stackoverflow.com/questions/192957/efficiently-querying-one-string-against-multiple-regexes/193000#193000 Comment by Sridhar Iyer on Efficiently querying one string against multiple regexes. Sridhar Iyer 2008-10-10T21:49:52Z 2008-10-10T21:49:52Z Any libraries that can do this automatically? This cant be handled manually. The regexes are not hard coded. http://stackoverflow.com/questions/154705/how-to-reduce-time-spent-in-meetings-as-a-developer/154903#154903 Comment by Sridhar Iyer on How to reduce time spent in meetings as a developer? Sridhar Iyer 2008-10-02T05:35:07Z 2008-10-02T05:35:07Z Sometimes its not a matter of choice :) Also the question mentions &quot;seemingly-pointless&quot;