User Dean - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T04:28:35Z http://stackoverflow.com/feeds/user/32936 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1599965/jquery-keypress-my-regex-is-working-well-its-messing-up-my-dynamic-feedback/1602677#1602677 1 Answer by Dean for Jquery, keypress: my regex is working well, it's messing up my dynamic feedback Dean 2009-10-21T18:27:25Z 2009-10-21T18:27:25Z <p>If I am reading this right then you want the each character to display on the screen then be removed you might want to use the onkeyup event instead of the onkeypress. As alex suggested you could add </p> <pre><code>setTimeout ( expression, timeout ); </code></pre> <p>To delay calling the code, depends exactly what you are after really.</p> http://stackoverflow.com/questions/1601933/how-do-i-stop-a-web-page-from-scrolling-to-the-top-when-a-link-is-clicked-that-tr/1602298#1602298 0 Answer by Dean for How do I stop a web page from scrolling to the top when a link is clicked that triggers javascript? Dean 2009-10-21T17:24:35Z 2009-10-21T17:49:24Z <p>Returning false from the code your calling will work and in a number of circumstances is the prefered method but you can also so this </p> <pre><code>&lt;a href="javascript:;"&gt;Link Title&lt;/a&gt; </code></pre> <p>When it comes to SEO it really depends on what your link is going to be used for. If you are going to actually use it to link to some other content then I would agree ideally you would want something meaningful here but if you are using the link for functionality purposes maybe like stackoverflow does for the post toolbar (bold, italic, hyperlink, etc) then it probably doesn't matter.</p> http://stackoverflow.com/questions/509101/analyze-sql-server-2005-transaction-log-using-log-parser/1006022#1006022 0 Answer by Dean for Analyze SQL Server 2005 Transaction Log using Log Parser Dean 2009-06-17T09:25:45Z 2009-06-17T09:25:45Z <p>There is a product that does what I think you are after, unfortunately its not cheap. It lets you monitor the transaction logs for SQL 2005/2008. I would love something open source but cant find anything yet.</p> <p><a href="http://www.apexsql.com/sql%5Ftools%5Flogapi.asp" rel="nofollow">http://www.apexsql.com/sql_tools_logapi.asp</a></p> http://stackoverflow.com/questions/920284/detect-if-ssl-is-supported 0 Detect if SSL is supported Dean 2009-05-28T10:59:26Z 2009-05-28T11:17:52Z <p>I am redirecting users to https using a HttpModule for selected pages, what I don't want is to force users to use SSL if for some reason there browser, proxy, etc does not support it. Is it possible to detect if the client supports SSL connections using .NET?</p> http://stackoverflow.com/questions/628284/c-compiler-enhancement-suggestion/628367#628367 6 Answer by Dean for C# Compiler Enhancement Suggestion Dean 2009-03-09T22:59:52Z 2009-03-09T22:59:52Z <p>If you have Resharper it will highlight things like this for you. Cant recommend resharper highly enough, it has lots of useful IDE additions especially around refactoring.</p> <p><a href="http://www.jetbrains.com/resharper/" rel="nofollow">http://www.jetbrains.com/resharper/</a></p> http://stackoverflow.com/questions/627753/how-to-recover-gracefully-from-targetinvocationexception-in-multi-thread/628345#628345 0 Answer by Dean for How to recover gracefully from TargetInvocationException in multi thread? Dean 2009-03-09T22:53:15Z 2009-03-09T22:53:15Z <p>Not sure what version of .net you are using if its 3.0+ you can do something along these lines.</p> <pre><code>private void UpdateValue(int newValue) { Action myAction = () =&gt; progressBar.Value = newValue; if (progressBar.InvokeRequired) progressBar.Invoke(myAction); else myAction(); } </code></pre> <p>Call this method with the new value for the progress bar it will check if the call needs marshalling and make the appropriate call. Be careful InvokeRequired is relatively expensive, so use it only where needed. You could make this into an extension method to make generic use of this pattern for other controls if needed.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/626710/how-can-i-detect-if-a-string-is-empty-of-characters/626966#626966 0 Answer by Dean for How can I detect if a string is empty of characters? Dean 2009-03-09T16:21:03Z 2009-03-09T21:52:41Z <p>This will do the job if you are using .net.</p> <pre><code>string myStr = " "; string.IsNullOrEmpty(myStr.Trim())); </code></pre> <p>If you are using .net 3.0 or above then you might like to create an extension method for this that you can use with any string.</p> <pre><code>namespace StringExtensions { public static class StringExtensionsClass { public static string IsWhiteSpace(this string s) { return string.IsNullOrEmpty(s.Trim())); } } } </code></pre> <p>You can then use this like so</p> <pre><code>string myStr = " "; if (myStr.IsWhiteSpace()) Console.Write("It just whitespace"); </code></pre> <p>Hope that this is what you are after.</p> http://stackoverflow.com/questions/67045/what-advantages-does-jquery-have-over-other-javascript-libraries/252163#252163 0 Answer by Dean for What advantages does jQuery have over other JavaScript libraries? Dean 2008-10-30T23:41:25Z 2008-10-30T23:41:25Z <p>I have been using jQuery for a few months now and have found it an enjoyable experience. The framework is clear and concise it has a great plugin architecture and is very well supported but frameworks are a very personal thing though and you should probably try a few it doesn't normally take long to spot the one that feels best for you.</p> <p>Not sure if this will matter to you but Microsoft recently announced support for jQuery in the next update for VS 2008 <a href="http://weblogs.asp.net/scottgu/archive/2008/09/28/jquery-and-microsoft.aspx" rel="nofollow">Here is the blog post</a>.</p> <p>You can hear the John Resig, the guy behind jQuery, talking about it a various other frameworks on a recent <a href="http://boagworld.com/podcast/135/" rel="nofollow">Boagworld podcast</a>. It might help you make up your mind its a pretty balanced piece.</p> http://stackoverflow.com/questions/920284/detect-if-ssl-is-supported/920352#920352 Comment by Dean on Detect if SSL is supported Dean 2009-05-28T13:32:55Z 2009-05-28T13:32:55Z &quot;why would the browser or proxy not support it?&quot; That is what I said when asked what would happen if they don't support SSL.