User derigel - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T11:51:19Zhttp://stackoverflow.com/feeds/user/12045http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1790085/resharper-gotchas/1790615#17906152Answer by derigel for Resharper gotchasderigel2009-11-24T14:57:36Z2009-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#16118411Answer by derigel for How good are the resharper 5.0 nightly builds?derigel2009-10-23T07:18:59Z2009-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#15536910Answer by derigel for Using Visual Studio or Resharper, can I jump to the .aspx page while in the code behind?derigel2009-10-12T09:56:54Z2009-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-mvc3401 response code for json requests with ASP.NET MVCderigel2008-09-23T20:42:19Z2009-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#8983300Answer by derigel for How do you show the Windows Explorer context menu from a C# application?derigel2009-05-22T15:01:45Z2009-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#8164260Answer by derigel for Tools / Tips for refactoring Visual Studio projectsderigel2009-05-03T05:47:22Z2009-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#8053072Answer by derigel for Does resharper have problems with asp.net mvc?derigel2009-04-30T04:10:30Z2009-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#7243311Answer by derigel for Pygments in IronPythonderigel2009-04-07T06:21:08Z2009-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#6613631Answer by derigel for Where to get Microsoft.Web.Mvc.dllderigel2009-03-19T07:42:55Z2009-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#2582620Answer by derigel for Double/incomplete Parameter Url Encodingderigel2008-11-03T10:11:51Z2008-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#2137651Answer by derigel for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?derigel2008-10-17T20:39:26Z2008-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#1389551Answer by derigel for What is the best way to launch a web browser with a custom url from a C# application?derigel2008-09-26T11:50:25Z2008-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#1074220Answer by derigel for Is there a way to get images to display with ASP.NET and app_offline.htm?derigel2008-09-20T06:43:39Z2008-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#1790615Comment by derigel on Resharper gotchasderigel2009-11-25T19:40:49Z2009-11-25T19:40:49ZIt'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#305156Comment by derigel on Which method performs better: .Any() vs .Count() > 0?derigel2009-09-29T08:35:02Z2009-09-29T08:35:02ZDoesn't Any() implementation check for ICollection interface and check after for Count property?http://stackoverflow.com/questions/213427/translate-c-code-into-ast/213485#213485Comment by derigel on Translate C# code into AST?derigel2009-08-07T10:52:41Z2009-08-07T10:52:41ZRepository 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#126985Comment by derigel on 401 response code for json requests with ASP.NET MVCderigel2008-09-24T15:04:09Z2008-09-24T15:04:09ZBut 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...