User OregonGhost - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T06:58:54Z http://stackoverflow.com/feeds/user/20363 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1886938/what-are-the-correct-version-numbers-for-c-what-came-out-when/1886949#1886949 2 Answer by OregonGhost for What are the correct version numbers for C#? What came out when? OregonGhost 2009-12-11T09:47:21Z 2009-12-11T09:47:21Z <p><a href="http://csharpindepth.com/Articles/Chapter1/Versions.aspx" rel="nofollow">Jon Skeet explains</a>.</p> http://stackoverflow.com/questions/1886913/how-do-you-try-out-small-simple-c-or-c-source-codes/1886933#1886933 5 Answer by OregonGhost for How do you try out small/simple C or C++ source codes? OregonGhost 2009-12-11T09:43:17Z 2009-12-11T09:43:17Z <p>I think there's nothing wrong with firing up Visual Studio for some testing. You can delete the 20MB afterwards ;)</p> <p>However, you can also just invoke the command line compiler on Windows. Just start a Windows SDK console (or Visual Studio console) and you're there. And you can even use vi (need to install it first, of course).</p> http://stackoverflow.com/questions/1820224/what-edition-of-visual-studio-2008-for-commercial-projects/1820270#1820270 2 Answer by OregonGhost for What edition of Visual Studio 2008 for commercial projects OregonGhost 2009-11-30T14:51:22Z 2009-11-30T14:51:22Z <p>I suggest a look at the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=727BCFB0-B575-47AB-9FD8-4EE067BB3A37&amp;displaylang=en" rel="nofollow">Visual Studio Editions comparison sheet</a> and just check what you need. Note that from a technical perspective, you are not locked if you choose to start with a smaller edition.</p> http://stackoverflow.com/questions/1820174/forcing-c-compilers-to-check-for-exception-handling/1820207#1820207 7 Answer by OregonGhost for Forcing C++ compilers to check for exception handling OregonGhost 2009-11-30T14:40:36Z 2009-11-30T14:40:36Z <p>Since checked exceptions in Java rely on the <code>throw</code> signature, you can read why you will not want to use <code>throw</code> function signatures in C++ in <a href="http://stackoverflow.com/questions/1055387/throw-keyword-in-functions-signature-c">this question</a> on SO. </p> http://stackoverflow.com/questions/1802600/changing-font-in-a-console-window-in-net/1802638#1802638 2 Answer by OregonGhost for Changing font in a Console window in .NET OregonGhost 2009-11-26T09:43:16Z 2009-11-26T09:43:16Z <p>Please don't do that on an application that is meant to be used from other users, unless they request this feature. Consolas is the only font for consoles on my system :p</p> <p>You can try to change the properties of the link that opens the console (or the executable), but that is a local setting if I'm right. This is likely the thing you want if it's just for running the app on your system. I'm not sure how you can change these programmatically.</p> <p>Since Vista, there's <code>SetCurrentConsoleFontEx</code>, which may do what you want, if you can get it to work with the Console class. Did I mention I will hate you for that if the app ever comes to my system? ;)</p> http://stackoverflow.com/questions/1802494/c-check-which-project-is-calling-class-library/1802571#1802571 0 Answer by OregonGhost for c#: Check which project is calling class library OregonGhost 2009-11-26T09:27:22Z 2009-11-26T09:27:22Z <p>If you're after security (in some way), the <a href="http://msdn.microsoft.com/en-us/library/930b76w0%28VS.71%29.aspx" rel="nofollow">.NET Code Access Security</a> may be what you want.</p> http://stackoverflow.com/questions/1791505/which-subdomains-should-i-prevent-from-users-selecting/1791690#1791690 1 Answer by OregonGhost for Which subdomains should I prevent from users selecting? OregonGhost 2009-11-24T17:37:22Z 2009-11-24T17:42:29Z <p>Just a note about the suggested filtering of profanity.</p> <p>In general, a profanity filter only makes sense if you are really sure about the native language of the target audience. Otherwise you may make your international customers angry: There may be English-language words that are a profanity in another language (no chance to find all of them), and words you filter out may be perfectly valid words in other languages. When Sims 3 was released, the EA forums filtered out the word "damit", but they did that on the localized forums as well, and "damit" is a very common word in German. This made it hard to write anything. "Sex" also means "six" in Swedish.</p> <p>This may or may not be an issue if it's just about subdomains. I'd just be careful and rather only block words for technical and security reasons (or things like your own trademarks/products or something).</p> <p>It may be wise to use a special domain for the user things that does not have any subdomains, and use a different domain for whatever subdomains you need. This way, you wouldn't need to block subdomain names on the "user" domain at all.</p> http://stackoverflow.com/questions/1791458/net-application-hangs-on-unpatched-xp-machines/1791557#1791557 1 Answer by OregonGhost for .Net Application Hangs on Unpatched XP Machines OregonGhost 2009-11-24T17:15:09Z 2009-11-24T17:15:09Z <p>Does "hang" mean it hangs permanently, or does it just take a long time (15 seconds per assembly you are loading)? If the latter and the PCs are connected to a network, but don't have internet access, try disabling the "check for certificate revocations" thing in Internet Explorer options. If that solves the problem, you can either require that option to stay disabled, or disable the <code>generatePublisherEvidence</code> setting in the application configuration.</p> <p>If it hangs permanently, well, then this answer does not apply to you :)</p> http://stackoverflow.com/questions/1791448/what-is-moonlight-technically/1791477#1791477 0 Answer by OregonGhost for What is Moonlight technically? OregonGhost 2009-11-24T17:05:33Z 2009-11-24T17:05:33Z <p>That is the theory. Time will show if it works out.</p> http://stackoverflow.com/questions/1789178/can-you-program-a-pure-gpu-game/1789252#1789252 2 Answer by OregonGhost for Can you program a pure GPU game? OregonGhost 2009-11-24T10:43:09Z 2009-11-24T10:43:09Z <p>I'm still waiting for a Gameboy Emulator that runs entirely on the GPU, which is just fed the game ROM itself and current user input and results in a texture displaying the game - maybe a second texture for sound output :)</p> <p>The main problem is that you can't access persistent storage, user input or audio output from a GPU. These parts have to be on the CPU, by definition (even though cards with HDMI have audio output, but I think you can't control it from the GPU). Apart from that, you can already push large parts of the game code into the GPU, but I think it's not enough for a 3D game, since someone has to feed the 3D data into the GPU and tell it which shaders should apply to which part. You can't really randomly access data on the GPU or run arbitrary code, someone has to do the setup.</p> <p>Some time ago, you would just setup a texture with the source data, a render target for the result data, and a pixel shader that would do the transformation. Then you rendered a quad with the shader to the render target, which would perform the calculations, and then read the texture back (or use it for further rendering). Today, things have been made simpler by the fourth and fifth generation of shaders (Shader Model 4.0 and whatever is in DirectX 11), so you can have larger shaders and access memory more easily. But still they have to be setup from the outside, and I don't know how things are today regarding keeping data between frames. In worst case, the CPU has to read back from the GPU and push again to retain game data, which is always a slow thing to do. But if you can really get to a point where <em>a single generic setup/rendering cycle</em> would be sufficient for your game to run, you could say that the game runs on the GPU. The code would be quite different from normal game code, though. Most of the performance of GPUs comes from the fact that they execute the same program in hundreds or even thousands of parallel shading units, and you can't just write a shader that can draw an image to a certain position. A pixel shader always runs, by definition, on one pixel, and the other shaders can do things on arbitrary coordinates, <em>but they don't deal with pixels</em>. It won't be easy, I guess.</p> <p>I'd suggest just trying out the points I said. The most important is retaining state between frames, in my opinion, because if you can't retain all data, all is impossible.</p> http://stackoverflow.com/questions/1782523/windows-forms-click-event-repeating-itself 0 Windows Forms Click event repeating itself OregonGhost 2009-11-23T11:20:22Z 2009-11-23T11:41:36Z <p>I have a strange problem with a Windows Forms event. To be exact, it's a <a href="http://www.componentfactory.com" rel="nofollow">KryptonHeaderGroup</a>'s ButtonSpec Click event, but it also happens with a plain vanilla <code>System.Windows.Forms.Button</code>.</p> <p>In the click event, the user interface is brought down (there's a label and a cancel button left), and then an expensive LINQ query is built from previous user input, compiled and then executed. There are <code>Application.DoEvents()</code> calls in the foreach which actually executes the query (it's LINQ to objects, so it's lazy). This enables the user to press cancel, and after the <code>DoEvents</code>, a cancel flag is tested and the foreach is cancelled, and some clean up happens. So far, so good.</p> <p>However, when I press the Cancel button after the first few results come in (the label shows how many are already there), the whole Click event handler is restarted! After adding some traces, it seems that this happens <em>before the previous handler returns</em>. In other words, it happens in one of the <code>DoEvents</code> calls. The button is, of course, not pressed again. It does not happen if the button is disabled in the event handler. But since the button is not pressed, it should not fire its Click event again, should it?</p> <p>I'm baffled. Obviously the workaround is to disable the button, but I'd like to know what may be the actual problem here. Can the event handler be restarted if <code>DoEvents</code> is called before the handler finishes? Is calling <code>DoEvents</code> not recommended / allowed in event handlers? But then, since everything is an event handler in an event-driven application, you could never call it :)</p> <p>Additional hints that may be required to answer this question:</p> <ul> <li>The LINQ query takes a long time initially before supplying first results, i.e. before the first <code>DoEvents</code> call is made.</li> <li>The LINQ query runs in the GUI thread because it would not make sense to allow the user to access the rest application, because the access will interfere with the underlying API both the GUI and the LINQ query use.</li> <li>I know I should load the LINQ query into a separate app domain and execute it there, to be able to unload it. But there will only be few different queries run by a typical user, and the resulting assembly is cached (for the same query string).</li> <li>The problem no longer happens if I either have a break point enabled (<em>sigh</em> - Heisenberg, anyone?) or if I cancel later during the query.</li> </ul> <p>I appreciate anything that would explain the behaviour, even if it's just speculation :)</p> http://stackoverflow.com/questions/1271436/develop-smart-applications-for-windows-7/1271482#1271482 2 Answer by OregonGhost for Develop smart applications for Windows 7 OregonGhost 2009-08-13T11:45:28Z 2009-11-23T09:42:41Z <ul> <li>Lightweight and regarding dependencies: Well, since you want kind of C#, you have the .NET Framework. That's not exactly lightweight, unless you're sure that the target system has it available. Be sure to check which .NET version comes preinstalled with Seven. <em>Addendum: Now that 7 is out, it seems it comes preinstalled with .NET 3.5 SP1 (full framework, not client profile). That's a good thing.</em></li> <li>Have a look at the <a href="http://code.msdn.microsoft.com/WindowsAPICodePack" rel="nofollow">Windows API Code Pack</a> for Windows 7 for access to Windows 7 features. Like tvanfosson, I'd also stick with Visual Studio and .NET.</li> </ul> http://stackoverflow.com/questions/1770090/what-c-tutorial-would-you-recommend-for-an-experienced-programmer-that-has-some/1770192#1770192 4 Answer by OregonGhost for What C++ tutorial would you recommend for an experienced programmer that has some patchy knowledge about the language? OregonGhost 2009-11-20T12:33:59Z 2009-11-20T12:33:59Z <p>I suggest, though rather as supplement, the <a href="http://www.parashift.com/c++-faq-lite/" rel="nofollow">C++ FAQ Lite</a>. It has information ranging from basic things to really obscure C++ features and many tips to write good C++ and helped me more than once when some stupid template thing or whatever wouldn't do what I expect.</p> http://stackoverflow.com/questions/1769824/hey-why-nobody-remembers-who-wrote-notepad/1769843#1769843 4 Answer by OregonGhost for Hey, Why nobody remembers who wrote Notepad? OregonGhost 2009-11-20T11:18:33Z 2009-11-20T11:18:33Z <p>Go again to Mr. Chen's blog. Scroll down. Scroll down a little more. And then <a href="http://blogs.msdn.com/oldnewthing/archive/2009/11/17/9923309.aspx" rel="nofollow">you have it</a>.</p> http://stackoverflow.com/questions/1769674/accessing-qt-widget-from-different-thread/1769780#1769780 1 Answer by OregonGhost for Accessing Qt widget from different thread OregonGhost 2009-11-20T11:07:48Z 2009-11-20T11:07:48Z <p>You can fire a signal from the background thread to be executed in a slot on the main thread. If I remember correctly, this is done automatically if you specify Qt::AutoConnection in the connect call.</p> http://stackoverflow.com/questions/1769363/up-to-date-xml-documentation-builder-for-c/1769405#1769405 2 Answer by OregonGhost for Up-to-date XML-Documentation Builder for C# OregonGhost 2009-11-20T09:41:06Z 2009-11-20T09:48:12Z <p>SandCastle is the way to go as Konamiman already suggested, but I suggest using <a href="http://www.codeplex.com/DocProject" rel="nofollow">DocProject</a> to do the dirty work (you know, someone has to get dirty typically to build a sand castle). It has VS integration as well.</p> http://stackoverflow.com/questions/1755196/receive-wmcopydata-messages-in-a-qt-app/1755280#1755280 1 Answer by OregonGhost for Receive WM_COPYDATA messages in a Qt app OregonGhost 2009-11-18T11:08:49Z 2009-11-18T11:08:49Z <p>You can also create a dummy window just for receiving that message with the Win32 API. I guess you won't have access to a Qt-Window's window proc, so this should be the easiest way.</p> <p>You <em>could</em> (I wouldn't) also subclass the window by setting a new WndProc (with <code>SetWindowLong(Ptr)</code>, the window's handle can be obtained with <code>QWidget::winId()</code>). In this WndProc, you could just handle your specific WM_COPYDATA and pass all other window messages to the old WndProc.</p> http://stackoverflow.com/questions/1721049/good-markup-for-writing-technical-design-documentation/1721123#1721123 0 Answer by OregonGhost for Good markup for writing technical design documentation OregonGhost 2009-11-12T09:51:15Z 2009-11-12T09:51:15Z <p>Quick note about Docbook (though you didn't really ask about it): While the markup is kind of hard to write by hand (even with a good XML editor), I use it for generating multi language documentation (using XSLT to generate a single-language docbook). Works quite good so far, and you can generate both documents for printing and online help (e.g. HTML help on Windows). There are some GUIs for Docbook to make things easier. On the other hand, AsciiDoc can export to Docbook, and with Greg Hewgill's answer, this might already suffice.</p> <p>My experience with AsciiDoc (though not having used it, just saw what two co-workers do with it) is that although it's quite powerful, you don't have any meaningful help while writing (i.e. no Intellisense, no fancy GUI), and it was rather hard to get a really well layouted PDF file out of it. But now it works, and it will likely be easier in the future.</p> http://stackoverflow.com/questions/1714937/using-list-find-or-linq-on-lists-of-enums-in-net-3-5/1714951#1714951 2 Answer by OregonGhost for Using List.Find or LINQ on lists of enums in .NET 3.5 OregonGhost 2009-11-11T12:41:08Z 2009-11-11T12:41:08Z <p>Because the first member of an enum is, unless specified otherwise, zero, which is the default value for any enum.</p> http://stackoverflow.com/questions/1632137/can-anyone-answer-why-silverlights-xaml-code-is-so-ugly/1632221#1632221 2 Answer by OregonGhost for Can anyone answer why Silverlights XAML code is so ugly? OregonGhost 2009-10-27T16:54:30Z 2009-10-27T16:54:30Z <p>Actually, I found it ok to use, though Silverlight XAML is, in my opinion, harder and more obfuscated than WPF XAML. It's way behind C# with regard to Intellisense, complicating things.</p> <p>SVG is not really beautiful either, and it does not have the fancy stuff like markup extensions, which mostly simplify bindings.</p> <p>Other than that, I agree with you, it's sometimes inconsistent, sometimes ugly (or rather verbose, but that's true for XML in general), and because of the lack of IDE support, it's still kind of hard to write. I still like it for its power and crazy things you can't easily do in other toolkits. Let's hope that writing XAML gets better with VS2010 (not really tried the Betas yet). So far, at least in WPF it's more fun than frustration for me.</p> http://stackoverflow.com/questions/1570982/language-popularity-figures-c-c-java-php-flash-script-etc/1571019#1571019 7 Answer by OregonGhost for language popularity figures (C++, C#, Java, PHP, flash script, etc.) OregonGhost 2009-10-15T08:25:26Z 2009-10-15T08:25:26Z <p>A very common site that does this is the <a href="http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html" rel="nofollow">TIOBE index</a>. It basically searches for programming languages in major search engines and compares the results, and it shows you some history. The only problem is that C/C++/C# are not distinguished very well, therefore C is more dominant than you'd expect (not to mention that search results include many pages where many languages are listed, like programming FAQs). But in general, TIOBE gives a good idea, I think, and it should get better, since at least Google tends to know the difference between zero, two or four pluses.</p> http://stackoverflow.com/questions/1567363/how-to-prevent-error-list-window-from-showing-up-within-visual-studio-asp-net-edi/1567412#1567412 0 Answer by OregonGhost for How to prevent Error List Window from showing up within Visual Studio ASP.NET Editor? OregonGhost 2009-10-14T16:21:36Z 2009-10-14T16:21:36Z <p>At least with the other IDE settings (i.e. C#/Windows, not ASP.NET), you can just hide or close the error list and have it pop up on each compile.</p> http://stackoverflow.com/questions/1567328/create-single-permutation-with-linq-in-c/1567389#1567389 2 Answer by OregonGhost for Create single permutation with Linq in C# OregonGhost 2009-10-14T16:16:42Z 2009-10-14T16:16:42Z <p>If you need a lot of those lists, you might find the following extension method useful:</p> <pre><code>public static class Helper { public static List&lt;int&gt; To(this int start, int stop) { List&lt;int&gt; list = new List&lt;int&gt;(); for (int i = start; i &lt;= stop; i++) { list.Add(i); } return list; } } </code></pre> <p>Use it like this:</p> <pre><code>var list = 1.To(5); </code></pre> <p>Of course, for the general case, the Enumerable.Range thing the others posted may be more what you want, but I thought I'd share this ;) You can use this next time your Ruby-loving co-worker says how verbose C# is with that Enumerable.Range.</p> http://stackoverflow.com/questions/1509564/how-to-properly-store-state-in-a-c-net-application/1509648#1509648 1 Answer by OregonGhost for How to properly store state in a C# .Net application OregonGhost 2009-10-02T13:54:27Z 2009-10-02T13:54:27Z <p>What's wrong with application settings? It's the simplest way to store settings (hence the name), since you set it up in the designer and can access it through an auto-generated class, much like the auto-generated resource classes. This data will be stored in the application data directory. There is a default settings file in a WinForms applications, but you can create additional ones easily.</p> <p>It does not support dynamic key/value pairs either, but you can get around that by using a dictionary (though <code>Dictionary&lt;TKey, TValue&gt;</code> does not serialize to XML, you have to work around that, like using a <code>KeyValuePair</code> list or <code>KeyedCollection</code> for storage).</p> http://stackoverflow.com/questions/1477846/simulate-web-page-keystroke/1477862#1477862 1 Answer by OregonGhost for simulate Web Page keystroke OregonGhost 2009-09-25T15:07:15Z 2009-09-25T15:07:15Z <p>Try out <a href="http://seleniumhq.org/projects/remote-control/" rel="nofollow">Selenium Remote Control</a>. Selenium is, basically, a unit test framework for web sites, and the Remote Control part is simply an API you can use in C# (among other languages).</p> http://stackoverflow.com/questions/1467041/advance-c-readline-to-next-line-in-a-function-call/1467097#1467097 2 Answer by OregonGhost for Advance C# ReadLine() to next line in a function call OregonGhost 2009-09-23T16:18:25Z 2009-09-23T16:18:25Z <p>You can't, since you create and dispose the stream reader in the function. Two ways come to mind:</p> <p>You could store the stream reader in a member variable, or read all at once and store an array in a member variable.</p> <p>Or you make it an iterator method by changing the return type to <code>IEnumerable&lt;string&gt;</code>, and changing the part in the <code>using</code> block to:</p> <pre><code>while ((invoiceNumber = sr.ReadLine()) != null) { yield return invoiceNumber; } </code></pre> <p>This way, you can call <code>foreach</code> on your <code>invoiceNumberFunc</code>.</p> http://stackoverflow.com/questions/1465659/xml-serialize-friend-classes-in-vb-net/1465779#1465779 1 Answer by OregonGhost for XML Serialize Friend Classes in VB.net OregonGhost 2009-09-23T12:49:17Z 2009-09-23T12:49:17Z <p>This "protection" won't work anyway. People can load your assembly with reflection and then use the classes. So that reason to not make the classes public vanishes, which simplifies things.</p> <p>If you really want to keep your classes internal, you can still either write your own serialization code (completely manually (efficient, but much work required) or with reflection), or you can provide separate data-only classes for serialization purposes only, which can be made public. Then you just have to write code that imports/exports the data in your internal classes to the serialization classes, and the classes won't be of much use to other developers since the actual code is in the internal classes.</p> http://stackoverflow.com/questions/1460937/how-do-you-manage-generated-code-in-visual-studio-in-particular-creating-dlls/1461044#1461044 1 Answer by OregonGhost for How do you manage generated code in Visual Studio - in particular, creating DLLs from .idls. OregonGhost 2009-09-22T16:11:33Z 2009-09-22T16:11:33Z <p>You can overcome the dependency problem by using MSBuild tasks directly instead of a PostBuild batch file, which line up nicely with the MSBuild dependency system.</p> <p>However, why are you generating the file manually from an idl? When I need COM interop, I just import it and put the generated assembly (*.Interop.dll) into version control. This way, you always have the version you need and it's already ready to use, and Visual Studio can find the interop DLL before the first build, i.e. Intellisense is there right from the beginning.</p> <p>Now some people won't like to check in a binary file, which I typically agree with, but well, if it works... :)</p> <p>Of course, my method won't work if building the COM server is part of building the solution. In this case, just try to put the generation into the MSBuild script to get rid of the dependency thing, unless Visual Studio accepts a reference to a solution-internal non-.NET-COM project.</p> http://stackoverflow.com/questions/1460798/is-there-a-list-of-visual-studio-environment-variables/1460826#1460826 3 Answer by OregonGhost for Is there a list of Visual Studio environment variables? OregonGhost 2009-09-22T15:35:24Z 2009-09-22T15:35:24Z <p>In most places where you can use those, there's a "Macros" button or similar, which shows all available macros and the current value of them. For example, go to the PostBuild event editor to find the list.</p> <p>Edit: I just checked. <a href="http://msdn.microsoft.com/en-us/library/c02as0cs.aspx" rel="nofollow">There's a list in MSDN</a>.</p> http://stackoverflow.com/questions/1459482/how-to-use-cmake-for-non-interactive-build-on-windows/1459515#1459515 1 Answer by OregonGhost for How to Use CMake for Non-Interactive Build on Windows? OregonGhost 2009-09-22T11:31:44Z 2009-09-22T11:31:44Z <p>I'm not sure if I understand the question. You use it exactly like for any other build system. Just specify "Visual Studio 8 2005" (little bit weird, but you can get a list of all supported systems by calling cmake without parameters) and you'll get a solution that can be built on the command line either with <code>devenv.exe /build</code> or with MSBuild.</p> <p>The only thing that is a little bit complicated is if you want to generate the solution when Visual Studio is not installed, like on a build server. You can, of course, just install it, but I prefer not to install things you don't need. In that case, you have to fake it to accept MSBuild as the build command line (by specifying a batch file as build tool at the command line, that just reorders the arguments so MSBuild accepts them), so that it won't start bitching about how it misses Visual Studio (which is so crazy, since the CMake people are from the command-line world...)</p> <p>Oh, and if what you really want is just to build an existing Visual Studio solution on the command line, you don't need CMake. Just call MSBuild or <code>devenv /build</code>.</p> http://stackoverflow.com/questions/1437609/what-emoticons-can-you-put-into-class-names-in-your-language/1437706#1437706 Comment by OregonGhost on What emoticons can you put into class names in your language? OregonGhost 2009-12-14T09:38:38Z 2009-12-14T09:38:38Z I just found these: ٩๏̯͡๏)۶ and ツ . View in a large font. I don't know though if you can use them as identifiers in C# or CLR code ;) http://stackoverflow.com/questions/1886913/how-do-you-try-out-small-simple-c-or-c-source-codes/1886929#1886929 Comment by OregonGhost on How do you try out small/simple C or C++ source codes? OregonGhost 2009-12-14T09:36:14Z 2009-12-14T09:36:14Z Note that you get the command line compilers even without Visual Studio, by installing the Windows SDK. That's a good thing for build servers (if you can't afford TFS). http://stackoverflow.com/questions/1875388/help-on-linking-in-gcc/1875806#1875806 Comment by OregonGhost on Help on linking in gcc OregonGhost 2009-12-14T09:35:04Z 2009-12-14T09:35:04Z Reality is not necessarily clean, that's true. However, still the Boost way is in my opinion by far the easiest one, because you basically can't do much wrong. That's a good thing. http://stackoverflow.com/questions/1889565/fxcop-or-other-util-to-require-inline-docs-in-vb-net Comment by OregonGhost on FxCop or other util to require inline docs in VB.NET? OregonGhost 2009-12-11T17:33:48Z 2009-12-11T17:33:48Z Doesn't the compiler throw out warnings for documentation missing on non-private members/classes, which would turn to errors with your settings? Or doesn't vb.net do that? The C# compiler does. Anyway, +1 for really trying to make things better in the next project. http://stackoverflow.com/questions/1888521/what-is-the-point-of-defining-access-modifiers Comment by OregonGhost on What is the point of defining Access Modifiers? OregonGhost 2009-12-11T14:50:19Z 2009-12-11T14:50:19Z You will inevitably understand this when you either have to debug a large codebase, or have to work together with other programmers. Better to do what is recommended ;) http://stackoverflow.com/questions/1888465/seequel-vs-s-q-l Comment by OregonGhost on "seequel" vs S-Q-L OregonGhost 2009-12-11T14:41:54Z 2009-12-11T14:41:54Z Most of my co-workers say &quot;ess-koo-ell&quot;. That's correct in German, since it's an acronym rather than a real name. More important, however, is in which color do you want your SQL server? <a href="http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/85922#85922" rel="nofollow" title="whats your favorite programmer cartoon">stackoverflow.com/questions/84556/&hellip;</a> http://stackoverflow.com/questions/1887079/whats-the-most-time-consuming-bug-you-have-solved-or-created Comment by OregonGhost on What's the most time consuming bug you have solved or created? OregonGhost 2009-12-11T10:14:56Z 2009-12-11T10:14:56Z Yes, all of them, and at least the first two only in native code... http://stackoverflow.com/questions/1886938/what-are-the-correct-version-numbers-for-c-what-came-out-when Comment by OregonGhost on What are the correct version numbers for C#? What came out when? OregonGhost 2009-12-11T09:52:47Z 2009-12-11T09:52:47Z @AdaTheDev: The link is in my answer. http://stackoverflow.com/questions/1886938/what-are-the-correct-version-numbers-for-c-what-came-out-when/1886949#1886949 Comment by OregonGhost on What are the correct version numbers for C#? What came out when? OregonGhost 2009-12-11T09:52:22Z 2009-12-11T09:52:22Z Kind of confusing. Anyway, life has begun with 2.0 ;) http://stackoverflow.com/questions/1886881/c-cli-advantages-over-c/1886910#1886910 Comment by OregonGhost on C++/CLI : Advantages over C# OregonGhost 2009-12-11T09:41:16Z 2009-12-11T09:41:16Z I think it's not. I'm coming from a C++ background (mixed with Java and Delphi), and C# was so simple to grasp. No need for C++/CLI just for familiarity. I was rather lucky to get away from C++ syntax :) http://stackoverflow.com/questions/1886881/c-cli-advantages-over-c/1886898#1886898 Comment by OregonGhost on C++/CLI : Advantages over C# OregonGhost 2009-12-11T09:39:46Z 2009-12-11T09:39:46Z Good answer. But it's not really subjective - it's a major advantage if (and only if) you have no choice but to deal with existing native code. http://stackoverflow.com/questions/1881333/how-to-convert-the-current-class-name-of-asp-net-usercontrols-to-string-on-c Comment by OregonGhost on How to convert the current class name of asp.net usercontrols to string on c#? OregonGhost 2009-12-10T14:31:47Z 2009-12-10T14:31:47Z Did you just call GetType().ToString() or GetType().Name? http://stackoverflow.com/questions/1875388/help-on-linking-in-gcc/1875806#1875806 Comment by OregonGhost on Help on linking in gcc OregonGhost 2009-12-10T09:56:37Z 2009-12-10T09:56:37Z What is clean in having to include a library two times (include file and lib)? I like the Boost approach. Just include the include file for a library you want to use and that's it. http://stackoverflow.com/questions/1875388/help-on-linking-in-gcc/1875413#1875413 Comment by OregonGhost on Help on linking in gcc OregonGhost 2009-12-09T17:39:31Z 2009-12-09T17:39:31Z The link order article you linked to says that the link order matters, basically, only for older linkers, since most modern linkers search all linked libraries anyway, independent of order. So it's IMO a rather questionable reason not to support this. At least the Boost people use it, and they're typically not associated with bad C++ programming :) http://stackoverflow.com/questions/1827059/why-use-finalreleasecomobject-instead-of-releasecomobject/1827155#1827155 Comment by OregonGhost on Why use FinalReleaseComObject instead of ReleaseComObject? OregonGhost 2009-12-01T16:12:02Z 2009-12-01T16:12:02Z If I understand correctly, you recommend always using ReleaseComObject and never FinalReleaseComObject, since the former always does the right thing, while the latter never does that? Or does it make sense to call FinalReleaseComObject in some cases?