User Tobi - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T06:45:34Z http://stackoverflow.com/feeds/user/5422 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/61354/how-to-get-entire-chain-of-exceptions-in-application-threadexception-event-handle 0 How to get entire chain of Exceptions in Application.ThreadException event handler? Tobi 2008-09-14T14:08:15Z 2009-12-09T02:06:45Z <p>I was just working on fixing up exception handling in a .NET 2.0 app, and I stumbled onto some weird issue with <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.application.threadexception.aspx" rel="nofollow">Application.ThreadException</a>.</p> <p>What I want is to be able to catch all exceptions from events behind GUI elements (e.g. button_Click, etc.). I then want to filter these exceptions on 'fatality', e.g. with some types of Exceptions the application should keep running and with others it should exit.</p> <p>In another .NET 2.0 app I learned that, by default, only in debug mode the exceptions actually leave an Application.Run or Application.DoEvents call. In release mode this does not happen, and the exceptions have to be 'caught' using the Application.ThreadException event.</p> <p>Now, however, I noticed that <strong>the exception object passed in the ThreadExceptionEventArgs of the Application.ThreadException event is always the innermost exception in the exception chain</strong>. For logging/debugging/design purposes I really want the entire chain of exceptions though. It isn't easy to determine what external system failed for example when you just get to handle a SocketException: when it's wrapped as e.g. a NpgsqlException, then at least you know it's a database problem.</p> <p><strong>So, how to get to the entire chain of exceptions from this event?</strong> Is it even possible or do I need to design my excepion handling in another way?</p> <p>Note that I do -sort of- have a <a href="http://beta.stackoverflow.com/questions/61366/rolling-your-own-message-loop-any-pitfalls" rel="nofollow">workaround</a> using <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.application.setunhandledexceptionmode.aspx" rel="nofollow">Application.SetUnhandledExceptionMode</a>, but this is far from ideal because I'd have to roll my own message loop.</p> <p>EDIT: to prevent more mistakes, <strong>the GetBaseException() method does NOT do what I want</strong>: it just returns the innermost exception, while the only thing I already have is the innermost exception. I want to get at the outermost exception!</p> http://stackoverflow.com/questions/565357/comparing-program-flow-between-same-app-in-net-1-1-and-net-2-0 0 Comparing program flow between same app in .net 1.1 and .net 2.0 Tobi 2009-02-19T13:43:47Z 2009-10-01T05:19:22Z <p>I'm looking at upgrading an application we're developing here using Visual Studio 2003 / .NET 1.1 to Visual Studio 2008 / .NET 2.0.</p> <p>Now I was testing stuff, and found that I have a reproducable case in which the .NET 1.1 version does what it is supposed to do, while the .NET 2.0 version (same code) ends up in an infinite recursion (the recursion is intentional, but it is supposed to be limited to 2 levels..)</p> <p>Is there anything on the market for comparing program flow of two running applications, like a side-by-side debugger or something, or will I have to resort to stepping through both apps separately and trying to find the differences in flow/state manually?</p> <p>I'm pretty sure it will be either that or adding a lot of logging code, but maybe anyone has a great idea / tip to track this down?</p> <p>(FYI, my best guess at this moment is that it has something to do with data binding, because there were other [fatal] differences between .NET 1.1 and .NET 2.0 data binding...)</p> http://stackoverflow.com/questions/1328121/strings-joining-and-complexity/1328237#1328237 0 Answer by Tobi for Strings joining and complexity? Tobi 2009-08-25T13:21:12Z 2009-08-25T13:21:12Z <p>Because strings are immutable in languages like Java and C#, everytime two strings are concatenated a new string has to be created, in which the contents of the two old strings are copied.</p> <p>Assume strings which are on average c characters long.</p> <p>Now the first concatenation only has to copy 2*c characters, but the last one has to copy the concatenation of the first n-1 strings, which is (n-1)*c characters long, and the last one itself, which is c characters long, for a total of n*c characters. For n concatenations this makes n^2*c/2 character copies, which means an algorithmic complexity of O(n^2).</p> <p>In most cases in practice however this quadratic complexity will not be noticeable (as Jeff Atwood shows in the blog entry linked to by Robert C. Cartaino) and I'd advise to just write the code as readable as possible.</p> <p>There are cases however when it does matter, and using O(n^2) in such cases may be deadly. </p> <p>In practice I've seen this for example for generating big Word XML files in memory, including base64 encoded pictures. This generation used to take over 10 minutes due to using O(n^2) string concatenation. After I replaced concatenation using + with StringBuilder the running time for the same document reduced below 10 seconds.</p> <p>Similarly I've seen a piece of software that generated an epically big piece of SQL code as a string using + for concatenation. I haven't even waited till this finished (had been waiting for over an hour already), but just rewrote it using StringBuilder. This faster version finished within a minute.</p> <p>In short, just do whatever is most readable / easiest to write and only think about this when you'll be creating a freaking huge string :-)</p> http://stackoverflow.com/questions/962184/javascript-snippet-to-convert-doxygen-style-comment-to-html 1 Javascript snippet to convert doxygen style comment to HTML Tobi 2009-06-07T16:06:48Z 2009-07-21T16:00:03Z <p>In relation to <a href="http://stackoverflow.com/questions/930622/does-there-exist-a-wiki-for-editing-doxygen-comments">this question</a>, I was wondering if anyone knows a javascript code snippet/library to convert a single doxygen comment to HTML?</p> <p>For example,</p> <pre><code>/** This is a comment block * * \b bold text * \i italic text */ </code></pre> <p>would be converted to something like:</p> <pre><code>&lt;p&gt;This is a comment block&lt;/p&gt; &lt;p&gt;&lt;b&gt;bold&lt;/b&gt; text&lt;/p&gt; &lt;p&gt;&lt;i&gt;italic&lt;/i&gt; text&lt;/p&gt; </code></pre> <p>Similar for all the other formatting related tags of doxygen.</p> <p>I've found <a href="http://code.google.com/p/jsdoc-toolkit/" rel="nofollow">this</a> already, which seems to be a good starting point if I have to implement it myself, but possibly I'm missing a complete project :-)</p> <p>So, suggestions welcome!</p> http://stackoverflow.com/questions/100543/how-do-i-set-specific-environment-variables-when-debugging-in-visual-studio 2 How do I set specific environment variables when debugging in Visual Studio? Tobi 2008-09-19T08:45:39Z 2009-07-16T20:58:59Z <p>On a class library project, I set the "Start Action" on the Debug tab of the project properties to "Start external program" (NUnit in this case). I want to set an environment variable in the environment this program is started in. How do I do that? (Is it even possible?)</p> <p>EDIT:</p> <p>It's an environment variable that influences all .NET apps (COMplus_Version, it sets runtime version) so setting it system wide really isn't an option.</p> <p>As a workaround I just forced NUnit to start in right .NET version (2.0) by setting it in nunit.exe.config, though unfortunately this also means all my .NET 1.1 unit tests are now also run in .NET 2.0. I should probably just make a copy of the executable so it can have it's own config file...</p> <p>Keeping the question open in case someone does happen to find out how (might be useful for other purposes too after all...)</p> http://stackoverflow.com/questions/955162/missing-before-identifier-while-compiling-vc6-code-in-vc9/955179#955179 7 Answer by Tobi for missing ; before identifier while compiling VC6 code in VC9 Tobi 2009-06-05T10:17:09Z 2009-06-05T10:17:09Z <p>You may need to insert 'typename', to tell the compiler PRIMARY_MAP::iterator is, in all cases, a type.</p> <p>e.g.</p> <pre><code>class GCache { private: typedef map&lt;pKey, Data, pCompare&gt; PRIMARY_MAP; PRIMARY_MAP pMap; typename PRIMARY_MAP::iterator m_pItr; //Code truncated } </code></pre> http://stackoverflow.com/questions/930622/does-there-exist-a-wiki-for-editing-doxygen-comments 4 Does there exist a "wiki" for editing doxygen comments? Tobi 2009-05-30T21:06:02Z 2009-05-31T20:38:27Z <p>I'm working on a fairly big open source RTS game engine (<a href="http://springrts.com/" rel="nofollow">Spring</a>). I recently added a bunch of new C++ functions callable by Lua, and am wondering how to best document them, and at the same time also stimulate people to write/update documentation for <em>a lot</em> of existing Lua call-outs.</p> <p>So I figured it may be nice if I could write the documentation initially as doxygen comments near the C++ functions - this is easy because the function body obviously defines exactly what the function does. However, I would like the documentation to be improved by game developers using the engine, who generally have little understanding of git (the VCS we use) or C++.</p> <p>Hence, it would be ideal if there was a way to automatically generate apidocs from the C++ file, but also to have a wiki-like web interface to allow a much wider audience to update the comments, add examples, etc.</p> <p>So I'm wondering, does there exist a web tool which integrates doxygen style formatting, wiki-like editing for those comments (preferably without allowing editing any other parts of the source file) and git? (to commit the comments changed through the web interface to a special branch)</p> <p>We developers could then merge this branch every now and then to add the improvements to the master branch, and at the same time any improvements by developers to the documentation would end up on this web tool with just a merge of the master branch into this special branch.</p> <p>I haven't found anything yet, doubt something this specific exists yet, so any suggestions are welcome!</p> http://stackoverflow.com/questions/868490/what-are-windows-user-objects/868511#868511 0 Answer by Tobi for What are Windows "USER objects" Tobi 2009-05-15T12:52:46Z 2009-05-15T12:52:46Z <p>I don't know <em>what</em> they are, but I do know they <em>include</em> window handles.</p> <p>For window handles there is a system wide maximum of about 32000, and a per process maximum of 10000. (This may just be USER object limit, instead of just window handles.)</p> <p>The number of window handles may be very high if some way you are leaking window handles, or if you use huge amounts of windows. (Note that even simple controls like a text label consumes a single window handle.)</p> http://stackoverflow.com/questions/857258/c-constant-in-library-does-not-work/857280#857280 6 Answer by Tobi for c++ constant in library; does not work Tobi 2009-05-13T10:54:02Z 2009-05-13T10:54:02Z <p>const char* means pointer to const char. This means the pointer itself is <strong>not</strong> constant.</p> <p>Hence it's a normal variable, so you'd need to use</p> <pre><code>extern const char* SOMESTRING; </code></pre> <p>in the header file, and</p> <pre><code>const char* SOMESTRING = "xx"; </code></pre> <p>in one compilation unit of the library.</p> <p><hr /></p> <p>Alternatively, if it's meant to be a <strong>const</strong> pointer to a const char, then you should use:</p> <pre><code>const char* const SOMESTRING = "xx"; </code></pre> http://stackoverflow.com/questions/86562/what-is-missing-in-the-visual-studio-express-editions/86578#86578 6 Answer by Tobi for What is "missing" in the Visual Studio Express Editions? Tobi 2008-09-17T19:17:26Z 2009-05-13T10:45:56Z <p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=727BCFB0-B575-47AB-9FD8-4EE067BB3A37&amp;displaylang=en" rel="nofollow">Visual Studio 2008 Product Comparison</a></p> <p>As far as I know there are no restrictions on it's use, but I'm not a lawyer.</p> <p>AviewAnew pointed out you can use Express Editions for commercial use: there are no licensing restrictions for applications built using Visual Studio Express Editions. See <a href="http://www.microsoft.com/express/support/faq/" rel="nofollow">FAQ</a> #7.</p> http://stackoverflow.com/questions/839565/how-to-initialise-a-c-program-using-file-environment-and-or-command-line/839665#839665 5 Answer by Tobi for How to initialise a C program using file, environment and/or command line? Tobi 2009-05-08T12:54:56Z 2009-05-11T13:45:25Z <p>The basics:</p> <ul> <li>To configure your program using environment variables, you can use the getenv function defined in stdlib.h.</li> <li>To configure your program using command line arguments, declare your main function like 'int main(int argc, const char* const* argv)', and use a loop to go over the arguments in the argv array. It's size is given by argc.</li> <li>To configure your program using a configuration file, preferably pick some library doing this for you instead of inventing yet another custom config file format. Note that depending on the platform you target, there are also libraries to parse commandline arguments.</li> </ul> <p>Which settings source should override each other depends on the application, but in my opinion generally commandline argument > environment variable > configuration file makes most sense.</p> <p>Here is an example of getting configuration from environment and commandline, with commandline overriding environment:</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; #include &lt;string.h&gt; int main(int argc, const char* const* argv) { int i; const char* myConfigVar; // get default setting from environment myConfigVar = getenv("MY_CONFIG_VAR"); // if the variable wasn't defined, initialize to hardcoded default if (!myConfigVar) myConfigVar = "default value"; // parse commandline arguments // start at 1, because argv[0] contains the name of the program for (i = 1; i &lt; argc; ++i) { if (strcmp("--my-config-var", argv[i]) == 0) { if (i + 1 &lt; argc) myConfigVar = argv[i + 1]; else printf("missing value for my-config-var argument\n"); } } printf("myConfigVar = '%s'\n", myConfigVar); return 0; } </code></pre> <p>You already see it becomes very long and tedious very soon, so better use an existing library if one exists for your desired target platform(s), or at least factor this kind of code into a number of functions.</p> <p>Another interesting option is to bind a scripting language to your application, then you could make your application only read and "execute" your settings file, and the user could configure the settings file to read some settings from the environment and some from the commandline, for example. It really depends on type and size of the application and your target audience whether this is worth doing though.</p> http://stackoverflow.com/questions/840081/what-does-floating-point-error-1-j-mean/840389#840389 12 Answer by Tobi for What does floating point error -1.#J mean? Tobi 2009-05-08T15:27:09Z 2009-05-08T15:27:09Z <p>It can be either negative infinity or NaN (not a number). Due to the formatting on the field printf does not differentiate between them.</p> <p>I tried the following code in Visual Studio 2008:</p> <pre><code>double a = 0.0; printf("%.3g\n", 1.0 / a); // +inf printf("%.3g\n", -1.0 / a); // -inf printf("%.3g\n", a / a); // NaN </code></pre> <p>which results in the following output:</p> <pre><code>1.#J -1.#J -1.#J </code></pre> <p>removing the .3 formatting specifier gives:</p> <pre><code>1.#INF -1.#INF -1.#IND </code></pre> <p>so it's clear 0/0 gives NaN and -1/0 gives negative infinity (NaN, -inf and +inf are the only "erroneous" floating point numbers, if I recall correctly)</p> http://stackoverflow.com/questions/166159/is-there-a-difference-between-datatable-clear-and-datatable-rows-clear 2 Is there a difference between DataTable.Clear and DataTable.Rows.Clear? Tobi 2008-10-03T09:59:38Z 2009-04-22T16:58:50Z <p>I recall there is a difference between some methods/properties called directly on the <a href="http://msdn.microsoft.com/en-us/library/system.data.datatable(VS.71).aspx" rel="nofollow">DataTable</a> class, and the identically named methods/properties on the <a href="http://msdn.microsoft.com/en-us/library/system.data.datatable.rows(VS.71).aspx" rel="nofollow">DataTable.Rows</a> property. (Might have been the RowCount/Count property for which I read this.) The difference is one of them disregards <a href="http://msdn.microsoft.com/en-us/library/system.data.datarow.rowstate(VS.71).aspx" rel="nofollow">DataRow.RowState</a>, and the other respects/uses it.</p> <p>In this particular case I'm wondering about the difference between <a href="http://msdn.microsoft.com/en-us/library/system.data.datatable.clear(VS.71).aspx" rel="nofollow">DataTable.Clear</a> and <a href="http://msdn.microsoft.com/en-us/library/system.data.datarowcollection.clear(VS.71).aspx" rel="nofollow">DataTable.Rows.Clear</a>. I can imagine one of them actually removes all rows, and the other one just marks them as deleted.</p> <p>So my question is, <strong>is there a difference between the two Clear methods, and if so what is the difference?</strong></p> <p>(Oh, this is for .NET 1.1 btw, in case the semantics changed from one version to another.)</p> http://stackoverflow.com/questions/605740/can-you-rate-a-developer-by-counting-the-active-breakpoints-in-the-ide/605757#605757 3 Answer by Tobi for Can you rate a developer by counting the active breakpoints in the IDE? Tobi 2009-03-03T09:42:17Z 2009-03-03T09:42:17Z <p>If anything I'd guess:</p> <ul> <li><p>No breakpoints in the IDE (while debugging!) might suggest the developer does not know how to use a debugger.</p></li> <li><p>Many breakpoints may suggests that either the code is bad, or the developer is relatively new to the code (= it is not his own code), or both.</p></li> </ul> <p>I don't think many other conclusions can be drawn from the number of breakpoints in the IDE.</p> http://stackoverflow.com/questions/605663/table-api/605700#605700 0 Answer by Tobi for Table api Tobi 2009-03-03T09:25:19Z 2009-03-03T09:25:19Z <p>The solution with Table::row() and Table::Row::column() methods is a bit more readable (in general) and allows you to unambiguously create a Table::column() method, Table::Column (proxy) class, and Table::Column::row() method later on, if that is ever needed. This solution also makes it easy to find all places where rows/columns are accessed, which is much harder when you use operator overloading.</p> <p>As others pointed out however, the second solution is less typing and, in my opinion, not much worse in readability. (May even be more readable in certain situations.)</p> <p>It's up to you to decide though, I'm just giving some implications of both solutions :-)</p> http://stackoverflow.com/questions/154672/what-can-i-do-to-increase-the-performance-of-a-lua-program/591284#591284 1 Answer by Tobi for What can I do to increase the performance of a Lua program? Tobi 2009-02-26T16:21:29Z 2009-02-26T16:21:29Z <p><a href="http://trac.caspring.org/wiki/LuaPerformance" rel="nofollow">http://trac.caspring.org/wiki/LuaPerformance</a></p> http://stackoverflow.com/questions/483991/is-there-a-limit-to-the-amount-of-windows-one-can-open/484102#484102 3 Answer by Tobi for Is there a limit to the amount of windows one can open? Tobi 2009-01-27T16:31:04Z 2009-01-27T16:35:32Z <p>Yes, the hard limit is about 32,700 window handles on the whole system, if I recall correctly, or 10,000 per process. It should be noted that not only windows consume a window handle, but each and every control (every button, panel, combobox etc.) on every window consumes a window handle.</p> <p>I've seen single dialogs (though way too heavy weight) consuming over 2000 window handles, but usually they use much less.</p> <p>You can get an idea of the amount of window handles consumed by a process by enabling the column "USER Objects" in the task manager, this includes window handles.</p> <p>For background information, see also:</p> <ul> <li><p><a href="http://blogs.msdn.com/oldnewthing/archive/2007/07/18/3926581.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2007/07/18/3926581.aspx</a></p></li> <li><p><a href="http://blogs.msdn.com/oldnewthing/archive/2005/03/15/395866.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2005/03/15/395866.aspx</a></p></li> <li><p><a href="http://msdn.microsoft.com/en-us/library/ms725486(VS.85).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms725486(VS.85).aspx</a></p></li> </ul> http://stackoverflow.com/questions/275868/how-to-automatically-add-header-files-to-project 0 How to automatically add header files to project? Tobi 2008-11-09T12:24:21Z 2008-11-21T16:57:08Z <p>How would I go about having a CMake buildsystem, which scans for source files now using <a href="http://www.cmake.org/cmake/help/cmake2.6docs.html#command:aux_source_directory" rel="nofollow">AUX_SOURCE_DIRECTORY</a>, scan for header files too in the same directory, preferably using a similar command?</p> <p>I didn't find an easy way to do this in the documentation yet, so I now have a crappy bash script to post-process my (CodeBlocks) project file...</p> http://stackoverflow.com/questions/275853/acceptable-fix-for-majority-of-signed-unsigned-warnings 3 acceptable fix for majority of signed/unsigned warnings? Tobi 2008-11-09T11:56:34Z 2008-11-15T12:14:29Z <p>I myself am convinced that in a project I'm working on signed integers are the best choice in the majority of cases, even though the value contained within can never be negative. (Simpler reverse for loops, less chance for bugs, etc., in particular for integers which can only hold values between 0 and, say, 20, anyway.)</p> <p>The majority of the places where this goes wrong is a simple iteration of a std::vector, often this used to be an array in the past and has been changed to a std::vector later. So these loops generally look like this:</p> <pre><code>for (int i = 0; i &lt; someVector.size(); ++i) { /* do stuff */ } </code></pre> <p>Because this pattern is used so often, the amount of compiler warning spam about this comparison between signed and unsigned type tends to hide more useful warnings. Note that we definitely do not have vectors with more then INT_MAX elements, and note that until now we used two ways to fix compiler warning:</p> <pre><code>for (unsigned i = 0; i &lt; someVector.size(); ++i) { /*do stuff*/ } </code></pre> <p>This usually works but might silently break if the loop contains any code like 'if (i-1 >= 0) ...', etc.</p> <pre><code>for (int i = 0; i &lt; static_cast&lt;int&gt;(someVector.size()); ++i) { /*do stuff*/ } </code></pre> <p>This change does not have any side effects, but it does make the loop a lot less readable. (And it's more typing.)</p> <p>So I came up with the following idea:</p> <pre><code>template &lt;typename T&gt; struct vector : public std::vector&lt;T&gt; { typedef std::vector&lt;T&gt; base; int size() const { return base::size(); } int max_size() const { return base::max_size(); } int capacity() const { return base::capacity(); } vector() : base() {} vector(int n) : base(n) {} vector(int n, const T&amp; t) : base(n, t) {} vector(const base&amp; other) : base(other) {} }; template &lt;typename Key, typename Data&gt; struct map : public std::map&lt;Key, Data&gt; { typedef std::map&lt;Key, Data&gt; base; typedef typename base::key_compare key_compare; int size() const { return base::size(); } int max_size() const { return base::max_size(); } int erase(const Key&amp; k) { return base::erase(k); } int count(const Key&amp; k) { return base::count(k); } map() : base() {} map(const key_compare&amp; comp) : base(comp) {} template &lt;class InputIterator&gt; map(InputIterator f, InputIterator l) : base(f, l) {} template &lt;class InputIterator&gt; map(InputIterator f, InputIterator l, const key_compare&amp; comp) : base(f, l, comp) {} map(const base&amp; other) : base(other) {} }; // TODO: similar code for other container types </code></pre> <p>What you see is basically the STL classes with the methods which return size_type overridden to return just 'int'. The constructors are needed because these aren't inherited.</p> <p><strong>What would you think of this as a developer, if you'd see a solution like this in an existing codebase?</strong></p> <p>Would you think 'whaa, they're redefining the STL, what a huge WTF!', or would you think this is a nice simple solution to prevent bugs and increase readability. Or maybe you'd rather see we had spent (half) a day or so on changing all these loops to use std::vector&lt;>::iterator?</p> <p>(In particular if this solution was combined with banning the use of unsigned types for anything but raw data (e.g. unsigned char) and bit masks.)</p> http://stackoverflow.com/questions/57449/upgrading-from-net-1-1-to-net-2-0-what-to-expect 7 Upgrading from .NET 1.1 to .NET 2.0, what to expect? Tobi 2008-09-11T19:48:38Z 2008-10-05T08:28:42Z <p>I'm working on a big .NET 1.1 project, and there exists a wish to upgrade this, majorily to be able to use better tools like Visual Studio 2008, but also because of the new features and smaller amount of bugs in the .NET 2.0 framework.</p> <p>The project consist for the bigger part of VB.NET, but there are also parts in C#. It is a Windows Forms application, using various third party controls. Using .NET remoting the rich client talks to a server process which interfaces with a MSSQL 2000 database.</p> <p>What kind of issues can we expect in case we decide to perform the upgrade?</p> http://stackoverflow.com/questions/166542/using-boost-in-embedded-system-with-memory-limitation/166581#166581 4 Answer by Tobi for Using boost in embedded system with memory limitation Tobi 2008-10-03T12:32:31Z 2008-10-03T12:32:31Z <p>You could write your own allocator for the container, which allocates from a fixed size static buffer. Depending on the usage patterns of the container the allocator could be as simple as incrementing a pointer (e.g. when you only insert stuff into the container once at app startup, and don't continuously add/remove elements.)</p> http://stackoverflow.com/questions/166452/performance-of-system-io-readallxxx-writeallxxx-methods/166522#166522 5 Answer by Tobi for Performance of System.IO.ReadAllxxx / WriteAllxxx methods Tobi 2008-10-03T12:07:12Z 2008-10-03T12:07:12Z <p>You probably don't want to use File.ReadAllxxx / WriteAllxxx if you have any intention to support loading / saving of really large files.</p> <p>In other words, for an editor which you intend to remain usable when editing <strong>gigabyte</strong> size files, you want some design with StreamReader/StreamWriter and seeking, so you load only the part of the file that is visible.</p> <p>For anything without these (rare) requirements, I'd say take the easy route and use File.ReadAllxxx / WriteAllxxx. They just use the same StreamReader/Writer pattern internally as you'd code by hand anyway, as aku shows.</p> http://stackoverflow.com/questions/166159/is-there-a-difference-between-datatable-clear-and-datatable-rows-clear/166362#166362 1 Answer by Tobi for Is there a difference between DataTable.Clear and DataTable.Rows.Clear? Tobi 2008-10-03T11:09:15Z 2008-10-03T11:09:15Z <p>I've been testing the different methods now in .NET 1.1/VS2003, seems Matt Hamilton is right.</p> <ul> <li>DataTable.Clear and DataTable.Rows.Clear seem to behave identical with respect to the two things I tested: both remove all rows (they don't mark them as deleted, they really remove them from the table), and neither removes the columns of the table.</li> <li>DataTable.Reset clears rows and columns.</li> <li>DataTable.Rows.Count does include deleted rows. (This might be 1.1 specific)</li> <li>foreach iterates over deleted rows. (I'm pretty sure deleted rows are skipped in 2.0.)</li> </ul> http://stackoverflow.com/questions/145586/what-continous-integration-tool-is-best-for-a-c-project/145672#145672 2 Answer by Tobi for What continous integration tool is best for a C++ project? Tobi 2008-09-28T11:17:57Z 2008-09-28T11:17:57Z <p>I've been using <a href="http://buildbot.net/trac" rel="nofollow">buildbot</a> for the <a href="http://spring.clan-sy.com/" rel="nofollow">Spring RTS engine</a> project succesfully.</p> http://stackoverflow.com/questions/143947/in-memory-linq-performance/144089#144089 1 Answer by Tobi for In-memory LINQ performance Tobi 2008-09-27T17:29:24Z 2008-09-27T17:34:26Z <p>Yes, the generic case is always O(n), as Sklivvz said.</p> <p>However, many LINQ methods special case for when the object implementing IEnumerable actually implements e.g. ICollection. (I've seen this for IEnumerable.Contains at least.)</p> <p>In practice this means that LINQ IEnumerable.Contains calls the fast HashSet.Contains for example if the IEnumerable actually is a HashSet.</p> <pre><code>IEnumerable&lt;int&gt; mySet = new HashSet&lt;int&gt;(); // calls the fast HashSet.Contains because HashSet implements ICollection. if (mySet.Contains(10)) { /* code */ } </code></pre> <p>You can use reflector to check exactly how the LINQ methods are defined, that is how I figured this out.</p> <p>Oh, and also LINQ contains methods IEnumerable.ToDictionary (maps key to single value) and IEnumerable.ToLookup (maps key to multiple values). This dictionary/lookup table can be created once and used many times, which can speed up some LINQ-intensive code by orders of magnitude.</p> http://stackoverflow.com/questions/117101/what-is-the-best-way-to-generate-and-print-invoices-in-a-net-application/117554#117554 0 Answer by Tobi for What is the best way to generate and print invoices in a .NET application? Tobi 2008-09-22T20:50:51Z 2008-09-22T20:50:51Z <p>On one of the projects I work on we use <a href="http://www.combit.net/reporting/report-generator-List-Label" rel="nofollow">list &amp; label</a>.</p> <p>Basically you have a .NET API, you pass it a DataSet and then you make templates referencing the columns in the dataset, which can at least be printed (and I suppose exported to PDF too but didn't check...)</p> <p>I didn't work with it myself tho so can't say much about quality.</p> http://stackoverflow.com/questions/101337/what-is-the-difference-between-a-randomly-generated-number-and-secure-randomly-ge/101348#101348 2 Answer by Tobi for What is the difference between a randomly generated number and secure randomly generated number? Tobi 2008-09-19T12:09:46Z 2008-09-19T12:09:46Z <p>With just a "random number" one usually means a pseudo random number. Because it's a pseudo random number it can be (easily) predicted by an attacker.</p> <p>A secure random number is a random number from a truly random data source, ie. involving an entropy pool of some sorts.</p> http://stackoverflow.com/questions/100291/speed-up-loop-using-multithreading-in-c-question/100307#100307 6 Answer by Tobi for Speed up loop using multithreading in C# (Question). Tobi 2008-09-19T07:42:38Z 2008-09-19T07:42:38Z <p>You could try the CTP(!) of the <a href="http://msdn.microsoft.com/en-us/concurrency/default.aspx" rel="nofollow">Parallel extensions</a> for .NET. These allow you to write something like:</p> <pre><code>Parallel.Foreach (ListOfStrings, (item) =&gt; result.add(CalculateSmth(item)); ); </code></pre> <p>Of course result.add would need to be thread safe.</p> http://stackoverflow.com/questions/96054/is-is-possible-to-convert-c-double-array-to-double-without-making-a-copy/96097#96097 1 Answer by Tobi for Is is possible to convert C# double[,,] array to double[] without making a copy Tobi 2008-09-18T19:34:47Z 2008-09-18T19:34:47Z <p>As a workaround you could make a class which maintains the array in one dimensional form (maybe even in closer to bare metal form so you can pass it easily to the COM library?) and then overload operator[] on this class to make it usable as a multidimensional array in your C# code.</p> http://stackoverflow.com/questions/95974/do-access-modifiers-affect-reflection-also/95985#95985 2 Answer by Tobi for Do access modifiers affect reflection also? Tobi 2008-09-18T19:23:58Z 2008-09-18T19:23:58Z <p>You do, however, need extra permissions for accessing private/protected/internal fields/properties/methods from outside a class through reflection.</p> http://stackoverflow.com/questions/1193667/c-program-checking-whether-two-enums-are-in-sync-at-compile-time/1193809#1193809 Comment by Tobi on C program - checking whether two enums are in sync at compile time. Tobi 2009-07-28T13:37:28Z 2009-07-28T13:37:28Z Are the values of enum constants even available to the preprocessor? I think they aren't, so the final check would have to be done in runtime... http://stackoverflow.com/questions/930622/does-there-exist-a-wiki-for-editing-doxygen-comments Comment by Tobi on Does there exist a "wiki" for editing doxygen comments? Tobi 2009-06-15T06:51:05Z 2009-06-15T06:51:05Z Makes sense. I'll try to find some time for it after my current exam period. http://stackoverflow.com/questions/955162/missing-before-identifier-while-compiling-vc6-code-in-vc9/955179#955179 Comment by Tobi on missing ; before identifier while compiling VC6 code in VC9 Tobi 2009-06-05T12:16:34Z 2009-06-05T12:16:34Z Sorry, I don't know that exactly. I assume it was a bug in the VC6 compiler; I'm pretty sure VC6 didn't even come close to supporting everything related to templates (e.g. partial specialization.) http://stackoverflow.com/questions/930622/does-there-exist-a-wiki-for-editing-doxygen-comments Comment by Tobi on Does there exist a "wiki" for editing doxygen comments? Tobi 2009-06-02T11:02:12Z 2009-06-02T11:02:12Z Good point, I hadn't even thought of that :-) http://stackoverflow.com/questions/868496/how-to-convert-char-to-integer-in-c/868499#868499 Comment by Tobi on How to convert char to integer in C? Tobi 2009-05-15T12:59:35Z 2009-05-15T12:59:35Z @Frans,Noldorin: I would consider it very dangerous to &quot;just&quot; pass a pointer to a char array which isn't NULL terminated to a function expecting a NULL terminated string. In the example, remove the colon from the char array and the code will read uninitialized memory. http://stackoverflow.com/questions/86562/what-is-missing-in-the-visual-studio-express-editions/86578#86578 Comment by Tobi on What is "missing" in the Visual Studio Express Editions? Tobi 2009-05-13T10:45:12Z 2009-05-13T10:45:12Z @Piotr, a quick search turned up this download, seems it contains the comparison chart I originally linked to: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=727BCFB0-B575-47AB-9FD8-4EE067BB3A37&amp;displaylang=en" rel="nofollow">microsoft.com/downloads/&hellip;</a> http://stackoverflow.com/questions/839565/how-to-initialise-a-c-program-using-file-environment-and-or-command-line/839665#839665 Comment by Tobi on How to initialise a C program using file, environment and/or command line? Tobi 2009-05-10T11:39:52Z 2009-05-10T11:39:52Z Ok, deleted that last line :) http://stackoverflow.com/questions/839565/how-to-initialise-a-c-program-using-file-environment-and-or-command-line/839670#839670 Comment by Tobi on How to initialise a C program using file, environment and/or command line? Tobi 2009-05-08T12:58:23Z 2009-05-08T12:58:23Z From the tags it looks like the OP wants a C solution though, not C++. http://stackoverflow.com/questions/88904/error-creating-window-handle/89087#89087 Comment by Tobi on "Error Creating Window Handle" Tobi 2009-03-05T10:19:17Z 2009-03-05T10:19:17Z USER Objects, not GDI Objects. The first includes window handles, the second includes stuff like GDI pens, brushes, bitmaps, etc. http://stackoverflow.com/questions/605663/table-api/605700#605700 Comment by Tobi on Table api Tobi 2009-03-03T09:57:02Z 2009-03-03T09:57:02Z I find that in your example the first solution is more readable :-) The major reason for that may be because for Table[0][0] in code I've never seen before I have to look up the Table class to see whether the first digit is the row or the column. http://stackoverflow.com/questions/269268/how-to-implement-big-int-in-c/269282#269282 Comment by Tobi on How to implement big int in C++ Tobi 2008-11-10T16:21:22Z 2008-11-10T16:21:22Z AFAIK base 10 is often used because converting big numbers in base 255 (or anything not a power of 10) from/to base 10 is expensive, and your programs' input and output will generally be in base 10. http://stackoverflow.com/questions/274626/what-is-the-slicing-problem-in-c/274654#274654 Comment by Tobi on What is the slicing problem in C++? Tobi 2008-11-10T12:53:20Z 2008-11-10T12:53:20Z call foo() will call A::foo() after slicing, not B::foo() ... http://stackoverflow.com/questions/275853/acceptable-fix-for-majority-of-signed-unsigned-warnings/275951#275951 Comment by Tobi on acceptable fix for majority of signed/unsigned warnings? Tobi 2008-11-09T15:44:26Z 2008-11-09T15:44:26Z oops slots of typos in that too, well suppose the meaning is clear enough :-) http://stackoverflow.com/questions/275853/acceptable-fix-for-majority-of-signed-unsigned-warnings/275951#275951 Comment by Tobi on acceptable fix for majority of signed/unsigned warnings? Tobi 2008-11-09T15:43:47Z 2008-11-09T15:43:47Z Heh. As soon as this syntax is available in mainstream Linux distributions (there is already is maybe?), MinGW and Visual Studio, I'll definitely gonna use this. Looks so much better then std::vector&lt;&gt;::iterator it = someVector.begin() etc... http://stackoverflow.com/questions/253673/recommended-hash-for-passwords-in-asp-classic Comment by Tobi on Recommended hash for passwords in ASP Classic Tobi 2008-10-31T14:31:29Z 2008-10-31T14:31:29Z You reverse the relation, at best it's 'best, therefore slowest', which by no means implies 'slowest, therefore best', as chills42 shows with an example