User Greg Hewgill - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T10:19:10Zhttp://stackoverflow.com/feeds/user/893http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1818699/timing-in-javascript/1818728#18187284Answer by Greg Hewgill for Timing in JavaScriptGreg Hewgill2009-11-30T09:21:28Z2009-11-30T09:21:28Z<p>While the Date object returns times in milliseconds, that's not actually the resolution of the timer behind it. As an example, the timer might tick over once every 10 ms. If your process only takes 3 ms, then most of the time you won't see a nonzero measurement (and sometimes you'll see 10 ms).</p>
<p>The solution is to run your function many times, and time the whole thing. For example, run it a million times and divide the total time by 1000000 to get the average time of one run.</p>
http://stackoverflow.com/questions/1818641/why-do-win32-api-functions-dont-have-overloads-and-instead-use-ex-as-suffix/1818659#18186595Answer by Greg Hewgill for Why do win32 API functions don't have overloads and instead use Ex as suffix?Greg Hewgill2009-11-30T09:06:18Z2009-11-30T09:06:18Z<p>The C language doesn't support function overloading at all.</p>
http://stackoverflow.com/questions/1817196/gcc-g-error-when-compiling-large-file/1817218#18172181Answer by Greg Hewgill for gcc/g++: error when compiling large fileGreg Hewgill2009-11-30T00:02:57Z2009-11-30T01:23:38Z<p>You may be better off using a constant data table instead. For example, instead of doing this:</p>
<pre><code>void f() {
a.push_back("one");
a.push_back("two");
a.push_back("three");
// ...
}
</code></pre>
<p>try doing this:</p>
<pre><code>const char *data[] = {
"one",
"two",
"three",
// ...
};
void f() {
for (size_t i = 0; i < sizeof(data)/sizeof(data[0]); i++) {
a.push_back(data[i]);
}
}
</code></pre>
<p>The compiler will likely be much more efficient generating a large constant data table, rather than huge functions containing many <code>push_back()</code> calls.</p>
http://stackoverflow.com/questions/1817266/is-it-better-faster-to-have-class-variables-or-local-function-variables/1817273#18172739Answer by Greg Hewgill for Is it better/faster to have class variables or local function variables?Greg Hewgill2009-11-30T00:22:00Z2009-11-30T00:22:00Z<p>By limiting the scope of your variables, you are giving more opportunity to the compiler optimiser to rearrange your code and make it run faster. For example, it might keep the values of those variables entirely within CPU registers, which may be an order of magnitude faster than memory access. Also, if those variables were class instance variables, then the compiler would have to generate code to dereference <code>this</code> every time you accessed them, which would very likely be slower than local variable access.</p>
<p>As always, you should measure the performance yourself and try the code both ways (or better, as many ways as you can think of). All optimisation advice is subject to whatever your compiler <em>actually</em> does, which requires experimentation.</p>
http://stackoverflow.com/questions/1816784/create-executable-from-assembly-code/1816806#18168062Answer by Greg Hewgill for Create Executable From Assembly CodeGreg Hewgill2009-11-29T21:16:08Z2009-11-29T21:16:08Z<p>Your code as given is suitable for 16-bit DOS systems. To use a modern assembler, you will have to modify your code to work in a 32-bit environment, which may be a nontrivial process. All the code you've given so far will need to be rewritten.</p>
<p>I recommend <a href="http://www.nasm.us/" rel="nofollow">NASM</a> as it is an active, well supported project.</p>
http://stackoverflow.com/questions/600293/how-to-check-if-a-number-is-a-power-of-2/600306#600306135Answer by Greg Hewgill for How to check if a number is a power of 2Greg Hewgill2009-03-01T19:06:25Z2009-11-29T18:41:05Z<p>There's a simple trick for this problem:</p>
<pre><code>bool IsPowerOfTwo(ulong x)
{
return (x & (x - 1)) == 0;
}
</code></pre>
<p>Discovery of how and why this works is left as an exercise for the reader, as well as consideration of an obvious edge case.</p>
http://stackoverflow.com/questions/1814575/python-how-to-shutdown-a-threaded-http-server-with-persistent-connections-how-t/1814588#18145881Answer by Greg Hewgill for Python: How to shutdown a threaded HTTP server with persistent connections (how to kill readline() from another thread)?Greg Hewgill2009-11-29T03:50:14Z2009-11-29T03:50:14Z<p>You're almost there—the correct approach is to call <code>rfile.close()</code> and to catch the broken pipe errors and exit your loop when that happens.</p>
http://stackoverflow.com/questions/1813732/isnumber-function-doesnt-work-for-me-unix-shell/1813753#18137531Answer by Greg Hewgill for is_number function doesn't work for me - unix shellGreg Hewgill2009-11-28T20:49:54Z2009-11-28T20:49:54Z<p>Do you mean to use <code>return</code> instead of <code>echo</code>?</p>
<pre>
return [n]
Causes a function to exit with the return value specified by n.
If n is omitted, the return status is that of the last command
executed in the function body.
</pre>
http://stackoverflow.com/questions/1811712/how-to-export-all-yahoo-emails-using-php/1811717#18117170Answer by Greg Hewgill for How to export all Yahoo emails using PHPGreg Hewgill2009-11-28T05:50:44Z2009-11-28T05:50:44Z<p>I believe Yahoo mail supports IMAP, which would be by far the best way to access the sender name for all your emails. It also looks like PHP has an <a href="http://php.net/manual/en/book.imap.php" rel="nofollow">imap</a> module which will make this easier.</p>
<p>All you have to do is <a href="http://blogs.msdn.com/oldnewthing/archive/2009/08/04/9856634.aspx" rel="nofollow">plug the pieces together</a>. :)</p>
http://stackoverflow.com/questions/1810251/merging-multiple-git-branches-into-master/1810259#18102590Answer by Greg Hewgill for Merging multiple git branches into master?Greg Hewgill2009-11-27T19:05:52Z2009-11-27T19:05:52Z<p>You can rename branches with the <a href="http://www.kernel.org/pub/software/scm/git/docs/git-branch.html" rel="nofollow"><code>git branch -m</code></a> option:</p>
<pre><code>git branch -m master old_master
git branch -m auth_upgrade master
</code></pre>
http://stackoverflow.com/questions/1807855/software-project-management-systems/1807872#18078720Answer by Greg Hewgill for Software Project Management systemsGreg Hewgill2009-11-27T10:14:29Z2009-11-27T10:14:29Z<p>You may be interested in a DVCS called <a href="http://www.fossil-scm.org/" rel="nofollow">Fossil</a> which has a built-in bug tracker and wiki. I've never used it but it looks like it might meet your needs.</p>
http://stackoverflow.com/questions/1807830/why-md5-collision-failed/1807841#18078414Answer by Greg Hewgill for why MD5 collision failed?Greg Hewgill2009-11-27T10:09:25Z2009-11-27T10:09:25Z<p>You are calculating the md5 hash of the ASCII text. You will need to convert the ASCII hex representation to actual binary <em>bytes</em>, then run md5 on the blocks.</p>
http://stackoverflow.com/questions/1807617/c-c-macro-expansion-vs-code-generation/1807701#18077011Answer by Greg Hewgill for C/C++ Macro expansion vs. Code generationGreg Hewgill2009-11-27T09:39:48Z2009-11-27T09:39:48Z<p>In C or C++, macro expansion is notoriously difficult to debug. On the other hand, writing a code generator is easier to debug because it's a separate program in itself.</p>
<p>However, you should be aware that this is merely a limitation of the C preprocessor. For example, in the Lisp family of languages, macro expansion <em>is</em> code generation, they're exactly the same thing. To write a macro, you write a program (in Lisp) to transform S-expression input into another S-expression, which is then passed to the compiler.</p>
http://stackoverflow.com/questions/1807425/batch-recursively-delete-all-folders-starting-with/1807469#18074692Answer by Greg Hewgill for Batch : recursively delete all folders starting with ...Greg Hewgill2009-11-27T08:42:11Z2009-11-27T08:48:48Z<p>How about:</p>
<pre><code>for /d %a in (certain_string*) do rd /s %a
</code></pre>
<p>This will work from the command prompt. Inside a batch file, you would have to double the <code>%</code>s, as usual:</p>
<pre><code>@echo off
for /d %%a in (certain_string*) do rd /s %%a
</code></pre>
http://stackoverflow.com/questions/1807036/git-merging-public-and-private-branches-while-while-keeping-certain-files-intact/1807121#18071210Answer by Greg Hewgill for Git: merging public and private branches while while keeping certain files intact in both branchesGreg Hewgill2009-11-27T06:38:34Z2009-11-27T06:38:34Z<p>One way to do this is with <a href="http://www.kernel.org/pub/software/scm/git/docs/git-rebase.html" rel="nofollow"><code>git rebase</code></a>. By keeping your private changes as a few commits off the end of your <code>master</code>, you can commit public stuff to the <code>master</code> branch (or whatever you choose your working branch to be), and then rebase your private branch against master whenever you want to update.</p>
<p>Another way to handle this is to keep template configuration files in Git, such as <code>frobozz.config.template</code>. In your working directory, copy <code>frobozz.config.template</code> to the (unversioned) <code>frobozz.config</code> and modify. Just be sure to back up your working directory too, if you need your local changes to be backed up.</p>
http://stackoverflow.com/questions/1807026/initialize-a-list-of-objects-in-python/1807043#18070435Answer by Greg Hewgill for Initialize a list of objects in PythonGreg Hewgill2009-11-27T06:10:10Z2009-11-27T06:10:10Z<p>There isn't a way to implicitly call an <code>Object()</code> constructor for each element of an array like there is in C++ (recall that in Java, each element of a new array is initialised to <code>null</code> for reference types).</p>
<p>I would say that your list comprehension method is the most Pythonic:</p>
<pre><code>lst = [Object() for i in range(100)]
</code></pre>
<p>If you don't want to step on the lexical variable <code>i</code>, then a convention in Python is to use <code>_</code> for a dummy variable whose value doesn't matter:</p>
<pre><code>lst = [Object() for _ in range(100)]
</code></pre>
<p>For an equivalent of the similar construct in Java, you can of course use <code>*</code>:</p>
<pre><code>lst = [None] * 100
</code></pre>
http://stackoverflow.com/questions/1806328/tcp-connection-persistent-state/1806343#18063430Answer by Greg Hewgill for TCP Connection Persistent StateGreg Hewgill2009-11-27T01:05:16Z2009-11-27T01:05:16Z<p>No, there isn't any facility for what you describe.</p>
<p>Typically what you would do if you're writing a socket application with multiple connections to other systems, is keep track of the socket handle that belongs to each remote system. When receiving data, you are using the socket handle (in some form, don't know which OS or language you're using) so you can take appropriate action based on whichever socket handle that is.</p>
<p>I've never seen a server application that keeps track of connections based on the 4-tuple of address/ports. That seems like way too much work.</p>
<p>On rereading your question, it seems like you may be asking this from the point of view of the TCP driver level. What sort of software are you writing here?</p>
http://stackoverflow.com/questions/1805030/why-programming-languages-do-not-include-spaces-in-the-method-identifiers/1805646#18056463Answer by Greg Hewgill for Why programming languages do not include spaces in the method "identifiers"?Greg Hewgill2009-11-26T21:09:46Z2009-11-26T21:51:55Z<p>Such a change would make for an ambiguous language in the best of cases. For example, in a C99-like language:</p>
<pre><code>if not foo(int x) {
...
}
</code></pre>
<p>is that equivalent to:</p>
<ol>
<li><p>A function definition of <code>foo</code> that returns a value of type <code>ifnot</code>:</p>
<pre><code>ifnot foo(int x) {
...
}
</code></pre></li>
<li><p>A call to a function called <code>notfoo</code> with a variable named <code>intx</code>:</p>
<pre><code>if notfoo(intx) {
...
}
</code></pre></li>
<li><p>A negated call to a function called <code>foo</code> (with C99's <code>not</code> which means <code>!</code>):</p>
<pre><code>if not foo(intx) {
...
}
</code></pre></li>
</ol>
<p>This is just a small sample of the ambiguities you might run into.</p>
<p><strong>Update:</strong> I just noticed that obviously, in a C99-like language, the condition of an <code>if</code> statement would be enclosed in parentheses. Extra punctuation can help with ambiguities if you choose to ignore whitespace, but your language will end up having lots of extra punctuation wherever you would normally have used whitespace.</p>
http://stackoverflow.com/questions/1805148/why-is-pythonruby-interpreted/1805201#18052015Answer by Greg Hewgill for Why is (python|ruby) interpreted?Greg Hewgill2009-11-26T19:01:00Z2009-11-26T19:22:24Z<p>Today, there is no longer a strong distinction between "compiled" and "interpreted" languages. Python is in fact compiled just as much as Java is, the only differences are:</p>
<ul>
<li>The Python compiler is much faster than the Java compiler</li>
<li>Python automatically compiles source code as it is executed, there is no separate "compile" step required</li>
<li>Python bytecode is different from JVM bytecode</li>
</ul>
<p>Python even has a function called <a href="http://docs.python.org/library/functions.html#compile" rel="nofollow"><code>compile()</code></a> which is an interface to the compiler.</p>
<p>It sounds like the distinction you are making is between "dynamically typed" and "statically typed" languages. In dynamic languages such as Python, you can write code like:</p>
<pre><code>def fn(x, y):
return x.foo(y)
</code></pre>
<p>Notice that the types of <code>x</code> and <code>y</code> are not specified. At runtime, this function will look at <code>x</code> to see whether it has a member function named <code>foo</code>, and if so will call it with <code>y</code>. If not, it will throw a runtime error that indicates no such function was found. This sort of runtime lookup is much easier to represent using an intermediate representation like bytecode, where a runtime VM does the lookup instead of having to generate machine code to do the lookup itself (or, call a function to do the lookup which is what the bytecode will do anyway).</p>
<p>Python has projects such as <a href="http://psyco.sourceforge.net/" rel="nofollow">Psyco</a>, <a href="http://codespeak.net/pypy/dist/pypy/doc/" rel="nofollow">PyPy</a>, and <a href="http://code.google.com/p/unladen-swallow/" rel="nofollow">Unladen Swallow</a> that take various approaches to compiling Python object code into something closer to native code. There is active research in this area but there is not (as yet) a simple answer.</p>
http://stackoverflow.com/questions/1805134/issue-with-c-function-returning-a-gchar/1805175#18051751Answer by Greg Hewgill for Issue with C function returning a gchar**Greg Hewgill2009-11-26T18:54:31Z2009-11-26T19:18:56Z<p>I'm not quite sure why your code returns a pointer to a pointer, but that makes your desired operation slightly more difficult. Since you need to return the <em>address</em> of a pointer, and not just a pointer itself, you have to allocate that new pointer somewhere (and then who will free it?). If you don't mind the memory leak you can ignore the problem and just allocate a pointer and return its address. Or, you can create a new member of <code>File_Tag</code> that holds a short string that contains the first character of <code>artist</code>.</p>
<p>The <a href="http://library.gnome.org/devel/glib/unstable/glib-String-Utility-Functions.html" rel="nofollow">glib string functions</a> will be helpful for this, a quick look through the list shows <a href="http://library.gnome.org/devel/glib/unstable/glib-String-Utility-Functions.html#g-strdup-printf" rel="nofollow"><code>g_strdup_printf()</code></a> might be useful:</p>
<pre><code>gchar *first = g_strdup_printf("%c", FileTag->artist[0]);
</code></pre>
<p>Then allocate somewhere to store <code>first</code> and return the address of that.</p>
<p><strong>Update:</strong> Using <a href="http://codesearch.google.com" rel="nofollow">http://codesearch.google.com</a> I seem to have <a href="http://www.google.com/codesearch/p?hl=en&sa=N&cd=1&ct=rc#JWizIJK4oqE/easytag-1.1/src/scan.c&q=Scan%5FReturn%5FFile%5FTag%5FField%5FFrom%5FMask%5FCode&l=278" rel="nofollow">found where this function you're changing is used</a>, and it looks like the return value is used to <em>change</em> the field that is returned.</p>
<pre><code> // Get the target entry for this code
dest = Scan_Return_File_Tag_Field_From_Mask_Code(FileTag,mask_item->code);
// We display the text affected to the code
if ( dest && ( OVERWRITE_TAG_FIELD || *dest==NULL || strlen(*dest)==0 ) )
ET_Set_Field_File_Tag_Item(dest,mask_item->string);
</code></pre>
<p>I'm not sure what exactly you want to do if your code returns a new string that contains the first character of the artist name. The above code would change what your newly allocated string <em>points to</em>, which would have no effect on the actual artist name.</p>
http://stackoverflow.com/questions/1800094/grep-ing-multiple-files/1800106#18001066Answer by Greg Hewgill for grep-ing multiple files Greg Hewgill2009-11-25T21:32:11Z2009-11-25T21:32:11Z<p>Use a <code>for</code> statement:</p>
<pre><code>for a in *.txt; do grep target $a >$a.out; done
</code></pre>
http://stackoverflow.com/questions/1799354/version-control-for-interdepedent-modules/1799372#17993724Answer by Greg Hewgill for Version control for interdepedent modulesGreg Hewgill2009-11-25T19:23:46Z2009-11-25T19:23:46Z<p>Using <a href="http://svnbook.red-bean.com/en/1.1/ch07s04.html" rel="nofollow">Externals</a> in Subversion, you can have your master project refer to all the dependency projects. By default, an external reference in Subversion refers to whatever the current version is, but you can add an external reference that refers to a <em>specific</em> version of another repository (using the <code>-r</code> notation as in the "toolkit" example on that page).</p>
http://stackoverflow.com/questions/1799072/c-short-circuiting-of-booleans/1799103#17991032Answer by Greg Hewgill for C++ short-circuiting of booleansGreg Hewgill2009-11-25T18:42:44Z2009-11-25T18:42:44Z<p>The compiler handles this by generating intermediate jumps. For the following code:</p>
<pre><code>if(A == 1 || B == 2){...}
</code></pre>
<p>compiled to pseudo-assembler, might be:</p>
<pre><code> load variable A
compare to constant 1
if equal, jump to L1
load variable B
compare to constant 2
if not equal, jump to L2
L1:
... (complete body of if statement)
L2:
(code after if block goes here)
</code></pre>
http://stackoverflow.com/questions/1796012/how-to-use-git-to-migrate-svn-repository/1796051#17960511Answer by Greg Hewgill for How to use Git to migrate SVN repositoryGreg Hewgill2009-11-25T10:34:04Z2009-11-25T10:34:04Z<p>I'm not sure that <a href="http://www.kernel.org/pub/software/scm/git/docs/git-svn.html" rel="nofollow">git svn</a> is the right tool for that job. The documentation contains the statement when discussing the <em>--commit-url</em> option:</p>
<blockquote>
<p>Commit to this SVN URL (the full path). This is intended to allow existing git svn repositories created with one transport method (e.g. svn:// or http:// for anonymous read) to be reused if a user is later given access to an alternate transport method (e.g. svn+ssh:// or https://) for commit.</p>
<p>Using this option for any other purpose (don't ask) is very strongly discouraged.</p>
</blockquote>
<p>I'm not sure precisely what that warning applies to, but it <em>may</em> apply to the "bridge" situation you are describing. If you decide to proceed with git-svn, you may be wise to proceed with caution.</p>
http://stackoverflow.com/questions/1794689/code-smell-in-this-switch-statement/1794784#17947841Answer by Greg Hewgill for Code smell in this switch statement?Greg Hewgill2009-11-25T05:10:43Z2009-11-25T05:16:12Z<p>Wow, I'm not sure whether I would call that a "code smell" or just a plain <strong>bug</strong>. I look at that code and immediately think, "that can't be right".</p>
<p>Switch case fall-through should always be clearly documented in a code comment, with justification if it's obscure.</p>
<p>I was disappointed 15 years ago when Java came out and I saw that they hadn't fixed the default-fallthrough behaviour of C's <code>switch</code> statement. However, Go <em>has</em> fixed it, with an explicit <code>fallthrough</code> statement required if that's what you want:</p>
<blockquote>
<p>In a case or default clause, the last statement only may be a "fallthrough" statement (§<a href="http://golang.org/doc/go%5Fspec.html#Fallthrough%5Fstatements" rel="nofollow">Fallthrough statement</a>) to indicate that control should flow from the end of this clause to the first statement of the next clause. Otherwise control flows to the end of the "switch" statement. </p>
</blockquote>
http://stackoverflow.com/questions/1792149/general-exception-in-java/1792187#17921874Answer by Greg Hewgill for General Exception in JavaGreg Hewgill2009-11-24T18:59:45Z2009-11-24T18:59:45Z<p>I'm wondering why you would need to throw an exception in the first place. If your goal is to ignore blank lines, then an <code>if</code> statement sounds like a better solution. Don't use exceptions as a substitute for normal flow control.</p>
http://stackoverflow.com/questions/1789164/iterator-for-loops-with-break/1789177#178917722Answer by Greg Hewgill for iterator for loops with breakGreg Hewgill2009-11-24T10:26:12Z2009-11-24T10:26:12Z<p>Your example will break out of the innermost loop only. However, using a <a href="http://java.sun.com/docs/books/tutorial/java/nutsandbolts/branch.html" rel="nofollow">labeled break</a> statement, you can do this:</p>
<pre><code>outer:
for(..)
for(..)
for(..){
break outer; //this will break out from all three loops
}
</code></pre>
http://stackoverflow.com/questions/1789128/tcp-ip-guaranteed-delivery-question/1789154#17891544Answer by Greg Hewgill for TCP IP Guaranteed delivery questionGreg Hewgill2009-11-24T10:20:30Z2009-11-24T10:20:30Z<p>It will resend all packets 6 through 10. In fact, since the receiver only tells the sender what sequence number was the last good one, the sender may choose to split up the packets differently (ie. by consolidating packets 6 through 10 into one bigger packet) when resending.</p>
<p>However, I should note that in all my years of socket programming, I've never actually needed to know that detail. I've never written an actual TCP driver, which is the only place you'd need to know that information.</p>
<p>The <a href="http://rads.stackoverflow.com/amzn/click/0201633469" rel="nofollow">TCP/IP Illustrated</a> series of books is an excellent resource for this.</p>
http://stackoverflow.com/questions/1788840/how-to-make-8051-emulator/1788974#17889744Answer by Greg Hewgill for How to make 8051 emulatorGreg Hewgill2009-11-24T09:35:44Z2009-11-24T09:35:44Z<p>Recently I put together an emulator for the AVR chip, which is also a small 8-bit microcontroller. The source is on GitHub as <a href="http://github.com/ghewgill/emulino" rel="nofollow">ghewgill/emulino</a>. The most interesting file is <a href="http://github.com/ghewgill/emulino/blob/master/cpu.c" rel="nofollow">cpu.c</a> which contains the implementations for each CPU instruction. The key lines are in <code>cpu_run()</code> (omitting some details):</p>
<pre><code>while (state == CPU_RUN) {
u16 instr = Program[PC++];
Instr[instr](instr);
}
</code></pre>
<p>This loads a 16-bit word from the program memory pointed to by the PC register, then uses that as in index into an instruction jump table (which is a 64k array of function pointers - the actual table is generated by a script at compile time). This function will be one of the <code>do_XXX()</code> functions in that source file, and may do further instruction decoding before executing the actual instruction. For example, the <code>do_ADD()</code> function:</p>
<pre><code>static void do_ADD(u16 instr)
{
trace(__FUNCTION__);
// ------rdddddrrrr
u16 r = (instr & 0xf) | ((instr >> 5) & 0x10);
u16 d = ((instr >> 4) & 0x1f);
u8 x = Data.Reg[d] + Data.Reg[r];
Data.SREG.H = (((Data.Reg[d] & Data.Reg[r]) | (Data.Reg[r] & ~x) | (~x & Data.Reg[d])) & 0x08) != 0;
Data.SREG.V = (((Data.Reg[d] & Data.Reg[r] & ~x) | (~Data.Reg[d] & ~Data.Reg[r] & x)) & 0x80) != 0;
Data.SREG.N = (x & 0x80) != 0;
Data.SREG.S = Data.SREG.N ^ Data.SREG.V;
Data.SREG.Z = x == 0;
Data.SREG.C = (((Data.Reg[d] & Data.Reg[r]) | (Data.Reg[r] & ~x) | (~x & Data.Reg[d])) & 0x80) != 0;
Data.Reg[d] = x;
Cycle++;
}
</code></pre>
<p>This does the actual addition operation (<code>Data.Reg[d] + Data.Reg[r]</code>), then sets all the various condition flags based on the result.</p>
http://stackoverflow.com/questions/1788095/descriptor-passing-with-unix-domain-sockets/1788709#17887090Answer by Greg Hewgill for Descriptor passing with unix domain socketsGreg Hewgill2009-11-24T08:39:25Z2009-11-24T08:39:25Z<p>Without having a copy of that book, it's going to be difficult for us to explain to you the method given in the book.</p>
<p>There are several general techniques to pass a file descriptor from a parent process to a child process. If you know the file descriptor number <em>before</em> launching the child:</p>
<ul>
<li>put it in a command line parameter</li>
<li>put it in an environment variable</li>
<li>put it in a file on disk (not a great option)</li>
</ul>
<p>If you only know the file descriptor <em>after</em> launching the child, then some sort of IPC will be needed:</p>
<ul>
<li>put it in shared memory</li>
<li>send it to the child on a socket</li>
</ul>
<p>It sounds like the book you're reading describes the last option. When sending a message to a child, you are free to choose the representation of whatever data you are sending. If you're sending a file descriptor (an integer) and no other information, then you're free to choose pretty much any representation. An ASCII representation of the integer might be suitable, or you could send four bytes representing a 32-bit integer.</p>
<p>Again, it's hard to guess why the book author is doing things the way they are, without knowing what the method actually is.</p>
http://stackoverflow.com/questions/1818846/add-source-code-to-elf-fileComment by Greg Hewgill on Add source code to elf fileGreg Hewgill2009-11-30T10:02:02Z2009-11-30T10:02:02ZI'm not quite sure exactly what you're asking here. (a) Why are you trying to append <i>source code</i> to an <i>elf binary</i>? (b) What does this have to do with keeping versions in Subversion? (c) Even if you could insert source code with objcopy, what do you intend to do with it once it's there? (d) Are you trying to determine which source files get compiled into a particular elf binary?http://stackoverflow.com/questions/1818774/python-subprocessComment by Greg Hewgill on Python subprocessGreg Hewgill2009-11-30T09:47:09Z2009-11-30T09:47:09ZCan you post some actual code that you used?http://stackoverflow.com/questions/1818353/can-every-if-else-construct-be-replaced-by-an-equivalent-conditional-expressionComment by Greg Hewgill on Can every if-else construct be replaced by an equivalent conditional expression?Greg Hewgill2009-11-30T07:54:48Z2009-11-30T07:54:48ZIn C and C++, the operator is called the <i>conditional operator</i>. You may find this useful if you are searching for other references.http://stackoverflow.com/questions/1816784/create-executable-from-assembly-code/1816806#1816806Comment by Greg Hewgill on Create Executable From Assembly CodeGreg Hewgill2009-11-29T21:30:26Z2009-11-29T21:30:26ZIf TASM doesn't work in Windows 7 (probably because it is a 16-bit program), then the NASM DOS version probably won't work either. But it might, and in that case you can continue to write 16-bit DOS code compiled into <code>.COM</code> files with the source you posted. However, if you use the Win32 NASM version then your code will need to be completely different, as 32-bit land has different rules.http://stackoverflow.com/questions/1815187/using-the-ternary-operator-to-determine-a-variable-is-not-null-and-assigning-it-t/1815213#1815213Comment by Greg Hewgill on Using the ternary operator to determine a variable is not null and assigning it to anotherGreg Hewgill2009-11-29T18:50:59Z2009-11-29T18:50:59ZUse of the conditional operator in C does not "avoid control structures". Have a look at your compiler output.http://stackoverflow.com/questions/1810251/merging-multiple-git-branches-into-master/1810259#1810259Comment by Greg Hewgill on Merging multiple git branches into master?Greg Hewgill2009-11-27T19:12:42Z2009-11-27T19:12:42ZAh, you didn't mention that <code>master</code> wasn't an ancestor of <code>auth_upgrade</code>. That does make a difference. I'll leave my answer in case it is useful for somebody else who has a similar situation that can be addressed with a rename.http://stackoverflow.com/questions/1807830/why-md5-collision-failed/1807841#1807841Comment by Greg Hewgill on why MD5 collision failed?Greg Hewgill2009-11-27T18:12:18Z2009-11-27T18:12:18ZIt looks like PHP may support arbitrary characters inside strings, so try typing: <code>md5('\xd1\x31\xdd\x02...</code> However, I'm not certain this will do what you want so some experimentation will be necessary.http://stackoverflow.com/questions/1807855/software-project-management-systems/1807872#1807872Comment by Greg Hewgill on Software Project Management systemsGreg Hewgill2009-11-27T11:01:59Z2009-11-27T11:01:59ZProbably. I had a quick look and the only thing I found was this, which isn't very helpful: <a href="http://www.fossil-scm.org/index.html/wiki?name=Tutorial" rel="nofollow">fossil-scm.org/index.html/wiki?name=Tutorial/…</a>http://stackoverflow.com/questions/1807808/how-to-get-back-my-sent-mailsComment by Greg Hewgill on How to get back my sent mails?Greg Hewgill2009-11-27T10:07:47Z2009-11-27T10:07:47ZThis should be a superuser question. Serverfault is for <i>system administration</i> questions, not random non-programming questions that happen to involve the command line.http://stackoverflow.com/questions/1807026/initialize-a-list-of-objects-in-python/1807043#1807043Comment by Greg Hewgill on Initialize a list of objects in PythonGreg Hewgill2009-11-27T09:06:42Z2009-11-27T09:06:42ZFair point; I've been coding in Python 3 recently. :)http://stackoverflow.com/questions/1807537/how-do-i-index-the-applications-installed-on-an-iphoneComment by Greg Hewgill on How do I index the applications installed on an iPhone?Greg Hewgill2009-11-27T09:01:46Z2009-11-27T09:01:46ZYou appear to already have asked this question: <a href="http://stackoverflow.com/questions/1807239/getting-info-on-other-apps-via-objective-c" rel="nofollow" title="getting info on other apps via objective c">stackoverflow.com/questions/1807239/…</a>http://stackoverflow.com/questions/1807425/batch-recursively-delete-all-folders-starting-with/1807469#1807469Comment by Greg Hewgill on Batch : recursively delete all folders starting with ...Greg Hewgill2009-11-27T08:51:47Z2009-11-27T08:51:47ZTo recursively look for directories starting with a prefix, you may be able to use <code>for /r</code> or some combination thereof.http://stackoverflow.com/questions/1807425/batch-recursively-delete-all-folders-starting-with/1807469#1807469Comment by Greg Hewgill on Batch : recursively delete all folders starting with ...Greg Hewgill2009-11-27T08:50:27Z2009-11-27T08:50:27ZI had to expand this a bit from my original simple attempt, because <code>rd</code> doesn't appear to expand wildcards by itself.http://stackoverflow.com/questions/1806143/calculate-percent-at-runtime/1806166#1806166Comment by Greg Hewgill on Calculate percent at runtimeGreg Hewgill2009-11-27T00:20:08Z2009-11-27T00:20:08ZHopefully this won't happen: <a href="http://web.archive.org/web/20011027002011/http://dilbert.com/comics/dilbert/archive/images/dilbert2001182781025.gif" rel="nofollow">web.archive.org/web/20011027002011/…</a>http://stackoverflow.com/questions/1805134/issue-with-c-function-returning-a-gchar/1805175#1805175Comment by Greg Hewgill on Issue with C function returning a gchar**Greg Hewgill2009-11-26T19:20:14Z2009-11-26T19:20:14ZAre you returning <code>first</code> itself, or are you allocating space to hold the <code>first</code> pointer and returning the address of it? I get the feeling that you're not very familiar with the use of pointers in C and need a tutorial on that topic.