User Graeme Perrow - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T05:56:40Z http://stackoverflow.com/feeds/user/1821 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1919388/testing-for-a-non-null-pointer-and-returning-null-otherwise/1919411#1919411 8 Answer by Graeme Perrow for Testing for a non-null pointer, and returning null otherwise Graeme Perrow 2009-12-17T04:12:33Z 2009-12-17T04:12:33Z <p>It's "okay" to do this, i.e. there's nothing wrong with it, although it's not very useful. If you're stepping through in a debugger, you should be able to display the value of p_Pointer anyway.</p> <p>It's similar to </p> <pre><code>if( flag == TRUE ) { return TRUE; } else { return FALSE; } </code></pre> <p>rather than just <code>return flag;</code> </p> http://stackoverflow.com/questions/1919148/64-bit-hexadecimal-to-base-10-conversion/1919158#1919158 3 Answer by Graeme Perrow for 64 bit hexadecimal to base 10 conversion Graeme Perrow 2009-12-17T02:41:34Z 2009-12-17T02:41:34Z <p>Windows calculator says it's 1,619,587,083,804,677,205</p> http://stackoverflow.com/questions/1917718/are-multiple-conditional-operators-in-this-situation-a-good-idea/1917736#1917736 30 Answer by Graeme Perrow for Are multiple conditional operators in this situation a good idea? Graeme Perrow 2009-12-16T21:06:05Z 2009-12-16T21:06:05Z <p>I have used this type of construction many times. As long as it's formatted nicely (i.e. not all on one line, making it unreadable), I don't see a problem with it.</p> http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84936#84936 112 Answer by Graeme Perrow for What's your favorite "programmer" cartoon? Graeme Perrow 2008-09-17T16:16:33Z 2009-12-16T14:32:40Z <p><img src="http://www.dilbert.com/dyn/str%5Fstrip/000000000/00000000/0000000/000000/00000/1000/100/1149/1149.strip.gif" alt="Internet full"></p> http://stackoverflow.com/questions/1903194/can-i-add-2-encrypted-strings-together-and-decrypt-them/1903276#1903276 2 Answer by Graeme Perrow for Can I add 2 encrypted strings together and decrypt them? Graeme Perrow 2009-12-14T20:25:44Z 2009-12-14T20:25:44Z <p>If you're using ECB (<a href="http://en.wikipedia.org/wiki/Block%5Fcipher%5Fmodes%5Fof%5Foperation#Electronic%5Fcodebook%5F.28ECB.29" rel="nofollow">electronic code book</a>), then it should be possible (assuming they use the same encryption key), because each block is decrypted independent of other blocks. If you're using CBC (<a href="http://en.wikipedia.org/wiki/Block%5Fcipher%5Fmodes%5Fof%5Foperation#Cipher-block%5Fchaining%5F.28CBC.29" rel="nofollow">cipher block chaining</a>) this will not work because each block is encrypted using data from the previous block. However, using ECB is way less secure than CBC.</p> http://stackoverflow.com/questions/1888202/i-need-some-tool-to-view-http-request/1893619#1893619 0 Answer by Graeme Perrow for I need some tool to view Http Request. Graeme Perrow 2009-12-12T14:38:32Z 2009-12-12T14:38:32Z <p>If you're not using Windows, disregard this answer.</p> <p>I used to use Wireshark, but I recently started using <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=983b941d-06cb-4658-b7f6-3088333d062f&amp;displaylang=en" rel="nofollow">Microsoft Network Monitor</a> which is very nice as well. If you have your own custom protocol (which I know the OP does not), it is <strong>very easy</strong> to write your own protocol parser, which is a big PITA with Wireshark.</p> http://stackoverflow.com/questions/1890742/why-is-it-elif-and-not-elsif-in-c-c/1890776#1890776 5 Answer by Graeme Perrow for Why is it #elif and not #elsif in C/C++ Graeme Perrow 2009-12-11T20:46:15Z 2009-12-11T20:46:15Z <p>Your example and your question don't match. There is no <code>elsif</code> or even <code>elseif</code> in C. </p> <p>I don't know why the preprocessor uses <code>#elif</code> rather than <code>#elsif</code>, just the preference of Messrs. Kernighan and Richie, I suppose. The fact that they're different in perl (elsif) and python (elif) annoys me to no end.</p> http://stackoverflow.com/questions/1890711/integrating-moved-files-in-perforce/1890761#1890761 1 Answer by Graeme Perrow for Integrating moved files in perforce Graeme Perrow 2009-12-11T20:43:34Z 2009-12-11T20:43:34Z <p>I don't believe so. Since there is no direct <code>p4 rename</code>, you have to integrate and delete - once you've done that, integrates from another branch no longer go to the right file. At least that's been my experience.</p> http://stackoverflow.com/questions/1842661/how-can-i-cause-ldapsimplebinds-to-timeout 1 How can I cause ldap_simple_bind_s to timeout? Graeme Perrow 2009-12-03T20:24:48Z 2009-12-09T21:26:29Z <p>We recently had a problem with our test LDAP server - it was hung and wouldn't respond to requests. As a result, our application hung forever* while trying to bind to it. This only happened on Unix machines - on Windows, the <code>ldap_simple_bind_s</code> call timed out after about 30 seconds.</p> <p>* I don't know if it really was <em>forever</em>, but it was at least several minutes.</p> <p>I added calls to <code>ldap_set_option</code>, trying both <code>LDAP_OPT_TIMEOUT</code> and <code>LDAP_OPT_NETWORK_TIMEOUT</code>, but the bind call still hung. Is there any way to make <code>ldap_simple_bind_s</code> time out after some period of time of my choosing?</p> http://stackoverflow.com/questions/1844759/please-help-with-sql-query-involving-3-tables/1844814#1844814 0 Answer by Graeme Perrow for please help with SQl query involving 3 tables Graeme Perrow 2009-12-04T04:16:30Z 2009-12-04T04:16:30Z <p>I like to specifically list the joins where possible. I believe something like this would work:</p> <pre><code>select u2.UserID, u2.EID, u2.Name, u2.Email, u2.Department, u2.Enabled, s.SiteID, s.SiteCode, s.SiteName from Users2 u2 join UserSites2 us2 on u2.UserID=us2.UserID join sites s on us2.SiteID=s.SideID where u2.EID=&lt;eid&gt; and us2.SiteID=&lt;siteid&gt; </code></pre> http://stackoverflow.com/questions/1842608/regular-expression-to-replace-with-xml-node/1842700#1842700 0 Answer by Graeme Perrow for Regular expression to replace with XML node Graeme Perrow 2009-12-03T20:30:40Z 2009-12-03T20:30:40Z <p>Something like this should work:</p> <pre><code>import re,sys f = open( sys.argv[1], 'r' ) for i in f: g = re.match( r'REPLACE\((.*)\)(.*)', i ) if g is None: print i else: print '&lt;replace name=\"%s\"&gt;%s&lt;/replace&gt;' % (g.group(1),g.group(2)) f.close() </code></pre> http://stackoverflow.com/questions/1842007/ssl-wrapper-stream-in-c/1842160#1842160 0 Answer by Graeme Perrow for SSL wrapper stream in C Graeme Perrow 2009-12-03T19:04:25Z 2009-12-03T19:04:25Z <p>I have used a <code>BIO_s_mem</code> as a cover for SSL socket operations. I would read from and write to the socket myself (rather than giving the handle to OpenSSL and having it do the reading/writing). The handshake is done when you call <code>SSL_accept</code> (on the server side) or <code>SSL_connect</code> (on the client side). Other than that, just call <code>SSL_read</code> and <code>SSL_write</code> to do the reading and writing.</p> http://stackoverflow.com/questions/1811173/why-does-my-python-script-randomly-get-killed/1811196#1811196 1 Answer by Graeme Perrow for Why does my python script randomly get killed? Graeme Perrow 2009-11-28T00:56:40Z 2009-11-28T00:56:40Z <p>Is it possible that it's hitting an uncaught exception? Are you running this from a shell, or is it being run from cron or in some other automated way? If it's automated, the output may not be displayed anywhere.</p> http://stackoverflow.com/questions/1804317/double-pointer-and-structures/1804352#1804352 2 Answer by Graeme Perrow for double pointer and structures Graeme Perrow 2009-11-26T15:33:43Z 2009-11-26T15:33:43Z <p>This looks correct, as long as you realize that you're getting an array of <strong>pointers</strong>, not an array of structures, and you have to assign the pointers yourself. It sounds like that's what you're doing. </p> <p>Also remember you can assign from <code>array_of_ptrs[0]</code> up to <code>array_of_ptrs[num-1]</code>. If you assign <code>array_of_ptrs[num]</code> you're in trouble.</p> http://stackoverflow.com/questions/1793867/best-way-to-check-if-a-character-array-is-empty/1793893#1793893 3 Answer by Graeme Perrow for Best way to check if a character array is empty Graeme Perrow 2009-11-25T00:18:11Z 2009-11-25T00:18:11Z <p>The second one is fastest. Using <code>strlen</code> will be close <strong>if</strong> the string is indeed empty, but <code>strlen</code> will always iterate through every character of the string, so if it is <em>not</em> empty, it will do much more work than you need it to.</p> <p>As James mentioned, the third option wipes the string out before checking, so the check will always succeed but it will be meaningless.</p> http://stackoverflow.com/questions/28002/regular-cast-vs-staticcast-vs-dynamiccast 39 Regular cast vs. static_cast vs. dynamic_cast Graeme Perrow 2008-08-26T13:20:55Z 2009-11-23T13:27:08Z <p>I've been writing C and C++ code for almost twenty years, but there's one aspect of these languages that I've never really understood. I've obviously used regular casts (i.e.</p> <pre><code>MyClass *m = (MyClass *)ptr; </code></pre> <p>all over the place, but there seem to be two other types of casts, and I don't know the difference. What's the difference between the following lines of code?</p> <pre><code>MyClass *m = (MyClass *)ptr; MyClass *m = static_cast&lt;MyClass *&gt;(ptr); MyClass *m = dynamic_cast&lt;MyClass *&gt;(ptr); </code></pre> http://stackoverflow.com/questions/58640/great-programming-quotes/58651#58651 252 Answer by Graeme Perrow for Great programming quotes Graeme Perrow 2008-09-12T10:44:56Z 2009-11-23T03:24:18Z <blockquote> <p>In theory, theory and practice are the same. In practice, they're not.</p> </blockquote> http://stackoverflow.com/questions/1776766/call-another-function-when-main-exits/1776775#1776775 7 Answer by Graeme Perrow for Call another function when main() exits. Graeme Perrow 2009-11-21T21:03:17Z 2009-11-21T21:03:17Z <p>Try the <code>atexit()</code> function:</p> <pre><code>void myfunc() { /* Called when the program ends */ } int main( int arc, char *argv[] ) { atexit( myfunc ); ... return 0; } </code></pre> http://stackoverflow.com/questions/1772311/configuring-sql-anywhere-to-read-from-an-ase-server/1772858#1772858 2 Answer by Graeme Perrow for Configuring SQL Anywhere to read from an ASE server Graeme Perrow 2009-11-20T19:53:51Z 2009-11-20T19:53:51Z <p>Sorry, I'm not really a .NET guy so I don't know how to answer your question. </p> <p>You might want to try asking this question on <a href="http://sqla.stackexchange.com" rel="nofollow">sqla.stackexchange.com</a>, which is basically a SQL Anywhere-specific version of Stack Overflow. The sqla site is in beta, and is not run or officially endorsed by Sybase, but several Sybase employees (myself included) contribute there.</p> http://stackoverflow.com/questions/1752589/question-about-send-recv/1752653#1752653 3 Answer by Graeme Perrow for Question about send / recv Graeme Perrow 2009-11-17T23:36:20Z 2009-11-17T23:36:20Z <ol> <li><p>Assuming this is TCP (not UDP), you can think of the socket as a stream of bytes. The sender can put them in in whatever way <em>he</em> wants, and you can get them out in whatever way <em>you</em> want. So the sender could write a 1k chunk in one call, and you can receive them a byte at a time if you want.</p></li> <li><p>There are a number of ways, but here are two fairly simple ones:</p> <ul> <li>if the sender closes the socket after sending all of its data, the receiver will receive all the data sent, and the next call to recv will return 0, indicating that there is nothing more to receive. This is how HTTP/1.0 works.</li> <li>You can change your protocol to send some kind of header containing the length of the data you are about to send, and then recv will know how many bytes to expect. With the Content-length header, this is how HTTP/1.1 works (well, for the most part).</li> </ul></li> <li><p>You can use select to tell you whether there is anything there, though it doesn't tell you how much. See question 2.</p></li> </ol> http://stackoverflow.com/questions/1749531/help-on-typedefs-basic-c-c/1749560#1749560 1 Answer by Graeme Perrow for help on typedefs - basic c/c++ Graeme Perrow 2009-11-17T15:16:04Z 2009-11-17T15:16:04Z <p>In your case, <code>vec2_t</code> is an array of 2 GLfloats and <code>vec3_t</code> is an array of 3 GLfloats. You can then do stuff like:</p> <pre><code>vec2_t x; // do stuff with x[0] and x[1] </code></pre> http://stackoverflow.com/questions/1746491/how-to-draw-dotted-line-with-css/1746494#1746494 0 Answer by Graeme Perrow for How to draw dotted line with css? Graeme Perrow 2009-11-17T04:01:34Z 2009-11-17T04:01:34Z <pre><code>.myclass { border-bottom: thin red dotted; } </code></pre> http://stackoverflow.com/questions/1743014/sql-anywhere-table-length/1744126#1744126 3 Answer by Graeme Perrow for SQL Anywhere table length Graeme Perrow 2009-11-16T18:56:01Z 2009-11-16T18:56:01Z <p>To find the number of bytes taken up by the data in a table:</p> <pre><code>select db_property('pagesize')*(stab.table_page_count+stab.ext_page_count) from sys.systab stab join sys.sysuser suser on stab.creator=suser.user_id where stab.table_name='table_name' and suser.user_name='user_name' </code></pre> <p>This does not include the size of any indexes or triggers on the table.</p> http://stackoverflow.com/questions/1703235/constant-pointer-structs/1703274#1703274 3 Answer by Graeme Perrow for Constant Pointer / structs Graeme Perrow 2009-11-09T19:43:48Z 2009-11-09T19:43:48Z <p>The way you've described it sounds exactly right. I might do something like</p> <pre><code>int sec = t1-&gt;sec + 60*(t1-&gt;min + 60*t1-&gt;hours); </code></pre> <p>Then similarly for t2, then subtract one from the other and break the result down into minutes and hours.</p> http://stackoverflow.com/questions/1663385/deploying-sql-anywhere-10-runtime-engine/1664210#1664210 1 Answer by Graeme Perrow for Deploying SQL Anywhere 10 Runtime Engine Graeme Perrow 2009-11-02T22:44:08Z 2009-11-03T15:46:03Z <p>I know zilch about PowerBuilder, and I have no idea what "cinema" refers to, but I do know that there are no error messages in SQL Anywhere that contain "cinema". However, "Unable to start specified database" is definitely a SQL Anywhere error message. Can you post the full contents of your connection string? (You can either update your question or add a comment to this answer.)</p> <p><strong>Edit</strong> after OP comment:</p> <p>You don't need to specify the <code>-ga</code> switch, since the client library will add it for you (unless you use the AUTOSTOP=NO connection parameter), and you shouldn't add the <code>-n</code> switch to the START line, since that's what the ENG parameter is for. Neither of these will cause your problem however. The obvious thing to check is that you've specified the correct path to the .db file and that you have permission to modify the file. If that's OK, you could add the <code>LOG=&lt;filename&gt;</code> parameter to the connection string, and then check the contents of that file for more detailed information.</p> http://stackoverflow.com/questions/1663344/makefile-missing-separator/1663426#1663426 0 Answer by Graeme Perrow for makefile missing separator Graeme Perrow 2009-11-02T20:15:55Z 2009-11-02T20:15:55Z <p>I have seen problems like this caused by blank lines that aren't blank - they contain tabs or spaces. Clearing out all whitespace on the blank lines may solve it.</p> <p><em>Edited to add</em>: Upon rereading your question, I see that this may not be your particular problem given the line number and code you posted, but it could be a problem for others so I will leave my answer.</p> http://stackoverflow.com/questions/1650244/python-regular-expression/1650364#1650364 1 Answer by Graeme Perrow for Python regular expression Graeme Perrow 2009-10-30T15:06:55Z 2009-10-30T15:06:55Z <p>This works:</p> <pre><code>&gt;&gt;&gt; x = re.search('\((.*),\s*(.*)\)', " {'result':(Boolean, MessageString)} ") &gt;&gt;&gt; x.group(1) 'Boolean' &gt;&gt;&gt; x.group(2) 'MessageString' </code></pre> http://stackoverflow.com/questions/1643643/how-to-test-for-multiple-command-line-arguments-sys-argv/1643716#1643716 0 Answer by Graeme Perrow for How to test for multiple command line arguments (sys.argv Graeme Perrow 2009-10-29T13:24:33Z 2009-10-30T10:54:32Z <p>I believe this would work, and would avoid iterating over sys.argv:</p> <pre><code>hlo = [] for i in range(len(sh.col_values(8))): if sh.cell(i, 1).value in sys.argv[1:]: hlo.append(sh.cell(i, 8).value) </code></pre> http://stackoverflow.com/questions/1631425/actual-total-size-of-structs-members/1631471#1631471 1 Answer by Graeme Perrow for Actual total size of struct's members Graeme Perrow 2009-10-27T15:09:50Z 2009-10-27T15:09:50Z <p>Look into the <code>#pragma pack</code> macro for your compiler. Some compilers use <code>#pragma options align=packed</code> or something similar.</p> http://stackoverflow.com/questions/274054/what-are-your-favorite-metaphors-for-technical-concepts/1620780#1620780 1 Answer by Graeme Perrow for What are your favorite metaphors for technical concepts? Graeme Perrow 2009-10-25T12:32:43Z 2009-10-25T12:32:43Z <p>From an <a href="http://www.cutthechatter.com/2007/02/daddy-whats-public-key-cryptography.html" rel="nofollow">article I wrote</a> on my blog a couple of years ago. I was trying to explain SSL to my eight-year-old:</p> <p><strong>Me:</strong> If I want to send a message to another computer, I write the message on a kind of postcard, with the address of the other computer on it, and then I send it. The postcard goes out, sometimes on a wire, in this case through the air –<br /> <strong>Ryan:</strong> Like radio waves?<br /> <strong>Me:</strong> Exactly. Then the other computer receives the postcard, checks the address, and figures that the postcard is for him. Then he reads the message. But, if there's another computer nearby, it can look at the postcard too, even though it's got someone else's address on it. So if I want to send a secret message to a computer that's my friend, I don't want that other computer to be able to read it. So, I take the data on the postcard, and mush* it all up, and change it, and make it look funny. My friend knows that it's mushed up, and it un-mushes it and gets the original secret message out. But the other computer doesn't know this, so it looks at the message and says "Huh? What's that mean?"<br /> <strong>Ryan:</strong> &lt;giggle><br /> <strong>Me:</strong> When we first start talking, I tell my friend "Hey, I'm going to mush up this data, and here's how I'm going to do it." and I give him some stuff that allows him to un-mush the message — that's called the "handshake".<br /> <strong>Ryan:</strong> Like this? &lt;shakes my hand><br /> <strong>Me:</strong> Yes, just like that. It's a way that two computers say "hello, I'm going to send you some mushed data, here's how to un-mush it".<br /> <strong>Ryan:</strong> That's cool.</p> <p>* – <em>Important note:</em> Note that "mush" as used here rhymes with "bush" or "push", not "hush".</p> http://stackoverflow.com/questions/1928718/calling-an-outside-function-in-python Comment by Graeme Perrow on calling an outside function in python Graeme Perrow 2009-12-18T16:37:21Z 2009-12-18T16:37:21Z Ummm... <code>print pass</code>? http://stackoverflow.com/questions/1928155/dynamically-assigning-numbers-to-an-array-in-c/1928256#1928256 Comment by Graeme Perrow on Dynamically assigning numbers to an array in C Graeme Perrow 2009-12-18T13:55:55Z 2009-12-18T13:55:55Z Your new answer requires the extra byte as well. http://stackoverflow.com/questions/1928155/dynamically-assigning-numbers-to-an-array-in-c/1928256#1928256 Comment by Graeme Perrow on Dynamically assigning numbers to an array in C Graeme Perrow 2009-12-18T13:42:56Z 2009-12-18T13:42:56Z If you're going to do this, declare a as <code>char a[6]</code> - you need an extra byte for the NULL character strcpy will append. http://stackoverflow.com/questions/1923599/pointer-vs-handles-in-c-are-the-terms-used-to-convey-separate-things/1923618#1923618 Comment by Graeme Perrow on pointer vs handles in C (are the terms used to convey separate things?) Graeme Perrow 2009-12-17T18:30:25Z 2009-12-17T18:30:25Z Oops - I meant to say &quot;Handles are sometimes referred to as &quot;opaque&quot; for this reason&quot; http://stackoverflow.com/questions/1923599/pointer-vs-handles-in-c-are-the-terms-used-to-convey-separate-things/1923618#1923618 Comment by Graeme Perrow on pointer vs handles in C (are the terms used to convey separate things?) Graeme Perrow 2009-12-17T18:22:33Z 2009-12-17T18:22:33Z +1 Handles are sometimes referred to as &quot;opaque&quot; handles for this reason. http://stackoverflow.com/questions/1922849/boolean-query/1922913#1922913 Comment by Graeme Perrow on Boolean Query.. Graeme Perrow 2009-12-17T16:56:40Z 2009-12-17T16:56:40Z If the OP is not sure how to properly use boolean variables, the concept of lambdas might be a little advanced. http://stackoverflow.com/questions/1903194/can-i-add-2-encrypted-strings-together-and-decrypt-them/1903270#1903270 Comment by Graeme Perrow on Can I add 2 encrypted strings together and decrypt them? Graeme Perrow 2009-12-14T20:47:43Z 2009-12-14T20:47:43Z Hey Michael - I'll upvote your answer if you upvote mine. :-) http://stackoverflow.com/questions/1896339/how-can-delete-one-row-from-mysql/1896348#1896348 Comment by Graeme Perrow on how can delete one row from MySQL?? Graeme Perrow 2009-12-13T21:22:21Z 2009-12-13T21:22:21Z OK, well put - I'll buy that. Consider yourself un-downvoted. http://stackoverflow.com/questions/1896339/how-can-delete-one-row-from-mysql/1896348#1896348 Comment by Graeme Perrow on how can delete one row from MySQL?? Graeme Perrow 2009-12-13T17:00:07Z 2009-12-13T17:00:07Z Your overall solution is unquestionably better. But when I see a question like &quot;How do I do <i>X</i> &quot;, I don't like seeing answers like &quot;You don't want to do <i>X</i> . You want to do <i>Y</i> .&quot; Johanna asked &quot;how do I delete a row&quot; and after reading your answer, she still doesn't know how to delete a row. http://stackoverflow.com/questions/1896339/how-can-delete-one-row-from-mysql/1896348#1896348 Comment by Graeme Perrow on how can delete one row from MySQL?? Graeme Perrow 2009-12-13T15:43:36Z 2009-12-13T15:43:36Z Technically, everything you said is correct (and I agree with you), but nothing you've said here answers the question or helps solve the OP's immediate problem. http://stackoverflow.com/questions/1893413/how-to-define-spaces-between-two-lines-using-css/1893705#1893705 Comment by Graeme Perrow on How to define spaces between two lines using CSS? Graeme Perrow 2009-12-12T15:12:49Z 2009-12-12T15:12:49Z FYI this should be a comment on an answer, not another answer. Looks like you don't have the rep to leave a comment, so you'll have to answer a few questions yourself to gain some rep before commenting. http://stackoverflow.com/questions/1893595/what-are-the-benefits-of-using-names-rather-than-version-numbers/1893617#1893617 Comment by Graeme Perrow on What are the benefits of using names rather than version numbers? Graeme Perrow 2009-12-12T15:09:08Z 2009-12-12T15:09:08Z I don't deal with the Mac often either, so if someone asked me if Tiger came before or after Jaguar or Panther, I have no idea. But I know 10.4 came after 10.3 and before 10.5. http://stackoverflow.com/questions/1890742/why-is-it-elif-and-not-elsif-in-c-c/1890776#1890776 Comment by Graeme Perrow on Why is it #elif and not #elsif in C/C++ Graeme Perrow 2009-12-12T02:23:19Z 2009-12-12T02:23:19Z Thanks Neil, I've been writing C code for twenty years and I did not know that. I guess I just assumed K&amp;R both wrote the language and then wrote the book. http://stackoverflow.com/questions/1842661/how-can-i-cause-ldapsimplebinds-to-timeout/1877011#1877011 Comment by Graeme Perrow on How can I cause ldap_simple_bind_s to timeout? Graeme Perrow 2009-12-10T16:00:10Z 2009-12-10T16:00:10Z Thanks - I don't know why using the asynchronous version of the function didn't occur to me but that fixed the problem. http://stackoverflow.com/questions/1880984/when-are-variables-removed-from-memory-in-c/1881001#1881001 Comment by Graeme Perrow on When are variables removed from memory in C++? Graeme Perrow 2009-12-10T13:38:22Z 2009-12-10T13:38:22Z Why the downvotes? What's wrong with this answer?