User Andrew Keeton - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T09:55:36Z http://stackoverflow.com/feeds/user/68086 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1646801/how-can-i-use-microsoft-words-spelling-grammar-checker-programmatically 4 How can I use Microsoft Word's spelling/grammar checker programmatically? Andrew Keeton 2009-10-29T21:52:04Z 2009-10-30T18:47:41Z <p>I want to process a medium to large number of text snippets using a spelling/grammar checker to get a <em>rough</em> approximation and ranking of their "quality." Speed is not really of concern either, so I think the easiest way is to write a script that passes off the snippets to Microsoft Word (2007) and runs its spelling and grammar checker on them.</p> <p>Is there a way to do this from a script (specifically, Python)? What is a good resource for learning about controlling Word programmatically?</p> <p>If not, I suppose I can try something from <a href="http://stackoverflow.com/questions/1162220/open-source-grammar-checker">Open Source Grammar Checker (SO)</a>.</p> <h2>Update</h2> <p>In response to Chris' answer, is there at least a way to a) open a file (containing the snippet(s)), b) run a VBA script from inside Word that calls the spelling and grammar checker, and c) return some indication of the "score" of the snippet(s)?</p> <h2>Update 2</h2> <p>I've added an answer which seems to work, but if anyone has other suggestions I'll keep this question open for some time.</p> http://stackoverflow.com/questions/1646801/how-can-i-use-microsoft-words-spelling-grammar-checker-programmatically/1647718#1647718 3 Answer by Andrew Keeton for How can I use Microsoft Word's spelling/grammar checker programmatically? Andrew Keeton 2009-10-30T02:40:36Z 2009-10-30T03:01:57Z <p>It took some digging, but I think I found a useful solution. Following the advice at <a href="http://www.nabble.com/Edit-a-Word-document-programmatically-td19974320.html" rel="nofollow">http://www.nabble.com/Edit-a-Word-document-programmatically-td19974320.html</a> I'm using the <a href="http://sourceforge.net/projects/pywin32/" rel="nofollow">win32com</a> module, which allows access to Word's COM objects. The following code demonstrates this nicely:</p> <pre><code>import win32com.client, os wdDoNotSaveChanges = 0 path = os.path.abspath('snippet.txt') snippet = 'Jon Skeet lieks ponies. I can haz reputashunz? ' snippet += 'This is a correct sentence.' file = open(path, 'w') file.write(snippet) file.close() app = win32com.client.gencache.EnsureDispatch('Word.Application') doc = app.Documents.Open(path) print "Grammar: %d" % (doc.GrammaticalErrors.Count,) print "Spelling: %d" % (doc.SpellingErrors.Count,) app.Quit(wdDoNotSaveChanges) </code></pre> <p>which produces</p> <pre> Grammar: 2 Spelling: 3 </pre> <p>which match the results when invoking the check manually from Word.</p> http://stackoverflow.com/questions/1297431/how-do-i-quietly-reload-a-page-from-a-greasemonkey-script 1 How do I "quietly" reload a page from a Greasemonkey script? Andrew Keeton 2009-08-19T01:44:27Z 2009-10-13T18:37:35Z <p>I want to reload a page so that it does not cause the effects of a full-page refresh, like displaying "Loading..." on the page's tab.</p> <p>Here's the code I have so far. My theory was that I could overwrite the <code>body</code> section with a <code>&lt;frame&gt;</code>-wrapped version of the updated site, gotten via <code>GM_xmlhttpRequest</code>.</p> <h2>reloader.js</h2> <pre><code>setInterval(reload, 10000); function reload() { GM_xmlhttpRequest({method: 'GET', url: location.href, onload: function(responseDetails) { document.body.innerHTML = '&lt;frame&gt;\n' + responseDetails.responseText + '&lt;/frame&gt;\n'; }}); } </code></pre> <p>When testing with Firebug on stackoverflow.com, I found that this script updates the <code>body</code> <em>as if I had performed a full-page refresh</em>, without the side effects. Yay! Mysteriously, the <code>&lt;frame&gt;</code> tags are nowhere to be found.</p> <h2>Questions</h2> <p>What I have right now does a good job of reloading the page, but I have two questions:</p> <ol> <li>How do I stay logged in after a reload? Specifically, what do I need to do to keep me logged in to Stack Overflow?</li> <li>Can someone explain <em>why</em> my script works? Why are there no <code>&lt;frame&gt;</code> tags within the <code>body</code>?</li> </ol> <h2>Updates</h2> <p>I've incorporated elements from Cleiton, Havenard, and Henrik's answers so far. I tried sending cookies via the <code>header: { 'Cookie': document.cookie }</code> entry in the data sent through <code>GM_xmlhttpRequest</code>. This sent some, but not all of the cookies. It turns out that if I turn on third party cookies in the Firefox then I'll get the necessary extra cookies (<code>.ASPXAUTH</code>, <code>ASP.NET_SessionId</code>, and <code>user</code>), but this is a <a href="http://www.grc.com/cookies.htm" rel="nofollow"><em>bad idea</em></a>.</p> http://stackoverflow.com/questions/1552427/have-you-ever-been-the-victim-of-a-bug-in-a-programming-language-or-technology 4 Have you ever been the victim of a bug in a programming language or technology? Andrew Keeton 2009-10-12T02:30:58Z 2009-10-12T15:21:42Z <p>Bugs can be difficult enough to resolve when they're your (or a coworker's) fault. However, we all know that the technology we use to implement our programs is written by infallible people such as ourselves. So it stands to reason that some people have been affected by bugs in the implementation of the tools they used.</p> <p>So, have you found a bug in your program that was caused by a widespread underlying technology, such as a programming language or framework? If so, did it fail with some indication, or did it silently overwrite some data? How difficult was it to debug? Did it cause a potential security vulnerability? Were you able to contact the provider and confirm that it was fixed (or fix it yourself)?</p> <p>Here are some of the worst (in my opinion) technologies to have a bug in (especially one that fails silently):</p> <ul> <li>Programming language</li> <li>Concurrency framework</li> <li>Remote API</li> <li>Database</li> </ul> http://stackoverflow.com/questions/1495237/signature-inside-of-a-structure 0 Signature inside of a structure Andrew Keeton 2009-09-29T22:15:20Z 2009-09-29T22:15:20Z <p>I want to place signature/structure pair inside a structure, like so:</p> <pre><code>structure Outer :&gt; OUTER = struct signature INNER = sig ... end structure Inner :&gt; INNER = struct ... end end </code></pre> <p>but even the simplest of examples produces an error:</p> <pre> ../test.sml:1.18-2.6 Error: syntax error: replacing STRUCT with EQUALOP ../test.sml:5.6 Error: syntax error found at END </pre> <p>It appears that signatures are not allowed inside structures. What is the best way to achieve this functionality?</p> http://stackoverflow.com/questions/1386579/what-is-a-good-data-structure-to-represent-an-undirected-graph 1 What is a good data structure to represent an undirected graph? Andrew Keeton 2009-09-06T20:04:57Z 2009-09-16T10:05:37Z <p>I need to construct an undirected graph. I don't need it to do anything too fancy, but ideally it would work like this:</p> <pre><code>structure UDG = UndirectedGraph val g = UDG.empty val g = UDG.addEdges(g, n1, [n2, n4, n7]) (* n1 is connected to n2, n4, and n7 *) val g = UDG.addEdge(g, n2, n3) UDG.connected(g, n2) (* returns [n1, n3] *) </code></pre> <p>Is there a good data structure in SML/NJ to model these relationships? Should I just roll my own?</p> <h1>Updates</h1> <p>I've gone ahead and tried rolling my own, but I get a type mismatch error when I try to test it. My experience with SML structures and functors is pretty basic, so I think I'm doing something obviously wrong. How do I get this to work? Also, can you help me make this an <code>'a graph</code>? That seems to make more sense, semantically. </p> <h2>Code</h2> <pre><code>signature ORD_NODE = sig type node val compare : node * node -&gt; order val format : node -&gt; string end signature GRAPH = sig structure Node : ORD_NODE type graph val empty : graph (* val addEdge : graph * Node.node * Node.node -&gt; graph * addEdge (g, x, y) =&gt; g with an edge added from x to y. *) val addEdge : graph * Node.node * Node.node -&gt; graph val format : graph -&gt; string end functor UndirectedGraphFn (Node : ORD_NODE) :&gt; GRAPH = struct structure Node = Node structure Key = struct type ord_key = Node.node val compare = Node.compare end structure Map = BinaryMapFn(Key) type graph = Node.node list Map.map (* Adjacency list *) val empty = Map.empty fun addEdge (g, x, y) = (* snip *) fun format g = (* snip *) end structure UDG = UndirectedGraphFn(struct type node = int val compare = Int.compare val format = Int.toString end) </code></pre> <h2>Error</h2> <p>When I do</p> <pre> structure UDG = UndirectedGraphFn(struct type node = int val compare = Int.compare val format = Int.toString end) UDG.addEdge (UDG.empty,1,2)</pre> I get a type mismatch: <pre> Error: operator and operand don't agree [literal] operator domain: UDG.graph * ?.UDG.node * ?.UDG.node operand: UDG.graph * int * int in expression: UDG.addEdge (UDG.empty,1,2) </pre> http://stackoverflow.com/questions/1424660/garbage-collection-vs-non-garbage-collection-programming-languages/1424692#1424692 2 Answer by Andrew Keeton for Garbage collection vs. non garbage collection programming languages Andrew Keeton 2009-09-15T01:35:51Z 2009-09-15T01:42:30Z <p>In C, you have to manually call <code>free</code> on memory allocated with <code>malloc</code>. While this doesn't sound so bad, it can get <em>very</em> messy when dealing with separate data structures (like linked lists) that point to the same data. You could end up accessing freed memory or double-freeing memory, both of which cause errors and can introduce security vulnerabilities.</p> <p>Additionally, in C++, you need to be careful of mixing <a href="http://taossa.com/index.php/2007/01/03/attacking-delete-and-delete-in-c/" rel="nofollow"><code>new[]/delete</code> and <code>new/delete[]</code></a>.</p> <p>For example, memory management is something that requires the programmer to know exactly why</p> <pre><code>const char *getstr() { return "Hello, world!" } </code></pre> <p>is just fine but</p> <pre><code>const char *getstr() { char x[BUF_SIZE]; fgets(x, BUF_SIZE, stdin); return x; } </code></pre> <p>is a very bad thing.</p> http://stackoverflow.com/questions/1421672/can-why-using-char-instead-of-const-char-in-return-type-cause-crashes/1421957#1421957 4 Answer by Andrew Keeton for Can/Why using char * instead of const char * in return type cause crashes? Andrew Keeton 2009-09-14T14:35:03Z 2009-09-14T14:48:06Z <p>What you were told is <em>not</em> true.</p> <p>Returning a <code>const char *</code> can improve the semantics of a function (i.e. don't mess with what I'm giving you) but returning a <code>char *</code> is perfectly fine.</p> <p>However, in either case, you <strong><em>must</em></strong> make sure that you return a <code>char *</code> or <code>const char *</code> that was allocated on the heap in <code>my_function</code> (i.e. allocated using <code>malloc</code> or <code>new</code>), otherwise <code>my_function</code> will return, the memory for the <code>[const] char *</code> will be deallocated, and you will be accessing an invalid pointer.</p> <p>And finally you <strong><em>must</em></strong> remember to <code>free</code> or <code>delete</code> the <code>[const] char *</code> that's been returned to you once you're done with it, or you will leak memory. Aren't C/C++ such great languages?</p> <p>So, in C, you would have</p> <pre><code>const char *my_function() { const char *my_str = (const char *)malloc(MY_STR_LEN + 1); // +1 for null terminator. /* ... */ return my_str; } int main() { const char *my_str = my_function(); /* ... */ free(my_str); /* ... */ return 0; } </code></pre> http://stackoverflow.com/questions/1404470/c-effective-macro-usage/1404577#1404577 1 Answer by Andrew Keeton for C: Effective Macro Usage Andrew Keeton 2009-09-10T10:50:55Z 2009-09-10T10:50:55Z <p>Some good macro practices from the <a href="https://www.securecoding.cert.org/confluence/display/seccode/01.+Preprocessor+%28PRE%29" rel="nofollow">CERT C Secure Coding Wiki</a>:</p> <blockquote> <p>PRE00-C. Prefer inline or static functions to function-like macros<br /> PRE01-C. Use parentheses within macros around parameter names<br /> PRE02-C. Macro replacement lists should be parenthesized<br /> PRE03-C. Prefer typedefs to defines for encoding types<br /> PRE10-C. Wrap multi-statement macros in a do-while loop<br /> PRE11-C. Do not conclude a single statement macro definition with a semicolon<br /> PRE31-C. Never invoke an unsafe macro with arguments containing assignment, increment, decrement, volatile access, or function call<br /> PRE32-C. Do not use preprocessor directives inside macro arguments</p> </blockquote> http://stackoverflow.com/questions/1403715/problem-with-mips-assembly/1403835#1403835 0 Answer by Andrew Keeton for Problem with mips assembly Andrew Keeton 2009-09-10T07:31:38Z 2009-09-10T07:31:38Z <p>Make sure you have</p> <pre><code>#include &lt;stdio.h&gt; </code></pre> <p>at the top of your C source files that use <code>printf</code>.</p> http://stackoverflow.com/questions/1391583/what-does-adding-one-to-a-character-array-in-c-do/1391592#1391592 0 Answer by Andrew Keeton for What Does Adding One to a Character Array in C Do? Andrew Keeton 2009-09-08T01:53:15Z 2009-09-08T01:53:15Z <p><a href="http://stackoverflow.com/questions/394767/pointer-arithmetic">Pointer Arithmetic (Stack Overflow)</a></p> http://stackoverflow.com/questions/1387038/is-there-a-way-to-get-a-curried-form-of-the-binary-operators-in-sml-nj 1 Is there a way to get a Curried form of the binary operators in SML/NJ? Andrew Keeton 2009-09-06T23:49:41Z 2009-09-07T00:53:02Z <p>For example, instead of</p> <pre><code>- op =; val it = fn : ''a * ''a -&gt; bool </code></pre> <p>I would rather have</p> <pre><code>- op =; val it = fn : ''a -&gt; ''a -&gt; bool </code></pre> <p>for use in</p> <pre><code>val x = getX() val l = getList() val l' = if List.exists ((op =) x) l then l else x::l </code></pre> <p>Obviously I can do this on my own, for example,</p> <pre><code>val l' = if List.exists (fn y =&gt; x = y) l then l else x::l </code></pre> <p>but I want to make sure I'm not missing a more elegant way.</p> http://stackoverflow.com/questions/1384073/problem-with-flushing-input-stream-c/1384089#1384089 3 Answer by Andrew Keeton for problem with flushing input stream C Andrew Keeton 2009-09-05T19:30:38Z 2009-09-05T20:04:47Z <p><code>fflush(stdin)</code> is undefined behavior. Instead, make <code>scanf</code> "eat" the newline:</p> <pre><code>scanf("%s %d %f\n", e.name, &amp;e.age, &amp;e.bs); </code></pre> <p>Everyone else makes a good point about <code>scanf</code> being a bad choice. Instead, you should use <code>fgets</code> and <code>sscanf</code>:</p> <pre><code>const unsigned int BUF_SIZE = 1024; char buf[BUF_SIZE]; fgets(buf, BUF_SIZE, stdin); sscanf(buf, "%s %d %f", e.name, &amp;e.age, &amp;e.bs); </code></pre> http://stackoverflow.com/questions/1383993/is-there-an-easy-way-to-hide-html-source-from-the-end-user/1383996#1383996 14 Answer by Andrew Keeton for Is there an easy way to hide HTML Source from the end user? Andrew Keeton 2009-09-05T18:40:08Z 2009-09-05T18:40:08Z <p>No, the browser needs the HTML source to render the page. It's just one more step for the user to be able to view it. Period.</p> <p>However, you can <a href="http://www.google.com/webhp?hl=en#hl=en&amp;source=hp&amp;q=html+obfuscate&amp;aq=f&amp;aqi=&amp;oq=&amp;fp=3aa7f458acaa2672" rel="nofollow">obfuscate it</a>. Please think long and hard about why you need to do this, though. You'll probably find that this is not the correct solution.</p> http://stackoverflow.com/questions/1353022/reflection-support-in-c/1353027#1353027 5 Answer by Andrew Keeton for Reflection Support in C Andrew Keeton 2009-08-30T03:51:27Z 2009-08-30T03:59:27Z <p>Based on the responses to <a href="http://stackoverflow.com/questions/41453/how-can-i-add-reflection-to-a-c-application">How can I add reflection to a C++ application? (Stack Overflow)</a> and the fact that C++ is considered a "superset" of C, I would say you're out of luck.</p> <p>There's also a nice long answer about <a href="http://stackoverflow.com/questions/359237/why-does-c-not-have-reflection">why C++ doesn't have reflection (Stack Overflow)</a>.</p> http://stackoverflow.com/questions/1352361/suppress-redirect-stderr-when-calling-python-webrowser/1352363#1352363 0 Answer by Andrew Keeton for suppress/redirect stderr when calling python webrowser Andrew Keeton 2009-08-29T21:03:52Z 2009-08-29T21:03:52Z <p>What about sending the output to <code>/dev/null</code> instead of a temporary file?</p> http://stackoverflow.com/questions/1348928/pros-and-cons-of-vb-vba/1348953#1348953 12 Answer by Andrew Keeton for Pros and Cons of VB & VBA? Andrew Keeton 2009-08-28T19:40:05Z 2009-08-28T19:45:50Z <p>Read some of <a href="http://www.google.com/#hl=en&amp;source=hp&amp;q=site%3Awww.joelonsoftware.com+visual+basic&amp;aq=f&amp;aqi=&amp;oq=&amp;fp=9733483af0cc9d26" rel="nofollow">Joel Spolsky's articles</a> and you'll feel better about yourself. From his article <a href="http://www.joelonsoftware.com/articles/fog0000000006.html" rel="nofollow">Working on CityDesk, Part Three</a>:</p> <blockquote> <p>Visual Basic is an extremely productive way to write code, especially GUI code. Want bold text on a dialog box? It's one click in VB. Now try doing it in MFC. You have to create a subclassed control, it's a big mess, you have to know all about LOGFONTS and Windows window subclassing and a bunch of other things and you need about three lines of code once you have the magic class.</p> <p>But many VB programs are spaghetti, either because they're done as quick and dirty one-offs, or because they're written by hack programmers without training in object oriented programming, or even structured programming.</p> <p>What I wondered was, what happens if you take top-notch C++ programmers who dream in pointers, and let them code in VB. What I discovered at Fog Creek was that they become super-efficient coding machines. The code looks pretty good, it's object-oriented and robust, but you don't waste time using tools that are at a level lower than you need. I've spent years writing code for C++/MFC and years writing code in Visual Basic, and let me tell you, <strong>VB is just much, much more productive.</strong></p> </blockquote> <p>This simplicity attracts a lot of new programmers. Saying there are a lot of bad programmers using Visual Basic does not mean Visual Basic is a bad language; it simply means that Visual Basic is accessible to bad programmers (AKA new programmers).</p> http://stackoverflow.com/questions/1344758/is-it-possible-to-view-a-binary-in-ones-and-zeros/1344762#1344762 4 Answer by Andrew Keeton for Is it possible to view a binary in ones and zeros? Andrew Keeton 2009-08-28T02:38:24Z 2009-08-28T02:38:24Z <p>Use <a href="http://en.wikipedia.org/wiki/Hex%5Fdump" rel="nofollow">hexdump</a> or a <a href="http://en.wikipedia.org/wiki/Hex%5Feditor" rel="nofollow">hex editor</a> to view a binary in hexadecimal bytes.</p> <p>Hexadecimal is simply a more compact way to view binary. Every hexadecimal digit (0-F) represents four bits. For example, <code>0xF</code> in decimal is 15 and in binary is 1111.</p> http://stackoverflow.com/questions/1343890/rounding-number-to-2-decimal-places-in-c/1343925#1343925 4 Answer by Andrew Keeton for Rounding Number to 2 Decimal Places in C Andrew Keeton 2009-08-27T21:47:54Z 2009-08-27T21:47:54Z <p>There isn't a way to round a <code>float</code> to another <code>float</code> because the rounded <code>float</code> may not be representable (a limitation of floating-point numbers). For instance, say you round 37.777779 to 37.78, but the nearest representable number is 37.781.</p> <p>However, you <em>can</em> "round" a <code>float</code> by using a format string function.</p> http://stackoverflow.com/questions/1340876/how-to-read-a-string-of-length-n-from-standard-input/1340890#1340890 1 Answer by Andrew Keeton for How to read a string of length 'n' from Standard input Andrew Keeton 2009-08-27T12:52:16Z 2009-08-27T12:52:16Z <p>Make sure you allocate <code>str1</code> and <code>str2</code> properly.</p> <pre><code>char str1[STRING_SIZE]; char str2[STRING_SIZE]; </code></pre> <p>Also, keep in mind that <code>fgets</code> will null-terminate your string, so you're really only getting <code>STRING_SIZE - 1</code> characters.</p> http://stackoverflow.com/questions/1338714/accesing-dictionary-with-class-atribute/1338720#1338720 4 Answer by Andrew Keeton for accesing dictionary with class atribute Andrew Keeton 2009-08-27T03:37:15Z 2009-08-27T03:37:15Z <p>Have a look at <a href="http://stackoverflow.com/questions/1305532/convert-python-dict-to-object">http://stackoverflow.com/questions/1305532/convert-python-dict-to-object</a>.</p> http://stackoverflow.com/questions/1338690/good-way-of-handling-nonetype-objects-when-printing-in-python/1338693#1338693 0 Answer by Andrew Keeton for Good way of handling NoneType objects when printing in Python Andrew Keeton 2009-08-27T03:24:24Z 2009-08-27T03:30:12Z <pre><code>logging.info("NEW_SCORE : " + str(score)) </code></pre> <p>Proof by Python interpreter:</p> <pre><code>&gt;&gt;&gt; x = None &gt;&gt;&gt; "x: " + x Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; TypeError: cannot concatenate 'str' and 'NoneType' objects &gt;&gt;&gt; "x: " + str(x) 'x: None' </code></pre> <p>QED</p> http://stackoverflow.com/questions/1338518/one-liner-python-code-for-setting-string-to-0-string-if-empty/1338529#1338529 4 Answer by Andrew Keeton for One-liner Python code for setting string to 0 string if empty Andrew Keeton 2009-08-27T02:15:50Z 2009-08-27T02:15:50Z <pre><code>a = '0' if not line_parts[0] else line_parts[0] </code></pre> http://stackoverflow.com/questions/1296042/tuple-list-from-dict-in-python/1296049#1296049 13 Answer by Andrew Keeton for tuple list from dict in python Andrew Keeton 2009-08-18T19:42:48Z 2009-08-26T23:24:10Z <p>For Python 2.x only (thanks Alex):</p> <pre><code>yourdict = {} # ... items = yourdict.items() </code></pre> <p>See <a href="http://docs.python.org/library/stdtypes.html#dict.items" rel="nofollow">http://docs.python.org/library/stdtypes.html#dict.items</a> for details.</p> <p>For Python 3.x only (taken from <a href="http://stackoverflow.com/questions/1296042/tuple-list-from-dict-in-python/1296074#1296074">Alex's answer</a>):</p> <pre><code>yourdict = {} # ... items = list(yourdict.items()) </code></pre> http://stackoverflow.com/questions/1337935/python-object-property-help/1337976#1337976 5 Answer by Andrew Keeton for Python object @property help Andrew Keeton 2009-08-26T22:47:45Z 2009-08-26T22:52:56Z <p>The <code>property</code> method (and by extension, the <code>@property</code> decorator) <a href="http://docs.python.org/library/functions.html#property" rel="nofollow">requires a new-style class</a> i.e. a class that subclasses <code>object</code>.</p> <p>For instance,</p> <pre><code>class Point: </code></pre> <p>should be</p> <pre><code>class Point(object): </code></pre> <p>Also, the <code>setter</code> attribute (along with the others) was added in Python 2.6.</p> http://stackoverflow.com/questions/1335556/is-it-a-good-idea-to-hash-a-python-class/1335582#1335582 4 Answer by Andrew Keeton for Is it a good idea to hash a Python class? Andrew Keeton 2009-08-26T15:29:36Z 2009-08-26T15:40:13Z <p>Yes, any object that doesn't implement a <code>__hash__()</code> function will return its id when hashed. From <a href="http://docs.python.org/reference/datamodel.html#object.%5F%5Fhash%5F%5F" rel="nofollow">Python Language Reference: Data Model - Basic Customization</a>:</p> <blockquote> <p>User-defined classes have <code>__cmp__()</code> and <code>__hash__()</code> methods by default; with them, all objects compare unequal (except with themselves) and <code>x.__hash__()</code> returns <code>id(x)</code>.</p> </blockquote> <p>However, if you're looking to have a unique identifier, use <code>id</code> to be clear about your intent. A hash of an object should be a combination of the hashes of its components. See the above link for more details.</p> http://stackoverflow.com/questions/1335230/is-the-memory-of-a-character-array-freed-by-going-out-of-scope/1335249#1335249 2 Answer by Andrew Keeton for Is the memory of a (character) array freed by going out of scope? Andrew Keeton 2009-08-26T14:47:07Z 2009-08-26T14:47:07Z <p>Yes, the memory is freed automatically once <code>method1</code> returns. The memory for <code>str</code> is allocated on the stack and is freed once the method's stack frame is cleaned up. Compare this to memory allocated on the heap (via <code>malloc</code>) which you must explicitly free.</p> http://stackoverflow.com/questions/1330350/fast-dictonary-in-c-without-linear-search/1330359#1330359 6 Answer by Andrew Keeton for Fast dictonary in C without linear search Andrew Keeton 2009-08-25T19:11:59Z 2009-08-25T19:18:18Z <p>Use a <a href="http://en.wikipedia.org/wiki/Hash%5Ftable" rel="nofollow">Hash Table</a>. A hash table will have a constant-time lookup. <a href="http://bd-things.net/hash-maps-with-linear-probing-and-separate-chaining/" rel="nofollow">Here are some excerpts in C</a> and <a href="http://wiki.portugal-a-programar.org/c:snippet:hash%5Ftable%5Fc" rel="nofollow">an implementation in C (and Portuguese :)</a>.</p> http://stackoverflow.com/questions/1322884/does-going-out-of-scope-like-this-free-the-associated-memory/1322898#1322898 20 Answer by Andrew Keeton for Does going out of scope like this free the associated memory? Andrew Keeton 2009-08-24T14:58:12Z 2009-08-24T15:09:11Z <p>No, the memory is <em>not</em> deallocated after <code>method1</code>, so you'll have a memory leak. Yes, you will need to call <code>free</code> after you're done using the memory.</p> <p>You need to send a <strong><em>pointer to a pointer</em></strong> to <code>method2</code> if you want it to allocate memory. This is a common idiom in C programming, especially when the return value of a function is reserved for integer status codes. For instance,</p> <pre><code>void method2(char **str) { *str = (char *)malloc(10); } char *stringvar; method2(&amp;stringvar); free(stringvar); </code></pre> http://stackoverflow.com/questions/1319964/trying-to-use-execvp-in-c-with-user-input-in-unix/1319996#1319996 3 Answer by Andrew Keeton for Trying to use execvp() in C with user input in unix Andrew Keeton 2009-08-24T00:39:52Z 2009-08-24T01:08:30Z <p>You need to allocate memory for your strings. The following line only allocates <code>num_args</code> worth of pointers to <code>char</code>:</p> <pre><code>char *cmd[num_args]; </code></pre> <p>First of all, you'll be getting <code>num_args + 1</code> strings (don't forget that the command itself is <code>cmd[0]</code>). The easiest way is to statically allocate the memory as an array of character buffers:</p> <pre><code>const unsigned int MAX_LEN = 512; // Arbitrary number char cmd[num_args + 1][MAX_LEN]; </code></pre> <p>However, now you can't use <code>scanf</code> to read in a line because the user could input a string that's longer than your character buffer. Instead, you'll have to use <code>fgets</code>, which can limit the number of characters the user can input:</p> <pre><code>fgets(cmd[i], MAX_LEN, stdin); </code></pre> <p>Keep in mind that <code>fgets</code> also reads newline characters, so make sure to strip any stray ones that show up (but don't assume that they're there).</p> http://stackoverflow.com/questions/1837874/invalid-token-when-using-octal-numbers/1837896#1837896 Comment by Andrew Keeton on Invalid Token when using Octal numbers. Andrew Keeton 2009-12-03T08:55:38Z 2009-12-03T08:55:38Z Think of the possibilities for magic constants... no longer being constrained to <code>0xdeadbeef</code>, etc. :o http://stackoverflow.com/questions/1779365/what-does-abstract-mean-in-this-context/1779393#1779393 Comment by Andrew Keeton on what does abstract mean in this context? Andrew Keeton 2009-11-22T21:28:11Z 2009-11-22T21:28:11Z Also, don't be confused that Stack Overflow highlights <code>abstract</code> as if it were a keyword. The system that SO uses has to accommodate multiple programming languages, and in many <code>abstract</code> <i>is</i> a keyword. But not in Python. http://stackoverflow.com/questions/1779365/what-does-abstract-mean-in-this-context/1779393#1779393 Comment by Andrew Keeton on what does abstract mean in this context? Andrew Keeton 2009-11-22T21:24:17Z 2009-11-22T21:24:17Z This makes me a sad (programming) panda. http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454 Comment by Andrew Keeton on RegEx match open tags except XHTML self-contained tags Andrew Keeton 2009-11-19T17:28:06Z 2009-11-19T17:28:06Z @John Rasch Oy! You got your Unicode in my ASCII! http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454 Comment by Andrew Keeton on RegEx match open tags except XHTML self-contained tags Andrew Keeton 2009-11-19T14:37:27Z 2009-11-19T14:37:27Z @Bill In all its glory: <a href="http://imgur.com/gOPS2.png" rel="nofollow">imgur.com/gOPS2.png</a> http://stackoverflow.com/questions/1645669/char-a-b-what-type-is-b-a-and-how-do-i-printf-it/1645707#1645707 Comment by Andrew Keeton on char *a, *b; what type is (b-a) and how do I printf it? Andrew Keeton 2009-10-30T04:40:55Z 2009-10-30T04:40:55Z +1 For C standard quirks like a pointer difference not fitting inside of a <code>ptrdiff&#95;t</code> (I can also think of much nastier words than &quot;quirks&quot;). http://stackoverflow.com/questions/1634995/complexity-help-on2-0nlog-etc/1635011#1635011 Comment by Andrew Keeton on complexity help..O(n^2), 0(nlog) etc Andrew Keeton 2009-10-28T14:59:29Z 2009-10-28T14:59:29Z If you randomize the pivots, the expected number of comparisons done in Quicksort is <i>at most</i> 2n*ln(n). See <a href="http://www.cs.cmu.edu/~odonnell/prob/lecture7.pdf" rel="nofollow">cs.cmu.edu/~odonnell/prob/lecture7.pdf</a>. http://stackoverflow.com/questions/1634153/why-do-we-need-to-typecast-what-malloc-returns/1634163#1634163 Comment by Andrew Keeton on Why do we need to typecast what malloc returns? Andrew Keeton 2009-10-28T00:32:41Z 2009-10-28T00:32:41Z This is the typical response, but I don't completely agree. Sure, if you have a braindead compiler it might let you get away without including <code>stdlib.h</code>, but there are some cases where you can let the compiler check your work. See my comment on <a href="http://stackoverflow.com/questions/1322884/does-going-out-of-scope-like-this-free-the-associated-memory/1322898#1322898" rel="nofollow" title="does going out of scope like this free the associated memory">stackoverflow.com/questions/1322884/&hellip;</a> http://stackoverflow.com/questions/1552427/have-you-ever-been-the-victim-of-a-bug-in-a-programming-language-or-technology Comment by Andrew Keeton on Have you ever been the victim of a bug in a programming language or technology? Andrew Keeton 2009-10-12T02:48:00Z 2009-10-12T02:48:00Z Good point, fixed. http://stackoverflow.com/questions/1502562/gets-does-not-work/1502642#1502642 Comment by Andrew Keeton on gets() does not work Andrew Keeton 2009-10-01T13:44:06Z 2009-10-01T13:44:06Z +1 for warning about <code>gets</code>. So dangerous that the C standard actually deprecated it. (They could stand to deprecate a few more, however...) http://stackoverflow.com/questions/1478697/for-line-in-openfilename/1478712#1478712 Comment by Andrew Keeton on for line in open(filename) Andrew Keeton 2009-09-25T18:20:28Z 2009-09-25T18:20:28Z I think you mean <code>f</code> instead of <code>filename</code> in &quot;<code>filename</code> would be closed...&quot; http://stackoverflow.com/questions/1386579/what-is-a-good-data-structure-to-represent-an-undirected-graph/1396838#1396838 Comment by Andrew Keeton on What is a good data structure to represent an undirected graph? Andrew Keeton 2009-09-16T10:01:04Z 2009-09-16T10:01:04Z I feel like an ass for not looking at your links; I just assumed they were the standard adjacency list vs matrix stuff. Even though they're not exactly what I was looking for, they were still helpful. http://stackoverflow.com/questions/1386579/what-is-a-good-data-structure-to-represent-an-undirected-graph/1396838#1396838 Comment by Andrew Keeton on What is a good data structure to represent an undirected graph? Andrew Keeton 2009-09-15T23:12:57Z 2009-09-15T23:12:57Z I'm sorry but I voted down your answer so it wouldn't get auto-accepted. Not that it isn't helpful, it's just that it I don't think it (or the other answers) deserve to be accepted yet. If you go ahead and edit it I will retract my -1. http://stackoverflow.com/questions/1418645/getting-started-in-c/1418665#1418665 Comment by Andrew Keeton on Getting Started in C Andrew Keeton 2009-09-13T19:57:57Z 2009-09-13T19:57:57Z +1 for -Wall. I would also add -Wextra and -std=c99 to the mix. http://stackoverflow.com/questions/1412081/are-do-while-false-loops-common/1412147#1412147 Comment by Andrew Keeton on Are do-while-false loops common? Andrew Keeton 2009-09-11T17:44:04Z 2009-09-11T17:44:04Z +1 <code>goto</code> gets a bad rap, but in this case it just makes sense.