User Lars Westergren - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T09:01:14Zhttp://stackoverflow.com/feeds/user/15627http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/166379/immutable-functional-objects-in-highly-mutable-domain7Immutable functional objects in highly mutable domainLars Westergren2008-10-03T11:16:26Z2009-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#5561170Answer by Lars Westergren for Switch to Java from PHP/Ajax in 45 days (or so)Lars Westergren2009-02-17T09:46:27Z2009-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-especially2Learning resources - stack machines, JVM especiallyLars Westergren2008-10-07T17:15:33Z2009-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#5533240Answer by Lars Westergren for Learning resources - stack machines, JVM especiallyLars Westergren2009-02-16T13:37:04Z2009-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-cond1Evaluation of part of Clojure condLars Westergren2009-01-18T14:08:09Z2009-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=> (fast-it-exp 0 0 10)
10 ;yep
user=> (fast-it-exp 2 2 2)
1 ;no...
user=> (fast-it-exp 1 1 1)
#<user$fast_it_exp__59 user$fast_it_exp__59@138c63> ;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#3557682Answer by Lars Westergren for Using subclassing to replace a Java class that doesn't implement an interfaceLars Westergren2008-12-10T11:32:25Z2008-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#2991651Answer by Lars Westergren for How slow are Java exceptions?Lars Westergren2008-11-18T15:54:50Z2008-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#2834210Answer by Lars Westergren for How can I learn about parser combinators?Lars Westergren2008-11-12T09:30:56Z2008-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-string3Scala combinator parsers - distinguish between number strings and variable stringsLars Westergren2008-11-02T09:22:15Z2008-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 => Number(a.toInt)
case a: String => 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-object3Scala syntax - pass string to objectLars Westergren2008-11-02T09:27:37Z2008-11-02T11:50:49Z
<p>While playing around with regexps in Scala I wrote something like this:</p>
<pre><code>scala> val y = "Foo"
y: java.lang.String = Foo
scala> y "Bar"
scala>
</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#2266531Answer by Lars Westergren for How to transform time value into YYYY-MM-DD format in JavaLars Westergren2008-10-22T16:47:19Z2008-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#2249700Answer by Lars Westergren for Most concise way to read the contents of a file/input stream in Java?Lars Westergren2008-10-22T09:12:28Z2008-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#1783590Answer by Lars Westergren for Does java have a using clause?Lars Westergren2008-10-07T13:12:15Z2008-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#1613412Answer by Lars Westergren for What would be the best book to read in order to really 'grok' OOP?Lars Westergren2008-10-02T08:27:22Z2008-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#1612951Answer by Lars Westergren for How can I program defensively in Ruby?Lars Westergren2008-10-02T08:08:14Z2008-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#1612361Answer by Lars Westergren for Sending mass emails programmaticallyLars Westergren2008-10-02T07:43:06Z2008-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-1Answer by Lars Westergren for Regexp recognition of email address hard?Lars Westergren2008-10-01T06:28:17Z2008-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#1565460Answer by Lars Westergren for Closing a Java FileInputStream.Lars Westergren2008-10-01T07:18:51Z2008-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#1563401Answer by Lars Westergren for Using Mercurial, is there an easy way to diff my working copy with the tip file in the default remote repositoryLars Westergren2008-10-01T05:30:08Z2008-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#1521211Answer by Lars Westergren for Programming against interfaces: Do you write interfaces for all your domain classes?Lars Westergren2008-09-30T07:42:25Z2008-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#1477123Answer by Lars Westergren for What's the best way to deploy a JRuby on Rails application to Tomcat?Lars Westergren2008-09-29T06:31:13Z2008-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#1384470Answer by Lars Westergren for SQL Reporting services - Out of Memory ExceptionLars Westergren2008-09-26T09:24:12Z2008-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#1382064Answer by Lars Westergren for Java - Console-like web applet.Lars Westergren2008-09-26T07:52:10Z2008-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#1380580Answer by Lars Westergren for What is so bad about SingletonsLars Westergren2008-09-26T06:44:52Z2008-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#13791811Answer by Lars Westergren for Using "final" modifier whenever applicable in javaLars Westergren2008-09-26T05:31:56Z2008-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#1328321Answer by Lars Westergren for What should every programmer know?Lars Westergren2008-09-25T11:55:25Z2008-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#1327871Answer by Lars Westergren for Different layouts and i18n in JSP applicationLars Westergren2008-09-25T11:47:39Z2008-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#1326405Answer by Lars Westergren for Maven dependency exclusion for War file, but inclusion for testsLars Westergren2008-09-25T11:08:48Z2008-09-25T11:38:34Z<p>Use the "scope" tag inside your dependency.</p>
<pre><code><scope>test</scope>
</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#1320341Answer by Lars Westergren for How do you treat the deployment of configuration files on different systems in Subversion?Lars Westergren2008-09-25T07:59:28Z2008-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#1319780Answer by Lars Westergren for What are possible reasons for java.io.IOException: "The filename, directory name, or volume label syntax is incorrect"Lars Westergren2008-09-25T07:39:07Z2008-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#460825Comment by Lars Westergren on Evaluation of part of Clojure condLars Westergren2009-01-21T08:36:48Z2009-01-21T08:36:48ZAh, 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#455202Comment by Lars Westergren on Evaluation of part of Clojure condLars Westergren2009-01-19T19:44:36Z2009-01-19T19:44:36ZIn 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#455202Comment by Lars Westergren on Evaluation of part of Clojure condLars Westergren2009-01-18T14:27:12Z2009-01-18T14:27:12ZWhat 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#257257Comment by Lars Westergren on Scala combinator parsers - distinguish between number strings and variable stringsLars Westergren2008-11-03T15:41:32Z2008-11-03T15:41:32ZI 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#257257Comment by Lars Westergren on Scala combinator parsers - distinguish between number strings and variable stringsLars Westergren2008-11-03T07:15:53Z2008-11-03T07:15:53ZExcellent! Had to change {Number(_.toInt)} to {x:String => Number(x)} since I got "error: missing parameter type for expanded function", 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#190098Comment by Lars Westergren on Good way to learn Scala?Lars Westergren2008-10-10T06:40:46Z2008-10-10T06:40:46ZI'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-differentComment 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 Westergren2008-10-08T07:21:42Z2008-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-differentComment 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 Westergren2008-10-08T07:16:20Z2008-10-08T07:16:20ZUm, 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-portComment by Lars Westergren on Problems with shutting down JBoss in Eclipse if I change JNDI portLars Westergren2008-10-06T07:51:41Z2008-10-06T07:51:41ZSkaffman - you should "post answer" 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#161504Comment by Lars Westergren on What would be the best book to read in order to really 'grok' OOP?Lars Westergren2008-10-02T12:38:30Z2008-10-02T12:38:30ZDamn, 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#157903Comment by Lars Westergren on Do Java listeners need to be removed? (In general)Lars Westergren2008-10-01T15:12:22Z2008-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#157903Comment by Lars Westergren on Do Java listeners need to be removed? (In general)Lars Westergren2008-10-01T15:06:02Z2008-10-01T15:06:02ZDoh! 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#157903Comment by Lars Westergren on Do Java listeners need to be removed? (In general)Lars Westergren2008-10-01T14:41:16Z2008-10-01T14:41:16ZUm, how does A reference B?http://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard/156448#156448Comment by Lars Westergren on Regexp recognition of email address hard?Lars Westergren2008-10-01T07:48:25Z2008-10-01T07:48:25ZIs anything designed to handle things mathematically beyond them? :Phttp://stackoverflow.com/questions/152462/running-a-j6se-app-on-an-nt-box/152495#152495Comment by Lars Westergren on Running a J6SE app on an NT boxLars Westergren2008-09-30T10:55:07Z2008-09-30T10:55:07ZMich: 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.