User Dmitri Nesteruk - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T11:34:08Z http://stackoverflow.com/feeds/user/9476 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/347821/do-programmers-read-books-or-is-the-book-industry-dead 39 Do programmers read books? Or is the book industry dead? Dmitri Nesteruk 2008-12-07T17:48:22Z 2009-12-17T02:26:42Z <p>I keep reading in news and blogs that programmers do not read books, that the book industry is 'in decline' and that writing a book isn't worth the effort as the money is pathetic. My question: is it true? Should we just bury the book industry and stick to Googling and MSDN and the like?</p> http://stackoverflow.com/questions/1846917/advice-on-my-dal-layer-any-obvious-issues-with-it/1846946#1846946 1 Answer by Dmitri Nesteruk for advice on my DAL layer, any obvious issues with it? Dmitri Nesteruk 2009-12-04T13:29:36Z 2009-12-04T13:29:36Z <p>You might consider using a DI container instead of hoping that having only one place where you <code>new</code> the factory protects you from further changes. Also, calling a factory method <code>Load</code> is a bit confusing - why not call it <code>CreateDAO</code> instead?</p> http://stackoverflow.com/questions/1804930/c-what-complex-refactoring-features-do-you-wish-there-were -1 [C#] What complex refactoring features do you wish there were? Dmitri Nesteruk 2009-11-26T17:39:17Z 2009-11-26T17:56:43Z <p>Tools like CodeRush and Resharper offer lots of simple refactorings, such as 'Rename Variable'. But if you could have any refactoring feature at all (no matter how complex), what would it be?</p> <p>(I know, everyone wants a 'make program perfect' refactoring, but let's be realistic here.)</p> http://stackoverflow.com/questions/713324/how-to-cast-intptr-to-byte 1 How to cast IntPtr to byte* Dmitri Nesteruk 2009-04-03T10:05:06Z 2009-11-24T03:02:02Z <p>I'm calling a method via interop that returns an <code>out IntPtr</code> parameter. How can I get a <code>byte*</code> for this <code>IntPtr</code> so I can operate on it? I tried the following:</p> <pre><code>fixed(byte* ptr = (byte)myIntPtr) </code></pre> <p>but it didn't work. Any help would be appreciated!</p> http://stackoverflow.com/questions/1767155/how-does-visual-studio-populate-its-add-references-dialog 0 How does Visual Studio populate its Add References dialog? Dmitri Nesteruk 2009-11-19T22:54:50Z 2009-11-20T12:26:29Z <p>This is a <em>deliberate repost</em> of an earlier question. The reason why I'm posting a question that has already been answered is I beleive it wasn't answered completely.</p> <p>My question is this: how does VS populate its Add References dialog for .Net objects? So far, I know about the following:</p> <ul> <li>The PublicAssemblies folder inside VS's installation path.</li> <li>The AssemblyFolders registry keys (for either 32-bit or 64-bit installations)</li> </ul> <p>Unfortunately, both of the above do not explain how Add References manages to list assemblies from Unity or MS Office. Those assemblies' paths are not listed in registry and are not placed in PublicAssemblies folder. How does Visual Studio find them?</p> <p>Any idea is appreciated. I am <em>really</em> stuck on this.</p> http://stackoverflow.com/questions/796412/how-to-turn-plural-words-singular 5 How to turn plural words singular? Dmitri Nesteruk 2009-04-28T06:05:17Z 2009-11-20T10:17:49Z <p>I'm preparing some table names for an ORM, and I want to turn plural table names into single entity names. My only problem is finding an algorithm that does it reliably. Here's what I'm doing right now:</p> <ol> <li>If a word ends with <em>-ies</em>, I replace the ending with <em>-y</em></li> <li>If a word ends with <em>-es</em>, I remove this ending. This doesn't always work however - for example, it replaces <em>Types</em> with <em>Typ</em></li> <li>Otherwise, I just remove the trailing <em>-s</em></li> </ol> <p>Does anyone know of a better algorithm?</p> http://stackoverflow.com/questions/270455/is-it-possible-to-program-iphone-in-c 4 Is it possible to program iPhone in C++ Dmitri Nesteruk 2008-11-06T21:53:12Z 2009-11-17T22:42:57Z <p>I'm all for language diversity, but Objective C is insane. So I'm curious: is it possible to code iPhone apps with C++ while using the Cocoa API, etc?</p> http://stackoverflow.com/questions/1727768/how-does-visual-studio-find-unity-pp-or-office-assemblies-in-its-add-references 0 How does Visual Studio find Unity/P&P or Office assemblies in its Add References Dialog? Dmitri Nesteruk 2009-11-13T07:51:58Z 2009-11-16T22:51:52Z <p>I have read other posts on SO regarding VS's Add References dialog and how it populates assemblies. However, even after looking in <em>Reference Assemblies</em> folder and using the <em>AssemblyFolders</em> registry key for 32-bit and 64-bit, I am still unable to locate some assemblies, such as Unity/P&amp;P and Office assemblies, when searching for them programmatically. Am I missing something?</p> http://stackoverflow.com/questions/1665905/setlinespacing-does-not-work-in-directwrite-why 5 SetLineSpacing() does not work in DirectWrite - why? Dmitri Nesteruk 2009-11-03T08:10:59Z 2009-11-13T14:13:34Z <p>I'm rendering text in Direct2D/DirectWrite, but calling <code>SetLineSpacing()</code> on either TextFormat or TextLayout seems to have no effect. Does anyone know why?</p> http://stackoverflow.com/questions/1678378/whats-the-best-method-for-drawing-overlay-graphics-on-windows/1727859#1727859 0 Answer by Dmitri Nesteruk for What's the best method for drawing overlay graphics on Windows? Dmitri Nesteruk 2009-11-13T08:19:01Z 2009-11-13T08:19:01Z <p>I recommend Direct2D and DirectWrite as you get high-quality rendering that's also ridiculously fast compared to either GDI or anything done in the .Net space. The only problem is that you need Vista or later OS to use it.</p> http://stackoverflow.com/questions/1665897/wpf-styling-not-applied-to-dynamically-added-textblock-content 0 [WPF] Styling not applied to dynamically added TextBlock content Dmitri Nesteruk 2009-11-03T08:07:40Z 2009-11-03T08:50:10Z <p>I'm trying to add inlines to a text block using the code below. The text block's window uses a <code>Themes.xaml</code> file for styling, but when I add the runs dynamically, the styling does not get applied. Can you help me understand why?</p> <pre><code>foreach (string key in wrappingOptions.Keys) { Hyperlink link = new Hyperlink(new Run(key)); string s = new string(wrappingOptions[key].ToCharArray()); link.Click += (o, _) =&gt; tbIn.SelectedText = string.Format("&lt;{0}&gt;{1}&lt;/{0}&gt;", s, tbIn.SelectedText); InputLinksBlock.Inlines.Add(link); } </code></pre> http://stackoverflow.com/questions/1656014/how-can-i-render-mixed-colour-text-in-directwrite 0 How can I render mixed-colour text in DirectWrite? Dmitri Nesteruk 2009-11-01T00:21:02Z 2009-11-03T08:09:37Z <p>I want to use DirectWrite for mixed-colour text formatting (syntax highlighting, to be precise), but can't seem to find a way to do it, either in the Layout or Typography options. The only option is passing a Brush when rendering the text, which doesn't work for me because I basically have just one Layout. Help!</p> http://stackoverflow.com/questions/1656014/how-can-i-render-mixed-colour-text-in-directwrite/1665900#1665900 0 Answer by Dmitri Nesteruk for How can I render mixed-colour text in DirectWrite? Dmitri Nesteruk 2009-11-03T08:09:37Z 2009-11-03T08:09:37Z <p>As it turns out, you can set the formatting options of the TextLayout object, including passing a SolidColorBrush to indicate color.</p> http://stackoverflow.com/questions/1653631/which-resharper-command-causes-the-context-action-list-to-pop-up 0 Which ReSharper command causes the Context Action List to pop up? Dmitri Nesteruk 2009-10-31T06:47:51Z 2009-10-31T07:12:30Z <p>I've turned off ReSharper intellisense but still want a keyboard shortcut for opening the context action list (the one that pops up on the left when you point at a piece of code). Unfortunately, I cannot find the ReSharper command for this to bind it to a keyboard key. Can you help?</p> http://stackoverflow.com/questions/409616/screencasts-vs-articles-which-do-you-prefer 5 Screencasts vs Articles - which do you prefer? Dmitri Nesteruk 2009-01-03T19:16:07Z 2009-10-20T10:19:43Z <p>Recently, I've noticed that I've lost all patience with programming articles, and started watching screencasts instead. For example, the ASP.NET MVC site had lots of screencasts, so I watched those and got coding in no time. I was therefore wondering what the community thinks about screencasts and articles, particularly as I'm considering contributing material, and am pondering the format.</p> <p>On a side note, I have an accent, so it might skew my decision somewhat. I'm not sure - what do you think?</p> <p><strong>Okay, looks like the majority vote is for Articles. Thanks!</strong></p> http://stackoverflow.com/questions/474785/apart-from-script-tags-what-should-i-strip-to-make-sure-user-entered-html-is-s 0 Apart from <script> tags, what should I strip to make sure user-entered HTML is safe? Dmitri Nesteruk 2009-01-23T22:00:13Z 2009-10-15T08:16:48Z <p>I have an app that reprocesses HTML in order to do nice typography. Now, I want to put it up on the web to let users type in their text. So here's the question: I'm pretty sure that I want to remove the SCRIPT tag, plus closing tags like &lt;/form&gt;. But what else should I remove to make it totally safe? </p> http://stackoverflow.com/questions/1443673/debugging-64-bit-c-from-64-bit-net-code-how 0 Debugging 64-bit C++ from 64-bit .NET Code - how? Dmitri Nesteruk 2009-09-18T10:20:24Z 2009-10-13T21:59:20Z <p>Visual studio tells me that 64-bit managed+unmanaged code debugging is not supported. Has anyone managed to resolve this problem?</p> http://stackoverflow.com/questions/1417934/how-to-prevent-scrollbar-from-repositioning-web-page 0 How to prevent scrollbar from repositioning web page? Dmitri Nesteruk 2009-09-13T14:59:30Z 2009-10-07T15:26:53Z <p>I have a website with center-aligned DIV. Now, some pages need scrolling, some don't. When move from one type to another, the appearance of a scrollbar moves the page a few pixels to the side. Is there any way to avoid this without explicitly showing the scrollbars on each page?</p> http://stackoverflow.com/questions/1515706/-net-is-it-possible-to-change-the-way-unit-tests-are-invoked 1 [.Net] Is it possible to change the way unit tests are invoked? Dmitri Nesteruk 2009-10-04T05:47:15Z 2009-10-04T11:05:57Z <p>My guess is that the current semantics of unit testing involve actually calling the method, i.e., if I have a method <code>MyTest()</code> then that's what gets called. My question is this: is it possible to somehow change the pipeline of the way tests are executed (preferably without recompiling the test runner) so that, say, instead of calling the method directly it's called via a wrapper I provide (i.e., <code>MyWrapper(MyTest)</code>)?</p> <p>Thanks.</p> http://stackoverflow.com/questions/593652/how-to-get-openid-authentication-on-sharepoint-services 2 How to get OpenID authentication on SharePoint Services? Dmitri Nesteruk 2009-02-27T05:58:07Z 2009-09-16T10:36:03Z <p>Is this even possible? I want to build a small community site but do not want to use Live ID.</p> http://stackoverflow.com/questions/1270789/which-certifications-do-clients-value 0 Which certifications do clients value? Dmitri Nesteruk 2009-08-13T08:32:31Z 2009-09-07T16:29:00Z <p>There have been certification-related discussions on SO before, pertaining primarily to one's own career. My question is a bit different - I'd like to know your opinion on whether or not certifications of your employees have any way of influencing whether your company gets a contract or not. Specifically, I'd like to know the following:</p> <ul> <li><p>Do prospective client look at certificates at all? Or is the amount of experience/projects completed the only thing we need to worry about?</p></li> <li><p>Are there any 'premier' developer certifications that <em>do</em> matter? For example, is it reasonable to ask to be paid more for a developer who is a Microsoft Certified Architect (we have only 3 in the country, BTW).</p></li> <li><p>Are managerial certifications worth investing into? I know that MBA is undoubtedly very powerful, but I'm talking about things like Certified Scrum Master, PMBOK, PMP and the like.</p></li> <li><p>Does MVP status matter?</p></li> </ul> <p>My company works with the .Net stack, so by 'certifications' I mean primarily MC** ones, unless we're talking about project management certification.</p> <p>Thanks!</p> http://stackoverflow.com/questions/364185/right-way-of-working-with-connectmode-for-vs-add-ins 0 Right way of working with connectMode for VS add-ins Dmitri Nesteruk 2008-12-12T21:21:33Z 2009-09-04T08:00:02Z <p>Can someone point me to a guide on how to interpret the connectMode parameter that gets passed when a VS add-in is loaded?</p> http://stackoverflow.com/questions/469164/what-messaging-communication-programs-can-be-embedded-into-visual-studio 1 What messaging/communication programs can be embedded into Visual Studio? Dmitri Nesteruk 2009-01-22T13:43:22Z 2009-09-03T00:59:13Z <p>Does anyone have experience with embedding messaging or mailing programs into VS? I'm interested in things like Skype or Instant Messenger being embedded as tool windows. If you use (or have used) something like this, how has it affected your productivity?</p> http://stackoverflow.com/questions/1351428/is-it-legal-to-branch-an-open-source-project-that-has-gone-commercial 3 Is it legal to branch an open-source project that has gone commercial? Dmitri Nesteruk 2009-08-29T13:21:48Z 2009-08-29T15:09:01Z <p>I have some open-source apps that use a component that was open-source but is no longer so, with its CodePlex repository and project page removed. Do I have legal right to create a branch from the last available source code snapshot available before the project was removed?</p> http://stackoverflow.com/questions/449944/any-bdd-success-stories-out-there 4 Any BDD success stories out there? Dmitri Nesteruk 2009-01-16T09:53:33Z 2009-08-23T05:00:22Z <p>Having written a <a href="http://www.codeproject.com/KB/testing/bddnbehave.aspx" rel="nofollow">small article</a> on BDD, I got questions from people asking whether there are any cases of large-scale use of BDD (and specifically NBehave). </p> <p>So my question goes to the community: do you have a project that used BDD successfully? If so, what benefits did you get, and what could have been better? Would you do BDD again? Would you recomment it to other people?</p> http://stackoverflow.com/questions/1300092/c-shell-console-framework/1315707#1315707 0 Answer by Dmitri Nesteruk for C#: Shell/Console framework Dmitri Nesteruk 2009-08-22T10:26:49Z 2009-08-22T10:26:49Z <p>I wrote a small framework for this. You can find it <a href="http://www.codeproject.com/KB/cs/mdxconsole.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1289103/unit-testing-frameworks-what-are-the-key-features/1290008#1290008 2 Answer by Dmitri Nesteruk for Unit Testing Frameworks - What are the key features Dmitri Nesteruk 2009-08-17T19:44:16Z 2009-08-17T19:44:16Z <p>Here are some things I look for</p> <ul> <li>Speed. Frameworks (and test runners) are not all created equal. If your unit tests lag, your productive time is wasted.</li> <li>Asserts. These need to be plentiful to provide for many scenarios. Do you like exceptions caught using an attribute or an <code>Assert.Throws</code>, for example? Are the asserts capable of doing numeric comparisons with a specified tolerance?</li> <li>Miscellanea. Useful things that certain frameworks have such as e.g. row tests or being able to read in test data in XML format.</li> </ul> http://stackoverflow.com/questions/1278182/nethow-to-inject-debugging-code-to-an-assembly/1286332#1286332 3 Answer by Dmitri Nesteruk for [net]how to inject debugging code to an assembly? Dmitri Nesteruk 2009-08-17T05:52:26Z 2009-08-17T05:52:26Z <p>For injecting code into an existing assembly, I would use the <a href="http://www.mono-project.com/Cecil" rel="nofollow">Cecil</a> library, which lets you work with IL. This would let you rewrite the assembly if that's what you're after. I have to warn you: it's no small feat.</p> <p>Oh, there's also an add-in for Reflector, called Reflexil, which lets you edit assemblies.</p> <p>By the way, AOP-based tracing doesn't add code directly to your assembly. You can keep all the AOP stuff in a separate assembly (in fact, it's a very good idea), and then apply it with attributes. PostSharp will hard-wire code for you, but other AOP frameworks such as Spring or PIAB make things more flexible as they use dynamic proxies, so you can effectively 'turn off' your aspects when they are not needed.</p> http://stackoverflow.com/questions/403088/practical-use-of-expression-trees 7 Practical use of expression trees Dmitri Nesteruk 2008-12-31T14:36:13Z 2009-08-14T19:05:54Z <p>Expression trees are a nice feature, but what are its practical uses? Can they be used for some sort of code generation or metaprogramming or some such?</p> http://stackoverflow.com/questions/1273686/refactor-help-c/1273783#1273783 0 Answer by Dmitri Nesteruk for Refactor help c# Dmitri Nesteruk 2009-08-13T18:33:27Z 2009-08-13T18:33:27Z <p>I'm guessing the issue here is about 'boolean map' style refactorings, i.e., being able to refactor complementary boolean cases where there might be some gaps and some repetition. Well, if that's what you're after, you can certainly write a tool to do this (it's what I would do). Basically, you need to parse a bunch of <code>if</code> statements and take note of condition combinations that are involved. Then, through some fairly simple logic, you can get your model to spit out a different, more optimized model.</p> <p>The code you show above is one reason why I love F#. :)</p> http://stackoverflow.com/questions/263500/best-programming-monitor/298307#298307 Comment by Dmitri Nesteruk on Best Programming Monitor Dmitri Nesteruk 2009-12-16T07:39:01Z 2009-12-16T07:39:01Z I use an old Benq FP202W, a 22&quot; monitor, at 1680x1050. http://stackoverflow.com/questions/1852200/how-to-split-string-into-a-dictionary/1852212#1852212 Comment by Dmitri Nesteruk on How to split string into a dictionary Dmitri Nesteruk 2009-12-05T15:14:55Z 2009-12-05T15:14:55Z Is there any way of avoiding calling <code>s.Split()</code> twice? http://stackoverflow.com/questions/1804930/c-what-complex-refactoring-features-do-you-wish-there-were Comment by Dmitri Nesteruk on [C#] What complex refactoring features do you wish there were? Dmitri Nesteruk 2009-11-27T11:57:04Z 2009-11-27T11:57:04Z Yeah, Rename's on top of my list too, but I'm interested in complicated, deep changes in the program. http://stackoverflow.com/questions/1804930/c-what-complex-refactoring-features-do-you-wish-there-were/1804979#1804979 Comment by Dmitri Nesteruk on [C#] What complex refactoring features do you wish there were? Dmitri Nesteruk 2009-11-27T11:51:53Z 2009-11-27T11:51:53Z Have already implemented this for namespaces. http://stackoverflow.com/questions/360887/using-version-control-for-home-development/360955#360955 Comment by Dmitri Nesteruk on Using Version Control for Home Development? Dmitri Nesteruk 2009-11-19T22:50:12Z 2009-11-19T22:50:12Z I'm definitely upvoting <i>that</i> comment :) http://stackoverflow.com/questions/1727768/how-does-visual-studio-find-unity-pp-or-office-assemblies-in-its-add-references/1731573#1731573 Comment by Dmitri Nesteruk on How does Visual Studio find Unity/P&P or Office assemblies in its Add References Dialog? Dmitri Nesteruk 2009-11-16T22:52:37Z 2009-11-16T22:52:37Z Ahh, I see. No, I actually know very well where they are, considering that I can look at the properties for the reference. http://stackoverflow.com/questions/1727768/how-does-visual-studio-find-unity-pp-or-office-assemblies-in-its-add-references/1731573#1731573 Comment by Dmitri Nesteruk on How does Visual Studio find Unity/P&P or Office assemblies in its Add References Dialog? Dmitri Nesteruk 2009-11-14T11:05:40Z 2009-11-14T11:05:40Z Umm, how does this relate to my question? I know exactly where they are on disk by looking at their properties in VS. What I need is finding them programmatically, just like <i>Add Reference</i> dialog does. http://stackoverflow.com/questions/1665905/setlinespacing-does-not-work-in-directwrite-why/1728962#1728962 Comment by Dmitri Nesteruk on SetLineSpacing() does not work in DirectWrite - why? Dmitri Nesteruk 2009-11-13T12:39:32Z 2009-11-13T12:39:32Z The fact that I'm running it would imply that I am, in fact, using a supported operating system, in this case 2008R2. http://stackoverflow.com/questions/1471140/how-does-the-visual-studio-populate-the-references-tab/1496044#1496044 Comment by Dmitri Nesteruk on How does the Visual studio populate the references tab? Dmitri Nesteruk 2009-11-13T07:18:23Z 2009-11-13T07:18:23Z I seem to have lots of assemblies that do not fit in the list above. I wonder where they could be... http://stackoverflow.com/questions/1665905/setlinespacing-does-not-work-in-directwrite-why/1708565#1708565 Comment by Dmitri Nesteruk on SetLineSpacing() does not work in DirectWrite - why? Dmitri Nesteruk 2009-11-11T14:19:40Z 2009-11-11T14:19:40Z Yes, and it's S_OK http://stackoverflow.com/questions/1665905/setlinespacing-does-not-work-in-directwrite-why/1695816#1695816 Comment by Dmitri Nesteruk on SetLineSpacing() does not work in DirectWrite - why? Dmitri Nesteruk 2009-11-09T20:04:11Z 2009-11-09T20:04:11Z I meant <code>SetLineSpacing()</code>, sorry. http://stackoverflow.com/questions/1665905/setlinespacing-does-not-work-in-directwrite-why Comment by Dmitri Nesteruk on SetLineSpacing() does not work in DirectWrite - why? Dmitri Nesteruk 2009-11-03T08:41:18Z 2009-11-03T08:41:18Z I posted that bug, but thought it would be prudent to ask here, just in case I'm doing something wrong. http://stackoverflow.com/questions/1653631/which-resharper-command-causes-the-context-action-list-to-pop-up/1653674#1653674 Comment by Dmitri Nesteruk on Which ReSharper command causes the Context Action List to pop up? Dmitri Nesteruk 2009-10-31T12:59:28Z 2009-10-31T12:59:28Z Thanks, that's precisely what I was after. http://stackoverflow.com/questions/1653631/which-resharper-command-causes-the-context-action-list-to-pop-up/1653674#1653674 Comment by Dmitri Nesteruk on Which ReSharper command causes the Context Action List to pop up? Dmitri Nesteruk 2009-10-31T08:46:30Z 2009-10-31T08:46:30Z I mean the command name, not the shortcut keys. Alt+Enter does nothing on my machine, Ctrl+Shift+R is 'record temporary macro'. http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in Comment by Dmitri Nesteruk on What are the worst working conditions you have written code in? Dmitri Nesteruk 2009-10-15T19:23:29Z 2009-10-15T19:23:29Z Nothing 'fun' about it :(