User Darren Greaves - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T20:56:24Z http://stackoverflow.com/feeds/user/151 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1852003/java-jvm-for-c-programmer/1852016#1852016 0 Answer by Darren Greaves for Java/JVM for C++ programmer? Darren Greaves 2009-12-05T11:50:36Z 2009-12-05T11:57:37Z <p>I switched from C++ to Java a few years back.</p> <p>I found it useful to read <a href="http://oreilly.com/catalog/9780596007737" rel="nofollow">Java in a Nutshell</a> as I didn't need an intro to OO practices - just some grounding in the background theory of Java.</p> <p><strike>I seem to recall it had a section for C++ programmers but I could be wrong or it may not be in there for newer versions.</strike> I just checked in the 5th edition on Safari Books Online and it does indeed contain a section discussing difference between C++ and Java.</p> http://stackoverflow.com/questions/891419/page-fault-programming-parrot-programming/1819261#1819261 0 Answer by Darren Greaves for Page Fault Programming / Parrot Programming Darren Greaves 2009-11-30T11:26:56Z 2009-11-30T11:26:56Z <p>It depends on the depth of the knowledge you need and the size of the task I think.</p> <p>I'm using this style of programming right now to do some PL/SQL.<br> I've never done any before and I need to do some fairly simple stuff - iteration and concatenation - so am trying what I think might make sense (eg, MY_STRING.LENGTH) then searching online to find out the correct way (turns out it should be LENGTH(MY_STRING) - who knew?).</p> <p>It's sufficient to do the stuff I need to do now but you can't learn a whole new language that way really.</p> <p>Back when I first learned Java I read "Java in a Nutshell" before I touched a line of code - it really gave me a good grounding in the theory.</p> <p>Same when I learned Ruby - read about half of the Pickaxe book (I have less patience now) before I hit the code.</p> <p>Also - it's worth mentioning that someone who knows PL/SQL will be reviewing my code to make sure I don't do anything really silly.</p> http://stackoverflow.com/questions/257609/which-browsers-plugins-block-httpreferer-from-being-sent/1720933#1720933 0 Answer by Darren Greaves for Which browsers/plugins block HttpReferer from being sent? Darren Greaves 2009-11-12T09:13:03Z 2009-11-12T09:13:03Z <p>I used to log all this stuff in my blogging app - pretty much all bots never send referrer info.</p> <p>You should be able to make an educated guess as to whether it's down to it being filtered out or just people entering the URL.</p> <p>If the first hit has no referrer but the loading of images/CSS etc has referrer info then they just entered the URL directly.<br> If they only ever pull down HTML with no images or CSS they are most likely a bot (or using Lynx perhaps).<br> If they pull down HTML, images and CSS with no referrer then it's being filtered out.</p> http://stackoverflow.com/questions/1415030/how-we-can-increase-pr-of-a-website/1415041#1415041 0 Answer by Darren Greaves for how we can increase PR of a website ? Darren Greaves 2009-09-12T12:49:43Z 2009-09-12T12:49:43Z <p>Not sure its an <em>advanced</em> SEO technique but try writing some interesting and/or useful content. :-)</p> http://stackoverflow.com/questions/884760/setting-up-ehcache-replication-what-multicast-settings-do-i-need 4 Setting up ehcache replication - what multicast settings do I need? Darren Greaves 2009-05-19T20:06:35Z 2009-08-27T10:32:35Z <p>I am trying to set up ehcache replication as documented here: <a href="http://ehcache.sourceforge.net/EhcacheUserGuide.html#id.s22.2" rel="nofollow">http://ehcache.sourceforge.net/EhcacheUserGuide.html#id.s22.2</a><br /> This is on a Windows machine but will ultimately run on Solaris in production.</p> <p>The instructions say to set up a provider as follows:</p> <pre><code> &lt;cacheManagerPeerProviderFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory" properties="peerDiscovery=automatic, multicastGroupAddress=230.0.0.1, multicastGroupPort=4446, timeToLive=32"/&gt; </code></pre> <p>And a listener like this:</p> <pre><code>&lt;cacheManagerPeerListenerFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory" properties="hostName=localhost, port=40001, socketTimeoutMillis=2000"/&gt; </code></pre> <p>My questions are:<br /> Are the multicast IP address and port arbitrary (I know the address has to live within a specific range but do they have to be specific numbers)?<br /> Do they need to be set up in some way by our system administrator (I am on an office network)?</p> <p>I want to test it locally so am running two separate tomcat instances with the above config. What do I need to change in each one? I know both the listeners can't listen on the same port - but what about the provider?<br /> Also, are the listener ports arbitrary too?</p> <p>I've tried setting it up as above but in my testing the caches don't appear to be replicated - the value added in one tomcat's cache is not present in the other cache.<br /> Is there anything I can do to debug this situation (other than packet sniffing)?</p> <p>Thanks in advance for any help, been tearing my hair out over this one!</p> http://stackoverflow.com/questions/884760/setting-up-ehcache-replication-what-multicast-settings-do-i-need/1340205#1340205 1 Answer by Darren Greaves for Setting up ehcache replication - what multicast settings do I need? Darren Greaves 2009-08-27T10:32:35Z 2009-08-27T10:32:35Z <p>Just as a quick follow-up.</p> <p>We did get this working with two separate machines which solved the original problem of getting it to work at all. As far as I recall Multicast should work "out of the box" but it's worth checking with your local sysadmin (ours suggested a tweak to the multicastGroupAddress).</p> <p>We eventually hit all sorts of problems on Solaris and ended up abandoning multicast for <a href="http://ehcache.org/documentation/distributed%5Fcaching%5Fwith%5Frmi.html#Manual%5FPeer%5FDiscovery" rel="nofollow">Manual Peer Discovery</a> instead.</p> <p>Finally, in terms of debugging, using jconsole to monitor cache values proved to be the best way to do it. Didn't have to resort to packet sniffing. :-)</p> http://stackoverflow.com/questions/1234298/can-springmvc-be-configured-to-process-all-requests-but-exclude-static-content-d/1234365#1234365 0 Answer by Darren Greaves for Can SpringMVC be configured to process all requests, but exclude static content directories? Darren Greaves 2009-08-05T16:35:06Z 2009-08-05T16:35:06Z <p>What are you using to serve your static images? If it's Apache then you could configure Apache to not pass css/js requests to your app server.</p> <p>If you are using Tomcat you'd put something like this in your httpd.conf:</p> <pre><code>JkUnMount /*.css webapp </code></pre> <p>Where 'webapp' is the entry from your workers.properties.</p> <p>Sorry I can't give you a pure Spring solution, but this is how I do it.</p> http://stackoverflow.com/questions/1212891/setting-a-source-per-item-using-rome 0 Setting a Source per Item using Rome Darren Greaves 2009-07-31T14:34:17Z 2009-08-03T13:54:58Z <p>I am using <a href="https://rome.dev.java.net/" rel="nofollow">Rome</a> to combine several feeds into one. It's largely based on <a href="http://wiki.java.net/bin/view/Javawsxml/Rome05TutorialFeedAggregator" rel="nofollow">this example</a> on the Rome site.</p> <p>I'm creating a RSS 2.0 feed, which I save as a (W3C) Document then pass to a stylesheet to convert to HTML.</p> <p>One of my requirements is to display the source (link to and name of originating site) for each entry (as they can come from a variety of sources).</p> <p>According to the RSS spec there is a <a href="http://cyber.law.harvard.edu/rss/rss.html#ltsourcegtSubelementOfLtitemgt" rel="nofollow">optional source attribute</a> per item. And Rome appears to support this with a setSource method on the SyndEntry interface. However, setting this to the SyndFeed of the original feed doesn't appear to set this attribute.</p> <p>The document I output doesn't contain a source element in the item.</p> <p>Any clues on what I might be doing wrong or suggestions on alternative methods for doing what I want to do?</p> <p>Thanks in advance, Darren.</p> http://stackoverflow.com/questions/1212891/setting-a-source-per-item-using-rome/1222492#1222492 0 Answer by Darren Greaves for Setting a Source per Item using Rome Darren Greaves 2009-08-03T13:54:58Z 2009-08-03T13:54:58Z <p>I have found a workaround for this for now.</p> <p>As I only really need to give a name as attribution I am overriding the author field as follows.</p> <pre><code>SyndEntry entry = // fetched from SyndFeed Module dcModule = entry.getModule(DCModule.URI); String title = // My overridden title if (dcModule != null &amp;&amp; title != null) { ((DCModule)dcModule).setCreator(title); } </code></pre> <p>The reason I use this code instead of SyndEntry.setAuthor is that calling that only sets the author if it's null, we need to always set it to our value.</p> <p>I then reference this as dc:creator in my XSL stylesheet.</p> http://stackoverflow.com/questions/636721/how-to-detect-vi-not-vim-in-vimrc/1057798#1057798 4 Answer by Darren Greaves for How to detect vi (not vim) in .vimrc? Darren Greaves 2009-06-29T11:22:47Z 2009-06-29T11:22:47Z <p>If you want to get more specific in your checks you can check for individual features too.</p> <p>I have this in my .vimrc:</p> <pre><code>if has("eval") " Syntax stuff let java_highlight_all=1 endif if has("autocmd") " Buffers autocmd BufEnter * cd %:p:h endif </code></pre> http://stackoverflow.com/questions/1027760/need-help-in-sorting-the-programming-buzz-words/1027774#1027774 6 Answer by Darren Greaves for Need help in sorting the programming buzz-words Darren Greaves 2009-06-22T15:15:26Z 2009-06-22T15:15:26Z <p>If/when someone says one of those blanket statements to you always ask them "Why?".</p> <p>If the answer makes sense and applies to what you were doing then it's probably worth heeding.</p> <p>If the answer is "Ummm" or "Because Joel said so" feel free to ignore it. :-)</p> http://stackoverflow.com/questions/933065/does-a-controller-create-new-views/944029#944029 0 Answer by Darren Greaves for Does a controller create new views? Darren Greaves 2009-06-03T10:24:49Z 2009-06-03T10:24:49Z <p>If your login is a form POST (which it should be) I'd do a redirect to the home page after a successful login.</p> <p>This is so that if the user hits refresh on the home page after logging in then they don't get that browser warning about resubmitting a POST.<br /> The same thing applies if they click a link from the home page then click the back button.</p> <p>In Spring you can do that with this syntax.</p> <pre><code>return new ModelAndView(new RedirectView(homepage, true), model); </code></pre> <p>The "homepage" parameter would be configured in your spring config and injected as a parameter - it should be a relative URL to the home page on your site.</p> <p>Because you're redirecting the homepage controller is executed so this deals with your dependencies problem.</p> http://stackoverflow.com/questions/943883/how-to-write-efficient-java-code/943894#943894 2 Answer by Darren Greaves for How to write efficient Java code? Darren Greaves 2009-06-03T09:50:34Z 2009-06-03T10:07:07Z <p>I'd definitely choose writing code for readability and maintainability over supposed optimisations.</p> <p>Premature optimisation is generally viewed as a bad thing. <a href="http://en.wikipedia.org/wiki/Optimization%5F%28computer%5Fscience%29#When%5Fto%5Foptimize" rel="nofollow">http://en.wikipedia.org/wiki/Optimization_(computer_science)#When_to_optimize</a></p> <p>Of course, measuring and proving bottlenecks with profiling tools is another matter altogether. If you do this and can prove there are areas that need optimising and you can then measure the benefits go ahead and optimise away.</p> http://stackoverflow.com/questions/931536/how-do-i-launch-a-completely-independent-process-from-a-java-program/931604#931604 -1 Answer by Darren Greaves for How do I launch a completely independent process from a Java program? Darren Greaves 2009-05-31T07:59:45Z 2009-05-31T07:59:45Z <p>One way I can think of is to use Runtime.addShutdownHook to register a thread that kills off all the processes (you'd need to retain the process objects somewhere of course).</p> <p>The shutdown hook is only called when the JVM exits so it should work fine.</p> <p>A little bit of a hack but effective.</p> http://stackoverflow.com/questions/928988/mod-rewrite-skip-rules-server-error/929852#929852 0 Answer by Darren Greaves for Mod Rewrite Skip Rules Server error Darren Greaves 2009-05-30T14:49:54Z 2009-05-30T14:49:54Z <p>Turn on mod rewrite logging to get useful errors.</p> <pre><code>RewriteLog rewrite_log ReWriteLogLevel 2 </code></pre> <p>Adjust the log level for verbosity.</p> http://stackoverflow.com/questions/731504/protectfromforgery-unobtrusive-javascript/928287#928287 0 Answer by Darren Greaves for protect_from_forgery & Unobtrusive Javascript Darren Greaves 2009-05-29T21:44:17Z 2009-05-29T21:44:17Z <p>Thanks for the above solution.<br /> I am using some standard forms in my site that don't use the rails form_tag so instead I simply added it as a hidden form element.</p> <pre><code>&lt;form action="..."&gt; &lt;%= hidden_field_tag 'authenticity_token', form_authenticity_token if protect_against_forgery? %&gt; ... rest of form... &lt;/form&gt; </code></pre> <p>Works a treat.</p> http://stackoverflow.com/questions/924597/am-i-correctly-interning-my-strings/924656#924656 2 Answer by Darren Greaves for Am I correctly interning my Strings ? Darren Greaves 2009-05-29T06:24:20Z 2009-05-29T12:16:29Z <p>You might want to have some form of proof (via profiling perhaps) that you are "pummelling the permgen space" before you write all your code like that.</p> <p>Otherwise you may just be doing "premature optimisation" which is generally frowned upon. See <a href="http://en.wikipedia.org/wiki/Optimization%5F%28computer%5Fscience%29#When%5Fto%5Foptimize" rel="nofollow">http://en.wikipedia.org/wiki/Optimization_(computer_science)#When_to_optimize</a> for more details on why this may be a bad thing.</p> http://stackoverflow.com/questions/888771/store-custom-properties-in-aplicationcontext-xml-spring-file/920240#920240 1 Answer by Darren Greaves for Store Custom properties in aplicationContext.xml Spring file Darren Greaves 2009-05-28T10:47:57Z 2009-05-28T10:47:57Z <p>This should work with the following syntax.</p> <pre><code>&lt;bean id="props" class="java.util.Properties" &gt; &lt;constructor-arg&gt; &lt;props&gt; &lt;prop key="myKey"&gt;myValue&lt;/prop&gt; &lt;prop ...&gt; &lt;/props&gt; &lt;/constructor-arg&gt; &lt;/bean&gt; </code></pre> <p>You are taking advantage of the fact that java.util.Properties has a copy constructor that takes a Properties object.</p> <p>I do this for a HashSet which also has a copy constructor (as do HashMaps and ArrayLists) and it works perfectly.</p> http://stackoverflow.com/questions/89579/can-you-reliably-set-or-delete-a-cookie-during-the-server-side-processing-of-an-a/919746#919746 0 Answer by Darren Greaves for Can you reliably set or delete a cookie during the server side processing of an Ajax (XHR) call? Darren Greaves 2009-05-28T08:08:58Z 2009-05-28T08:08:58Z <p>In the context of DWR it may not be "safe".</p> <p>From reading <a href="http://directwebremoting.org/dwr/server/javaapi.html" rel="nofollow">the DWR site</a> it says:</p> <blockquote> <p>It is important that you treat the HTTP request and response as read-only. While HTTP headers might get through OK, there is a good chance that some browsers will ignore them.</p> </blockquote> <p>I've taken this to mean that setting cookies or request attributes is a no-no.<br /> Saying that, I have code which does set request attributes (code I wrote before I read that page) and it appears to work fine (apart from deleting cookies which I mentioned in my comment above).</p> http://stackoverflow.com/questions/914659/accessing-dwr-post-data-in-a-spring-interceptor 0 Accessing DWR post data in a Spring Interceptor Darren Greaves 2009-05-27T08:45:30Z 2009-05-28T06:05:09Z <p>I have a DWR action with a method signature as follows:</p> <pre><code>String joinGroup(String groupId, String groupName); </code></pre> <p>This is called via a DWR AJAX request and works fine.</p> <p>However, I am trying to write a Spring interceptor (works much like a ServletFilter) to do some authentication work before the DWR action is called.<br /> The interceptor is being called correctly but I need to access the groupId and groupName data in the interceptor.</p> <p>The request parameter map is empty and I've been through the entire list of request attributes in a debugger and I can't see the data anywhere.<br /> The request's postData is null also.</p> <p>Using firebug I can see the data is being passed to the server (and it's there when the joinGroup method is ultimately called).<br /> I just can't seem to access it in my interceptor.</p> <p>Is there any way I can access it at all?</p> http://stackoverflow.com/questions/910465/avoiding-sql-injection-without-parameters/910673#910673 2 Answer by Darren Greaves for Avoiding SQL injection without parameters Darren Greaves 2009-05-26T13:26:53Z 2009-05-26T13:26:53Z <p>Agree hugely on the security issues.<br /> Another reason to use parameters is for efficiency.</p> <p>Databases will always compile your query and cache it, then re-use the cached query (which is obviously faster for subsequent requests). If you use parameters then even if you use different parameters the database will re-use your cached query as it matches based on the SQL string before binding the parameters.</p> <p>If however you don't bind parameters then the SQL string changes on every request (that has different parameters) and it will never match what's in your cache.</p> http://stackoverflow.com/questions/906634/running-a-rails-rjs-template-from-a-jquery-get-request 0 Running a rails RJS template from a jquery get request Darren Greaves 2009-05-25T12:56:04Z 2009-05-25T15:00:58Z <p>I am using Rails and jquery with RJS templates to perform various AJAX requests.</p> <p>For most of my Ajax stuff I attach a submit handler to the form in my application.js as follows:</p> <pre><code>$('#tagging_flickr_photos').submitWithAjax(); $('#tag_submit').click(function() { $('#flickr-photos-status').show(); }); </code></pre> <p>This calls the form action which does some processing and then forwards to a RJS template as follows:</p> <pre><code>$("#flickr-photos-status").hide(); $("#flickr-photos").fadeIn(); $("#flickr-photos").html("&lt;%= escape_javascript(render(:partial =&gt; 'flickr_photos_for_tagging_content')) %&gt;"); </code></pre> <p>This works a treat.</p> <p>Now I am trying to do the same but just based on selecting a different value in a dropdown and not submitting a form. Here's my javascript to attach the handler to the dropdown:</p> <pre><code>$('#film_film_name_id').change(function() { $.get('/admin_film/make_tags?film_name_id=' + $("#film_film_name_id").val() + '&amp;film_speed_id=' + $("#film_film_speed_id").val()); }); </code></pre> <p>My controller method does some processing then forwards to the RJS template (make_tags.js.erb):</p> <pre><code>$("#film_tags").val(&lt;%=@tags%&gt;) </code></pre> <p>However, the template doesn't appear to execute. I can see entries in my logs that it's calling my method and rendering the template but no matter what I put in the template nothing seems to happen. I've put a Javascript alert in there and it doesn't fire.</p> <p>I assume the problem is to do with attaching my Javascript handler but I can't figure out what I am missing. </p> <p>Thanks in advance for any help.</p> http://stackoverflow.com/questions/895542/what-kind-of-mental-attitude-do-you-have-to-finish-a-project/895594#895594 1 Answer by Darren Greaves for What kind of mental attitude do you have to finish a project Darren Greaves 2009-05-21T22:32:14Z 2009-05-21T22:32:14Z <p>Make yourself accountable in some way.</p> <p>Tell your friends or if you're really brave announce it on some website related to your project.</p> http://stackoverflow.com/questions/590510/java-tcp-socket-sniffing/590543#590543 1 Answer by Darren Greaves for Java TCP Socket Sniffing Darren Greaves 2009-02-26T13:28:18Z 2009-02-26T13:28:18Z <p>If you don't mind getting down and dirty with the command line you could try <a href="http://netcat.sourceforge.net/" rel="nofollow">netcat</a>. It'll let you listen on a port and dump the output to a file if you like.<br /> You can also make it send fake data and record the response.</p> <p>I often use it as a pretend HTTP proxy (and configure Firefox to use it) to discover what is being sent over the wire.</p> http://stackoverflow.com/questions/550964/where-can-i-promote-rails-applications/551022#551022 0 Answer by Darren Greaves for Where can I promote Rails applications? Darren Greaves 2009-02-15T15:19:14Z 2009-02-15T15:19:14Z <p>You could ask the people who do various rails podcasts to give it a mention.</p> http://stackoverflow.com/questions/331109/how-to-choose-a-single-model-and-persist-that-choice/331139#331139 0 Answer by Darren Greaves for How to choose a single model and persist that choice? Darren Greaves 2008-12-01T15:16:01Z 2008-12-01T15:16:01Z <p>Personally I'm very strong on data integrity being enforced by my database so would probably add that extra table and enforce it as a foreign key constraint there. It can seem like overkill, but is the only* solution that prevents data integrity issues.</p> <p>Could you maybe add it as a field to the admin table/model - which would be an enforced foreign key to the party table?</p> <p>*Another solution would be a database trigger that checks no other rows are the selected party but I tend to shy away from such solutions.</p> http://stackoverflow.com/questions/301435/updating-different-divs-from-ajax-depending-on-validation-errors 1 Updating different divs from AJAX depending on validation errors Darren Greaves 2008-11-19T10:08:24Z 2008-11-20T13:56:25Z <p>I have a form I am submitting via AJAX (using prototype and the built-in rails 'form_remote_tag' helper).<br /> What I would like is to update one div (a status area) if there are form validation errors but a different div (the div where the form lives) if the submit goes through sucessfully.</p> <p>My code looks something like this:</p> <pre><code>&lt;div id="recipe-status"&gt;&lt;!-- I want form validation errors to go here --&gt;&lt;/div&gt; &lt;div id="recipe"&gt; &lt;%= form_remote_tag(:update =&gt; "recipe-status", :before =&gt; "Element.show('wait-indicator')", :success =&gt; "Element.hide('wait-indicator')", :complete =&gt; visual_effect(:appear, "recipe-status"), :url =&gt; { :action =&gt; 'import', :id =&gt; @recipe.id }, :failure =&gt; "alert('Unable to import recipes at present')") %&gt; &lt;-- Form goes here, I want this to be replaced if the submit succeeds --&gt; &lt;/div&gt; </code></pre> <p>The only way I can think of doing this is to return a HTTP error status if there is a validation error but that seems like a bit of a hack. Is there a cleaner way of doing it at all?</p> http://stackoverflow.com/questions/283263/why-download-only-for-apt-get-cron-job/286517#286517 1 Answer by Darren Greaves for why download only for apt-get cron job Darren Greaves 2008-11-13T08:26:13Z 2008-11-13T08:26:13Z <p>I run a Ubuntu server and have the following run as root once a week.</p> <pre><code>/usr/bin/apt-get update &amp;&amp; /usr/bin/apt-get -s -u upgrade </code></pre> <p>The '-s' option tells apt-get to "simulate" updating the packages but not to actually do anything.<br /> The net effect is I get an email (via cron) telling me what new packages are available.</p> <p>I can then log in and run it by hand, taking the necessary precautions (backups etc) beforehand.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/285148/where-should-my-non-model-non-controller-code-live 6 Where should my non-model/non-controller code live? Darren Greaves 2008-11-12T20:02:11Z 2008-11-12T20:07:19Z <p>Hi, I've written a rails app that follows the regular directory structure (model code in models, controller code in controllers).</p> <p>But I'm now working on a new feature and for that I have written some (what I would call) "service" code.<br /> The new feature is to import some data into the system, at the moment it's two classes to do the importing but could expand to more.</p> <p>I don't believe the new code belongs in model as it's not modelling any object (it's not directly related to any single object either. I certainly don't think it belongs in controller either as it's not presentation logic.</p> <p>So, I've created a "app/services" directory and put it in there. I've also created a "test/services" directory where I have put my tests.</p> <p>All well and good I thought but when I run 'rake:test' or 'autotest' my new services tests are not run.<br /> Now I expect there is a way to make rake pick them up but is this a warning flag that I have done something wrong?<br /> Is there some other place the code should live or am I somehow not doing things "the Rails way"?</p> <p>Generally whenever I've hit a problem like this before I've usually found that rails had a solution already, but I was not aware of the convention. Is this one of those cases?</p> http://stackoverflow.com/questions/197976/executing-multiple-commands-from-a-windows-cmd-script 2 Executing multiple commands from a Windows cmd script Darren Greaves 2008-10-13T15:23:54Z 2008-10-13T15:53:05Z <p>I'm trying to write a Windows cmd script to perform several tasks in series. However, it always stops after the first command in the script.</p> <p>The command it stops after is a maven build (not sure if that's relevant).</p> <p>How do I make it carry on and run each task in turn please?</p> <p>Installing any software or configuring the registry etc is completely out of the question - it has to work on a vanilla Windows XP installation I'm afraid.</p> <p>Ideally I'd like the script to abort if any of the commands failed, but that's a "nice to have", not essential.</p> <p>Thanks.</p> http://stackoverflow.com/questions/884760/setting-up-ehcache-replication-what-multicast-settings-do-i-need/1323295#1323295 Comment by Darren Greaves on Setting up ehcache replication - what multicast settings do I need? Darren Greaves 2009-08-27T10:26:21Z 2009-08-27T10:26:21Z Accepting as it answers question about port numbers. Good tip on spaces in paths too although I wasn't affected as I always install Java stuff in a path without spaces. http://stackoverflow.com/questions/668158/pair-programming-means-double-cost-per-developer-is-it-worth-that-money/808227#808227 Comment by Darren Greaves on Pair programming means double cost per developer. Is it worth that money? Darren Greaves 2009-06-05T06:36:19Z 2009-06-05T06:36:19Z Agree on supporting what you've built. I learnt so much more about building websites once I had to support the one I'd built. http://stackoverflow.com/questions/106591/do-you-ever-use-the-volatile-keyword-in-java/106787#106787 Comment by Darren Greaves on Do you ever use the volatile keyword in Java? Darren Greaves 2009-06-03T10:13:44Z 2009-06-03T10:13:44Z I concur - I've used volatile for the exact same reason - tracking when to end a loop in a multi-threaded application. http://stackoverflow.com/questions/931536/how-do-i-launch-a-completely-independent-process-from-a-java-program/931604#931604 Comment by Darren Greaves on How do I launch a completely independent process from a Java program? Darren Greaves 2009-05-31T08:43:51Z 2009-05-31T08:43:51Z Oh yeah, hmm, good point. :-) http://stackoverflow.com/questions/884760/setting-up-ehcache-replication-what-multicast-settings-do-i-need/884877#884877 Comment by Darren Greaves on Setting up ehcache replication - what multicast settings do I need? Darren Greaves 2009-05-28T08:12:25Z 2009-05-28T08:12:25Z Hi, it seems multicast is enabled - I got my local friendly sysadmin to check. I have yet to retest as I am on another task now - will post my findings when I do. http://stackoverflow.com/questions/89579/can-you-reliably-set-or-delete-a-cookie-during-the-server-side-processing-of-an-a Comment by Darren Greaves on Can you reliably set or delete a cookie during the server side processing of an Ajax (XHR) call? Darren Greaves 2009-05-28T06:58:14Z 2009-05-28T06:58:14Z I wondered about this as I have had trouble deleting a cookie in a server-side DWR request. I can create them fine but can't delete them - have since figured out a cookie-free solution after assuming it couldn't be done. http://stackoverflow.com/questions/914659/accessing-dwr-post-data-in-a-spring-interceptor/919393#919393 Comment by Darren Greaves on Accessing DWR post data in a Spring Interceptor Darren Greaves 2009-05-28T06:55:21Z 2009-05-28T06:55:21Z This was the solution I found after posting the question, thanks. http://stackoverflow.com/questions/914659/accessing-dwr-post-data-in-a-spring-interceptor/916626#916626 Comment by Darren Greaves on Accessing DWR post data in a Spring Interceptor Darren Greaves 2009-05-27T19:23:27Z 2009-05-27T19:23:27Z Hiya, am not using acegi I'm afraid. I have figured out an alternative solution anyway which I will post shortly. http://stackoverflow.com/questions/906634/running-a-rails-rjs-template-from-a-jquery-get-request/906756#906756 Comment by Darren Greaves on Running a rails RJS template from a jquery get request Darren Greaves 2009-05-25T17:19:04Z 2009-05-25T17:19:04Z Thanks - the other answer worked for me but I'll read up on the observer stuff when I get a chance as it looks useful. http://stackoverflow.com/questions/906634/running-a-rails-rjs-template-from-a-jquery-get-request/907056#907056 Comment by Darren Greaves on Running a rails RJS template from a jquery get request Darren Greaves 2009-05-25T17:17:15Z 2009-05-25T17:17:15Z That worked perfectly thanks! http://stackoverflow.com/questions/884760/setting-up-ehcache-replication-what-multicast-settings-do-i-need/884877#884877 Comment by Darren Greaves on Setting up ehcache replication - what multicast settings do I need? Darren Greaves 2009-05-19T20:38:22Z 2009-05-19T20:38:22Z Hi, it's on Windows (have added that to the question now). Is that what you mean by &quot;servers&quot; - I need to enable it in the OS? http://stackoverflow.com/questions/459713/regex-for-parsing-tags-from-a-string-flickr-style/459844#459844 Comment by Darren Greaves on Regex for parsing tags from a string.. Flickr style Darren Greaves 2009-03-19T16:08:54Z 2009-03-19T16:08:54Z I just did this in Java. Used Matcher.find and Matcher.group to loop over a String as scan does above. Regex worked perfectly, thanks! http://stackoverflow.com/questions/301435/updating-different-divs-from-ajax-depending-on-validation-errors/305368#305368 Comment by Darren Greaves on Updating different divs from AJAX depending on validation errors Darren Greaves 2008-11-21T11:26:01Z 2008-11-21T11:26:01Z Thanks for that - I don't mind the ramp-up - the site doesn't use lots of AJAX anyway. http://stackoverflow.com/questions/301435/updating-different-divs-from-ajax-depending-on-validation-errors/302926#302926 Comment by Darren Greaves on Updating different divs from AJAX depending on validation errors Darren Greaves 2008-11-19T20:46:55Z 2008-11-19T20:46:55Z Cool, will do, thanks for the help. I wanted to look at JQuery anyway so this is a good reason to do so. http://stackoverflow.com/questions/301435/updating-different-divs-from-ajax-depending-on-validation-errors/302926#302926 Comment by Darren Greaves on Updating different divs from AJAX depending on validation errors Darren Greaves 2008-11-19T18:51:00Z 2008-11-19T18:51:00Z Are you suggesting my function returns JSON instead of a template? I did consider that as a solution but it seemed fiddly to pass the error messages back. Or are you just suggesting I swap from Prototype to JQuery?