User Marcus Downing - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T21:47:15Zhttp://stackoverflow.com/feeds/user/1000http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/52213/browser-refresh-behaviour2Browser refresh behaviourMarcus Downing2008-09-09T15:45:19Z2009-11-28T16:44:28Z
<p>When a user hits Refresh on their browser, it reloads the page but keeps the contents of form fields. While I can see this being a useful default, it can be annoying on some dynamic pages, leading to a broken user experience.</p>
<p>Is there a way, in HTTP headers or equivalents, to change this behaviour?</p>
http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered3Apache/Tomcat error - wrong pages being deliveredMarcus Downing2008-10-29T12:03:33Z2009-11-16T17:49:16Z
<p>This error has been driving me nuts. We have a server running Apache and Tomcat, serving multiple different sites. Normally the server runs fine, but sometimes an error happens where people are served the wrong page - <strong>the page that <em>somebody else</em> requested!</strong></p>
<p>Clues:</p>
<ul>
<li>The pages being delivered are those that another user requested recently, and are otherwise delivered correctly. It's been known for two simultaneous requests to be swapped. As far as I can tell, none of the pages being incorrectly delivered are older than a few minutes.</li>
<li>It only affects the files that are being served by Tomcat. Static files like images are unaffected.</li>
<li>It doesn't happen all the time. When it does happen, it happens for everybody.</li>
<li>It seems to happen at times of peak demand. However, the demand is not yet very high - it's certainly well within the bounds of what Apache can cope with.</li>
<li>Restarting Tomcat fixed it, but only for a few minutes. Restarting Apache fixed it, but only for a few minutes.</li>
<li>The server is running Apache 2 and Tomcat 6, using a Java 6 VM on Gentoo. The connection is with AJP13, and <code>JkMount</code> directives within <code><VirtualHost></code> blocks are correct.</li>
<li>There's nothing of use in any of the log files.</li>
</ul>
<p><hr /></p>
<p><strong>Further information:</strong></p>
<p>Apache does not have any form of caching turned on. All the caching-related entries in httpd.conf and related imports say, for example:</p>
<pre><code><IfDefine CACHE>
LoadModule cache_module modules/mod_cache.so
</IfDefine>
</code></pre>
<p>While the options for Apache don't include that flag:</p>
<pre><code>APACHE2_OPTS="-D DEFAULT_VHOST -D INFO -D LANGUAGE -D SSL -D SSL_DEFAULT_VHOST -D PHP5 -D JK"
</code></pre>
<p>Tomcat likewise has no caching options switched on, that I can find.</p>
<p><a href="http://stackoverflow.com/questions/246540/apachetomcat-error-wrong-pages-being-delivered#246566">toolkit's suggestion</a> was good, but not appropriate in this case. What leads me to believe that the error can't be within my own code is that it isn't simply a few values that are being transferred - it's the entire request, including the URL, parameters, session cookies, the whole thing. People are getting pages back saying "You are logged in as John", when they clearly aren't.</p>
<p><hr /></p>
<p><strong>Update:</strong></p>
<p>Based on suggestions from several people, I'm going to add the following HTTP headers to Tomcat-served pages to disable all forms of caching:</p>
<pre><code>Cache-Control: no-store
Vary: *
</code></pre>
<p>Hopefully these headers will be respected not just by Apache, but also by any other caches or proxies that may be in the way. Unfortunately I have no way of deliberately reproducing this error, so I'm just going to have to wait and see if it turns up again.</p>
<p>I notice that the following headers are being included - could they be related in any way?</p>
<pre><code>Connection: Keep-Alive
Keep-Alive: timeout=5, max=66
</code></pre>
<p><hr /></p>
<p><strong>Update:</strong></p>
<p>Apparently this happened again while I was asleep, but has stopped happening now I'm awake to see it. Again, there's nothing useful in the logs that I can see, so I have no clues to what was actually happening or how to prevent it.</p>
<p>Is there any extra information I can put in Apache or Tomcat's logs to make this easier to diagnose?</p>
<p><hr /></p>
<p><strong>Update:</strong></p>
<p>Since this has happened again a couple of times, we've changed how Apache connects to Tomcat to see if it affects things. We were using <code>mod_jk</code> with a directive like this:</p>
<pre><code>JkMount /portal ajp13
</code></pre>
<p>We've switched now to using <code>mod_proxy_ajp</code>, like so:</p>
<pre><code>ProxyPass /portal ajp://localhost:8009/portal
</code></pre>
<p>We'll see if it makes any difference. This error was always annoyingly unpredictable, so we can never definitively say if it's worked or not.</p>
<p><hr /></p>
<p><strong>Update:</strong></p>
<p>We just got the error briefly on a site that was left using <code>mod_jk</code>, while a sister site on the same server using <code>mod_proxy_ajp</code> didn't show the error. This doesn't prove anything, but it does provide evidence that swithing to <code>mod_proxy_ajp</code> may have helped.</p>
<p><hr /></p>
<p><strong>Update:</strong></p>
<p>We just got the error again last night on a site using <code>mod_proxy_ajp</code>, so clearly that hasn't solved it - <code>mod_jk</code> wasn't the source of the problem. I'm going to try the anonymous suggestion of turning off persistent connections:</p>
<pre><code>KeepAlive Off
</code></pre>
<p>If that fails as well, I'm going to be desperate enough to start investigating GlassFish.</p>
<p><hr /></p>
<p><strong>Update:</strong></p>
<p>Dammit! The problem just came back. I hadn't seen it in a while, so I was starting to think we'd finally sorted it. I hate heisenbugs.</p>
http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered/1743757#17437570Answer by Marcus Downing for Apache/Tomcat error - wrong pages being deliveredMarcus Downing2009-11-16T17:49:16Z2009-11-16T17:49:16Z<p>We switched Apache from proxying with AJP to proxying with HTTP. So far it appears to have solved the issue, or at least vastly reduced it - the problem hasn't been reported in months, and the app's use has increased since then.</p>
<p>The change is in Apache's httpd.conf. Having started with <code>mod_jk</code>:</p>
<pre><code>JkMount /portal ajp13
</code></pre>
<p>We switched to <code>mod_proxy_ajp</code>:</p>
<pre><code>ProxyPass /portal ajp://localhost:8009/portal
</code></pre>
<p>Then finally to straight <code>mod_proxy</code>:</p>
<pre><code>ProxyPass /portal http://localhost:8080/portal
</code></pre>
<p>You'll need to make sure Tomcat is set up to serve HTTP on port 8080. And remember that if you're serving <code>/</code>, you need to include <code>/</code> on both sides of the proxy or it starts crying:</p>
<pre><code>ProxyPass / http://localhost:8080/
</code></pre>
http://stackoverflow.com/questions/1722612/jquery-valval-is-not-working-in-modal-dialog-jquery-ui/1722923#17229230Answer by Marcus Downing for jQuery val(val) is not working in modal dialog (jQuery ui)Marcus Downing2009-11-12T15:15:22Z2009-11-12T15:15:22Z<p>When jQuery silently fails, it usually means that you have an empty selection. So the first thing to test is that the selector <code>$("#editfrm > input[id='FirstName']")</code> really does produce the fields you think it does. Pull up firebug and type that selector into the console. If it works, it will produce an array with the input element you want. If not, it'll produce an empty list.</p>
http://stackoverflow.com/questions/1671633/preventing-reflow-when-using-jquery-ui-size-effect/1722811#17228111Answer by Marcus Downing for Preventing reflow when using jQuery UI "size" effectMarcus Downing2009-11-12T15:00:52Z2009-11-12T15:00:52Z<p>The easy answer is usually to find an existing jQuery plugin that already does what you want. There are a lot of them out there, and even if one isn't perfect you can adapt or learn from it to get the desired result.</p>
<p>To do it yourself, I'd suggest having two copies of the image: one inline with the list, and another on top that zooms in. That way the layout of the list doesn't depend on the zoomed image at all.</p>
<p>Untested code, just thinking:</p>
<pre><code>// on page load, process selected images
$(function () {
$('img.hoverme').each(function () {
var img = $(this);
var alt = $("<img src='" + img.attr('src') + "'/>");
img.after(alt);
alt.hide();
img.hover(function () {
var position = img.position();
alt.css({
position: "absolute",
top: position.top,
left: position.left,
width: 32,
height: 32
}).animate({
top: position.top - 16,
left: postion.left - 16,
width: 64,
height: 64
});
}, function () { });
alt.hover(function () { }, function () {
var position = img.position();
alt.animate({
top: position.top,
left: position.left,
width: 32,
height: 32
}, function () {
alt.hide();
}); // alt.animate
}); // alt.hover
}); // each
}); // $(
</code></pre>
<p>When the mouse goes over the smaller image, the larger one is created hovering over it, and immediately expands in place. When the mouse leaves the larger image, it shrinks and then disappears.</p>
http://stackoverflow.com/questions/1712274/why-do-a-lot-of-programming-languages-put-the-type-after-the-variable-name/1712357#17123573Answer by Marcus Downing for Why do a lot of programming languages put the type *after* the variable name?Marcus Downing2009-11-11T01:06:44Z2009-11-11T01:06:44Z<p>An increasing trend is to not state the type at all, or to optionally state the type. This could be a dynamically typed langauge where there really is no type on the variable, or it could be a statically typed language which infers the type from the context.</p>
<p>If the type is sometimes given and sometimes inferred, then it's easier to read if the optional bit comes afterwards.</p>
<p>There are also trends related to whether a language regards itself as coming from the C school or the functional school or whatever, but these are a waste of time. The languages which improve on their predecessors and are worth learning are the ones that are willing to accept input from all different schools based on merit, not be picky about a feature's heritage.</p>
http://stackoverflow.com/questions/1675318/jquery-ajax-collecting-multiple-asynchronous-results0jQuery AJAX: collecting multiple asynchronous resultsMarcus Downing2009-11-04T17:16:46Z2009-11-04T20:19:44Z
<p>I'm running a validation on form data, such that when somebody hits the submit button it checks the form's contents first. A number of fields (could be zero, could be more than one, depending on the page) have things like unique codes which require checking with the server first. I'm running an asynchronous request to the server, which simply responds '<code>ok</code>' or '<code>taken</code>' for each field. If any of the fields have errors, the page doesn't submit.</p>
<p>On the one hand, this should be asynchronous: it should continue validating the rest of the form fields while that request is off processing, including firing off other requests. If the call is made synchronously, then it visibly slows down feedback on later fields.</p>
<p>On the other hand, I want to make sure all the validation requests have returned (or timed out) before responding yes or no to the <code>validate()</code> method, and either allowing the submit to proceed or not. So if there are two fields that need validating then the <code>validate()</code> method should fire off those two AJAX requests, process the rest of the fields, and then wait until those two requests have returned before finally returning.</p>
<p>I can probably achieve this with some ugly homebaked solution (probably involving an array of random ids representing the requests in progress or something), but before I do is there any built-in function, plugin or standard technique I should be using instead?</p>
<p><hr></p>
<p><strong>Clarification</strong></p>
<p>What I think I need is to make the code wait for the result from one or more asynchronous requests before proceeding with a method. This isn't the same as a callback, because the result of the method depends on the result of the requests. It isn't the same as a synchronous request because there may be more than one of them.</p>
<p>I'm using this to check the form before submitting:</p>
<pre><code>$("form").submit(function () {
return validate($(this));
});
</code></pre>
<p>If the <code>validate()</code> method returns false, then the form doesn't submit. <code>validate()</code> hilights any fields that aren't accepted. For normal fields, <code>validate()</code> looks something like this (vastly simplified version, without the feedback):</p>
<pre><code>function validate(form) {
resetWarnings(form);
var ok = true;
// required fields
form.find("input.required").each(function () {
var field = $(this);
if (field.val() === "") {
ok = false;
}
return this; // meaningless in this case but a good habit to keep
});
// fields that matches a pattern
form.find("input.pattern").each(function () {
var field = $(this);
var pattern = field.data("pattern");
if (!field.val().match(pattern)) {
ok = false;
}
return this;
});
// various other rules for other sorts of field
...
return ok;
}
</code></pre>
<p>For AJAX fields it's more like this:</p>
<pre><code> form.find("input.lookup").each(function () {
var field = $(this);
var url = field.data("lookup");
$.ajax({
url: url,
data: { code: field.val() },
success: function (result) {
if (result === "taken") {
ok = false;
}
}
}
});
</code></pre>
<p>But of course, <code>validate()</code> has already finished before the success method is called. So if I can make it wait until the ajax has been completed (either success or error) before returning, I can get the right result and stop the form being submitted. And if I made the ajax synchronous, then the entire method stops until it's done, which is wrong.</p>
<p><hr></p>
<p><strong>Further thought</strong></p>
<p>Given Javascript's threading model (which is to say none at all), is what I'm asking for technically impossible?</p>
http://stackoverflow.com/questions/1385931/scalas-for-comprehensions-vital-feature-or-syntactic-sugar5Scala's for-comprehensions: vital feature or syntactic sugar?Marcus Downing2009-09-06T15:32:06Z2009-09-07T03:15:04Z
<p>When I first started looking at Scala, I liked the look of for-comprehensions. They seemed to be a bit like the foreach loops I was used to from Java 5, but with functional restrictions and a lot of sweet syntactic niceness.</p>
<p>But as I've absorbed the Scala style, I find that every time I could use a for-comprension I'm using <code>map</code>, <code>flatMap</code>, <code>filter</code>, <code>reduce</code> and <code>foreach</code> instead. The intention of the code seems clearer to me that way, with fewer potential hidden surprises, and they're usually shorter code too.</p>
<p>As far as I'm aware, for-comprehensions are always compiled down into these methods anyway, so I'm wondering: what are they actually for? Am I missing some functional revalation (it wouldn't be the first time)? Do for-comprehensions do something the other features can't, or would at least be much clumsier at? Do they shine under a particular use case? Is it really just a matter of personal taste?</p>
http://stackoverflow.com/questions/1379022/method-call-inside-actor-freezes-in-scala/1379361#13793612Answer by Marcus Downing for Method call inside Actor freezes in ScalaMarcus Downing2009-09-04T13:43:14Z2009-09-04T13:43:14Z<p>The <code>Application</code> trait and its use is at fault here. When you have code running within the body of a <code>Application</code> rather than within a <code>main</code> method, that code is actually running as part of the constructor. So at the point where you call the testActor() method, the object hasn't actually finished initialising.</p>
<p>To fix it, move the println line into a main method:</p>
<pre><code>def main (args: Array[String]) {
println("Result: " + testActor())
}
</code></pre>
<p>Because this problem happens so easily, the <code>Application</code> trait is considered to be bad news.</p>
http://stackoverflow.com/questions/1320058/unicode-in-jar-resources1Unicode in Jar resourcesMarcus Downing2009-08-24T01:07:02Z2009-08-24T01:49:58Z
<p>I have a Unicode (UTF-8 without BOM) text file within a jar, that's loaded as a resource.</p>
<pre><code>URL resource = MyClass.class.getResource("datafile.csv");
InputStream stream = resource.openStream();
BufferedReader reader = new BufferedReader(
new InputStreamReader(stream, Charset.forName("UTF-8")));
</code></pre>
<p>This works fine on Windows, but on Linux it appear not to be reading the file correctly - accented characters are coming out broken. I'm aware that different machines can have different default charsets, but I'm giving it the correct charset. Why would it not be using it?</p>
http://stackoverflow.com/questions/1198912/how-can-i-count-the-number-of-lines-a-bunch-of-text-wraps-to-inside-a-div/1198968#11989681Answer by Marcus Downing for How can I count the number of lines a bunch of text wraps to inside a div?Marcus Downing2009-07-29T09:14:09Z2009-07-29T09:14:09Z<p>Use an element with <code>overflow: hidden</code>, and change that style when they click on more.</p>
<p>HTML:</p>
<pre><code><div>
<div id='content'>...</div>
<div><a id='morebutton'>More</a></div>
</div>
</code></pre>
<p>CSS:</p>
<pre><code>#content {
height: 200px;
overflow: hidden;
}
</code></pre>
<p>JS (using jQuery):</p>
<pre><code>$("#morebutton").click(function() {
$("#content").css(overflow: "visible");
}
</code></pre>
http://stackoverflow.com/questions/1178141/why-does-my-jquery-click-handler-appear-to-run-multiple-times-for-some-of-its-tar/1178224#11782243Answer by Marcus Downing for Why does my jQuery click handler appear to run multiple times for some of its targets?Marcus Downing2009-07-24T14:54:14Z2009-07-24T14:54:14Z<p>As <a href="http://stackoverflow.com/questions/1178141/what-is-the-problem-with-this-jquery-code/1178189#1178189">chaos says</a>, you're probably calling click each time you add one, and they're accumulating.</p>
<p>If you're adding these items to the document dynamically, and need to make sure this function is added to every one you add, how about using live?</p>
<pre><code>$(".newContentLink").live().click(function() {
$("#test").append("1");
});
</code></pre>
<p>This will make sure the rule is dynamically applied once to any qualifying class in the document.</p>
http://stackoverflow.com/questions/1174872/default-directory-layout-for-java-project/1175011#11750110Answer by Marcus Downing for Default directory layout for Java projectMarcus Downing2009-07-23T23:15:02Z2009-07-23T23:15:02Z<p>For web projects I usually use:</p>
<pre><code><project name>
dev
src
lib
www
build.xml
build
www
bin
www
</code></pre>
<p>The <code>www</code> folder in src is the original. The <code>www</code> folder in build is where that gets combined with the contents of similar folders to produce what needs to be uploaded. The <code>www</code> folder outside is where I run a local copy, complete with temporary files and other such garbage. I have an ant script in <code>build.xml</code> to copy things around.</p>
<p>I'd like to know if there is any sort of standard.</p>
http://stackoverflow.com/questions/1164631/ant-copy-the-same-fileset-to-multiple-places3Ant: copy the same fileset to multiple placesMarcus Downing2009-07-22T11:28:53Z2009-07-22T22:00:36Z
<p>I need an Ant script that will copy one folder to several other places. As a good obedient programmer, I want not to repeat myself. Is there any way of taking a fileset like this:</p>
<pre><code> <copy todir="${target}/path/to/target/1">
<fileset dir="${src}">
<exclude name='**/*svn' />
</fileset>
</copy>
</code></pre>
<p>And storing the fileset in a variable so it can be re-used?</p>
http://stackoverflow.com/questions/203296/colour-blindness-simulator8Colour blindness simulatorMarcus Downing2008-10-15T00:09:38Z2009-07-11T08:47:55Z
<p>Like any responsible developer, I'd like to make sure that the sites I produce are accessible to the widest possible audience, and that includes the significant fraction of the population with some form of colour blindness.</p>
<p>There are many websites which offer to filter a URL you feed it, either by rendering a picture or by filtering all content. However, both approaches seem to fail when rendering even moderately complex layouts, so I'd be interested in finding a client-side approach.</p>
<p>The ideal solution would be a system filter over the whole screen that can be used to test any program. The next best thing would be a browser plugin.</p>
http://stackoverflow.com/questions/1056358/how-to-improve-this-enumeration-type/1056393#10563931Answer by Marcus Downing for How to improve this enumeration type ?Marcus Downing2009-06-29T03:02:20Z2009-06-29T03:02:20Z<p>If the list of possible values really is that small, then write the method by hand. The performance benefit of a hashtable isn't felt in comparison to a mere 3 string comparisons.</p>
<p>But if, as I suspect, the number of values is much bigger than you've written then a map makes sense, in which case you should cache the map when the enumeration is created.</p>
<pre><code>public enum SigninErrorCodes {
InvalidUser("a0"), InvalidPassword("b5"), NoServerResponse("s2");
private final String _code;
SigninErrorCodes( String code ) { _code = code; }
public String code() { return _code; }
private static final Map<String, SigninErrorCodes> m;
static {
SigninErrorCodes[] verbs = values();
m = new HashMap<String,SigninErrorCodes>(verbs.length * 2);
for( int i=0; i<verbs.length; i++ )
m.put( verbs[i].code(), verbs[i] );
}
public static SigninErrorCodes deref( String code ) {
return m.get( code );
}
}
</code></pre>
<p>Note that the best size to give a hash map isn't the number of elements, but about twice that. A lower number results in key conflicts.</p>
http://stackoverflow.com/questions/1055999/what-to-learn-lisp-or-ocaml-or/1056376#10563760Answer by Marcus Downing for What to learn? Lisp or OCaml or...?Marcus Downing2009-06-29T02:52:14Z2009-06-29T02:52:14Z<p>Scala has been very good for making me see programming in a new light. I haven't used it for anything worklike yet, but it's still affected how I write code in other languages - not just Java, but PHP. I recently wrote a simple parser for a WordPress plugin, and the code is vastly more functional and immutable than it would have been six months ago, and better for it, despite the lack of enforcement in PHP.</p>
<p>The only other language to have affected the way I work so dramatically is Perl, nearly a decade earlier. Perl has contributed a lot to the way I pseudo-code, even if I never touch the language itself.</p>
<p>Many people compare the functional aspects of Scala to Haskell. You may even imagine that knowing Haskell means you already know all Scala could teach you, but I don't believe that. The way Scala combines OO and function has a way of making it seem like that's actually the truest form of both of them.</p>
http://stackoverflow.com/questions/956361/apache-tomcat-using-modproxy-instead-of-ajp2Apache + Tomcat: Using mod_proxy instead of AJPMarcus Downing2009-06-05T15:05:23Z2009-06-07T22:05:02Z
<p>Is there any way I connect Apache to Tomcat using an HTTP proxy such that Tomcat gets the correct incoming host name rather than localhost? I'm using this directive in apache:</p>
<pre><code>ProxyPass /path http://localhost:8080/path
</code></pre>
<p>But it comes through as localhost, which is useless when we have a bunch of sites on the same server. I could set the host manually in the server config:</p>
<pre><code><Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
proxyName="pretend.host" proxyPort="80" />
</code></pre>
<p>But that again doesn't serve more than one site. And I don't like the idea of using a different internal port for each site, that sounds really ugly.</p>
<p>Is there no way to transfer the port when I proxy it?</p>
<p>(If you ask why I don't just use AJP, the answer is <a href="http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered">this error</a>. I'm trying everything I can before giving up on <a href="http://serverfault.com/questions/589/alternatives-to-apache">Tomcat and Apache entirely</a>)</p>
http://stackoverflow.com/questions/939506/php-syntax-error/939570#9395700Answer by Marcus Downing for PHP Syntax ErrorMarcus Downing2009-06-02T13:34:28Z2009-06-02T13:34:28Z<p>Assuming you pasted the code exactly, the <em>first</em> error is right at the beginning, when you end the first quote. It expects that to read:</p>
<pre><code>echo ' title .';
</code></pre>
<p>The two quotes next to each other don't make any sense.</p>
http://stackoverflow.com/questions/925653/is-there-an-alternative-to-css/925708#9257082Answer by Marcus Downing for Is there an alternative to CSS? Marcus Downing2009-05-29T12:18:51Z2009-05-29T12:18:51Z<blockquote>
<p>I looked at the write up of CSS on
Wikipedia
(<a href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets" rel="nofollow">http://en.wikipedia.org/wiki/Cascading_Style_Sheets</a>)
and a few other comments about CSS and
became discouraged about the lack of
full support for CSS in the different
Layout engines, so I am just curious
if there is an alternative or I must
learn to also use CSS filters.</p>
</blockquote>
<p>CSS is <em>the</em> standard. There is no alternative.</p>
<p>All browsers support the basic CSS features. Each new version of each of the (four?) main browser lines comes with increased support for the standard, but websites that use these features will be broken to any users in an earlier version. There are two answers to this:</p>
<ol>
<li><p>"Graceful degredation" (or its twin, "Progressive enhancement" - google it), in which the page takes advantage of advanced features if they're available, while still continuing to work if they're not.</p></li>
<li><p>Who are your audience? If you're lucky enough to know that 99.8% of visitors to your website will be using at least IE7, then you don't need to worry about the CSS features that are broken in IE6. This will depend on your own business though, so check the facts first.</p></li>
</ol>
<p>The worst thing you can do is code to the quirks of a single specific browser, because that leads to a page that's broken not only on other browsers, but even on later versions of the same browser.</p>
http://stackoverflow.com/questions/743256/why-does-scala-have-very-little-enthusiasm-about-it/898799#8987991Answer by Marcus Downing for Why does Scala have very little enthusiasm about it?Marcus Downing2009-05-22T16:39:28Z2009-05-22T16:39:28Z<p>Scala is not a beginner's language. It's complicated, subtle and requires a significant investment of learning. It's awesome, but it's not easy.</p>
<p>Other answers have made this sound negative:</p>
<blockquote>
<p><strong>mipadi:</strong>
a lot of Scala programmers (not all,
but a lot) use Scala not because they
love object-oriented functional
languages, but because they don't want
to use Java</p>
</blockquote>
<p>I prefer to see this in a positive light. Scala is a language that has learned from the mistakes of history and strives not to repeat them. It attracts the sort of developers who have enough experience, in Java and other traditional languages, to appreciate this.</p>
<p>A sign of immaturity is the belief that one methodology rules over all others. I know I was guilty, a decade ago, of believing that object orientation was the one true way. Now we have those who claim that functional programming and nothing else is the right way. Scala is more mature than that: it understands that one size doesn't fit all.</p>
<p>Scala is still fairly new (in the scale of these things), and parts of it are settling down as I type this, but it's only a matter of time before somebody uses it to create a killer app, something millions come to rely on. I of course hope that'll be me :)</p>
http://stackoverflow.com/questions/887447/wordpress-plugin-finding-the-more-in-thecontent0WordPress plugin: finding the <!--more--> in the_contentMarcus Downing2009-05-20T11:44:50Z2009-05-21T16:48:58Z
<p>I'm writing a WordPress plugin that filters <strong>the_content</strong>, and I'd like to make use of the <code><!--more--></code> tag, but it appears that it has been stripped out by the time it reaches me. This appears to be not a filter, but a function of the way WordPress works.</p>
<p>I could of course resort to reloading the already-loaded content from the database, but that sounds like it might cause other troubles. Is there any good way for me to get the raw content without the <code><!--more--></code> removed?</p>
http://stackoverflow.com/questions/800653/output-content-from-wordpress-plugin-and-rewrite-rules/887534#8875340Answer by Marcus Downing for Output content from wordpress plugin and rewrite rulesMarcus Downing2009-05-20T12:04:28Z2009-05-20T12:04:28Z<p>I did something very similar not long ago, and I did it by cheating.</p>
<p>If you find the built in rewrite rules too complicated or unable to do the job, you may find it easier to catch the request and filter the results. A simplified version:</p>
<pre><code>add_action('parse_request', 'my_parse_request');
function my_parse_request (&$wp) {
$path = $wp->request;
$groups = array();
if (preg_match("%shop/product/([a-zA-Z0-9-]+)%", $path, $groups)) {
$code = $groups[1];
$product = get_product($code); // your own code here
if (isset($product)) {
add_filter('the_posts', 'my_product_filter_posts');
}
}
}
function my_product_filter_posts ($posts) {
ob_start();
echo "stuff goes here"; // your body here
$content = ob_get_contents();
ob_end_clean();
return array(new DummyResult(0, "Product name", $content));
}
</code></pre>
<p>To explain:</p>
<ol>
<li><p>The action on <code>parse_request</code> is called before the database lookup. Based on the URL, it installs the other actions and filters.</p></li>
<li><p>The filter on posts replaces the results of the database lookup with fake results.</p></li>
</ol>
<p>DummyResult is a simple class that has the same fields as a post, or just enough of them to get away with it:</p>
<pre><code>class DummyResult {
public $ID;
public $post_title;
public $post_content;
public $post_author;
public $comment_status = "closed";
public $post_status = "publish";
public $ping_status = "closed";
public $post_type = "page";
public $post_date = "";
function __construct ($ID, $title, $content) {
$this->ID = $ID;
$this->post_title = $title;
$this->post_content = $content;
$this->post_author = get_default_author(); // implement this function
}
}
</code></pre>
<p>There's a lot of homework left for the reader in the above, but it's an ugly, working approach. You'll probably want to add a filter for <code>template_redirect</code>, to replace the normal page template with a product-specific one. And you may need to adjust the URL regex if you want pretty permalinks.</p>
http://stackoverflow.com/questions/873510/why-does-java-util-properties-implement-mapobject-object-and-not-mapstring-str/873691#8736913Answer by Marcus Downing for Why does java.util.Properties implement Map<Object,Object> and not Map<String,String>Marcus Downing2009-05-17T01:21:21Z2009-05-17T22:03:40Z<p>Because they did it in a hurry in the early days of Java, and didn't realise what the implications would be four versions later.</p>
<p>Generics were supposed to be part of the design of Java from the beginning, but the feature was dropped as being too complicated and, at the time, unnecessary. As a result, lots of code in the standard libraries is written with the assumption of non-generic collections. It took the prototype language "Pizza" from Martin Odersky to show how they could be done fairly well while maintaining near perfect backwards compatibility, with both Java code and bytecode. The prototype led to Java 5, in which the collections classes were retrofitted with generics in a way that allowed old code to keep working.</p>
<p>Unfortunately, if they were to retroactively make <code>Properties</code> inherit from <code>Map<String, String></code>, then the following previously valid code would stop working:</p>
<pre><code>Map<Object, Object> x = new Properties()
x.put("flag", true)
</code></pre>
<p>Why anybody would do that is beyond me, but Sun's commitment to backwards compatibility in Java has gone beyond heroic into the pointless.</p>
<p>What's now appreciated by most educated observers is that <code>Properties</code> should never have inherited from <code>Map</code> at all. It should instead wrap around <code>Map</code>, exposing only those features of Map that make sense.</p>
<p>Since reinventing Java, Martin Odersky has gone on to create the new Scala language, which is cleaner, inherits fewer mistakes, and breaks new ground in a number of areas. If you're finding Java's niggles annoying, take a look at it.</p>
http://stackoverflow.com/questions/847224/restful-http-response-codes3RESTful HTTP response codesMarcus Downing2009-05-11T08:41:20Z2009-05-11T09:11:09Z
<p>I'm developing a simple RESTful API, and utterly in love with how minimalistic it is. But I'm uncertain as to the correct HTTP response codes for various situations:</p>
<ol>
<li><p>Incorrectly formed query</p></li>
<li><p>Correctly formed query refers to a resource which does not exist</p></li>
<li><p>Resource successfully deleted</p></li>
<li><p>Resource successfully edited</p></li>
</ol>
<p>I'm currently thinking that 1 would be <code>403 Forbidden</code>; 2 would be <code>410 Gone</code>; 3 and 4 would be <code>202 Accepted</code>. Do they sound right?</p>
http://stackoverflow.com/questions/751363/switching-from-tomcat-to-glassfish2Switching from Tomcat to GlassfishMarcus Downing2009-04-15T11:52:25Z2009-04-16T09:43:32Z
<p>In response to <a href="http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered">this error where pages are delivered incorrectly</a>, we're considering a switch from Apache + Tomcat to Glassfish. This is inspired not by features, but by frustration with a fault that just won't go away.</p>
<p>The questions are:</p>
<ul>
<li><p>Should we use Glassfish in cooperation with Apache, or replace Apache entirely? The interface between Apache and Tomcat is clearly somehow connected to the error we're seeing, and the last thing we need is to have the same problem turning up again. On the flip side, we will have need of PHP, which Apache is already set up to handle.</p></li>
<li><p>Should we use Glassfish 2 or 3? Version 3 seems to be a complete rewrite, and comments here and elsewhere suggests that a lot of people are sticking with 2.</p></li>
<li><p>How well can Apache and Glassfish cooperate on the same server? For example, Apache could simplely <code>ProxyPass</code> all requests to selected domains over to Glassfish (as opposed to the much more specific proxying to Tomcat that it's doing at the moment).</p></li>
<li><p>Is there an easier way? I'd hate to do all this work for nothing.</p></li>
<li><p>Does this question belong on serverfault.com?</p></li>
</ul>
http://stackoverflow.com/questions/282883/locales-and-resourcebundles-in-a-plugin-based-program3Locales and ResourceBundles in a plugin-based programMarcus Downing2008-11-12T03:03:49Z2009-03-23T00:07:42Z
<p>We need to start adding internationalisation to our program. Thankfully not the whole thing yet, just a few bits, but I want the way we do it to scale up to potentially cover the whole program. The thing is, our program is based on plugins, so not all strings belong in the same place.</p>
<p>As far as I understand it, Java's <code>ResourceBundle</code> work like this. You create a class that extends <code>ResourceBundle</code>, called something like <code>MyProgramStrings</code>, and also language-specific classes called <code>MyProgramStrings_fr</code>, <code>MyProgramStrings_es</code> etc. Each of these classes maps keys (strings) to values (any object). It's up to each of these classes where to get its data from, but a common place for them is a properties file.</p>
<p>You look up values in two stages: first you get the correct bundle, then you query it for the string you want.</p>
<pre><code>Locale locale = Locale.getDefault(); // or = new Locale("en", "GB");
ResourceBundle rb = ResourceBundle.getBundle("MyProgramStrings", locale);
String wotsitName = rb.getString("wotsit.name");
</code></pre>
<p>However, what we need is to combine the results of several locales into a single resource space. For example, a plugin needs to be able to override a string that's already defined, and have that new value returned whenever code looks up the string.</p>
<p>I'm a little lost in all this. Can anybody help?</p>
<p><hr /></p>
<p><strong>Update:</strong> David Waters asked:</p>
<blockquote>
<p>I have put my answer at the bottom but I would be interested in hearing how you solved this problem.</p>
</blockquote>
<p>Well, we haven't got very far yet - long term WIBNIs always fall victim to the latest crisis - but we're basing it on the interface that a plugin implements, with the convention that resources have the same fully qualified name as the interface.</p>
<p>So an interface <code>UsersAPI</code> may have various different implementations. A method <code>getBundle()</code> on that interface by default returns the equivalent of <code>ResourceBundle.get("...UsersAPI", locale)</code>. That file can be replaced, or implementations of UsersAPI can override the method if they need something more complicated.</p>
<p>So far that does what we need, but we're still looking at more flexible solutions based on the plugins.</p>
http://stackoverflow.com/questions/530307/deleting-mysql-records-with-ajax/577744#5777442Answer by Marcus Downing for deleting mysql records with ajaxMarcus Downing2009-02-23T14:09:28Z2009-02-23T14:09:28Z<p>You have two choice:</p>
<ul>
<li><p>Do a complete round trip, ie don't update the UI until you know the item has been successfully deleted, OR</p></li>
<li><p>Lie to your users</p></li>
</ul>
<p>If the results of the operation are questionable and important, the use the first option. If you're confident of the result, and people don't need to know the details, use the second.</p>
<p>Really, nothing keeps people happy so much as being successfully lied to.</p>
http://stackoverflow.com/questions/569861/using-proxypass-for-pages-but-not-images1Using ProxyPass for pages but not imagesMarcus Downing2009-02-20T15:03:55Z2009-02-23T07:43:01Z
<p>As a result of <a href="http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-delivered">horrible, horrible errors</a>, we've changed how we connect Apache to Tomcat. We were using <code>mod_jk</code>:</p>
<pre><code>JkMount /path ajp13
</code></pre>
<p>Now we're using <code>mod_proxy_ajp</code>:</p>
<pre><code>ProxyPass /path ajp://localhost:8009/path
ProxyPassReverse /path ajp://localhost:8009/path
</code></pre>
<p>However, there's a feature that <code>JkMount</code> offered but <code>ProxyPass</code> doesn't: the ability to select on file types. This made it possible to proxy html files, but not images - in other words, to let the nice fast Apache serve the static stuff, and resorting to the slow Tomcat only for the dynamic stuff.</p>
<pre><code>JkMount /*.html ajp13
</code></pre>
<p>Is there any way of achieving this with <code>ProxyPass</code>? Possibly using a surrounding <code><Location></code> directive or something like that?</p>
http://stackoverflow.com/questions/569861/using-proxypass-for-pages-but-not-images/571605#5716051Answer by Marcus Downing for Using ProxyPass for pages but not imagesMarcus Downing2009-02-20T23:08:12Z2009-02-21T00:09:34Z<p>kmkaplan's post is the right answer, but it gave me the error:</p>
<pre><code>Syntax error on line 32 of .../httpd-vhosts.conf:
ProxyPass Unable to parse URL
</code></pre>
<p>It worked when I changed the directive to read:</p>
<pre><code>ProxyPathMatch ^/(path/.*\.html)$ ajp://localhost:8009/$1
</code></pre>
<p>I can only assume that putting the <code>$1</code> right next to the port number <code>8009</code> was confusing it.</p>
http://stackoverflow.com/questions/1792532/idiom-for-scalas-option-when-doing-equality-tests/1793027#1793027Comment by Marcus Downing on Idiom for Scala's Option when doing equality testsMarcus Downing2009-12-07T04:08:00Z2009-12-07T04:08:00ZThe second method fails to account for when o is None.http://stackoverflow.com/questions/210717/what-is-the-best-way-to-center-a-div-on-the-screen-using-jquery/210730#210730Comment by Marcus Downing on What is the best way to center a div on the screen using jQuery?Marcus Downing2009-12-04T16:45:06Z2009-12-04T16:45:06ZTook a bit of experimentation to get it working, but this is good.http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-deliveredComment by Marcus Downing on Apache/Tomcat error - wrong pages being deliveredMarcus Downing2009-12-03T15:28:20Z2009-12-03T15:28:20ZGentoo Base System release 1.12.11.1; Tomcat 6, Apache 2.2; Java HotSpot(TM) 64-Bit Server VM (build 11.3-b02, mixed mode). The load is not particularly high by the scale of such things.http://stackoverflow.com/questions/246540/apache-tomcat-error-wrong-pages-being-deliveredComment by Marcus Downing on Apache/Tomcat error - wrong pages being deliveredMarcus Downing2009-11-16T17:50:55Z2009-11-16T17:50:55ZI've posted an answer with the solution we found: use HTTP proxying instead of AJP. If you're getting the issue without any proxying involved at all, then I've no idea how to help. Sorry.http://stackoverflow.com/questions/1315844/url-format-for-internationalized-web-app/1699430#1699430Comment by Marcus Downing on Url format for internationalized web app?Marcus Downing2009-11-12T15:22:14Z2009-11-12T15:22:14ZI don't think he does, just that the default URl should deliver in a default language.http://stackoverflow.com/questions/210643/in-javascript-can-i-make-a-click-event-fire-programmatically-for-a-file-input-e/803399#803399Comment by Marcus Downing on In JavaScript can I make a "click" event fire programmatically for a file input element?Marcus Downing2009-11-06T18:56:22Z2009-11-06T18:56:22ZWhat other method?http://stackoverflow.com/questions/793014/jquery-trigger-file-inputComment by Marcus Downing on Jquery trigger file inputMarcus Downing2009-11-06T18:53:07Z2009-11-06T18:53:07ZThere's no way to do this? How depressing.http://stackoverflow.com/questions/1675318/jquery-ajax-collecting-multiple-asynchronous-results/1675419#1675419Comment by Marcus Downing on jQuery AJAX: collecting multiple asynchronous resultsMarcus Downing2009-11-04T20:21:07Z2009-11-04T20:21:07ZI'm not sure what I'm asking for is possible. Validating the fields as the user completes the form may end up being the only way.http://stackoverflow.com/questions/1675318/jquery-ajax-collecting-multiple-asynchronous-results/1675419#1675419Comment by Marcus Downing on jQuery AJAX: collecting multiple asynchronous resultsMarcus Downing2009-11-04T20:07:24Z2009-11-04T20:07:24ZSee clarification.http://stackoverflow.com/questions/1675318/jquery-ajax-collecting-multiple-asynchronous-results/1675419#1675419Comment by Marcus Downing on jQuery AJAX: collecting multiple asynchronous resultsMarcus Downing2009-11-04T19:36:59Z2009-11-04T19:36:59ZIt isn't a sequence of identical unique fields, but the possibility that more than one field on a form needs server-side checking - at different URLs, against different checks. In fact, the multiple bit isn't what's important - it's making the validate() method wait for an asynchronous result. The only reason I emphasise that there may be more than one field is so that making a single synchronous call isn't a valid answer.http://stackoverflow.com/questions/1055999/what-to-learn-lisp-or-ocaml-or/1056376#1056376Comment by Marcus Downing on What to learn? Lisp or OCaml or...?Marcus Downing2009-10-21T05:12:16Z2009-10-21T05:12:16ZSo what? Whether the implementation happens to use tail calls is invisible to me, the ordinary working programmer.http://stackoverflow.com/questions/1385931/scalas-for-comprehensions-vital-feature-or-syntactic-sugar/1386959#1386959Comment by Marcus Downing on Scala's for-comprehensions: vital feature or syntactic sugar?Marcus Downing2009-09-07T11:43:46Z2009-09-07T11:43:46Z"once you are used to them" - exactly. Once I understood monads, I switched to the underlying methods. The for comprehension was a useful link before that.http://stackoverflow.com/questions/1281977/elements-of-scala-style/1282051#1282051Comment by Marcus Downing on Elements of Scala Style?Marcus Downing2009-09-06T16:05:10Z2009-09-06T16:05:10ZDone. Do you want to check the section on for-comprehensions, and fill in the section on classes?http://stackoverflow.com/questions/674164/scala-and-interfaces/674206#674206Comment by Marcus Downing on Scala and interfacesMarcus Downing2009-09-06T14:32:22Z2009-09-06T14:32:22Z"I think doing the interfaces up front forces you to think a fair bit about your domain model ahead of time without getting caught up in the implementation" - yes, but that's a double-edged sword. Fixing the interface of a component before you involve the reality of implementation can mean you're missing something obvious.http://stackoverflow.com/questions/1284423/read-entire-file-in-scala/1284446#1284446Comment by Marcus Downing on Read entire file in Scala?Marcus Downing2009-09-04T23:04:25Z2009-09-04T23:04:25Z(I wasn't actually using Scala at the time...)