User rjmunro - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T14:25:47Zhttp://stackoverflow.com/feeds/user/3408http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1770406/loading-different-linux-distribution-each-time-computer-starts-automatically/1770430#17704303Answer by rjmunro for Loading different Linux Distribution each time computer starts automatically?rjmunro2009-11-20T13:29:20Z2009-11-22T13:48:28Z<p>Put something in the startup scripts to rewrite menu.lst.</p>
<p>So have Ubuntu write a version of menu.lst that loads OpenSuSE, and have OpenSuSE write a version that loads Ubuntu.</p>
<p>I a relatively safe way to do this would be to have 3 files, menu.lst, menu.lst.ubuntu and menu.lst.SuSE and have the scripts do:</p>
<pre><code>cp menu.lst.ubuntu menu.lst
</code></pre>
<p>on SuSE and:</p>
<pre><code>cp menu.lst.SuSE menu.lst
</code></pre>
<p>on Ubuntu. </p>
http://stackoverflow.com/questions/1769774/confused-when-i-see-self-and-init/1769836#17698362Answer by rjmunro for Confused when I see 'self' and '__init__'rjmunro2009-11-20T11:17:22Z2009-11-20T11:17:22Z<p>self is by convention the instance of the object that you are calling a method of.</p>
<p>For example:</p>
<pre><code>class MyClass:
"""A simple example class"""
def __init__(self):
print "MyClass class created"
i = 12345
def f(self):
return self.i
# Create an object called a of type MyClass. This will print "MyClass class created"
a = MyClass()
# Run the method - should return 12345
print a.f()
# Make another instance of the class to illustrate they are separate.
b = MyClass()
# Set a.i to another value.
a.i = 1
# Note the result
print a.f()
print b.f()
</code></pre>
<p>By the way, you don't have to call it self, you can call it whatever you like. It will always be the first parameter.</p>
http://stackoverflow.com/questions/1769648/addition-with-null-values/1769700#17697009Answer by rjmunro for Addition with NULL valuesrjmunro2009-11-20T10:50:06Z2009-11-20T10:50:06Z<p>If you want to add a and b and either may be null, you could use coalesce, which returns the first non-null parameter you pass it:</p>
<pre><code>coalesce(a+b,a,b)
</code></pre>
<p>So in this case, if neither parameter is null, it will return the sum. If only b is null, it will skip a+b and return a. If a is null, it will skip a+b and a and return b, which will only be null if they are both null.</p>
http://stackoverflow.com/questions/1769662/ask-the-user-or-try-not-to-bother-him/1769690#17696901Answer by rjmunro for Ask the user or try not to bother him?rjmunro2009-11-20T10:47:55Z2009-11-20T10:47:55Z<p>Without a lot more detail it is hard to say. It depends on the sort of users you will be getting and how skillful they are.</p>
<p>You might be able to do some sort of compromise, where it is simple by default, but has an advanced button for advanced users.</p>
http://stackoverflow.com/questions/1767541/name-hypocorism-list/1767566#17675663Answer by rjmunro for Name Hypocorism Listrjmunro2009-11-20T00:22:10Z2009-11-20T00:45:38Z<p>There is a perl module that can do it here:
<a href="http://search.cpan.org/~brianl/Lingua-EN-Nickname-1.15/Nickname.pm" rel="nofollow">http://search.cpan.org/~brianl/Lingua-EN-Nickname-1.15/Nickname.pm</a></p>
<p>It seems to base it's results on a simple textfile which can be downloaded here:
<a href="http://cpansearch.perl.org/src/BRIANL/Lingua-EN-Nickname-1.15/nicknames.txt" rel="nofollow">http://cpansearch.perl.org/src/BRIANL/Lingua-EN-Nickname-1.15/nicknames.txt</a></p>
http://stackoverflow.com/questions/1766102/sql-column-count-doesnt-match-row-count/1766119#17661192Answer by rjmunro for SQL: Column count doesn't match row countrjmunro2009-11-19T19:58:14Z2009-11-19T19:58:14Z<p>You don't say which SQL engine you are using, but my hunch is that you are using too many brackets, so it is grouping the 3 columns in to an array and wanting to post them into one column.</p>
<p>Try:</p>
<pre><code>INSERT INTO term_node( nid, vid, tid )
VALUES (
SELECT ctb.nid, ctb.vid, 35
FROM content_type_bout AS ctb
WHERE field_school_value_c = 'Lafayette'
)
</code></pre>
<p>Or even Just:</p>
<pre><code>INSERT INTO term_node( nid, vid, tid )
SELECT ctb.nid, ctb.vid, 35
FROM content_type_bout AS ctb
WHERE field_school_value_c = 'Lafayette'
</code></pre>
http://stackoverflow.com/questions/1755830/remove-all-characters-after/1755842#17558424Answer by rjmunro for Remove all characters after "-"rjmunro2009-11-18T13:08:54Z2009-11-18T13:08:54Z<p>Try:</p>
<pre><code>$itemList[] = preg_replace('/-(.*)$/i', "", $temp['item']);
</code></pre>
<p>The $ symbol matches the end of the input, so forces the .* to grab to the end.</p>
<p>Adding a ? after the * makes it un-greedy, meaning it will grab the minimum possible, not the maximum possible, so in this case it is exactly what you don't want.</p>
http://stackoverflow.com/questions/1755800/why-am-i-getting-a-redirect-loop/1755813#17558131Answer by rjmunro for Why am I getting a redirect loop?rjmunro2009-11-18T13:02:15Z2009-11-18T13:02:15Z<p>Redirect directs anything that <em>starts</em> with the pattern given.</p>
<p>Use:</p>
<pre><code>RedirectMatch 301 ^/$ http://example.com/stuff
</code></pre>
<p>This takes a regular expression, so you can make it more specific.</p>
http://stackoverflow.com/questions/1741900/how-can-i-run-a-curl-command-for-each-line-of-output-from-my-perl-script/1741929#17419294Answer by rjmunro for How can I run a curl command for each line of output from my Perl script?rjmunro2009-11-16T12:35:19Z2009-11-16T12:35:19Z<p>xargs doesn't use $1 like that. $1 is blank, and xargs just puts the numbers at the end of the command line.</p>
<p>You probably want to use a bash for loop like:</p>
<pre><code>for i in `./jsonValueExtracter.pl -s exampleId < input.json`
do
curl http://brsitv01:8080/exampleId/$i > example$i.json
done
</code></pre>
<p>Which can be written on one line with semi-colons:</p>
<pre><code>for i in `./jsonValueExtracter.pl -s exampleId < input.json`; do curl http://brsitv01:8080/exampleId/$i > example$i.json; done
</code></pre>
<p>Note that you don't need cat:</p>
<pre><code>cat [file] | script.foo
</code></pre>
<p>Is equivalent to:</p>
<pre><code>script.foo < [file]
</code></pre>
http://stackoverflow.com/questions/1739455/how-to-evade-silverlight-cross-domain-security-law/1739471#17394713Answer by rjmunro for How to evade Silverlight cross-domain security law?rjmunro2009-11-16T00:30:25Z2009-11-16T00:54:51Z<p>Use some sort of proxy on a server you control - i.e. a service that your end user connects to and that itself connects to the network.</p>
<p>Any other answer will be almost by definition exploiting a vulnerability that will be patched in future versions of Silverlight.</p>
http://stackoverflow.com/questions/1739199/theming-for-with-javascript/1739235#17392350Answer by rjmunro for Theming for/with javascript?rjmunro2009-11-15T23:16:04Z2009-11-15T23:16:04Z<p>You could theme it entirely with CSS.</p>
http://stackoverflow.com/questions/1736005/o-o-with-double-dots-in-mysql-record/1736051#17360511Answer by rjmunro for Ö (O with double dots) in Mysql record?rjmunro2009-11-15T00:02:52Z2009-11-15T00:02:52Z<p>You could use:</p>
<pre><code>SELECT * FROM table WHERE field LIKE 'f_retag';
</code></pre>
<p>('_' is the single character wildcard for LIKE statements)</p>
<p>If you are using a terminal, make sure the terminal is using UTF-8. Try:</p>
<pre><code> echo $LANG
</code></pre>
<p>Also try forcing the character set when starting the mysql command:</p>
<pre><code> mysql --default-character-set=utf-8
</code></pre>
<p>Otherwise, please give more details about what language and environment you are using to access the DB.</p>
http://stackoverflow.com/questions/1732709/unzipping-part-of-a-gz-file-using-python/1732737#17327370Answer by rjmunro for Unzipping part of a .gz file using pythonrjmunro2009-11-14T00:22:20Z2009-11-14T00:22:20Z<p>I can't see any possible reason why you would want to decompress the first 2000 compressed bytes. Depending on the data, this may uncompress to any number of output bytes.</p>
<p>Surely you want to uncompress the file, and stop when you have uncompressed as much of the file as you need, something like:</p>
<pre><code>f = gzip.GzipFile(fileobj=open('postcode-code.tar.gz', 'rb'))
data = f.read(4000)
print data
</code></pre>
<p>AFAIK, this won't cause the whole file to be read. It will only read as much as is necessary to get the first 4000 bytes.</p>
http://stackoverflow.com/questions/353309/regex-to-get-text-within-tags/1732670#17326700Answer by rjmunro for RegEx to get text within tagsrjmunro2009-11-14T00:03:11Z2009-11-14T00:03:11Z<p>Using Regex to parse XML is usually a really bad idea. See <a href="http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454">this answer</a>.</p>
http://stackoverflow.com/questions/1732185/dos-database-help-needed-to-recognize-what-is-it/1732222#17322222Answer by rjmunro for DOS Database - help needed to recognize what is itrjmunro2009-11-13T22:10:07Z2009-11-13T22:10:07Z<p>Almost every version of Unix including linux and Mac OS has a command called "file" that recognizes a huge range of file types by their content. Try copying one of the data files to a Mac OS or Linux computer and running</p>
<pre><code>file [filename]
</code></pre>
<p>from the command line.</p>
http://stackoverflow.com/questions/1728366/open-street-map-marker-manager/1728455#17284551Answer by rjmunro for Open Street Map Marker Managerrjmunro2009-11-13T10:41:11Z2009-11-13T11:11:35Z<p>OpenStreetMap is only the map data. To view the map, the most common thing (and the thing shown on the OpenStreetMap home page) is the Javascript library <a href="http://openlayers.org/" rel="nofollow">Openlayers</a>. This gives capabilities similar to the Google Javascript APIs - you can add markers, load KML overlays etc.</p>
<p>Please be a bit more specific about what you are trying to do.</p>
http://stackoverflow.com/questions/1612444/flash-library-for-openstreetmap/1728478#17284781Answer by rjmunro for Flash library for OpenStreetMaprjmunro2009-11-13T10:46:24Z2009-11-13T10:46:24Z<p>See <a href="http://www.geowiki.com/?page%5Fid=7" rel="nofollow">Halcyon</a>. It is an OSM rendering engine written in flash. It downloads and renders vector data, not pre-rendered tiles.</p>
http://stackoverflow.com/questions/1722880/updating-on-screen-count-as-javascript-code-runs/1722924#17229240Answer by rjmunro for Updating on screen count as javascript code runs.rjmunro2009-11-12T15:15:27Z2009-11-12T15:20:52Z<p>The easiest way is probably to add a setTimeout around your recursive call to check so that the browser can be allowed to work for the intervening time. Below I've set the timeout to 100ms which means that it will update 10 times per second.</p>
<pre><code>function randomNumberMatcher(){
$(document).ready(function(){
var number1 = Math.floor(1000000*Math.random());
var number2 = Math.floor(1000000*Math.random());
var count = 0;
$("#box").append("Number to match:[" + number1 + "]<br /><span id='count'></span>");
function newNumber(){
number2 = Math.floor(1000000*Math.random())
count ++;
$("#count").html("Number of tries:[" + count + "]<br /><br />");
$("#box").append(number2 + "<br />");
window.setTimeout(check,100);
}
function check(){
if(number2 != number1){
newNumber();
}
}
check();
});
};
</code></pre>
http://stackoverflow.com/questions/1721432/developing-client-in-xul/1722666#17226660Answer by rjmunro for Developing Client in XULrjmunro2009-11-12T14:44:17Z2009-11-12T14:44:17Z<p>Mozilla provide XULrunner to run XUL applications with code written in Javascript, but there are also other implimentations like <a href="http://luxor-xul.sourceforge.net/" rel="nofollow">luxor</a>, where you write code in Java and it builds the interface in SWT.</p>
<p>XUL is a language for describing UIs. Swing is an API. There are programs that take XUL and generate Swing code.</p>
<p>You can replace your Java client that uses swing with a client written in Javascript or possibly another language that uses XUL, but you don't neccesarily gain anything by doing so.</p>
http://stackoverflow.com/questions/1721511/does-anybody-know-a-cms-with-api-functionality/1721546#17215461Answer by rjmunro for Does anybody know a CMS with API functionality?rjmunro2009-11-12T11:22:05Z2009-11-12T11:28:39Z<p>At one level, you could use any standard web host and the API is called "FTP" (or WebDAV). :-)</p>
<p>As CMSes work through the web, you can usually construct POST requests emulating their built in edit forms very easily. Also, most CMSes store their data in an SQL database, and it is often very easy to add content to the database yourself, making it appear on the site. I think that the other functions of the CMS are a far more important factor.</p>
<p>There is an emerging standard for CMS APIs, called <a href="http://en.wikipedia.org/wiki/Content%5FManagement%5FInteroperability%5FServices" rel="nofollow">CMIS</a>. I don't know if it is getting any traction.</p>
http://stackoverflow.com/questions/1721479/who-judges-and-keeps-the-quality-of-the-code-within-a-team-of-programmers/1721520#17215200Answer by rjmunro for Who judges and keeps the quality of the code within a team of programmers?rjmunro2009-11-12T11:17:00Z2009-11-12T11:17:00Z<p>You need to work out what your coding standards are and write them down. For example, spaces or tabs for indenting, CamelCase or underscore_separated variable names etc. You can then show this to new members of the team.</p>
<p>You can use various code tidying tools to make sure that code standards are adhered to, for example <a href="http://en.wikipedia.org/wiki/Lint%5F%28software%29" rel="nofollow">lint</a>. It can be a good idea for a new person to spend some time pairs programming with another developer so they can get a feel of the code.</p>
<p>But mainly, you need code review. All developers code should be reviewed by at least one other developer who is experienced with the style that your organisation uses.</p>
http://stackoverflow.com/questions/1721338/geocoding-using-google-earth/1721473#17214732Answer by rjmunro for Geocoding using Google Earthrjmunro2009-11-12T11:08:45Z2009-11-12T11:08:45Z<p>Why do you want to use Google Earth? It can't geocode if the computer is not online, and if it is online, you may as well use the web apis directly. There are <a href="http://www.google.com/search?q=vba+geocoding" rel="nofollow">lots of examples</a> of using VBA to access geocoding apis on the web, both with Google, and with other providers (Bing, Yahoo, etc.).</p>
<p>Note that if this is for a private application, rather than one that anyone can download, it may be against the Google terms of service, and you may need to use a different provider. See <a href="http://code.google.com/apis/maps/faq.html#tos%5Fnonweb" rel="nofollow">this question</a> in Google's FAQ.</p>
http://stackoverflow.com/questions/1714171/how-does-a-programmer-work-across-multiple-computers/1714254#17142546Answer by rjmunro for How does a programmer work across multiple computers?rjmunro2009-11-11T10:11:09Z2009-11-11T10:11:09Z<p>A lot of people are moving to distributed source control with programs like <a href="http://git-scm.com/" rel="nofollow">git</a> and <a href="http://mercurial.selenic.com/" rel="nofollow">mercurial</a>. These don't require a central server for the source control - all versions are stored on all computers, and you can merge in changes whenever you bring the computers together.</p>
http://stackoverflow.com/questions/1705008/simple-proof-that-guid-is-not-unique/1705027#170502732Answer by rjmunro for simple proof that GUID is not uniquerjmunro2009-11-10T01:02:12Z2009-11-10T15:49:45Z<p>This will run for a lot more than hours. Assuming it loops at 1Ghz (which it won't - it will be a lot slower than that), it will run for 10790283070806014188970 years. Which is about 83 billion times longer than the age of the universe.</p>
<p>Assuming <a href="http://en.wikipedia.org/wiki/Moores%5Flaw" rel="nofollow">Moores law</a> holds, it would be a lot quicker to not run this program, wait several hundred years and run it on a computer that is billions of times faster. In fact, any program that takes longer to run than it takes CPU speeds to double (about 18 months) will complete sooner if you wait until the CPU speeds have increased and buy a new cpu before running it (unless you write it so that it can be suspended and resumed on new hardware).</p>
http://stackoverflow.com/questions/1704878/svn-a-symlink-pointing-to-my-home-directory/1704916#17049160Answer by rjmunro for SVN a symlink pointing to my home directoryrjmunro2009-11-10T00:32:46Z2009-11-10T00:32:46Z<p>The best plan is probably to add the symlink to svn:ignore and write a script to make the link that you commit to svn.</p>
http://stackoverflow.com/questions/61320/svn-plugins-for-eclipse-subclipse-vs-subversive28SVN plugins for Eclipse - Subclipse vs. Subversiverjmunro2008-09-14T13:14:58Z2009-11-04T10:33:38Z
<p>SVN in Eclipse is spread into 2 camps. The SVN people have developed a plugin called <a href="http://subclipse.tigris.org/" rel="nofollow">Subclipse</a>. The Eclipse people have a plugin called <a href="http://www.eclipse.org/subversive/" rel="nofollow">Subversive</a>. Broadly speaking they both do the same things. What are the advantages and disadvantages of each?</p>
http://stackoverflow.com/questions/1668889/how-to-use-errordocument-to-redirect-to-a-php-file-in-the-same-folder/1669091#16690910Answer by rjmunro for How to use errordocument to redirect to a php file in the same folder?rjmunro2009-11-03T18:02:12Z2009-11-03T18:02:12Z<p>If you have only a small number of folders, you can probably use:</p>
<pre><code><Directory /path/a>
ErrorDocument 404 /a/program.php
</Directory>
<Directory /path/b>
ErrorDocument 404 /b/program.php
</Directory>
<Directory /path/c>
ErrorDocument 404 /c/program.php
</Directory>
</code></pre>
<p>If that is impractical, then you should only have one program.php in the root and have it respond differently depending on the contents of the REDIRECT_URL environment variable, which is $_SERVER['REDIRECT_URL'] in php.</p>
http://stackoverflow.com/questions/1659994/javascript-selecting-option-from-a-select-dropdown-using-a-href/1660111#16601110Answer by rjmunro for Javascript selecting option from a select dropdown, using a href.rjmunro2009-11-02T08:58:15Z2009-11-02T08:58:15Z<p>This works for me in Firefox & Safari:</p>
<pre><code><a href="#" onclick="document.getElementById('Zinc_plated_field').value = 'yes'">yes</a>
<a href="#" onclick="document.getElementById('Zinc_plated_field').value = 'no'">no</a>
</code></pre>
http://stackoverflow.com/questions/1658808/random-int64-and-float64-numbers/1658874#16588742Answer by rjmunro for Random int64 and float64 numbersrjmunro2009-11-02T00:12:37Z2009-11-02T00:12:37Z<p>For integers you could generate 2 32 bit random numbers and combine them:</p>
<pre><code>a + (b << 32)
</code></pre>
http://stackoverflow.com/questions/619862/customising-plone-3-sharing-tab0Customising Plone 3 sharing tabrjmunro2009-03-06T18:14:48Z2009-11-01T14:34:35Z
<p>Where do the titles "Can add", "Can edit", "Can view" and "Can review" come from in the plone 3 sharing tag?</p>
<p>What is the difference between "Can view" and "Can review"?</p>
http://stackoverflow.com/questions/1769648/addition-with-null-values/1770476#1770476Comment by rjmunro on Addition with NULL valuesrjmunro2009-11-20T17:19:23Z2009-11-20T17:19:23ZTrue, but it might be the best estimate that you have.http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashesComment by rjmunro on Code-Golf: What is the shortest program that compiles and crashes?rjmunro2009-11-20T13:33:00Z2009-11-20T13:33:00ZWhat do you mean by "crashes"? Does it have to cause an error, can it get stuct in an infinite loop? Or does it have to take the whole machine down?http://stackoverflow.com/questions/1766091/display-a-round-pourcent-indicator-with-css-onlyComment by rjmunro on Display a round pourcent indicator with CSS onlyrjmunro2009-11-19T20:02:26Z2009-11-19T20:02:26ZWhat exactly do you mean by a round progress indicator? Usually, progress is linear, then reaches the end, so that lends itself to a line.http://stackoverflow.com/questions/1741368/a-language-that-doesnt-use-c/1742207#1742207Comment by rjmunro on A language that doesn't use 'C' ?rjmunro2009-11-16T13:43:04Z2009-11-16T13:43:04ZAnother example is bootstrapping deliberately gone wrong. See: <a href="http://cm.bell-labs.com/who/ken/trust.html" rel="nofollow">cm.bell-labs.com/who/ken/trust.html</a>http://stackoverflow.com/questions/1739363/is-there-a-standard-way-to-allow-the-user-to-select-a-text-viewerComment by rjmunro on Is There A Standard Way To Allow The User To Select A Text Viewer?rjmunro2009-11-16T00:07:45Z2009-11-16T00:07:45ZFor part 2, it would be better to check whether a program can accept text files before you offer it as an option, rather than testing it after, if it's possible to check at all.http://stackoverflow.com/questions/1736005/o-o-with-double-dots-in-mysql-record/1736051#1736051Comment by rjmunro on Ö (O with double dots) in Mysql record?rjmunro2009-11-15T23:15:06Z2009-11-15T23:15:06ZThe SELECT ... LIKE was only for if the problem was on the command line. If that isn't helpful, expand the question and tell us a bit more about your setup, like what language, drivers, etc. you are using...http://stackoverflow.com/questions/1735952/for-udp-broadcast-gurus-problems-achieving-high-bandwidth-audio-udp-broadcast-oComment by rjmunro on For UDP broadcast gurus: Problems achieving high-bandwidth audio UDP broadcast over WiFi (802.11N and 802.11G)rjmunro2009-11-15T00:08:58Z2009-11-15T00:08:58ZSee also this question: <a href="http://stackoverflow.com/questions/1736042" rel="nofollow">stackoverflow.com/questions/1736042</a>http://stackoverflow.com/questions/1736042/bandwidth-limits-of-udp-broadcast-over-wifiComment by rjmunro on bandwidth limits of UDP broadcast over WiFirjmunro2009-11-15T00:07:32Z2009-11-15T00:07:32ZThis is the other question: <a href="http://stackoverflow.com/questions/1735952" rel="nofollow">stackoverflow.com/questions/1735952</a>http://stackoverflow.com/questions/1732709/unzipping-part-of-a-gz-file-using-python/1732737#1732737Comment by rjmunro on Unzipping part of a .gz file using pythonrjmunro2009-11-14T00:27:22Z2009-11-14T00:27:22ZWhy? What on earth is your application?http://stackoverflow.com/questions/1728383/whats-the-most-reliable-way-to-check-a-javascript-is-nullComment by rjmunro on What's the most reliable way to check a javascript is null?rjmunro2009-11-13T11:13:22Z2009-11-13T11:13:22ZWhat do you mean by "reliable"?http://stackoverflow.com/questions/1705008/simple-proof-that-guid-is-not-unique/1705027#1705027Comment by rjmunro on simple proof that GUID is not uniquerjmunro2009-11-12T10:59:39Z2009-11-12T10:59:39Z@Erik 83 billion processors means that you will be able to do it in about the amount of time the universe has existed so far. So even that's not nearly enough.http://stackoverflow.com/questions/1705008/simple-proof-that-guid-is-not-unique/1705027#1705027Comment by rjmunro on simple proof that GUID is not uniquerjmunro2009-11-10T01:10:36Z2009-11-10T01:10:36Z4 threads on a quad core processor would make it run in 20 billion times the age of the universe - so yeah, that would help a lot.http://stackoverflow.com/questions/1066282/fast-algorithm-to-generate-500-000-html-file/1068292#1068292Comment by rjmunro on Fast Algorithm to Generate 500,000 html file.rjmunro2009-11-04T00:27:12Z2009-11-04T00:27:12ZIf you have enough RAM, the system will cache the files in it, so using a ramdisk won't be any faster. It will just mean that if you have to reboot for some reason, you have to regenerate the data again, which might mean serious downtime.http://stackoverflow.com/questions/1667310/combined-area-of-overlapping-circles/1668099#1668099Comment by rjmunro on Combined area of overlapping circlesrjmunro2009-11-03T22:39:34Z2009-11-03T22:39:34ZThat's the kind of algorithm you use in interval arithmetic. <a href="http://en.wikipedia.org/wiki/Interval_arithmetic" rel="nofollow">en.wikipedia.org/wiki/Interval_arithmetic</a>http://stackoverflow.com/questions/1668889/how-to-use-errordocument-to-redirect-to-a-php-file-in-the-same-folder/1669133#1669133Comment by rjmunro on How to use errordocument to redirect to a php file in the same folder?rjmunro2009-11-03T18:16:59Z2009-11-03T18:16:59ZThe problem with this is that it will not return a 404 status code, so search engines and link checker tools etc. will not know that they have reached a page that shouldn't exist.