User Michael Neale - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T06:22:10Z http://stackoverflow.com/feeds/user/699 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/486665/is-there-a-way-in-scala-to-convert-from-any-map-to-java-util-map 2 Is there a way in scala to convert from any Map to java.util.Map ? Michael Neale 2009-01-28T06:32:09Z 2009-12-07T09:07:22Z <p>I use a lot of scala maps, occasionally I want to pass them in as a map to a legacy java api which wants a java.util.Map (and I don't care if it throws away any changes). </p> http://stackoverflow.com/questions/486665/is-there-a-way-in-scala-to-convert-from-any-map-to-java-util-map/1857943#1857943 3 Answer by Michael Neale for Is there a way in scala to convert from any Map to java.util.Map ? Michael Neale 2009-12-07T05:14:26Z 2009-12-07T05:14:26Z <p>An excellent library I have found that does a better job of this: </p> <p><a href="http://github.com/jorgeortiz85/scala-javautils" rel="nofollow">http://github.com/jorgeortiz85/scala-javautils</a></p> <p>(bad name, awesome library). You explicitly invoke .asJava or .asScala depending on what direction you want to go. No surprises. </p> http://stackoverflow.com/questions/1856996/doing-a-http-put-from-a-browser 1 Doing a HTTP PUT from a browser Michael Neale 2009-12-06T23:24:54Z 2009-12-07T03:00:58Z <p>I would like to know what the definitive (?) answer is for how to do things other then POST/GET from a browser - either a HTML form or Ajax, as I hear mixed reports on what browsers allow what (specifically on the ajax side). </p> <p>When building a back end in RESTful style it is nice to use proper verbs like PUT, HEAD, OPTIONS etc... in rails, a hidden form field called <em>method</em> (IIRC?) is used to simulate this, and at the back end the dispatch to the appropriate controller for the verb. Is this now (in late 2009) necessary? what are the conventions? </p> http://stackoverflow.com/questions/1853613/sinatra-rack-sleep-until-response-ready-like-exchange-activesync/1853616#1853616 1 Answer by Michael Neale for Sinatra/Rack Sleep until Response Ready (like Exchange ActiveSync) Michael Neale 2009-12-05T22:01:42Z 2009-12-05T22:01:42Z <p>Could this help ? <a href="http://macournoyer.com/blog/2009/06/04/pusher-and-async-with-thin/" rel="nofollow">http://macournoyer.com/blog/2009/06/04/pusher-and-async-with-thin/</a></p> http://stackoverflow.com/questions/1837547/erlang-and-scala-do-they-run-on-apache/1844966#1844966 0 Answer by Michael Neale for erlang and scala, do they run on apache? Michael Neale 2009-12-04T05:03:35Z 2009-12-04T05:03:35Z <p>Apache mod_proxy will allow you to "front" any web server/app with Apache. There is mod_jk for connecting with things like Tomcat (for scala). <a href="http://yarivsblog.com/articles/2007/01/11/erlyweb-tutorial-creating-a-simple-login-page/" rel="nofollow">http://yarivsblog.com/articles/2007/01/11/erlyweb-tutorial-creating-a-simple-login-page/</a> shows how you might run erlang with its own web server. I don't believe there is a mod_erlang yet (not sure how that would actually work). </p> http://stackoverflow.com/questions/1818964/setting-globals-in-drools/1844587#1844587 0 Answer by Michael Neale for Setting globals in Drools Michael Neale 2009-12-04T03:02:06Z 2009-12-04T03:02:06Z <p>You might be able to do something like: </p> <p>drools.getWorkingMemory().setGlobal... (similar to above, what kris said).</p> http://stackoverflow.com/questions/575902/why-is-skipping-nodes-from-a-query-very-slow-in-jackrabbit 0 Why is skipping nodes from a query very slow in jackrabbit? Michael Neale 2009-02-22T21:59:50Z 2009-11-09T15:16:44Z <p>When I perform a simple query like this:</p> <pre><code>select * from nodeType </code></pre> <p>Calling <code>skip(N)</code> on the range iterator is slow.</p> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/1618736/what-is-the-this-accessor-that-shows-up-in-drools/1622377#1622377 0 Answer by Michael Neale for What is the this[''] accessor that shows up in Drools Michael Neale 2009-10-25T22:57:12Z 2009-10-25T22:57:12Z <p>No isn't an equivalent of that style of properties in drools java - all facts must be strongly defined up front before compiling. </p> <p>There may be a way to use a field which is a Map though, and access things via keys. </p> http://stackoverflow.com/questions/1615116/in-drools-rules-how-to-use-two-different-arraylist-objects-obj1-is-used-in-rule/1622372#1622372 0 Answer by Michael Neale for In Drools Rules, how to use two different ArrayList objects,obj1 is used in rule 1 and obj2 used in rule2? Michael Neale 2009-10-25T22:55:38Z 2009-10-25T22:55:38Z <p>You don't directly control what rules fire - the constraints on the rules determine this. Filters can only help if you are stopping rules from firing. </p> http://stackoverflow.com/questions/1602299/drools-with-netbeans-6-1/1603490#1603490 1 Answer by Michael Neale for Drools with Netbeans 6.1 Michael Neale 2009-10-21T20:43:38Z 2009-10-21T20:43:38Z <p>There are quite a lot of features in the eclipse plugin, but there is (as yet) no plugin for eclipse. </p> <p>You can of course use drools with netbeans just fine - just means that the IDE features that are rule specific won't be available, but it will work, its Just Another Library then !</p> <p>(I use drools with intelliJ IDEA and I just created a little syntax definition to give me basic highlighting etc... but no other features. If I want them, I jump into eclipse).</p> http://stackoverflow.com/questions/1593614/idiomatic-io-with-scala 5 Idiomatic IO with scala Michael Neale 2009-10-20T10:09:28Z 2009-10-20T19:51:53Z <p>In java, common IO operations involving streams, files and the like can be somewhat annoying. Thus I (and many others) tend to reach for things like commons-io to ease the pain. </p> <p>In scala - are there some better idioms/classes/libraries to use (I know of scala.io.Source etc for reading in text files - but what about streams etc). Is it "normal" to use libraries like commons-io in scala or is there a much better way? </p> http://stackoverflow.com/questions/1574590/drools-debug-listeners-pointless-as-events-dont-have-tostring/1575667#1575667 0 Answer by Michael Neale for Drools Debug listeners pointless as events don't have toString()? Michael Neale 2009-10-15T23:29:15Z 2009-10-15T23:29:15Z <p>The Debug listeners like those don't seem much use for those events - as you say. I think they are mainly intended as a sample implementation? To do anything useful you would need your own implementations of those listeners I guess. </p> http://stackoverflow.com/questions/1552146/given-a-classpath-resource-is-there-a-way-to-get-the-java-io-file-object-that-ha 0 Given a classpath resource, is there a way to get the java.io.File object that has/contains it? Michael Neale 2009-10-12T00:00:50Z 2009-10-12T00:39:07Z <p>If I have a resource on a classpath, I can both load it as stream fine, and there is even a URL representation of it. Unfortunately some implementations of the Url do not implement lastModified correctly.</p> <p>What I would like is to take a path to something in the classpath, and then resolve it to a file that it is in on disk - if it in a jar, then a File pointing to the jar is fine. I can then get the lastModified from the File object instead of the URL, which will be more helpful. </p> http://stackoverflow.com/questions/1291169/spawning-a-separate-process-from-within-a-unit-test 1 Spawning a separate process from within a unit test Michael Neale 2009-08-18T00:18:07Z 2009-08-18T03:08:32Z <p>I have some unit tests (yes, perhaps more integration-ey tests !) that I would like to spin up another jvm, and then run the test code from that "other" JVM (and wait for it to finish, collecting the results). Am interested if there is an easy/reliable way of doing that with junit (eg inherit the classpath of what is needed etc...)</p> <p>Any ideas appreciated. </p> http://stackoverflow.com/questions/9467/best-way-to-write-a-restful-service-client-in-net 3 Best way to write a RESTful service "client" in .Net? Michael Neale 2008-08-13T04:04:05Z 2009-08-17T16:47:31Z <p>What techniques do people use to "consume" services in the REST stile on .Net ? Plain http client? Related to this: many rest services are now using JSON (its tighter and faster) - so what JSON lib is used? </p> http://stackoverflow.com/questions/805280/loading-up-a-web-xml-for-integration-tests-with-jetty 1 Loading up a web.xml for integration tests with jetty Michael Neale 2009-04-30T03:51:27Z 2009-08-07T13:34:06Z <p>OK this is kind of related to : <a href="http://stackoverflow.com/questions/728805/using-jetty-to-install-and-run-servlet-tests-programmatically">http://stackoverflow.com/questions/728805/using-jetty-to-install-and-run-servlet-tests-programmatically</a></p> <p>got great answers there, and have been able to load up servlets programmatically and its all made of awesome. </p> <p>What I would like to do however is load up a web.xml in a test (all in the classpath) and have it run up a server (using the current classpath) - I have seen in docs how to point it to a directory to do that, but I want to work off the classpath (better for in place testing). Essentially validating my web.xml. </p> <p>(its not relevant, but this app is in scala, but I have had no issue with that, everything works as advertised).</p> http://stackoverflow.com/questions/336144/building-a-scala-app-with-maven-that-has-java-source-mixed-in 11 Building a scala app with maven (that has java source mixed in) Michael Neale 2008-12-03T03:22:04Z 2009-08-04T13:48:53Z <p>I have a app where I would like to have mixed Java and Scala source (actually its migrating a java app to scala - but a bit at a time). </p> <p>I can make this work in IDEs just fine, very nice. But I am not sure how to do this with maven - scalac can compile java and scala intertwined, but how to I set up maven for the module? </p> <p>Also, does my scala source have to be a different folder to the java? </p> http://stackoverflow.com/questions/120335/how-do-i-get-maven-to-stamp-a-build-number-into-a-properties-file 5 How do I get maven to "stamp" a build number into a properties file Michael Neale 2008-09-23T11:01:31Z 2009-07-30T21:03:24Z <p>I would like to be able to, as part of a maven build, set the build number (doesn't matter exactly what) in a properties file/class (so I can show it in a UI). Any ideas? </p> http://stackoverflow.com/questions/1186890/is-there-a-way-to-wrap-some-local-cache-around-a-urlconnection 0 Is there a way to wrap some local cache around a URLConnection Michael Neale 2009-07-27T07:28:10Z 2009-07-27T07:37:45Z <p>I am using a URLConnection class - I want to be able to grab a stream to a given URL even if said URL is unavailable (ie cache the last known cope of the content on a URL, to some local file system dir) - now I have written this code a few times (never happy with it) and was wondering if there is something better out there that might be able to do this. </p> http://stackoverflow.com/questions/1183184/could-the-drools-update-method-potentially-be-causing-my-problems/1185865#1185865 0 Answer by Michael Neale for Could the Drools update method potentially be causing my problems. Michael Neale 2009-07-26T23:23:31Z 2009-07-26T23:23:31Z <p>I think you have understood it correctly. An update is kind of like a retract plus an assert. The first thing to be sure of is if your rules are giving you what you want - ie do it work but you just want to improve performance? </p> <p>In some ways you can think of an update (and also checkout the "modify" keyword..) as part of the evils of immutability ;) When you update - you tell the network that the fact has changed, but it doesn't yet track it at a field level (that is TBD) so it may cause more work then is necessary as all these activations are created that are not really needed (as they are using fields that didn't actually change in value). </p> <p>Hard to be more specific - if you provided some sample rules/fact model (if you can in a safe way of course !) we might be able to suggest some ideas to break it down to be more granular. </p> <p>Good luck !</p> http://stackoverflow.com/questions/1042591/how-would-i-use-gwt-to-create-an-infinite-scroll-panel 3 How would I use GWT to create an infinite scroll panel Michael Neale 2009-06-25T07:29:54Z 2009-07-08T22:44:36Z <p>By infinite scrolling, I mean I initially load a few child widgets, and as the user scrolls down lazily load more to fill it out.</p> <p>Any ideas appreciated. </p> <p>(ideally would like something for GWT 1.6 and 1.5)</p> http://stackoverflow.com/questions/1042591/how-would-i-use-gwt-to-create-an-infinite-scroll-panel/1100933#1100933 2 Answer by Michael Neale for How would I use GWT to create an infinite scroll panel Michael Neale 2009-07-08T22:44:36Z 2009-07-08T22:44:36Z <p>I was able to confirm the following works in GWT 1.5 at least: </p> <pre><code> final VerticalPanel vp = new VerticalPanel(); for (int i = 0; i &lt; 40; i++) { vp.add(new HTML("Oh oh")); } final HTML f = new HTML("END"); vp.add(f); final ScrollPanel panel = new ScrollPanel(vp); panel.setHeight("20em"); panel.addScrollListener(new ScrollListener() { HTML end = f; public void onScroll(Widget widget, int scrollLeft, int scrollTop) { int finalPos = end.getAbsoluteTop() + end.getOffsetHeight(); int panelPos = panel.getAbsoluteTop() + panel.getOffsetHeight(); if (finalPos == panelPos) { end = new HTML("MORE !!"); vp.add(end); } } }); </code></pre> <p>Note the interesting bits are the calculations of the positions. </p> http://stackoverflow.com/questions/855667/how-do-i-upload-a-files-to-google-app-engine-app-when-field-name-is-not-known 0 How do I upload a files to google app engine app when field name is not known Michael Neale 2009-05-13T01:28:16Z 2009-05-13T10:15:41Z <p>I have tried a few options, none of which seem to work (if I have a simple multipart form with a named field, it works well, but when I don't know the name I can't just grab all files in the request...). </p> <p>I have looked at <a href="http://stackoverflow.com/questions/81451/upload-files-in-google-app-engine">http://stackoverflow.com/questions/81451/upload-files-in-google-app-engine</a> and it doesn't seem suitable (or to actually work, as someone mentioned the code snipped it untested).</p> http://stackoverflow.com/questions/791590/how-to-install-drools-4-on-mac-osx-10-5-6/804701#804701 0 Answer by Michael Neale for how to install Drools 4 on Mac OSX 10.5.6 Michael Neale 2009-04-29T23:08:31Z 2009-04-29T23:08:31Z <p>Are you installing by building from source? What component of it are you using ? (there are a few, eg eclipse, web or just libraries you use in your app) which would probably affect how you install it. </p> http://stackoverflow.com/questions/754139/is-red-hats-jboss-a-fork-of-the-code-you-get-from-jboss-org/754360#754360 2 Answer by Michael Neale for Is Red Hat's JBOSS a fork of the code you get from JBOSS.org? Michael Neale 2009-04-16T00:45:35Z 2009-04-16T00:45:35Z <p>No its not a fork as in different code - its build from the .org versions and put through various tests/QA environments, certified if necessary etc... </p> <p>Its analagous to what goes on with Fedora and Red Hat Enterprise Linux (I think the idea is to have a similar model) - so if you look into that model it might help explain it better then I can. </p> http://stackoverflow.com/questions/61253/how-to-be-notified-of-file-directory-change-in-c-c-ideally-using-posix 6 How to be notified of file/directory change in C/C++, ideally using POSIX Michael Neale 2008-09-14T10:37:55Z 2009-04-14T18:12:14Z <p>The subject says it all - normally easy and cross platform way is to poll, intelligently. But every OS has some means to notify without polling. Is it possible in a reasonably cross platform way? (I only really care about Windows and Linux, but I use mac, so I thought posix may help?)</p> http://stackoverflow.com/questions/728805/using-jetty-to-install-and-run-servlet-tests-programmatically 0 Using jetty to install and run servlet tests programmatically Michael Neale 2009-04-08T06:49:26Z 2009-04-08T07:24:04Z <p>The jetty servlet container is quick and light enough to run in unit tests (indeed I do to serve up files). </p> <p>It is possible to install actual servlets into it, programmatically (say in a test) and have it run them? </p> http://stackoverflow.com/questions/624372/best-way-to-get-line-numbers-in-text-area-in-firefox 0 Best way to get line numbers in text area in firefox Michael Neale 2009-03-08T21:50:55Z 2009-03-08T22:47:09Z <p>I am interested if it is possible (via plugin or other means) to add line numbers (and perhaps more) to vanilla firefox text areas (I know there are various code editors, and there is its all text plug in, but wasn't sure if there was something simpler that works in place)</p> http://stackoverflow.com/questions/608647/what-is-serialization-in-java/608654#608654 4 Answer by Michael Neale for What is serialization in Java? Michael Neale 2009-03-03T23:17:04Z 2009-03-04T00:56:07Z <p>Serializable is a marker interfaces that tells the JVM is can write out the state of the object to some stream (basically read all the members, and write out their state to a stream, or to disk or something). The default mechanism is a binary format. You can also use it to clone things, or keep state between invocations, send objects across the network etc. </p> <p>You can let eclipse generate one for you (basically just a long random but unique ID). that means you can control when you think a class would be compatible with a serialized version, or not. </p> <p>(note that all the non transient member variables must be of a serializable class, or you will get an error - as the JVM will recurse through the structure writing out the state of each object down to the level of writing primitives to the ObjectOutputStream).</p> http://stackoverflow.com/questions/601033/google-json-ajax-api-how-do-you-get-the-next-page-of-results 1 Google JSON/Ajax API - how do you get the next page of results? Michael Neale 2009-03-02T01:51:19Z 2009-03-02T02:19:47Z <p>According to : <a href="http://code.google.com/apis/ajaxsearch/documentation/#fonje" rel="nofollow">http://code.google.com/apis/ajaxsearch/documentation/#fonje</a></p> <p>I get back a cursor result, but stupidly, the moreResultsUrl returns a URL NOT to the JSON service but to the main site - how do instead fetch the next page of results into JSON? </p> http://stackoverflow.com/questions/1856996/doing-a-http-put-from-a-browser/1857064#1857064 Comment by Michael Neale on Doing a HTTP PUT from a browser Michael Neale 2009-12-07T22:04:34Z 2009-12-07T22:04:34Z Nice - hopefully linking these together will help the google juice for others who look for things like this in future ! http://stackoverflow.com/questions/486665/is-there-a-way-in-scala-to-convert-from-any-map-to-java-util-map/1858758#1858758 Comment by Michael Neale on Is there a way in scala to convert from any Map to java.util.Map ? Michael Neale 2009-12-07T22:02:53Z 2009-12-07T22:02:53Z I agree - the transparent conversions often cause more hassle then they save (its not a total wash, sometimes they are handy). Having Seq methods on java arrays, and eventually other collection types is kinda nice, but beyond that, I like scala-javautils. Wish I found out about it ages ago. http://stackoverflow.com/questions/1856996/doing-a-http-put-from-a-browser/1857518#1857518 Comment by Michael Neale on Doing a HTTP PUT from a browser Michael Neale 2009-12-07T22:01:13Z 2009-12-07T22:01:13Z Good point - same also applies to &quot;odd&quot; headers. http://stackoverflow.com/questions/995944/ssh-library-for-java/996415#996415 Comment by Michael Neale on SSH library for Java Michael Neale 2009-10-30T03:21:28Z 2009-10-30T03:21:28Z That looks good - are there any javadocs for it at all? The examples are somewhat poorly written swing code (from the brief sampling I did). http://stackoverflow.com/questions/1593614/idiomatic-io-with-scala/1594236#1594236 Comment by Michael Neale on Idiomatic IO with scala Michael Neale 2009-10-21T20:48:09Z 2009-10-21T20:48:09Z Yes I knew about that but its only suitable for text/source files, its not a general IO api. http://stackoverflow.com/questions/1519838/java-scala-interop-transparent-list-and-map-conversion/1520179#1520179 Comment by Michael Neale on Java <-> Scala interop: transparent List and Map conversion Michael Neale 2009-10-15T06:59:36Z 2009-10-15T06:59:36Z Thanks for such a thorough write up. Found this via google (of course !) so already saved someone a lot of pain ! http://stackoverflow.com/questions/1291169/spawning-a-separate-process-from-within-a-unit-test/1291176#1291176 Comment by Michael Neale on Spawning a separate process from within a unit test Michael Neale 2009-08-18T00:28:32Z 2009-08-18T00:28:32Z well that works for ant - any way to do it programmatically? http://stackoverflow.com/questions/805280/loading-up-a-web-xml-for-integration-tests-with-jetty/1244719#1244719 Comment by Michael Neale on Loading up a web.xml for integration tests with jetty Michael Neale 2009-08-18T00:08:14Z 2009-08-18T00:08:14Z (and its fast ! great for &quot;unit&quot; tests which are really more then unit tests !) - thanks for updating this post BTW. http://stackoverflow.com/questions/805280/loading-up-a-web-xml-for-integration-tests-with-jetty/1244719#1244719 Comment by Michael Neale on Loading up a web.xml for integration tests with jetty Michael Neale 2009-08-18T00:01:31Z 2009-08-18T00:01:31Z yes - that is what I ended up doing. and it works well. http://stackoverflow.com/questions/1231071/drools-how-to-insert-a-fact-after-checking-if-it-is-not-already-present-in-worki/1233209#1233209 Comment by Michael Neale on Drools: How to insert a fact after checking if it is not already present in working memory Michael Neale 2009-08-05T23:34:43Z 2009-08-05T23:34:43Z No that seems fine - do something like that. Or you can use a flow group or something to make sure you only do this up front... http://stackoverflow.com/questions/1186858/eval-in-lhs-of-rules-in-drools Comment by Michael Neale on eval() in LHS of Rules in Drools Michael Neale 2009-07-27T23:40:24Z 2009-07-27T23:40:24Z Not sure what this has to do with eval() in LHS? http://stackoverflow.com/questions/1042591/how-would-i-use-gwt-to-create-an-infinite-scroll-panel/1043776#1043776 Comment by Michael Neale on How would I use GWT to create an infinite scroll panel Michael Neale 2009-06-28T01:08:26Z 2009-06-28T01:08:26Z Thanks Chris - I guess the trick is then to now the heights and when to trigger things to being added to the panel etc.. http://stackoverflow.com/questions/911917/efficient-drools-evalution-for-element-in-array-or-collection Comment by Michael Neale on Efficient Drools evalution for element in array or collection Michael Neale 2009-05-27T02:38:20Z 2009-05-27T02:38:20Z Are you able to paste a code sample? http://stackoverflow.com/questions/81451/upload-files-in-google-app-engine/259916#259916 Comment by Michael Neale on Upload files in Google App Engine Michael Neale 2009-05-18T12:18:43Z 2009-05-18T12:18:43Z request.FILES is for django only, for the default (webob - do what you described). http://stackoverflow.com/questions/871187/using-eclipse-with-large-workspaces Comment by Michael Neale on Using Eclipse with large workspaces Michael Neale 2009-05-15T22:56:54Z 2009-05-15T22:56:54Z 255 projects ! WOW ! well I can see that happening for what you do...