User cletus - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T10:27:05Zhttp://stackoverflow.com/feeds/user/18393http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1920321/point-on-a-line-closest-to-all-other-points/1920467#19204672Answer by cletus for Point on a line closest to all other Pointscletus2009-12-17T09:28:53Z2009-12-17T09:28:53Z<p>A line is a set of points being either:</p>
<pre><code>{(x,y) : y = a} (ie a single straight up line); or
{(x,y) : y = ax + b}
</code></pre>
<p>For a single point (x<sub>1</sub>,y<sub>1</sub>) the distance between it and an arbitrary point (x<sub>c</sub>,y<sub>c</sub>) is given by:</p>
<p>distance = sqrt( (x<sub>1</sub>-x<sub>c</sub>)<sup>2</sup> + (y<sub>1</sub>-y<sub>c</sub>)<sup>2</sup> )</p>
<p>so find the distance between an arbitrary point and the point on our line (x,f(x)):</p>
<p>g(x) = sqrt( (x<sub>1</sub>-x)<sup>2</sup> + (y<sub>1</sub>-(ax+b))<sup>2</sup> )</p>
<p>for a non-asymptotic line. To find the closest point solve:</p>
<p>g'(x) = (2c<sub>1</sub>x + c<sub>2</sub>) / sqrt(c<sub>2</sub>x<sup>2</sup> + c<sub>2</sub> + c<sub>3</sub>) = 0</p>
<p>or</p>
<p>x<sub>c</sub> = -c<sub>2</sub>/2c<sub>1</sub></p>
<p>where c<sub>1</sub>, c<sub>2</sub> and c<sub>3</sub> are constants substituted for various groups of constants to simplify things.</p>
<p>So the point (x<sub>c</sub>,ax<sub>c</sub>+b) will be closest to the point.</p>
<p>So in the general case where there are <em>n</em> points it's actually not much harder. The distance is:</p>
<p>g(x) = SUM[i=1:n] sqrt( (x<sub>i</sub>-x)<sup>2</sup> + (y<sub>i</sub>-(a<sub>i</sub>+b))<sup>2</sup> )</p>
<p>which is minimized in the same way except rather than being solved directly it'll probably be approximated, say by Newton's method.</p>
http://stackoverflow.com/questions/1920163/invoking-a-function-object-in-javascript/1920183#19201831Answer by cletus for Invoking a function Object in Javascriptcletus2009-12-17T08:12:05Z2009-12-17T08:12:05Z<p>Try:</p>
<pre><code>function answerToLifeUniverseAndEverything() {
return 42;
}
var myLife = answerToLifeUniverseAndEverything;
alert(myLife());
</code></pre>
<p>When you do:</p>
<pre><code>var myLife = answerToLifeUniverseAndEverything();
</code></pre>
<p>you're assigning the function <em>result</em> to <code>myLife</code> ie 42.</p>
http://stackoverflow.com/questions/1920059/maven-throws-java-lang-outofmemoryerror/1920071#19200715Answer by cletus for Maven throws "java.lang.OutOfMemoryError"cletus2009-12-17T07:32:52Z2009-12-17T07:32:52Z<p>Set the environment variable:</p>
<pre><code>MAVEN_OPTS="-Xmx512m"
</code></pre>
http://stackoverflow.com/questions/1919956/a-recursive-method-to-find-depth-of-a-anynot-necessarily-complete-binary-tree/1919959#19199594Answer by cletus for A recursive method to find depth of a any(not necessarily complete) Binary treecletus2009-12-17T07:05:37Z2009-12-17T07:23:32Z<p>That's O(n) time since you may traverse every node doing that. You can do a search on a binary search tree in O(log n) but you can't find the depth of a binary tree in anything less than O(n) unless you cache the depths as you build it or do something similar.</p>
<p>There are two special cases you may want to be aware of.</p>
<p>A <em>perfect binary tree</em> can have its depth determined in O(log n). This means every leaf is at the same level.</p>
<p><em>Complete</em> and <em>balanced binary tree</em> can have its depth <em>approximated</em> in O(log n) or in O(1) if the number of nodes is known. This will be approximate however (+/-1 usually).</p>
http://stackoverflow.com/questions/1919692/how-to-style-first-paragraph-p-of-the-content-differently-without-using-css-cla/1919812#19198122Answer by cletus for How to style first paragraph <p> of the content differently without using css class , ID or javascript, with IE6 compatibility ? cletus2009-12-17T06:15:33Z2009-12-17T06:54:45Z<p>There is <strong><em>no way</em></strong> of doing this <em>that works in IE6</em> without:</p>
<ul>
<li>using inline style on the first paragraph;</li>
<li>giving the first paragraph a class to use in a selector; or</li>
<li>using Javascript to achieve one of the above.</li>
</ul>
<p>IE7+ supports the <a href="http://www.quirksmode.org/css/firstchild.html" rel="nofollow"><code>:first-child</code></a> pseudo-element:</p>
<pre><code>p:first-child { color: red; }
</code></pre>
<p>The best solution is to give that paragraph a class that you can explicitly style if IE6 support is required. Alternatively style the element with Javascript. With jQuery it's simply:</p>
<pre><code>$(function() {
$("p:first").addClass("first");
});
</code></pre>
<p>with:</p>
<pre><code>p.first { color: red; }
</code></pre>
http://stackoverflow.com/questions/1919119/how-to-handle-all-url-from-1-page-using-php/1919133#19191333Answer by cletus for How to handle all URL from 1 page using PHP?cletus2009-12-17T02:31:47Z2009-12-17T02:31:47Z<p>Try:</p>
<pre><code>RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
</code></pre>
<p>That will redirect everything <em>that doesn't exist</em> to index.php.</p>
<p>This is called the <a href="http://en.wikipedia.org/wiki/Front%5FController%5Fpattern" rel="nofollow">Front Controller pattern</a>.</p>
http://stackoverflow.com/questions/1919010/does-porting-count-as-derivative-work/1919045#19190452Answer by cletus for Does porting count as derivative work?cletus2009-12-17T02:01:25Z2009-12-17T02:06:46Z<ol>
<li>You're modifying the code. That's fine as long as you don't <em>distribute</em> it but the exact nature of this depends on if you're using GPL v2 or v3 (I believe v3 uses the term <em>conveyance</em> and it has a broader meaning);</li>
<li>If you're going to distribute that commercial application not only do you have to release the source code for your changes but in all likelihood for your complete application as well (and this is regardless of whether you modified the GPLed code or not).</li>
</ol>
<p>"Ownership" doesn't mean a lot here. I can take a copy of the GPLed source code for, say, MySQL and release a database called FrogDB with modified or even unmodified MySQL source code. As long as I comply with the license there is <em>nothing</em> stopping me from doing this.</p>
<p>So you can create a version in another language and call it "RubyXYZ" instead of "XYZ" or give it a completely different name. Doesn't matter. Attribution and the GPL will still be required. Someone else could still do their own version of "yours" however.</p>
<p>Porting to another language is a significant work. You might be better off starting from scratch and not using the other library as a base <em>at all</em>. Then you can give it whatever license you want <em>as long as it isn't a derivative in any way</em>.</p>
http://stackoverflow.com/questions/1918801/proper-sequence-of-functions-when-coding-in-js/1918816#19188162Answer by cletus for proper sequence of functions when coding in jscletus2009-12-17T00:49:49Z2009-12-17T00:49:49Z<p>I recommend having one Javascript file for the whole site. That file should only contain functions:</p>
<pre><code>function a() { ... }
function b() { ... }
</code></pre>
<p>The reason is that with one file it gets cached once (if done right) and that's it. And then using inline JS on each page I put:</p>
<pre><code>$(function() {
a();
b();
});
</code></pre>
<p>I haven't really found a need to have multiple <code>ready()</code> calls.</p>
<p>The reason for this is efficiency. You don't want to be executing unnecessary Javascript and what's why the external JS file actually does nothing but include functions that you can call. Then each page only calls what it needs. Plus you can easily find it by just looking at one place (the page).</p>
http://stackoverflow.com/questions/1918610/need-help-converting-this-inline-javascript-to-a-jquery-function/1918621#19186211Answer by cletus for Need help converting this inline javascript to a jQuery functioncletus2009-12-16T23:51:21Z2009-12-17T00:02:55Z<p>Firstly, make your life easier and give the input a class:</p>
<pre><code><input type="text" class="search" name="search">
</code></pre>
<p>You can use an attribute selector:</p>
<pre><code>$(":text[name='search']")...
</code></pre>
<p>but this is <em>much</em> faster:</p>
<pre><code>$("input.search")...
</code></pre>
<p>and then use this:</p>
<pre><code>$(function() {
$("input.search").focus(function() {
if ($(this).val() == "Search by name") {
$(this).val("").css("color", "#000");
}
}).blur(function() {
if ($(this).val() == "") {
$(this).val("Search by name").css("color", "#AAA");
}
});
});
</code></pre>
http://stackoverflow.com/questions/1918535/how-do-i-match-a-parent-who-has-a-specific-child/1918566#19185660Answer by cletus for How do I match a parent who has a specific child?cletus2009-12-16T23:34:18Z2009-12-16T23:34:18Z<p>Firstly, these two elements aren't on the same page are they? If so it's invalid HTML as you can't (shouldn't) duplicate IDs.</p>
<p>You can't do this with straight CSS. My advice would be to restate the problem:</p>
<pre><code><div id="breadCrumb" class="nav userName">
<span>esac</span>
</div>
</code></pre>
<p>or</p>
<pre><code><div id="breadCrumb" class="nav navtrail">
<span>...</span>
</div>
</code></pre>
<p>then you can do things like:</p>
<pre><code>#breadCrumb.navTrail { display: none; }
</code></pre>
<p>or</p>
<pre><code>div.nav.navTrail { display: none; }
</code></pre>
<p>Applying multiple class selectors (previous example) isn't supported in IE6.</p>
http://stackoverflow.com/questions/525535/is-it-ever-ok-to-go-out-for-lunch-and-never-come-back-as-a-programmer6Is it ever OK to go out for lunch and never come back (as a programmer)?cletus2009-02-08T10:56:34Z2009-12-16T16:32:19Z
<p>Prompted by the responses to <a href="http://stackoverflow.com/questions/524530/how-important-is-the-environment-at-a-job/524553#524553">How important is the environment at a job?</a> I thought it worthwhile to pose this question:</p>
<p>Is it ever OK to just walk out the door and never come back? If so, under what circumstances? If not, why not?</p>
<p>I've never done that but I think in the first 2-3 days this isn't that unacceptable. There's no drama, no exit interviews, no meetings, no having someone supervise you while you clear out your desk, all that crap. Obviously send an email at least so they don't think you've been kidnapped.</p>
<p>Thoughts?</p>
http://stackoverflow.com/questions/1913759/generic-stored-procedures-in-oracle/1913781#19137810Answer by cletus for generic stored procedures in oraclecletus2009-12-16T10:37:48Z2009-12-16T10:37:48Z<p>Well you'll need the <a href="http://www.dbasupport.com/oracle/ora9i/execute%5Fimmediate.shtml" rel="nofollow"><code>EXECUTE IMMEDIATE</code></a> statement for sure.</p>
http://stackoverflow.com/questions/1912596/javascript-minifier-that-strips-out-unused-code/1912606#19126061Answer by cletus for JavaScript minifier that strips out unused codecletus2009-12-16T05:58:24Z2009-12-16T05:58:24Z<p>Probably not.</p>
<p>The problem is that there's no guaranteed way to figure out what's used and what isn't. Javascript can be used/referenced from HTML, the script(s) could be used with other unknown scripts that use otherwise unused code and eval() blocks may use things you don't realize.</p>
<p>Minify and gzip it and that's enough. If not, cull it by hand (although getting rid of code is a lot harder than adding it in the first place).</p>
http://stackoverflow.com/questions/1912477/what-do-i-need-to-know-before-accepting-a-contract-position-in-the-united-states/1912568#19125682Answer by cletus for What do I need to know before accepting a contract position in the United States?cletus2009-12-16T05:45:40Z2009-12-16T05:45:40Z<p>Unlike you have permanent residency of some kind (including citizenship obviously), you'll need a visa to work in the United States. A visa is tied to a particular job (although it is transferable in certain circumstances). So be very sure that the contract job you'll be doing is actually <em>legal</em>.</p>
<p>Secondly, a senior programmer in the US could reasonably be expected to earn $100k in salary. That salary will include sick leave (personal days), vacation time, retirement saving (pension/IRA/401k/etc), often the possibility of bonuses and health insurance of some kind.</p>
<p>The last is <em>really</em> important. <strong>Do not</strong> enter the United States without some kind of health insurance. I'm not kidding when I say you could slip on ice, break your arm badly and be up for $60,000 in medical bills. Traveler's insurance may cover you for a period but if you're working not traveling it may not (ie check).</p>
<p>All of this things are missing from a contract position so you need to factor them in. Without them a typical comparison is $100k in salary equates to about $100/hour contract rate. So if you're getting $50/hour ask yourself this: would you be doing this job for $50k? If not, you probably shouldn't take it.</p>
<p>You will be up for federal taxes, payroll tax (social security; employer and employee contributions), probably state taxes (some states don't have these eg Florida iirc) and possibly local taxes. Cost of living can vary wildly to the point where $30k per year in Iowa will give you a higher standard of living than $80k in a New York City.</p>
<p>Taxes are quite high in the US topping out at about 35-40% marginal rate plus 12.5% (?) payroll tax plus an "employer contribution" of another 12.5% (which you may or may not have to bear as a contractor). "Employer contribution" in this case is just a euphemism for "hidden tax" as it's money you could otherwise be getting but isn't directly visible.</p>
http://stackoverflow.com/questions/1912148/is-it-possible-to-integrate-jquery-into-the-browser-just-as-javascript/1912154#19121549Answer by cletus for Is it possible to integrate JQuery into the browser Just as javascript?cletus2009-12-16T03:52:59Z2009-12-16T05:36:23Z<p>jQuery is a 19K download (minified and <em>gzipped</em>), which is a few seconds even on dialup. I wouldn't worry about it.</p>
<p>The only thing you should do is correctly <em>version</em> it so you only download it when it changes. You can do that by simply getting it from the <a href="http://code.google.com/apis/ajaxlibs/" rel="nofollow">Google AJAX Libraries API
</a>.</p>
<pre><code><script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
</code></pre>
<p>What you should be aware of is the best practice for static content that is delivered from your site should:</p>
<ol>
<li>Have a far-futures Expires HTTP header to force the client to cache it;</li>
<li>Version it somehow so when you change the version number the client will re-download it; and</li>
<li>Gzip everything.</li>
</ol>
<p>The jQuery from Google is already versioned with the jQuery version number. With your own content it's common to, say, use the last modified time of the file as part of the URL, eg:</p>
<pre><code><img src="/images/logo.gif?1233748877">
</code></pre>
http://stackoverflow.com/questions/327035/how-to-implement-background-asynchronous-write-behind-caching-in-php1How to implement background/asynchronous write-behind caching in PHP?cletus2008-11-29T01:59:53Z2009-12-16T05:00:02Z
<p>I have a particular PHP page that, for various reasons, needs to save ~200 fields to a database. These are 200 separate insert and/or update statements. Now the obvious thing to do is reduce this number but, like I said, for reasons I won't bother going into I can't do this.</p>
<p>I wasn't expecting this problem. Selects seem reasonably performant in MySQL but inserts/updates aren't (it takes about 15-20 seconds to do this update, which is naturally unacceptable). I've written Java/Oracle systems that can happily do thousands of inserts/updates in the same time (in both cases running local databases; MySQL 5 vs OracleXE).</p>
<p>Now in something like Java or .Net I could quite easily do one of the following:</p>
<ol>
<li>Write the data to an in-memory
write-behind cache (ie it would
know how to persist to the database
and could do so asynchronously);</li>
<li>Write the data to an in-memory cache
and use the PaaS (Persistence as a
Service) model ie a listener to the
cache would persist the fields; or</li>
<li>Simply start a background process
that could persist the data.</li>
</ol>
<p>The minimal solution is to have a cache that I can simply update, which will separately go and upate the database in its own time (ie it'll return immediately after update the in-memory cache). This can either be a global cache or a session cache (although a global shared cache does appeal in other ways).</p>
<p>Any other solutions to this kind of problem?</p>
http://stackoverflow.com/questions/1911399/group-select-boxes-into-array-for-post/1911407#19114070Answer by cletus for Group select boxes into array for post?cletus2009-12-16T00:11:06Z2009-12-16T01:48:08Z<p>While you probably can do it I wouldn't recommend it. Just because it isn't that clear from someone else reading the code.</p>
<p>A better approach is simply to combine them serverside. Assuming:</p>
<pre><code><select id="select-1" name="data_1[]"/>
...
<select id="select-2" name="data_2[]"/>
...
</code></pre>
<p>On the PHP side:</p>
<pre><code>$data1 = $_POST['data_1'];
$data2 = $_POST['data_2'];
$combined = array_merge($data1, $data2);
</code></pre>
http://stackoverflow.com/questions/1911326/php-ajax-jquery-equivalent-for-my-code/1911348#19113483Answer by cletus for PHP/ Ajax/ jQuery - Equivalent for my codecletus2009-12-15T23:56:54Z2009-12-16T00:20:56Z<p>You've tagged this question as jquery so you can use <a href="http://docs.jquery.com/Ajax/jQuery.ajax#options" rel="nofollow"><code>$.ajax()</code></a>:</p>
<pre><code>function auctionBid(auction_id) {
$.ajax({
url: "/cms/ajax/auctionBid.php",
type: "GET",
data: {
auction_id: auction_id
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
// act appropriately
},
success: function(data, textStatus) {
// do whatever
}
});
}
</code></pre>
<p>If you didn't need an error handler you could use the simpler form of <a href="http://docs.jquery.com/Ajax/jQuery.get#urldatacallbacktype" rel="nofollow"><code>$.get()</code></a> instead:</p>
<pre><code>function auctionBid(auction_id) {
var url = "/cms/ajax/auctionBid.php";
$.get(url, { auction_id: auction_id }, function(data, textStatus) {
// do whatever
});
}
</code></pre>
<p>I actually prefer not to use error handlers. It's a little uglier than it needs to be. Use that for actual errors. Things like "not logged in" could be handled by the success handler. Just pass back a JSON object that contains the required information to tell the user what happened.</p>
<p>For this you could use the <a href="http://docs.jquery.com/Ajax/jQuery.getJSON" rel="nofollow"><code>$.getJSON()</code></a> shorthand version.</p>
<pre><code>function auctionBid(auction_id) {
var url = "/cms/ajax/auctionBid.php";
$.getJSON(url, { auction_id: auction_id }, function(data) {
if (data.notLoggedIn) {
alert("Not logged in");
}
...
});
}
</code></pre>
<p>To return some information as JSON from PHP use <a href="http://php.net/manual/en/function.json-encode.php" rel="nofollow"><code>json_encode()</code></a> and set the MIME type appropriately:</p>
<pre><code><?php
session_start();
header('Content-Type: application/json');
echo json_encode(array(
'highBid' => get_new_high_bid(),
'loggedIn' => $_SESSION['loggedIn'],
));
exit;
?>
</code></pre>
<p>I'm making assumptions about your login system so the above is a gross simplification.</p>
<p>Return that to a <code>$.getJSON()</code> callback and you should be able to do:</p>
<pre><code>alert(data.highBid);
alert(data.loggedIn);
</code></pre>
http://stackoverflow.com/questions/1911290/make-div-text-disappear-after-5-seconds-using-jquery/1911308#19113086Answer by cletus for make div text disappear after 5 seconds using jquery ?cletus2009-12-15T23:48:20Z2009-12-16T00:09:07Z<p>You can use <a href="http://docs.jquery.com/Manipulation/empty" rel="nofollow"><code>empty()</code></a> to remove a <code><div></code> contents:</p>
<pre><code>setTimeout(fade_out, 5000);
function fade_out() {
$("#mydiv").fadeOut().empty();
}
</code></pre>
<p>assuming:</p>
<pre><code><div id="mydiv">
...
</div>
</code></pre>
<p>You can do this with an anonymous function if you prefer:</p>
<pre><code>setTimeout(function() {
$("#mydiv").fadeOut().empty();
}, 5000);
</code></pre>
<p>or even:</p>
<pre><code>var fade_out = function() {
$("#mydiv").fadeOut().empty();
}
setTimeout(fade_out, 5000);
</code></pre>
<p>The latter is sometimes preferred because it pollutes the global namespace less.</p>
http://stackoverflow.com/questions/1908387/java-date-cut-off-time-information/1908419#19084193Answer by cletus for Java Date cut off time informationcletus2009-12-15T15:58:57Z2009-12-15T16:35:10Z<p>The <em>recommended</em> way to do date/time manipulation is to use a <a href="http://java.sun.com/javase/6/docs/api/java/util/Calendar.html" rel="nofollow"><code>Calendar</code></a> object:</p>
<pre><code>Calendar cal = Calendar.getInstance(); // locale-specific
cal.setTime(dateObject);
cal.set(Calendar.HOUR_OF_DAY, 0);
cal.set(Calendar.MINUTE, 0);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 0);
long time = cal.getTimeInMillis();
</code></pre>
http://stackoverflow.com/questions/1908234/when-to-use-span-instead-p/1908239#190823917Answer by cletus for When to use <span> instead <p>?cletus2009-12-15T15:35:45Z2009-12-15T15:35:45Z<p>Semantically, you use <code><p></code> tags to indicate paragraphs. <code><span></code> is used to apply CSS style and/or class(es) to an arbitrary section of text and inline elements.</p>
http://stackoverflow.com/questions/1907409/storing-large-prime-numbers-in-a-database/1907451#19074513Answer by cletus for Storing large prime numbers in a database cletus2009-12-15T13:26:10Z2009-12-15T13:26:10Z<p>Databases (depending on which) can routinely store numbers up to 38-39 digits accurately. That gets you reasonably far.</p>
<p>Beyond that you won't be doing arithmetic operations on them (accurately) in databases (barring arbitrary-precision modules that may exist for your particular database). But numbers can be stored as text up to several thousand digits. Beyond that you can use CLOB type fields to store millions of digits.</p>
<p>Also, it's worth nothing that if you're storing sequences of prime numbers and your interest is in space-compression of that sequence you could start by storing the difference between one number and the next rather than the whole number.</p>
http://stackoverflow.com/questions/1907325/why-do-i-need-to-use-foreign-key-if-i-can-use-where/1907337#190733711Answer by cletus for Why do I need to use foreign key if I can use WHERE ?cletus2009-12-15T13:09:05Z2009-12-15T13:09:05Z<p>It's not strictly needed for the query, it's true. It exists for several reasons:</p>
<ol>
<li>As a constraint on the table to stop you inserting something that doesn't point to anything;</li>
<li>As a clue for the optimizer; and</li>
<li>For historical reasons where is was more needed.</li>
</ol>
<p>(1) is probably the important one of the three. This is called <a href="http://en.wikipedia.org/wiki/Referential%5Fintegrity" rel="nofollow">referential integrity</a>. It means that if there is a value in a foreign key there will be a corresponding record with that value as a primary key in the parent table.</p>
<p>That being said, not all databases support referential integrity (eg MySQL/MyISAM tables) and those that do don't necessarily enforce it (for performance reasons).</p>
http://stackoverflow.com/questions/1907237/working-for-one-of-those-firms-that-contracts-developers-out/1907249#19072492Answer by cletus for Working for one of those firms that contracts developers out?cletus2009-12-15T12:52:49Z2009-12-15T12:52:49Z<p>I call this "bodyshopping". Personally I've always shied away from it as it seems to combine the worst of both worlds: the lower pay of salaried work with the constant change of contracting.</p>
<p>Your mileage may vary.</p>
http://stackoverflow.com/questions/1906619/mixing-two-arrays/1906658#19066581Answer by cletus for Mixing two arrayscletus2009-12-15T10:57:10Z2009-12-15T10:57:10Z<pre><code>$x = array( 0=>10, 1=>20, 2=>30 );
$y = array( 0=>15, 1=>25, 2=>35 );
$xy = array();
for ($i=0; $i<count(x); $i++) {
$xy[] += $x[i];
$xy[] += $y[i];
}
</code></pre>
http://stackoverflow.com/questions/1906318/algorithm-choices-understanding-which-and-why/1906327#19063271Answer by cletus for Algorithm choices - understanding which and whycletus2009-12-15T09:57:24Z2009-12-15T10:07:20Z<p>No because quicksort is demonstrably better than a bubble sort in all but a very few set of circumstances involving extremely small datasets.</p>
<p>Quicksort is an O(n log n) algorithm. Bubble sort is an O(n<sup>2</sup>) algorithm.</p>
<p>Pick one of the other O(n log n) sorts like an merge sort or heap sort.</p>
<p>Or compare bubble sort to a selection sort or insertion sort, both O(n<sup>2</sup>).</p>
http://stackoverflow.com/questions/1906344/should-you-only-mock-types-you-own/1906371#19063710Answer by cletus for Should you only mock types you own?cletus2009-12-15T10:05:10Z2009-12-15T10:05:10Z<p>I was going to say "no" but having had a quick look at the blog post I can see what he is on about.</p>
<p>He talks specifically about mocking EntityManagers in Hibernate. I am against this. EntityManagers should be hidden inside DAOs (or similar) and the DAOs are what should be mocked. Testing one line calls to EntityManager is a complete waste of your time and will break as soon as anything changes.</p>
<p>But if you do have third party code that you want to test how you interact with it, by all means.</p>
http://stackoverflow.com/questions/1906066/jquery-prepend-fadein/1906082#19060824Answer by cletus for jquery prepend + fadeIncletus2009-12-15T08:55:12Z2009-12-15T08:55:12Z<p>Assuming <code>response</code> is HTML then try this:</p>
<pre><code>$(response).hide().prependTo("#be-images ul").fadeIn("slow");
</code></pre>
<p>When you do it this way:</p>
<pre><code>$('#be-images ul').prepend(response).fadeIn('slow');
</code></pre>
<p>the thing you're actually fading in is the result of the initial selector (the list at the front), which is already visible.</p>
http://stackoverflow.com/questions/1905515/why-does-mysql-inner-join-query-take-so-much-time/1905519#19055192Answer by cletus for why does mysql inner join query take so much timecletus2009-12-15T06:20:48Z2009-12-15T08:18:43Z<p>My guess is that one or both of <code>TableA.SIM1</code> and <code>TableB.SIM2</code> aren't indexed. Either that or they're different data types (eg <code>VARCHAR</code> and <code>NUMERIC</code>). Try:</p>
<pre><code>CREATE INDEX index_name1 ON TableA (SIM1);
CREATE INDEX index_name2 ON TableB (SIM2);
</code></pre>
<p>Without indexes that query will be really slow. One table will be accessed record by record, which is fine since you're outputting the whole table. To find the corresponding record in the other table it needs to look up based on the <code>SIM1 = SIM2</code> relationship.</p>
<p>To find records in the other table without an index it has to look through every record. This is a linear or O(n) lookup. Put half a million records in each table and that's an awful lot of comparisons required to find all the matches (billions in facts).</p>
<p>With the indexes the record matching is near-instant.</p>
<p>Think of it this way: indexing the columns is like putting a telephone book in alphabetical order. That makes it easy to find surnames. If the telephone book wasn't sorted at all how long would it take you to find someone's phone number?</p>
<p>Now multiply that by half a million.</p>
http://stackoverflow.com/questions/1905870/lock-a-button-while-an-ajax-call/1905879#19058791Answer by cletus for Lock a button while an AJAX call.cletus2009-12-15T08:06:52Z2009-12-15T08:06:52Z<p>Assuming:</p>
<pre><code><input type="submit" id="submit" value="Submit">
</code></pre>
<p>then</p>
<pre><code>var submit = document.getElementById('submit');
submit.disabled = true;
</code></pre>
http://stackoverflow.com/questions/1919692/how-to-style-first-paragraph-p-of-the-content-differently-without-using-css-cla/1919812#1919812Comment by cletus on How to style first paragraph <p> of the content differently without using css class , ID or javascript, with IE6 compatibility ? cletus2009-12-17T06:52:40Z2009-12-17T06:52:40ZOh... it didn't actually mention that on the page. Usually it does. Will change to reflect.http://stackoverflow.com/questions/1919138/ethical-question-won-a-netbook-at-work-related-it-lunchComment by cletus on Ethical question: Won a netbook at work related IT lunch...cletus2009-12-17T02:36:50Z2009-12-17T02:36:50ZYour HR department will have a policy in all likelihood that covers gifts, etc.http://stackoverflow.com/questions/1918936/vertically-center-navigation-ul-li/1918957#1918957Comment by cletus on Vertically Center Navigation UL LIcletus2009-12-17T01:49:28Z2009-12-17T01:49:28ZTechnically floats inside an inline element isn't valid. Why not just make the LI elements inline too?http://stackoverflow.com/questions/1918610/need-help-converting-this-inline-javascript-to-a-jquery-function/1918621#1918621Comment by cletus on Need help converting this inline javascript to a jQuery functioncletus2009-12-17T00:03:11Z2009-12-17T00:03:11Z@Breton: you're right. Fixed, thanks.http://stackoverflow.com/questions/1879614/django-buggy-template-tag-nonetype-object-has-no-attribute-source/1879689#1879689Comment by cletus on Django buggy template tag - 'NoneType' object has no attribute 'source'cletus2009-12-16T10:58:07Z2009-12-16T10:58:07ZWith respect to the Oracle generic stored proc question... there is absolutely <i>nothing</i> wrong with questions that can be googled. Google can give conflicting, incomplete, out-of-date, wrong or bad information. Jeff/Joel have repeatedly stated that "googleable" questions are fine so keep any comments on laziness to yourself. They're uncalled for.http://stackoverflow.com/questions/1913759/generic-stored-procedures-in-oracle/1913780#1913780Comment by cletus on generic stored procedures in oraclecletus2009-12-16T10:43:04Z2009-12-16T10:43:04ZMy downvote is for rudeness (lmgtfy = rudeness)http://stackoverflow.com/questions/1912520/why-bother-to-write-an-iterator-like-this/1912530#1912530Comment by cletus on Why bother to write an iterator like this?cletus2009-12-16T05:38:19Z2009-12-16T05:38:19ZWell... I'm not sure the OP was "complaining" as such.http://stackoverflow.com/questions/1912119/what-is-better-yui-or-jqueryComment by cletus on What is better...YUI or jQuery?cletus2009-12-16T03:48:38Z2009-12-16T03:48:38ZWhich is better... a horse or a boat?http://stackoverflow.com/questions/1911326/php-ajax-jquery-equivalent-for-my-codeComment by cletus on PHP/ Ajax/ jQuery - Equivalent for my codecletus2009-12-16T00:49:00Z2009-12-16T00:49:00ZBy the way, if an answer sufficiently answers your question, please accept it (tick on the left under the number).http://stackoverflow.com/questions/1911326/php-ajax-jquery-equivalent-for-my-code/1911348#1911348Comment by cletus on PHP/ Ajax/ jQuery - Equivalent for my codecletus2009-12-16T00:28:51Z2009-12-16T00:28:51ZI tend to use either HTML (to insert a fragment directly into the document) or JSON to pass information. You can use XML and I think plain text too. Using JSON for 1-2 bits of data is fine.http://stackoverflow.com/questions/1908387/java-date-cut-off-time-information/1908438#1908438Comment by cletus on Java Date cut off time informationcletus2009-12-15T16:37:28Z2009-12-15T16:37:28Z+1 just for fixing minor errors in my answer. :)http://stackoverflow.com/questions/1907409/storing-large-prime-numbers-in-a-database/1907451#1907451Comment by cletus on Storing large prime numbers in a database cletus2009-12-15T13:55:29Z2009-12-15T13:55:29ZWell... it probably won't save <i>that</i> much space, particularly on large numbers as primes tend to get pretty spaced out. It'd be interesting to see how it does do though. Finding ranges quickly probably wouldn't be possible for the same reason you couldn't do arithmetic operations: the database just ins't capable of dealing with numbers that large.http://stackoverflow.com/questions/1906066/jquery-prepend-fadein/1907481#1907481Comment by cletus on jquery prepend + fadeIncletus2009-12-15T13:53:34Z2009-12-15T13:53:34Z+1 interesting. I've never seen it done that way.http://stackoverflow.com/questions/1906318/algorithm-choices-understanding-which-and-why/1906327#1906327Comment by cletus on Algorithm choices - understanding which and whycletus2009-12-15T12:40:21Z2009-12-15T12:40:21Z@Steve: thanks for the feedback, I appreciate that. As for worst/expected case, sure they're both O(n^2) but the combinatorially speaking the worst case is <i>highly</i> unlikely with even small data sets. Put it this way: if you have 100 elements you have 100! combinations. How many of those will result in O(n^2) for quicksort?http://stackoverflow.com/questions/1906691/how-to-prevent-a-file-from-being-tampered-withComment by cletus on How to prevent a file from being tampered withcletus2009-12-15T11:10:50Z2009-12-15T11:10:50ZNo offense but this is a pointless waste of time. Preventing someone from stealing or modifying your program is a social not a technical problem. Fundamentally you cannot protect something where it and the means of protecting it are both on a machine you don't control. Billions have been wasted on DVD/Blu-ray anti-piracy measures trying to defy that simple truth (and failing).