User HidekiAI - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T14:45:25Zhttp://stackoverflow.com/feeds/user/7234http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/8440/visual-studio-optimizations/92129#9212912Answer by HidekiAI for Visual Studio OptimizationsHidekiAI2008-09-18T12:35:17Z2009-08-27T16:38:59Z<p>My experiences are more for C++ than C#, but here goes... I'm taking "Optimizations" in an ambiguous term on multiple views (code optimizations, IDE speed up, compilation speed up), but they are all specific to Visual Studio environment.</p>
<ul>
<li>For optimizations <strong>in code</strong>, have the compiler optimize by size rather than speed, not sure where I've heard this but someone once told me Microsoft compiles all their applications this way as well. Whether it is a myth or not, to me at least it makes sense (in most generic cases) because smaller code called often will have less cache miss. This is more for C++ than CLR based languages. Alternatively, if you know your target platform, you can probably target that rather than generic x86.</li>
<li>For speeding up <strong>in Visual Studio</strong>, I've noticed that if I have break-points view showing, it keeps flashing, as if it is updating over and over, so I hide it. Perhaps it is just me (and psychological).</li>
<li>For speeding up <strong>compilations</strong>, on one of the projects, it used to spew 1000+ warnings (it's a project mixed with C# and C++), and it used to take 20 minutes to compile (all the warnings was because of <a href="http://support.microsoft.com/kb/922271" rel="nofollow">this</a>). The point here is, having a lot of messages serialized to output causes slowdown, so pay attention to first sign of your warnings and fix it. I'd also imagine that Visual Studio's "Error List" panel has to collect the Warnings and Errors into that view, which causes extra slowdown when you have large amount of warnings.</li>
<li>Another speed-up for <strong>compilations</strong>, as somebody as mentioned, is <a href="http://www.xoreax.com/" rel="nofollow">Xoreax's IncrediBuild</a>. But they don't work on C# (yet), only on Managed/Unmanaged C++. I used to be skeptical about distributed compilation because of my experiences with distcc, but it was because all my PC's at home are different speed, a heterogeneous distribution. At work, because of the homogeneous structure where all have similar speed, it works better. Also, distributed computing is only useful when you have machines to distribute to (* grin *) Somebody also mentioned Visual Studio's parallel compiling option (if you have multi-processors, you've probably seen messages while compiling of "1> Compling Proj1", "2> Compiling Proj2" (or something like that), where Visual Studio will compile N projects (where N = number of processors you define in your options). Unlike IncrediBuild, VS distributes by projects rather than by files, and this is only useful if you have multiple projects in single .SLN.</li>
<li>Another speed-up for <strong>compilations</strong>, some have mentioned increasing memory, although that would probably help, from my experiences, a faster drive is more beneficial than memory. I've seen 2 (similar performance) PC's compile the same exact projects side-by-side, one with faster drive than another, and the gain is significant. Bottlenecked on file I/O writing the .OBJ file or seeking for .cpp file, you get the picture. Back in the old-days, we used to output all the .OBJ files to RAM drives instead of hard-drives and that sped up a lot. But today, projects are probably too large to fit in a RAM drive or the performance of drive is so much better that it's not significant to do this.</li>
<li>For speeding up <strong>in Visual Studio</strong> for debugging, if you don't need it, don't include the symbols from <a href="http://support.microsoft.com/kb/311503" rel="nofollow">Microsoft</a> and you'll notice that your debugger loads faster into your applications.</li>
</ul>
<p>I will edit/add more as I think of it.</p>
http://stackoverflow.com/questions/127386/in-visual-studio-c-what-are-the-memory-allocation-representations4In Visual Studio C++, what are the memory allocation representations?HidekiAI2008-09-24T14:11:46Z2009-07-31T20:15:08Z
<p>In Visual Studio, we've all had "baadf00d", have seen seen "CC" and "CD" when inspecting variables in the debugger in C++ during run-time.</p>
<p>From what I understand, "CC" is in DEBUG mode only to indicate when a memory has been new() or alloc() and unitilialized. While "CD" represents delete'd or free'd memory. I've only seen "baadf00d" in RELEASE build (but I may be wrong).</p>
<p>Once in a while, we get into a situation of tacking memory leaks, buffer overflows, etc and these kind of information comes in handy.</p>
<p>Would somebody be kind enough to point out when and in what modes the memory are set to recognizable byte patterns for debugging purpose?</p>
http://stackoverflow.com/questions/79210/best-c-ide-for-nix/79776#797760Answer by HidekiAI for Best C++ IDE for *nixHidekiAI2008-09-17T03:49:22Z2008-09-17T03:49:22Z<p>My vote is KDevelop (I wish I had more points so I can "vote up", so I could just agree with others indirectly than comment).</p>
<p>I've been using Eclipse for about couple years now for personal use, convincing myself that "since IBM donated it, it must be good", but then I've discovered KDevelop and never turned back. Because I'm quite spoiled with Microsoft Visual Studio for professional use, thus KDevelop felt the most comfortable to me. </p>
<p>I want to enjoy programming as a hobby, not spend time looking up what ctrl-k-k and ctrl-k-b does. Like others has mentioned, whatever "feels right" to them is the best IDE. For me, KDevelop feels the most comfortable because I can concentrate on coding (I could probably remap the keys to other IDE's to make it feel like VS, but as mentioned, I rather invest my time coding, which is more fun).</p>
http://stackoverflow.com/questions/79537/which-is-the-best-linux-c-c-debugger-or-front-end-to-gdb-to-help-teaching-pro/79663#796632Answer by HidekiAI for Which is the best Linux C/C++ debugger (or front-end to gdb) to help teaching programming?HidekiAI2008-09-17T03:29:13Z2008-09-17T03:29:13Z<p>Perhaps it is indirect to gdb (because it's an IDE), but my recommendations would be <a href="http://www.kdevelop.org/" rel="nofollow" title="KDevelop">KDevelop</a>. Being quite spoiled with Visual Studio's debugger (professionally at work for many years), I've so far felt the most comfortable debugging in KDevelop (as hobby at home, because I could not afford Visual Studio for personal use - until Express Edition came out). It does "look something similar to" Visual Studio compared to other IDE's I've experimented with (including Eclipse CDT) when it comes to debugging step-through, step-in, etc (placing break points is a bit awkward because I don't like to use mouse too much when coding, but it's not difficult).</p>
http://stackoverflow.com/questions/62503/c-int-or-int32-should-i-care/63128#631282Answer by HidekiAI for C#, int or Int32? Should I care?HidekiAI2008-09-15T14:00:32Z2008-09-15T14:00:32Z<p>Byte size for types is not too interesting when you only have to deal with single language (and for codes which you don't have to remind yourself about math overflows). The part that becomes interesting is when you bridge between one language to another or C# to COM object, etc, or you're doing some bit-shifting or masking and you need to remind yourself (and your code-review co-wokers) of the size of the data.</p>
<p>In practice, I usually use Int32 just to remind myself what size they are because I do write Managed C++ (to bridge to C# for example) as well as Unmanaged/native C++.</p>
<p>Long as you probably know, in C# is 64-bits, but in native C++, it ends up as 32-bits, or char is unicode/16-bits while in C++ it is 8-bits. But how do we know this? The answer is, because we've looked it up in the manual and it said so.</p>
<p>With time and experiences, you will start to be more type-conscientious when you do write codes to bridge between C# and other languages (some readers here are thinking "why would you?"), but IMHO I believe it is a better practice because I cannot remember what I've coded last week (or I don't have to specify in my API document that "this parameter is 32-bits integer").</p>
<p>In F# (although I've never used it), they define <em>int</em>, <em>int32</em>, and <em>nativeint</em>. Same question should rise, "which one do I use?". As others has mentioned, in most cases, it should not matter (should be transparent). But I for one would choose int32 and uint32 just to remove the ambiguities. </p>
<p>I guess it would just depend on what applications you are coding, who's using it, what coding practices you and your team follows, etc to justify when to use Int32.</p>