User derigel - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T11:51:19Z http://stackoverflow.com/feeds/user/12045 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1790085/resharper-gotchas/1790615#1790615 2 Answer by derigel for Resharper gotchas derigel 2009-11-24T14:57:36Z 2009-11-24T14:57:36Z <p>You can mark such properties by UsedImplicitly attribute and ReSharper will not suggest to remove it.</p> http://stackoverflow.com/questions/1609865/how-good-are-the-resharper-5-0-nightly-builds/1611841#1611841 1 Answer by derigel for How good are the resharper 5.0 nightly builds? derigel 2009-10-23T07:18:59Z 2009-10-23T07:18:59Z <p>It's pretty stable and solid. Stability depends on area you are developing (ASP.NET, XAML, WinForms).</p> http://stackoverflow.com/questions/1422973/using-visual-studio-or-resharper-can-i-jump-to-the-aspx-page-while-in-the-code/1553691#1553691 0 Answer by derigel for Using Visual Studio or Resharper, can I jump to the .aspx page while in the code behind? derigel 2009-10-12T09:56:54Z 2009-10-12T09:56:54Z <p>It will be possibly (and even more) with new feature "Go To Related Files" coming in new ReSharper 5 version.</p> http://stackoverflow.com/questions/123726/401-response-code-for-json-requests-with-asp-net-mvc 3 401 response code for json requests with ASP.NET MVC derigel 2008-09-23T20:42:19Z 2009-07-02T07:37:45Z <p>How to disable standard ASP.NET handling of 401 response code (redirecting to login page) for AJAX/JSON requests?</p> <p>For web-pages it's okay, but for AJAX I need to get right 401 error code instead of good looking 302/200 for login page.</p> http://stackoverflow.com/questions/451287/how-do-you-show-the-windows-explorer-context-menu-from-a-c-application/898330#898330 0 Answer by derigel for How do you show the Windows Explorer context menu from a C# application? derigel 2009-05-22T15:01:45Z 2009-05-22T15:01:45Z <p>Take a look at this project <a href="http://www.codeproject.com/KB/miscctrl/FileBrowser.aspx" rel="nofollow">http://www.codeproject.com/KB/miscctrl/FileBrowser.aspx</a></p> <p>It's file browser in C#, it can show shell context menus for files.</p> http://stackoverflow.com/questions/815513/tools-tips-for-refactoring-visual-studio-projects/816426#816426 0 Answer by derigel for Tools / Tips for refactoring Visual Studio projects derigel 2009-05-03T05:47:22Z 2009-05-03T05:47:22Z <p>About file locations - next version of ReSharper will track file moving and renaming and adjust all it's references. It's useful for ASP.NET projects - Masterpage, User Controls, JS, CSS, Images references.</p> http://stackoverflow.com/questions/802385/does-resharper-have-problems-with-asp-net-mvc/805307#805307 2 Answer by derigel for Does resharper have problems with asp.net mvc? derigel 2009-04-30T04:10:30Z 2009-04-30T04:40:44Z <p>Yep, current ReSharper version doesn't place references on MVC controllers (although, next one will).</p> <p>In meantime you can mark controller class and action methods with ImplicitUse attribute. You can find it in JetBrains.Annotations assembly. If you don't want external dependency, you can add necessary annotations attributes to your project, you will find them in ReSharper->Options->Code Inspection->Code Annotation->Copy default implementation.</p> http://stackoverflow.com/questions/478122/pygments-in-ironpython/724331#724331 1 Answer by derigel for Pygments in IronPython derigel 2009-04-07T06:21:08Z 2009-04-07T06:21:08Z <p>Take a look at this article <a href="http://devhawk.net/2009/04/05/Pygments%2BFor%2BWindows%2BLive%2BWriter.aspx" rel="nofollow">Pygments for Windows Live Writer</a>.</p> <p>Over there is the link to the sources and misc files to compile Pygments for IronPython.</p> http://stackoverflow.com/questions/334408/where-to-get-microsoft-web-mvc-dll/661363#661363 1 Answer by derigel for Where to get Microsoft.Web.Mvc.dll derigel 2009-03-19T07:42:55Z 2009-03-19T07:42:55Z <p>Sorry, it's not answer, just comment.</p> <p>Where to get fresh assembly for ASP.NET MVC 1.0 release?</p> http://stackoverflow.com/questions/240224/double-incomplete-parameter-url-encoding/258262#258262 0 Answer by derigel for Double/incomplete Parameter Url Encoding derigel 2008-11-03T10:11:51Z 2008-11-03T10:11:51Z <p>Escaping of forward slahes and dots in path part of url is prohibited by security reason (althrough, it works in mono).</p> http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/213765#213765 1 Answer by derigel for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta? derigel 2008-10-17T20:39:26Z 2008-10-17T20:39:26Z <p>Html.TextBox - value now is object, not string. So, hidden errors possible (not at compile time and even not at runtime), for example I've used this overloaded method earlier Html.TextBox(string name, object htmlAttributes). Now my attrs go into textbox value.</p> http://stackoverflow.com/questions/129917/what-is-the-best-way-to-launch-a-web-browser-with-a-custom-url-from-a-c-applicat/138955#138955 1 Answer by derigel for What is the best way to launch a web browser with a custom url from a C# application? derigel 2008-09-26T11:50:25Z 2008-09-26T11:50:25Z <p>Check the <strong>Uri.IsWellFormedUriString</strong> static method. It's cheaper than catching exception.</p> http://stackoverflow.com/questions/32715/is-there-a-way-to-get-images-to-display-with-asp-net-and-appoffline-htm/107422#107422 0 Answer by derigel for Is there a way to get images to display with ASP.NET and app_offline.htm? derigel 2008-09-20T06:43:39Z 2008-09-20T06:43:39Z <p>I have an idea.</p> <p>You can create separate application, pointed to the same folder, without ASP.NET enabled. Then accessing to images by this application will not be affected by app_offline.htm file. Or, point that application direсtly to folder with static content, there will not be any app_offline files.</p> <p>But, of course, you need to assign separate dns name for this application, kind of static.somedomain.com.</p> http://stackoverflow.com/questions/1790085/resharper-gotchas/1790615#1790615 Comment by derigel on Resharper gotchas derigel 2009-11-25T19:40:49Z 2009-11-25T19:40:49Z It's not necessary to reference JetBrains assembly. You can copy these attributes to your project, to any place and namespace. Look at ReSharper→Options→Code Annotations→Copy default implementation to clipboard. http://stackoverflow.com/questions/305092/which-method-performs-better-any-vs-count-0/305156#305156 Comment by derigel on Which method performs better: .Any() vs .Count() > 0? derigel 2009-09-29T08:35:02Z 2009-09-29T08:35:02Z Doesn't Any() implementation check for ICollection interface and check after for Count property? http://stackoverflow.com/questions/213427/translate-c-code-into-ast/213485#213485 Comment by derigel on Translate C# code into AST? derigel 2009-08-07T10:52:41Z 2009-08-07T10:52:41Z Repository now is at <a href="http://svn.rsdn.ru/svn/RSharp/" rel="nofollow">svn.rsdn.ru/svn/RSharp</a> http://stackoverflow.com/questions/123726/401-response-code-for-json-requests-with-asp-net-mvc/126985#126985 Comment by derigel on 401 response code for json requests with ASP.NET MVC derigel 2008-09-24T15:04:09Z 2008-09-24T15:04:09Z But I still can't get 401 Response status code for AJAX request. Even if I set up response in Autorization filter. Since ASP.NET infrastructure that catch 401 response and redirecting to login page sits over ASP.NET MVC. Letting know that user is not logged by empty JSON result is not very right...