User Chris Lutz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T13:07:01Z http://stackoverflow.com/feeds/user/60777 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1815011/why-does-my-method-print-isobjectnamescalar0x1289df0/1815018#1815018 9 Answer by Chris Lutz for Why does my method print "isObjectName=SCALAR(0x1289df0)"? Chris Lutz 2009-11-29T08:36:09Z 2009-11-29T08:36:09Z <p>This:</p> <pre><code>$object-&gt;Print("Print this text"); </code></pre> <p>Is (mostly) equivalent to this:</p> <pre><code>ObjectName::Print($object, "Print this text"); </code></pre> <p>The first argument to any method is <code>$self</code>, which is a blessed reference and looks all ugly when you print it like that. You want to print the second argument. See <a href="http://perldoc.perl.org/perlboot.html" rel="nofollow">perlboot</a> and <a href="http://perldoc.perl.org/perltoot.html" rel="nofollow">perltoot</a> for more info.</p> http://stackoverflow.com/questions/1807194/regular-expression-tools/1807221#1807221 0 Answer by Chris Lutz for Regular Expression Tools Chris Lutz 2009-11-27T07:17:20Z 2009-11-27T07:17:20Z <p>I see Ruby and Python answers, so I'll chip in. Does no one do it old school anymore?</p> <pre><code>$ perl -pe 'print if /test regex/' </code></pre> http://stackoverflow.com/questions/1787875/question-on-extern-specifier-in-c/1787929#1787929 0 Answer by Chris Lutz for Question on extern specifier in C Chris Lutz 2009-11-24T05:09:45Z 2009-11-24T05:09:45Z <p>In C, you could do this:</p> <pre><code>// one.c static int x; int *one_x = &amp;x; // two.c static int x; int *two_x = &amp;x; // three.c extern int *one_x; extern int *two_x; </code></pre> <p>Now you can refer unambiguously to the <code>x</code> in file <code>one.c</code> or the <code>x</code> in file <code>two.c</code> from the file <code>three.c</code>.</p> <p>However, this might be a bit more effort than it's worth. Perhaps you should be coming up with more descriptive names for your global variables instead of toying around with theoretical ways to circumvent C's single global namespace.</p> http://stackoverflow.com/questions/1759418/how-do-i-find-which-elements-in-one-array-arent-in-another/1759523#1759523 3 Answer by Chris Lutz for How do I find which elements in one array aren't in another? Chris Lutz 2009-11-18T22:13:33Z 2009-11-18T22:13:33Z <p>That's some pretty clever code you've got there. Your code is more or less identical to what the Perl FAQ says. I might be tempted to do this, however:</p> <pre><code>my %tmp = map { $_ =&gt; 1 } @array2; my @diff = grep { not exists $tmp{$_} } @array1; </code></pre> <p>This gets everything in <code>@array1</code> that's not in <code>@array2</code>, but avoiding all of those out-of-style looping constructs (yay for functional programming). Though what I'd <em>really</em> do is this:</p> <pre><code>sub comp (\@\@) { my %t = map { $_ =&gt; 1 } @{$_[1]}; return grep { not exists $t{$_} } @{$_[0]}; } </code></pre> <p>Then you can just do:</p> <pre><code>my @diff = comp(@array1, @array2); # get items in @array1 not in @array2 @diff = comp(@arraty2, @array1); # vice versa </code></pre> <p>Or you can go to <a href="http://search.cpan.org/~jkeenan/List-Compare-0.37/lib/List/Compare/Functional.pm" rel="nofollow">CPAN</a>. <code>List::Compare::Functional::complement()</code> does what you want, though the syntax is reversed.</p> http://stackoverflow.com/questions/1759057/how-to-check-if-structs-are-initialised-or-not/1759130#1759130 7 Answer by Chris Lutz for How to check if structs are initialised or not Chris Lutz 2009-11-18T21:14:50Z 2009-11-18T21:28:55Z <p>C doesn't have <code>null</code>, it has <code>NULL</code>. So try this:</p> <pre><code>dict* NewDictionary(void) { return calloc(sizeof(dict)); } </code></pre> <p>This fixes a few problems:</p> <ol> <li>You were leaving <code>value</code> and <code>key</code> uninitialized, so they could hold random garbage. Using <code>calloc()</code> will initialize everything to 0, which in pointer context is <code>NULL</code>. It won't even take that much more processing time.</li> <li>You weren't returning anything. This is undefined behavior. If you function ends without a <code>return</code> statement, it's only by sheer luck that anything will be returned.</li> <li>You were using <code>dict_pair</code> instead of <code>struct dict_pair</code>. In C++, <code>struct</code> names are in the regular type namespace, i.e. <code>t x = { 0 };</code> is valid C++, but in C you'd need to say <code>struct t x = { 0 };</code>.</li> <li>You weren't checking the return value of <code>malloc()</code> (now <code>calloc()</code> but same rules apply). If there isn't enough memory, <code>calloc()</code> returns <code>NULL</code>. I'd hate to dereference a <code>NULL</code> pointer on accident. We don't have to check the return value here because I've done away with all the intermediate steps - <code>calloc()</code> is enough for us.</li> </ol> <p>Note that <code>calloc()</code> is slightly less portable. Even though the standard does require that <code>void *p = 0</code> sets the pointer to a null pointer, it doesn't require that the null pointer be "all bits set to zero", which is what <code>calloc()</code> technically does. If you don't want to use <code>calloc()</code> for this reason, here's a version that does the same thing with <code>malloc()</code>:</p> <pre><code>dict* NewDictionary(void) { dict *dictionary = malloc(sizeof(dict)); if(dictionary) { dictionary-&gt;head = NULL; dictionary-&gt;tail = NULL; dictionary-&gt;value = NULL; dictionary-&gt;key = NULL; } return dictionary; } </code></pre> <p>Or:</p> <pre><code>dict* NewDictionary(void) { dict *dictionary = malloc(sizeof(dict)); if(dictionary == NULL) return NULL; dictionary-&gt;head = NULL; dictionary-&gt;tail = NULL; dictionary-&gt;value = NULL; dictionary-&gt;key = NULL; return dictionary; } </code></pre> <p>See how much nicer the <code>calloc()</code> version is?</p> <p>As to your second question:</p> <blockquote> <p>Also, can I refer recursively declare the same struct inside the struct?</p> </blockquote> <p>No, you can't do this:</p> <pre><code>struct t { struct t x; } </code></pre> <p>But you <em>can</em> do this (which is what you're doing, and what you want):</p> <pre><code>struct t { struct t *x; } </code></pre> <p>You can have a <em>pointer</em> to a <code>struct</code> inside the <code>struct</code> itself, but you can't have the actual <code>struct</code> inside the <code>struct</code> itself. What you're doing is perfectly legal, because you're using pointers.</p> http://stackoverflow.com/questions/1758564/what-are-function-pointers-used-for-and-how-would-i-use-them/1758683#1758683 0 Answer by Chris Lutz for What are function pointers used for, and how would I use them? Chris Lutz 2009-11-18T20:03:32Z 2009-11-18T20:03:32Z <p>Let's do a <code>map</code>-like function for C.</p> <pre><code>void apply(int *arr, size_t len, int (*func)(int)) { for(size_t i = 0; i &lt; len; i++) arr[i] = func(arr[i]); } </code></pre> <p>That way, we can transform a function that works on integers to work on arrays of integers. We could also do a similar version:</p> <pre><code>void apply_enumerated(int *arr, size_t len, int (*func)(size_t, int)) { for(size_t i = 0; i &lt; len; i++) arr[i] = func(i, arr[i]); } </code></pre> <p>This does the same thing, but allows our function to know which element it's on. We could use this, for example:</p> <pre><code>int cube(int i) { return i * i * i } void print_array(int *array, size_t len, char *sep) { if(sep == NULL) sep = ", "; printf("%d", *array); for(size_t i = 1; i &lt; len; i++) printf("%s%d", sep, array[i]) } #define ARRAY_SIZE(a) (sizeof(a)/sizeof((a)[0])) int main(void) { int array[5] = { 1, 2, 3, 4, 5 }; print_array(array, ARRAY_SIZE(array), NULL); apply(array, ARRAY_SIZE(array), cube); print_array(array, ARRAY_SIZE(array), NULL); return 0; } </code></pre> <p>That code will print:</p> <pre><code>1, 2, 3, 4, 5 1, 8, 27, 64, 125 </code></pre> <p>For our enumeration example:</p> <pre><code>int mult(size_t i, int j) { return i * j } // print_array and ARRAY_SIZE as before int main(void) { int array[5] = { 1, 2, 3, 4, 5 }; print_array(array, ARRAY_SIZE(array), NULL); apply_enumerated(array, ARRAY_SIZE(array), mult); print_array(array, ARRAY_SIZE(array), NULL); return 0; } </code></pre> <p>This prints:</p> <pre><code>1, 2, 3, 4, 5 0, 2, 6, 12, 20 </code></pre> <p>As a more real world example, a string library could have a function that applies a function that operates on single characters to all the characters in the string. An example of such functions are the standard-library <code>toupper()</code> and <code>tolower()</code> functions in <code>ctype.h</code> - we could use this <code>string_apply()</code> function to make a <code>string_toupper()</code> function easily.</p> http://stackoverflow.com/questions/1747154/how-to-return-the-index-of-ascii-char-in-c/1747188#1747188 2 Answer by Chris Lutz for How to return the index of ascii char in C Chris Lutz 2009-11-17T07:33:53Z 2009-11-17T07:33:53Z <p>Note that the C standard doesn't require ASCII, and this code won't work under EBCDIC, but 99% of the time this won't matter.</p> <p>I believe what you're looking for is much simpler than you think. Character literals like <code>'c'</code> and <code>'0'</code> are actualy <code>int</code>s, not <code>char</code>s - they're casted down to <code>char</code> at assignment, and can be just as easily cast back up. So this is what (I think) you want:</p> <pre><code>#include &lt;ctype.h&gt; // for tolower() char *func(ALookTab *a, char c) { if(isalpha(c)) return a-&gt;table[tolower(c) - 'a']; if(isdigit(c)) return a-&gt;table[c - '0' + 26]; // handle special characters } </code></pre> <p>Note that this code assumes that your morse code is stored as the 26 alphabet characters, the 10 digits, and then other special characters in whatever order you choose.</p> http://stackoverflow.com/questions/1742656/sorting-function-in-python/1742912#1742912 2 Answer by Chris Lutz for sorting function in python. Chris Lutz 2009-11-16T15:30:31Z 2009-11-16T15:30:31Z <p>Just as a final note, you could override the <code>__cmp__</code> method as follows:</p> <pre><code>class Potential(object): # new style classes FTW! ... def __cmp__(self, other): coeff1 = (self.movable + self.convertible) / self.total coeff2 = (other.movable + other.convertible) / other.total return cmp((coeff1, self.total), (coeff2, other.total)) </code></pre> <p>That way, the normal sorting order is achieved just by calling <code>sort()</code> with no arguments. You might even make the suggested <code>coeff</code> function a part of your class:</p> <pre><code>class Potential(object): ... def coeff(self): return (self.movable + self.convertible) / self.total def __cmp__(self, other): return cmp((self.coeff(), self.total), (other.coeff(), other.total)) </code></pre> http://stackoverflow.com/questions/1736028/remove-elements-by-index-in-haskell/1736139#1736139 1 Answer by Chris Lutz for Remove elements by index in haskell Chris Lutz 2009-11-15T00:36:15Z 2009-11-15T00:36:15Z <p>This is my solution. It's a lot like <a href="http://stackoverflow.com/questions/1736028/remove-elements-by-index-in-haskell/1736107#1736107">@barkmadley's answer</a>, using only <code>take</code> and <code>drop</code>, but with less clutter in my opinion:</p> <pre><code>takedrop :: Int -&gt; Int -&gt; [a] -&gt; [a] takedrop _ _ [] = [] takedrop n m l = take n l ++ takedrop n m (drop (n + m) l) </code></pre> <p>Not sure if it'll win any awards for speed or cleverness, but I think it's pretty clear and concise, and it certainly works:</p> <pre><code>*Main&gt; takedrop 5 3 [1..20] [1,2,3,4,5,9,10,11,12,13,17,18,19,20] *Main&gt; </code></pre> http://stackoverflow.com/questions/1725855/uint8t-vs-unsigned-char/1725901#1725901 10 Answer by Chris Lutz for uint8_t vs unsigned char Chris Lutz 2009-11-12T22:36:51Z 2009-11-12T22:36:51Z <p>Just to be pendantic, some systems may not have an 8 bit type. According to <a href="http://en.wikipedia.org/wiki/Stdint.h" rel="nofollow">Wikipedia</a>:</p> <blockquote> <p>An implementation is required to define exact-width integer types for N = 8[2], 16, 32, or 64 if and only if it has any type that meets the requirements. It is not required to define them for any other N, even if it supports the appropriate types.</p> </blockquote> <p>So <code>uint8_t</code> isn't guaranteed to exist, though it will for all platforms where 8 bits = 1 byte. Some embedded platforms may be different, but that's getting very rare. Some systems may define <code>char</code> types to be 16 bits, in which case there probably won't be an 8-bit type of any kind.</p> <p>Other than that (minor) issue, <a href="http://stackoverflow.com/questions/1725855/uint8-vs-unsigned-char/1725867#1725867">@Mark Ransom's answer</a> is the best in my opinion. Use the one that most clearly shows what you're using the data for.</p> <p>Also, I'm assuming you meant <code>uint8_t</code> (the standard typedef from C99 provided in the <code>stdint.h</code> header) rather than <code>uint_8</code> (not part of any standard).</p> http://stackoverflow.com/questions/1718346/removing-macro-in-legacy-code/1718468#1718468 3 Answer by Chris Lutz for Removing macro in legacy code Chris Lutz 2009-11-11T22:19:17Z 2009-11-11T22:19:17Z <p>What <em>is</em> <code>pField</code> (besides a fine example of the abomination that is Systems Hungarian)? If, by chance, it's a global variable or a singleton or something that we only need one of, we could do a nifty trick like this:</p> <pre><code>int FFX(int x) { static FIELD *pField = ...; // remove this line if pField is global return pField-&gt;GetValue(x); } </code></pre> <p>Change the <code>int</code> types to whatever types you need it to operate on, or even a template if you need it to support multiple types.</p> <p>Another alternative, suggested by <a href="http://stackoverflow.com/questions/1718346/removing-macro-in-legacy-code/1718424#1718424">@epatel</a>, is to use your favorite text editor's find-and-replace and just change all the <code>FFX(x)</code> lines to <code>pField-&gt;GetValue(x)</code>, thus eliminating the macro invokation in your code. If you want to keep a function invokation, you culd change <code>FFX(x)</code> to <code>FFX(pField, x)</code> and change the macro to take two arguments (or change it to a function that takes two arguments). But you might as well just take out the macro at that point.</p> <p>A third alternative, is not to fix that which is not broken. The macro isn't particularly nice, but you may introduce greater problems by trying to remove it. Macros aren't the spawn of Satan (though this one has at least a few relatives in hell).</p> http://stackoverflow.com/questions/1712606/insertion-sort-code-challenge/1712856#1712856 1 Answer by Chris Lutz for Insertion Sort Code Challenge Chris Lutz 2009-11-11T03:40:04Z 2009-11-11T03:40:04Z <p><strong>Perl</strong> in 80 chars (sorry, it's the best I can do when the language doesn't have a built-in <code>min()</code> function):</p> <pre><code>sub f{while(@_){$x=0;$_[$x]&gt;$_[$_] and$x=$_ for 0..$#_;push@r,splice@_,$x,1;}@r} </code></pre> http://stackoverflow.com/questions/897477/installing-git-on-os-x 2 Installing Git on OS X Chris Lutz 2009-05-22T11:52:01Z 2009-11-08T10:16:07Z <p>I am trying to install Git on Mac OS X Leopard. I'm trying to avoid the MacPorts/Fink route. I'm also trying to avoid the <a href="http://code.google.com/p/git-osx-installer/" rel="nofollow">installer</a> on Google because I've gotten very far on my own, but if I have to I'll go ahead and download the installer.</p> <p>Anyway, I have Git installed. <code>/usr/local/bin/git</code>. The problem is that none of the documentation installed, and the Makefile never bothered to tell me that. So now I have Git sitting around waiting to be used as I try to install the manpages for it.</p> <p>For some awful reason, the manpages are maintained as text files, which are to be processed by the AsciiDoc program, which I promptly installed. But AsciiDoc converts these text files to XML.</p> <p>Then Git uses another program called xmlto to convert the XML that AsciiDoc spits out to manpages (I think - I haven't gotten that far yet). The problem is that I get this error whenever it starts that step (first line is output from make, rest is error):</p> <pre><code> XMLTO git-apply.1 I/O error : Attempt to load network entity http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd /Users/chrislutz/prog/sources/git-1.6.3.1/Documentation/git-apply.xml:2: warning: failed to load external entity "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" D DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" </code></pre> <p>So basically it just goes through every file and gives me that error for all of them.</p> <p>I did try at one point to download the file <code>http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd</code>, put it in the directory, and then changed all the references in the XML files to the file in the directory, but this gave me more and stranger errors. If I got a regular solution to work, it might still give me those stranger errors, which means the whole thing is screwed and that I'll just use the Google installer.</p> <p>However, I've gotten (stumbled) this far on my own, and I feel like this is one last step before a sigh of relief and the chance to use Git. So I want to make a last-ditch effort to understand what's wrong. And "last-ditch effort" means "Ask Stack Overflow."</p> <p>So if anyone could give me any insight as to what that error means and why it's occuring (and what I might be able to do to fix it), that would be awesome. If not, I'll try the Google installer.</p> http://stackoverflow.com/questions/1683535/what-is-this-syntax/1683569#1683569 14 Answer by Chris Lutz for What is this syntax? Chris Lutz 2009-11-05T21:00:04Z 2009-11-05T21:00:04Z <p>It's the comma operator, C's lowest precedence operator. According to C's precedence rules, that line parses as this:</p> <pre><code>(i = 1), (2), (3), (4), (5); </code></pre> <p>This could be "useful" if you wanted to do something else on that line:</p> <pre><code>i = 2, j = 3, k++; </code></pre> <p>Could save you from using brackets for an <code>if()</code> statement (and could also induce headaches later) or allow you to have multiple expressions in a <code>for()</code> loop's control flow (which is actually a pretty legitimate use of the comma operator).</p> http://stackoverflow.com/questions/1683432/what-am-i-missing-in-the-following-program/1683476#1683476 2 Answer by Chris Lutz for What am I missing in the following program? Chris Lutz 2009-11-05T20:46:34Z 2009-11-05T20:46:34Z <p>Because <code>TOTAL_ELEMENTS</code> is an unsigned value (type <code>size_t</code>) and <code>d</code> is a signed value (type <code>int</code>, which is most likely signed on your platform, and you're certainly assuming it is even if it isn't). The compiler in this case is converting <code>d</code> to an unsigned value, and converting -1 to an unsigned value usually results in <code>SIZE_MAX</code> or something similar, which is certainly greater than <code>TOTAL_ELEMENTS - 2</code>. To do this correctly, cast the unsigned value to a signed value: <code>(int)(TOTAL_ELEMENTS - 2)</code>.</p> <p>Out of curiosity, why are you starting your index at -1 and then adding 1 to it in the loop? Why not just do this:</p> <pre><code>unsigned i; for(i = 0; i &lt; (TOTAL_ELEMENTS); i++) printf("%d\n", array[i]); </code></pre> <p>It would be much clearer than what you have.</p> http://stackoverflow.com/questions/1677535/how-do-i-correctly-sort-strings-in-c/1677995#1677995 1 Answer by Chris Lutz for How do I correctly sort strings in C? Chris Lutz 2009-11-05T02:43:24Z 2009-11-05T02:43:24Z <p>You want a <em>natural sorting algorithm</em> as opposed to the ASCIIbetical sorting algorithm provided by default. See <a href="http://www.codinghorror.com/blog/archives/001018.html" rel="nofollow">Jeff's blog entry</a> for a long rant about this, and some nice links to implementations of this natural algorithm. Just as a warning, the <em>correct</em> implementation (as opposed to the hacky answer you've accepted) is quite complicated, so don't try to implement it yourself, take someone else's (hopefully public domain or liberally licensed) implementation and use that instead.</p> http://stackoverflow.com/questions/1672131/what-does-this-pointer-do/1672149#1672149 14 Answer by Chris Lutz for what does this pointer do? Chris Lutz 2009-11-04T07:15:54Z 2009-11-04T07:15:54Z <p>It's pointing to an area in the program's read-only memory (usually in the program's machine code itself) containing the ASCII sequence <code>hello world</code>. Compare this to:</p> <pre><code>char p[] = "hello world"; </code></pre> <p>Which creates an array of 12 <code>char</code>s on the stack, which is modifiable just like any other variable, and to:</p> <pre><code>char *p = strdup("hello world"); </code></pre> <p>Which creates an array of 12 <code>char</code>s on the heap, and sets <code>p</code> to be a pointer to this readable <em>and</em> writable space of heap memory.</p> <p>As for your (totally unrelated) second question:</p> <pre><code>int** r = &amp;p; </code></pre> <p>Is simpler than it looks, though it's also bad. <code>&amp;p</code> is the <em>address</em> of p. So if we did:</p> <pre><code>int x; int *y = &amp;x; </code></pre> <p>Then the pointer <code>y</code> <em>points to</em> the variable <code>x</code>, so assigning to <code>*y</code> changes <code>x</code> (and vice versa). We can do this for arbitrarily complex types:</p> <pre><code>int *x; int **y = &amp;x; </code></pre> <p>Now <code>y</code> is still a pointer that points to <code>x</code>, but <code>x</code> is also a pointer. So in your example, <code>r</code> is a pointer to a pointer to an <code>int</code>, and it's value is the address of <code>p</code> (a pointer to a <code>char</code>). However, it's a bad idea to do this because many platforms have alignment issues with casting from a <code>char *</code> type to a larger pointer type.</p> http://stackoverflow.com/questions/1665722/is-1-or-faster-for-replacing-a-matched-string-using-s-in-perl/1665735#1665735 10 Answer by Chris Lutz for Is $1 or $& faster for replacing a matched string using s/// in Perl? Chris Lutz 2009-11-03T07:19:41Z 2009-11-03T11:28:15Z <p>From <a href="http://perldoc.perl.org/perlvar.html" rel="nofollow"><code>perldoc perlvar</code></a>:</p> <blockquote> <ul> <li>$MATCH</li> <li>$&amp;</li> </ul> <p>The string matched by the last successful pattern match (not counting any matches hidden within a <code>BLOCK</code> or <code>eval()</code> enclosed by the current <code>BLOCK</code>). (Mnemonic: like &amp; in some editors.) This variable is read-only and dynamically scoped to the current <code>BLOCK</code>.</p> <p>The use of this variable anywhere in a program imposes a considerable performance penalty on all regular expression matches. See <a href="http://perldoc.perl.org/perlvar.html#BUGS" rel="nofollow">"BUGS"</a>.</p> <p>See <code>"@-"</code> for a replacement.</p> </blockquote> <p>Even if this information weren't conveniently in the documentation, you could still time it yourself and find out.</p> http://stackoverflow.com/questions/1655956/c-not-explicitly-returning-constructed-struct-but-it-still-works/1655965#1655965 3 Answer by Chris Lutz for C: Not explicitly returning constructed struct, but it still works Chris Lutz 2009-10-31T23:56:11Z 2009-11-01T00:10:51Z <p>It probably has to do with the last thing on the stack. Without <code>puts()</code>, the last thing on the stack is the node you allocated, and it gets returned. With <code>puts()</code>, the last thing on the stack is the return value of <code>puts()</code>, which is an <code>int</code>, and is returned and used as a pointer, which is probably bad.</p> <p>Note that, either way, your program is wrong. This is undefined behavior (or some siliarly scary sounding standardese) and shouldn't be relied upon. Make your function work right <em>all</em> the time - don't rely on undefined behavior.</p> <p>If you want to find out if this is true, you can do this:</p> <pre><code>Node * makeNode() { Node * newNode; puts( "I DIDN'T RETURN ANYTHING!!" ) ; newNode = (Node*)malloc( sizeof(Node) ) ; } </code></pre> <p>Will probably work the same as the one that doesn't <code>puts()</code>. This will also probably work:</p> <pre><code>Node * makeNode() { malloc( sizeof(Node) ) ; } </code></pre> <p>But you really shouldn't be using <em>any</em> of these. They work by happenstance, and if you were really lucky <em>none</em> of them would work.</p> <p>Also note that some people (including me) consider the typecasting of the return value of <code>malloc()</code> to be a bad idea, but that is a debatable subject.</p> http://stackoverflow.com/questions/1641156/which-is-better-coding-style/1641255#1641255 14 Answer by Chris Lutz for Which is better coding style? Chris Lutz 2009-10-29T02:07:14Z 2009-10-29T02:07:14Z <p>If you don't have any silly rules about multiple return points, I think this is quite nice (and so does someone else, but they deleted their answer for unknown reasons):</p> <pre><code>if(!condition1) { log("condition1 failed"); return false; } if(!condition2) { log("condition2 failed"); return false; } if(!condition3) { log("condition3 failed"); return false; } return true; </code></pre> <p>Maybe this is an equal knee-jerk aversion to super-nesting, but it's certainly cleaner than his crap storing the boolean conditions in certain values. However, it may be less readable in context: consider if one of the conditions was <code>isreadable()</code>. It's clearer to say <code>if(isreadable())</code> because we want to know if something is readable. <code>if(!isreadable())</code> suggests if we want to know whether it's not readable, which isn't our intention. It's certainly debatable that there may be situations where one is more readable/intuitive than the other, but I'm a fan of this way myself. If someone gets hung up on the returns, you could do this:</p> <pre><code>if(!condition1) log("condition1 failed"); else if(!condition2) log("condition2 failed"); else if(!condition3) log("condition3 failed"); else return true; return false; </code></pre> <p>But that's rather underhanded, and less "clear" in my opinion.</p> http://stackoverflow.com/questions/1640986/access-to-perls-empty-angle-operator-from-an-actual-filehandle/1641025#1641025 8 Answer by Chris Lutz for Access to Perl's empty angle "<>" operator from an actual filehandle? Chris Lutz 2009-10-29T00:43:14Z 2009-10-29T00:43:14Z <p>From <a href="http://perldoc.perl.org/perlvar.html" rel="nofollow"><code>perldoc perlvar</code></a>:</p> <blockquote> <ul> <li><code>ARGV</code></li> </ul> <p>The special filehandle that iterates over command-line filenames in <code>@ARGV</code>. Usually written as the null filehandle in the angle operator <code>&lt;&gt;</code>. Note that currently <code>ARGV</code> only has its magical effect within the <code>&lt;&gt;</code> operator; elsewhere it is just a plain filehandle corresponding to the last file opened by <code>&lt;&gt;</code>. In particular, passing <code>\*ARGV</code> as a parameter to a function that expects a filehandle may not cause your function to automatically read the contents of all the files in <code>@ARGV</code>.</p> </blockquote> <p>I believe that answers all aspects of your question in that "Hate to say it but it won't do what you want" kind of way. What you could do is make functions that take a list of filenames to open, and do this:</p> <pre><code>sub takes_filenames (@) { local @ARGV = @_; // do stuff with &lt;&gt; } </code></pre> <p>But that's probably the best you'll be able to manage.</p> http://stackoverflow.com/questions/1611797/using-non-hashable-python-objects-as-keys-in-dictionaries/1611814#1611814 2 Answer by Chris Lutz for Using non-hashable Python objects as keys in dictionaries Chris Lutz 2009-10-23T07:07:16Z 2009-10-23T07:07:16Z <p>With <a href="http://stackoverflow.com/questions/1611797/using-nested-python-dictionaries-as-keys/1611814#1611814">recursion</a>!</p> <pre><code>def make_hashable(h): items = h.items() for item in items: if type(items) == dict: item = make_hashable(item) return frozenset(items) </code></pre> <p>You can add other type tests for any other mutable types you want to make hashable. It shouldn't be hard.</p> http://stackoverflow.com/questions/1611756/memory-management-and-realloc/1611781#1611781 1 Answer by Chris Lutz for Memory management and realloc Chris Lutz 2009-10-23T06:58:29Z 2009-10-23T06:58:29Z <p>Not sure this is the issue, but it is potentially problematic. From the manpage for <a href="http://opengroup.org/onlinepubs/007908775/xsh/realloc.html" rel="nofollow"><code>realloc()</code></a>:</p> <blockquote> <p><strong>RETURN VALUE</strong></p> <p>Upon successful completion with a size not equal to 0, <code>realloc()</code> returns a pointer to the (possibly moved) allocated space. If size is 0, either a null pointer or a unique pointer that can be successfully passed to <code>free()</code> is returned. If there is not enough available memory, <code>realloc()</code> returns a null pointer and sets errno to [ENOMEM].</p> </blockquote> <p>What will happen is, if there isn't enough room for the expanded object, the old object <em>is still valid</em> and isn't freed, but <code>realloc()</code> returns <code>NULL</code>. So you should store the return result of <code>realloc()</code> in a separate variable, check that variable for <code>NULL</code>, and if it isn't, assign it to <code>Hash-&gt;Columns</code>. </p> http://stackoverflow.com/questions/1611706/how-can-i-replace-a-column-of-one-file-with-a-column-of-another-using-perl/1611739#1611739 6 Answer by Chris Lutz for How can I replace a column of one file with a column of another using Perl? Chris Lutz 2009-10-23T06:46:48Z 2009-10-23T06:46:48Z <p>If you want to read two lines at the same time, try this:</p> <pre><code>while(defined(my $line1 = &lt;file1&gt;) and defined(my $line2 = &lt;file2&gt;)) { # replace contents in $line1 with $line2 and do something with $line1 } </code></pre> <p>This will stop working as soon as one line runs out, so it may be a good idea to see if both files are empty at the end of this loop:</p> <pre><code>die "Files are different sizes!\n" unless eof(file1) == eof(file2); </code></pre> <p>Of course, in modern Perl you can store filehandles in lexically scoped variables like this:</p> <pre><code>open my $fh, ... </code></pre> <p>And then replace ugly global <code>&lt;FILEHANDLES&gt;</code> with nice lexically scoped <code>&lt;$filehandles&gt;</code>. It's much nicer, and it makes</p> http://stackoverflow.com/questions/1611625/in-what-version-of-python-was-set-initialisation-syntax-added/1611632#1611632 0 Answer by Chris Lutz for In what version of Python was set initialisation syntax added Chris Lutz 2009-10-23T06:10:02Z 2009-10-23T06:21:58Z <p>Well, testing it:</p> <pre><code>&gt;&gt;&gt; s = {1, 2, 3} File "&lt;stdin&gt;", line 1 s = {1, 2, 3} ^ SyntaxError: invalid syntax </code></pre> <p>I'm running 2.5, so I would assume that this syntax was added sometime in 2.6 (Update: actually added in 3.0, but Ian beat me). I should probably be upgrading sometime soon. I'm glad they added a syntax for it - I'm rather tired of <code>set([1, 2, 3])</code>.</p> <p>Set comprehensions have probably been around since sets were first created. The Python documentation site isn't very clear, but I wouldn't imagine sets would be too useful without iterators.</p> http://stackoverflow.com/questions/1611431/how-do-i-split-up-a-line-and-rearrange-its-elements/1611544#1611544 2 Answer by Chris Lutz for How do I split up a line and rearrange its elements? Chris Lutz 2009-10-23T05:32:04Z 2009-10-23T05:32:04Z <p>Just for comparison, here's a few Perl scripts to do it (TMTOWTDI, after all). A rather functional style:</p> <pre><code>#!/usr/bin/perl -p use strict; use warnings; my @a = split; my @i = map { $_ * 2 } 0 .. $#a / 2; print join("\n", @a[@i]), "\n\n", join("\n", @a[map { $_ + 1 } @i]), "\n"; </code></pre> <p>We could also do it closer to the AWK script:</p> <pre><code>#!/usr/bin/perl -p use strict; use warnings; my @a = split; my @i = map { $_ * 2 } 0 .. $#a / 2; print "$a[$_]\n" for @i; print "\n"; print "$a[$_+1]\n" for @i; </code></pre> <p>I've run out of ways to do it, so if any other clever Perlers come up with another method, feel free to add it.</p> http://stackoverflow.com/questions/1610030/why-can-you-return-from-a-non-void-function-without-returning-a-value-without-pro/1610077#1610077 0 Answer by Chris Lutz for Why can you return from a non-void function without returning a value without producing a compiler error? Chris Lutz 2009-10-22T21:28:11Z 2009-10-22T21:28:11Z <p>Sounds like you need to turn up your compiler warnings:</p> <pre><code>$ gcc -Wall -Wextra -Werror -x c - int main(void) { return; } cc1: warnings being treated as errors &lt;stdin&gt;: In function ‘main’: &lt;stdin&gt;:1: warning: ‘return’ with no value, in function returning non-void &lt;stdin&gt;:1: warning: control reaches end of non-void function $ </code></pre> http://stackoverflow.com/questions/1598985/c-read-binary-stdin/1599093#1599093 2 Answer by Chris Lutz for C read binary stdin Chris Lutz 2009-10-21T06:44:40Z 2009-10-21T21:34:10Z <p>What you need is <a href="http://www.opengroup.org/onlinepubs/000095399/functions/freopen.html" rel="nofollow"><code>freopen()</code></a>. From the manpage:</p> <blockquote> <p>If filename is a null pointer, the freopen() function shall attempt to change the mode of the stream to that specified by mode, as if the name of the file currently associated with the stream had been used. In this case, the file descriptor associated with the stream need not be closed if the call to freopen() succeeds. It is implementation-defined which changes of mode are permitted (if any), and under what circumstances.</p> </blockquote> <p>Basically, the best you can really do is this:</p> <pre><code>freopen(NULL, "rb", stdin); </code></pre> <p>This will reopen <code>stdin</code> to be the same input stream, but in binary mode. In the normal mode, reading from <code>stdin</code> on Windows will convert <code>\r\n</code> (Windows newline) to the single character ASCII 10. Using the <code>"rb"</code> mode disables this conversion so that you can properly read in binary data.</p> <p><code>freopen()</code> returns a filehandle, but it's the previous value (before we put it in binary mode), so don't use it for anything. After that, use <a href="http://www.opengroup.org/onlinepubs/009695399/functions/fread.html" rel="nofollow"><code>fread()</code></a> as has been mentioned.</p> <p>As to your concerns, however, you may not be reading in "32 bits" but if you use <code>fread()</code> you <em>will</em> be reading in 4 <code>char</code>s (which is the best you can do in C - <code>char</code> is guaranteed to be <em>at least</em> 8 bits but some historical and embedded platforms have 16 bit <code>char</code>s (some even have 18 or worse)). If you use <code>fgets()</code> you will <em>never</em> read in 4 bytes. You will read in at least 3 (depending on whether any of them are newlines), and the 4th byte will be <code>'\0'</code> because C strings are nul-terminated and <code>fgets()</code> nul-terminates what it reads (like a good function). Obviously, this is not what you want, so you should use <code>fread()</code>.</p> http://stackoverflow.com/questions/1598946/why-does-my-non-greedy-perl-regex-still-match-too-much/1598957#1598957 17 Answer by Chris Lutz for Why does my non-greedy Perl regex still match too much? Chris Lutz 2009-10-21T05:57:21Z 2009-10-21T05:57:21Z <p>The problem is that, even though it's not greedy, it still keeps trying. The regex doesn't see</p> <pre><code>"$tom" said blah blah blash. </code></pre> <p>and think "Oh, the stuff following the "said" isn't quoted, so I'll skip that one." It thinks "well, the stuff after "said" isn't quoted, <em>so it must still be part of our quote</em>." So <code>".+?"</code> matches</p> <pre><code>"$tom" said blah blah blash. "$dick" </code></pre> <p>What you want is <code>"[^"]+"</code>. This will match two quote marks enclosing anything that's not a quote mark. So the final solution:</p> <pre><code>("[^"]+" said "[^"]+") </code></pre> http://stackoverflow.com/questions/1598773/is-there-a-standard-function-in-c-that-would-return-the-length-of-an-array/1598863#1598863 1 Answer by Chris Lutz for Is there a standard function in C that would return the length of an array? Chris Lutz 2009-10-21T05:21:14Z 2009-10-21T05:21:14Z <p>The simple answer, of course, is no. But the practical answer is "I need to know anyway," so let's discuss methods for working around this.</p> <p>One way to get away with it for a while, as mentioned about a million times already, is with <code>sizeof()</code>:</p> <pre><code>int i[] = {0, 1, 2}; ... size_t i_len = sizeof(i) / sizeof(i[0]); </code></pre> <p>This works, until we try to pass <code>i</code> to a function, or take a pointer to <code>i</code>. So what about more general solutions?</p> <p>The accepted general solution is to pass the array length to a function along with the array. We see this a lot in the standard library:</p> <pre><code>void *memcpy(void *s1, void *s2, size_t n); </code></pre> <p>Will copy <code>n</code> bytes from <code>s1</code> to <code>s2</code>, allowing us to use <code>n</code> to ensure that our buffers never overflow. This is a good strategy - it has low overhead, and it actually generates some efficient code (compare to <code>strcpy()</code>, which has to check for the end of the string and has no way of "knowing" how many iterations it must make, and poor confused <code>strncpy()</code>, which has to check both - both <em>can</em> be slower, and either could be sped up by using <code>memcpy()</code> if you happen to have already calculated the string's length for some reason).</p> <p>Another approach is to encapsulate your code in a <code>struct</code>. The common hack is this:</p> <pre><code>typedef struct _arr { size_t len; int arr[0]; } arr; </code></pre> <p>If we want an array of length 5, we do this:</p> <pre><code>arr *a = malloc(sizeof(*a) + sizeof(int) * 5); a-&gt;len = 5; </code></pre> <p>However, this is a hack that is only moderately well-defined (C99 lets you use <code>int arr[]</code>) and is rather labor-intensive. A "better-defined" way to do this is:</p> <pre><code>typedef struct _arr { size_t len; int *arr; } arr; </code></pre> <p>But then our allocations (and deallocations) become much more complicated. The benefit of either of these approaches is, of course, that now arrays you make will carry around their lengths with them. It's slightly less memory-efficient, but it's quite safe. If you chose one of these paths, be sure to write helper functions so that you don't have to manually allocate and deallocate (and work with) these structures.</p> http://stackoverflow.com/questions/1823370/c-overloading-for-polynomial-multiplication Comment by Chris Lutz on C++ overloading * for polynomial multiplication Chris Lutz 2009-12-01T01:19:55Z 2009-12-01T01:19:55Z 1) Why are you taking the length of <code>string</code> before there is anything <i>in</i> <code>string</code> ? 2) You should store the result of <code>strlen()</code> in a <code>size&#95;t</code> rather than a signed variable like <code>int</code>. http://stackoverflow.com/questions/1815011/why-does-my-method-print-isobjectnamescalar0x1289df0/1815018#1815018 Comment by Chris Lutz on Why does my method print "isObjectName=SCALAR(0x1289df0)"? Chris Lutz 2009-11-29T08:59:20Z 2009-11-29T08:59:20Z This section (&quot;Inheriting the Constructor&quot; <a href="http://perldoc.perl.org/perlboot.html#Inheriting-the-constructor" rel="nofollow">perldoc.perl.org/perlboot.html#Inheriting-the-con&hellip;</a>) deals specifically with what you want. http://stackoverflow.com/questions/1814400/simple-way-to-convert-a-string-to-a-dictionary/1814806#1814806 Comment by Chris Lutz on Simple way to convert a string to a dictionary Chris Lutz 2009-11-29T06:17:39Z 2009-11-29T06:17:39Z If you're going to use <code>eval</code> why not just do <code>eval(&quot;dict(&quot; + s + &quot;)&quot;)</code> ? We don't need to do any regex substitutions here when Python already supports this syntax. http://stackoverflow.com/questions/1814463/returning-a-structure-array-using-pointers/1814477#1814477 Comment by Chris Lutz on Returning a structure array using pointers Chris Lutz 2009-11-29T03:34:25Z 2009-11-29T03:34:25Z This is the answer, but is probably completely inscrutable to anyone who would be asking the question. http://stackoverflow.com/questions/1514619/can-i-declare-a-function-that-can-take-pointer-to-itself-as-an-argument/1514632#1514632 Comment by Chris Lutz on Can I declare a function that can take pointer to itself as an argument? Chris Lutz 2009-11-29T02:55:24Z 2009-11-29T02:55:24Z @Dario - &quot;All statically-typed languages I know require their types to be finite.&quot; Ever heard of Haskell? http://stackoverflow.com/questions/1814447/why-is-last-called-last-in-perl Comment by Chris Lutz on Why is 'last' called 'last' in Perl? Chris Lutz 2009-11-29T02:30:33Z 2009-11-29T02:30:33Z Because Perl isn't C? http://stackoverflow.com/questions/1807194/regular-expression-tools/1807221#1807221 Comment by Chris Lutz on Regular Expression Tools Chris Lutz 2009-11-27T07:35:24Z 2009-11-27T07:35:24Z Hey! Perl 6 will be released theoretically! http://stackoverflow.com/questions/1787996/c-library-function-to-do-sort/1788048#1788048 Comment by Chris Lutz on C library function to do sort Chris Lutz 2009-11-24T06:45:48Z 2009-11-24T06:45:48Z You might also use <code>sizeof(x) / sizeof(x[0])</code> in case your array size ever changes. You might also abstract that away into a macro, and you might change the declaration to <code>x[] =</code> so that the size can change without breaking your code. And for the final pedantry, you should never use an <code>int</code> to index arrays - that's what <code>size&#95;t</code> is invented for. http://stackoverflow.com/questions/1787875/question-on-extern-specifier-in-c/1787886#1787886 Comment by Chris Lutz on Question on extern specifier in C Chris Lutz 2009-11-24T05:12:01Z 2009-11-24T05:12:01Z The problem is the same: You have two global variables with external linkage with the same name, and you need to use both of them. And the answer is, in C, you can't. In C++ you can with namespaces, but then they don't really have the same name, so why not just give them new names and not have to bother with the hassle in the first place? http://stackoverflow.com/questions/1787875/question-on-extern-specifier-in-c/1787886#1787886 Comment by Chris Lutz on Question on extern specifier in C Chris Lutz 2009-11-24T04:58:31Z 2009-11-24T04:58:31Z That is, assuming there should only be one variable. I think the OP wants two global variables with the same name, which is rather silly, and I assume a theoretical simplification of a more complex flawed design. http://stackoverflow.com/questions/1787604/printfchar-i-runtime-error-i-as-integer Comment by Chris Lutz on printf((char *) i); runtime error? (i as integer) Chris Lutz 2009-11-24T04:02:24Z 2009-11-24T04:02:24Z For the record, instead of doing <code>if((i % 3 == 0) &amp;&amp; (i % 5 == 0))</code> you could just do <code>if(i % 15 == 0)</code>. http://stackoverflow.com/questions/1785852/why-are-perl-source-filters-bad-and-when-is-it-ok-to-use-them/1786060#1786060 Comment by Chris Lutz on Why are Perl source filters bad and when is it OK to use them? Chris Lutz 2009-11-23T23:17:37Z 2009-11-23T23:17:37Z What about the macro <code>#define ARRAY&#95;SIZE(x) (sizeof(x)/sizeof((x)[0]))</code>? Does that degrade your ability to understand what the code is doing just by looking at it? http://stackoverflow.com/questions/1785852/why-are-perl-source-filters-bad-and-when-is-it-ok-to-use-them/1785996#1785996 Comment by Chris Lutz on Why are Perl source filters bad and when is it OK to use them? Chris Lutz 2009-11-23T22:51:01Z 2009-11-23T22:51:01Z According to <code>$ perl -MO=Deparse -e '@result = (dothis $foo, $bar)'</code> it parses as <code>@result = ($foo-&gt;dothis, $bar);</code> Talk about ambiguity. If we predeclare <code>sub dothis</code> with no prototype or a prototype of <code>($$)</code> or <code>(@)</code> it parses as <code>@result = dothis($foo, $bar)</code>. It only parses as <code>@result = (dothis($foo), $bar)</code> if we declare it with a prototype of <code>($)</code>. http://stackoverflow.com/questions/1781554/regular-expression-matching-everything-except-a-given-regular-expression Comment by Chris Lutz on regular expression matching everything except a given regular expression Chris Lutz 2009-11-23T07:51:25Z 2009-11-23T07:51:25Z If you have a regex that matches everything you don't want, and doesn't match everything you want, why not just use <code>not</code>? http://stackoverflow.com/questions/1766675/code-golf-running-water/1767383#1767383 Comment by Chris Lutz on Code Golf: Running Water Chris Lutz 2009-11-20T06:04:41Z 2009-11-20T06:04:41Z BOO! HISS! I AM DEEPLY OFFENDED WHEN JOKES ARE NOT FUNNY! I WILL NOW DOWNVOTE YOU INTO OBLIVION!