User gbarry - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T18:54:21Zhttp://stackoverflow.com/feeds/user/19512http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1913143/how-to-convert-english-to-cron/1913255#19132550Answer by gbarry for How to Convert English to Cron?gbarry2009-12-16T08:54:47Z2009-12-16T08:54:47Z<p>Hmm, about those gotchas... How about also writing one that translates the cron params <em>back</em> to English? That way you can see if the parser "understood" you.</p>
http://stackoverflow.com/questions/1716507/get-ip-address-in-php/1716543#17165430Answer by gbarry for get ip address in phpgbarry2009-11-11T16:51:15Z2009-11-11T16:51:15Z<p>If you print_r($_SERVER) you will see what information is available, what it looks like, and what fields might be empty.</p>
http://stackoverflow.com/questions/1658579/c-memory-allocation-why-there-is-not-enough-memory250k-only/1658637#16586371Answer by gbarry for C Memory Allocation: Why there is not enough memory(250K only)gbarry2009-11-01T22:39:14Z2009-11-01T22:39:14Z<p>If you print out the value that you are passing to malloc, you will find out how much memory you are really asking for.</p>
http://stackoverflow.com/questions/1583435/svn-checkout-on-windows/1583475#15834750Answer by gbarry for svn checkout on windowsgbarry2009-10-17T23:15:11Z2009-10-17T23:15:11Z<p>If you really can't connect to the server, then even the <em>svn list</em> command won't work. In that case I'd try one more tactic. From your command line, try <code>telnet <yoursvnserver> 3690</code>. If you get an error with that, it just might be more descriptive than "can't connect".</p>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/1536058#15360580Answer by gbarry for What was your first home computer?gbarry2009-10-08T07:03:12Z2009-10-08T07:03:12Z<p>HP-2116. In the minicomputer days, I defined "personal computer" to be "anything you could reboot without anyone caring", meaning a single-user machine. This particular machine was stuck into the lab for experimentation after they upgraded the time sharing system with something newer.</p>
http://stackoverflow.com/questions/675442/comment-out-a-python-code-block3Comment out a python code blockgbarry2009-03-23T22:17:57Z2009-10-02T06:50:01Z
<p>Is there any mechanism to comment out large blocks of Python code? Right
now the only ways I can see of commenting out code are to either start
every line with a #, or to enclose the code in """ (triple quotes),
except that actually makes it show up in various doc tools.</p>
<p>Edit--After reading the answers (and referring to the "duplicate"), I have concluded the correct answer is "No". One person said so, and the rest lectured us about editors. Not a bad thing, but I feel it's important to put the answer at the top. </p>
http://stackoverflow.com/questions/1468596/c-programming-calculate-elapsed-time-in-milliseconds-unix/1468621#14686210Answer by gbarry for C Programming. Calculate Elapsed Time in Milliseconds (UNIX)gbarry2009-09-23T21:32:22Z2009-09-23T21:40:56Z<p>C libraries have a function to let you get the system time. You can calculate elapsed time after you capture the start and stop times. </p>
<p>The function is called gettimeofday() and you can look at the man page to find out what to include and how to use it.</p>
http://stackoverflow.com/questions/1428103/return-variable-approach/1428237#14282370Answer by gbarry for return variable approach gbarry2009-09-15T16:32:32Z2009-09-15T16:32:32Z<p>Are you the one setting the variable in the first place? Because at that point you know which one it is, and you could pass back some indication as to which variable got set, instead of returning a "puzzle" to the code that called it.</p>
http://stackoverflow.com/questions/1415854/kr-c-exercise-help/1415923#14159231Answer by gbarry for K&R C Exercise Helpgbarry2009-09-12T19:34:41Z2009-09-12T19:34:41Z<p>That "possible answer" is just code without comments. No wonder it didn't help you.</p>
<p>The question (and probably the answerers) assume that you are familiar with bit fields. This sort of thing is very common in embedded programming where you control hardware registers. </p>
<p>Say there's a register that sets the audio volume level, among other things. It might, at the same time, let you select speakers or microphones and things like that. The bits might look like this:</p>
<p>ssAAAmxx -- Each letter represents a <em>bitfield</em> within that number. To change the volume, you have to alter the value of "AAA". Now, lets say you have something in your program that lets you adjust the volume. It's a simple control, and it always returns a number between 0 and 7. The format for that looks like this:</p>
<p>xxxxxAAA -- You job then, is to take the AAA bits from this (call it "y"), and set them into that number above (call it "x"), without altering the bits that aren't the A's. Thus, the problem would read, "Take the rightmost 3 bits of y, and set them into x, starting with bit 5 (remember, they count bits from zero). Then, 3 and 5 in our example become n and p in the original problem.</p>
http://stackoverflow.com/questions/1380315/what-are-some-good-ways-of-keeping-content-from-being-copied-to-other-sites/1380473#13804731Answer by gbarry for What are some good ways of keeping content from being copied to other sitesgbarry2009-09-04T17:08:01Z2009-09-04T17:08:01Z<p>How about putting links to your site in with the displayed data? No big fanfare, but just suggest that the for the most up to date figures, they can go to the real website that publishes them.</p>
<p>Most of what you try will only work for a time. Until you exceed their laziness factor. (What they're doing suggests a high laziness factor.)</p>
<p>Laws don't protect publicly available data, but you may be able to protect the packaging and presentation.</p>
http://stackoverflow.com/questions/1282506/where-did-the-text-segment-get-its-name5Where did the text segment get its name?gbarry2009-08-15T18:27:09Z2009-08-15T21:03:27Z
<p>Traditional assembler, and higher level compilers work with several memory <em>segments</em>, according to intended use. Hence, there is a data segment, a stack segment, a bss, and text segment. The text segment is also called the code segment.</p>
<p><em>Text</em> segment? For <em>machine code</em>?</p>
<p>I have asked all the old-timers I could find, how something as unreadable as machine code came to be know as the "text segment". Every one of them agreed that, that was really what it was called, but none of them seemed to be surprised by it. And no one could offer an explanation.</p>
<p>Here's your chance to show off your geek history knowledge by enlightening us.</p>
http://stackoverflow.com/questions/1158333/is-there-any-crash-course-for-fogbugz/1242416#12424161Answer by gbarry for Is there any crash course for FogBUGZ?gbarry2009-08-07T01:20:15Z2009-08-07T01:20:15Z<p>There's a philosophy behind this program, that "there's nothing that you <em>have</em> to enter". That means you can just jump in and start playing. Part of the necessary learning curve is just getting used to the interface. Once you're past that, the help, articles, and books make a lot more sense.</p>
http://stackoverflow.com/questions/1055959/print-the-address-a-pointer-contains-in-c/1056433#10564330Answer by gbarry for Print the Address a Pointer Contains in Cgbarry2009-06-29T03:18:07Z2009-06-29T03:18:07Z<p>I have been in this position, especially with new hardware. I suggest you write a little hex dump routine of your own. You will be able to see the data, and the addresses they are at, shown all together. It's good practice and a confidence builder.</p>
http://stackoverflow.com/questions/1056394/in-bash-how-does-one-clear-the-current-input/1056410#10564101Answer by gbarry for In bash, how does one clear the current input?gbarry2009-06-29T03:10:09Z2009-06-29T03:10:09Z<p>Try Control-U. That clears the input line.</p>
http://stackoverflow.com/questions/1025735/i-cant-understand-keyvalue-this-code-in-php/1025793#10257933Answer by gbarry for i can't understand "key=>value" this code in php ?gbarry2009-06-22T06:53:24Z2009-06-22T06:53:24Z<blockquote>
<p>"$key => $value" ... I looked it up in google but it didn't returned any results</p>
</blockquote>
<p>The most important advice for you is to become familiar with the documentation at www.php.net . In your case you would look at "foreach" in the "function list". This documentation is considered by many to be the best example any language has so far. </p>
http://stackoverflow.com/questions/1013651/using-cygwin-to-compile-a-c-program-execution-error/1013738#10137380Answer by gbarry for Using Cygwin to Compile a C program; Execution errorgbarry2009-06-18T16:31:51Z2009-06-18T16:31:51Z<p>Cygwin is very cool! You can compile programs from other systems (Linux, for example), <em>and they will work</em>. I'm talking communications programs, or web servers, even.</p>
<p>Here is one trick. If you are looking at your file in the Windows File Explorer, you can type "cd " in your bash windows, then drag from explorer's address bar into the cygwin window, and the full path will be copied! This works in the Windows command shell as well, by the way. </p>
<p>Also: While "cd /cygdrive/c" is the formal path, it will also accept "cd c:" as a shortcut. You may need to do this before you drag in the rest of the path.</p>
<p>The stdio.h file should be found automatically, as it would be on a conventional system.</p>
http://stackoverflow.com/questions/917450/dual-booting-windows-2k3-server-and-linux-mbr/917480#9174800Answer by gbarry for Dual booting Windows 2k3 Server and Linux MBRgbarry2009-05-27T19:08:23Z2009-05-27T19:08:23Z<p>Perhaps the motherboard has the "boot sector virus protection" option?</p>
http://stackoverflow.com/questions/898443/how-to-ignore-arrow-keys-in-c-reading-from-stdin/900391#9003910Answer by gbarry for How to ignore arrow keys in C reading from stdin?gbarry2009-05-22T23:19:01Z2009-05-22T23:19:01Z<p>The answer ultimately depends on where the keys come from. I ran this program under Cygwin:</p>
<pre><code>int main(void)
{
int c=0;
while( c != 'X' ) {
c = getchar();
printf("\nc=%d", c);
}
}
</code></pre>
<p>Every time a cursor key comes along, I see escape (27), a bracket, plus another character.
So, if you get results like that, you can skip 3 keys every time you see a 27. You could also look at them and make use of them!</p>
<p>As mentioned, YMMV, especially for the O.S., and the actual key-getting function you call. </p>
http://stackoverflow.com/questions/876293/fastest-algorithm-for-circle-shift-n-sized-array-for-m-position/876299#8762994Answer by gbarry for Fastest algorithm for circle shift N sized array for M positiongbarry2009-05-18T04:58:48Z2009-05-18T05:10:53Z<p>Set it up with pointers, and it takes almost no time. Each element points to the next, and the "last" (there is no last; after all, you said it was circular) points to the first. One pointer to the "start" (first element), and maybe a length, and you have your array. Now, to do your shift, you just walk your start pointer along the circle. </p>
<p>Ask for a good algorithm, and you get sensible ideas. Ask for <em>fastest</em>, and you get weird ideas!</p>
http://stackoverflow.com/questions/235848/most-astonishing-violation-of-the-principle-of-least-astonishment/236061#23606183Answer by gbarry for Most Astonishing Violation of the Principle of Least Astonishmentgbarry2008-10-25T07:40:44Z2009-05-14T12:57:18Z<p>The original Macintosh computer did not have a button to eject the diskette. Instead, you were supposed to ... drag the diskette's icon to the trash.</p>
http://stackoverflow.com/questions/832941/what-was-your-first-programming-book/833036#8330360Answer by gbarry for What was your first programming book?gbarry2009-05-07T05:42:55Z2009-05-07T05:42:55Z<p>"A Programming Language" by Ken Iverson. Hey, what did I know?</p>
http://stackoverflow.com/questions/817471/what-is-the-oldest-code-written-by-yourself-to-which-you-still-have-access/817973#8179731Answer by gbarry for What is the oldest code written by yourself to which you still have access?gbarry2009-05-03T20:51:33Z2009-05-03T20:51:33Z<p>In 1972 I had my very first timeshare-on-a-tty experience, for which I saved the printout, but I don't think I still have it.</p>
<p>In the '70s I went to college, and I have a box of paper tapes from that experience. Although I can't read them now, I do have a tape reader head that will one day be made into something that can. I also have a small punch card deck, but no desire to read them (although some tricks with a camera are quite possible).</p>
<p>As for "show me now", my hard drive has a partition which was my previous computer. And on that partition is a <em>directory</em> which is the computer that came before it. And so on, recursively, all the way back to DOS, and then...CP/M files, which there are no dates!</p>
http://stackoverflow.com/questions/810214/coding-styles/810300#8103000Answer by gbarry for coding stylesgbarry2009-05-01T05:32:46Z2009-05-01T05:32:46Z<p>Case 2. If I leave out a semicolon, I have a program that tells me so. It's the <em>compiler</em>.</p>
http://stackoverflow.com/questions/791328/how-does-the-bitwise-complement-operator-work/791537#7915371Answer by gbarry for How does the bitwise complement (~) operator work?gbarry2009-04-26T20:22:13Z2009-04-26T20:22:13Z<p>This operation is a complement, not a negation.</p>
<p>Consider that ~0 = -1, and work from there.</p>
<p>The algorithm for negation is, "complement, increment".</p>
<p>Did you know? There is also "one's complement" where the inverse numbers <em>are</em> symmetrical, and it has both a 0 and a -0.</p>
http://stackoverflow.com/questions/790195/rm-fails-to-delete-files-by-wildcard-from-a-script-but-works-from-a-shell-prompt/790309#7903090Answer by gbarry for rm fails to delete files by wildcard from a script, but works from a shell promptgbarry2009-04-26T05:46:27Z2009-04-26T05:46:27Z<p>More info about the internal workings: Try typing:</p>
<pre><code>echo "$archivedir/*.bz2"
</code></pre>
<p>at the shell prompt. You'll see it expands immediately. So rm never sees the * at all; instead, it is that list that is passed to it. </p>
<p>Edit: I see you basically tried that. What you want to do then, is try it when there are several bz2 files in that directory. Then you'll see the effect.</p>
http://stackoverflow.com/questions/782375/which-is-more-popular-currently-by-recent-install-base-svn-or-cvs/782438#7824381Answer by gbarry for Which is more popular (currently, by recent install base) SVN or CVS?gbarry2009-04-23T16:08:13Z2009-04-23T16:08:13Z<p>Every *nix server ships with CVS. You have to be a little more informed to use SVN. And it has to be installed first. These facts will affect the stats far more than "which is more popular".</p>
<p>Sourceforge added SVN. Now they are adding several more SCM systems.</p>
http://stackoverflow.com/questions/764907/binary-format-to-pass-tabular-data/765014#7650140Answer by gbarry for binary format to pass tabular datagbarry2009-04-19T07:31:44Z2009-04-19T07:31:44Z<p>In embedded work, it is generally suggested that the embedded device do as little work as possible, and let the client computer take advantage of its own speed an availability of tools. Given your example, I could collect the data, then format the table, just from looking at the max size of the data I received, or the max size of the column header (my choice). And since it is debugging info, it wouldn't matter too much if the table size changed from one collection to the next. Or, your device could "force" the column size just by sending header labels, or it could even transmit a first line of dummy data where all the data is zeros, but in the desired format and length.</p>
http://stackoverflow.com/questions/761084/microchip-linker-problem/761162#7611620Answer by gbarry for Microchip Linker problem gbarry2009-04-17T16:34:17Z2009-04-17T16:34:17Z<p>I use a third-party compiler, so I can't offer any specific experience on that. But one thing I may suspect is that something in the code is causing the compilation to stop partway through. This can be an unterminated comment, or a function with a closing brace missing. Consider especially the #included files, because you can't see the effects in your editor when you look at the main file, and particularly check any #includes that you have written yourself. And at the top of the list is, "what did you change last"?</p>
<p>What I do at this point is make a branch copy, and start mercilessly hacking out huge blocks of code, just to see when the error goes away. Divide and conquer. Of course, this can be time consuming, so I'd probably ask on StackOverflow, first :)</p>
http://stackoverflow.com/questions/761034/seo-history-and-php/761110#7611100Answer by gbarry for SEO History and PHPgbarry2009-04-17T16:21:20Z2009-04-17T16:21:20Z<p>Well, you can't <em>get</em> a php page, you can only get the results of executing it. Then, consider what a search engine would do with a page that's different every time it's retrieved, especially if it ranks by the number of times the <em>same result</em> is linked to.</p>
http://stackoverflow.com/questions/745152/what-is-the-maximum-size-of-buffers-memcpy-memset-etc-can-handle/745171#7451710Answer by gbarry for What is the maximum size of buffers memcpy/memset etc. can handle?gbarry2009-04-13T20:02:24Z2009-04-13T20:02:24Z<p>Implementation dependent, but you can look in the header (.h) file that you need to include before you can use memcpy. The declaration will tell you (look for size_t or other).</p>
<p>And then you ask what size_t is, well, that's the implementation dependent part.</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/279191#279191Comment by gbarry on Fastest way to get value of pigbarry2009-12-12T21:50:44Z2009-12-12T21:50:44ZThanks, guys! Now I can go worry if the random number generator used pi to make the numbers :)http://stackoverflow.com/questions/52676/favorite-windows-keyboard-shortcuts/397061#397061Comment by gbarry on Favorite Windows keyboard shortcutsgbarry2009-11-23T19:10:38Z2009-11-23T19:10:38ZYou can get two per letter, so, Ctrl+Alt+w is different than Ctrl+Alt+W. Numbers work, too.http://stackoverflow.com/questions/52676/favorite-windows-keyboard-shortcuts/221392#221392Comment by gbarry on Favorite Windows keyboard shortcutsgbarry2009-11-23T19:06:02Z2009-11-23T19:06:02ZAstonishing how many people have a physical calculator on their desk because they can't figure this out.http://stackoverflow.com/questions/1757421/is-there-any-software-which-could-make-architecture-diagram-out-of-existing-sourcComment by gbarry on Is there any software which could make architecture diagram out of existing source code?gbarry2009-11-18T17:08:21Z2009-11-18T17:08:21ZImagine you now have a diagram that looks like a pot of spaghetti. Will that be helpful?http://stackoverflow.com/questions/1716507/get-ip-address-in-phpComment by gbarry on get ip address in phpgbarry2009-11-11T16:53:53Z2009-11-11T16:53:53ZTitle should mention connecting client IP, since it seems to imply you want your own IP.http://stackoverflow.com/questions/1692366/telnet-to-google-mail-serverComment by gbarry on Telnet to google mail servergbarry2009-11-07T08:10:15Z2009-11-07T08:10:15ZI don't know where that address comes from. I should think gmail.com would suffice. But I tried that, and got the same result. So, question is still open.http://stackoverflow.com/questions/599365/what-is-your-favorite-c-programming-trick/599595#599595Comment by gbarry on What is your favorite C programming trick?gbarry2009-11-02T20:05:01Z2009-11-02T20:05:01ZApparently, I could. It's not completely standard, but it worked in the compilers that I use. Interestingly, the embedded compiler translated a #define, while gcc did not.http://stackoverflow.com/questions/1659794/is-it-business-suicide-to-build-a-entire-website-in-flash/1659934#1659934Comment by gbarry on Is it business suicide to build a entire website in Flash?gbarry2009-11-02T19:48:15Z2009-11-02T19:48:15ZMy first impression was "Yes" but I'm going to change it to "Maybe". This may be like ad blocking--no geek, duct-tape programmer, or developer will go near that site. But maybe that's not its market.http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/109146#109146Comment by gbarry on What was your first home computer?gbarry2009-10-08T07:06:44Z2009-10-08T07:06:44ZMy first (non-minicomputer) and truly in-home.http://stackoverflow.com/questions/1487629/regexp-perl-code-for-handling-both-dots-and-commas-as-valid-decimal-separators/1487661#1487661Comment by gbarry on Regexp/perl code for handling both dots and commas as valid decimal separatorsgbarry2009-09-28T16:42:10Z2009-09-28T16:42:10ZSwitch? Given/when? Ha! We use regexp to to avoid coding--and now we're coding!http://stackoverflow.com/questions/1480607/funny-or-inspiring-programming-related-quotesComment by gbarry on funny or inspiring programming related quotesgbarry2009-09-26T07:02:20Z2009-09-26T07:02:20ZI think you're allowed to remove your question...:)http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652802#652802Comment by gbarry on What is the worst real-world macros/pre-processor abuse you've ever come across?gbarry2009-09-25T07:41:54Z2009-09-25T07:41:54ZEspecially since it's a C question :)http://stackoverflow.com/questions/1384119/help-with-translating-this-assembly-into-cComment by gbarry on Help with translating this assembly into cgbarry2009-09-07T07:38:54Z2009-09-07T07:38:54ZI'm going to guess that your question is along the lines of "I need a math package in my C program but the one that I have is written in assembler".http://stackoverflow.com/questions/1380315/what-are-some-good-ways-of-keeping-content-from-being-copied-to-other-sites/1380397#1380397Comment by gbarry on What are some good ways of keeping content from being copied to other sitesgbarry2009-09-04T19:43:55Z2009-09-04T19:43:55ZAnything you try that is "tricky" should probably be tried in a bunch of different browsers to make sure it doesn't backfire on you.http://stackoverflow.com/questions/1284338/redirect-from-localhost-to-localhost-abcComment by gbarry on redirect from localhost to localhost/abc/gbarry2009-08-16T16:04:42Z2009-08-16T16:04:42ZNeed I remind y'all that the authors of S.O. want an answer on S.O. to come up when someone googles the question?