User EricSchaefer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T21:18:55Zhttp://stackoverflow.com/feeds/user/8976http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1841365/is-it-better-to-store-platform-configuration-in-database-or-a-file/1841622#18416220Answer by EricSchaefer for is it better to store platform configuration in database or a file?EricSchaefer2009-12-03T17:43:26Z2009-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#18257480Answer by EricSchaefer for Having line breaks between <li>sEricSchaefer2009-12-01T12:01:47Z2009-12-01T12:01:47Z<p>CSS+float is your friend.</p>
http://stackoverflow.com/questions/1815770/community-site-framework-suggestions/1815779#18157792Answer by EricSchaefer for Community site framework suggestionsEricSchaefer2009-11-29T15:15:30Z2009-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#18132260Answer by EricSchaefer for Display the number of the characters in a stringEricSchaefer2009-11-28T17:57:28Z2009-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<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#18130700Answer by EricSchaefer for help with c# pattern.EricSchaefer2009-11-28T17:04:59Z2009-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#18130170Answer by EricSchaefer for What "already invented" algorithm did you invent?EricSchaefer2009-11-28T16:53:24Z2009-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#18094820Answer by EricSchaefer for C# "internal" access modifier when doing unit testingEricSchaefer2009-11-27T15:53:54Z2009-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#18094524Answer by EricSchaefer for Is there a javadoc-like program for C/C++?EricSchaefer2009-11-27T15:48:51Z2009-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#18092602Answer by EricSchaefer for How to get the first n elements of a std::mapEricSchaefer2009-11-27T15:05:00Z2009-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#18075033Answer by EricSchaefer for How to find if a value is in an array in Visual C#EricSchaefer2009-11-27T08:49:40Z2009-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#18071740Answer by EricSchaefer for Winform and Tab?EricSchaefer2009-11-27T06:57:59Z2009-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#18055010Answer by EricSchaefer for What development book made the most impact on you as a developer?EricSchaefer2009-11-26T20:24:21Z2009-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#18054880Answer by EricSchaefer for What development book made the most impact on you as a developer?EricSchaefer2009-11-26T20:19:50Z2009-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#17896613Answer by EricSchaefer for C# Auto Property - Is this 'pattern' best practice?EricSchaefer2009-11-24T12:08:41Z2009-11-24T12:08:41Z<p>Your approach is the lazy init version of</p>
<pre><code>public class xyz
{
public xyz()
{
BCSFilters = new List<BCSFilter>();
}
public IList<BCSFilter> BCSFilters { get; set; }
}
</code></pre>
http://stackoverflow.com/questions/1788312/why-constructor-not-returns-value/1788331#17883312Answer by EricSchaefer for Why constructor not returns valueEricSchaefer2009-11-24T06:59:52Z2009-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#17850484Answer by EricSchaefer for When programming for an hourly rate, should you keep the timer running while processing code automatically in the background?EricSchaefer2009-11-23T18:26:43Z2009-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#17828942Answer by EricSchaefer for How do I ignore a test based on another test in NUnit?EricSchaefer2009-11-23T12:33:58Z2009-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#17828510Answer by EricSchaefer for How to convert string "brakemeup" in to char[stringlength] array?EricSchaefer2009-11-23T12:25:39Z2009-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#17828124Answer by EricSchaefer for .NET code refactoring when overloads differ on data typeEricSchaefer2009-11-23T12:18:28Z2009-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#17638900Answer by EricSchaefer for What is the preferred unit testing tool for C development in Visual Studio?EricSchaefer2009-11-19T15:00:38Z2009-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#17623141Answer by EricSchaefer for is there any api provided by dot net platform to convert a string or bytres array into user defined object?EricSchaefer2009-11-19T10:27:53Z2009-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#17623430Answer by EricSchaefer for In C# , How can i create a System.Drawing.Color object using a hex value ?EricSchaefer2009-11-19T10:33:02Z2009-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#17623020Answer by EricSchaefer for Git for beginners: The definitive practical guideEricSchaefer2009-11-19T10:25:40Z2009-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#17474310Answer 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?EricSchaefer2009-11-17T08:50:38Z2009-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#17376710Answer by EricSchaefer for how to open program through C# program and give this program focusEricSchaefer2009-11-15T14:40:13Z2009-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#17035171Answer by EricSchaefer for PostgreSQL , Select from 2 tables, but only the latest element from table 2EricSchaefer2009-11-09T20:23:21Z2009-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#17035650Answer by EricSchaefer for What should I load into memory when my app loads?EricSchaefer2009-11-09T20:29:03Z2009-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#16575260Answer by EricSchaefer for Can you give an example of stack overflow in C++?EricSchaefer2009-11-01T16:06:59Z2009-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#16566244Answer by EricSchaefer for C# Attribute to modify methodsEricSchaefer2009-11-01T07:49:01Z2009-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#16558244Answer by EricSchaefer for C# - Am I replacing perfectly good code?EricSchaefer2009-10-31T22:42:57Z2009-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#294068Comment by EricSchaefer on How much work should be done in a constructor?EricSchaefer2009-12-21T18:49:45Z2009-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/…</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#1841582Comment by EricSchaefer on How do i send an ASCII character in a C# programEricSchaefer2009-12-03T17:46:14Z2009-12-03T17:46:14ZThat way he would send two bytes, not one.http://stackoverflow.com/questions/1815770/community-site-framework-suggestions/1815779#1815779Comment by EricSchaefer on Community site framework suggestionsEricSchaefer2009-11-29T15:58:38Z2009-11-29T15:58:38Z5148 modules to be precise... ;-)http://stackoverflow.com/questions/1815770/community-site-framework-suggestions/1815779#1815779Comment by EricSchaefer on Community site framework suggestionsEricSchaefer2009-11-29T15:55:31Z2009-11-29T15:55:31ZThere 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#1815779Comment by EricSchaefer on Community site framework suggestionsEricSchaefer2009-11-29T15:53:03Z2009-11-29T15:53:03ZThere 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-labelsComment by EricSchaefer on Branching to labelsEricSchaefer2009-11-28T17:47:55Z2009-11-28T17:47:55ZPlease 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#1809260Comment by EricSchaefer on How to get the first n elements of a std::mapEricSchaefer2009-11-27T18:53:04Z2009-11-27T18:53:04ZI am aware of that. But the OP wants a map "with at most n elements". 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#1809452Comment by EricSchaefer on Is there a javadoc-like program for C/C++?EricSchaefer2009-11-27T15:55:14Z2009-11-27T15:55:14ZThanks for fixing the typo.http://stackoverflow.com/questions/1809227/how-to-get-the-first-n-elements-of-a-stdmap/1809260#1809260Comment by EricSchaefer on How to get the first n elements of a std::mapEricSchaefer2009-11-27T15:32:40Z2009-11-27T15:32:40ZYes, they are. But a map is "most likely implemented as a (balanced) tree of nodes" (quote "The C++ programming language", 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#1807503Comment by EricSchaefer on How to find if a value is in an array in Visual C#EricSchaefer2009-11-27T12:23:57Z2009-11-27T12:23:57Z@RichardOD: You are right. Editing the answer...http://stackoverflow.com/questions/1805370/can-a-certain-overloaded-constructor-show-certain-overloaded-methodsComment by EricSchaefer on Can a certain overloaded constructor, show certain overloaded methods?EricSchaefer2009-11-26T19:45:02Z2009-11-26T19:45:02ZWhat do you mean "not to show the method"?http://stackoverflow.com/questions/1789989/can-i-use-throws-in-constructor/1790006#1790006Comment by EricSchaefer on Can I use throws in constructor?EricSchaefer2009-11-24T14:05:59Z2009-11-24T14:05:59ZGood luck isolating such a class in a test harness...http://stackoverflow.com/questions/1789989/can-i-use-throws-in-constructor/1790019#1790019Comment by EricSchaefer on Can I use throws in constructor?EricSchaefer2009-11-24T13:37:51Z2009-11-24T13:37:51Z^TestableJava.pdfhttp://stackoverflow.com/questions/1789989/can-i-use-throws-in-constructor/1790019#1790019Comment by EricSchaefer on Can I use throws in constructor?EricSchaefer2009-11-24T13:37:04Z2009-11-24T13:37:04Z<a href="http://objectmentor.com/resources/articles/TestableJava.pdf" rel="nofollow">objectmentor.com/resources/articles/…</a>http://stackoverflow.com/questions/1789989/can-i-use-throws-in-constructor/1790006#1790006Comment by EricSchaefer on Can I use throws in constructor?EricSchaefer2009-11-24T13:33:26Z2009-11-24T13:33:26ZSo 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.