User Lars Westergren - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T09:01:14Z http://stackoverflow.com/feeds/user/15627 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/166379/immutable-functional-objects-in-highly-mutable-domain 7 Immutable functional objects in highly mutable domain Lars Westergren 2008-10-03T11:16:26Z 2009-05-16T10:12:02Z <p>Hi, I'm currently learning functional programming in my spare time with Scala, and I have an idle newbie question.</p> <p>I can see the elegance of having immutable objects when doing something like calculating a Haar wavelet transform - i.e. when the data itself being represented by the objects doesn't change.</p> <p>But I saw a blog where someone had a small game as an example when demonstrating immutability. If a creature object recieved damage, it didn't change its state - it returned a new creature object with the new hitpoints and a new "aggro towards X" flag. But if we were to design something like a MMORPG, World of Warcraft say. A hundred players in a battleground... possibly thousands of attacks and buffing/debuffing spell effects affecting them in different ways. Is it still possible to design the system with completely immutable objects? To me it would seem like there would be a ginormous swarm of new instances each 'tick'. And to get the currently valid instance of objects, all clients would constantly have to go through some sort of central "gameworld" object, or?</p> <p>Does functional programming scale for this, or is this a case of "best tool for best job, probably not immutable here"?</p> http://stackoverflow.com/questions/555971/switch-to-java-from-php-ajax-in-45-days-or-so/556117#556117 0 Answer by Lars Westergren for Switch to Java from PHP/Ajax in 45 days (or so) Lars Westergren 2009-02-17T09:46:27Z 2009-02-17T09:46:27Z <blockquote> <p>So I'm looking a list of instructions on how should I learn Java. (and not to spend too much time on things that are not so important)</p> </blockquote> <p>I liked Head First Java, but I know some find the format offputting, and experienced programmers probably find it a bit simplistic, the SJCP Study Guide by same author (Kathy Sierra) goes more in-depth while keeping playful tone. There is of course <a href="http://java.sun.com/docs/books/tutorial/" rel="nofollow">the Java Tutorial</a> online where you can get a quick overview of the main parts of the platform. Effective Java is a good "best practices" book once you have gotten the hang of the basics.</p> <blockquote> <p>Also you can suggest framework, from what i seen, struts looks nice, spring too, but it seam that it have too much XML configuration...</p> </blockquote> <p>Another vote from me for Wicket as web framework. For persistence/db part, I recommend you look into iBatis before trying Hibernate. This is a "sql query" oriented framework rather than object-relational mapping, so it will probably feel more familiar to you. I haven't used it yet myself, but from what I have heard it probably has fewer "gotchas" (with regards to caching, performance etc) than Hibernate too.</p> http://stackoverflow.com/questions/179478/learning-resources-stack-machines-jvm-especially 2 Learning resources - stack machines, JVM especially Lars Westergren 2008-10-07T17:15:33Z 2009-02-16T13:37:04Z <p>Hi, I'm curious if anyone have any really good tutorials/articles/books for learning about stack machines in general, and the JVM in particular. I know these ones:</p> <p><a href="http://www.artima.com/insidejvm/applets/EternalMath.html" rel="nofollow">http://www.artima.com/insidejvm/applets/EternalMath.html</a></p> <p><a href="http://www.ibm.com/developerworks/ibm/library/it-haggar_bytecode/" rel="nofollow">http://www.ibm.com/developerworks/ibm/library/it-haggar_bytecode/</a></p> <p><a href="http://www.theserverside.com/tt/articles/article.tss?l=GuideJavaBytecode" rel="nofollow">http://www.theserverside.com/tt/articles/article.tss?l=GuideJavaBytecode</a></p> <p>Appearently the books Inside the JVM by Bill Winners and Programming for the JVM are good, even though they are old.</p> <p>These are all on my "toread" list, for rainy autumn weekends.</p> <p>Anyone have any other suggestions?</p> http://stackoverflow.com/questions/179478/learning-resources-stack-machines-jvm-especially/553324#553324 0 Answer by Lars Westergren for Learning resources - stack machines, JVM especially Lars Westergren 2009-02-16T13:37:04Z 2009-02-16T13:37:04Z <p>I've found a lot of what I was looking for now, in the final chapter of "Structure and Interpretation of Computer Programs". You are going to have to read through all the book though since they constantly build on examples and concepts from earlier on.</p> http://stackoverflow.com/questions/455184/evaluation-of-part-of-clojure-cond 1 Evaluation of part of Clojure cond Lars Westergren 2009-01-18T14:08:09Z 2009-01-20T11:01:07Z <p>Trying to do exercise 1.16 (iterative version of fast-exp) in "Structure and Interpretation of Computer Programs" with Clojure I came up with this:</p> <pre><code>(defn fast-it-exp [base exp res] (cond (= exp 0) res (odd? exp) fast-it-exp base (- exp 1) (* base res) :else fast-it-exp base (/ exp 2) (* base base res))) </code></pre> <p>Trying it out:</p> <pre><code>user=&gt; (fast-it-exp 0 0 10) 10 ;yep user=&gt; (fast-it-exp 2 2 2) 1 ;no... user=&gt; (fast-it-exp 1 1 1) #&lt;user$fast_it_exp__59 user$fast_it_exp__59@138c63&gt; ;huh?! </code></pre> <p>Seems the "odd" part of the cond expression returns a function instead of evaluating. Why? I've tried putting parenthesis around the expressions after the predicates but that seems to be incorrect syntax, this is the best I've been able to come up with. I'm using rev 1146 of Clojure.</p> http://stackoverflow.com/questions/355732/using-subclassing-to-replace-a-java-class-that-doesnt-implement-an-interface/355768#355768 2 Answer by Lars Westergren for Using subclassing to replace a Java class that doesn't implement an interface Lars Westergren 2008-12-10T11:32:25Z 2008-12-10T11:32:25Z <blockquote> <p>This works nicely, but is obviously not ideal - if File changes, I will not have overridden any new methods or constructors and this will expose the underlying empty abstract pathname. Am I missing something obvious?</p> </blockquote> <p>No, you have spotted a problem with using inheritance - that subclasses get tightly coupled to superclasses and their internals, so it can be fragile. That is why Effective Java and others say you should favour delegation before inheritance if possible.</p> <p>I think krosenvold's solution sounds clean.</p> http://stackoverflow.com/questions/299068/how-slow-are-java-exceptions/299165#299165 1 Answer by Lars Westergren for How slow are Java exceptions? Lars Westergren 2008-11-18T15:54:50Z 2008-11-19T06:57:34Z <p>I think the first article refer to the act of traversing the call stack and creating a stack trace as being the expensive part, and while the second article doesn't say it, I think that is the most expensive part of object creation. John Rose has <a href="http://blogs.sun.com/jrose/entry/longjumps_considered_inexpensive" rel="nofollow">an article where he describes different techniques for speeding up exceptions</a>. (Preallocating and reusing an exception, exceptions without stack traces, etc)</p> <p>But still - I think this should be considered only a necessary evil, a last resort. Johns reason for doing this is to emulate features in other languages which aren't (yet) available in the JVM. You should NOT get into the habit of using exceptions for control flow. Especially not for performance reasons! As you yourself mention in #2, you risk masking serious bugs in your code this way, and it will be harder to maintain for new programmers.</p> <p>Microbenchmarks in Java are surprisingly hard to get right (I've been told), especially when you get into JIT territory, so I really doubt that using exceptions is faster than "return" in real life. For instance, I suspect you have somewhere between 2 and 5 stack frames in your test? Now imagine your code will be invoked by a JSF component deployed by JBoss. Now you might have a stack trace which is several pages long.</p> <p>Perhaps you could post your test code?</p> http://stackoverflow.com/questions/17840/how-can-i-learn-about-parser-combinators/283421#283421 0 Answer by Lars Westergren for How can I learn about parser combinators? Lars Westergren 2008-11-12T09:30:56Z 2008-11-12T09:30:56Z <p>Cay Horstmann has <a href="http://horstmann.com/sjsu/cs152/schedule.html" rel="nofollow">4 combinator parser lectures in Scala</a>, with exercises. There is another Scala example <a href="http://debasishg.blogspot.com/2008/04/external-dsls-made-easy-with-scala.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/256694/scala-combinator-parsers-distinguish-between-number-strings-and-variable-string 3 Scala combinator parsers - distinguish between number strings and variable strings Lars Westergren 2008-11-02T09:22:15Z 2008-11-02T19:44:07Z <p>Hi,</p> <p>I'm doing Cay Horstmann's combinator parser exercises, I wonder about the best way to distinguish between strings that represent numbers and strings that represent variables in a match statement:</p> <pre><code>def factor: Parser[ExprTree] = (wholeNumber | "(" ~ expr ~ ")" | ident) ^^ { case a: wholeNumber =&gt; Number(a.toInt) case a: String =&gt; Variable(a) } </code></pre> <p>The second line there, "case a: wholeNumber" is not legal. I thought about a regexp, but haven't found a way to get it to work with "case".</p> http://stackoverflow.com/questions/256697/scala-syntax-pass-string-to-object 3 Scala syntax - pass string to object Lars Westergren 2008-11-02T09:27:37Z 2008-11-02T11:50:49Z <p>While playing around with regexps in Scala I wrote something like this:</p> <pre><code>scala&gt; val y = "Foo" y: java.lang.String = Foo scala&gt; y "Bar" scala&gt; </code></pre> <p>As you can see, the second statement is just silently accepted. Is this legal a legal statement, and if so, what does it do? Or is it a bug in the parser and there should be an error message?</p> http://stackoverflow.com/questions/226618/how-to-transform-time-value-into-yyyy-mm-dd-format-in-java/226653#226653 1 Answer by Lars Westergren for How to transform time value into YYYY-MM-DD format in Java Lars Westergren 2008-10-22T16:47:19Z 2008-10-22T16:47:19Z <pre><code>final Date modDate = new Date(lastmodified); final SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd"); final String lasmod = f.format(modDate); </code></pre> <p><a href="http://java.sun.com/javase/6/docs/api/java/text/SimpleDateFormat.html" rel="nofollow">SimpleDateFormat</a></p> http://stackoverflow.com/questions/224952/most-concise-way-to-read-the-contents-of-a-file-input-stream-in-java/224970#224970 0 Answer by Lars Westergren for Most concise way to read the contents of a file/input stream in Java? Lars Westergren 2008-10-22T09:12:28Z 2008-10-22T12:24:38Z <pre><code>String content = (new RandomAccessFile(new File("test.txt"))).readUTF(); </code></pre> <p>Unfortunately Java is very picky about the source file being valid UTF8 though, or you will get an EOFException or UTFDataFormatException.</p> http://stackoverflow.com/questions/141241/does-java-have-a-using-clause/178359#178359 0 Answer by Lars Westergren for Does java have a using clause? Lars Westergren 2008-10-07T13:12:15Z 2008-10-07T13:12:15Z <p>If we get BGGA closures in Java, this would also open up for similar structures in Java. Gafter has used this example in his slides, for example:</p> <pre><code>withLock(lock) { //closure } </code></pre> http://stackoverflow.com/questions/161288/what-would-be-the-best-book-to-read-in-order-to-really-grok-oop/161341#161341 2 Answer by Lars Westergren for What would be the best book to read in order to really 'grok' OOP? Lars Westergren 2008-10-02T08:27:22Z 2008-10-02T08:27:22Z <p>I may get booed for this here, but I actually liked Head First Java. It is easy to read, and the authors are experienced teachers of newbies, so a lot of the questions you get when you read it are often immediately answered. Though if you are an experienced programmer you will probably find it too basic, and some people find the cartoony style offputting.</p> <p>If you come from a c/c++ background, playing around with a bit purer OO language than Java is a good idea too, where even integers are objects with methods on them, and everything is "pass message to object". Say, Ruby, Python, Smalltalk. You start "getting" OO more completely then.</p> http://stackoverflow.com/questions/32333/how-can-i-program-defensively-in-ruby/161295#161295 1 Answer by Lars Westergren for How can I program defensively in Ruby? Lars Westergren 2008-10-02T08:08:14Z 2008-10-02T08:08:14Z <p>You could take a look at Why the Lucky Stiff's "Sandbox"project, which you can use if you worry about potentially running unsafe code. <a href="http://code.whytheluckystiff.net/sandbox/" rel="nofollow">http://code.whytheluckystiff.net/sandbox/</a></p> <p>An example (online TicTacToe): <a href="http://www.elctech.com/blog/safely-exposing-your-app-to-a-ruby-sandbox" rel="nofollow">http://www.elctech.com/blog/safely-exposing-your-app-to-a-ruby-sandbox</a></p> http://stackoverflow.com/questions/161212/sending-mass-emails-programmatically/161236#161236 1 Answer by Lars Westergren for Sending mass emails programmatically Lars Westergren 2008-10-02T07:43:06Z 2008-10-02T07:43:06Z <p>For Java, there is <a href="http://java.sun.com/products/javamail/" rel="nofollow">http://java.sun.com/products/javamail/</a> I've used it in an application. Pretty easy to set up and use.</p> <p>In Ruby it is extremely simple, but I haven't used it so can't say anything about performance. <a href="http://snippets.dzone.com/posts/show/2362" rel="nofollow">http://snippets.dzone.com/posts/show/2362</a></p> <p>That said... I doubt PHP itself would be too slow to send mails. Perhaps you have some bottleneck in your application?</p> http://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard/156448#156448 -1 Answer by Lars Westergren for Regexp recognition of email address hard? Lars Westergren 2008-10-01T06:28:17Z 2008-10-01T07:43:39Z <p><em>Can anyone provide some insight as to why that is?</em></p> <p>Yes, it is an extremely complicated standard that allows lots of stuff that no one really uses today. :)</p> <p><em>Are there any known and proven regexps that actually do this fully?</em></p> <p>Here is one attempt to parse the whole standard fully...</p> <p><a href="http://ex-parrot.com/~pdw/Mail-RFC822-Address.html" rel="nofollow">http://ex-parrot.com/~pdw/Mail-RFC822-Address.html</a></p> <p><em>What are some good alternatives to using regexps for matching email addresses?</em></p> <p>Using an existing framework for it in whatever language you are using I guess? Though those will probably use regexp internally. It is a complex string. Regexps are designed to parse complex strings, so that really is your best choice.</p> <p><strong>Edit</strong>: I should add that the regexp I linked to was just for fun. I do not endorse using a complex regexp like that - some people say that "if your regexp is more than one line, it is guaranteed to have a bug in it somewhere". I linked to it to illustrate how complex the standard is.</p> http://stackoverflow.com/questions/156508/closing-a-java-fileinputstream/156546#156546 0 Answer by Lars Westergren for Closing a Java FileInputStream. Lars Westergren 2008-10-01T07:18:51Z 2008-10-01T07:18:51Z <p>Hopefully we will get closures in Java some day, and then we will lose lots of the verbosity.</p> <p>So instead there will be a helper method somwhere in javaIO that you can import, it will probably takes a "Closable" interface and also a block. Inside that helper method the try {closable.close() } catch (IOException ex){ //blah} is defined once and for all, and then you will be able to write</p> <pre><code> Inputstream s = ....; withClosable(s) { //your code here } </code></pre> http://stackoverflow.com/questions/156280/using-mercurial-is-there-an-easy-way-to-diff-my-working-copy-with-the-tip-file-i/156340#156340 1 Answer by Lars Westergren for Using Mercurial, is there an easy way to diff my working copy with the tip file in the default remote repository Lars Westergren 2008-10-01T05:30:08Z 2008-10-01T05:30:08Z <p>You could try having two repositories locally - one for incoming stuff, and one for outgoing. Then you should be able to do diff with any tools. See here:</p> <p><a href="http://weblogs.java.net/blog/kohsuke/archive/2007/11/using_mercurial.html" rel="nofollow">http://weblogs.java.net/blog/kohsuke/archive/2007/11/using_mercurial.html</a></p> http://stackoverflow.com/questions/152077/programming-against-interfaces-do-you-write-interfaces-for-all-your-domain-class/152121#152121 1 Answer by Lars Westergren for Programming against interfaces: Do you write interfaces for all your domain classes? Lars Westergren 2008-09-30T07:42:25Z 2008-09-30T07:42:25Z <p>Even if you are pretty sure there is only going to be one concrete type of a model object, using interfaces makes mocking and testing somewhat easier (but these days there are framworks that can help you generate mock classes automatically, even for concrete Java classes- Mockito, JTestR, Spring, Groovy...)</p> <p>But I even more often use interfaces for services, since it is even more important to mock away them during testing, and programming against interfaces helps you think about stuff like encapsulation.</p> http://stackoverflow.com/questions/147671/whats-the-best-way-to-deploy-a-jruby-on-rails-application-to-tomcat/147712#147712 3 Answer by Lars Westergren for What's the best way to deploy a JRuby on Rails application to Tomcat? Lars Westergren 2008-09-29T06:31:13Z 2008-09-29T06:31:13Z <p>I don't have much experience on this, so I don't know if I can give you the BEST way, but if Capistrano doesn't work, and you can't have a separate MRI install just to run it, you have just a few alternatives left:</p> <p>Try running plain Rake and write your own deployment target: <a href="http://www.gra2.com/article.php/deploy-ruby-on-rails-applications-rake" rel="nofollow">http://www.gra2.com/article.php/deploy-ruby-on-rails-applications-rake</a></p> <p>Or use Ant or Maven.</p> <p>Or if it just ONE server you have to deploy to, you could just hack together two Ruby scripts - one that listens on the server for shutdown/startup requests, and one local that you run to: Send shutdown, scp over the file, send startup.</p> <p>By the way, have you submitted any integration bugs you find with Capistrano to the JRuby team? I'm sure they'd be happy to have any contribution. :)</p> http://stackoverflow.com/questions/138444/sql-reporting-services-out-of-memory-exception/138447#138447 0 Answer by Lars Westergren for SQL Reporting services - Out of Memory Exception Lars Westergren 2008-09-26T09:24:12Z 2008-09-26T13:00:30Z <p>This is impossible to answer unless you expand your question. What language are you using? Which report generating framwork? How does the SQL query look like?</p> <p><strong>Edit:</strong> Ah, ok, Microsoft SQL Reporting Services. Well, it should easily handle queries on tables with millions of tuples, I'm sure. It all depends on how you have structured your query, so until you give us that we can't help you.</p> http://stackoverflow.com/questions/138157/java-console-like-web-applet/138206#138206 4 Answer by Lars Westergren for Java - Console-like web applet. Lars Westergren 2008-09-26T07:52:10Z 2008-09-26T07:52:10Z <p>Sure, just make into an applet, put a small swing UI on it with a JFrame with two components - one for writing output to, and one for entering inputs from. Embed the applet in the page.</p> http://stackoverflow.com/questions/137975/what-is-so-bad-about-singletons/138058#138058 0 Answer by Lars Westergren for What is so bad about Singletons Lars Westergren 2008-09-26T06:44:52Z 2008-09-26T06:44:52Z <p><a href="http://gbracha.blogspot.com/2008/02/cutting-out-static.html" rel="nofollow">Gilad Bracha</a> has a good article about why "static" is bad, and what he says for static goes double for Singletons. His language NewSpeak has done away with static alltogether!</p> http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/137918#137918 11 Answer by Lars Westergren for Using "final" modifier whenever applicable in java Lars Westergren 2008-09-26T05:31:56Z 2008-09-26T05:31:56Z <p>Effective Java has an item that says "Favour immutable objects". Declaring fields as final helps you take some small steps towards this, but there is of course much more to truly immutable objects than that.</p> <p>If you know that objects are immutable they can be shared for reading among many threads/clients without synchronization worries, and it is easier to reason about how the program runs.</p> http://stackoverflow.com/questions/132798/what-should-every-programmer-know/132832#132832 1 Answer by Lars Westergren for What should every programmer know? Lars Westergren 2008-09-25T11:55:25Z 2008-09-25T11:55:25Z <p>Well... there are about a ten thousand things a programmer should know before they start getting productive, so this question is too generic and subjective. But a willingness to listen and learn new stuff, and a basic ability to Google is always a plus...</p> http://stackoverflow.com/questions/132754/different-layouts-and-i18n-in-jsp-application/132787#132787 1 Answer by Lars Westergren for Different layouts and i18n in JSP application Lars Westergren 2008-09-25T11:47:39Z 2008-09-25T11:47:39Z <p>This is usually solved by using some templating engine - you create smaller page fragments, and then you declare to the template engine that certain views should consist of these parts, put together in a certain way.</p> <p>Struts tiles is the classic example in the Java world, but it is really getting old and crufty compared to more modern framworks in Java and other languages. Tapestry and Wicket are two more modern ones (haven't used them though).</p> <p>For only 3 pages applying a whole web framework is probably overkill though, but if your site grows...</p> http://stackoverflow.com/questions/132597/maven-dependency-exclusion-for-war-file-but-inclusion-for-tests/132640#132640 5 Answer by Lars Westergren for Maven dependency exclusion for War file, but inclusion for tests Lars Westergren 2008-09-25T11:08:48Z 2008-09-25T11:38:34Z <p>Use the "scope" tag inside your dependency.</p> <pre><code>&lt;scope&gt;test&lt;/scope&gt; </code></pre> <p><a href="http://maven.apache.org/pom.html#Dependencies" rel="nofollow">http://maven.apache.org/pom.html#Dependencies</a></p> <p>edit: if I understand your configuration correctly, the scope=test that you need to add should be added in the mygroup.myartifact POM. That way you can test that artifact with jdbc jar included, but always when other POMS want to include mygroup.myartifact, they don't get jdbc included as a transitive dependency.</p> <p>second edit: Ok, if you don't control the POM you want to include - do an exclusion like you have already done, and then add jdbc as a new dependency, with scope=test.</p> http://stackoverflow.com/questions/131993/how-do-you-treat-the-deployment-of-configuration-files-on-different-systems-in-su/132034#132034 1 Answer by Lars Westergren for How do you treat the deployment of configuration files on different systems in Subversion? Lars Westergren 2008-09-25T07:59:28Z 2008-09-25T07:59:28Z <p>Some possible solutions:</p> <p>If you are using a J2EE app server, you can look up properties through JNDI, there are tools to easily set and view them on the server.</p> <p>You can have a default properties file in your subversion server, but look elsewhere on the servers (outside the parts of the project that are checked into svn) for the real properties file, but then you usually get OS dependent paths and have to remember to update the real properties files manually when you add new properties in your svn file.</p> <p>You can set the properties in a properties file as part of the build, and pass in a parameter to the build command to tell it which server environment to build for. This can feel a bit roundabout, and you have to remember to update the build script with new properties. But it can work well - if you set up a Continuous Integration server, it can build for all the different environments and test the bundles for you. Then you know you have something deployment ready.</p> http://stackoverflow.com/questions/131901/what-are-possible-reasons-for-java-io-ioexception-the-filename-directory-name/131978#131978 0 Answer by Lars Westergren for What are possible reasons for java.io.IOException: "The filename, directory name, or volume label syntax is incorrect" Lars Westergren 2008-09-25T07:39:07Z 2008-09-25T07:39:07Z <p>You say "for some users" - so it works for others? What is the difference here, are the users running different instances on different machines, or is this a server that services concurrent users?</p> <p>If the latter, I'd say it is a concurrency bug somehow - two threads check try to create the file with WinNTFileSystem.createFileExclusively(Native Method) simultaniously.</p> <p>Neither createNewFile or createFileExclusively are synchronized when I look at the OpenJDK source, so you may have to synchronize this block yourself.</p> http://stackoverflow.com/questions/455184/evaluation-of-part-of-clojure-cond/460825#460825 Comment by Lars Westergren on Evaluation of part of Clojure cond Lars Westergren 2009-01-21T08:36:48Z 2009-01-21T08:36:48Z Ah, I see, that explains the original behaviour, thanks. Also I've managed to do the math correctly now, heh. <i>blush</i> http://stackoverflow.com/questions/455184/evaluation-of-part-of-clojure-cond/455202#455202 Comment by Lars Westergren on Evaluation of part of Clojure cond Lars Westergren 2009-01-19T19:44:36Z 2009-01-19T19:44:36Z In Clojure parentheses after the predicate are optional, as after the (= exp 0) example above. Tried without, but that syntax was ambiguous. Tried with, but I may have had a parentheses around :else which was incorrect. Thought I had tried Philip's version too, but must have done something wrong. http://stackoverflow.com/questions/455184/evaluation-of-part-of-clojure-cond/455202#455202 Comment by Lars Westergren on Evaluation of part of Clojure cond Lars Westergren 2009-01-18T14:27:12Z 2009-01-18T14:27:12Z What the hell, I thought I had tried all possible permutations of parenthesis, but it seems I missed the right one. That worked, thanks a lot Philip. :) http://stackoverflow.com/questions/256694/scala-combinator-parsers-distinguish-between-number-strings-and-variable-string/257257#257257 Comment by Lars Westergren on Scala combinator parsers - distinguish between number strings and variable strings Lars Westergren 2008-11-03T15:41:32Z 2008-11-03T15:41:32Z I have solved the original problem thanks to Daniel, but I was still curious about using pattern matching with Regexps, and from reading the book and googling it seems there is no way to do that. http://stackoverflow.com/questions/256694/scala-combinator-parsers-distinguish-between-number-strings-and-variable-string/257257#257257 Comment by Lars Westergren on Scala combinator parsers - distinguish between number strings and variable strings Lars Westergren 2008-11-03T07:15:53Z 2008-11-03T07:15:53Z Excellent! Had to change {Number(_.toInt)} to {x:String =&gt; Number(x)} since I got &quot;error: missing parameter type for expanded function&quot;, then it worked like a charm. Still curious if there is a case class way of solving it though. http://stackoverflow.com/questions/68074/good-way-to-learn-scala/190098#190098 Comment by Lars Westergren on Good way to learn Scala? Lars Westergren 2008-10-10T06:40:46Z 2008-10-10T06:40:46Z I'm also doing project Euler in my spare time, with Scala. :) http://stackoverflow.com/questions/181615/java-threads-is-it-possible-view-pause-kill-a-particular-thread-from-a-different Comment by Lars Westergren on Java threads: Is it possible view/pause/kill a particular thread from a different java program running on the same JVM? Lars Westergren 2008-10-08T07:21:42Z 2008-10-08T07:21:42Z ...or is it that you want to know how to protect your own product from cracking? http://stackoverflow.com/questions/181615/java-threads-is-it-possible-view-pause-kill-a-particular-thread-from-a-different Comment by Lars Westergren on Java threads: Is it possible view/pause/kill a particular thread from a different java program running on the same JVM? Lars Westergren 2008-10-08T07:16:20Z 2008-10-08T07:16:20Z Um, so you are asking us how to bypass licensing on a commercial product? Doubt this is allowed by the Stackoverflow terms of usage... http://stackoverflow.com/questions/173487/problems-with-shutting-down-jboss-in-eclipse-if-i-change-jndi-port Comment by Lars Westergren on Problems with shutting down JBoss in Eclipse if I change JNDI port Lars Westergren 2008-10-06T07:51:41Z 2008-10-06T07:51:41Z Skaffman - you should &quot;post answer&quot; more often instead of commenting so I can vote you up. Your comments are often better then many of the answers. http://stackoverflow.com/questions/161288/what-would-be-the-best-book-to-read-in-order-to-really-grok-oop/161504#161504 Comment by Lars Westergren on What would be the best book to read in order to really 'grok' OOP? Lars Westergren 2008-10-02T12:38:30Z 2008-10-02T12:38:30Z Damn, I forget about Refactoring. Yes, that (and you) gets my vote too. http://stackoverflow.com/questions/157856/do-java-listeners-need-to-be-removed-in-general/157903#157903 Comment by Lars Westergren on Do Java listeners need to be removed? (In general) Lars Westergren 2008-10-01T15:12:22Z 2008-10-01T15:12:22Z ...or re-learn as the case may be. Thanks for correcting my post below guys, especially janm. I deleted my post since it was wrong. http://stackoverflow.com/questions/157856/do-java-listeners-need-to-be-removed-in-general/157903#157903 Comment by Lars Westergren on Do Java listeners need to be removed? (In general) Lars Westergren 2008-10-01T15:06:02Z 2008-10-01T15:06:02Z Doh! Forgotten that anon classes do have a reference to instance it is created in. Live and learn... http://stackoverflow.com/questions/157856/do-java-listeners-need-to-be-removed-in-general/157903#157903 Comment by Lars Westergren on Do Java listeners need to be removed? (In general) Lars Westergren 2008-10-01T14:41:16Z 2008-10-01T14:41:16Z Um, how does A reference B? http://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard/156448#156448 Comment by Lars Westergren on Regexp recognition of email address hard? Lars Westergren 2008-10-01T07:48:25Z 2008-10-01T07:48:25Z Is anything designed to handle things mathematically beyond them? :P http://stackoverflow.com/questions/152462/running-a-j6se-app-on-an-nt-box/152495#152495 Comment by Lars Westergren on Running a J6SE app on an NT box Lars Westergren 2008-09-30T10:55:07Z 2008-09-30T10:55:07Z Mich: Just because one version of a program luckily runs on an unsupported OS is no guarantee the next version does. Java 6 has had some pretty major internal rewrites. As Partyzant says, OSes based on old MS APIs have been removed for Java 6, so they probably cleaned out those dependencies.