User EricSchaefer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T21:18:55Z http://stackoverflow.com/feeds/user/8976 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1841365/is-it-better-to-store-platform-configuration-in-database-or-a-file/1841622#1841622 0 Answer by EricSchaefer for is it better to store platform configuration in database or a file? EricSchaefer 2009-12-03T17:43:26Z 2009-12-03T17:43:26Z <p>If you need to add a new column if a new type of whatever you are storing appears, your schema is probably not normalized.</p> http://stackoverflow.com/questions/1825733/having-line-breaks-between-lis/1825748#1825748 0 Answer by EricSchaefer for Having line breaks between <li>s EricSchaefer 2009-12-01T12:01:47Z 2009-12-01T12:01:47Z <p>CSS+float is your friend.</p> http://stackoverflow.com/questions/1815770/community-site-framework-suggestions/1815779#1815779 2 Answer by EricSchaefer for Community site framework suggestions EricSchaefer 2009-11-29T15:15:30Z 2009-11-29T15:15:30Z <p><a href="http://www.drupal.org" rel="nofollow">Drupal</a> comes to mind. There are modules for every requirement you listed.</p> http://stackoverflow.com/questions/1813189/display-the-number-of-the-characters-in-a-string/1813226#1813226 0 Answer by EricSchaefer for Display the number of the characters in a string EricSchaefer 2009-11-28T17:57:28Z 2009-11-28T17:57:28Z <p>I guess you are counting the occurences of letters, not characters ('5' is also a character).</p> <p>The last part:</p> <pre><code>for (int i = 0; i&lt;line.length(); i++) { if (Character.isLetter(line.charAt(i))) count[(int)(line.charAt(i) - 'a')]++; } </code></pre> <p>It iterates over the input line and checks for each character if it is a letter. If it is, it increments the count for that letter. The count is kept in an array of 26 integers (for the 26 letters in the latin alphabet). The count for letter 'a' is kept at index 0, letter 'b' at 1, 'z' at 25. To get the index the code subtracts the value 'a' from the letter value (each character not only is a character/glyph, but also a numeric value). So if the letter is 'a' it subtracts the value of 'a' which should be 0 and so on.</p> http://stackoverflow.com/questions/1813032/help-with-c-pattern/1813070#1813070 0 Answer by EricSchaefer for help with c# pattern. EricSchaefer 2009-11-28T17:04:59Z 2009-11-28T17:04:59Z <p>You could extract the common interface for those ten types if only the type is different or you could create a generic method.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/1813017#1813017 0 Answer by EricSchaefer for What "already invented" algorithm did you invent? EricSchaefer 2009-11-28T16:53:24Z 2009-11-28T16:53:24Z <p>I "invented" switch/case. I begun my programming career with a BASIC that did not have switch/case and turned to 68k assembly on the amiga. I didn't like to use multiple conditionals for a set of values and "invented" switch/case via jump lists.</p> <p>A little later I connected the amiga and a PC via parallel port with a special selfmade cable and wrote a program for each machine (both in assembly!) for sending files back and forth. I "invented" all kinds of error corrections, multilevel handshakes and discovered the "Two Army Problem". I thought I must be a genius. What a disappointment when I learnt all that a couple of years later in college as pretty basic stuff...</p> http://stackoverflow.com/questions/358196/c-internal-access-modifier-when-doing-unit-testing/1809482#1809482 0 Answer by EricSchaefer for C# "internal" access modifier when doing unit testing EricSchaefer 2009-11-27T15:53:54Z 2009-11-27T15:53:54Z <p>Internal classes need to be tested and there is an assemby attribute:</p> <pre><code>using System.Runtime.CompilerServices; [assembly:InternalsVisibleTo("MyTests")] </code></pre> http://stackoverflow.com/questions/1809443/is-there-a-javadoc-like-program-for-c-c/1809452#1809452 4 Answer by EricSchaefer for Is there a javadoc-like program for C/C++? EricSchaefer 2009-11-27T15:48:51Z 2009-11-27T15:50:58Z <ul> <li><a href="http://www.stack.nl/~dimitri/doxygen/" rel="nofollow">doxygen</a></li> <li><a href="http://docpp.sourceforge.net/" rel="nofollow">doc++</a></li> </ul> http://stackoverflow.com/questions/1809227/how-to-get-the-first-n-elements-of-a-stdmap/1809260#1809260 2 Answer by EricSchaefer for How to get the first n elements of a std::map EricSchaefer 2009-11-27T15:05:00Z 2009-11-27T15:05:00Z <p>A std::map is not a list. There are no "first n" elements.</p> <p>BTW: Iterators become invalid if the container is changed.</p> <p>If you really need a smaller map you could iterate though it and add all elements up to the n-th into a new map.</p> http://stackoverflow.com/questions/1807481/how-to-find-if-a-value-is-in-an-array-in-visual-c/1807503#1807503 3 Answer by EricSchaefer for How to find if a value is in an array in Visual C# EricSchaefer 2009-11-27T08:49:40Z 2009-11-27T12:24:23Z <p>The Enumerable.Contains() Method is your friend in .NET-Framework 3.5...</p> http://stackoverflow.com/questions/1807167/winform-and-tab/1807174#1807174 0 Answer by EricSchaefer for Winform and Tab? EricSchaefer 2009-11-27T06:57:59Z 2009-11-27T08:43:49Z <ol> <li><p>When you begin setting the tab order you klick the tab order button. When you are done you click it again to disable it.</p></li> <li><p>You can set the tab order number in each controls properties sheet or at runtime via the TabIndex value.</p></li> </ol> http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/1805501#1805501 0 Answer by EricSchaefer for What development book made the most impact on you as a developer? EricSchaefer 2009-11-26T20:24:21Z 2009-11-26T20:24:21Z <p>Advanced Programming in the UNIX environment - W. Richard Stevens</p> http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/1805488#1805488 0 Answer by EricSchaefer for What development book made the most impact on you as a developer? EricSchaefer 2009-11-26T20:19:50Z 2009-11-26T20:19:50Z <p>Clean Code - Robert C. Martin</p> http://stackoverflow.com/questions/1789646/c-auto-property-is-this-pattern-best-practice/1789661#1789661 3 Answer by EricSchaefer for C# Auto Property - Is this 'pattern' best practice? EricSchaefer 2009-11-24T12:08:41Z 2009-11-24T12:08:41Z <p>Your approach is the lazy init version of</p> <pre><code>public class xyz { public xyz() { BCSFilters = new List&lt;BCSFilter&gt;(); } public IList&lt;BCSFilter&gt; BCSFilters { get; set; } } </code></pre> http://stackoverflow.com/questions/1788312/why-constructor-not-returns-value/1788331#1788331 2 Answer by EricSchaefer for Why constructor not returns value EricSchaefer 2009-11-24T06:59:52Z 2009-11-24T07:02:36Z <p>How is a constructor supposed to return a return value? The <code>new</code> operator returns the newly created instance. You do not call a ctor, <code>new</code>does it.</p> <pre><code>MyClass instance = new MyClass(); </code></pre> <p>If the ctor would return a value, like so:</p> <pre><code>public int MyClass() { return 42; } </code></pre> <p>Where would you receive the integer?</p> http://stackoverflow.com/questions/1785035/when-programming-for-an-hourly-rate-should-you-keep-the-timer-running-while-proc/1785048#1785048 4 Answer by EricSchaefer for When programming for an hourly rate, should you keep the timer running while processing code automatically in the background? EricSchaefer 2009-11-23T18:26:43Z 2009-11-23T18:27:59Z <p>If it keeps you from doing any other paid work: Yes, definitely. If you would have walked the dog anyway: Probably not.</p> http://stackoverflow.com/questions/1782496/how-do-i-ignore-a-test-based-on-another-test-in-nunit/1782894#1782894 2 Answer by EricSchaefer for How do I ignore a test based on another test in NUnit? EricSchaefer 2009-11-23T12:33:58Z 2009-11-23T12:33:58Z <p>Tests should <strong>never</strong> depend on each other. You just found out why. Tests that depend on each other are fragile by definition. If you need the data in the DB for the test for <code>Get()</code>, put it there in the setup step.</p> http://stackoverflow.com/questions/1782822/how-to-convert-string-brakemeup-in-to-charstringlength-array/1782851#1782851 0 Answer by EricSchaefer for How to convert string "brakemeup" in to char[stringlength] array? EricSchaefer 2009-11-23T12:25:39Z 2009-11-23T12:25:39Z <p>How about </p> <pre><code>stringX.ToCharArray() </code></pre> http://stackoverflow.com/questions/1782799/net-code-refactoring-when-overloads-differ-on-data-type/1782812#1782812 4 Answer by EricSchaefer for .NET code refactoring when overloads differ on data type EricSchaefer 2009-11-23T12:18:28Z 2009-11-23T12:18:28Z <p>How about replacing <code>//Some 20 lines of common code</code> with call to <code>TwentyLinesOfCommonCode()</code> and <code>//Some more common code</code> with <code>SomeMoreCommonCode()</code> in both Methods? You would keep only the non-common code.</p> http://stackoverflow.com/questions/1763820/what-is-the-preferred-unit-testing-tool-for-c-development-in-visual-studio/1763890#1763890 0 Answer by EricSchaefer for What is the preferred unit testing tool for C development in Visual Studio? EricSchaefer 2009-11-19T15:00:38Z 2009-11-19T15:00:38Z <p><a href="http://cunit.sourceforge.net/" rel="nofollow">CUnit</a> is supposed to be good, but I have not used it myself...</p> http://stackoverflow.com/questions/1762290/is-there-any-api-provided-by-dot-net-platform-to-convert-a-string-or-bytres-array/1762314#1762314 1 Answer by EricSchaefer for is there any api provided by dot net platform to convert a string or bytres array into user defined object? EricSchaefer 2009-11-19T10:27:53Z 2009-11-19T13:40:19Z <p>(Edited)There is no such component in the framework besides the usual binary serializer which uses its own "schema". It might not be too hard to implement yourself. I suppose the schema tells you something like this:</p> <ul> <li>first there are 42 bytes to be interpreted as string, assign to field 'fieldname1'</li> <li>second there are 4 bytes to be interpreted as long, assign to field 'fieldname2'</li> <li>...</li> </ul> <p>Shouldn't be too hard.</p> http://stackoverflow.com/questions/1762311/in-c-how-can-i-create-a-system-drawing-color-object-using-a-hex-value/1762343#1762343 0 Answer by EricSchaefer for In C# , How can i create a System.Drawing.Color object using a hex value ? EricSchaefer 2009-11-19T10:33:02Z 2009-11-19T10:33:02Z <pre><code>Color.FromArgb(Convert.ToInt32( str.Substring(1), 16 )); </code></pre> http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide/1762302#1762302 0 Answer by EricSchaefer for Git for beginners: The definitive practical guide EricSchaefer 2009-11-19T10:25:40Z 2009-11-19T10:25:40Z <p>A real good paper for understanding how git works is the <a href="http://tom.preston-werner.com/2009/05/19/the-git-parable.html" rel="nofollow">git parable</a>. Very recomended!</p> http://stackoverflow.com/questions/1747420/i-need-to-print-20-000-word-documents-is-there-a-3rd-party-tool-that-will-help-m/1747431#1747431 0 Answer by EricSchaefer for I need to print 20,000 Word documents, is there a 3rd party tool that will help me do this or do I need to write custom code? EricSchaefer 2009-11-17T08:50:38Z 2009-11-17T08:50:38Z <p>I would try AutoIT: <a href="http://www.autoitscript.com/autoit3/" rel="nofollow">http://www.autoitscript.com/autoit3/</a></p> http://stackoverflow.com/questions/1737664/how-to-open-program-through-c-program-and-give-this-program-focus/1737671#1737671 0 Answer by EricSchaefer for how to open program through C# program and give this program focus EricSchaefer 2009-11-15T14:40:13Z 2009-11-15T14:40:13Z <p><code>Process.Start()</code>??</p> http://stackoverflow.com/questions/1703495/postgresql-select-from-2-tables-but-only-the-latest-element-from-table-2/1703517#1703517 1 Answer by EricSchaefer for PostgreSQL , Select from 2 tables, but only the latest element from table 2 EricSchaefer 2009-11-09T20:23:21Z 2009-11-09T20:38:57Z <p>From the top of my head: </p> <pre><code>ORDER BY date DESC LIMIT 1 </code></pre> <p>If you really want only id 1 your can use this query:</p> <pre><code>SELECT * FROM documents,updates WHERE documents.id=1 AND updates.document_id=1 ORDER BY date DESC LIMIT 1 </code></pre> <p><a href="http://www.postgresql.org/docs/8.4/interactive/queries-limit.html" rel="nofollow">http://www.postgresql.org/docs/8.4/interactive/queries-limit.html</a></p> http://stackoverflow.com/questions/1703541/what-should-i-load-into-memory-when-my-app-loads/1703565#1703565 0 Answer by EricSchaefer for What should I load into memory when my app loads? EricSchaefer 2009-11-09T20:29:03Z 2009-11-09T20:29:03Z <p>If the size and number of objects will always be rather small, load them at startup. Use stubs/proxies otherwise.</p> http://stackoverflow.com/questions/1657484/can-you-give-an-example-of-stack-overflow-in-c/1657526#1657526 0 Answer by EricSchaefer for Can you give an example of stack overflow in C++? EricSchaefer 2009-11-01T16:06:59Z 2009-11-01T16:06:59Z <p>You could also get a stack overflow if you try to put large objects on the stack (by-value).</p> http://stackoverflow.com/questions/1656621/c-attribute-to-modify-methods/1656624#1656624 4 Answer by EricSchaefer for C# Attribute to modify methods EricSchaefer 2009-11-01T07:49:01Z 2009-11-01T07:54:18Z <p>No. What you are looking for is aspect oriented programming (<a href="http://en.wikipedia.org/wiki/Aspect-oriented%5Fprogramming" rel="nofollow">AOP</a>). </p> <p>With AOP you specify a pointcut, a place where you want to weave in code, and the code you want to executed at that point. Tracing is the standard example for AOP. You specify a set of methods and the the weaver/compiler to add you log/tracing call at the beginning or the end of that methods.</p> http://stackoverflow.com/questions/1655821/c-am-i-replacing-perfectly-good-code/1655824#1655824 4 Answer by EricSchaefer for C# - Am I replacing perfectly good code? EricSchaefer 2009-10-31T22:42:57Z 2009-10-31T22:42:57Z <p>Could be a locale problem. E.g. some countries use dots as date separators.</p> <p>Edit: It is a locale problem. I just tried your format string on a machine with german locale and it is producing 2009.10.31</p> http://stackoverflow.com/questions/293967/how-much-work-should-be-done-in-a-constructor/294068#294068 Comment by EricSchaefer on How much work should be done in a constructor? EricSchaefer 2009-12-21T18:49:45Z 2009-12-21T18:49:45Z @Len Holgate: <a href="http://herbsutter.wordpress.com/2008/07/25/constructor-exceptions-in-c-c-and-java/" rel="nofollow">herbsutter.wordpress.com/2008/07/&hellip;</a> If your ctor does more than just simple initialization you might not be able to instantiate the class in isolation (think unit testing and reusability for instance). http://stackoverflow.com/questions/1841528/how-do-i-send-an-ascii-character-in-a-c-program/1841582#1841582 Comment by EricSchaefer on How do i send an ASCII character in a C# program EricSchaefer 2009-12-03T17:46:14Z 2009-12-03T17:46:14Z That way he would send two bytes, not one. http://stackoverflow.com/questions/1815770/community-site-framework-suggestions/1815779#1815779 Comment by EricSchaefer on Community site framework suggestions EricSchaefer 2009-11-29T15:58:38Z 2009-11-29T15:58:38Z 5148 modules to be precise... ;-) http://stackoverflow.com/questions/1815770/community-site-framework-suggestions/1815779#1815779 Comment by EricSchaefer on Community site framework suggestions EricSchaefer 2009-11-29T15:55:31Z 2009-11-29T15:55:31Z There are in fact so many modules, it is sometimes not so easy to find the right one ;-) http://stackoverflow.com/questions/1815770/community-site-framework-suggestions/1815779#1815779 Comment by EricSchaefer on Community site framework suggestions EricSchaefer 2009-11-29T15:53:03Z 2009-11-29T15:53:03Z There are currently more than 5000 modules for drupal. If there should really not be a module for a feature you need, you can easily build your own if you know php. There is plenty of documentation for that. There is also a very busy forum where you can ask for help. http://stackoverflow.com/questions/1813187/branching-to-labels Comment by EricSchaefer on Branching to labels EricSchaefer 2009-11-28T17:47:55Z 2009-11-28T17:47:55Z Please post some more info. What do you have, what do you need. Do you already have some code you can show us? http://stackoverflow.com/questions/1809227/how-to-get-the-first-n-elements-of-a-stdmap/1809260#1809260 Comment by EricSchaefer on How to get the first n elements of a std::map EricSchaefer 2009-11-27T18:53:04Z 2009-11-27T18:53:04Z I am aware of that. But the OP wants a map &quot;with at most n elements&quot;. Chopping of all elements larger than n is not like unlinking a list or shortening an array. Since std::map is organized like a tree, chopping is probably rather expensive... http://stackoverflow.com/questions/1809443/is-there-a-javadoc-like-program-for-c-c/1809452#1809452 Comment by EricSchaefer on Is there a javadoc-like program for C/C++? EricSchaefer 2009-11-27T15:55:14Z 2009-11-27T15:55:14Z Thanks for fixing the typo. http://stackoverflow.com/questions/1809227/how-to-get-the-first-n-elements-of-a-stdmap/1809260#1809260 Comment by EricSchaefer on How to get the first n elements of a std::map EricSchaefer 2009-11-27T15:32:40Z 2009-11-27T15:32:40Z Yes, they are. But a map is &quot;most likely implemented as a (balanced) tree of nodes&quot; (quote &quot;The C++ programming language&quot;, Bjarne Stroustrup), not a list. So mymap[n] doesn't make any sense. http://stackoverflow.com/questions/1807481/how-to-find-if-a-value-is-in-an-array-in-visual-c/1807503#1807503 Comment by EricSchaefer on How to find if a value is in an array in Visual C# EricSchaefer 2009-11-27T12:23:57Z 2009-11-27T12:23:57Z @RichardOD: You are right. Editing the answer... http://stackoverflow.com/questions/1805370/can-a-certain-overloaded-constructor-show-certain-overloaded-methods Comment by EricSchaefer on Can a certain overloaded constructor, show certain overloaded methods? EricSchaefer 2009-11-26T19:45:02Z 2009-11-26T19:45:02Z What do you mean &quot;not to show the method&quot;? http://stackoverflow.com/questions/1789989/can-i-use-throws-in-constructor/1790006#1790006 Comment by EricSchaefer on Can I use throws in constructor? EricSchaefer 2009-11-24T14:05:59Z 2009-11-24T14:05:59Z Good luck isolating such a class in a test harness... http://stackoverflow.com/questions/1789989/can-i-use-throws-in-constructor/1790019#1790019 Comment by EricSchaefer on Can I use throws in constructor? EricSchaefer 2009-11-24T13:37:51Z 2009-11-24T13:37:51Z ^TestableJava.pdf http://stackoverflow.com/questions/1789989/can-i-use-throws-in-constructor/1790019#1790019 Comment by EricSchaefer on Can I use throws in constructor? EricSchaefer 2009-11-24T13:37:04Z 2009-11-24T13:37:04Z <a href="http://objectmentor.com/resources/articles/TestableJava.pdf" rel="nofollow">objectmentor.com/resources/articles/&hellip;</a> http://stackoverflow.com/questions/1789989/can-i-use-throws-in-constructor/1790006#1790006 Comment by EricSchaefer on Can I use throws in constructor? EricSchaefer 2009-11-24T13:33:26Z 2009-11-24T13:33:26Z So what? You need to call open() on a socket class, before you call send(). Thats called a protocol. Throw an exception if the object was not initialized as send() would do.