User Chris Nelson - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T18:32:55Zhttp://stackoverflow.com/feeds/user/7685http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1701936/get-me-started-programming-and-debugging-microsoft-office-automation2Get me started programming and debugging Microsoft Office automationChris Nelson2009-11-09T15:53:56Z2009-12-07T12:16:06Z
<p>I'm using Microsoft Office 2003 and creating a bunch of template documents to standardize some tasks. I asked this on <a href="http://superuser.com/questions/66915/what-would-keep-a-microsoft-word-autonew-macro-from-running">Superuser.com</a> and got no response so I'm thinking it's too program-y and hoping I'll have better luck here.</p>
<p>I need to automate a work flow that uses a bunch of Office (mostly Word) templates. What I want is to have "My Template Foo.dot" and "My Template Bar.dot", etc. in the "My Foo Bar Stuff" on a shared drive and have users double click on a template to create a new Foo or Bar.</p>
<p>What's I'd really like is for the user to double click on the Foo template and be prompted for a couple of items related to their task (e.g., a project number) and have a script in the template change the name that Save will default to something like "Foo for Project 1234.doc".</p>
<p>I asked on <a href="http://groups.google.com/group/microsoft.public.word.vba.general/browse%5Fthread/thread/d52848f3e43af032?lnk=igtc" rel="nofollow">Google Groups</a> and got an answer that worked....for a while. Then my AutoNew macro stopped kicking in when I created a new document by double clicking on the template. I have no idea why or how to debug it.</p>
<p>In Class Modules/This Application, I have:</p>
<pre><code>Sub AutoNew()
Dim Project As String
Project = InputBox("Enter the Project Number")
ActiveDocument.SaveAs "Project " & Project & " Notes.doc"
End Sub
</code></pre>
<p>In Microsoft Word Objects/ThisDocument, I have:</p>
<pre><code>Private Sub Document_New()
End Sub
</code></pre>
<p>I really have no idea why or where that came from.</p>
<p>In Tools/Macro Security... I have Security Level set to "Low".</p>
<p>I'm a software engineering with 25+ years of experience but a complete Office automation noob. Specific solutions and pointers to "this is how to automate Word" FAQs are welcome. Thanks.</p>
<p><hr></p>
<p>Update: If I create a new template (New..., Blank Document, Save As "My New Template.dot"), and insert the AutoNew() macro, it works. So what's inhibiting it from working on my existing template?</p>
<p>Update 2: Removing the module and function from my old template and adding it back works, too.</p>
http://stackoverflow.com/questions/1675073/how-can-i-keep-doxygen-from-documenting-defines-in-a-c-file1How can I keep doxygen from documenting #defines in a C file?Chris Nelson2009-11-04T16:40:45Z2009-11-04T16:52:26Z
<p>I have #define values in headers that I certainly want Doxygen to document but I have others in C files that I treat as static constants and I don't want Doxygen to document them. Something as simple and stupid as</p>
<pre><code>#define NUMBER_OF(a) (sizeof((a))/sizeof((a)[0]))
#define MSTR(e) #e
</code></pre>
<p>How can I keep Doxygen from putting those #defines in the documentation it creates? I've tried marking it with @internal but that didn't seem to help.</p>
<p>A somewhat-related question on Doxygen and #define, how can I get:</p>
<pre><code>#define SOME_CONSTANT 1234 /**< An explanation */
</code></pre>
<p>to put "SOME_CONSTANT" and "An explanation" but not "1234" in the output?</p>
http://stackoverflow.com/questions/1427272/for-loop-construction-and-code-complexity0For loop construction and code complexityChris Nelson2009-09-15T13:45:47Z2009-09-15T14:46:40Z
<p>My group is having some discussion and strong feelings about for loop construction.</p>
<p>I have favored loops like:</p>
<pre><code> size_t x;
for (x = 0; x < LIMIT; ++x) {
if (something) {
break;
}
...
}
// If we found what we're looking for, process it.
if (x < LIMIT) {
...
}
</code></pre>
<p>But others seem to prefer a Boolean flag like:</p>
<pre><code> size_t x;
bool found = false;
for (x = 0; x < LIMIT && !found; ++x) {
if (something) {
found = true;
}
else {
...
}
}
// If we found what we're looking for, process it.
if (found) {
...
}
</code></pre>
<p>(And, where the language allows, using "for (int x = 0; ...".)</p>
<p>The first style has one less variable to keep track of and a simpler loop header. Albeit at the cost of "overloading" the loop control variable and (some would complain), the use of break.</p>
<p>The second style has clearly defined roles for the variables but a more complex loop condition and loop body (either an else, or a continue after found is set, or a "if (!found)" in the balance of the loop).</p>
<p>I think that the first style wins on code complexity. I'm looking for opinions from a broader audience. Pointers to actual research on which is easier to read and maintain would be even better. "It doesn't matter, take it out of your standard" is a fine answer, too.</p>
<p>OTOH, this may be the wrong question. I'm beginning to think that the right rule is "if you have to break out of a for, it's really a while."</p>
<pre><code>bool found = false;
x = 0;
while (!found && x < LIMIT) {
if (something) {
found = true;
...handle the thing...
}
else {
...
}
++x;
}
</code></pre>
<p>Does what the first two examples do but in fewer lines. It does divide the initialization, test, and increment of x across three lines, though.</p>
http://stackoverflow.com/questions/1208550/how-can-i-create-a-tabular-report-in-sql-when-the-column-names-are-in-the-databas0How can I create a tabular report in SQL when the column names are in the database, not the query?Chris Nelson2009-07-30T18:45:57Z2009-07-30T18:51:12Z
<p><a href="http://www.geocities.com/colinpriley/sql/sqlitepg09.htm" rel="nofollow">http://www.geocities.com/colinpriley/sql/sqlitepg09.htm</a> has a nice technique for creating a tabular report where the column names for the table can be coded in the query but in my case, the columns should be values from the database. Say I have daily sales figures like:</p>
<pre><code> Transaction Date Rep Product Amount
1 July 1 Bob A12 $10
2 July 2 Bob B24 $12
3 July 2 Ted A12 $25
...
</code></pre>
<p>and I want a weekly summary report that shows how much of each product each rep sold:</p>
<pre><code> A12 B24
Bob $10 $12
Ted $25 $0
</code></pre>
<p>My column names come from the Product column. Say, any product that has a row in the specified date range should have a column in the report. But other products -- which weren't sold in that time frame -- should not have a column of all 0s. How can I do that? Bonus points if it works in SQLite.</p>
<p>TIA.</p>
http://stackoverflow.com/questions/1075935/using-current-class-in-java-static-method-declaration1Using current class in Java static method declarationChris Nelson2009-07-02T18:23:40Z2009-07-02T19:11:56Z
<p>My Java is rusty so please bear with me. In C I can do:</p>
<pre><code>int someFunc(void)
{
printf("I'm in %s\n", __func__);
}
</code></pre>
<p>In Java, can I lexically get to the name or class of the type currently being defined. For example, if I have:</p>
<pre><code>import org.apache.log4j.Logger;
class myClass {
private static final Logger logger = Logger.getLogger(myClass.class);
...
}
</code></pre>
<p>It seems wrong to repeat "myClass" in the getLogger() argument. I want "getLogger(__CLASS__)" or "getLogger(this.class)" or something. (I know both of those are silly but they should point to what I'm looking for.) Does the Java compiler really not know what class it's in the middle of as it processes source?</p>
http://stackoverflow.com/questions/995877/stupid-trivia-looking-for-a-quote3Stupid trivia: looking for a quote [closed]Chris Nelson2009-06-15T12:38:09Z2009-06-15T12:56:32Z
<p>I know this is OT here but this audience is likely to know the answer:</p>
<p>I've heard a pair of classic quotes about usability. The first was in the early years of personal computing when someone commented that your computers should be as easy to use as our phones. Years later, someone else commented that with voice mail, call forwarding, conference calling, etc., etc. it would be nice if our phones were as easy to use as our computers. Can anyone here attribute one or both of those quotes? TIA.</p>
http://stackoverflow.com/questions/673724/specific-message-catalog-techniques-for-web-application0Specific message catalog techniques for web applicationChris Nelson2009-03-23T15:00:49Z2009-06-14T07:31:09Z
<p>I have a web application that has user-readable text in three places: C source for CGI programs, JavaScript in .js files, and .HTML files and we are considering internationalization. I once worked on I18N of a PC-based program written in C and Tcl. We used common <a href="http://www.tcl.tk/man/tcl8.2.3/TclCmd/msgcat.htm" rel="nofollow">message catalogs</a> that we could access from both languages. I'm not at all sure how that technique would apply to a web application. I've seen several articles on StackOverflow about "considerations for I18N" but my question is about the specific technology for storing and retrieving text in a web app. How is this usually done?</p>
http://stackoverflow.com/questions/567098/returning-a-void-pointer-to-a-constant-object-in-c2Returning a void pointer to a constant object in CChris Nelson2009-02-19T20:53:21Z2009-04-25T23:55:06Z
<p>I'm writing an access function which returns a pointer to an internal buffer and I'd like to hint to users of my function that they shouldn't update the object that's pointed to. A very contrived example would be:</p>
<pre><code>void myAccessFunc(bool string, void* p, size_t* len)
{
static const char* s = "aha!";
static const int i = 123;
if (string)
*(char**)p = &s;
*len = strlen(s);
else
*(int**)p = &i;
*len = sizeof(i);
}
char* s;
size_t bytes;
myAccessFunc(true,&s, &bytes);
printf("Got '%s'\n", s);
</code></pre>
<p>Yes, I know that looks flakey.</p>
<p>What I want to prevent is:</p>
<pre><code>char* s;
size_t bytes;
myAccessFunc(true,&s,&bytes);
s[4] = '?';
</code></pre>
<p>I know I can't completely prevent it but I'd at least like the compiler warning to hint to a user that they shouldn't be doing that. If they cast my pointer, then that's their problem. Is there some combination of const and void and * that will do this? I tried something like:</p>
<pre><code>void myAccessFunc(bool string, const void** p, size_t* len);
</code></pre>
<p>but it seemed do away with the voidness of the pointer so a caller had to do:</p>
<pre><code>const void* p;
size_t bytes;
myAccessFunc(true, &p, &bytes);
</code></pre>
<p>or</p>
<pre><code>const char* s;
size_t bytes;
myAccessFunc(true, (const void**)&s, &bytes);
</code></pre>
<p>and couldn't do:</p>
<pre><code>const int * ip;
const char* s;
size_t bytes;
myAccessFunc(true, &s, &bytes);
myAccessFunc(false, &i, &bytes);
</code></pre>
<p>I finally came around to:</p>
<pre><code>const void* myAccessFunc(bool string, size_t* len);
</code></pre>
<p>and if the user does:</p>
<pre><code>char* p = myAcccessFunc(true,&bytes);
</code></pre>
<p>the compiler (GCC, at least), does complain about throwing away the qualifier.</p>
http://stackoverflow.com/questions/659311/how-do-you-review-large-blocks-of-new-code3How do you review large blocks of new codeChris Nelson2009-03-18T17:28:21Z2009-03-18T17:45:04Z
<p>I'm a strong advocate of code reviews, whatever that means. I know it means different things to different individuals and groups and can be applied differently in different phases of development. </p>
<p>When I make a one-line change to a #define to fix a typo in a user-visible prompt string, "Hey, Joe, did I spell 'FooBar' right?" is easy. When you make a few related changes in several related functions, an over-the-shoulder sanity check is 10-15 minutes' work. </p>
<p>But what about a new project with tens of thousands of lines of brand spanking new code? It doesn't happen that often so I'm not as comfortable with it. How do you review that? One-on-one? Hand off and review "offline" with later feedback? In a group setting? </p>
<p>For the different approaches, are there any rules of thumb for lines/hour reviewed so I can estimate the time to allow for it?</p>
http://stackoverflow.com/questions/529327/safe-efficient-way-to-access-unaligned-data-in-a-network-packet-from-c4Safe, efficient way to access unaligned data in a network packet from CChris Nelson2009-02-09T18:42:49Z2009-02-09T19:22:02Z
<p>I'm writing a program in C for Linux on an ARM9 processor. The program is to access network packets which include a sequence of tagged data like:</p>
<pre><code><fieldID><length><data><fieldID><length><data> ...
</code></pre>
<p>The fieldID and length fields are both uint16_t. The data can be 1 or more bytes (up to 64k if the full length was used, but it's not).</p>
<p>As long as <code><data></code> has an even number of bytes, I don't see a problem. But if I have a 1- or 3- or 5-byte <code><data></code> section then the next 16-bit fieldID ends up not on a 16-bit boundary and I anticipate alignment issues. It's been a while since I've done any thing like this from scratch so I'm a little unsure of the details. Any feedback welcome. Thanks.</p>
http://stackoverflow.com/questions/513298/how-can-i-determine-the-socket-family-from-the-socket-file-descriptor1(How) Can I determine the socket family from the socket file descriptorChris Nelson2009-02-04T20:55:31Z2009-02-04T22:03:50Z
<p>I am writing an API which includes IPC functions which send data to another process which may be local or on another host. I'd really like the send function to be as simple as:</p>
<pre><code>int mySendFunc(myDataThing_t* thing, int sd);
</code></pre>
<p>without the caller having to know -- in the immediate context of the mySendFunc() call -- whether sd leads to a local or remote process. It seems to me that if I could so something like:</p>
<pre><code>switch (socketFamily(sd)) {
case AF_UNIX:
case AF_LOCAL:
// Send without byteswapping
break;
default:
// Use htons() and htonl() on multi-byte values
break;
}
</code></pre>
<p>It has been suggested that I might implement socketFamily() as:</p>
<pre><code>unsigned short socketFamily(int sd)
{
struct sockaddr sa;
size_t len;
getsockname(sd, &sa, &len);
return sa.sa_family;
}
</code></pre>
<p>But I'm a little concerned about the efficiency of getsockname() and wonder if I can afford to do it every time I send.</p>
http://stackoverflow.com/questions/101818/looking-for-a-more-flexible-tool-than-gnu-indent2Looking for a more flexible tool than GNU indentChris Nelson2008-09-19T13:30:21Z2008-09-23T11:04:05Z
<p>When I run indent with various options I want against my source, it does what I want but also messes with the placement of *s in pointer types:</p>
<pre><code> -int send_pkt(tpkt_t* pkt, void* opt_data);
-void dump(tpkt_t* bp);
+int send_pkt(tpkt_t * pkt, void *opt_data);
+void dump(tpkt * bp);
</code></pre>
<p>I know my placement of *s next to the type not the variable is unconventional but how can I get indent to just leave them alone? Or is there another tool that will do what I want? I've looked in the man page, the info page, and visited a half a dozen pages that Google suggested and I can't find an option to do this. </p>
<p>I tried Artistic Style (a.k.a. AStyle) but can't seem to figure out how to make it indent in multiples of 4 but make every 8 a tab. That is:</p>
<pre><code>if ( ... ) {
<4spaces>if ( ... ) {
<tab>...some code here...
<4spaces>}
}
</code></pre>
http://stackoverflow.com/questions/71534/how-can-i-efficiently-build-different-versions-of-a-component-with-one-makefile1How can I efficiently build different versions of a component with one MakefileChris Nelson2008-09-16T11:57:47Z2008-09-17T20:30:02Z
<p>I hope I haven't painted myself into a corner. I've gotten what seems to be most of the way through implementing a Makefile and I can't get the last bit to work. I hope someone here can suggest a technique to do what I'm trying to do.</p>
<p>I have what I'll call "bills of materials" in version controlled files in a source repository and I build something like:</p>
<pre><code>make VER=x
</code></pre>
<p>I want my Makefile to use $(VER) as a tag to retrieve a BOM from the repository, generate a dependency file to include in the Makefile, rescan including that dependency, and then build the product. </p>
<p>More generally, my Makefile may have several targets -- A, B, C, etc. -- and I can build different versions of each so I might do:</p>
<pre><code>make A VER=x
make B VER=y
make C VER=z
</code></pre>
<p>and the dependency file includes information about all three targets.</p>
<p>However, creating the dependency file is somewhat expensive so if I do:</p>
<pre><code>make A VER=x
...make source (not BOM) changes...
make A VER=x
</code></pre>
<p>I'd really like the Makefile to not regenerate the dependency. And just to make things as complicated as possible, I might do:</p>
<pre><code>make A VER=x
.. change version x of A's BOM and check it in
make A VER=x
</code></pre>
<p>so I need to regenerate the dependency on the second build.</p>
<p>The check out messes up the timestamps used to regenerate the dependencies so I think I need a way for the dependency file to depend not on the BOM but on some indication that the BOM changed.</p>
<p>What I've come to is making the BOM checkout happen in a .PHONY target (so it always gets checked out) and keeping track of the contents of the last checkout in a ".sig" file (if the signature file is missing or the contents are different than the signature of the new file, then the BOM changed), and having the dependency generation depend on the signatures). At the top of my Makefile, I have some setup:</p>
<pre><code>BOMS = $(addsuffix .bom,$(MAKECMDGOALS)
SIGS = $(subst .bom,.sig,$(BOMS))
DEP = include.d
-include $(DEP)
</code></pre>
<p>And it seems I always need to do:</p>
<pre><code>.PHONY: $(BOMS)
$(BOMS):
...checkout TAG=$(VER) $@
</code></pre>
<p>But, as noted above, if i do just that, and continue:</p>
<pre><code>$(DEP) : $(BOMS)
... recreate dependency
</code></pre>
<p>Then the dependency gets updated every time I invoke make. So I try:</p>
<pre><code>$(DEP) : $(SIGS)
... recreate dependency
</code></pre>
<p>and</p>
<pre><code>$(BOMS):
...checkout TAG=$(VER) $@
...if $(subst .bom,.sig,$@) doesn't exist
... create signature file
...else
... if new signature is different from file contents
... update signature file
... endif
...endif
</code></pre>
<p>But the dependency generation doesn't get tripped when the signature changes. I think it's because because $(SIGS) isn't a target, so make doesn't notice when the $(BOMS) rule updates a signature.</p>
<p>I tried creating a .sig:.bom rule and managing the timestamps of the checked out BOM with touch but that didn't work.</p>
<p>Someone suggested something like:</p>
<pre><code>$(DEP) : $(SIGS)
... recreate dependency
$(BOMS) : $(SIGS)
...checkout TAG=$(VER) $@
$(SIGS) :
...if $(subst .bom,.sig,$(BOMS)) doesn't exist
... create it
...else
... if new signature is different from file contents
... update signature file
... endif
...endif
</code></pre>
<p>but how can the BOM depend on the SIG when the SIG is created from the BOM? As I read that it says, "create the SIG from the BOM and if the SIG is newer than the BOM then checkout the BOM". How do I bootstrap that process? Where does the first BOM come from?</p>
http://stackoverflow.com/questions/75771/what-is-the-biggest-problem-with-software-development/75831#758312Answer by Chris Nelson for What is the biggest problem with software development?Chris Nelson2008-09-16T19:08:36Z2008-09-16T19:08:36Z<p>Microsoft. No, seriously. My wife doesn't understand that I don't mind that Bill Gates is rich, I mind that he got rich peddling crap. People have come to expect that software sucks. Is it Donald Norman who noted how depressing it is that toddlers know to fix things by turning them off and back on? If consumers had higher standards for acceptable systems -- for personal computing or embedded systems -- there would be more pressure for quality and less pressure for fast releases and systems would be better.</p>
http://stackoverflow.com/questions/63690/how-do-you-reliably-get-an-ip-address-via-dhcp1How do you reliably get an IP address via DHCP?Chris Nelson2008-09-15T15:01:44Z2008-09-15T17:04:47Z
<p>I work with embedded Linux systems that sometimes want to get their IP address from a DHCP server. The DHCP Client client we use (<a href="http://www.phystech.com/download/dhcpcd.html" rel="nofollow" title="DHCPCD">dhcpcd</a>) has limited retry logic. If our device starts up without any DHCP server available and times out, dhcpcd will exit and the device will never get an IP address until it's rebooted with a DHCP server visible/connected. I can't be the only one that has this problem. The problem doesn't even seem to be specific to embedded systems (though it's worse there). How do you handle this? Is there a more robust client available? </p>
http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/63278#632786Answer by Chris Nelson for What is the strangest programming language you have used?Chris Nelson2008-09-15T14:15:49Z2008-09-15T14:15:49Z<p>Actually used and not just seen as a curiosity? RPG (RePort Generator) on IBM System/38 and AS/400 systems. Strangely, it worked a lot like relay ladder logic used to program control systems.</p>
http://stackoverflow.com/questions/1701936/get-me-started-programming-and-debugging-microsoft-office-automationComment by Chris Nelson on Get me started programming and debugging Microsoft Office automationChris Nelson2009-11-09T17:46:11Z2009-11-09T17:46:11Z@Justin: How do you turn off macros in the template? Isn't that an application option?http://stackoverflow.com/questions/1675073/how-can-i-keep-doxygen-from-documenting-defines-in-a-c-file/1675115#1675115Comment by Chris Nelson on How can I keep doxygen from documenting #defines in a C file?Chris Nelson2009-11-04T18:02:45Z2009-11-04T18:02:45ZI've got cond/endcond working but I really would like to know why internal didn't work. My doxygen fu is definitely weak. :-(http://stackoverflow.com/questions/1675073/how-can-i-keep-doxygen-from-documenting-defines-in-a-c-file/1675115#1675115Comment by Chris Nelson on How can I keep doxygen from documenting #defines in a C file?Chris Nelson2009-11-04T16:49:41Z2009-11-04T16:49:41ZI suppose that addresses the #define in .c file issue (I can surround those lines with conditional control). It seems noisy and unnatural, though. And doesn't at all address hiding values for #define'd constants. (Maybe I shouldn't have asked a compound question but I hoped there was some #define-specific stuff that might address both issues.)http://stackoverflow.com/questions/1427272/for-loop-construction-and-code-complexity/1427302#1427302Comment by Chris Nelson on For loop construction and code complexityChris Nelson2009-09-15T14:20:14Z2009-09-15T14:20:14ZActually, "if you have to break out of a for loop, then use a while loop instead" is starting to sound good to me. Arguably, searches should be whiles.http://stackoverflow.com/questions/1427272/for-loop-construction-and-code-complexity/1427376#1427376Comment by Chris Nelson on For loop construction and code complexityChris Nelson2009-09-15T14:05:37Z2009-09-15T14:05:37ZThat's interesting. Of course, sometimes the "..." is "return x" and returning from the middle of a loop feels grody.http://stackoverflow.com/questions/1427272/for-loop-construction-and-code-complexity/1427319#1427319Comment by Chris Nelson on For loop construction and code complexityChris Nelson2009-09-15T14:04:01Z2009-09-15T14:04:01ZAh, but the second example have the "same" condition twice but expressed differently (!found in the loop header, found in the post condition). That, to me, is worse because it's harder to notice with a visual or programmatic scan.http://stackoverflow.com/questions/1208550/how-can-i-create-a-tabular-report-in-sql-when-the-column-names-are-in-the-databas/1208579#1208579Comment by Chris Nelson on How can I create a tabular report in SQL when the column names are in the database, not the query?Chris Nelson2009-07-30T19:06:57Z2009-07-30T19:06:57ZI see how that works but I don't see how it helps. I have rather the opposite problem: I want to create column names (for the crosstab) from data, not data from column names. Maybe my query processor is a little slow today.http://stackoverflow.com/questions/995877/stupid-trivia-looking-for-a-quote/995886#995886Comment by Chris Nelson on Stupid trivia: looking for a quoteChris Nelson2009-06-15T13:33:16Z2009-06-15T13:33:16ZThat's very nice but it's not what I'm looking for. I'm fairly sure there are two quotes, years apart. And I'm tempted to say that the latter is by Donald Norman.http://stackoverflow.com/questions/253372/redmine-or-tracd-to-use-for-project-management/380750#380750Comment by Chris Nelson on Redmine or Tracd to use for project management?Chris Nelson2009-04-07T15:54:20Z2009-04-07T15:54:20ZThe Trac TimeingAndEstimation plug in handles estimates and applied time quite well. The EstimationTools plugin provides workload and burndown charts. I'll grant you that there isn't a good Gantt chart.http://stackoverflow.com/questions/253372/redmine-or-tracd-to-use-for-project-management/253463#253463Comment by Chris Nelson on Redmine or Tracd to use for project management?Chris Nelson2009-04-07T15:53:15Z2009-04-07T15:53:15ZYou have to be careful about the definition of "project". As we've come to understand it, a Trac "project" is an instance of Trac with certain configuration. We use "project" to mean the tasks and milestones to release something. We manage multiple projects in Trac by filtering milestones, etc.http://stackoverflow.com/questions/659311/how-do-you-review-large-blocks-of-new-code/659371#659371Comment by Chris Nelson on How do you review large blocks of new codeChris Nelson2009-03-18T17:53:50Z2009-03-18T17:53:50ZThe decomposition is probably the key to my problem.http://stackoverflow.com/questions/659311/how-do-you-review-large-blocks-of-new-code/659344#659344Comment by Chris Nelson on How do you review large blocks of new codeChris Nelson2009-03-18T17:52:42Z2009-03-18T17:52:42ZI agree for incremental development. But if you're developing a new product from empty files, it may take a few thousand lines before there's anything really functional or reviewable. That's not always the case, you can have a stubby main() on the first day and start fleshing out functions but...http://stackoverflow.com/questions/659311/how-do-you-review-large-blocks-of-new-code/659323#659323Comment by Chris Nelson on How do you review large blocks of new codeChris Nelson2009-03-18T17:48:38Z2009-03-18T17:48:38ZI agree that early review is better. For various reasons, that's not the circumstance I'm in right now.http://stackoverflow.com/questions/567098/returning-a-void-pointer-to-a-constant-object-in-c/576129#576129Comment by Chris Nelson on Returning a void pointer to a constant object in CChris Nelson2009-03-03T01:17:12Z2009-03-03T01:17:12ZI really like this solution but for a different problem. Thanks for the clear example.http://stackoverflow.com/questions/567098/returning-a-void-pointer-to-a-constant-object-in-c/567196#567196Comment by Chris Nelson on Returning a void pointer to a constant object in CChris Nelson2009-02-19T21:20:49Z2009-02-19T21:20:49ZThanks. I think that cure is worse than the disease.