User Juliano - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T10:13:50Zhttp://stackoverflow.com/feeds/user/55078http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1779715/how-to-get-mac-address-of-your-machine-using-a-c-program/1779751#17797518Answer by Juliano for How to get MAC address of your machine using a C program?Juliano2009-11-22T19:47:35Z2009-11-22T19:47:35Z<p>You want to take a look at the <a href="http://www.kernel.org/doc/man-pages/online/pages/man3/getifaddrs.3.html" rel="nofollow">getifaddrs(3)</a> manual page. There is an example in C in the manpage itself that you can use. You want to get the address with the type <code>AF_LINK</code>.</p>
http://stackoverflow.com/questions/1705169/putting-a-complete-filesystem-into-revision-control/1705204#17052041Answer by Juliano for Putting a complete filesystem into revision controlJuliano2009-11-10T01:57:01Z2009-11-10T01:57:01Z<p>You can use versioning filesystems, that is, filesystems with version control built into the filesystem code itself.</p>
<p>Some examples:</p>
<ul>
<li><a href="http://www.nilfs.org/en/" rel="nofollow">NILFS</a></li>
<li><a href="http://www.ext3cow.com/" rel="nofollow">Ext3cow</a></li>
</ul>
<p>In principle, any filesystem that supports snapshots could be used.</p>
<p>More information: <a href="http://en.wikipedia.org/wiki/Versioning%5Ffile%5Fsystem" rel="nofollow">Versioning file system</a> on Wikipedia.</p>
http://stackoverflow.com/questions/1705147/struct-initialization-of-the-c-c-programming-language/1705166#170516612Answer by Juliano for Struct initialization of the C/C++ programming language?Juliano2009-11-10T01:45:06Z2009-11-10T01:45:06Z<p>The first statement creates a variable initialized to the given values, i.e., these values are built in memory and stored directly in the program executable in that variable address (for globals) or ready for memory copy (for stack variables).</p>
<p>The second statement of the second block is very different. Although it looks similar, it is an assign expression. It means that the RHS of the equals operator is an expression that is evaluated (independently of what is in the LHS of =), and then passed to the = operator. Without proper context, <code>{...}</code> doesn't have any meaning.</p>
<p>In C99, you can do this:</p>
<pre><code>struct_name_id = (struct struct_type_id){ value1, value2, value3 };
</code></pre>
<p>Now the RHS of the equals operator is a valid expression, since there is proper context for the compiler to know what is in <code>{...}</code>.</p>
<p>In C++0x, the syntax is:</p>
<pre><code>struct_name_id = struct_type_id({ value1, value2, value3 });
</code></pre>
http://stackoverflow.com/questions/1670577/indenting-bash-script-output/1670632#16706320Answer by Juliano for Indenting Bash Script OutputJuliano2009-11-03T22:42:32Z2009-11-03T22:42:32Z<p>A different solution that doesn't require sed:</p>
<pre><code>command | (while read; do echo " $REPLY"; done)
</code></pre>
http://stackoverflow.com/questions/1581348/allocate-room-for-null-terminating-character-when-copying-strings-in-c/1581350#158135010Answer by Juliano for Allocate room for null terminating character when copying strings in C?Juliano2009-10-17T03:47:51Z2009-10-17T03:47:51Z<p>Yes, you should allocate at least strlen(src)+1 characters.</p>
http://stackoverflow.com/questions/670488/how-to-manage-long-paths-in-bash/1510670#15106702Answer by Juliano for How to manage Long Paths in Bash?Juliano2009-10-02T16:41:22Z2009-10-02T16:41:22Z<p>Revisiting. Today I received this link from a social bookmarking site, then I immediately remembered this question:</p>
<p><strong><a href="http://www.bookmark-tools.com/articles/1.html" rel="nofollow">Navigation with bm</a></strong></p>
<blockquote>
<p>We keep a simple, plain text bookmarks
file and use a tool called bm to do
the look-ups. The tool can also be
used to edit the bookmark index
dynamically as shown below where we
add the directories from the previous
example to the index.</p>
</blockquote>
http://stackoverflow.com/questions/1473448/avoid-casting-from-volatile-static-uint8t-to-uint8t-in-function-calls/1473537#14735373Answer by Juliano for Avoid casting from volatile static uint8_t to uint8_t in function calls?Juliano2009-09-24T18:55:37Z2009-09-24T18:55:37Z<p>I guess you are trying to pass a pointer to the variable and, while editing your question, you removed the pointer declaration in order to simplify, but that also changed your question. If you are passing a value to the function, there isn't any problem.</p>
<p>Now, if you are passing a pointer, the volatile modifier tells that the compiler should expect the value of the variable to change by means other than the compiled code. You really shouldn't pass a volatile variable as a non-volatile parameter to a function. The function itself must be changed to have the volatile parameter, and recompiled. Then function (with volatile parameter) is prepared to deal with a volatile variable.</p>
http://stackoverflow.com/questions/1341802/bash-scripting-call-to-awk/1341835#13418353Answer by Juliano for Bash scripting call to AWKJuliano2009-08-27T15:29:54Z2009-08-27T15:29:54Z<p>There is a problem with your escaping. Also, there is no need for a temporary file in this case.</p>
<pre><code>#!/bin/bash
fpga-test -1 -a $1 | awk '/Read/ {print $2}'
</code></pre>
http://stackoverflow.com/questions/1315066/why-the-confirmation-dialog-button-under-ubuntu-is-in-reverse-order-comparing-to/1315123#13151232Answer by Juliano for Why the confirmation dialog button under Ubuntu is in reverse order comparing to Windows?Juliano2009-08-22T04:22:16Z2009-08-22T04:22:16Z<p>This is not a Linux standard, it was a decision made by GNOME developers and, in my opinion, not very well-thought. <a href="http://www.geocities.com/mrshrap/okcancel.html" rel="nofollow">Here is a good discussion</a> about this decision. <a href="http://developer.gnome.org/projects/gup/proposals/dialog.html" rel="nofollow">Here</a> is where everything started.</p>
<p>This has generated a lot of flamewar, people have strong opinions about for and against this GNOME "feature".</p>
http://stackoverflow.com/questions/1302057/cutdown-uuid-further-to-make-short-string/1302532#13025320Answer by Juliano for cutdown uuid further to make short stringJuliano2009-08-19T20:44:20Z2009-08-19T20:44:20Z<p>An UUID provides (almost) 128 bits of uniqueness. You may shorten it to 16 binary bytes, or 22 base64-encoded characters. I wouldn't recommend removing any part of a UUID, otherwise, it just loses its sense. UUIDs were designed so that all the 128 bits have meaning. If you want less than that, you should use some other schema.</p>
<p>For example, if you could guarantee that only version 4 UUIDs are used, then you could take just the first 32 bits, or just the last 32 bits. You lose uniqueness, but you have pretty random numbers. Just avoid the bits that are fixed (version and variant).</p>
<p>But if you can't guarantee that, you will have real problems. For version 1 UUIDs, the first bits will not be unique for UUIDs generated in the same day, and the last bits will not be unique for UUIDs generated in the same system. Even if you CRC the UUID, it is not guaranteed that you will have 16 or 32 bits of uniqueness.</p>
<p>In this case, just use some other scheme. Generate a 32-bit random number using the system random number generator and use that as your unique ID. Don't rely on UUIDs if you intend on stripping its length.</p>
http://stackoverflow.com/questions/1299713/what-does-do-in-bash/1299789#129978913Answer by Juliano for What does <() do in Bash?Juliano2009-08-19T13:01:14Z2009-08-19T17:23:04Z<p>This is called process substitution.</p>
<p><code><(</code><em><code>list</code></em><code>)</code> is a single syntax construct, the '<' character is not a separate symbol in this case. It executes <em>list</em> and provides its output as sort of a file (not a standard redirection) to the command.</p>
<p>It is equivalent to running (except it uses pipes instead of temporary files when possible):</p>
<pre><code>sort abc > /tmp/1
sort bcd > /tmp/2
join /tmp/1 /tmp/2
</code></pre>
<p>Note that the output of both sorts are provided as filenames to join, not as standard redirections.</p>
<p><code>(</code><em><code>list</code></em><code>)</code> is a different construct, for a different purpose. It simply creates a subshell that executes <em>list</em>, providing its standard descriptors to the parent shell.</p>
<p><a href="http://www.gnu.org/software/bash/manual/bashref.html#Process-Substitution" rel="nofollow">Here</a> is the relevant part in the bash manual.</p>
http://stackoverflow.com/questions/1283246/pointer-from-integer-w-o-cast-warning-when-calling-lfind/1283303#12833031Answer by Juliano for pointer from integer w/o cast warning when calling lfindJuliano2009-08-16T01:51:17Z2009-08-16T01:51:17Z<p>The third argument to lfind() is a pointer to <code>size_t</code> not <code>int</code> as you are passing. The <code>size_t</code> type may be of a different size than <code>int</code> on some architectures (particularly x86-64) and it is also unsigned. You have to change the type of the <code>length</code> variable.</p>
http://stackoverflow.com/questions/1279953/how-to-execute-the-output-of-a-command-within-the-current-shell/1280864#12808642Answer by Juliano for How to execute the output of a command within the current shell?Juliano2009-08-15T00:53:25Z2009-08-15T05:41:07Z<p>The <code>eval</code> command exists for this very purpose.</p>
<pre><code>eval $( ls | sed... )
</code></pre>
<p>More from the <a href="http://www.gnu.org/software/bash/manual/bashref.html" rel="nofollow">bash manual</a>:</p>
<blockquote>
<p><strong>eval</strong></p>
<pre><code> eval [arguments]
</code></pre>
<p>The arguments are concatenated together
into a single command, which
is then read and executed, and its
exit status returned as the exit
status of eval. If there are no
arguments or only empty arguments, the
return status is zero.</p>
</blockquote>
http://stackoverflow.com/questions/1267829/perl-script-that-has-command-line-arguments-with-spaces/1267896#12678961Answer by Juliano for Perl script that has command line arguments with spacesJuliano2009-08-12T18:28:56Z2009-08-12T18:55:10Z<p>Now that the question was updated, I still can't reproduce your results:</p>
<pre><code>~% cat test.c
#include <stdio.h>
#include <stdlib.h>
int main(void){
char cmd[1000];
char *script = "./my_script";
char *arguments = "\"arg1\" \"arg2\" \"arg3 with spaces\" \"arg4\" \"arg5\"";
sprintf( cmd, "%s %s", script, arguments);
system( cmd );
return 0;
}
~% cat my_script
#!/usr/bin/perl
($arg1, $arg2, $arg3, $arg4, $arg5) = @ARGV;
print "arg1 = $arg1\n";
print "arg2 = $arg2\n";
print "arg3 = $arg3\n";
print "arg4 = $arg4\n";
print "arg5 = $arg5\n";
~% gcc test.c
~% ./a.out
arg1 = arg1
arg2 = arg2
arg3 = arg3 with spaces
arg4 = arg4
arg5 = arg5
~%
</code></pre>
<p>There is something else with your configuration.</p>
<p><hr /></p>
<p><strong>Previous answer:</strong></p>
<blockquote>
<p>Unix shells interpret quoted arguments
as a single argument. You can do a
quick test:</p>
<pre><code>for i in a b "c d e" f; do echo $i; done
</code></pre>
<p>The result is what you expect it to
be: "c d e" is treated like a single
argument.</p>
<p>I think you have a problem in your
script, in the argument handling
logic.</p>
</blockquote>
http://stackoverflow.com/questions/1266981/memory-leak-question-in-c-after-moving-pointer-what-exactly-is-deallocated/1267016#12670162Answer by Juliano for Memory leak question in C after moving pointer (What exactly is deallocated?)Juliano2009-08-12T15:42:19Z2009-08-12T15:42:19Z<p>It is not the compiler that does it, it is the standard library. The behavior is undefined. The library knows that it allocated the original <code>s</code> to you. The <code>s+5</code> is not assigned to any memory block known by the library, even though it happens to be inside a known block. So, it won't work.</p>
http://stackoverflow.com/questions/1145889/emacs-xterm-mousepad-c-unicode-and-utf-8-trying-to-make-sense-of-it-all/1145943#11459432Answer by Juliano for Emacs, xterm, mousepad, C, Unicode and UTF-8: Trying to make sense of it allJuliano2009-07-17T22:24:45Z2009-07-17T23:46:02Z<p>You don't.</p>
<p>The UTF-8 encoding says that the three bytes together in a string form the euro sign, or '€'. But single bytes, like the ones produced by your C program, doesn't make sense in a UTF-8 stream. That is why they are replaced with the U+FFFD "REPLACEMENT CHARACTER", or '�'.</p>
<p>E-macs is smart, it knows that the single bytes are invalid data for the output stream, and replaces it with a visible escape representation of the byte. <s>Mousepad output is really broken, I can't make any sense of it.</s> Mousepad is falling back to the CP1252 Windows codepage, where the individual bytes represent characters. The "comma" is not a comma, it is a <a href="http://en.wikipedia.org/wiki/Curved%5Fquotes" rel="nofollow">low curved quote</a>.</p>
http://stackoverflow.com/questions/1044654/bitfield-manipulation-in-c/1053281#10532813Answer by Juliano for Bitfield manipulation in CJuliano2009-06-27T17:39:10Z2009-06-27T17:39:10Z<p>The union usage has undefined behavior according to the ANSI C standard, and thus, should not be used (or at least not be considered portable).</p>
<p>From the <a href="http://www.open-std.org/JTC1/SC22/WG14/www/docs/n1256.pdf" rel="nofollow">ISO/IEC 9899:1999 (C99) standard</a>:</p>
<p>Annex J - Portability Issues:</p>
<blockquote>
<p>1 The following are unspecified:</p>
<p>— The value of padding bytes when storing values in structures or unions (6.2.6.1).</p>
<p>— The value of a union member other than the last one stored into (6.2.6.1).</p>
</blockquote>
<p>6.2.6.1 - Language Concepts - Representation of Types - General:</p>
<blockquote>
<p>6 When a value is stored in an object of structure or union type, including in a member
object, the bytes of the object representation that correspond to any padding bytes take
unspecified values.[42]) The value of a structure or union object is never a trap
representation, even though the value of a member of the structure or union object may be
a trap representation.</p>
<p>7 When a value is stored in a member of an object of union type, the bytes of the object
representation that do not correspond to that member but do correspond to other members
take unspecified values.</p>
</blockquote>
<p>So, if you want to keep the bitfield ↔ integer correspondence, and to keep portability, I strongly suggest you to use the bitmasking method, that contrary to the linked blog post, it is <strong>not</strong> poor practice.</p>
http://stackoverflow.com/questions/1024351/mixing-c-and-c-file-operations/1024367#10243670Answer by Juliano for mixing C and C++ file operationsJuliano2009-06-21T17:28:32Z2009-06-21T17:28:32Z<p>Even if you manage to convert a FILE* to an std::fstream, that won't work as advertised. The FILE object returned by tmpfile() has a special property that, when close()'d (or when the program terminates), the file is automatically removed from the filesystem. I don't know how to replicate the same behavior with std::fstream.</p>
http://stackoverflow.com/questions/1024341/does-this-line-declare-a-function-c/1024348#10243481Answer by Juliano for Does this line declare a function? C++Juliano2009-06-21T17:20:18Z2009-06-21T17:20:18Z<pre><code>int (&a())[2];
</code></pre>
<p>It declares a symbol <code>a</code> that is a function that takes no arguments and returns a reference to a two-element array of integers.</p>
<pre><code> int b()[2];
</code></pre>
<p>This declares a symbol <code>b</code> that is a function that takes no arguments and returns a two-element array of integers... this is impossible by the design of the language.</p>
<p>It is relatively simple: get an operator precedence chart, start the symbol name (<code>a</code>) and start applying the operators as you see from their precedence. Write down after each operation applied.</p>
http://stackoverflow.com/questions/1024114/location-of-ini-config-files-in-linux-unix/1024339#10243398Answer by Juliano for Location of ini/config files in linux/unix?Juliano2009-06-21T17:10:42Z2009-06-21T17:10:42Z<p>You should adhere your application to the <strong><a href="http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html" rel="nofollow">XDG Base Directory Specification</a></strong>. Most answers here are either obsolete or wrong.</p>
<p>Your application should store and load data and configuration files to/from the directories pointed by the following environment variables:</p>
<ul>
<li><strong><code>$XDG_DATA_HOME</code></strong> (default: <code>"$HOME/.local/share"</code>): user-specific data files.</li>
<li><strong><code>$XDG_CONFIG_HOME</code></strong> (default: <code>"$HOME/.config"</code>): user-specific configuration files.</li>
<li><strong><code>$XDG_DATA_DIRS</code></strong> (default: <code>"/usr/local/share/:/usr/share/"</code>): precedence-ordered set of system data directories.</li>
<li><strong><code>$XDG_CONFIG_DIRS</code></strong> (default: <code>"/etc/xdg"</code>): precedence-ordered set of system configuration directories.</li>
<li><strong><code>$XDG_CACHE_HOME</code></strong> (default: <code>"$HOME/.cache"</code>): user-specific non-essential data files.</li>
</ul>
<p>You should first determine if the file in question is:</p>
<ol>
<li>A configuration file (<code>$XDG_CONFIG_HOME:$XDG_CONFIG_DIRS</code>);</li>
<li>A data file (<code>$XDG_DATA_HOME:$XDG_DATA_DIRS</code>); or</li>
<li>A non-essential (cache) file (<code>$XDG_CACHE_HOME</code>).</li>
</ol>
<p>It is recommended that your application put its files in a subdirectory of the above directories. Usually, something like <code>$XDG_DATA_DIRS/<application>/filename</code> or <code>$XDG_DATA_DIRS/<vendor>/<application>/filename</code>.</p>
<p>When loading, you first try to load the file from the user-specific directories (<code>$XDG_*_HOME</code>) and, if failed, from system directories (<code>$XDG_*_DIRS</code>). When saving, save to user-specific directories only (since the user probably won't have write access to system directories).</p>
<p>For other, more user-oriented directories, refer to the <strong><a href="http://www.freedesktop.org/wiki/Software/xdg-user-dirs" rel="nofollow">XDG User Directories Specification</a></strong>. It defines directories for the Desktop, downloads, documents, videos, etc.</p>
http://stackoverflow.com/questions/1012488/when-running-ls-l-why-does-the-filesize-on-a-directory-not-match-the-output-of/1023998#10239981Answer by Juliano for When running ls -l, why does the filesize on a directory not match the output of du?Juliano2009-06-21T14:16:17Z2009-06-21T14:16:17Z<p>Directories are just like files with <name, inode> tuples, and that are specially treated by the filesystem. The size reported by ls is the size of this "file". <a href="http://serverfault.com/questions/27394/list-of-actions-that-change-a-directories-modification-time/27402#27402">Check this answer in Server Fault</a> for an overview of how directories are under the hood.</p>
<p>So, the 4096 bytes mean, most likely, that the filesystem block size is 4096 and that directory is currently using a single block to store this table of names and inodes.</p>
http://stackoverflow.com/questions/1022957/getting-terminal-width-in-c/1023006#10230061Answer by Juliano for Getting terminal width in C?Juliano2009-06-21T02:14:16Z2009-06-21T02:14:16Z<pre><code>#include <stdio.h>
#include <stdlib.h>
#include <termcap.h>
#include <error.h>
static char termbuf[2048];
int main(void)
{
char *termtype = getenv("TERM");
if (tgetent(termbuf, termtype) < 0) {
error(EXIT_FAILURE, 0, "Could not access the termcap data base.\n");
}
int lines = tgetnum("li");
int columns = tgetnum("co");
printf("lines = %d; columns = %d.\n", lines, columns);
return 0;
}
</code></pre>
<p>Needs to be compiled with <code>-ltermcap</code> . There is a lot of other useful information you can get using termcap. Check the termcap manual using <code>info termcap</code> for more details.</p>
http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1022802#10228027Answer by Juliano for What are common UI misconceptions and annoyances?Juliano2009-06-20T23:34:36Z2009-06-20T23:34:36Z<p><strong>Useless spinners, turned into simple animations</strong></p>
<p>Applications that use spinners to entertain users while doing some time-demanding operation... but instead of updating the spinner only after each cycle of processing, so that the user know that something is happening, they turned spinners into simple, pretty useless animations.</p>
<p>Then, the time-demanding operation freezes for whatever reason, and you keep thinking that it is still processing, since the spinner is still spinning. To add insult to the injury, the application isn't smart enough to check that something is wrong, and interrupt/restart/do something about the hang.</p>
<p>This is so common that even Stack Overflow has this issue. Click to open the comments of a question or answer, and you see a spinner. If the server fails to respond, you just have a useless spinner on your screen that keeps giving you hope that the response will arrive, sometime... There is no timeout and no way for the user to cancel and restart the request (unless you reload the page).</p>
http://stackoverflow.com/questions/1022623/c-shared-library-with-templates-undefined-symbols-error/1022676#10226763Answer by Juliano for C++ Shared Library with Templates: Undefined symbols errorJuliano2009-06-20T22:11:19Z2009-06-20T22:11:19Z<p>In addition to the other answers, you can explicitly instantiate template classes. This is only useful if you know beforehand what types the template parameters may assume. You instantiate the template with all these types in the library.</p>
<p>For your example to compile, just add this line to <strong>shared.cpp</strong>:</p>
<pre><code>template class myclass<int>;
</code></pre>
<p>This instantiates the template with Type=int and places the instantiated code in the shared library. Add as many explicit instantiations as you need, for all the types you need.</p>
<p>Again, if you want to be able to instantiate the template with any arbitrary Type parameter, then you <strong>must</strong> add the definitions to the header file, so that the compiler knows the source code of the template when instantiating it in other compilation units.</p>
http://stackoverflow.com/questions/988483/what-is-the-linux-equivalent-of-kernel32-dll/988533#9885334Answer by Juliano for What is the Linux Equivalent of Kernel32.dll?Juliano2009-06-12T19:17:57Z2009-06-12T19:17:57Z<p>msvcrt.dll is not really comparable to libc.so.6, since the first is an specific DLL for VC++ (msvcrt -> MicroSoft Visual C++ RunTime).</p>
<p>System calls (open, close, read, write, etc...) are also in libc. They are just simple wrappers around software interruptions written in assembly language.</p>
http://stackoverflow.com/questions/966242/how-to-sync-the-clocks-of-multiple-fedora-systems/966251#9662514Answer by Juliano for How to sync the clocks of multiple Fedora systemsJuliano2009-06-08T18:31:22Z2009-06-08T18:31:22Z<p>Enable <a href="http://en.wikipedia.org/wiki/Network%5FTime%5FProtocol" rel="nofollow">NTP</a>.</p>
<pre><code>chkconfig ntpd on
service ntpd start
</code></pre>
<p>You may want to setup time servers in /etc/ntp.conf, or use the default config that uses *.fedora.pool.ntp.org.</p>
http://stackoverflow.com/questions/965053/extract-filename-and-extension-in-bash/965069#9650692Answer by Juliano for Extract filename and extension in bashJuliano2009-06-08T14:05:13Z2009-06-08T14:05:13Z<pre><code>~% FILE=prog.tar.gz
~% echo ${FILE%%.*}
prog
~% echo ${FILE%.*}
prog.tar
~% echo ${FILE#*.}
tar.gz
~% echo ${FILE##*.}
gz
</code></pre>
http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/962469#9624694Answer by Juliano for What is the worst programming language you ever worked with?Juliano2009-06-07T18:25:15Z2009-06-07T18:25:15Z<p><strong>System RPL</strong>, used by HP 48, 49 and 50 graphing scientific calculators. There were times it seemed to me that the compiler actually had produce a higher-level language for the processor to execute.</p>
http://stackoverflow.com/questions/951746/why-sizeof-differs-on-64bit-cpu/951821#95182114Answer by Juliano for Why sizeof() differs on 64bit cpu ?Juliano2009-06-04T16:59:17Z2009-06-04T16:59:17Z<p>Some diagrams to help you see:</p>
<p>32-bit:</p>
<pre><code>+----+----+----+----+----+----+----+----+----+----+----+
| i1 | i2 | i3 | i4 | i5 | i6 | i7 | i8 | i9 | Struct A
+----+----+----+----+----+----+----+----+----+----+----+
+----+----+----+----+----+----+----+----+----+----+----+
| i1 | i2 | i3 | i4 | i5 | i6 | i7 | i8 | i9 | Struct B
+----+----+----+----+----+----+----+----+----+----+----+
</code></pre>
<p>64-bit:</p>
<pre><code>+---------+---------+---------+---------+---------+---------+---------+
| i1 | i2 | i3 |~~~~| i4 | i5 | i6 | i7 |~~~~| i8 | i9 |~~~~| Struct A
+---------+---------+---------+---------+---------+---------+---------+
+---------+---------+---------+---------+---------+---------+
| i1 | i2 | i3 | i4 | i5 | i6 | i7 |~~~~| i8 | i9 | Struct B
+---------+---------+---------+---------+---------+---------+
</code></pre>
<ul>
<li><strong>+</strong> : address boundaries</li>
<li><strong>~</strong> : padding</li>
</ul>
http://stackoverflow.com/questions/948221/does-this-multiple-pipes-code-in-c-makes-sense/948530#9485301Answer by Juliano for Does this multiple pipes code in C makes sense?Juliano2009-06-04T03:54:28Z2009-06-04T03:54:28Z<p>It will give results, some that are not expected. It is far from a nice solution: It messes with the parent process' standard descriptors, does not recover the standard input, descriptors leak to children, etc.</p>
<p>If you think recursively, it may be easier to understand. Below is a correct solution, without error checking. Consider a linked-list type <code>command</code>, with it's <code>next</code> pointer and a <code>argv</code> array.</p>
<pre><code>void run_pipeline(command *cmd, int input) {
int pfds[2] = { -1, -1 };
if (cmd->next != NULL) {
pipe(pfds);
}
if (fork() == 0) { /* child */
if (input != -1) {
dup2(input, STDIN_FILENO);
close(input);
}
if (pfds[1] != -1) {
dup2(pfds[1], STDOUT_FILENO);
close(pfds[1]);
}
if (pfds[0] != -1) {
close(pfds[0]);
}
execvp(cmd->argv[0], cmd->argv);
exit(1);
}
else { /* parent */
if (input != -1) {
close(input);
}
if (pfds[1] != -1) {
close(pfds[1]);
}
if (cmd->next != NULL) {
run_pipeline(cmd->next, pfds[0]);
}
}
}
</code></pre>
<p>Call it with the first command in the linked-list, and <code>input</code> = -1. It does the rest.</p>
http://stackoverflow.com/questions/1779715/how-to-get-mac-address-of-your-machine-using-a-c-programComment by Juliano on How to get MAC address of your machine using a C program?Juliano2009-11-22T19:48:27Z2009-11-22T19:48:27Zjldupont: Ubuntu, it was stated at the beginning of the question.http://stackoverflow.com/questions/1705147/struct-initialization-of-the-c-c-programming-language/1705166#1705166Comment by Juliano on Struct initialization of the C/C++ programming language?Juliano2009-11-10T14:46:09Z2009-11-10T14:46:09Z@jcyang: try with -Wall -pedantic --std=c89http://stackoverflow.com/questions/1704565/why-kiln-is-based-on-mercurial-and-not-other-dvcsComment by Juliano on Why Kiln is based on Mercurial, and not other (D)VCSJuliano2009-11-09T23:19:05Z2009-11-09T23:19:05ZYou sound like if it is a huge problem for it to be based on Mercurial... What is the problem?http://stackoverflow.com/questions/1670577/indenting-bash-script-output/1670632#1670632Comment by Juliano on Indenting Bash Script OutputJuliano2009-11-04T00:23:12Z2009-11-04T00:23:12Z@Ryan Bright: No, read the Bash manual, the REPLY variable is implied. Or just type this in a shell and test it for yourself.http://stackoverflow.com/questions/1657673/trap-control-d-and-control-cComment by Juliano on "Trap" control-d and control-cJuliano2009-11-01T19:09:49Z2009-11-01T19:09:49ZDoes your console program have a more elaborate UI than the usual stdin/stdout processor? What kind is it?http://stackoverflow.com/questions/1616571/c-send-data-to-multiple-udp-sockets/1616642#1616642Comment by Juliano on c++ send data to multiple UDP sockets Juliano2009-10-24T01:24:58Z2009-10-24T01:24:58ZMulticast works over the Internet, given some restrictions and some proper router configuration that is usually forgotten by most network admins. Just one example, you can listen to high-quality radio or watch high-quality TV from BBC over multicast: <a href="http://www.bbc.co.uk/multicast/" rel="nofollow">bbc.co.uk/multicast</a>http://stackoverflow.com/questions/1563856/handle-special-characters-in-bash-for-in-loop/1563868#1563868Comment by Juliano on Handle special characters in bash for...in loopJuliano2009-10-14T02:42:32Z2009-10-14T02:42:32ZThere is no need to change IFS in this case. * already expands to a list of parameters. IFS is used when converting a line (possibly after parameter expansion) into a list of parameters.http://stackoverflow.com/questions/1510526/get-the-correct-local-ip-adress-from-java-appletComment by Juliano on Get the correct local IP adress from java appletJuliano2009-10-02T16:28:04Z2009-10-02T16:28:04ZWhat exactly are you trying to do? Why do you need this information? What if the user doesn't have a local address? What if the user has many interfaces, and many local addresses? What if the user has IPv6 (which each interface may potentially have many addresses)? There is some design problem on your program, it should never rely on this characteristic to work correctly.http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/615845#615845Comment by Juliano on What is the best comment in source code you have ever encountered?Juliano2009-09-07T03:57:32Z2009-09-07T03:57:32Z@Mauris: It was originally a C and C++ extension for 64-bit integers, which many vendors supported. Then C99 and C++0x standardized support for it: <a href="http://en.wikipedia.org/wiki/Long_long" rel="nofollow">en.wikipedia.org/wiki/Long_long</a>http://stackoverflow.com/questions/1379246/any-reason-to-replace-whilecondition-with-forcondition-in-c/1379299#1379299Comment by Juliano on Any reason to replace while(condition) with for(;condition;) in C++?Juliano2009-09-04T13:38:23Z2009-09-04T13:38:23ZRemember that the <code>continue</code> statement has a different semantic in the latter case.http://stackoverflow.com/questions/1331204/is-there-an-easy-way-to-calculate-quantiles-with-bashComment by Juliano on Is there an easy way to calculate quantiles with bash?Juliano2009-08-25T22:03:30Z2009-08-25T22:03:30ZLooks like you are trying to use a hammer to screw.http://stackoverflow.com/questions/1329729/file-i-o-function-for-cComment by Juliano on File I/O function for CJuliano2009-08-25T17:32:25Z2009-08-25T17:32:25ZYou forgot to formulate your question as a question. It helps if you make it clear what you expect as an answer, perhaps having an interrogation mark somewhere.http://stackoverflow.com/questions/1207746/problems-with-sobindtodevice-linux-socket-optionComment by Juliano on Problems with SO_BINDTODEVICE Linux socket optionJuliano2009-08-23T23:10:17Z2009-08-23T23:10:17Zare you sure you need all that? Can't you just bind() the socket to the 192.168.7.1 address? It works for me.http://stackoverflow.com/questions/1312922/detect-if-stdin-is-a-terminal-or-pipe-in-c-c-qtComment by Juliano on Detect if stdin is a terminal or pipe in C/C++/Qt?Juliano2009-08-21T16:34:19Z2009-08-21T16:34:19ZWhat you want is not to detect if stdin is a pipe, but if stdin/stdout is a terminal.http://stackoverflow.com/questions/1294649/cleanest-way-to-combine-two-shorts-to-an-int/1294863#1294863Comment by Juliano on Cleanest way to combine two shorts to an int.Juliano2009-08-18T17:25:58Z2009-08-18T17:25:58ZNote that the standard does not guarantee that <code>all</code> will have any sensible data after assigning to <code>high</code> and <code>low</code>, and vice-versa. This solution is not portable.