Marcus Downing
|
Registered User
|
Java web application developer with an interest in language design, anime and all things oriental.
|
|
Nov 16 |
comment |
Apache/Tomcat error - wrong pages being delivered I'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. |
|
Nov 16 |
answered | Apache/Tomcat error - wrong pages being delivered |
|
Nov 12 |
accepted | jQuery val(val) is not working in modal dialog (jQuery ui) |
|
Nov 12 |
comment |
Url format for internationalized web app? I don't think he does, just that the default URl should deliver in a default language. |
|
Nov 12 |
answered | jQuery val(val) is not working in modal dialog (jQuery ui) |
|
Nov 12 |
answered | Preventing reflow when using jQuery UI “size” effect |
|
Nov 11 |
answered | Why do a lot of programming languages put the type *after* the variable name? |
|
Nov 10 |
awarded | ● Popular Question |
|
Nov 6 |
comment |
In JavaScript can I make a “click” event fire programmatically for a file input element? What other method? |
|
Nov 6 |
comment |
Jquery trigger file input There's no way to do this? How depressing. |
|
Nov 4 |
comment |
jQuery AJAX: collecting multiple asynchronous results I'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. |
|
Nov 4 |
revised |
jQuery AJAX: collecting multiple asynchronous results Further thought |
|
Nov 4 |
comment |
jQuery AJAX: collecting multiple asynchronous results See clarification. |
|
Nov 4 |
revised |
jQuery AJAX: collecting multiple asynchronous results Clarification |
|
Nov 4 |
comment |
jQuery AJAX: collecting multiple asynchronous results It 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. |
|
Nov 4 |
revised |
jQuery AJAX: collecting multiple asynchronous results added 17 characters in body |
|
Nov 4 |
asked | jQuery AJAX: collecting multiple asynchronous results |
|
Oct 21 |
comment |
What to learn? Lisp or OCaml or…? So what? Whether the implementation happens to use tail calls is invisible to me, the ordinary working programmer. |
|
Sep 7 |
comment |
Scala’s for-comprehensions: vital feature or syntactic sugar? "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. |
|
Sep 6 |
comment |
Elements of Scala Style? Done. Do you want to check the section on for-comprehensions, and fill in the section on classes? |
|
Sep 6 |
revised |
Elements of Scala Style? Examples |
|
Sep 6 |
asked | Scala’s for-comprehensions: vital feature or syntactic sugar? |
|
Sep 6 |
comment |
Scala and interfaces "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. |
|
Sep 4 |
comment |
Read entire file in Scala? (I wasn't actually using Scala at the time...) |
|
Sep 4 |
comment |
What is the purpose of Scala language? Scala may have started as a research project, but it's rapidly becoming a very practical language - something most such projects never even think of achieving. |
|
Sep 4 |
comment |
Elements of Scala Style? A nice answer, that could do with more examples. Do you mind if I add some? |
|
Sep 4 |
comment |
Read entire file in Scala? "make suggestions instead" - Source should detect the file's encoding (within reason) and read it correctly. Unicode's BOMs are standard, and there are other metrics that are good enough to guess an encoding given the first hundred bytes of a file. I shouldn't have to invent something clever to detect a file that happens to be UCS-2. Yes, this has happened to me. |
|
Sep 4 |
comment |
Read entire file in Scala? "slurp" has been the name for reading an entire file at once in Perl for many years. Perl has a more visceral and informal naming tradition than the C family of languages, which some may find distasteful, but in this case I think it fits: it's an ugly word for an ugly practice. When you slurp(), you know you're doing something naughty because you just had to type that. |
|
Sep 4 |
answered | Method call inside Actor freezes in Scala |
|
Aug 28 |
comment |
Apache/Tomcat error - wrong pages being delivered So far nothing has eliminated the problem, but it was significantly reduced by using a standard proxy instead of AJP, which suggests that proxying is closely related to the issue. Is it possible to run Zimbra without a proxy? |
|
Aug 24 |
comment |
Unicode in Jar resources I'm specifying the decoding scheme, which should mean the host machine's set up would be irrelevant. |
|
Aug 24 |
comment |
Unicode in Jar resources The data is delivered as a web page, that's written in UTF-8. The HTTP header, XML header and HTTP-equiv meta all say UTF-8, and the browser confirms this. |
|
Aug 24 |
asked | Unicode in Jar resources |
|
Aug 19 |
comment |
Resize Image to fit in bounding box If you do that with float you might probably find that the dimension which matches the bounding box is slightly off (sometimes, in an unpredictable way). When you've identified which dimension doesn't match, might it be best to simply assume the other one is exactly what it should be? |
|
Aug 13 |
comment |
Is 23,148,855,308,184,500 a magic number, or sheer chance? People with dollars. |
|
Aug 13 |
comment |
How do I check if the mouse is over an element in jQuery? For most purposes the answers given are sufficient, but there are cases when mousein/out isn't sufficient. For example, hiding a menu when the mouse is no longer over either the menu head OR the menu body. |
|
Aug 12 |
comment |
How to use connection pool with java,MySQL and Tomcat 6 ...so what do you use instead? |
|
Aug 12 |
awarded | ● Yearling |
|
Aug 9 |
awarded |
● |
|
Aug 7 |
comment |
Is there ever justification for the “pseudo-typedef antipattern”? You call that generic type complicated? Ha! When I were a lad we had to get up at 3 in the morning deal with six-level recursively nested generics... |
|
Aug 7 |
comment |
Preferred way to create a scala list Most of the changes are in the way things are implemented internally, and in advanced things like projections. How you create a list isn't affected. |
|
Jul 29 |
comment |
How can I count the number of lines a bunch of text wraps to inside a div? Only if there's no pictures, styles or other stuff in there that changes the line height. |
|
Jul 29 |
answered | How can I count the number of lines a bunch of text wraps to inside a div? |
|
Jul 28 |
comment |
What language has the longest “Hello world” program? That's staggering. I feel really lucky to have avoided that era and arrived in programming as Java was taking off. |
|
Jul 25 |
comment |
Why does my jQuery click handler appear to run multiple times for some of its targets? I confess, I didn't check the syntax before posting. |
|
Jul 24 |
comment |
Why does my jQuery click handler appear to run multiple times for some of its targets? Whoops, MacAnthony already suggested that. |
|
Jul 24 |
answered | Why does my jQuery click handler appear to run multiple times for some of its targets? |
|
Jul 23 |
comment |
Default directory layout for Java project The layout for Maven does look a bit overengineered. Could you elaborate on why you think it's a good layout, other than that you have no choice. |
|
Jul 23 |
answered | Default directory layout for Java project |
|
Jul 22 |
asked | Ant: copy the same fileset to multiple places |
