User Dan Hewett - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T02:29:32Zhttp://stackoverflow.com/feeds/user/17975http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/291519/how-does-currentcontrolset-differ-from-controlset001-and-controlset0023How does CurrentControlSet differ from ControlSet001 and ControlSet002?Dan Hewett2008-11-14T21:34:11Z2009-07-15T06:49:34Z
<p>In the windows registry, how does CurrentControlSet differ from ControlSet001 and ControlSet002? Which should be set when installing for all users?</p>
<p>We are trying to add an environment variable for all users. Should we set:</p>
<p>HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Envinronment\EnvToSet?</p>
http://stackoverflow.com/questions/223215/c-example-of-coding-horror-or-brilliant-idea11C++ example of Coding Horror or Brilliant Idea?Dan Hewett2008-10-21T19:44:13Z2009-02-03T07:45:41Z
<p>At a previous employer, we were writing binary messages that had to go "over the wire" to other computers. Each message had a standard header something like:</p>
<pre><code>class Header
{
int type;
int payloadLength;
};
</code></pre>
<p>All of the data was contiguous (header, immediately followed by data). We wanted to get to the payload given that we had a pointer to a header. Traditionally, you might say something like:</p>
<pre><code>char* Header::GetPayload()
{
return ((char*) &payloadLength) + sizeof(payloadLength);
}
</code></pre>
<p>or even:</p>
<pre><code>char* Header::GetPayload()
{
return ((char*) this) + sizeof(Header);
}
</code></pre>
<p>That seemed kind of verbose, so I came up with:</p>
<pre><code>char* Header::GetPayload()
{
return (char*) &this[1];
}
</code></pre>
<p>It seems rather disturbing at first, possibly too odd to use -- but very compact.
There was a lot of debate on whether it was brilliant or an abomination. </p>
<p>So which is it - Crime against coding, or nice solution? Have you ever had a similar trade-off?</p>
<p>-Update:</p>
<p>We did try the zero sized array, but at the time, compilers gave warnings.
We eventually went to the inhertited technique: Message derives from Header.
It works great in practice, but in priciple you are saying a message IsA Header - which seems a little awkward.</p>
http://stackoverflow.com/questions/269223/could-c-have-not-obviated-the-pimpl-idiom/269251#26925110Answer by Dan Hewett for Could C++ have not obviated the pimpl idiom?Dan Hewett2008-11-06T16:07:03Z2008-12-13T05:22:19Z<p>This would be a nice feature, however:
This has to do with the size of the object. When the h file is read, the size of the object is known (based on all its contained elements). </p>
<p>If the private elements are not known, then you would not know how large of an object to new.</p>
<p>You can simulate your desired behavior by the following:</p>
<pre><code>class MyClass
{
public:
// public stuff
private:
#include "MyClassPrivate.h"
};
</code></pre>
<p>This does not enforce the behavior, but it gets the private stuff out of the .h file.
On the down side, this adds another file to maintain.
Also, in visual studio, the intellisense does not work for the private members - this could be a plus or a minus.</p>
http://stackoverflow.com/questions/364483/determining-the-alignment-of-c-c-structures-in-relation-to-its-members/364499#3644991Answer by Dan Hewett for Determining the alignment of C/C++ structures in relation to its membersDan Hewett2008-12-12T23:36:02Z2008-12-12T23:36:02Z<p>As the others mentioned, its implementation dependant. Visual Studio 2005 uses 8 bytes as the default structure alignment. Internally, items are aligned by their size - a float has 4 byte alignment, a double uses 8, etc.</p>
<p>You can override the behavior with #pragma pack. GCC (and most compilers) have similar compiler options or pragmas.</p>
http://stackoverflow.com/questions/345936/will-net-take-over-c-c-any-time/357303#3573033Answer by Dan Hewett for Will .net take over c/c++ any time?Dan Hewett2008-12-10T19:34:43Z2008-12-10T19:34:43Z<p>This is similar to what a professor of mine said in the early 80s - PASCAL should be used for everything. I don't think so. Different languages have different purposes. The problem is that people tend to only see things in their domain. I work in modeling and simulation and sometimes work close to the metal. C++ is the language for me. I want it unmanaged and without GC. I don't work in the biz/db world, so all the C#.net/Java/Beans/J2EE/TLA don't bring anything to the table for me.</p>
http://stackoverflow.com/questions/298293/which-single-book-should-every-manager-read/299426#2994261Answer by Dan Hewett for Which single book should every manager read?Dan Hewett2008-11-18T17:14:34Z2008-11-18T17:14:34Z<p>"Software Project Survival Guide" by Steve McConnell. It covers the basics on software project management in a very concise manner. Helps connect between mgt and programmer.</p>
<p>The more verbose version would be "Rapid Development" by Steve McConnell - similar stuff, but much more in depth.</p>
http://stackoverflow.com/questions/296297/what-optimizations-today-are-going-to-be-useless-tomorrow/296346#2963467Answer by Dan Hewett for What optimizations today are going to be useless tomorrow?Dan Hewett2008-11-17T17:58:51Z2008-11-17T17:58:51Z<p>Many architecture specific things are temporary. For instance, it used to be the fastest way to compute a DFT (Discrete Fourier Transform) was to store the sin and cosine values in memory. Now it CAN be cheaper to compute (or approximate) the sin/cos than it is to do a single non-cached memory access.</p>
<p>In "Writing Solid Code" Steve Maguire advocates writing clear (obvious) code, and allowing the compiler to optimize it. Often when you optimize code, you make it hard for the compiler to help.</p>
http://stackoverflow.com/questions/278526/what-was-your-biggest-nix-blooper/278611#27861115Answer by Dan Hewett for What was your biggest *nix blooper?Dan Hewett2008-11-10T17:41:31Z2008-11-10T17:41:31Z<p>I was cleaning out a local directory, so:</p>
<pre><code> rm -rf *
</code></pre>
<p>No problem, except that it left those little .xxx resource files, so:</p>
<pre><code>rm -rf .*
</code></pre>
<p>which apparently follows .. and heads up the directory tree (oops)</p>
<p>... and of course I had root privilege</p>
http://stackoverflow.com/questions/266253/is-there-a-programming-language-below-assembly/266748#2667482Answer by Dan Hewett for Is there a programming language "below" Assembly?Dan Hewett2008-11-05T21:22:17Z2008-11-05T21:22:17Z<p>Assembler is translated into machine code by the assembler. You could write it with a binary editor. (Ouch!)
CISC computers can have microcode, which sequences segments of the chip (ALU, memory fetch, etc). Typically, no one writes microcode, except at the chip manufacturer.</p>
http://stackoverflow.com/questions/266501/macro-definition-containing-include-directive/266679#2666790Answer by Dan Hewett for macro definition containing #include directiveDan Hewett2008-11-05T21:10:05Z2008-11-05T21:10:05Z<p>I will not argue the merits for it, but freetype (www.freetype.org) does the following:</p>
<pre><code>#include FT_FREETYPE_H
</code></pre>
<p>where they define FT_FREETYPE_H elsewhere</p>
http://stackoverflow.com/questions/243712/why-use-hex/244233#2442330Answer by Dan Hewett for Why use hex?Dan Hewett2008-10-28T18:05:29Z2008-10-28T18:05:29Z<p>To be more precise, hex and decimal, are all NUMBERS. The radix (base 10, 16, etc) are ways to present those numbers in a manner that is either clearer, or more convenient.</p>
<p>When discussing "how many of something there are" we normally use decimal. When we are looking at addresses or bit patterns on computers, hex is usually preferred, because often the meaning of individual bytes might be important. </p>
<p>Hex, (and octal) have the property that they are powers of two, so they map groupings of bit nicely. Hex maps 4 bits to one hex nibble (0-F), so a byte is stored in two nibbles (00-FF). Octal was popular on Digital Equipment (DEC) and other older machines, but one octal digit maps to three bits, so it doesn't cross byte boundaries as nicely.</p>
<p>Overall, the choice of radix is a way to make your programming easier - use the one that matches the domain best.</p>
http://stackoverflow.com/questions/226465/should-i-use-multiplication-or-division/226504#2265042Answer by Dan Hewett for Should I use multiplication or division?Dan Hewett2008-10-22T16:08:56Z2008-10-22T16:08:56Z<p>Multiplication is usually faster - certainly never slower.
However, if it is not speed critical, write whichever is clearest.</p>
http://stackoverflow.com/questions/219163/dealing-with-some-grey-code-style-issues/219176#2191764Answer by Dan Hewett for Dealing with some grey code style issuesDan Hewett2008-10-20T17:06:14Z2008-10-20T17:06:14Z<p>Allowing people to go through others code just to reformat when real performance is not an issue is a good way to ruin team relationships. Only change other's code when there is a compelling reason to do so, or if the group dynamic is very open to it.</p>
http://stackoverflow.com/questions/201694/good-book-on-c-internals/201772#2017720Answer by Dan Hewett for Good Book on C++ Internals?Dan Hewett2008-10-14T16:00:23Z2008-10-14T16:00:23Z<p>SGI produced a book called "C++ Language System Overview" which had several articles on the physical implementation of the language. Of particular interest was an article by Stroustrup on how multiple inheritance and casting is carried out. It also had an overview of iostreams, and templates. It has a lot more detail than the ARM, but obviously not as much breadth. I'm not sure if it's available at SGI (soft/hardcopy), but you could google, and see if someone has a copy.</p>
http://stackoverflow.com/questions/198051/why-delete-multidimensionalarray-operator-in-c-does-not-exist/198059#1980590Answer by Dan Hewett for Why "delete [][]... multiDimensionalArray;" operator in C++ does not existDan Hewett2008-10-13T15:51:00Z2008-10-13T15:51:00Z<p>delete[] applies to any non-scalar (array).</p>
http://stackoverflow.com/questions/176922/do-you-use-kibibyte-as-a-unit-of-measurement-in-your-programs/179721#1797210Answer by Dan Hewett for Do you use "kibibyte" as a unit of measurement in your programs?Dan Hewett2008-10-07T18:21:04Z2008-10-07T18:21:04Z<p>A KB is 1024 bytes
A kB is 1000 bytes
unfortunately spelled out is ambiguous. I always use 1024.</p>
<p>Knuth refers to MB as KKBytes or kkBytes to differentiate between 1024*1024 and 1000*1000</p>
http://stackoverflow.com/questions/179105/why-shouldnt-you-use-references-to-smart-pointers/179218#1792182Answer by Dan Hewett for Why shouldn't you use references to smart pointers?Dan Hewett2008-10-07T16:08:57Z2008-10-07T16:08:57Z<p>When using smart pointers (or any allocation management object) you are counting on the behaviors defined in the constructor/destructor to manage refs/derefs/locks/unlocks. As a result, those types of objects must be true objects to perform properly. when using references to such objects (or pointers) you are bypassing the mechanism (and asking for a wedgie).</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/179207#1792072Answer by Dan Hewett for What is the worst class/variable/function name you have ever encounteredDan Hewett2008-10-07T16:05:30Z2008-10-07T16:05:30Z<p>In the old FORTRAN days, we were linking to a vendor library who had no sense of a naming convention, and used simple variables like x any y in the global namespace. Linking to their library was always filled with collisions. We called them and asked them to use a reasonable naming convention or prefix, and their answer was "we don't ever use anything starting with zz, so you guys can just use zz as the first 2 letters!".</p>
<p>As a result all our variables had to start with zz...</p>
<p>Talk about name space pollution.</p>
<p>We eventually dumped that vendor.</p>
http://stackoverflow.com/questions/167904/how-do-you-stop-interim-solutions-from-lasting-forever/168006#1680060Answer by Dan Hewett for How do you stop interim solutions from lasting forever?Dan Hewett2008-10-03T17:34:06Z2008-10-03T17:34:06Z<p>We had to do this once - make a short term demo version that we knew we did not want to keep. The customer wanted it on a winTel box, so we developed the prototype in SGI/XWindows. (We were fluent in both, so it wasn't a problem). </p>
http://stackoverflow.com/questions/58640/great-programming-quotes/164745#1647456Answer by Dan Hewett for Great programming quotesDan Hewett2008-10-02T21:44:15Z2008-10-02T21:44:15Z<p>My other car is a cdr</p>
http://stackoverflow.com/questions/163766/should-developers-be-given-laptops-or-desktops/163774#1637744Answer by Dan Hewett for Should developers be given laptops or desktops?Dan Hewett2008-10-02T18:14:58Z2008-10-02T18:14:58Z<p>Laptops are good if you want to travel, but otherwise I want power and screen real-estate.</p>
http://stackoverflow.com/questions/163420/printing-to-a-pdf-printer-programatically/163767#1637670Answer by Dan Hewett for Printing to a pdf printer programaticallyDan Hewett2008-10-02T18:12:10Z2008-10-02T18:12:10Z<p>If you are trying to hand generated the PDF (with and SDK or a PDF printer driver) it's not very easy. The PDF format reference is available from Adobe.</p>
<p>The problem is that the file is a mix of ASCII and tables that have binary offsets within the file to reference objects. It is an interesting format, and very extensible, but it is difficult to write a simple file.</p>
<p>It's doable if you need to. I looked at the examples in the Adobe PDF reference, hand typed them in and worked them over till I could get them to work as I needed. If you will be doing this a lot it might be worth it, otherwise look at an SDK.</p>
http://stackoverflow.com/questions/162805/writing-maintainable-code/163280#1632802Answer by Dan Hewett for Writing maintainable codeDan Hewett2008-10-02T16:18:16Z2008-10-02T16:18:16Z<p>Plenty of whitespace. - High density code is hard to comprehend. If you have more than 6 lines wihtout a blank line, then that group is probably not a cohesive thought/idea/operation.</p>
<p>Good variable names - explanatory, but succinct. Huge variable names are as bad as tiny ones.</p>
http://stackoverflow.com/questions/159521/text-editor-to-open-big-giant-huge-large-text-files/159544#1595440Answer by Dan Hewett for Text editor to open big (giant, huge, large) text filesDan Hewett2008-10-01T20:27:28Z2008-10-01T20:27:28Z<p>On windows I've used Notepad++. I don't know if Ive edited that large, but certainly many Megs.
<a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">http://notepad-plus.sourceforge.net/uk/site.htm</a></p>
<p>I'm not sure of the limit, but Visual Studio 2005 should handle it, and it will allow you to view it as a table (assuming the XML is regular).</p>
http://stackoverflow.com/questions/143561/is-there-a-need-to-use-assembly-these-days/155178#1551781Answer by Dan Hewett for Is there a need to use assembly these days?Dan Hewett2008-09-30T21:30:26Z2008-09-30T21:30:26Z<p>It is worthwhile to have an know assembly even if you don't use it. I helps in understanding what is going on in your higher level languages. I was amazed when I was in college at how many Java programmers had NO understanding of memory layout, code generation or any type of physical hardware comprehension. When you first realize that code and data are all just bits - do you want to execute them, or look at them as data - that really blows some people away. It's always worthwhile to understand what going on under the hood.</p>
http://stackoverflow.com/questions/119098/which-i-o-library-do-you-use-in-your-c-code/154988#1549883Answer by Dan Hewett for Which I/O library do you use in your C++ code?Dan Hewett2008-09-30T20:40:32Z2008-09-30T20:40:32Z<p>In principle I would use iostreams, in practice I do too much formatted decimals, etc that make iostreams too unreadable, so I use stdio. Boost::format is an improvement, but not quite motivating enough for me. In practice, stdio is nearly typesafe since most modern compilers do argument checking anyway.</p>
<p>It's an area where I'm still not totally happy with any of the solutions.</p>
http://stackoverflow.com/questions/154808/whats-the-best-option-for-rendering-complex-fonts/154881#1548810Answer by Dan Hewett for What's The Best Option For Rendering Complex Fonts?Dan Hewett2008-09-30T20:25:04Z2008-09-30T20:25:04Z<p>Check out www.freetype.org
It handles non-left-to-right fonts.
It generates the glyphs for you, but you must render them to the device (OpenGL/DirectX, etc).</p>
http://stackoverflow.com/questions/153890/printing-leading-0s-in-c/153907#1539070Answer by Dan Hewett for Printing leading 0's in C?Dan Hewett2008-09-30T16:37:38Z2008-09-30T16:37:38Z<p>sprintf(mystring, "%05d", myInt);</p>
<p>"05" says use 5 digits, with leading zeros.</p>
http://stackoverflow.com/questions/153616/mpi-or-sockets/153855#1538551Answer by Dan Hewett for MPI or SocketsDan Hewett2008-09-30T16:29:18Z2008-09-30T16:29:18Z<p>I have not used MPI, but I have used sockets quite a bit. There are a few things to consider on high performance sockets. Are you doing many small packets, or large packets? If you are doing many small packets consider turning off the Nagle algorithm for faster response:</p>
<p>setsockopt(m_socket, IPPROTO_TCP, TCP_NODELAY, ...);</p>
<p>Also, using signals can actually be much slower when trying to get a high volume of data through. Long ago I made a test program where the reader would wait for a signal, and read a packet - it would get a bout 100 packets/sec. Then I just did blocking reads, and got 10000 reads/sec.</p>
<p>The point is look at all these options, and actually test them out. Different conditions will make different techniques faster/slower. It's important to not just get opinions, but to put them to the test. Steve Maguire talks about this in "Writing Solid Code". He uses many examples that are counter-intuitive, and tests them to find out what makes better/faster code.</p>
http://stackoverflow.com/questions/151011/improving-as-a-coder-with-respect-to-design/151090#1510902Answer by Dan Hewett for Improving as a coder with respect to design.Dan Hewett2008-09-29T22:53:55Z2008-09-29T22:53:55Z<p>The first step is to understand the actual problem. What are the needs of the customer? - what do they truly want to accomplish? If this question is not answered properly, all that follows is at best a high-quality solution to the wrong problem. Working interactively on these kinds of questions will strenghten your relationship to the customer, and be of great help when difficulties arise. </p>
<p>Next, understand the solution space - what tools and experience can you leverage to accomplish the solution. Don't always do things the way others do them, or based on the current trends. Do what you do well. If there is time/money available, spend some time researching new techniques and ideas.</p>
<p>Finally, make sure you understand the big picture, as well as the low level costs of architectural choices. Many people can see the big picture, and many can understand implementation details, but the few are able to do both.</p>
<p>I realize this does not cover the detail of design, but it should put you in the right perspective.</p>
http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/192908#192908Comment by Dan Hewett on What is your favorite "programmer" t-shirt?Dan Hewett2008-11-07T17:13:10Z2008-11-07T17:13:10ZWhere can I get it?