User Andrew Johnson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T11:01:59Zhttp://stackoverflow.com/feeds/user/5109http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1804230/array-of-inaddr/1804286#18042861Answer by Andrew Johnson for Array of in_addrAndrew Johnson2009-11-26T15:23:43Z2009-11-26T15:23:43Z<p>The hostentry structure already provides the list of IP addresses as an array (<a href="http://msdn.microsoft.com/en-us/library/ms738552%28VS.85%29.aspx" rel="nofollow">MSDN</a>). In your code example it is called <code>he->h_addr_list</code>, however the walking of it using <code>*he->h_addr_list++</code> is losing your reference to it.</p>
<p>If you want to copy the array you'll need to work out how big it is and then malloc some memory to store it, then memcpy the array across.</p>
http://stackoverflow.com/questions/1801549/reverse-a-singly-linked-list/1804209#18042090Answer by Andrew Johnson for Reverse a singly linked listAndrew Johnson2009-11-26T15:09:25Z2009-11-26T15:09:25Z<p>How about the more readable:</p>
<pre><code>
Node *pop (Node **root)
{
Node *popped = *root;
if (*root) {
*root = (*root)->next;
}
return (popped);
}
void push (Node **root, Node *new_node)
{
new_node->next = *root;
*root = new_node;
}
Node *reverse (Node *root)
{
Node *new_root = NULL;
Node *next;
while ((next = pop(&root))) {
push (&new_root, next);
}
return (new_root);
}
</code></pre>
http://stackoverflow.com/questions/1801549/reverse-a-singly-linked-list/1803114#18031140Answer by Andrew Johnson for Reverse a singly linked listAndrew Johnson2009-11-26T11:20:58Z2009-11-26T11:20:58Z<p>Just for fun (although tail recursion optimization should stop it eating all the stack):</p>
<pre><code>
Node* reverse (Node *root, Node *end) {
Node *next = root->next;
root->next = end;
return (next : reverse(next, root) : root);
}
root = reverse(root, NULL);
</code></pre>
http://stackoverflow.com/questions/51667/best-tips-for-documenting-code-using-doxygen20Best Tips for documenting code using doxygen?Andrew Johnson2008-09-09T11:41:38Z2009-10-18T03:51:11Z
<p>My team is starting to document our C code using doxygen, paying particular attention to our public API headers. There appears to be a lot of flexibility and different special commands in doxygen, which is great, but it's not clear what's a good thing and what's a bad thing without trial and error.</p>
<p>What are your favourite ways to mark up your code, what are your MUST DOs and DO NOTs?<br />
<strong>Please provide your top tips, one per answer to facilitate voting.</strong></p>
<p>I am looking to define our whole approach to API documentation, including providing a template to get the rest of the team started. So far I have something like this:</p>
<pre><code>/**
* @file example_action.h
* @Author Me (me@example.com)
* @date September, 2008
* @brief Brief description of file.
*
* Detailed description of file.
*/
/**
* @name Example API Actions
* @brief Example actions available.
* @ingroup example
*
* This API provides certain actions as an example.
*
* @param [in] repeat Number of times to do nothing.
*
* @retval TRUE Successfully did nothing.
* @retval FALSE Oops, did something.
*
* Example Usage:
* @code
* example_nada(3); // Do nothing 3 times.
* @endcode
*/
boolean example(int repeat);
</code></pre>
http://stackoverflow.com/questions/753440/should-network-packet-payload-data-be-aligned-on-proper-boundries/753487#7534871Answer by Andrew Johnson for Should network packet payload data be aligned on proper boundries?Andrew Johnson2009-04-15T20:08:56Z2009-04-15T20:08:56Z<p>You practically can't use a class or structure for this if you want any sort of portability. In your example, the ints may be 32-bit or 64-bit depending on your system. You're most likely using a little endian machine, but the older Apple macs are big endian. The compiler is free to pad as it likes too.</p>
<p>In general you'll need a method that writes each field to the buffer a byte at a time, after ensuring you get the byte order right with n2hll, n2hl or n2hs.</p>
http://stackoverflow.com/questions/729968/data-type-of-uintptrt/730209#7302090Answer by Andrew Johnson for Data type of uintptr_tAndrew Johnson2009-04-08T14:12:46Z2009-04-08T14:12:46Z<p>The uintptr_t is designed to allow you to have a type that can be either a uint or a pointer. This is the sort of thing we used to do when all uints and pointers were 32-bits. Now we have LP64 (uints and pointers are 64-bits) and LLP64 (uints 32-bit and pointers are 64-bits) etc, our legacy code doesn't work.</p>
<p>Enter the uintptr_t, it can be both and will be long enough to cope with either a uint or a pointer on whatever system you're using.</p>
http://stackoverflow.com/questions/248243/how-to-solve-this-compatibility-problem-regarding-large-file-support/248309#2483092Answer by Andrew Johnson for How to solve this compatibility-problem regarding large file support?Andrew Johnson2008-10-29T20:33:10Z2008-10-29T20:33:10Z<p>You could add an API to the library to return the sizeof(off_t) and then check it from the client. Alternatively the library could require every app to provide the API in order to successfully link:</p>
<p>library.c:</p>
<pre><code>size_t lib_get_off_t_size (void)
{
return (sizeof(off_t));
}
</code></pre>
<p>client.c (init_function):</p>
<pre><code>if (lib_get_off_t_size() != sizeof(off_t) {
printf("Oh no!\n");
exit();
}
</code></pre>
<p>If the library has an init function then you could put the check there, but then the client would have to supply the API to get the size of its off_t, which generally isn't how libraries work.</p>
http://stackoverflow.com/questions/226377/operating-system-compile-time/226488#2264881Answer by Andrew Johnson for Operating System compile timeAndrew Johnson2008-10-22T16:06:18Z2008-10-22T16:06:18Z<p>How long it takes will really depend on the build set up, I really doubt that the Vista engineers need a day to build the code even if it would take a day on a single machine.</p>
<p>I work on a project of a similar scale and until recently builds could take up to 12 hours on a shared multiprocessor sun server. Since we have switched to a Linux based build farm a clean build can happen in less than an hour and rebuilds in a few minutes.</p>
<p>It would be interesting to know what set up the Vista guys are using, Linux based build farms seem unlikely... maybe Windows based build farms then :)</p>
http://stackoverflow.com/questions/219420/how-would-you-improve-this-algorithm-c-string-reversal/220096#2200960Answer by Andrew Johnson for How would you improve this algorithm? (c string reversal)Andrew Johnson2008-10-20T21:55:59Z2008-10-20T21:55:59Z<p>String reversed in place, no temp variable.</p>
<pre><code>static inline void
byteswap (char *a, char *b)
{
*a = *a^*b;
*b = *a^*b;
*a = *a^*b;
}
void
reverse (char *string)
{
char *end = string + strlen(string) - 1;
while (string < end) {
byteswap(string++, end--);
}
}
</code></pre>
http://stackoverflow.com/questions/219914/what-use-are-const-pointers-as-opposed-to-pointers-to-const-objects/219973#21997313Answer by Andrew Johnson for What use are const pointers (as opposed to pointers to const objects)?Andrew Johnson2008-10-20T21:19:32Z2008-10-20T21:19:32Z<p>It allows you to protect the pointer from being changed. This means you can protect assumptions you make based on the pointer never changing or from unintentional modification, for example:</p>
<pre><code>int* const p = &i;
...
p++; /* Compiler error, oops you meant */
(*p)++; /* Increment the number */
</code></pre>
http://stackoverflow.com/questions/180710/doesnt-the-ability-to-cast-defeat-the-purpose-of-typed-variables/180721#1807211Answer by Andrew Johnson for Doesn't the ability to cast defeat the purpose of typed variables?Andrew Johnson2008-10-07T22:41:56Z2008-10-07T22:41:56Z<p>Yes, strong types allow the compiler to do lots of checks for you.</p>
<p>No, allowing casting doesn't stop that being useful. The point is that the rare occasions when you need to do a cast, it is explicit. The programmer has to make a decision to make the cast and can be careful about it. Casting is a useful tool, like many powerful tools it should be used with care.</p>
http://stackoverflow.com/questions/72098/any-better-way-to-create-mediawiki-numbered-lists/72222#722221Answer by Andrew Johnson for Any better way to create MediaWiki numbered lists?Andrew Johnson2008-09-16T13:34:51Z2008-10-07T13:58:38Z<p>There are a couple of options, but you can start an ordered list from an arbitrary number like this:</p>
<pre>
#Item1
Something
<ol start="2">
#Item2
</ol>
</pre>
<p>You can also use "#:" if you don't mind "Something" being indented a lot:</p>
<pre>
#Item1
#:
#: Something
#:
#:Item2
</pre>
<p>There are quite a lot of options with lists, you can find more info on <a href="http://en.wikipedia.org/wiki/Help:List" rel="nofollow">Wiki's Help Pages:List</a>.</p>
http://stackoverflow.com/questions/161838/is-it-possible-to-unlisten-on-a-socket/169005#1690051Answer by Andrew Johnson for Is it possible to unlisten on a socket ?Andrew Johnson2008-10-03T21:40:38Z2008-10-03T21:40:38Z<p>Some socket libraries allow you to specifically reject incoming connections. For example: <a href="http://www.gnu.org/software/commoncpp/docs/refman/html/class_t_c_p_socket.html" rel="nofollow">GNU's CommonC++: TCPsocket Class</a> has a <a href="http://www.gnu.org/software/commoncpp/docs/refman/html/class_t_c_p_socket.html#a2" rel="nofollow"><em>reject</em></a> method.</p>
<p>BSD Sockets doesn't have this functionality. You can <em>accept</em> the connection and then immediately <em>close</em> it, while leaving the socket open:</p>
<pre><code>while (running) {
int i32ConnectFD = accept(i32SocketFD, NULL, NULL);
while (noConnectionsPlease) {
shutdown(i32ConnectFD, 2);
close(i32ConnectFD);
break;
}
}
</code></pre>
http://stackoverflow.com/questions/153953/glibc-debugging-memory-leaks-how-to-interpret-output-of-mtrace/168915#1689151Answer by Andrew Johnson for GLIBC: debugging memory leaks: how to interpret output of mtrace()Andrew Johnson2008-10-03T21:07:33Z2008-10-03T21:07:33Z<p>The function that is allocating the memory is being called more than once. The caller address points to the code that did the allocation, and that code is simply being run more than once.</p>
<p>Here is an example in C:</p>
<pre><code>void *allocate (void)
{
return (malloc(1000));
}
int main()
{
mtrace();
allocate();
allocate();
}
</code></pre>
<p>The output from mtrace is:</p>
<pre>
Memory not freed:
-----------------
Address Size Caller
0x0000000000601460 0x3e8 at 0x4004f6
0x0000000000601850 0x3e8 at 0x4004f6
</pre>
<p>Note how the caller address is identical? This is why the mtrace analysing script is saying they are identical, because the same bug is being seen more that once, resulting in several memory leaks.</p>
<p>Compiling with debugs flags (-g) is helpful if you can:</p>
<pre>
Memory not freed:
-----------------
Address Size Caller
0x0000000000601460 0x3e8 at /home/andrjohn/development/playground/test.c:6
0x0000000000601850 0x3e8 at /home/andrjohn/development/playground/test.c:6
</pre>
http://stackoverflow.com/questions/136443/why-doesnt-ie7-copy-precode-blocks-to-the-clipboard-correctly/159582#15958221Answer by Andrew Johnson for Why doesn't IE7 copy <pre><code> blocks to the clipboard correctly?Andrew Johnson2008-10-01T20:36:04Z2008-10-01T20:36:04Z<p>It seems that this is a known bug for IE6 and prettify.js has a workaround for it. Specifically it replaces the BR tags with '\r\n'.</p>
<p>By modifying the check to allow for IE6 or 7 then the cut-and-paste will work correctly from IE7, but it will render with a <em>newline</em> followed by a <em>space</em>. By checking for IE7 and providing just a '\r' instead of a '\r\n' it will continue to cut-and-paste and render correctly.</p>
<p>Add this code to prettify.js:</p>
<pre><code>function _pr_isIE7() {
var isIE7 = navigator && navigator.userAgent &&
/\bMSIE 7\./.test(navigator.userAgent);
_pr_isIE7 = function () { return isIE7; };
return isIE7;
}
</code></pre>
<p>and then modify the prettyPrint function as follows:</p>
<pre><code> function prettyPrint(opt_whenDone) {
var isIE6 = _pr_isIE6();
+ var isIE7 = _pr_isIE7();
</code></pre>
<p>...</p>
<pre><code>- if (isIE6 && cs.tagName === 'PRE') {
+ if ((isIE6 || isIE7) && cs.tagName === 'PRE') {
var lineBreaks = cs.getElementsByTagName('br');
+ var newline;
+ if (isIE6) {
+ newline = '\r\n';
+ } else {
+ newline = '\r';
+ }
for (var j = lineBreaks.length; --j >= 0;) {
var lineBreak = lineBreaks[j];
lineBreak.parentNode.replaceChild(
- document.createTextNode('\r\n'), lineBreak);
+ document.createTextNode(newline), lineBreak);
}
</code></pre>
<p>You can see a <a href="http://andrjohn.myzen.co.uk/soTest/136443.html" rel="nofollow">working example here</a>.</p>
<p><strong>Note:</strong> I haven't tested the original workaround in IE6, so I'm guessing it renders without the space caused by the '\n' that is seen in IE7, otherwise the fix is simpler.</p>
http://stackoverflow.com/questions/136443/why-doesnt-ie7-copy-precode-blocks-to-the-clipboard-correctly/136698#1366981Answer by Andrew Johnson for Why doesn't IE7 copy <pre><code> blocks to the clipboard correctly?Andrew Johnson2008-09-25T22:52:08Z2008-09-29T12:38:39Z<p>This looks like a bug in IE, <em>BR</em> tags inside the <em>PRE</em> or <em>CODE</em> are not being converted into newlines in the plain text copy buffer. The rich text copy buffer is fine, so the paste works as expected for applications like <em>wordpad</em>.</p>
<p>The prettify script, that colours the code, removes <strong>all</strong> the whitespace and replaces it with HTML tags for spaces and new lines. The generated code looks something like this:</p>
<pre>
<pre><code>code<br/>&nbsp;&nbsp;code<br/>&nbsp;&nbsp;code<br/>code</code></pre>
</pre>
<p>The <em>PRE</em> and <em>CODE</em> tags are rendered by defaults with the CSS style of <strong><em>{whitespace: pre}</em></strong>. In this case, IE is failing to turn the <em>BR</em> tags into newlines. It would work on your original HTML because IE will successfully turn actual newlines into newlines.</p>
<p>In order to fix it you have 3 options. (I am presuming you want nice HTML <strong>and</strong> the ability to work well with and without javascript enabled on the client):</p>
<ol>
<li><p>You could place the code inside a normal div and use CSS to render it using <strong><em>{whitespace: pre}</em></strong>. This is a simple solution, although might not please an HTML markup purist.</p></li>
<li><p>You could have two copies of the code, one using proper <em>PRE</em> / <em>CODE</em> tags and another in a normal div. In your CSS you hide the normal div. Using javascript you prettify the normal div and hide the pre/code version.</p></li>
<li><p>Modify the prettify script to recognise that it is acting on a <em>PRE</em> or <em>CODE</em> element and to not replace the whitespace in that event.</p></li>
</ol>
<p><hr /></p>
<p><strong>Notes:</strong></p>
<ul>
<li><p>What is important is not the HTML in your source, but the HTML that is generated after the prettify script has ran on it.</p></li>
<li><p>This bug is still present even if the white-space mode of the <em>PRE</em> is changed to <em>normal</em> using CSS.</p></li>
</ul>
http://stackoverflow.com/questions/140217/how-do-you-use-gdb-to-debug-your-code/140316#1403162Answer by Andrew Johnson for How do you use gdb to debug your code?Andrew Johnson2008-09-26T15:41:19Z2008-09-26T15:50:30Z<p>In general you find something that isn't how it should be, and work backwards until you understand why.</p>
<p>The most obvious is the most useful: Setting a breakpoint on a function or line number and walking through the code line by line.</p>
<p>Another handy tip is to have show functions for all your structures/objects even if they are never used in your program, because you can run these functions from within gdb:</p>
<pre><code>gdb> p show_my_struct(struct)
My custom display of Foo:
...
</code></pre>
<p>Watchpoints can be really handy too, but may slow down your program a lot. These break the flow when the value of a variable or address changes.:</p>
<pre><code>gdb> watch foo
Watchpoint4: foo
gdb>
</code></pre>
http://stackoverflow.com/questions/139723/which-javascript-framework-is-the-simplest-and-most-powerful/139798#1397986Answer by Andrew Johnson for Which Javascript Framework is the simplest and most powerful?Andrew Johnson2008-09-26T14:17:08Z2008-09-26T14:53:35Z<p>See also (other related questions):</p>
<ul>
<li><a href="http://stackoverflow.com/questions/35050/comparison-of-javascript-libraries">Comparison of Javascript libraries</a></li>
<li><a href="http://stackoverflow.com/questions/913/what-javascript-library-would-you-choose-for-a-new-project-and-why">What JavaScript library would you choose for a new project and why?</a></li>
<li><a href="http://stackoverflow.com/questions/68114/general-purpose-javascript-library-for-building-rich-internet-applications">What is the single most useful general purpose javascript library for rich internet apps?</a></li>
<li><a href="http://stackoverflow.com/questions/70946/which-javascript-framework-is-best-for-web-development">Which JavaScript framework is best for web development?</a></li>
<li><a href="http://stackoverflow.com/questions/78570/which-javascript-library-is-recommended-for-neat-ui-effects">Which JavaScript library is recommended for neat UI effects?</a></li>
<li><a href="http://stackoverflow.com/questions/74048/what-is-the-best-lightweight-javascript-framework">What is the best lightweight javascript framework?</a></li>
<li><a href="http://stackoverflow.com/questions/53997/any-good-ajax-framework-for-google-app-engine-apps">Any good AJAX framework for Google App Engine apps?</a></li>
</ul>
http://stackoverflow.com/questions/51667/best-tips-for-documenting-code-using-doxygen/52727#527273Answer by Andrew Johnson for Best Tips for documenting code using doxygen?Andrew Johnson2008-09-09T19:42:46Z2008-09-19T23:36:36Z<p>For complex projects it may be useful to have a separate file for module management, which controls the groups and subgroups. The whole hierarchy can be in one place and then each file can simply stuff to the child groups. e.g.:</p>
<pre><code>/**
* @defgroup example Top Level Example Group
* @brief The Example module.
*
* @{
*/
/**
* @defgroup example_child1 First Child of Example
* @brief 1st of 2 example children.
*/
/**
* @defgroup example_child2 Second Child of Example
* @brief 2nd of 2 example children.
*/
// @}
</code></pre>
<p>Simply including the definition of a group within the { } of another group makes it a child of that group. Then in the code and header files functions can just be tagged as part of whatever group they are in and it all just works in the finished documentation. It makes refactoring the documentation to match the refactor code much easier.</p>
http://stackoverflow.com/questions/106298/stack-overflow-problem/106306#1063066Answer by Andrew Johnson for Stack overflow problem!Andrew Johnson2008-09-19T23:08:42Z2008-09-19T23:24:59Z<p>It may help if you post some code. Edit the question to include the problem function and the error.</p>
<p>Meanwhile, here's a very generic answer:</p>
<p>The two principle causes of a stack overflow are 1) a recursive function, or 2) the allocation of a large number of local variables.</p>
<p><strong>Recursion</strong></p>
<p>if you're function calls itself, like this:</p>
<pre><code>int recurse(int number) {
return (recurse(number));
}
</code></pre>
<p>Since local variables and function arguments are stored on the stakc, then it will in fill the stack and cause a stack overflow.</p>
<p><strong>Large local variables</strong></p>
<p>If you try to allocate a large array of local variables then you can overflow the stack in one easy go. A function like this may cause the issue:</p>
<pre><code>void hugeStack (void) {
unsigned long long reallyBig[100000000][1000000000];
...
}
</code></pre>
<p>There is quite a detailed answer to this <a href="http://stackoverflow.com/questions/26158/how-does-a-stack-overflow-occur-and-how-do-you-prevent-it">similar question</a>.</p>
http://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code/104857#10485710Answer by Andrew Johnson for How do you count your Lines of Code?Andrew Johnson2008-09-19T19:36:12Z2008-09-19T19:36:12Z<p>There's a perl program called <a href="http://cloc.sourceforge.net/" rel="nofollow">CLOC</a> that you can use. It is also available as a windows binary:</p>
<blockquote>
<p>cloc counts blank lines, comment lines, and physical lines of source code in many programming languages. ... cloc is known to run on many flavors of Linux, AIX, Solaris, IRIX, z/OS, and Windows. (To run the Perl source version of cloc on Windows one needs ActiveState Perl 5.6.1 or higher, or Cygwin installed. Alternatively one can use the Windows binary of cloc generated with perl2exe to run on Windows computers that have neither Perl nor Cygwin.)</p>
</blockquote>
<p>It can produce a lot of statistics, depending on your code base, but most people will use less languages that their example:</p>
<pre>
Unix> cloc --sum-reports --report_file=script_lang perl-5.8.8.txt python-2.4.2.txt
Wrote script_lang.lang
Wrote script_lang.file
Unix> cat script_lang.lang
http://cloc.sourceforge.net v 0.72
-------------------------------------------------------------------------------
Language files blank comment code scale 3rd gen. equiv
-------------------------------------------------------------------------------
C 409 46920 35958 383652 x 0.77 = 295412.04
Python 1605 55998 31886 309549 x 4.20 = 1300105.80
Perl 1576 74568 89136 220919 x 4.00 = 883676.00
C/C++ Header 280 12169 26366 88089 x 1.00 = 88089.00
Bourne Shell 146 5201 7428 52115 x 3.81 = 198558.15
Lisp 4 1120 2291 9799 x 1.25 = 12248.75
Make 17 1092 939 5348 x 2.50 = 13370.00
Teamcenter def 10 144 88 3163 x 1.00 = 3163.00
HTML 22 516 2 2769 x 1.90 = 5261.10
yacc 2 125 72 1047 x 1.51 = 1580.97
XML 2 103 32 894 x 1.90 = 1698.60
Objective C 6 102 19 704 x 2.96 = 2083.84
C++ 4 104 215 451 x 1.51 = 681.01
DOS Batch 14 93 73 387 x 0.63 = 243.81
Expect 1 0 0 60 x 2.00 = 120.00
Java 2 6 1 23 x 1.36 = 31.28
sed 1 0 1 2 x 4.00 = 8.00
-------------------------------------------------------------------------------
SUM: 4101 198261 194507 1078971 x 2.60 = 2806331.35
-------------------------------------------------------------------------------
</pre>
http://stackoverflow.com/questions/104475/how-to-explain-complex-technical-problems-to-non-technical-clients/104498#1044982Answer by Andrew Johnson for How to explain complex technical problems to non-technical clientsAndrew Johnson2008-09-19T18:52:10Z2008-09-19T18:52:10Z<p>Try to find a good analogy that they can relate to, but works well for whatever you're trying to explain. It's not always easy, but works well if you can find one.</p>
<p>For me, "things" always turn into "people" with various personalities.</p>
http://stackoverflow.com/questions/96196/when-are-c-macros-beneficial/96942#969420Answer by Andrew Johnson for When are C++ macros beneficial?Andrew Johnson2008-09-18T21:03:34Z2008-09-18T21:03:34Z<p>You can use #defines to help with debugging and unit test scenarios. For example, create special logging variants of the memory functions and create a special memlog_preinclude.h:</p>
<pre><code>#define malloc memlog_malloc
#define calloc memlog calloc
#define free memlog_free
</code></pre>
<p>Compile you code using:</p>
<pre><code>gcc -Imemlog_preinclude.h ...
</code></pre>
<p>An link in your memlog.o to the final image. You now control malloc, etc, perhaps for logging purposes, or to simulate allocation failures for unit tests.</p>
http://stackoverflow.com/questions/96196/when-are-c-macros-beneficial/96803#968032Answer by Andrew Johnson for When are C++ macros beneficial?Andrew Johnson2008-09-18T20:50:04Z2008-09-18T20:50:04Z<p>I occasionally use macros so I can define information in one place, but use it in different ways in different parts of the code. It's only slightly evil :)</p>
<p>For example, in "field_list.h":</p>
<pre><code>/*
* List of fields, names and values.
*/
FIELD(EXAMPLE1, "first example", 10)
FIELD(EXAMPLE2, "second example", 96)
FIELD(ANOTHER, "more stuff", 32)
...
#undef FIELD
</code></pre>
<p>Then for a public enum it can be defined to just use the name:</p>
<pre><code>#define FIELD(name, desc, value) FIELD_ ## name,
typedef field_ {
#include "field_list.h"
FIELD_MAX
} field_en;
</code></pre>
<p>And in a private init function, all the fields can be used to populate a table with the data:</p>
<pre><code>#define FIELD(name, desc, value) \
table[FIELD_ ## name].desc = desc; \
table[FIELD_ ## name].value = value;
#include "field_list.h"
</code></pre>
http://stackoverflow.com/questions/85699/whats-the-best-way-to-model-recurring-events-in-a-calendar-application/85775#857750Answer by Andrew Johnson for What's the best way to model recurring events in a calendar application?Andrew Johnson2008-09-17T17:47:11Z2008-09-17T17:47:11Z<p>Store the events as repeating and dynamically display them, however allow the recurring event to contain a list of specific events that could override the default information on a specific day.</p>
<p>When you query the recurring event it can check for a specific override for that day.</p>
<p>If a user makes changes, then you can ask if he wants to update for all instances (default details) or just that day (make a new specific event and add it to the list).</p>
<p>If a user asks to delete all recurrences of this event you also have the list of specifics to hand and can remove them easily.</p>
<p>The only problematic case would be if the user wants to update this event and all future events. In which case you'll have to split the recurring event into two. At this point you may want to consider linking recurring events in some way so you can delete them all.</p>
http://stackoverflow.com/questions/70614/gnu-screen-survival-guide/70985#709857Answer by Andrew Johnson for GNU Screen Survival GuideAndrew Johnson2008-09-16T10:20:25Z2008-09-17T17:36:28Z<p>You can remap the escape key from ctrl-A to be another key of your choice, so if you do use it for something else, e.g. to go to the beginning of the line in bash, you just need to add a line to your ~/.screenrc file. To make it ^b or ^B use:</p>
<pre><code>escape ^bB
</code></pre>
<p>From the command line, use names sessions to keep multiple sessions under control. I use one session per task, each with multiple tabs:</p>
<pre>
screen -ls lists your current screen sessions
screen -S <name> creates a new screen session called name
screen -r <name> connects to the named screen sessions
</pre>
<p>When using screen you only need a few commands:</p>
<pre>
^A c create a new shell
^A [0-9] switch shell
^A k kill the current shell
^A d disconnect from screen
^A ? show the help
</pre>
<p>An excellent quick reference can be found <a href="http://aperiodic.net/screen/quick_reference" rel="nofollow">here</a>. Worth bookmarking.</p>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62399#623992Answer by Andrew Johnson for Stack overflow code golfAndrew Johnson2008-09-15T12:37:25Z2008-09-17T13:40:17Z<pre><code>a{return a*a;};
</code></pre>
<p>Compile with:</p>
<pre><code>gcc -D"a=main()" so.c
</code></pre>
<p>Expands to:</p>
<pre><code>main() {
return main()*main();
}
</code></pre>
http://stackoverflow.com/questions/76988/how-is-it-possible-to-run-a-traceroute-like-program-without-needing-root-privileg/77310#773100Answer by Andrew Johnson for How is it possible to run a traceroute-like program without needing root privileges?Andrew Johnson2008-09-16T21:26:50Z2008-09-16T21:26:50Z<p><strong>ping</strong> and <strong>traceroute</strong> use the ICMP protocol. Like UDP and TCP this is accessible through the normal sockets API. Only UDP and TCP port numbers less than 1024 are protected from use, other than by root. ICMP is freely available to all users.</p>
<p>If you really want to see how ping and traceroute work you can download an example C code implementation for them from <a href="http://www.codeproject.com/KB/IP/Ping_and_Traceroute.aspx" rel="nofollow">CodeProject</a>.</p>
<p>In short, they simple open an ICMP socket, and traceroute alters the increments the TTL using setsockopt until the target is reached.</p>
http://stackoverflow.com/questions/52598/code-walkthrough-vs-code-review/52781#527813Answer by Andrew Johnson for Code Walkthrough vs. Code ReviewAndrew Johnson2008-09-09T20:05:24Z2008-09-16T20:42:28Z<p>Sometimes code can be so complex a normal code review isn't sufficient to convince all the reviewers that some code is "correct", i.e. it will <em>always</em> work. If it can be coded in a clearer way, then that's fine, but sometimes you're really cool, really fast, optimisation is just too much for mere mortals, even with a comment block bigger than the code.</p>
<p>This is where the code walkthrough comes in. For most people always walking all of the code would be a waste of time, but walking through certain parts can be very beneficial.</p>
<p>My team has had some success with the following method: first do a normal code review - for us this means one or more reviewers go through the new code or change sets and prepares his comments and questions. Then we have a discussion, in person or via email, during which any reviewer can request a walkthrough, usually of a specific section of code or action. If it's a proper review meeting with multiple reviewers then we'll usually finish that first.</p>
<p>Later, we sit down in front of the same screen/projection, and fire up the program using gdb. We trigger the code in question and actually go through the running code line by line, forcing error conditions if necessary. Usually the reviewer is in control (at the keyboard), asking questions, checking variable values etc. It can be time consuming, but on the tricky bits it's usually worth it.</p>
<p>NB: Using VNC and the phone is almost as good too.</p>
<p>Only when the reviewer is happy with the code does he sign it off. That might mean a walkthough, additional comments, adding more unit tests, whatever.</p>
http://stackoverflow.com/questions/70753/open-source-radix-mtrie-implementation-in-c/71063#710631Answer by Andrew Johnson for Open-source radix/mtrie implementation in C?Andrew Johnson2008-09-16T10:32:48Z2008-09-16T10:32:48Z<p>There is a radix-tree implementation available under the GNU General Public License version 2, or (at your option) any later version: </p>
<p><a href="http://www.gelato.unsw.edu.au/lxr/source/lib/radix-tree.c" rel="nofollow">http://www.gelato.unsw.edu.au/lxr/source/lib/radix-tree.c</a></p>
http://stackoverflow.com/questions/51667/best-tips-for-documenting-code-using-doxygen/895919#895919Comment by Andrew Johnson on Best Tips for documenting code using doxygen?Andrew Johnson2009-06-04T21:28:36Z2009-06-04T21:28:36ZYeah, I had that in the example template. It's especially useful in the comment that concerns a group of APIs to show how they work together.http://stackoverflow.com/questions/140217/how-do-you-use-gdb-to-debug-your-code/140316#140316Comment by Andrew Johnson on How do you use gdb to debug your code?Andrew Johnson2009-04-08T14:02:57Z2009-04-08T14:02:57ZBecause you can decode the flags field, run validation code, etc. It's not simply a dump of the values of the structure, you instead can dump the meaning, including relevant objects that are pointed to. For example, if obj1 has a list of obj2s, then you could nest a show of all the obj2s in there.http://stackoverflow.com/questions/51667/best-tips-for-documenting-code-using-doxygen/445009#445009Comment by Andrew Johnson on Best Tips for documenting code using doxygen?Andrew Johnson2009-03-17T15:01:27Z2009-03-17T15:01:27ZYes, using nested groups was what I was talking about with one of my answers. I've been experimenting with using a separate file for the hierarchy management, which seems to work well.http://stackoverflow.com/questions/51667/best-tips-for-documenting-code-using-doxygen/444987#444987Comment by Andrew Johnson on Best Tips for documenting code using doxygen?Andrew Johnson2009-03-17T14:59:21Z2009-03-17T14:59:21ZWe try not to have too large a public API and we have strong code reviews so people are following the templates and the comments are reasonable. The templates we're using aren't as heavyweight as the one above. One big block per API header and a lightweight one per function.http://stackoverflow.com/questions/219420/how-would-you-improve-this-algorithm-c-string-reversal/220096#220096Comment by Andrew Johnson on How would you improve this algorithm? (c string reversal)Andrew Johnson2008-10-20T22:48:17Z2008-10-20T22:48:17ZGood point. I should also check the string isn't NULL, but I wanted to keep the example lean.http://stackoverflow.com/questions/219914/what-use-are-const-pointers-as-opposed-to-pointers-to-const-objects/219932#219932Comment by Andrew Johnson on What use are const pointers (as opposed to pointers to const objects)?Andrew Johnson2008-10-20T21:38:42Z2008-10-20T21:38:42ZWon't SomeOtherFunc have to be declared with a const pointer argument for this to compile? And won't that also be how the compiler would know that SomeOtherFunc won't change the pointer? So declaring the local pointer as const doesn't seem to help.http://stackoverflow.com/questions/219914/what-use-are-const-pointers-as-opposed-to-pointers-to-const-objects/219973#219973Comment by Andrew Johnson on What use are const pointers (as opposed to pointers to const objects)?Andrew Johnson2008-10-20T21:35:01Z2008-10-20T21:35:01ZIt's not a trick :). I try to use const where possible with function arguments so that it is clear that the function won't modify the string or structure being passed in.http://stackoverflow.com/questions/136443/why-doesnt-ie7-copy-precode-blocks-to-the-clipboard-correctly/159582#159582Comment by Andrew Johnson on Why doesn't IE7 copy <pre><code> blocks to the clipboard correctly?Andrew Johnson2008-10-09T21:40:46Z2008-10-09T21:40:46ZI notice you haven't put a fix into production yet. Let me know how the testing went when you get around it it.http://stackoverflow.com/questions/127916/is-programming-style-important-how-importantComment by Andrew Johnson on Is Programming Style important? How Important?Andrew Johnson2008-10-05T21:08:21Z2008-10-05T21:08:21ZWhen the 31st answer is posted the question and all answers go into wiki mode. It's explained in podcast #23.http://stackoverflow.com/questions/172516/a-stack-overflow-like-application-for-your-intranet/172528#172528Comment by Andrew Johnson on A Stack Overflow-like application for your intranetAndrew Johnson2008-10-05T20:31:15Z2008-10-05T20:31:15ZSO has administrators (moderators), they are marked with a blue star. See Jeff Atwood's profile.http://stackoverflow.com/questions/107668/what-do-you-use-when-you-need-reliable-udp/107783#107783Comment by Andrew Johnson on What do you use when you need reliable UDP?Andrew Johnson2008-10-05T20:10:41Z2008-10-05T20:10:41ZSCTP has many great features (such as multihoming) and with the partial reliability extension (RFC 3758) it's an incredibly flexible option. It's included in the latest linux kernel versions, but for windows you'll have to install your own SCTP stack.http://stackoverflow.com/questions/161838/is-it-possible-to-unlisten-on-a-socket/169005#169005Comment by Andrew Johnson on Is it possible to unlisten on a socket ?Andrew Johnson2008-10-05T19:59:44Z2008-10-05T19:59:44ZIt isn't perfect, but, as far as I know, with BSD sockets there is no way to unlisten without losing the socket, and no way to send a close without first getting that socket handle for the connection with an accept. If this doesn't work, then Dave will need a new socket library.http://stackoverflow.com/questions/136443/why-doesnt-ie7-copy-precode-blocks-to-the-clipboard-correctly/155826#155826Comment by Andrew Johnson on Why doesn't IE7 copy <pre><code> blocks to the clipboard correctly?Andrew Johnson2008-10-01T20:37:24Z2008-10-01T20:37:24ZThis would probably work if you used a '\r' instead of a '\n'. I've provided a more complex answer that appears to work.http://stackoverflow.com/questions/136443/why-doesnt-ie7-copy-precode-blocks-to-the-clipboard-correctly/136698#136698Comment by Andrew Johnson on Why doesn't IE7 copy <pre><code> blocks to the clipboard correctly?Andrew Johnson2008-09-29T16:44:53Z2008-09-29T16:44:53ZAre you sure? I can't test it until later as I don't have a windows install at work, however, on Friday I did try setting the pre and code to white-space:normal and I still got the bug.http://stackoverflow.com/questions/136443/why-doesnt-ie7-copy-precode-blocks-to-the-clipboard-correctly/136586#136586Comment by Andrew Johnson on Why doesn't IE7 copy <pre><code> blocks to the clipboard correctly?Andrew Johnson2008-09-29T16:36:53Z2008-09-29T16:36:53ZYeah, I notice the script is just pasted into SO's jquery.js script.