User paxdiablo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T20:39:39Z http://stackoverflow.com/feeds/user/14860 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/196732/how-do-i-efficiently-empty-a-perl-dbm-file 4 How do I efficiently empty a Perl DBM file? paxdiablo 2008-10-13T04:42:33Z 2009-12-07T17:31:07Z <p>I've inherited a piece of code with a snippet which empties the database as follows:</p> <pre><code>dbmopen (%db,"file.db",0666); foreach $key (keys %db) { delete $db{$key}; } dbmclose (%db); </code></pre> <p>This is usually okay but sometimes the database grows very large before this cleanup code is called and it's usually when a user wants to do something important.</p> <p>Is there a better way of doing this?</p> http://stackoverflow.com/questions/1858610/different-numbers-from-1-to-10-using-vb6/1858800#1858800 4 Answer by paxdiablo for different numbers from 1 to 10 using vb6 paxdiablo 2009-12-07T09:18:51Z 2009-12-07T12:14:32Z <p>Choosing random values and then throwing away those that you've already used is a <em>bad</em> idea. It makes the run-times longer as the pool of available numbers gets less since you're throwing away more and more.</p> <p>What you want is a shuffle list which I would implement with the following code (pseudo-code since it's homework):</p> <pre><code>dim n[10] // gives n[0] through n[9] for each i in 0..9: n[i] = i // initialize them to their indexes nsize = 10 // starting pool size do 10 times: i = rnd(nsize) // give a number between 0 and nsize-1 print n[i] nsize = nsize - 1 // these two lines effectively remove the used number n[i] = n[nsize] </code></pre> <p>By simply selecting a random number from the pool then replacing it with the top number from that pool and reducing the size of the pool, you get a shuffle without having to worry about a large number of swaps up front. This is important if the number is high in that it doesn't introduce an unnecessary startup delay.</p> <p>For example, start with the numbers:</p> <pre><code>&lt;------ n[] ------&gt; 0 1 2 3 4 5 6 7 8 9 nsize rnd(nsize) output ------------------- ----- ---------- ------ 0 1 2 3 4 5 6 7 8 9 10 4 4 0 1 2 3 9 5 6 7 8 - 9 7 7 0 1 2 3 9 5 6 8 - - 8 2 2 0 1 8 3 9 5 6 - - - 7 6 6 0 1 8 3 9 5 - - - - </code></pre> <p>and so on.</p> <p>You can see the pool reducing as you go and, because you're always replacing the used one with an unused one, you'll never have a repeat.</p> <p>And <em>now</em> your homework consists of turning that into VB :-)</p> http://stackoverflow.com/questions/1852151/why-are-binary-trees-important/1852180#1852180 13 Answer by paxdiablo for Why are Binary Trees Important?? paxdiablo 2009-12-05T13:17:30Z 2009-12-06T00:27:32Z <p>Binary trees are the simplest form of multi-way trees so they're easier to study in that sense.</p> <p>When I went to university (and I'll freely admit that it was a while ago), we studied binary trees <em>first</em> simply because the algorithms were elegant. Search was a simple compare nose and select one of two sub-trees. Insertion and deletion were also relatively easy.</p> <p>Then we went on to balanced binary trees, where search was the same but insertion and deletion were a little more complicated, involving 'rotating' of subtrees through the sub-tree root where necessary.</p> <p>This was then followed by multi-way trees then, finally, balanced multi-way trees which were basically the same as binary trees but with the added complexity of a sequential search, insert or delete withing the node and combining and spitting of nodes themselves.</p> <p>At each of those steps you simply added a little more complexity to the algorithms. I don't recall too many people having trouble with that progression so maybe all the textbooks you mention are just at the starter level.</p> <p>I've never really found multi-way trees to be more useful than binary trees except in one very specific situation. That's when you're reading nodes of the tree from a slow medium like disk and you've optimized for sector/cluster/block sizes.</p> <p>We developed a multi-way tree implementation under OS/2 (showing my age here) which screamed along, by ensuring the nodes were identical in size to the underlying disk blocks.</p> <p>For in-memory stuff, binary trees have all the advantages of multi-ways with none of the extra complications (having to combine sequential search of a node with subtree selection). </p> <p>Binary trees boil down to "Should we move left or right?", multi-ways are "Where's the key in this node so that we can choose the sub-tree?".</p> http://stackoverflow.com/questions/1853946/getting-the-last-argument-passed-to-a-shell-script/1853979#1853979 1 Answer by paxdiablo for Getting the last argument passed to a shell script paxdiablo 2009-12-06T00:11:32Z 2009-12-06T00:19:05Z <p>If you want to do it in a non-destructive way, one way is to pass all the arguments to a function and return the last one:</p> <pre><code>#!/bin/bash last() { if [[ $# -ne 0 ]] ; then shift $(expr $# - 1) echo "$1" #else #do something when no arguments fi } lastvar=$(last "$@") echo $lastvar echo "$@" pax&gt; ./qq.sh 1 2 3 a b b 1 2 3 a b </code></pre> <p>If you don't actually <em>care</em> about keeping the other arguments, you don't need it in a function but I have a hard time thinking of a situation where you would never want to keep the other arguments unless they've already been processed, in which case I'd use the process/shift/process/shift/... method of sequentially processing them.</p> <p>I'm assuming here that you want to keep them because you <em>haven't</em> followed the sequential method. This method also handles the case where there's no arguments, returning "". You could easily adjust that behavior by inserting the commented-out <code>else</code> clause.</p> http://stackoverflow.com/questions/190450/how-can-i-store-multiple-values-in-a-perl-hash-table 10 How can I store multiple values in a Perl hash table? paxdiablo 2008-10-10T07:47:53Z 2009-12-05T16:01:26Z <p>Up until recently, I've been storing multiple values into different hashes with the same keys as follows:</p> <pre><code>%boss = ( "Allan" =&gt; "George", "Bob" =&gt; "George", "George" =&gt; "lisa" ); %status = ( "Allan" =&gt; "Contractor", "Bob" =&gt; "Part-time", "George" =&gt; "Full-time" ); </code></pre> <p>and then I can reference <code>$boss("Bob")</code> and <code>$status("Bob")</code> but this gets unwieldy if there's a lot of properties each key can have and I have to worry about keeping the hashes in sync.</p> <p>Is there a better way for storing multiple values in a hash? I could store the values as</p> <pre><code> "Bob" =&gt; "George:Part-time" </code></pre> <p>and then disassemble the strings with split, but there must be a more elegant way.</p> http://stackoverflow.com/questions/100210/python-easy-way-to-add-n-seconds-to-a-datetime-time/100345#100345 20 Answer by paxdiablo for Python - easy way to add N seconds to a datetime.time? paxdiablo 2008-09-19T07:54:39Z 2009-12-04T12:58:24Z <p>You can use full <code>datetime</code> variables with <code>timedelta</code>, and by providing a dummy date then using <code>time</code> to just get the time value.</p> <p>For example:</p> <pre><code>import datetime a = datetime.datetime(1,1,1,11,34,59) b = a + datetime.timedelta(0,3) # days, seconds, then other fields. print a.time() print b.time() </code></pre> <p>results in the two values, three seconds apart:</p> <pre><code>11:34:59 11:35:02 </code></pre> <p>You could also opt for the more readable</p> <pre><code>b = a + datetime.timedelta(seconds=3) </code></pre> <p>if you're so inclined.</p> http://stackoverflow.com/questions/1175952/why-couldnt-i-check-for-a-null-reference-on-a-connection-string/1175962#1175962 9 Answer by paxdiablo for Why couldn't I check for a null reference on a connection string? paxdiablo 2009-07-24T06:09:51Z 2009-12-04T12:21:19Z <p>Your problem was that you were checking:</p> <pre><code>ConfigurationManager .ConnectionStrings["PrimaryConnectionString"] .ConnectionString </code></pre> <p>for a null pointer.</p> <p>In actual fact,</p> <pre><code>ConfigurationManager .ConnectionStrings["PrimaryConnectionString"] </code></pre> <p>was null so that, when you tried to dereference <em>that</em> to get the connection string, that's when you got the exception. Effectively, what you're doing is:</p> <pre><code>null.ConnectionString </code></pre> <p>which is problematic.</p> <p>I tend to either avoid many layers of dereferencing in a single statement or place an exception handler around the whole thing to catch problems at any point.</p> http://stackoverflow.com/questions/1085675/socket-bind-error/1085685#1085685 11 Answer by paxdiablo for Socket Bind Error paxdiablo 2009-07-06T06:34:58Z 2009-12-04T12:19:22Z <p>I think you may be going too fast.</p> <p>Most operating systems have a limit on the number of sockets they can have open at any one time but it's actually worse than that.</p> <p>When a socket is closed down, it is put in a special time-wait state for a certain amount of time. This is usually twice the packet time-to-live value and it ensures that there aren't still packets out in the network that are on the way to your socket.</p> <p>Once that time expires, you can be sure that all packets out in the network have already died. The socket is placed in that special state so that packets that were out in the network when you shut it down can be captured and thrown away if they arrive before they die.</p> <p>I think that's what's happening in your case, the sockets aren't being freed as quickly as you think.</p> <p>We had a similar problem with code that opened lots of short-lived sessions. It ran fine for a while but then the hardware got faster, allowing many more to be opened in a given time period. This manifested itself as inability to open more sessions.</p> <p>One way to check this is to do <code>netstat -a</code> from the command line and see how many sessions are actually in the wait state.</p> <p>If that does turn out to be the case, there's a few ways to handle it.</p> <ul> <li>re-use your sessions, either manually or by maintaining a connection pool.</li> <li>introduce a delay in each connection to try and stop reaching the saturation point.</li> <li>go flat out until you reach saturation and <em>then</em> modify your behavior, such as running your connect logic inside a while statement that retries for up to 60 times with a two-second delay each time before giving up totally. This lets you run at full speed, slowing down only if there's a problem.</li> </ul> http://stackoverflow.com/questions/602138/is-a-debugger-the-mother-of-all-evil/602205#602205 153 Answer by paxdiablo for Is a debugger the mother of all evil? paxdiablo 2009-03-02T12:44:57Z 2009-12-04T12:16:23Z <p>Your friend is a perfectionist. That's fine, it's in his nature but I suspect he wouldn't last very long on a team that had specific deadlines for bug turnaround and fixing (at least not without tempering his perfectionism a little).</p> <p>I can just see the conversation now:</p> <p><em>Boss:</em> Well, guys, we're in a bit of trouble because we're consistently missing our bug-fix targets. Any idea what's going on?</p> <p><em>You:</em> It's because we don't use debuggers any more, sir.</p> <p><em>Boss:</em> Really, why not? Don't they allow you to more easily locate your problems?</p> <p><em>You:</em> Yes sir, but Bill here has convinced us of the error of our ways. Nowadays, when a bug gets reported, we reread our code to understand it. And add documentation to it. Sometimes we even re-factor it if it's not as understandable as it should be.</p> <p><em>Bill:</em> That's right, and we'll even go and add unit tests, more logging and do code reviews to ensure we understand everything about the code.</p> <p><em>Boss:</em> And you do this rather than use a debugger that would zero in on and fix the specific things our performance is measured on? You know, the things I'm getting raked over the coals for at the monthly management meetings.</p> <p><em>You and Bill:</em> Yep, that's because we know our customers understand that good software is worth the wait.</p> <p><em>Boss:</em> Right, pack up your things, you're both fired. I'll get in some guys tomorrow who understand that IT is all about service delivery, rather than something that exists for its own sake.</p> <p><hr></p> <p>Now that the fun's out of the way: No, a debugger is no more evil than a compiler. It's a tool that allows you to do your job.</p> <p>And, if your job is endlessly re-arranging your code, maybe you won't need it. But I think you'll most likely find your job involves getting software out into the field as bug-free as possible and being able to respond in a timely manner when your customers complain of problems.</p> <p>They will <em>not</em> understand Bill's Utopian vision, they will burn Bill's company to the ground and spit on its ashes.</p> http://stackoverflow.com/questions/1788283/algo-for-a-stable-download-time-remaining-in-a-download-window/1788444#1788444 7 Answer by paxdiablo for Algo for a stable 'download-time-remaining' in a download window paxdiablo 2009-11-24T07:29:36Z 2009-12-04T12:11:02Z <p>We solved a similar problem in the following way. We weren't interested in how fast the download was over the entire time, just roughly how long it was expected to take based on recent activity but, as you say, not so recent that the figures would be jumping all over the place.</p> <p>We created a circular buffer with each cell holding the amount downloaded in a 1-second period. The circular buffer size was 300, allowing for 5 minutes of historical data, and every cell was initialized to zero.</p> <p>We also maintained a total (the sum of all entries in the buffer, so also initially zero) and the count (zero, obviously).</p> <p>Every second, we would figure out how much data had been downloaded since the last second and then:</p> <ul> <li>subtract the current cell from the total.</li> <li>put the current figure into that cell and advance the cell pointer.</li> <li>add that current figure to the total.</li> <li>increase the count if it wasn't already 500.</li> <li>update the figure displayed to the user, based on total / count.</li> </ul> <p>Basically, in pseudo-code:</p> <pre><code>def init (sz): buffer = new int[sz] for i = 0 to sz - 1: buffer[i] = 0 total = 0 count = 0 index = 0 maxsz = sz def update (kbps): total = total - buffer[index] + kbps buffer[index] = kbps index = (index + 1) % maxsz count = max (maxsz, count + 1) return total / count </code></pre> <p>You can change your resolution (1 second) and history (300) to suit your situation but we found 5 minutes was more than long enough that it smoothed out the irregularities but still gradually adjusted to more permanent changes in a timely fashion.</p> http://stackoverflow.com/questions/1699145/what-is-the-difference-between-active-and-passive-ftp/1699163#1699163 6 Answer by paxdiablo for What is the difference between active and passive FTP? paxdiablo 2009-11-09T04:57:36Z 2009-12-04T11:27:55Z <p>Active and passive are the two modes that FTP can run in. FTP uses two channels between client and server, the command channel and the data channel, which are actually separate TCP connections. The command channel is for commands and responses, the data channel is for actually transferring files.</p> <p>In active mode, the client establishes the command channel (from client port <code>X</code> to server port <code>21</code><sup>(b)</sup>) but the server establishes the data channel (from server port <code>20</code><sup>(b)</sup> to client port <code>Y</code>, where <code>Y</code> has been supplied by the client).</p> <p>In passive mode, the client establishes both channels. In that case, the server tells the client which port should be used for the data channel.</p> <p>Passive mode is generally used in situations where the FTP server is not able to establish the data channel. One of the major reasons for this is network firewalls. While you may have a firewall rule which allows you to open up FTP channels to <code>ftp.microsoft.com</code>, Microsoft's servers may not have the power to open up the data channel back through your firewall.</p> <p>Passive mode solves this by opening up both types of channel from the client side. In order to make this hopefully clearer:</p> <p>Active mode:</p> <ul> <li>Client opens up command channel from client port 2000<sup>(a)</sup> to server port 21<sup>(b)</sup>.</li> <li>Client sends <code>PORT 2001</code><sup>(a)</sup> to server and server acknowledges on command channel.</li> <li>Server opens up data channel from server port 20<sup>(b)</sup> to client port 2001<sup>(a)</sup>.</li> <li>Client acknowledges on data channel.</li> </ul> <p>Passive mode:</p> <ul> <li>Client opens up command channel from client port 2000<sup>(a)</sup> to server port 21<sup>(b)</sup>.</li> <li>Client sends <code>PASV</code> to server on command channel.</li> <li>Server sends back (on command channel) <code>PORT 1234</code><sup>(a)</sup> after starting to listen on that port.</li> <li>Client opens up data channel from client 2001<sup>(a)</sup> to server port 1234<sup>(a)</sup>.</li> <li>Server acknowledges on data channel.</li> </ul> <p>At this point, the command and data channels are both open.</p> <p><sup>(a)</sup>Note that the selection of ports on the client side is up to the client, as the selection of the server data channel port in passive mode is up to the server.</p> <p><sup>(b)</sup>Further note that the use of port 20 and 21 is only a convention (although a strong one). There's no absolute requirement that those ports be used although the client and server both have to agree on which ports are being used. I've seen implementations that try to hide from clients by using different ports (futile, in my opinion).</p> http://stackoverflow.com/questions/1707479/is-there-an-equivalent-to-cron-in-windows/1707495#1707495 7 Answer by paxdiablo for Is there an equivalent to cron in Windows? paxdiablo 2009-11-10T12:08:34Z 2009-12-04T11:18:23Z <p>Windows has the <code>Scheduled Tasks</code> control panel applet (or management console plug-in on later versions of Windows) but you can also access it via <a href="http://support.microsoft.com/kb/814596" rel="nofollow"><code>schtasks.exe</code></a> if you want to automate it from the command line.</p> <p>In addition, you can also use <a href="http://en.wikipedia.org/wiki/At%5F%28Windows%29" rel="nofollow"><code>at</code></a> from the command line to schedule a task.</p> http://stackoverflow.com/questions/1672009/many-to-many-relationship/1672040#1672040 9 Answer by paxdiablo for Many to many relationship paxdiablo 2009-11-04T06:38:22Z 2009-12-04T10:40:13Z <p>The best DB design, despite your misgivings, is exactly what you described. In other words, have a mapping table <code>ManagerCustomerMapping</code>.</p> <p><em>Always</em> start with 3NF and modify if and only if there are real performance problems that can't be solved in other ways.</p> <p>If your business is as big as it looks (with 100 million customers), disk storage should not be a problem, and proper indexing of the mapping table should mitigate any performance concerns.</p> <p>And yes, if every customer maps to two different managers, you will have 200 million records. That's not a problem. On the sort of shops I work in (DB2 on System z), that's about a medium-sized table.</p> <p>The beauty of SQL is that you can mostly swap out a DBMS if it doesn't perform well enough.</p> <p>Two hundred million rows of two ID columns would not be onerous to the average database, and this is the best way to go, <em>especially</em> if there's the possibility that a customer may not be allocated to a manager (or vice versa). Any other solution that tries to put a customer ID into the manager table (or a manager ID into the customer table) will waste space in that case.</p> http://stackoverflow.com/questions/1846058/unix-awk-command-regex-problem/1846085#1846085 0 Answer by paxdiablo for Unix awk command regex problem paxdiablo 2009-12-04T10:21:51Z 2009-12-04T10:21:51Z <p>Sure you can:</p> <pre><code>pax&gt; echo 'ab as we hj kl 12 34 45 83 21 45 56 98 45 09' | awk '/^[0-9]/ {print $1}' </code></pre> <p>gives you:</p> <pre><code>12 45 </code></pre> <p><code>Awk</code> commands consist of an actual pattern to match and a command to run. If there's no pattern, the command runs for all lines.</p> http://stackoverflow.com/questions/1775313/improving-search-performance/1775331#1775331 9 Answer by paxdiablo for Improving search performance paxdiablo 2009-11-21T12:19:53Z 2009-12-04T10:02:47Z <p>The SQL clause</p> <pre><code>like '%...%' </code></pre> <p>is the single most destructive thing you can do if you want performance from your database.</p> <p>What you really should be doing is making sure that things like skills, industries and so on, are broken out into other tables with <em>fixed</em> values (like 'C', 'C++', 'SQL' and so on).</p> <p>Then have a many-to-many table between person and skills. For example:</p> <pre><code>People: PersonId primary key. Other person details. Skills: SkillId primary key. SkillName. Other skill details. PeopleSkills: PersonId references People(PersonId). SkillId references Skills(SkillId). primary key (PersonId,SkillId). index on (SkillId). </code></pre> <p>This sort of layout will both improve the speed of your queries massively <em>and</em> make incorrect data entry impossible if you only allow entry of search terms from the Skills table (no 'Linex' possible where you meant 'Linux', simply because 'Linex' isn't in the skills table).</p> <p>The one unassailable rule I follow with table design is: if you're trying to extract a bit of information from within a column, that information should be put in its <em>own</em> column. The number of performance issues people suffer because they created tables with a single column holding comma-separated values (where they want to extract individual values from that column) should be testament to that.</p> <p>The downside of having to ensure all skills and industries are in a separate table will be more than made up for by the increased speed and accuracy. Databases should be <em>always</em> designed for third normal form. They can be regressed to 2NF for performance reasons if you understand the consequences (and mitigate the possibility of incorrect data by using triggers or calculated columns) but this is rarely necessary.</p> http://stackoverflow.com/questions/1713484/how-can-i-do-this-in-sql-in-a-single-statement/1713509#1713509 9 Answer by paxdiablo for How can I do this in SQL in a Single Statement? paxdiablo 2009-11-11T06:57:07Z 2009-12-04T09:57:55Z <p>In standard SQL (there may be better ways in vendor-specific implementations but I tend to prefer standard stuff where possible):</p> <pre><code>insert into mytable ( Version, Yr_Varient, Period, CoA, Company, Item, Mvt, Ptnr_Co, Investee, FY, GC, LC ) select Version, Yr_Varient, Period, CoA, Company, Item, Mvt, Ptnr_Co, Investee, 2011, GC*1.1, LC*1.1 from mytable where Mvt = 60200 -- and FY = 2010 </code></pre> <p>You may also want to limit your select statement a little more depending on the results of your testing, such as uncommenting the <code>and FY = 2010</code> line above to stop copying all your 2009 and 2008 data as well, if any. I asume you only wanted to carry forward the previous year's stuff with a 10% increase on <code>GC</code> and <code>LC</code>.</p> <p>The way this works is to run the <code>select</code> which gives modified data for <code>FY</code>, <code>GC</code> and <code>LC</code> as per your request, and pump all those rows back into the <code>insert</code>.</p> http://stackoverflow.com/questions/1737634/c-comma-operator/1737646#1737646 21 Answer by paxdiablo for C comma operator paxdiablo 2009-11-15T14:28:34Z 2009-12-04T09:53:27Z <p>Section 6.6, "Constant expressions", of the ISO C standard (c1x draft n1362) is the section you need. It states:</p> <blockquote> <p>Constant expressions shall not contain assignment, increment, decrement, function-call, or <em>comma operators</em>, except when they are contained within a subexpression that is not evaluated.</p> </blockquote> <p>My italics. In the C99 rationale document from ISO, there's this little snippet:</p> <blockquote> <p>An integer constant expression must involve only numbers knowable at translation time, and operators <em>with no side effects</em>.</p> </blockquote> <p>Again, my italics. And, since there's no point in using the comma operator <em>at all</em> if you're not relying on side effects, it's useless in a constant expression.</p> <p>By that, I mean there's absolutely no difference between the two code segments:</p> <pre><code>while (10, 1) { ... } while (1) { ... } </code></pre> <p>since the <code>10</code> doesn't actually <em>do</em> anything (<code>10;</code> is a perfectly valid, though not very useful, C statement, something most people don't comprehend until they get to know the language better). This is different to:</p> <pre><code>while (x=10, 1) { ... } </code></pre> <p>where the side effect of the comma operator is to set the variable <code>x</code> to <code>10</code>.</p> <p>As to why they don't like side effects in constant expressions, the whole point of constant expressions is that they can be evaluated at compile-time without requiring an execution environment - ISO makes a distinction between translation (compile-time) and execution (run-time) environments.</p> <p>The clue as to why ISO decided against requiring compilers to provide execution environment information (other than stuff contained in header files such as <code>limits.h</code>) can be found a little later in the rationale document:</p> <blockquote> <p>However, while implementations are certainly permitted to produce exactly the same result in translation and execution environments, requiring this was deemed to be an intolerable burden on many cross-compilers.</p> </blockquote> http://stackoverflow.com/questions/1685567/whats-wrong-with-this-program/1685573#1685573 30 Answer by paxdiablo for Whats wrong with this program? paxdiablo 2009-11-06T05:19:58Z 2009-12-04T09:42:33Z <p>The code:</p> <pre><code> char *s = "hello ppl."; </code></pre> <p>gives you a pointer to what it almost <em>certainly</em> read-only memory. When you try to write to that memory, you get a segmentation violation. Try this instead:</p> <pre><code>char s[] = "hello ppl."; </code></pre> <p>which is conceptually the same as:</p> <pre><code>char s[11]; strcpy (s, "hello ppl."); </code></pre> <p>In other words, it puts the string you want to change into writable memory. The following code:</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;string.h&gt; int main(void) { int i; char s[] = "hello ppl."; for (i = 0; i &lt; strlen(s); i++) { char c = s[i]; if (c &gt;= 97 &amp;&amp; c &lt;= 122) { c += 2; s[i] = c; } } printf("%s\n",s); return 0; } </code></pre> <p>gives you <code>"jgnnq rrn."</code>.</p> <p>A few other things I'd like to point out which are not fatal:</p> <ul> <li>It's not usually a good idea to use 'magic' numbers like <code>97</code> and <code>122</code>. It's just as easy, and clearer in intent, to use 'a' and 'z'.</li> <li>If you really want to rotate, you can't blindly add 2 to 'y' and 'z'. You have to treat them specially (subtract 24) so that they map correctly to 'a' and 'b'.</li> <li>The C standard doesn't guarantee that alpha characters are contiguous. If you know you're using ASCII, you're probably okay but I thought I'd just mention that. As an aside, it <em>does</em> guarantee that for the numeric characters.</li> </ul> <p>Having said that, I'd rather use a mapping table as follows:</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;string.h&gt; int main (void) { char *lkupPtr, *strPtr; char str[] = "hello ppl."; const char * const from = "abcdefghijklmnopqrstuvwzyz"; const char * const to = "cdefghijklmnopqrstuvwzyzab"; for (strPtr = str; *strPtr != '\0'; strPtr++) if (lkupPtr = strchr (from, *strPtr)) != NULL) *strPtr = to[(int)(lkupPtr - from)]; printf("%s\n",str); return 0; } </code></pre> <p>This takes care of all the points I raised above and you can, if necessary, add more mappings if you're in an internationalized environment (rather than just plain ASCII or EDCDIC).</p> <p>This should be, in my opinion, fast enough for all but the most demanding of requirements (I clocked it at over 3 million characters per second on my PC). If you have a near-insatiable need for performance over and above that, yet don't want to opt for hand-crafted assembly targeted to your specific CPU, you could <em>try</em> something like the following.</p> <p>It's still fully compliant with the C standard but may deliver better performance by virtue of the fact all heavy calculation work is done once at the start. It creates a table holding all possible character values, initializes it so that every character translates to itself by default, then changes the specific characters you're interested in.</p> <p>That removes any checking for characters from the translation itself.</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;string.h&gt; #include &lt;limits.h&gt; static char table[CHAR_MAX + 1]; static void xlatInit (void) { int i; char * from = "abcdefghijklmnopqrstuvwzyz"; char * to = "cdefghijklmnopqrstuvwzyzab"; for (i = 0; i &lt;= CHAR_MAX; i++) table[i] = i; while (*from != '\0') table[*from++] = *to++; } int main (void) { char *strPtr; char str[] = "hello ppl."; xlatInit(); // Do this once only, amortize the cost. for (strPtr = str; *strPtr != '\0'; strPtr++) *strPtr = table[*strPtr]; printf("%s\n",str); return 0; } </code></pre> http://stackoverflow.com/questions/1844798/how-can-i-use-bash-to-parse-out-only-a-section-of-a-variable-with-different-delim/1844842#1844842 0 Answer by paxdiablo for How can I use bash to parse out only a section of a variable with different delimiters? paxdiablo 2009-12-04T04:23:36Z 2009-12-04T04:23:36Z <p>One possibility:</p> <pre><code>for i in '92378478234978ehbWHATIWANT#98712398712398723' ; do j=$(echo $i | sed -e 's/^.*ehb//' -e 's/#.*$//') echo $j done </code></pre> <p>produces:</p> <pre><code>WHATIWANT </code></pre> http://stackoverflow.com/questions/1844225/whats-the-most-elegant-10-20-line-function-youve-seen-written/1844344#1844344 7 Answer by paxdiablo for What's the most elegant 10-20 line function you've seen/written? paxdiablo 2009-12-04T01:38:10Z 2009-12-04T01:38:10Z <p>Recursive solutions are always at the top of my list for elegance:</p> <pre><code>def fact (n): if (n &lt; 2): return 1 return n * fact (n-1) </code></pre> <p>Preemptive community wiki since that's what poll questions should have been anyway :-)</p> http://stackoverflow.com/questions/1844232/sending-a-signal-to-a-background-process/1844272#1844272 10 Answer by paxdiablo for sending a signal to a background process paxdiablo 2009-12-04T01:18:37Z 2009-12-04T01:25:48Z <p>It's not signals which directly control whether jobs are foreground or background. The jobs are under the control of a shell (usually).</p> <p>For example, under <code>bash</code>, if you execute:</p> <pre><code>pax&gt; sleep 3600 &amp; pax&gt; jobs </code></pre> <p>you will see output like:</p> <pre><code>[1]+ Running sleep 3600 &amp; </code></pre> <p>Then, you can bring that job back into the foreground by using:</p> <pre><code>pax&gt; fg %1 sleep 3600 </code></pre> <p>(and the terminal waits).</p> <p>Using <kbd>CTRL</kbd><kbd>Z</kbd> <em>does</em> send a signal to the process (<code>SIGSTOP</code>) as well as putting it into the background but the only signal that can change that is <code>SIGCONT</code> (to continue):</p> <pre><code>pax&gt; fg %1 sleep 3600 ^Z [1]+ Stopped sleep 3600 pax&gt; jobs [1]+ Stopped sleep 3600 pax&gt; kill -CONT %1 pax&gt; jobs [1]+ Running sleep 3600 &amp; </code></pre> <p>That will instruct the process to start running again but it <em>doesn't</em> bring it into the foreground. For that, you need the <code>fg</code> command.</p> <p>It's probably best to think of signals (which affect the process) and foreground/background (which affect the shell that started the process by determining whether it waits for it, amongst other things) separately.</p> http://stackoverflow.com/questions/145110/c-performance-vs-java-c/145133#145133 4 Answer by paxdiablo for C++ performance vs. Java/C# paxdiablo 2008-09-28T03:27:09Z 2009-12-04T01:01:13Z <p>The virtual machine languages are unlikely to outperform compiled languages but they can get close enough that it doesn't matter, for (at least) the following reasons (I'm speaking for Java here since I've never done C#).</p> <p>1/ The Java Runtime Environment is usually able to detect pieces of code that are run frequently and perform just-in-time (JIT) compilation of those sections so that, in future, they run at the full compiled speed.</p> <p>2/ Vast portions of the Java libraries are compiled so that, when you call a library function, you're executing compiled code, not interpreted. You can see the code (in C) by downloading the OpenJDK.</p> <p>3/ Unless you're doing massive calculations, much of the time your program is running, it's waiting for input from a very slow (relatively speaking) human.</p> <p>4/ Since a lot of the validation of Java bytecode is done at the time of loading the class, the normal overhead of runtime checks is greatly reduced.</p> <p>5/ At the worst case, performance-intensive code can be extracted to a compiled module and called from Java (see JNI) so that it runs at full speed.</p> <p>In summary, the Java bytecode will never outperform native machine language, but there are ways to mitigate this. The big advantage of Java (as I see it) is the <em>HUGE</em> standard library and the cross-platform nature.</p> http://stackoverflow.com/questions/1836509/c-function-exiting-before-input/1836577#1836577 1 Answer by paxdiablo for C Function exiting before input paxdiablo 2009-12-02T23:17:10Z 2009-12-03T10:23:31Z <p>One immediate thing I noticed. Your <code>do while</code> loop is checking <code>val</code> for <code>"X"</code> whereas that value is actually in <code>menu</code>.</p> <p>Other than that possibility (<code>val</code> may be <code>"X"</code> to begin with, which could cause exit from the loop regardless of the value entered), nothing jumps out as obviously causing premature exit from a function or loop. I think you'll be better off posting your full code base so we're not guessing too much.</p> <p><em>Update:</em></p> <p>Don't use the following for homework - you will almost certainly be failed for plagiarism (since your educators, assuming they're not total fools, will be on the lookout for work taken from these sites).</p> <p>I just wanted to give you an idea of what you can use for user I/O to make your programs a little more robust. As one helpful soul pointed out, you should never use the input routines that don't have buffer over-run protection as an option since that will almost certainly allow malicious input to crash your code (that's the best case, worst case is that they will take over your computer).</p> <p>That means no <code>gets</code>, you need to use <code>fgets</code> instead since it can limit how much information is actually input. In addition, I tend to avoid the use of <code>scanf</code> and <code>fscanf</code> since any failure in those functions actually leaves the input file pointer at an indeterminate location.</p> <p>I find it's far better to use <code>fgets</code> to get a whole line, check that you actually <em>got</em> a whole line, then use <code>sscanf</code> on that line. That way, you can be sure you're on a line boundary, that you've got an entire line and that you can then <code>sscanf</code> that line to your heart's content until you match it with something.</p> <p>To that end, you may want to look over the following code:</p> <pre><code>#include &lt;stdio.h&gt; #define FSPEC "file.txt" // Skip to the end of the line. This is used in some // places to ensure there's no characters left in the // input buffer. It basically discards characters // from that buffer until it reaches the end of a line. static void skipLine (void) { char ch = ' '; while ((ch != '\n') &amp;&amp; (ch != EOF)) ch = getchar(); } </code></pre> <p>&nbsp;</p> <pre><code>// Get a line of input from the user (with length checking). static char *getLine (char *prompt, char *line, int sz) { // Output prompt, get line if available. // If no line available (EOF/error), output newline. printf ("%s", prompt); if (fgets (line, sz, stdin) == NULL) { printf ("\n"); return NULL; } // If line was too long (no '\n' at end), throw away // rest of line and flag error. if (line[strlen (line) - 1] != '\n') { skipLine(); return NULL; } // Otherwise line was complete, return it. return line; } </code></pre> <p>&nbsp;</p> <pre><code>// Output the menu and get a choice from the user. static char doMenu (void) { char cmd[1+2]; // need space for char, '\n' and '\0'. // Output the menu. printf ("\n"); printf ("\n"); printf ("Main menu\n"); printf ("---------\n"); printf ("1. Input a line\n"); printf ("2. Output the file\n"); printf ("3. Clear the file\n"); printf ("\n"); printf ("x. Exit\n"); printf ("\n"); // Get the user input and return it. if (getLine ("Enter choice (1,2,3,x): ", cmd, sizeof(cmd)) == NULL) return '\n'; printf ("\n"); return cmd[0]; } </code></pre> <p>&nbsp;</p> <pre><code>static void doOption1 (void) { FILE *fh; char *ln; char buff[15+2]; // need space for line, '\n' and '\0'. // Get and check line, add to file if okay. if ((ln = getLine ("Enter line: ", buff, sizeof(buff))) == NULL) { printf ("Bad input line\n"); } else { fh = fopen (FSPEC, "a"); if (fh != NULL) { fputs (ln, fh); fclose (fh); } } } </code></pre> <p>&nbsp;</p> <pre><code>static void doOption2 (void) { FILE *fh; int intch; // Output the file contents. printf ("=====\n"); fh = fopen (FSPEC, "r"); if (fh != NULL) { while ((intch = fgetc (fh)) != EOF) putchar (intch); fclose (fh); } printf ("=====\n"); } </code></pre> <p>&nbsp;</p> <pre><code>static void doOption3 (void) { FILE *fh; // Clear the file. fh = fopen (FSPEC, "w"); if (fh != NULL) fclose (fh); } </code></pre> <p>&nbsp;</p> <pre><code>// Main program basically just keeps asking the user for input // until they indicate they're finished. int main (void) { char menuItem; // Get asking for user input until exit is chosen. while ((menuItem = doMenu()) != 'x') { switch (menuItem) { case '1': doOption1(); break; case '2': doOption2(); break; case '3': doOption3(); break; default: printf ("Invalid choice\n"); break; } } return 0; } </code></pre> http://stackoverflow.com/questions/1832509/string-relate-source-code/1832519#1832519 0 Answer by paxdiablo for String relate source code paxdiablo 2009-12-02T12:06:40Z 2009-12-02T12:16:57Z <p>You need to look into using <code>System.out.println()</code> for outputting stuff to the console.</p> <p>If you want to split your string into words and print them in a different order, you need to look into using <code>String.split()</code> to create an array of words separated by white space, then a loop to output them in a different order.</p> <p>The <code>String.split()</code> stuff can be found <a href="http://www.ensta.fr/~diam/java/online/jdk/150/api/java/lang/String.html#split%28java.lang.String%29" rel="nofollow">here</a>.</p> <p>Once <code>split()</code> has extracted your words into an array with four elements, the rest of the question is achieved by printing the third element (for your first question) or elements 4, 2, 3 and 1 in that order (for your second question).</p> <p>That's assuming your question is correct and you didn't want the words in reverse order. And keep in mind that the first element of an array has an index of 0, not 1.</p> http://stackoverflow.com/questions/1825905/comment-out-n-lines-with-sed-awk/1825945#1825945 0 Answer by paxdiablo for Comment out N lines with sed/awk paxdiablo 2009-12-01T12:37:57Z 2009-12-01T13:18:18Z <p>The following <code>awk</code> script can do what you ask:</p> <pre><code>echo 'int var1; int var2; int var3; int var4; int var5; ' | awk ' /^int var2;$/ { count = 3; } { if (count &gt; 0) { $0 = "//"$0; count = count - 1; }; print; }' </code></pre> <p>This outputs:</p> <pre><code>int var1; //int var2; //int var3; //int var4; int var5; </code></pre> <p>The way it works is relatively simple. The counter variable <code>c</code> decides how many lines are left to comment. It starts as 0 but when you find a specific pattern, it gets set to 3.</p> <p>Then, it starts counting down, affecting that many lines (including the one that set it to 3).</p> <p>If you're not that worried about readability, you can use the shorter:</p> <pre><code>awk '/^int var2;$/{c=3}{if(c&gt;0){$0="//"$0;c=c-1};print}' </code></pre> <p>Be aware that the count will be reset whenever the pattern is found. This seems to be the logical way of handling:</p> <pre><code>int var1; ----&gt; int var1; int var2; //int var2; int var3; //int var3; int var2; //int var2; int var3; //int var3; int var4; //int var4; int var5; int var5; </code></pre> <p>If that's <em>not</em> what you wanted, replace <code>count = 3;</code> with <code>if (count == 0) {count = 3;};</code> or use:</p> <pre><code>awk '/^int var2;$/{if(c==0){c=3}}{if(c&gt;0){$0="//"$0;c=c-1};print}' </code></pre> <p>for the compact version.</p> http://stackoverflow.com/questions/1825964/c-c-maximum-stack-size-of-program/1825976#1825976 3 Answer by paxdiablo for C/C++ maximum stack size of program paxdiablo 2009-12-01T12:44:42Z 2009-12-01T12:44:42Z <p>Yes, there is a possibility of stack overflow. The C and C++ standard do not dictate things like stack depth, those are generally an environmental issue.</p> <p>Most decent development environments and/or operating systems will let you tailor the stack size of a process, either at link or load time.</p> <p>You should specify which OS and development environment you're using for more targeted assistance.</p> <p>For example, under Ubuntu Karmic Koala, the default for gcc is 2M reserved and 4K committed but this can be changed when you link the program. Use the <code>--stack</code> option of <code>ld</code> to do that.</p> http://stackoverflow.com/questions/1823166/identify-error-in-if-statement/1825559#1825559 1 Answer by paxdiablo for identify error in if statement paxdiablo 2009-12-01T11:25:19Z 2009-12-01T12:31:26Z <p>Because your <code>awk</code> command is inside single quotes, the shell variables <code>file</code> and <code>f</code> will not be expanded. That's why you're getting the <code>awk</code> errors.</p> <p>I would use the following script:</p> <pre><code>#!/bin/bash for file in pmb_mpi tau xhpl mpi_tile_io fftw ; do for f in 2.54 1.60 800 ; do if [[ ${f} = "2.54" ]] ; then flist=${file}_${f}_even_v1.xls ${file}_${f}_odd_v1.xls else flist=${file}_${f}_v1.xls fi cat ${flist} | awk ' s+=$2; END {print "Average = ",$s/NR} ' &gt;${file}_${f}_avrg.xls # Or use awk '...' ${flist} &gt;${file}_${f}_avrg.xls # if you're overly concerned about efficiency of processes. done done </code></pre> <p>That will simply set <code>flist</code> to either both files or one file, depending on whether <code>f</code> is <code>2.54</code> or not, then push that list of files through a single <code>awk</code> script.</p> http://stackoverflow.com/questions/1825624/list-and-kill-at-jobs-unix/1825668#1825668 0 Answer by paxdiablo for list and kill at jobs unix paxdiablo 2009-12-01T11:47:29Z 2009-12-01T11:47:29Z <p>You should be able to find your command with a <code>ps</code> variant like:</p> <pre><code>ps -ef ps -fubob # if your job's user ID is bob. </code></pre> <p>Then, once located, it should be a simple matter to use <code>kill</code> to kill the process (permissions permitting).</p> <p>If you're talking about getting rid of jobs in the <code>at</code> queue (that aren't running yet), you can use <code>atq</code> to list them and <code>atrm</code> to get rid of them.</p> http://stackoverflow.com/questions/1825509/printing-variable-inside-awk/1825622#1825622 3 Answer by paxdiablo for printing variable inside awk paxdiablo 2009-12-01T11:38:34Z 2009-12-01T11:44:54Z <p><code>awk</code> doesn't go out and get shell variables for you, you have to pass them in as <code>awk</code> variables:</p> <pre><code>pax&gt; export x=XX pax&gt; export y=YY pax&gt; awk 'BEGIN{print x "_" y}' _ pax&gt; awk -vx=$x -v y=$y 'BEGIN{print x "_" y}' XX_YY </code></pre> <p>There is another way of doing it by using double quotes instead of single quotes (so that <code>bash</code> substitutes the values before <code>awk</code> sees them), but then you have to start escaping <code>$</code> symbols and all sorts of other things in your <code>awk</code> command:</p> <pre><code>pax&gt; awk "BEGIN {print \"${x}_${y}\"}" XX_YY </code></pre> <p>I prefer to use explicit variable creation.</p> <p>By the way, there's another solution to your previous related question <a href="http://stackoverflow.com/questions/1823166/identify-error-in-if-statement/1825559#1825559">here</a> which should work.</p> http://stackoverflow.com/questions/1570752/how-do-you-say-something-happened-x-minutes-ago-or-x-hours-ago-or-x-days-ago/1570843#1570843 3 Answer by paxdiablo for How do you say something happened "x minutes ago" or "x hours ago" or "x days ago" in Ruby? paxdiablo 2009-10-15T07:42:15Z 2009-12-01T09:51:52Z <p>Here's the language agnostic version which you should be able to convert into <em>any</em> language:</p> <pre><code>ONE_MINUTE = 60 ONE_HOUR = 60 * ONE_MINUTE ONE_DAY = 24 * ONE_HOUR ONE_WEEK = 7 * ONE_DAY ONE_MONTH = ONE_DAY * 3652425 / 120000 ONE_YEAR = ONE_DAY * 3652425 / 10000 def when(then): seconds_ago = now() - then if seconds_ago &lt; 0: return "at some point in the future (???)" if seconds_ago == 0: return "now" if seconds_ago == 1: return "1 second ago" if seconds_ago &lt; ONE_MINUTE: return str(seconds_ago) + "seconds ago" if seconds_ago &lt; 2 * ONE_MINUTE: return "1 minute ago" if seconds_ago &lt; ONE_HOUR: return str(seconds_ago/ONE_MINUTE) + "minutes ago" if seconds_ago &lt; 2 * ONE_HOUR: return "1 hour ago" if seconds_ago &lt; ONE_DAY: return str(seconds_ago/ONE_HOUR) + "hours ago" if seconds_ago &lt; 2 * ONE_DAY: return "1 day ago" if seconds_ago &lt; ONE_WEEK: return str(seconds_ago/ONE_DAY) + "days ago" if seconds_ago &lt; 2 * ONE_WEEK: return "1 week ago" if seconds_ago &lt; ONE_MONTH: return str(seconds_ago/ONE_WEEK) + "weeks ago" if seconds_ago &lt; 2 * ONE_MONTH: return "1 month ago" if seconds_ago &lt; ONE_YEAR: return str(seconds_ago/ONE_MONTH) + "months ago" if seconds_ago &lt; 2 * ONE_YEAR: return "1 year ago" return str(seconds_ago/ONE_YEAR) + "years ago" </code></pre> <p>Note that the year/month figures are approximate (based on averages) but that shouldn't really matter since the relative error will still be <em>very</em> low.</p> http://stackoverflow.com/questions/1858610/different-numbers-from-1-to-10-using-vb6/1858800#1858800 Comment by paxdiablo on different numbers from 1 to 10 using vb6 paxdiablo 2009-12-07T11:38:17Z 2009-12-07T11:38:17Z @studentnoob35783, if you're getting errors, you haven't translated it correctly from pseudo-code :-) Post your source code and I'll have a look. http://stackoverflow.com/questions/1855222/pros-cons-to-using-char-for-small-integers-in-c/1855256#1855256 Comment by paxdiablo on Pros/cons to using char for small integers in C paxdiablo 2009-12-06T12:54:27Z 2009-12-06T12:54:27Z Which wouldn't <i>really</i> be a problem with C, of course. http://stackoverflow.com/questions/1854485/performance-of-one-huge-unix-directory-vs-a-directory-tree/1854508#1854508 Comment by paxdiablo on Performance of one huge unix directory VS a directory tree? paxdiablo 2009-12-06T06:16:38Z 2009-12-06T06:16:38Z +1, but you'd be better using the scheme proposed by the user, 100 entries per level from 00/00/00/00/00.jpg through to 42/94/96/72/95.jpg. That will make it a lot easier to locate/place your files. http://stackoverflow.com/questions/1854485/performance-of-one-huge-unix-directory-vs-a-directory-tree/1854515#1854515 Comment by paxdiablo on Performance of one huge unix directory VS a directory tree? paxdiablo 2009-12-06T06:13:59Z 2009-12-06T06:13:59Z That's not correct, @Chip, the number of <i>subdirectories</i> is limited to 32,000-ish, files can go up to much higher numbers. http://stackoverflow.com/questions/190450/how-can-i-store-multiple-values-in-a-perl-hash-table/1852082#1852082 Comment by paxdiablo on How can I store multiple values in a Perl hash table? paxdiablo 2009-12-05T12:34:11Z 2009-12-05T12:34:11Z Point 1: I'm not really interested in anything here other than an answer to the question. 2: I'm pretty certain my wife wouldn't agree to your proposal (I'm <i>very</i> diligent, just not to you). 3: While distance may not be an issue to you, it sure is to most blokes. 4: This is plain and simple spam, flagged as such. http://stackoverflow.com/questions/1846635/calculate-most-common-values/1846665#1846665 Comment by paxdiablo on Calculate most common values paxdiablo 2009-12-04T12:45:14Z 2009-12-04T12:45:14Z No doubt. I only noticed the matlab tag after I'd put in all the effort. It seemed a shame to delete it (although I probably will eventually) but, since it's probably not that useful, I made it community wiki. http://stackoverflow.com/questions/1844871/what-are-the-best-practices-in-web-farms Comment by paxdiablo on what are the best practices in web farms paxdiablo 2009-12-04T04:41:47Z 2009-12-04T04:41:47Z @Michael, a web form is something you fill in, a web farm is a distributed series of web servers. My best practice for web farms is to only feed your webs the best natural-grain food and, when it comes times to eat them, make sure you kill them humanely. Boom boom, thanks for listening, I'm here all week :-) http://stackoverflow.com/questions/1844232/sending-a-signal-to-a-background-process/1844440#1844440 Comment by paxdiablo on sending a signal to a background process paxdiablo 2009-12-04T03:24:02Z 2009-12-04T03:24:02Z None of these signals will move a process into the foreground. SIGCONT will cause a process to resume after it has been SIGSTOP'ped. The SIGTT ones are simply delivered to the process when they attempt to read or write while backgrounded. They do <i>not</i> foreground the process, in fact their default action is to simply stop the process as if you had sent a SIGSTOP. You still have to either SIGCONT to have them keep running in the background or fg them from the shell to bring them into the foreground. http://stackoverflow.com/questions/1844225/whats-the-most-elegant-10-20-line-function-youve-seen-written/1844394#1844394 Comment by paxdiablo on What's the most elegant 10-20 line function you've seen/written? paxdiablo 2009-12-04T01:58:07Z 2009-12-04T01:58:07Z Actually, I'll readily admit, that <i>is</i> more elegant. I guess at some point I'm going to have to look into these new-fangled functional languages (if I can ever find the time and impetus). http://stackoverflow.com/questions/1844225/whats-the-most-elegant-10-20-line-function-youve-seen-written/1844264#1844264 Comment by paxdiablo on What's the most elegant 10-20 line function you've seen/written? paxdiablo 2009-12-04T01:47:40Z 2009-12-04T01:47:40Z Err, so where is it? :-) http://stackoverflow.com/questions/1844316/random-testimonial-generator Comment by paxdiablo on Random Testimonial Generator paxdiablo 2009-12-04T01:42:22Z 2009-12-04T01:42:22Z You mean testimonial as in something you have to write for someone you admire? Surely it would mean more if you actually put some effort into it, no? http://stackoverflow.com/questions/1844232/sending-a-signal-to-a-background-process/1844272#1844272 Comment by paxdiablo on sending a signal to a background process paxdiablo 2009-12-04T01:32:24Z 2009-12-04T01:32:24Z There isn't one. Plain and simple. Foreground/background is not an attribute of the process, it's an attribute of the <i>shell</i> that started the process. The shell controls that aspect. You can send the SIGCONT to start a process running (if it was stopped with SIGSTOP) but there is no signal that will allow a process to force itself into the foreground because it simply doesn't have that power. http://stackoverflow.com/questions/1844232/sending-a-signal-to-a-background-process/1844253#1844253 Comment by paxdiablo on sending a signal to a background process paxdiablo 2009-12-04T01:31:14Z 2009-12-04T01:31:14Z there is no spoon :-) http://stackoverflow.com/questions/99474/how-to-handle-code-that-is-deemed-dangerous-to-change-but-stable/99530#99530 Comment by paxdiablo on how to handle code that is deemed dangerous to change, but stable? paxdiablo 2009-12-03T23:30:52Z 2009-12-03T23:30:52Z I read &quot;stable&quot; as meaning no additions had to be made. Obviously, if it's not stable, it may benefit from a cleanup but I don't think that's the question here. http://stackoverflow.com/questions/1836509/c-function-exiting-before-input/1836577#1836577 Comment by paxdiablo on C Function exiting before input paxdiablo 2009-12-02T23:53:50Z 2009-12-02T23:53:50Z @Lucas, your statement is correct but I can't locate where I actually made that contention. I stated that the loop would exit if val was set to &quot;X&quot;, nothing about the break statements exiting the loop.