User Russ C - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T21:17:03Z http://stackoverflow.com/feeds/user/15697 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1636381/how-can-i-send-an-access-denied-http-response-to-the-client-in-asp-net/1637099#1637099 0 Answer by Russ C for How can I send an "Access Denied" http response to the client in asp.net? Russ C 2009-10-28T12:56:13Z 2009-10-28T12:56:13Z <p>I'd do something like</p> <pre><code>throw new HttpException(401, "Access Denied"); </code></pre> http://stackoverflow.com/questions/1624279/priority-queue-in-net/1624295#1624295 0 Answer by Russ C for Priority Queue in .Net Russ C 2009-10-26T11:28:33Z 2009-10-26T11:28:33Z <p>You could just implement IComparable on your class and create the specific comparer inside your class, that way you can just use IList.Sort() ?</p> http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725975#725975 1 Answer by Russ C for OutOfMemoryException in Regex Matches when processing large files Russ C 2009-04-07T14:18:56Z 2009-04-07T14:18:56Z <p>Without seeing your Regex, I don't know for sure but sometimes you can get problems like this because your matches are Greedy instead of Lazy.</p> <p>The Regex engine has to store lots of information internally and Greedy matches can end up causing the Regex to select large sections of your 800k string, many times over.</p> <p>There's some good information about this over <a href="http://www.regular-expressions.info/catastrophic.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/253063/disable-but-not-uninstall-resharper-4-x/301568#301568 2 Answer by Russ C for Disable, but not uninstall Resharper 4.x Russ C 2008-11-19T11:01:52Z 2008-11-19T11:01:52Z <p>This definitely works in VS 2008 too.</p> http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/82338#82338 94 Answer by Russ C for What's Your Motto As A Developer/Programmer? Russ C 2008-09-17T12:02:14Z 2008-09-17T12:02:14Z <p>"It works on my Machine!"</p> http://stackoverflow.com/questions/1624279/priority-queue-in-net/1624350#1624350 Comment by Russ C on Priority Queue in .Net Russ C 2009-10-26T12:59:14Z 2009-10-26T12:59:14Z Thanks for the Snippet Lasse, got distracted by a manager :) http://stackoverflow.com/questions/1624279/priority-queue-in-net/1624295#1624295 Comment by Russ C on Priority Queue in .Net Russ C 2009-10-26T11:37:44Z 2009-10-26T11:37:44Z In that case, don't use IList, but implement an ICollection and you can specify your own Insert method that lets you order correctly on insertion. http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725975#725975 Comment by Russ C on OutOfMemoryException in Regex Matches when processing large files Russ C 2009-04-09T10:28:24Z 2009-04-09T10:28:24Z Hi Slough, Any news ? http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725975#725975 Comment by Russ C on OutOfMemoryException in Regex Matches when processing large files Russ C 2009-04-07T15:14:03Z 2009-04-07T15:14:03Z This looks better to me, it doesn't match the /css in a link type=&quot;text/css&quot; ... (?:=&quot;?)([\/|\?](?:[\w#!:\.\?\+=&amp;@!$'~&#42;,;\/\(\)\[\]\-]|%[0-9a-f]{2})*) http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725975#725975 Comment by Russ C on OutOfMemoryException in Regex Matches when processing large files Russ C 2009-04-07T15:09:01Z 2009-04-07T15:09:01Z This runs a lot quickler but I don't know if its accurate: ( |\.\.|\.|&quot;&quot;|'|=)[\/|\?](?:[\w#!:\.\?\+=&amp;@!$'~&#42;,;\/\(\)\[\]\-]|%[0-9a-f]{2})*( |\.|\.\.|&quot;&quot;|'| ) http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725975#725975 Comment by Russ C on OutOfMemoryException in Regex Matches when processing large files Russ C 2009-04-07T15:06:26Z 2009-04-07T15:06:26Z What's the regex actually wanting to match ? As you say, I think it's probably doing the wrong thing. The example take you gave me actually generated 19 matches! http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725975#725975 Comment by Russ C on OutOfMemoryException in Regex Matches when processing large files Russ C 2009-04-07T14:58:44Z 2009-04-07T14:58:44Z Didn't seem to work for me, that regex maxes out my test program with a 30k html file, for Cpu cycles! http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725975#725975 Comment by Russ C on OutOfMemoryException in Regex Matches when processing large files Russ C 2009-04-07T14:52:48Z 2009-04-07T14:52:48Z On the latest regex, what happenes if you change the last '*' to '*?' http://stackoverflow.com/questions/725817/outofmemoryexception-in-regex-matches-when-processing-large-files/725975#725975 Comment by Russ C on OutOfMemoryException in Regex Matches when processing large files Russ C 2009-04-07T14:48:27Z 2009-04-07T14:48:27Z Do you have a small snippet of what you're trying to match ? Is it Html or is it text that might have Urls in it ?