User Randy Proctor - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T11:02:28Z http://stackoverflow.com/feeds/user/22131 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1827396/c-function-merge-help/1827912#1827912 2 Answer by Randy Proctor for c function merge help Randy Proctor 2009-12-01T18:19:14Z 2009-12-01T18:19:14Z <p>You could implement the free function with a void * and field offsets. Untested:</p> <pre><code>void free_either(void *either, size_t other_offset, size_t next_offset) { void *either_tmp; while (either_tmp = either) { free((char *)either + other_offset); either_tmp = (char *)either + next_offset; free(either); } } free_either(this,offsetof(THIS,str),offsetof(THIS,next)); free_either(that,offsetof(THAT,id),offsetof(THAT,next)); </code></pre> <p>You could then create macros to replace the old <code>free_this</code> or <code>free_that</code> functions.</p> http://stackoverflow.com/questions/1728683/case-insensitive-comparision-of-strings-in-shell-script/1728763#1728763 0 Answer by Randy Proctor for Case Insensitive comparision of strings in Shell script Randy Proctor 2009-11-13T11:52:35Z 2009-11-13T11:52:35Z <p>One way would be to convert both strings to upper or lower:</p> <pre><code>test $(echo "string" | /bin/tr -s '[:upper:]' '[:lower:]') = $(echo "String" | /bin/tr -s '[:upper:]' '[:lower:]') &amp;&amp; echo same || echo different </code></pre> <p>Another way would be to use grep:</p> <pre><code>echo "string" | grep -qi '^String$' &amp;&amp; echo same || echo different </code></pre> http://stackoverflow.com/questions/1708200/saying-c-c-are-equal-by-functionality-but-not-by-concept/1708233#1708233 13 Answer by Randy Proctor for Saying "C & C# are equal by functionality, but not by concept" Randy Proctor 2009-11-10T14:09:06Z 2009-11-10T14:09:06Z <p>Well, they are both Turing complete.</p> http://stackoverflow.com/questions/1687642/set-screen-title-from-shellscript/1687710#1687710 3 Answer by Randy Proctor for Set screen-title from shellscript Randy Proctor 2009-11-06T13:49:17Z 2009-11-06T13:49:17Z <pre><code>set_screen_title () { echo -ne "\ek$1\e\\" } </code></pre> http://stackoverflow.com/questions/1680194/reverse-a-word-in-vim/1680392#1680392 2 Answer by Randy Proctor for Reverse a word in Vim Randy Proctor 2009-11-05T12:55:29Z 2009-11-05T12:55:29Z <p>If you have some time on your hands, you can bubble your way there by iteratively transposing characters (<code>xp</code>)...</p> http://stackoverflow.com/questions/1675092/is-there-c-syntax-for-function-pointer-from-function-declaration/1675452#1675452 0 Answer by Randy Proctor for Is There C Syntax For Function Pointer From Function Declaration Randy Proctor 2009-11-04T17:38:37Z 2009-11-04T17:38:37Z <p>Not quite the same, but you can typedef the function and use it for both the prototype and the pointer.</p> <pre><code>typedef int fooFunc(int); fooFunc foo; fooFunc *aFunc; </code></pre> http://stackoverflow.com/questions/1650164/bash-copy-named-files-recursively-preserving-folder-structure/1650178#1650178 8 Answer by Randy Proctor for BASH: Copy named files recursively, preserving folder structure Randy Proctor 2009-10-30T14:36:20Z 2009-10-30T14:36:20Z <p>One way:</p> <pre><code>tar cf - &lt;files&gt; | (cd /dest; tar xf -) </code></pre> http://stackoverflow.com/questions/1323314/detecting-if-a-given-number-is-an-integer/1323336#1323336 3 Answer by Randy Proctor for Detecting if a given number is an integer Randy Proctor 2009-08-24T16:17:33Z 2009-08-24T16:17:33Z <p>if (Math.floor(x) == x)</p> http://stackoverflow.com/questions/1074228/is-there-any-java-function-or-util-class-which-does-rounding-this-way-func3-2/1074316#1074316 2 Answer by Randy Proctor for Is there any Java function or util class which does rounding this way: func(3/2) = 2? Randy Proctor 2009-07-02T13:24:24Z 2009-07-02T13:24:24Z <p>To convert floor division to ceiling division:</p> <pre><code>(numerator + denominator-1) / denominator </code></pre> <p>To convert floor division to rounding division:</p> <pre><code>(numerator + (denominator)/2) / denominator </code></pre> http://stackoverflow.com/questions/673119/detaching-a-process-from-terminal-entirely/673140#673140 2 Answer by Randy Proctor for detaching a process from terminal, entirely Randy Proctor 2009-03-23T12:05:02Z 2009-03-23T12:05:02Z <p>If you are using bash, try "disown". Otherwise you can try "at now".</p> http://stackoverflow.com/questions/635780/why-does-glibc-timezone-global-not-agree-with-system-time-on-dst/635843#635843 2 Answer by Randy Proctor for Why does glibc "timezone" global not agree with system time on DST? Randy Proctor 2009-03-11T18:47:13Z 2009-03-11T18:47:13Z <p>I don't think "timezone" changes with daylight time. Try the "daylight" variable. On my system:</p> <pre> The external variable timezone contains the difference, in seconds, between UTC and local standard time (for example, in the U.S. Eastern time zone (EST), timezone is 5*60*60). The external variable daylight is non-zero only if a summer time zone adjustment is specified in the TZ environment variable. </pre> http://stackoverflow.com/questions/610165/flush-output-in-bourne-shell/610661#610661 1 Answer by Randy Proctor for flush output in Bourne Shell Randy Proctor 2009-03-04T13:54:59Z 2009-03-04T13:54:59Z <p>Try changing:</p> <pre> echo "text" </pre> <p>To:</p> <pre> cat &lt;&lt; EOF text EOF </pre> http://stackoverflow.com/questions/546486/what-is-the-best-way-to-test-for-file-existence-on-a-network-share-on-windows-vis/606645#606645 0 Answer by Randy Proctor for What is the best way to test for file existence on a network share on Windows Vista? Randy Proctor 2009-03-03T14:43:46Z 2009-03-03T14:43:46Z <p>Just open it.</p> http://stackoverflow.com/questions/524825/automatically-replacing-variables-with-defines/602136#602136 0 Answer by Randy Proctor for Automatically replacing variables with #defines Randy Proctor 2009-03-02T12:26:33Z 2009-03-02T12:26:33Z <p>You can't do exactly what you want, since by the time the compiler gets the pre-processor output, the "ONE" token is long gone. However, if your goal is to write the list of constants once but generate both tokens and strings, then this can be done.</p> <p>First, use a macro to build the constants as enums in a header file. File enums.h:</p> <pre> #ifndef ENUMS_H #define ENUMS_H #ifndef ENUM #define ENUM(name,val) enum { name = val }; #endif ENUM(ONE,1) ENUM(TWO,2) ENUM(THREE,3) #endif /* ENUMS_H */ </pre> <p>Second, redefine the macro in a .c file to create a string/integer mapping and include the .h file in the right place. File enums.c:</p> <pre> #include #include typedef struct { char *str; int val; } DescriptiveEnum; static DescriptiveEnum enums[] = { #define ENUM(name,val) { #name, val }, #include "enums.h" }; #define NUM_ENUMS (sizeof(enums)/sizeof(enums[0])) char *enum_to_str(int val) { int i; for (i=0;i&lt;NUM_ENUMS;i++) { if (enums[i].val == val) return enums[i].str; } return ""; } </pre> <p>Now both the enum constants and the mapping function are available to callers. File main.c:</p> <pre> #include &lt;stdio.h> #include &lt;stdlib.h> #include "enums.h" char *enum_to_str(int val); int main(int argc, char *argv[]) { int val; val = ONE; printf("%d %s\n",val,enum_to_str(val)); return EXIT_SUCCESS; } </pre> http://stackoverflow.com/questions/596306/using-the-open-system-call/596337#596337 9 Answer by Randy Proctor for Using the open() system call Randy Proctor 2009-02-27T19:51:38Z 2009-02-27T19:51:38Z <p>You probably need the third argument. For example:</p> <pre> open('path',O_WRONLY|O_CREAT,0640); </pre> http://stackoverflow.com/questions/560582/idle-session-in-aix/560758#560758 0 Answer by Randy Proctor for Idle Session in aix Randy Proctor 2009-02-18T11:53:45Z 2009-02-18T11:53:45Z <p><a href="http://en.wikipedia.org/wiki/GNU_Screen" rel="nofollow">GNU Screen</a> is a more general solution to this problem.</p> http://stackoverflow.com/questions/556316/how-to-rename-move-all-files-with-a-certain-extension/556735#556735 0 Answer by Randy Proctor for How to rename/move all files with a certain extension? Randy Proctor 2009-02-17T13:17:05Z 2009-02-17T18:39:39Z <pre> $ ls -1 1.status 2.status rename.tclsh* some_dir/ two words.status $ cat rename.tclsh #!/usr/local/bin/tclsh eval exec /bin/mv [glob *.status] some_dir $ ./rename.tclsh $ ls -1 rename.tclsh* some_dir/ $ ls -1 some_dir/ 1.status 2.status two words.status </pre> http://stackoverflow.com/questions/529460/how-to-get-ctags-to-pick-up-functions-in-a-h-file/529513#529513 1 Answer by Randy Proctor for How to get ctags to pick up functions in a .h file ? Randy Proctor 2009-02-09T19:30:13Z 2009-02-09T19:49:41Z <p>You need to add --c-types=+p (now --c-kinds).</p> http://stackoverflow.com/questions/529054/how-to-escape-extended-pathname-expansion-patterns-in-quoted-expressions/529114#529114 1 Answer by Randy Proctor for How to escape extended pathname expansion patterns in quoted expressions? Randy Proctor 2009-02-09T17:40:46Z 2009-02-09T17:40:46Z <pre> $ bash -O extglob -c 'echo !(file2)' file1 file3 </pre> http://stackoverflow.com/questions/326937/subversion-how-to-merge-only-specific-revisions-into-trunk-when-multiple-consecu/487926#487926 2 Answer by Randy Proctor for Subversion: How to merge only specific revisions into trunk when multiple consecutive changes are made in a branch? Randy Proctor 2009-01-28T15:02:03Z 2009-01-28T15:07:46Z <p>I believe you are including the revisions you want correctly, but the merge algorithm is failing to find the place to insert the wanted change and so including the line above it also. Here are the same steps but with a different set of changes, and I believe it works as you expected originally:</p> <pre> $ svnadmin create repo $ svn mkdir -m '' file://`pwd`/repo/trunk Committed revision 1. $ svn mkdir -m '' file://`pwd`/repo/branches Committed revision 2. $ svn co file://`pwd`/repo/trunk co.trunk Checked out revision 2. $ cat > co.trunk/test.txt &lt;&lt; EOF > A > B > C > EOF $ svn add co.trunk/test.txt A co.trunk/test.txt $ svn commit -m '' co.trunk Adding co.trunk/test.txt Transmitting file data . Committed revision 3. $ svn copy -m '' file://`pwd`/repo/trunk file://`pwd`/repo/branches/testbr Committed revision 4. $ svn co file://`pwd`/repo/branches/testbr co.testbr A co.testbr/test.txt Checked out revision 4. $ cat > co.testbr/test.txt &lt;&lt; EOF > A > A1 unwanted > B > C > EOF $ svn commit -m '' co.testbr Sending co.testbr/test.txt Transmitting file data . Committed revision 5. $ cat > co.testbr/test.txt &lt;&lt; EOF > A > A1 unwanted > B > B1 wanted > C > EOF $ svn commit -m '' co.testbr Sending co.testbr/test.txt Transmitting file data . Committed revision 6. $ svn merge -r 5:6 file://`pwd`/repo/branches/testbr co.trunk --- Merging r6 into 'co.trunk': U co.trunk/test.txt $ cat co.trunk/test.txt A B B1 wanted C </pre> http://stackoverflow.com/questions/200737/get-full-path-of-executable-of-running-process-on-hpux/473150#473150 2 Answer by Randy Proctor for Get full path of executable of running process on HPUX... Randy Proctor 2009-01-23T14:52:24Z 2009-01-23T14:52:24Z <p>On HP-UX, use pstat:</p> <pre> #include &lt;stdio.h> #include &lt;stdlib.h> #include &lt;limits.h> #include &lt;unistd.h> #define _PSTAT64 #include &lt;sys/pstat.h> int main(int argc, char *argv[]) { char filename[PATH_MAX]; struct pst_status s; if (pstat_getproc(&s,sizeof(s),0,getpid()) == -1) { perror("pstat_getproc"); return EXIT_FAILURE; } if (pstat_getpathname(filename,sizeof(filename),&s.pst_fid_text) == -1) { perror("pstat_getpathname"); return EXIT_FAILURE; } printf("filename: %s\n",filename); return EXIT_SUCCESS; } </pre> http://stackoverflow.com/questions/1784652/structs-interface/1784736#1784736 Comment by Randy Proctor on Structs interface Randy Proctor 2009-11-23T18:09:59Z 2009-11-23T18:09:59Z Good question! I got nothing. http://stackoverflow.com/questions/1784652/structs-interface/1784736#1784736 Comment by Randy Proctor on Structs interface Randy Proctor 2009-11-23T17:57:25Z 2009-11-23T17:57:25Z No reason you couldn't write &quot;aStruct.setSomeValue(VALUE)&quot;, assuming a proper init function to set some function pointers. http://stackoverflow.com/questions/1772536/strcat-vs-sprintf/1772565#1772565 Comment by Randy Proctor on strcat() vs sprintf() Randy Proctor 2009-11-20T19:23:29Z 2009-11-20T19:23:29Z strncpy() can leave you without a terminator. strlcpy() or strlcat() would be better. http://stackoverflow.com/questions/1687293/to-take-the-backup-of-required-files-of-svn-repository Comment by Randy Proctor on To take the backup of required files of SVN repository Randy Proctor 2009-11-06T12:39:05Z 2009-11-06T12:39:05Z You need the history I assume? http://stackoverflow.com/questions/1675092/is-there-c-syntax-for-function-pointer-from-function-declaration/1675452#1675452 Comment by Randy Proctor on Is There C Syntax For Function Pointer From Function Declaration Randy Proctor 2009-11-04T17:39:33Z 2009-11-04T17:39:33Z Nevermind, beaten. http://stackoverflow.com/questions/1669589/strcat-problem-in-c-segmentation-fault Comment by Randy Proctor on strcat problem in C, segmentation fault Randy Proctor 2009-11-03T19:28:24Z 2009-11-03T19:28:24Z This looks like it's a long way from working. You might want to post all of the code. http://stackoverflow.com/questions/238603/how-can-i-get-a-files-size-in-c Comment by Randy Proctor on How can I get a file's size in C? Randy Proctor 2009-10-29T13:44:33Z 2009-10-29T13:44:33Z Note that sizeof(char) is 1, by definition. http://stackoverflow.com/questions/1565790/comparing-two-identical-strings-returns-false-in-php Comment by Randy Proctor on Comparing two identical strings returns false in PHP Randy Proctor 2009-10-14T11:57:59Z 2009-10-14T11:57:59Z What does strcmp() say? http://stackoverflow.com/questions/1129499/how-to-get-the-size-of-a-dir-programatically-in-linux Comment by Randy Proctor on how to get the size of a dir programatically in linux ? Randy Proctor 2009-07-15T12:49:21Z 2009-07-15T12:49:21Z The disk usage (du) and sum of file sizes (stat) are not the same thing. Which do you want? http://stackoverflow.com/questions/440133/how-do-i-create-a-random-alpha-numeric-string-in-c/440240#440240 Comment by Randy Proctor on How do I create a random alpha-numeric string in C++? Randy Proctor 2009-05-15T13:02:54Z 2009-05-15T13:02:54Z You probably don't want to use a simple rand() with modulus. See: <a href="http://c-faq.com/lib/randrange.html" rel="nofollow">c-faq.com/lib/randrange.html</a> http://stackoverflow.com/questions/556316/how-to-rename-move-all-files-with-a-certain-extension/556735#556735 Comment by Randy Proctor on How to rename/move all files with a certain extension? Randy Proctor 2009-05-11T12:50:35Z 2009-05-11T12:50:35Z I don't think what is be invoked is as important as how to invoke it. Replace mv with any arbitrary command and the problem still stands. http://stackoverflow.com/questions/635780/why-does-glibc-timezone-global-not-agree-with-system-time-on-dst/635843#635843 Comment by Randy Proctor on Why does glibc "timezone" global not agree with system time on DST? Randy Proctor 2009-03-11T19:16:07Z 2009-03-11T19:16:07Z I think I agree with you. I'd suggest { time_t t = time(NULL); printf(&quot;%d\n&quot;,(int)difftime(mktime(gmtime(&amp;t)),t)); } but that gives me the same result as &quot;timezone&quot;. http://stackoverflow.com/questions/612739/the-debugger-has-exited-due-to-signal-10-when-writing-a-char-iteration/612758#612758 Comment by Randy Proctor on "The Debugger has exited due to signal 10" when writing a char* iteration Randy Proctor 2009-03-04T22:30:55Z 2009-03-04T22:30:55Z Good answer, but for completeness, strlcpy() is preferred. http://stackoverflow.com/questions/612739/the-debugger-has-exited-due-to-signal-10-when-writing-a-char-iteration Comment by Randy Proctor on "The Debugger has exited due to signal 10" when writing a char* iteration Randy Proctor 2009-03-04T22:27:29Z 2009-03-04T22:27:29Z What is the value of n? http://stackoverflow.com/questions/610165/flush-output-in-bourne-shell/610661#610661 Comment by Randy Proctor on flush output in Bourne Shell Randy Proctor 2009-03-04T14:24:17Z 2009-03-04T14:24:17Z I suspected they might write differently (different buffer sizes, etc.), and it worked for me. Of course you can't entirely fix the problem without locking of some sort, but choice of write method might make it less noticeable.