User Jonathan Leffler - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T09:19:35Zhttp://stackoverflow.com/feeds/user/15168http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1944563/how-to-call-a-stored-procedure-without-waiting-for-it-to-finish/1944974#19449740Answer by Jonathan Leffler for How to call a stored procedure without waiting for it to finish?Jonathan Leffler2009-12-22T08:38:26Z2009-12-22T08:38:26Z<p>With IBM Informix Dynamic Server 11, you could consider running the procedure via the DB-Cron task scheduler. The program would initiate the operation as a synchronous database request, but the task would not need to complete before the request was complete.</p>
http://stackoverflow.com/questions/1944693/managing-signal-handling-for-daemons-that-fork/1944903#19449031Answer by Jonathan Leffler for Managing Signal Handling for daemons that fork() Jonathan Leffler2009-12-22T08:22:49Z2009-12-22T08:22:49Z<p>When you fork, the child process has the same signal handlers as the parent. When you exec, any ignored signals remain ignored; any handled signals are reset back to the default handler.</p>
http://stackoverflow.com/questions/1943889/mysql-difference-between-two-timestamps/1943947#19439472Answer by Jonathan Leffler for MySQL difference between two timestampsJonathan Leffler2009-12-22T03:09:41Z2009-12-22T05:48:45Z<p>Note that '<code>x BETWEEN y AND z</code>' assumes <code>y</code> is less than <code>z</code>; it never returns anything otherwise. It is equivalent to '<code>x >= y AND x <= z</code>'.</p>
<p>Given that the off time is after midnight in this case, then you need to do a much more complex condition:</p>
<pre><code>SELECT zdate
FROM zones
WHERE (time_on < time_off AND '18:21:00' BETWEEN time_on AND time_off)
OR (time_on > time_off AND ('18:21:00' > time_on OR '18:21:00' < time_off))
</code></pre>
<p>The first condition is the normal one for time on is on the same day as time off. The second alternative checks that the target time is after the time on (and implicitly before midnight) or that it is before the time off (and hence between midnight and the time off).</p>
<p>For greater symmetry:</p>
<pre><code>SELECT zdate
FROM zones
WHERE (time_on < time_off AND ('18:21:00' > time_on AND '18:21:00' < time_off))
OR (time_on > time_off AND ('18:21:00' > time_on OR '18:21:00' < time_off))
</code></pre>
<p><hr></p>
<p>Example output using IBM Informix Dynamic Server (IDS) 11.50.FC4W1 on MacOS X 10.6.2. IDS uses 'DATETIME HOUR TO SECOND' as the equivalent of the TIME type in standard SQL.</p>
<pre><code>CREATE TEMP TABLE zones
(
time_on DATETIME HOUR TO SECOND NOT NULL,
time_off DATETIME HOUR TO SECOND NOT NULL
);
INSERT INTO zones VALUES ('09:00:00', '02:00:00');
INSERT INTO zones VALUES ('07:00:00', '19:00:00');
INSERT INTO zones VALUES ('20:00:00', '22:00:00');
INSERT INTO zones VALUES ('10:00:00', '15:15:00');
INSERT INTO zones VALUES ('21:00:00', '04:00:00');
CREATE TEMP TABLE times
(
zdate DATETIME HOUR TO SECOND NOT NULL
);
INSERT INTO times VALUES ('18:21:00');
INSERT INTO times VALUES ('08:30:00');
INSERT INTO times VALUES ('20:30:00');
INSERT INTO times VALUES ('12:30:00');
SELECT zdate, time_on, time_off
FROM zones CROSS JOIN times
WHERE (time_on < time_off AND (zdate > time_on AND zdate < time_off))
OR (time_on > time_off AND (zdate > time_on OR zdate < time_off))
ORDER BY zdate, time_on, time_off
</code></pre>
<p>Output data:</p>
<pre><code>08:30:00 07:00:00 19:00:00
12:30:00 07:00:00 19:00:00
12:30:00 09:00:00 02:00:00
12:30:00 10:00:00 15:15:00
18:21:00 07:00:00 19:00:00
18:21:00 09:00:00 02:00:00
20:30:00 09:00:00 02:00:00
20:30:00 20:00:00 22:00:00
</code></pre>
<p>I think that looks correct.</p>
http://stackoverflow.com/questions/1942576/salting-passwords-databases-and-security-need-a-little-help/1942611#19426112Answer by Jonathan Leffler for salting, passwords databases and security, need a little help.Jonathan Leffler2009-12-21T21:01:39Z2009-12-21T21:01:39Z<p>If two people use the same password - say 'password' - and you do not use a salt, then you can see that they use the same password by looking at the hashes. If the results are the same, then they used the same password; if not, they didn't.</p>
<p>If you create a random hash as well, and use that along with the password when creating the hash, you only get the same hash for a given password if the two people use the same password and the same salt is assigned to both. Using a 32-bit salt value radically reduces the chance of the same password and salt being shared by two people, so it increases the workload for the attacker who wants to break the passwords using brute force.</p>
http://stackoverflow.com/questions/1942440/leave-if-statement/1942549#19425491Answer by Jonathan Leffler for leave if statementJonathan Leffler2009-12-21T20:51:04Z2009-12-21T20:51:04Z<p>This does exactly what you want, I believe.</p>
<pre><code>if (page.isvalid() && datetime.tryparse(date) == true)
{
// ok
}
else
{
// want to go here
}
</code></pre>
<p>It is not clear whether the '== true' is necessary; you might be able to drop that condition.</p>
http://stackoverflow.com/questions/1933665/how-to-change-to-an-external-disk-drive-in-c/1933666#19336662Answer by Jonathan Leffler for How to change to an external disk drive in CJonathan Leffler2009-12-17T00:21:30Z2009-12-19T17:58:00Z<p>Be wary of changing directory within a program - all that's usually needed is to open the files on the external device without actually changing directory to it.</p>
<p>However, on both Windows and Unix, the basic answer is via a 'change directory' operation. On Unix-like platforms, that is the 'chdir(2)' system call; your program should specify the name of the directory where the external hard disk is mounted, and then relative pathnames will write to appropriate locations on the disk (subject to the path name not containing too many "../" sequences).</p>
<p>On Windows, you would need to ensure you specify the drive letter as well as the path on the hard drive.</p>
http://stackoverflow.com/questions/1931308/using-make-to-add-m4-preprocessing-to-an-arbitrary-language/1931330#19313300Answer by Jonathan Leffler for Using make to add m4 preprocessing to an arbitrary languageJonathan Leffler2009-12-18T23:44:20Z2009-12-18T23:44:20Z<p>As Anon also said, your source code is no longer Flex - it is 'to be preprocessed Flex'. So, use an extension such as '.eas' (for Extended ActionScript) for the source code, and create a 'compiler' script that converts '.eas' into '.as' files, which can then be processed as before.</p>
<p>You may prefer to have the Extended ActionScript compiler do the whole compilation job - taking the '.eas' direct to the compiled form.</p>
<p>The main thing to be wary of is ensuring that '.eas' files are considered before the derived '.as' files. Otherwise, your changes in the '.eas' files will not be picked up, leading to hair-tearing and other undesirable behaviours (head banging, as in 'banging head against wall', for example) as you try to debug code that hasn't changed even though the source has.</p>
http://stackoverflow.com/questions/1930765/writing-a-programming-book-how-lucrative/1930802#19308024Answer by Jonathan Leffler for Writing a Programming Book: How Lucrative?Jonathan Leffler2009-12-18T21:29:35Z2009-12-18T21:29:35Z<p>It depends - on the publisher and your abilities as an author.</p>
<p>I'm a <a href="http://rads.stackoverflow.com/amzn/click/0201565099" rel="nofollow">published</a> author - about 20 years ago. Things have changed since then.</p>
<p>However, while I got some useful pocket money out of the book, there was no way it could replace my normal working income. If you go into the process in the expectation that you'll get something similar, you won't be too far off the mark.</p>
<p>To make a living at writing books, you would have to have a number of books on the market, all selling moderately well. Or one smash hit - but they are few and far between; you'd be better off not assuming your magnum opus will achieve smash hit status.</p>
http://stackoverflow.com/questions/1930134/is-there-any-other-time-service-than-system-time-that-we-can-make-use/1930182#19301820Answer by Jonathan Leffler for Is there any other time service than system time that we can make use?Jonathan Leffler2009-12-18T19:19:38Z2009-12-18T19:19:38Z<p>If you don't want to trust the system clock, you are going to have problems.</p>
<p>Probably your best bet is an <a href="http://www.ntp.org/" rel="nofollow">NTP</a> or SNTP connection to establish the current time from authoritative time servers outside the organization - but you may easily be blocked by firewalls, etc.</p>
<p>However, that is really overkill; people don't futz with the system clock for long - it is far too much of a nuisance.</p>
http://stackoverflow.com/questions/1929380/declaring-the-unix-flavour-in-c-c/1929505#19295051Answer by Jonathan Leffler for declaring the unix flavour in C/C++Jonathan Leffler2009-12-18T17:01:34Z2009-12-18T17:01:34Z<p>Be careful about how you handle this. You should identify the features of the O/S that you want to use by feature, not by O/S, and write your code accordingly. Then, in one header, you can identify which of the features are available on the O/S that you are compiling on. This is the technique used by autoconf, and even if you do not use autoconf itself, the technique it espouses is better than the platform-based technique. Remember, the features found on one O/S often migrate and become available on others too, so if you work by features, you can adapt to the future more easily than if you work solely on the O/S.</p>
<p>You also have to write your code appropriately, and portably. Isolate the O/S dependencies in separate files whenever possible, and code to an abstract O/S interface that does what you need. Taken to an extreme, you end up with a Java JVM; you don't need to go that far, but you can obviate most of the problems.</p>
<p>Take a look at portable libraries like the Apache Portable Runtime (APR) library.</p>
<p>And write your code along the lines of:</p>
<pre><code>#ifdef HAVE_PWRITE
...code using pread() and pwrite()...
#else
...code using plain old read() and write()...
#endif
</code></pre>
<p>This is a grossly over-simplified example - there could be a number of fallbacks before you use plain read() and write(). Nevertheless, this is the concept used in the most portable code - things like GCC and Apache and so on.</p>
http://stackoverflow.com/questions/1920105/how-can-i-open-a-db-handle-in-c-and-pass-it-to-perl-using-swig/1920335#19203353Answer by Jonathan Leffler for How can I open a DB handle in C and pass it to Perl using SWIG?Jonathan Leffler2009-12-17T08:54:28Z2009-12-17T15:57:48Z<p>The Perl DBI (DataBase Interface) does not make provision for passing an already-open database handle to the driver - the interface assumes that (DBI plus the relevant DataBase Driver or DBD::XyzDBMS module) will establish the connection. Therefore, at best, you are going to be writing the code to extend DBI to allow for this, and also extending the relevant DBD to support it, which is an altogether non-trivial exercise.</p>
<p>So, why do you think this is a good idea - what is the security benefit of doing things this way rather than just letting DBI handle the connection too?</p>
<p><hr></p>
<p>Embedding the passwords in the application is the wrong way to go from so many points of view it is hard to know where to begin:</p>
<ul>
<li>Changing the password means recompiling and rereleasing the programs, so it will never happen.</li>
<li>Everyone uses the same user name and password to connect to the database or web service, so you have no idea who is doing the connecting.</li>
<li>The passwords will be discoverable in the object files - it is an odds-on bet that if an attacker is really concerned, they'll be able to find them.</li>
<li>Etcetera.</li>
</ul>
<h3>'Security through obscurity' is not secure at all!</h3>
<p>But that is what you are proposing to use.</p>
<p>Please get yourself some advice on how to write secure software from those who know. Or read some of the many excellent books on the subject.</p>
http://stackoverflow.com/questions/1918021/proper-usage-of-the-pre-increment-operator-in-combination-with-the-pointer-derefe/1918068#19180685Answer by Jonathan Leffler for proper usage of the pre-increment operator in combination with the pointer dereference operatorJonathan Leffler2009-12-16T21:56:47Z2009-12-16T21:56:47Z<ol>
<li>Operator precedence dictates the behaviour you observed.</li>
<li>It wouldn't hurt much if you separated the increment from the comparison in this example, but sometimes you want to have a condition with increment in the middle of a sequence of conditions, and then trying to separate the increment from the test can hurt the readability of the code by introducing nesting that would otherwise be unnecessary.</li>
</ol>
<p>For example:</p>
<pre><code>if (...1...)
...2...
else if (++data_ptr->count > threshold)
...3...
else
...4...
</code></pre>
<p>Versus:</p>
<pre><code>if (...1...)
...2...
else
{
++data_ptr->count;
if (data_ptr->count > threshold)
...3...
else
...4...
}
</code></pre>
http://stackoverflow.com/questions/1917557/how-to-replace-the-last-one-or-two-characters-of-a-file-with-unix-tools/1917669#19176690Answer by Jonathan Leffler for How to replace the last one or two characters of a file with unix toolsJonathan Leffler2009-12-16T20:56:50Z2009-12-16T20:56:50Z<p>Generally, text files should end with a newline.</p>
<p>One way to edit a file for replace trailing comma with close bracket on last line is:</p>
<pre><code>ed - $file <<'!'
$s/,$/]/
w
q
!
</code></pre>
<p>This goes to the last line, replaces the trailing comma with close bracket, and writes and exits. Alternatively, using sed:</p>
<pre><code>sed '$s/,$/]/' $file > new.$file &&
mv new.$file $file
</code></pre>
<p>If you have GNU sed, there is an 'overwrite' option ('-i', IIRC).</p>
<p>If you need to deal with file names rather than file contents, then:</p>
<pre><code>newname=$(echo "$oldname" | sed 's/,$/]/')
</code></pre>
<p>And no doubt there are other mechanisms too. You could also use Perl or Python; they tend towards overkill for the example requested.</p>
http://stackoverflow.com/questions/1913069/learning-about-c-0x-features/1913096#19130960Answer by Jonathan Leffler for Learning about C++ 0x features.Jonathan Leffler2009-12-16T08:14:44Z2009-12-16T08:14:44Z<p>You should certainly know about the official working group web site for <a href="http://www.open-std.org/jtc1/sc22/wg21/" rel="nofollow">ISO/IEC JTC1/SC22/WG21</a>. This has the committee information, so it contains the official documents that are under development. However, it is not necessarily the best place to learn about the background ideas behind the various suggested ideas for C++0x.</p>
<p>Another place to look is the <a href="http://groups.google.com/group/comp.std.c++/" rel="nofollow">comp.std.c++</a> news group; this often has esoteric discussions of the minutiae of possible features.</p>
http://stackoverflow.com/questions/1899241/max-and-min-time-query/1899271#18992715Answer by Jonathan Leffler for Max and Min Time queryJonathan Leffler2009-12-14T06:35:13Z2009-12-15T23:56:31Z<p>What about:</p>
<pre><code>SELECT time_value
FROM (SELECT MIN(time_column) AS time_value FROM SomeTable
UNION
SELECT MAX(time_column) AS time_value FROM SomeTable
)
ORDER BY time_value DESC;
</code></pre>
<p>That should do the job unless there are no rows in SomeTable (or your DBMS does not support the notation).</p>
<p><hr></p>
<p>Simplifying per suggestion in comments - thanks!</p>
<pre><code>SELECT MIN(time_column) AS time_value FROM SomeTable
UNION
SELECT MAX(time_column) AS time_value FROM SomeTable
ORDER BY time_value DESC;
</code></pre>
<p><hr></p>
<p>If you can get two values from one query, you may improve the performance of the query using:</p>
<pre><code>SELECT MIN(time_column) AS min_time,
MAX(time_column) AS max_time
FROM SomeTable;
</code></pre>
<p>A really good optimizer might be able to deal with both halves of the UNION version in one pass over the data (or index), but it is quite easy to imagine an optimizer tackling each half of the UNION separately and processing the data twice. If there is no index on the time column to speed things up, that could involve two table scans, which would be much slower than a single table scan for the two-value, one-row query (if the table is big enough for such things to matter).</p>
http://stackoverflow.com/questions/1908687/how-to-redirect-the-output-back-to-the-screen-after-freopenout-txt-a-stdou/1910044#19100442Answer by Jonathan Leffler for How to redirect the output back to the screen after freopen("out.txt", "a", stdout)Jonathan Leffler2009-12-15T20:09:28Z2009-12-15T20:09:28Z<p>Use <code>fdopen()</code> and <code>dup()</code> as well as <code>freopen()</code>.</p>
<pre><code>int old_stdout = dup(1); // Preserve original file descriptor for stdout.
FILE *fp1 = freopen("out.txt", "w", stdout); // Open new stdout
...write to stdout... // Use new stdout
FILE *fp2 = fdopen(old_stdout, "w"); // Open old stdout as a stream
...Now, how to get stdout to refer to fp2?
...Under glibc, I believe you can use:
fclose(stdout); // Equivalent to fclose(fp1);
stdout = fp2; // Assign fp2 to stdout
// *stdout = *fp2; // Works on Solaris and MacOS X, might work elsewhere.
close(old_stdout); // Close the file descriptor so pipes work sanely
</code></pre>
<p>I'm not sure whether you can do the assignment reliably elsewhere.</p>
<h3>Dubious code that does actually work</h3>
<p>The code below worked on Solaris 10 and MacOS X 10.6.2 - but I'm not confident that it is reliable. The structure assignment may or may not work with Linux glibc.</p>
<pre><code>#include <stdio.h>
int main()
{
printf("This goes to screen\n");
int old_stdout = dup(1);
FILE *fp1 = freopen("out.txt", "a", stdout);
printf("This goes to out.txt\n");
fclose(stdout);
FILE *fp2 = fdopen(old_stdout, "w");
*stdout = *fp2;
printf("This should go to screen too, but doesn't\n");
return 0;
}
</code></pre>
<p>You can't say you weren't warned -- <strong>this is playing with fire</strong>.</p>
<p>The better solutions either make the code use 'fprintf(fp, ...)' everywhere, or use a cover function that allows you set your own default file pointer:</p>
<h3>mprintf.c</h3>
<pre><code>#include "mprintf.h"
#include <stdarg.h>
static FILE *default_fp = 0;
void set_default_stream(FILE *fp)
{
default_fp = fp;
}
int mprintf(const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
if (default_fp == 0)
default_fp = stdout;
int rv = vfprintf(default_fp, fmt, args);
va_end(args);
return(rv);
}
</code></pre>
<h3>mprintf.h</h3>
<pre><code>#ifndef MPRINTF_H_INCLUDED
#define MPRINTF_H_INCLUDED
#include <stdio.h>
extern void set_default_stream(FILE *fp);
extern int mprintf(const char *fmt, ...);
#endif
</code></pre>
<p>Clearly, you can create an mvprintf() and other functions as needed.</p>
<h3>Example use of mprintf()</h3>
<p>Then, in place of the original code, you can use:</p>
<pre><code>#include "mprintf.h"
int main()
{
mprintf("This goes to screen\n");
FILE *fp1 = fopen("out.txt", "w");
set_default_stream(fp1);
mprintf("This goes to out.txt\n");
fclose(fp1);
set_default_stream(stdout);
mprintf("This should go to screen too, but doesn't\n");
return 0;
}
</code></pre>
<p>(Warning: untested code - confidence level too high. Also, all code written assuming you use a C99 compiler, primarily because I declare variables when I first need them, not at the beginning of the function.)</p>
http://stackoverflow.com/questions/1906203/linux-unix-non-ascii-characters-in-home-directory/1906325#19063251Answer by Jonathan Leffler for Linux/Unix: Non-ascii characters in home directory?Jonathan Leffler2009-12-15T09:56:41Z2009-12-15T10:07:52Z<p>Yes, it is possible that the string could be UTF-8; however, the value of $HOME must then be a valid UTF-8 string and the string will only contain complete valid UTF-8 characters. Note that UTF-8 simply uses most (but not all; it omits 0xC0, 0xC1, 0xF5..0xFF) of the possible 8-bit chararacter values. That means you don't have to worry very much about it unless you want to. In particular, UTF-8 only uses a zero byte to indicate U+0000, which is equivalent to ASCII NUL or <code>'\0'</code> and is encoded in a single byte (value 0).</p>
<p>The conclusion doesn't vary across platforms; different systems may make it more or less difficult to create home directories that need non-ASCII UTF-8 characters.</p>
<p>See also: <a href="http://stackoverflow.com/questions/164430/why-is-it-that-utf-8-encoding-is-used-when-interacting-with-a-unix-linux-environm/">SO 164430</a></p>
http://stackoverflow.com/questions/1898890/what-c99-features-are-considered-harmful-or-unsupported/1905002#19050020Answer by Jonathan Leffler for What C99 features are considered harmful or unsupported.Jonathan Leffler2009-12-15T03:35:30Z2009-12-15T03:35:30Z<p>The type generic maths functions from <code><tgmath.h></code> are not necessarily widely implemented, though they do seem to be provided with GCC 4.2.1 on MacOS X 10.6.2.</p>
http://stackoverflow.com/questions/1891836/compiled-freeimage-from-source-include-freeimage-h-not-found/1901663#19016630Answer by Jonathan Leffler for Compiled FreeImage from source. #include FreeImage.h not found.Jonathan Leffler2009-12-14T15:45:48Z2009-12-14T15:45:48Z<p>The '<code>INCLUDE +=</code>' line looks like the one to attack:</p>
<pre><code>INCLUDE += -I/usr/local/include
</code></pre>
<p>If the library is missing too, then you will need to find another line to add '<code>-L/usr/include/lib</code>' to.</p>
http://stackoverflow.com/questions/1899012/how-to-use-loops-statements-in-unix-shell-scripting/1899052#18990520Answer by Jonathan Leffler for How to use loops statements in unix shell scriptingJonathan Leffler2009-12-14T05:19:58Z2009-12-14T05:19:58Z<p>As well as the 'for' and 'while' loops mentioned by Tom, there is (in classic Bourne and Korn shells at least, but also in Bash on MacOS X and presumably elsewhere too) an 'until' loop:</p>
<pre><code>until [ -f /tmp/sentry.file ]
do
sleep 3
done
</code></pre>
<p>This loop terminates when the tested command succeeds, in contrast to the 'while' loop which terminates when the tested command fails.</p>
<p>Also note that you can test a sequence of commands; the last command is the one that counts:</p>
<pre><code>while x=$(ls); [ -n "$x" ]
do
echo $x
done
</code></pre>
<p>This continues to echo all the files in the directory until they're all deleted.</p>
http://stackoverflow.com/questions/1897953/maximum-length-of-a-decimal-latitude-longitude-degree/1897997#18979976Answer by Jonathan Leffler for Maximum length of a decimal latitude/longitude Degree?Jonathan Leffler2009-12-13T22:18:52Z2009-12-13T22:24:35Z<p>Originally, the definition of a nautical mile was the length of one minute of longitude on the equator. So, there were 360 * 60 = 21,600 nautical miles around the equator. Similarly, the original definition of a kilometer was that 10,000 km = length from pole to equator. Consequently, assuming a spherical earth, there would be:</p>
<ul>
<li>40,000 ÷ 21,600 = 1.852 km per minute</li>
<li>1.852 × 60 = 111.11 km per degree</li>
</ul>
<p>Allowing for a spheroidal earth instead of a spherical one will slightly adjust the factor, but not by all that much. You could be pretty confident the factor is less than 1.9 km per minute or 114 km per degree.</p>
http://stackoverflow.com/questions/1897779/test-if-point-is-in-some-rectangle/1897962#18979621Answer by Jonathan Leffler for Test if point is in some rectangleJonathan Leffler2009-12-13T22:08:50Z2009-12-13T22:08:50Z<p>For rectangles that are aligned with the axes, you only need two points (four numbers) to identify the rectangle - conventionally, bottom-left and top-right corners. To establish whether a given point (X<sub>test</sub>, Y<sub>test</sub>) overlaps with a rectangle (X<sub>BL</sub>, Y<sub>BL</sub>, X<sub>TR</sub>, Y<sub>TR</sub>) by testing both:</p>
<ul>
<li>X<sub>test</sub> >= X<sub>BL</sub> && X<sub>test</sub> <= X<sub>TR</sub></li>
<li>Y<sub>test</sub> >= Y<sub>BL</sub> && Y<sub>test</sub> <= Y<sub>TR</sub></li>
</ul>
<p>Clearly, for a large enough set of points to test, this could be fairly time consuming. The question, then, is how to optimize the testing.</p>
<p>Clearly, one optimization is to establish the minimum and maximum X and Y values for the box surrounding all the rectangles (the bounding box): a swift test on this shows whether there is any need to look further.</p>
<ul>
<li>X<sub>test</sub> >= X<sub>min</sub> && X<sub>test</sub> <= X<sub>max</sub></li>
<li>Y<sub>test</sub> >= Y<sub>min</sub> && Y<sub>test</sub> <= Y<sub>max</sub></li>
</ul>
<p>Depending on how much of the total surface area is covered with rectangles, you might be able to find non-overlapping sub-areas that contain rectangles, and you could then avoid searching those sub-areas that cannot contain a rectangle overlapping the point, again saving comparisons during the search at the cost of pre-computation of suitable data structures. If the set of rectangles is sparse enough, there may be no overlapping, in which case this degenerates into the brute-force search. Equally, if the set of rectangles is so dense that there are no sub-ranges in the bounding box that can be split up without breaking rectangles.</p>
<p>However, you could also arbitrarily break up the bounding area into, say, quarters (half in each direction). You would then use a list of boxes which would include more boxes than in the original set (two or four boxes for each box that overlapped one of the arbitrary boundaries). The advantage of this is that you could then eliminate three of the four quarters from the search, reducing the amount of searching to be done in total - at the expense of auxilliary storage.</p>
<p>So, there are space-time trade-offs, as ever. And pre-computation versus search trade-offs. If you are unlucky, the pre-computation achieves nothing (for example, there are two boxes only, and they don't overlap on either axis). On the other hand, it could achieve considerable search-time benefit.</p>
http://stackoverflow.com/questions/1897374/is-there-a-truly-universal-wildcard-in-grep/1897402#18974022Answer by Jonathan Leffler for Is there a truly universal wildcard in Grep?Jonathan Leffler2009-12-13T19:12:18Z2009-12-13T19:33:34Z<p>By definition, <code>grep</code> looks for lines which match; it reads a line, sees whether it matches, and prints the line.</p>
<p>One possible way to do what you want is with <code>sed</code>:</p>
<pre><code>sed -n '/HEADER TEXT/,/FOOTER TEXT/p' "$@"
</code></pre>
<p>This prints from the first line that matches 'HEADER TEXT' to the first line that matches 'FOOTER TEXT', and then iterates; the '-n' stops the default 'print each line' operation. This won't work well if the header and footer text appear on the same line.</p>
<p>To do what you want, I'd probably use <code>perl</code> (but you could use Python if you prefer). I'd consider slurping the whole file, and then use a suitably qualified regex to find the matching portions of the file. However, the Perl one-liner given by '@gbacon' is an almost exact transliteration into Perl of the 'sed' script above and is neater than slurping.</p>
http://stackoverflow.com/questions/1897186/detecting-loops-in-symbolic-links-c-programming/1897339#18973391Answer by Jonathan Leffler for detecting loops in symbolic links (c programming)Jonathan Leffler2009-12-13T18:52:32Z2009-12-13T18:52:32Z<p>The trouble is that '<code>lstat()</code>' looks at the symlink and its properties, and the symlinks actually exist.</p>
<p>If you replace the call with '<code>stat()</code>', then you will get the ELOOP error. This tries to get the information at the far end of the symlink, and that cannot be found because of the ELOOP condition.</p>
<p>You should only test <code>errno</code> after you have verified that <code>status</code> indicates a failure. With a genuine system call, it is unlikely that errno would be set when the call succeeds, but with library functions, you can find errno is set even though the call succeeds. For example, with some standard I/O library implementations, you can have <code>errno == ENOTTY</code> even after a successful function call; the code checks whether the file descriptor represents a terminal and errno is set to indicate that it isn't, but since the function succeeded, it is not legitimate to check <code>errno</code>.</p>
http://stackoverflow.com/questions/1896793/remove-duplicate-line-in-vim/1896917#18969170Answer by Jonathan Leffler for Remove Duplicate Line in Vim?Jonathan Leffler2009-12-13T16:10:23Z2009-12-13T16:10:23Z<p>Answers using 'uniq' suffer from the problem that 'uniq' only finds adjacent duplicated lines, or the data file is sorted losing positional information.</p>
<p>If no line may ever be repeated, then it is relatively simple to do in Perl (or other scripting language with regex and associative array support), assuming that the data source is not incredibly humungous:</p>
<pre><code>#!/bin/perl -w
# BEWARE: untested code!
use strict;
my(%lines);
while (<>)
{
print if !defined $lines{$_};
$lines{$_} = 1;
}
</code></pre>
<p>However, if it is used indiscriminately, this is likely to break the XML since end tags are legitimately repeated. How to avoid this? Maybe by a whitelist of 'OK to repeat' lines? Or maybe only lines with open tags with values are subject to duplicate elimination:</p>
<pre><code>#!/bin/perl -w
# BEWARE: untested code!
use strict;
my(%lines);
while (<>)
{
if (m%^\s*<[^\s>]+\s[^\s>]+%)
{
print if !defined $lines{$_};
$lines{$_} = 1;
}
else
{
print;
}
}
</code></pre>
<p>Of course, there is also the (largely valid) argument that processing XML with regular expressions is misguided. This coding assumes the XML comes with lots of convenient line breaks; real XML may not contain any, or only a very few.</p>
http://stackoverflow.com/questions/1896502/many-to-many-without-intermediate-table-is-it-possible/1896529#18965290Answer by Jonathan Leffler for Many-to-many without intermediate table - is it possible?Jonathan Leffler2009-12-13T13:38:40Z2009-12-13T13:56:08Z<p>One way to avoid the association table is to have each of the main tables contain something like a set of cross-referenced entries in the other table - assuming your DBMS even supports such a construct. It is infinitely less desirable for many reasons, not least of which is that it is extremely hard to either query or update the correct list automatically.</p>
<p>Outline schema:</p>
<pre><code>create table t1 (id integer, xref_t2 set(integer), ...other columns...);
create table t2 (id integer, xref_t1 set(integer), ...other columns...);
</code></pre>
<p>Note that there is no simple way to declare a referential integrity constraint to ensure that the values in 'xref_t2' are indeed still valid (or to write a trigger to enforce the constraint).</p>
<p>Alternative mechanisms such as a non-nullable column for the ordinary cross-references (one in each table) and a nullable column for the unusual multiple cross-references (again, one in each table) still run foul of the even more unusual situation where it is not a 1:2 but a 1:3 or 1:4 relationship.</p>
<p>The best way to do it is with an explicit association table.</p>
http://stackoverflow.com/questions/1896505/strange-error-occured-while-using-cmake/1896515#18965150Answer by Jonathan Leffler for Strange error occured while using cmakeJonathan Leffler2009-12-13T13:32:16Z2009-12-13T13:51:11Z<p>The key line is probably:</p>
<pre><code>1>Project : error PRJ0003 : Error spawning 'cmd.exe'.
</code></pre>
<p>For some reason or another, the MSVC is not able to execute 'cmd.exe', and therefore the compilation fails.</p>
<p>I would guess that the problem might be related to the setting of %PATH%; there might be some other reason for the trouble.</p>
<p>Try doing what CMake did manually - see whether you get the same error. This will help you diagnose whether the problem is in CMake (if it does work for you from the command line) or in your general environment (if it does not work for you either).</p>
<p><hr></p>
<p>Learn how to read error messages!</p>
<pre><code>Change Dir: I:/SophisPal/build/CMakeFiles/CMakeTmp
Run Build Command:C:\PROGRA~1\MICROS~1.0\Common7\IDE\VCExpress.exe CMAKE_TRY_COMPILE.sln /build Debug /project cmTryCompileExec
</code></pre>
<p>These are two of the early lines in the output. The first indicates that CMake changed directory to one of its creating. The second indicates the command it ran there. You would also need to find out what files it created in the directory before running the command.</p>
<p>With that information at hand, you'll have to go through the same steps - 'cd' followed by 'vcexpress'.</p>
http://stackoverflow.com/questions/1895595/should-screen-dimension-constants-that-hold-magic-numbers-be-refactored/1895612#18956120Answer by Jonathan Leffler for Should screen dimension constants that hold magic numbers be refactored?Jonathan Leffler2009-12-13T05:09:57Z2009-12-13T05:09:57Z<p>What size screen are you assuming I have? People have very different screen resolutions on their machines, and any fixed pixel size or position is going to be wrong for some people some of the time. My normal display is 1900x1220; my other display is 1440x1050; other people use screens with different sizes. If you are displaying to a fixed size window that the user cannot resize, then it may be safer to use fixed sizes.</p>
<p>Without knowing what ApplySurface() does, it is hard to say whether it is clear as written. However, the relative names could well be sensible. As a maintenance programmer, I'd have no idea where the values 430 and 458 were derived from without a supporting comment unless you used an expression to make it clear.</p>
http://stackoverflow.com/questions/1895265/file-that-goes-nowhere/1895277#18952777Answer by Jonathan Leffler for FILE* that goes nowhereJonathan Leffler2009-12-13T01:23:10Z2009-12-13T01:34:36Z<p>No: <code>/dev/null</code> on Unix and <code>NUL:</code> on Windows (in the absence of Cygwin or equivalent) is the best way to do it.</p>
<p>Oh, and the <code>"o"</code> flag to <code>fopen()</code> is non-portable. The portable forms include flag characters <code>r</code>, <code>w</code>, <code>a</code>, <code>b</code>, <code>+</code> in various combinations.</p>
http://stackoverflow.com/questions/1895213/general-preferred-commenting-objective/1895292#18952920Answer by Jonathan Leffler for General - Preferred commenting objectiveJonathan Leffler2009-12-13T01:29:53Z2009-12-13T01:29:53Z<p>Maybe you should investigate 'literate programming' as a way of writing your code. That interleaves commentary with code, allowing for presentation of the code in a logical sequence.</p>
<p>Apart from the originals by Donald Knuth, you could look at 'C Interfaces and Implementations' by D Hanson.</p>
http://stackoverflow.com/questions/1943889/mysql-difference-between-two-timestamps/1943947#1943947Comment by Jonathan Leffler on MySQL difference between two timestampsJonathan Leffler2009-12-22T05:55:57Z2009-12-22T05:55:57ZI guess I should really show zdate values of 23:59:59 and 00:00:01. They would each appear twice - once with the zone '09:00'-'02:00' and once with the zone '21:00'-'04:00'.http://stackoverflow.com/questions/1942159/need-some-clarification-regarding-casting-in-c/1942241#1942241Comment by Jonathan Leffler on Need some clarification regarding casting in CJonathan Leffler2009-12-21T21:19:09Z2009-12-21T21:19:09ZAgreed, but if the code might ever be processed by a C++ compiler, then the cast is necessary after all - because C++ does not have automatic casts <i>from</i> <code>void *</code> (only <i>to</i> <code>void *</code>).http://stackoverflow.com/questions/1937917/custom-where-in-stored-procedure-informix/1937976#1937976Comment by Jonathan Leffler on Custom "WHERE" in stored procedure (Informix)?Jonathan Leffler2009-12-21T21:11:49Z2009-12-21T21:11:49ZIt depends on what you want to do with the 'returned stmt'. If you mean, how do you execute the statements and get results, then you use an INTO clause to assign the results to variables and a RETURN to return them (possibly WITH RESUME to return many results). You also use a FOREACH loop (or, in the pre-11.50 case, a pair of FOREACH loops) to generate the results. If you want to return the query string, then assign the query to a CHAR or VARCHAR (or LVARCHAR) variable and return it to the caller.http://stackoverflow.com/questions/1942440/leave-if-statement/1942566#1942566Comment by Jonathan Leffler on leave if statementJonathan Leffler2009-12-21T20:55:28Z2009-12-21T20:55:28ZVery verbose - accurate, but very verbose.http://stackoverflow.com/questions/1942440/leave-if-statement/1942449#1942449Comment by Jonathan Leffler on leave if statementJonathan Leffler2009-12-21T20:48:54Z2009-12-21T20:48:54ZThis calls DateTime.TryParse (aka datetime.tryparse()?) even when page.isvalid() fails. Why not just call the parser when the page is known to be valid?http://stackoverflow.com/questions/1941513/query-result-organization/1941594#1941594Comment by Jonathan Leffler on Query result organizationJonathan Leffler2009-12-21T18:13:29Z2009-12-21T18:13:29Z@Nick: that makes two of us editing at the same time :)http://stackoverflow.com/questions/1935155/sorting-a-text-file-with-over-100-000-000-records/1935184#1935184Comment by Jonathan Leffler on Sorting a text file with over 100,000,000 recordsJonathan Leffler2009-12-21T03:59:38Z2009-12-21T03:59:38ZAny sort worth its name will be doing the splitting and sorting and merging for you anyway. With only 1 GB RAM on the target machine, a 5 GB file will be sorted using a number of intermediate files which are merged together at the end.http://stackoverflow.com/questions/1935990/excluding-last-element-in-0-based-indexing/1936066#1936066Comment by Jonathan Leffler on Excluding last element in 0-based indexingJonathan Leffler2009-12-20T15:50:32Z2009-12-20T15:50:32Z'Tis a pity that it is not an editable article; the content is good, but the presentation is sloppy with lots of idiosyncratic typos.http://stackoverflow.com/questions/1935138/what-is-the-difference-between-posix-sockets-and-bsd-sockets/1935167#1935167Comment by Jonathan Leffler on What is the difference between POSIX sockets and BSD sockets?Jonathan Leffler2009-12-20T07:52:13Z2009-12-20T07:52:13ZYou've marked this as a quote - but not stated where you got the quote from. You can't have an up-vote until you've shown your source.http://stackoverflow.com/questions/1934071/sprintfbuf-20g-x-how-large-should-buf-be/1934087#1934087Comment by Jonathan Leffler on sprintf(buf, "%.20g", x) // how large should buf be?Jonathan Leffler2009-12-19T22:13:29Z2009-12-19T22:13:29Z32 bytes is fine - you showed it doesn't need to be quite that big, but even with a 5-digit exponent, 32 has some spare space.http://stackoverflow.com/questions/1930134/is-there-any-other-time-service-than-system-time-that-we-can-make-use/1930182#1930182Comment by Jonathan Leffler on Is there any other time service than system time that we can make use?Jonathan Leffler2009-12-18T21:25:33Z2009-12-18T21:25:33ZIn the circumstances you describe, you are stuck with the system clock; there isn't a reliable alternative. If your managers disagree, ask them to indicate what alternatives they think exist - it is always fair to ask them how to do what they ask (or, if it isn't, it is perhaps time to look elsewhere for a different job).http://stackoverflow.com/questions/1930127/compiling-a-c-program-that-was-entered-into-a-textbox-and-received-via-phpComment by Jonathan Leffler on Compiling a C program that was entered into a textbox and received via PHP?Jonathan Leffler2009-12-18T19:33:50Z2009-12-18T19:33:50ZNote that the program should declare '<code>int main()</code>' and should also probably include a newline in the printed string.http://stackoverflow.com/questions/1930068/how-to-write-these-two-ansi-sql-queries/1930100#1930100Comment by Jonathan Leffler on How to write these two (ANSI) SQL queries?Jonathan Leffler2009-12-18T19:24:08Z2009-12-18T19:24:08ZThe CROSS JOIN should be filtered with a condition - usually t1.patient_id < t2.patient_id to remove self-comparisons and to list each pair just once.http://stackoverflow.com/questions/1930146/struct-instantiation-from-void-pointer-bufferComment by Jonathan Leffler on Struct instantiation from void pointer bufferJonathan Leffler2009-12-18T19:21:52Z2009-12-18T19:21:52ZThe code shown leaks memory - presumably, that isn't a problem in the full program.http://stackoverflow.com/questions/1920105/how-can-i-open-a-db-handle-in-c-and-pass-it-to-perl-using-swig/1921535#1921535Comment by Jonathan Leffler on How can I open a DB handle in C and pass it to Perl using SWIG?Jonathan Leffler2009-12-17T15:53:05Z2009-12-17T15:53:05ZIn future, please edit your question rather than adding an 'answer' to explain where you are coming from. I will transfer the information for you this time. Now, please delete this answer.