User nojevive - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T15:06:55Zhttp://stackoverflow.com/feeds/user/105993http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1127782/getting-strange-stacktrace-on-compiling-groovy-class0getting strange stacktrace on compiling groovy classnojevive2009-07-14T20:21:47Z2009-07-16T08:21:32Z
<p>I'm coding a small test app in Groovy. I have the following code.</p>
<pre><code>class Address {
static constraints = {
street(blank:false, maxSize:100)
residencenumber(min:1, max:65000)
addition()
zip()
city(blank:false, maxSize:100)
county()
country(blank:false, maxSize:50)
}
String street
String zip
int residencenumber
String addition
String city
String county
String country
String toString() {
return street + " " + residencenumber + " " + zip + " " + city + " " + country
}
</code></pre>
<p>}</p>
<p>I'm getting this rather cryptic message. </p>
<p>nojevive@follett:~/dev/code/mysmallapp$ grails generate-all Address
Welcome to Grails 1.1.1 - <a href="http://grails.org/" rel="nofollow">http://grails.org/</a>
Licensed under Apache Standard License 2.0
Grails home is set to: /home/nojevive/dev/grails</p>
<p>Base Directory: /home/nojevive/dev/code/mysmallapp
Running script /home/nojevive/dev/grails/scripts/GenerateAll.groovy
Environment set to development
<code>
groovy.lang.MissingMethodException: No signature of method: java.lang.Integer.call() is applicable for argument types: () values: []
at Project$__clinit__closure1.doCall(Project.groovy:11)
at Project$__clinit__closure1.doCall(Project.groovy)
at Project.getProperty(Project.groovy)
at _PluginDependencies_groovy$_run_closure6_closure53.doCall(_PluginDependencies_groovy:467)
at _PluginDependencies_groovy$_run_closure6_closure53.doCall(_PluginDependencies_groovy)
at _GrailsSettings_groovy$_run_closure10.doCall(_GrailsSettings_groovy:274)
at _GrailsSettings_groovy$_run_closure10.call(_GrailsSettings_groovy)
at _PluginDependencies_groovy$_run_closure6.doCall(_PluginDependencies_groovy:447)
at _GrailsBootstrap_groovy$_run_closure1.doCall(_GrailsBootstrap_groovy:74)
at _GrailsGenerate_groovy$_run_closure1.doCall(_GrailsGenerate_groovy:37)
at GenerateAll$_run_closure1.doCall(GenerateAll.groovy:42)
at gant.Gant$_dispatch_closure4.doCall(Gant.groovy:324)
at gant.Gant$_dispatch_closure6.doCall(Gant.groovy:334)
at gant.Gant$_dispatch_closure6.doCall(Gant.groovy)
at gant.Gant.withBuildListeners(Gant.groovy:344)
at gant.Gant.this$2$withBuildListeners(Gant.groovy)
at gant.Gant$this$2$withBuildListeners.callCurrent(Unknown Source)
at gant.Gant.dispatch(Gant.groovy:334)
at gant.Gant.this$2$dispatch(Gant.groovy)
at gant.Gant.invokeMethod(Gant.groovy)
at gant.Gant.processTargets(Gant.groovy:495)
at gant.Gant.processTargets(Gant.groovy:480)
Error loading plugin manager: No signature of method: java.lang.Integer.call() is applicable for argument types: () values: []
</code></p>
<p>First I thought maybe my number was out of range (I had 1000000). Then I thought maybe the number was a built-in name so I renamed to residencenumber. But no luck. What am I missing here?
I now removed all constraints, but still same message. So it has nothing to do with the fields I guess. Something must be broken?</p>
http://stackoverflow.com/questions/1116123/how-do-i-calculate-someones-age-in-java2How do I calculate someone's age in Java?nojevive2009-07-12T14:32:13Z2009-07-12T15:44:53Z
<p>I want to return an age in years as an int in a Java method.
What I have now is the following where getBirthDate() returns a Date object (with the birth date ;-)):</p>
<pre><code>public int getAge() {
long ageInMillis = new Date().getTime() - getBirthDate().getTime();
Date age = new Date(ageInMillis);
return age.getYear();
}
</code></pre>
<p>But since getYear() is deprecated I'm wondering if there is a better way to do this? I'm not even sure this works correctly, since I have no unit tests in place (yet).</p>
http://stackoverflow.com/questions/1094961/is-there-a-python-language-specification/1094977#10949772Answer by nojevive for Is there a Python language specification?nojevive2009-07-07T21:26:22Z2009-07-07T21:26:22Z<p>You can check out the <a href="http://docs.python.org/dev/reference/index.html" rel="nofollow">Python Reference</a></p>
http://stackoverflow.com/questions/1094867/when-should-we-use-javas-thread-over-executor/1094926#10949260Answer by nojevive for When should we use Java's Thread over Executor?nojevive2009-07-07T21:14:40Z2009-07-07T21:14:40Z<p>You don't use Thread unless you need more specific behaviour that is not found in Thread itself. You then extend Thread and add your specifically wanted behaviour. </p>
<p>Else just use Runnable or Executor.</p>
http://stackoverflow.com/questions/1094872/is-there-a-difference-between-x-and-x-in-java/1094904#10949041Answer by nojevive for Is there a difference between x++ and ++x in java?nojevive2009-07-07T21:11:03Z2009-07-07T21:11:03Z<p>Yes, using ++X, X+1 will be used in the expression. Using X++, X will be used in the expression and X will only be increased after the expression has been evaluated.</p>
<p>So if X = 9, using ++X, the value 10 will be used, else, the value 9.</p>
http://stackoverflow.com/questions/1089282/what-is-the-fastest-method-for-reading-from-a-text-file-in-java/1089306#10893060Answer by nojevive for What is the fastest method for reading from a text file in Java?nojevive2009-07-06T21:30:49Z2009-07-06T21:30:49Z<p>Depends on what you want to read. The complete file, or from a specific location, do you need to able to seatch through it, or do you want to read the complete text in one go? </p>
http://stackoverflow.com/questions/1045863/which-design-option-is-better-to-use-in-coding-a-framework1Which design option is better to use in coding a framework?nojevive2009-06-25T19:48:40Z2009-07-05T16:06:08Z
<p>I'm coding up a framework (in Java, but question is generic) in which I will provide a set of interfaces for clients to implement. The functions in the framework are going to rely on how the implementation classes will be constructued, that is, thay depend on those implementations to provide other instances of interfaces.</p>
<p>For example I might have:</p>
<pre><code>Interface IContribution {
public IMyStuff getMyStuff();
public IHelper getHelper();
}
Interface IMyStuff {
public void doSomeMethod(IHelper helper);
}
</code></pre>
<p>How can I make sure that those instances of IMyStuff and IHelper are available?</p>
<p>One method would be to create the 'getter' methods in the interface and in my framework painstakingly check for null objects returned.</p>
<p>Another option would be to create abstract classes that implement a factory that calls (using a strategy patterns) the interface methods to be implemented. But this defies the fact that I have the interface in the first place. Clients should then use the abstract class. But they could circumvent this by using the interface instead of the abstract class. Therefore I should not provide the interface but only the abstract class...</p>
<p>So, what are your ideas on this, what is a pragmatic approach to this?</p>
http://stackoverflow.com/questions/1065584/what-is-data-driven-programming/1065657#10656576Answer by nojevive for What is data-driven programming?nojevive2009-06-30T19:51:58Z2009-07-04T21:37:45Z<p>Data driven progamming is a programming model where the data itself controls the flow of the program and not the program logic. It is a model where you control the flow by offering different data sets to the program where the program logic is some generic form of flow or of state-changes.</p>
<p>For example if you have program that has four states: UP - DOWN - STOP - START</p>
<p>You can control this program by offering input (data) that represents the states:</p>
<ul>
<li>set1: DOWN - STOP - START - STOP - UP - STOP</li>
<li>set2: UP - DOWN - UP - DOWN</li>
</ul>
<p>The program code stays the same but data set (which is not of a dynamic input type but statically given to the computer) controls the flow.</p>
http://stackoverflow.com/questions/71681/how-do-you-evaluate-a-software-architect/1079107#10791071Answer by nojevive for How do you evaluate a Software Architect?nojevive2009-07-03T12:17:27Z2009-07-03T12:17:27Z<ul>
<li>Knows the problem domain (and the problems working in that domain poses)</li>
<li>Knows technologies that can be used within that problem domain to offer a solution</li>
<li>Can effectively reason about and come up with an explanation why the set of concepts and technologies will lead to a soultion to the problem</li>
</ul>
<p>my 2 cents</p>
http://stackoverflow.com/questions/1056011/how-to-change-jtree-view-dynamically-when-a-nodes-objects-state-changes0How to change JTree view dynamically when a nodes object's state changes?nojevive2009-06-28T23:13:25Z2009-06-30T09:19:48Z
<p>I'm implementing a Java JTree panel. This panel holds a TreeModel build from a set ofdatastructures that are treelike (a list of lists of composites - different classes). I get these datastructure from external jar implementations based on a set of interfaces I defined.</p>
<p>The treenodes contain a checkbox that the user may check to indicate that the checked node and all child nodes are to become "active", that is, the objects that are represented by the nodes should do something, like getting data from a database.</p>
<p>The treenodes may also be selected without "activating" them, that is, without the checkbox being checked.</p>
<p>On top of that, other parts of the program may also toggle the activation state of the datamodel objects. So the data model out of which the treemodel is build is the source of the activation state. This must be reflected in the treeview by dynamically (un)checking the checkbox.</p>
<p>Now, how do I implement this whole? Who should be listeners for what changes?</p>
<p>I now have all the classes that are in the nodes extend from an abstract class that holds an activation field. This is the true datasource. When this field changes, all subscribed listeners (EventListener) should be notified, This includes the checkboxes.</p>
<p>I also have a TreeSelectionModel that is based on the default TreeSelectionModel but extended with functionality to check if children/parents need to be checked. </p>
<p>My questions maybe is not really clear, but so is this complex piece of code. Hope you can help.</p>
http://stackoverflow.com/questions/981920/howto-manage-the-game-state-in-face-of-the-edt/1052777#10527770Answer by nojevive for Howto manage the game state in face of the EDT?nojevive2009-06-27T12:52:10Z2009-06-27T12:52:10Z<p>It looks like you need a priorityqueue to put the updates to the model on, in which updates frmo the user have priority over the updates from the simulation and other inputs. What I hear you saying is that the user always needs immediate feedback over his actions wheras the other inputs (simulation, otherwise) could have workers that may take longer than one simulation step.
Then synchronize on the priorityqueue.</p>
http://stackoverflow.com/questions/879981/web-based-project-management-tool/1052544#10525440Answer by nojevive for Web based project management toolnojevive2009-06-27T10:08:54Z2009-06-27T10:08:54Z<p>Another simple web based app is <a href="http://www.thymer.com/" rel="nofollow">Thymer</a>.
"for people who hate project management and task planning"</p>
http://stackoverflow.com/questions/229257/what-do-project-managers-do-all-day/1040426#10404260Answer by nojevive for What do project managers do all day?nojevive2009-06-24T19:26:28Z2009-06-24T19:26:28Z<p>Better late then never ;-)</p>
<p>Just like you could ask what do programmers do all day, the same goes for project managers, product managers, secretaries, cleaners, UI designers... I think a serious developer should play other roles some time in their career, at least for a couple of months to appreciate what effort that goes into that work.</p>
<p>I know we developers may sometimes give off on project management if things go wrong. Its easy to blame the other although in fact you are part of the same team and you yourself could have dome something about it. (provided the PM built team in the first place instead of just throwing a bunch of programmers in a room.)</p>
<p>On the other hand we could ask what the bleep he is doing all day, when everything seems to go just perfect (we don't seem to need him). Maybe that is just the situation he created, a perfectly workable atmosphere without constant interruptions from other teams.</p>
http://stackoverflow.com/questions/1017429/is-there-any-ruby-or-python-interpreter-for-lego-mindstorm10Is there any Ruby or Python interpreter for Lego Mindstorm?nojevive2009-06-19T11:15:31Z2009-06-19T23:43:24Z
<p>I want to start coding in Python or Ruby. Since I own a <a href="http://en.wikipedia.org/wiki/Lego%5FRobotics" rel="nofollow">Lego Midstorms</a> kit I thought it would be nice to program against it. Are there any good translators / interpeters for the Mindstorms brick?</p>
http://stackoverflow.com/questions/949509/simple-excercises-for-learning-a-new-language/949586#9495861Answer by nojevive for Simple excercises for learning a new language.nojevive2009-06-04T09:55:06Z2009-06-04T09:55:06Z<p>I really do like the <a href="http://www.spoj.pl/problems/classical/" rel="nofollow">problems</a> at <a href="http://www.spoj.pl/" rel="nofollow">spoj.pl</a>. Can be done in quite some lanuages. Yours may be one of those.</p>
http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/900192#9001920Answer by nojevive for What is the single most influential book every programmer should read?nojevive2009-05-22T22:04:07Z2009-05-22T22:04:07Z<p>I have found that the first edition of <a href="http://upload.wikimedia.org/wikipedia/en/9/91/C%5Fplus%5Fplus%5Fbook.jpg" rel="nofollow">The C++ programming language</a> had a big influence on my programming. I also own the second and third version. There are other C++ books I really liked, such as <a href="http://www.research.att.com/~bs/dne.html" rel="nofollow">The Design and Evolution of C++</a>.</p>
http://stackoverflow.com/questions/893908/what-should-come-first-the-design-pattern-or-the-code/895032#8950321Answer by nojevive for What should come first -- the design pattern or the code?nojevive2009-05-21T20:43:02Z2009-05-21T20:43:02Z<p>I'd stay away of patterning your coding too much by upfront design pattern usage. It is better to just make simple code and when needed <a href="http://rads.stackoverflow.com/amzn/click/0321213351" rel="nofollow">refactor towards a design pattern</a> that then captures your requirements best.</p>
http://stackoverflow.com/questions/894628/real-time-code-coverage-viewer-tool-for-inspecting-live-java-apps/894996#8949961Answer by nojevive for Real time code coverage viewer tool for inspecting live Java apps?nojevive2009-05-21T20:36:03Z2009-05-21T20:36:03Z<p>Have a look at <a href="http://www.atlassian.com/software/clover/" rel="nofollow">clover</a>. It may be what you are looking for. Not free, but nice.</p>
http://stackoverflow.com/questions/894922/java-iterator/894981#8949810Answer by nojevive for Java iteratornojevive2009-05-21T20:29:59Z2009-05-21T20:29:59Z<p>An <strong>Iterable</strong> is something different from an <strong>Iterator</strong>. An Iterable is something you can iterate through, like a List. You use an Iterator for that. Your questions is not clear about what you want to return from getTests().</p>
<p>Your best shot would be to create an Iterable (like a List or Vector) and return that, or return its Iterator.</p>
http://stackoverflow.com/questions/893913/should-i-store-generated-code-in-source-control/894936#8949361Answer by nojevive for Should I store generated code in source controlnojevive2009-05-21T20:20:06Z2009-05-21T20:20:06Z<p>It really depends. Ultimately, the goal is to be able to reproduce what you had if need be. If you are able to regenerate your binaries exactly, there is no need to store them. but you need to remember that in order to recreate your stuff you will probably need your exact configuration you did it with in the first place, and that not only means your source code, but also your build environment, your IDE, maybe even other libraries, generators or stuff, in the exact configuration (versions) you have used. </p>
<p>I have run into trouble in projects were we upgraded our build environment to newer versions or even to another vendors', where we were unable to recreate the exact binaries we had before. This is a real pain when the binaries to be deplyed depend on a kind of hash, especially in secured environment, and the recreated files somehow differ because of compiler upgrades or whatever.</p>
<p>So, would you store generated code: I would say no. The binaries or deliverables that are released, including the tools that you reproduced them with I would store. And then, there is no need to store them in source control, just make a good backup of those files.</p>
http://stackoverflow.com/questions/874391/what-is-the-greatest-computer-science-invention/874675#8746750Answer by nojevive for What is the greatest computer science invention?nojevive2009-05-17T14:06:55Z2009-05-17T14:06:55Z<p>My submission would be the transistor. Where would this text be without it?</p>
http://stackoverflow.com/questions/874529/why-dont-java-wrapper-classes-have-no-arg-constructors/874606#8746062Answer by nojevive for Why don't Java Wrapper Classes have no-arg constructors?nojevive2009-05-17T13:19:27Z2009-05-17T13:19:27Z<p>There's no use in providing the primitive type in a constructor. The type of the wrapper class indicates the primitive type. Since an instantiated wrapper object cannot change (immutable), there is only one chance of giving it a value: during its construction. If wrapper class objects were not immutable, strange things could happen.
If you would have a default wrapper class constructor, what would its value be?</p>
http://stackoverflow.com/questions/871238/what-should-i-keep-in-mind-in-order-to-refactor-huge-code-base6What should I keep in mind in order to refactor huge code base?nojevive2009-05-15T23:15:20Z2009-05-16T00:32:59Z
<p>I'm going to refactor certain parts in a huge code base (18000+ Java classes). Goal is to be able to extract lower layers as independent libraries to be reused in other projects that currently use duplicate of this code base. Especially one part is of interest to be refactored into a framework independent of business logic. Ultimately I would like the code to have a clean architectural layering.</p>
<p>I've looked at the code with a tool called Structure 101 for java and found lots (!) of architectural layering issues where lower layers are referencing upper layers.</p>
<p>I don't want to simply start messing with the code but try to come up with a reasonable strategy to go about this problem. What things should I keep in mind?</p>
<p>I'm thinking about at least taking small steps. I'm also thinking about have unit tests in place, but that requires creating them, since there are none.</p>
<p>Any thoughts on this?</p>
http://stackoverflow.com/questions/1127782/getting-strange-stacktrace-on-compiling-groovy-class/1136152#1136152Comment by nojevive on getting strange stacktrace on compiling groovy classnojevive2009-07-16T10:39:28Z2009-07-16T10:39:28Zthanks for the tip.http://stackoverflow.com/questions/1127782/getting-strange-stacktrace-on-compiling-groovy-classComment by nojevive on getting strange stacktrace on compiling groovy classnojevive2009-07-14T20:46:34Z2009-07-14T20:46:34ZI cleaned up the project and recompiled. Got the same error. Turns out there was a typo in anonther class? How come you need to specify the domain class to generate-all on the command line and then it seems to compile another class? well, maybe beginner struggles...http://stackoverflow.com/questions/1127782/getting-strange-stacktrace-on-compiling-groovy-class/1127849#1127849Comment by nojevive on getting strange stacktrace on compiling groovy classnojevive2009-07-14T20:38:10Z2009-07-14T20:38:10ZI tried that already, I chopped off everything after 'street', but to no avail.http://stackoverflow.com/questions/1116123/how-do-i-calculate-someones-age-in-java/1116132#1116132Comment by nojevive on How do I calculate someone's age in Java?nojevive2009-07-12T15:02:12Z2009-07-12T15:02:12ZI was looking for a reasonable age indication, nothing that would be accurate to the day exactly, but if it can be done, I'd use that anyway.http://stackoverflow.com/questions/1065274/implicit-and-explicit-exception-difference/1065292#1065292Comment by nojevive on Implicit and explicit exception differencenojevive2009-06-30T20:04:35Z2009-06-30T20:04:35ZMore explicit in this context means for an exception type that is of a derived type (being more specific) than the more general base class type.http://stackoverflow.com/questions/1065503/how-do-you-determine-if-a-file-is-html-from-the-url/1065574#1065574Comment by nojevive on How do you determine if a file is html from the URL?nojevive2009-06-30T19:57:08Z2009-06-30T19:57:08ZIt may be that the content type is incorrectly set. Happens. ANd if correct, then it may not even be valid HTML. You should validate against its schema definition depending on what you want to do with it.http://stackoverflow.com/questions/1045863/which-design-option-is-better-to-use-in-coding-a-framework/1045972#1045972Comment by nojevive on Which design option is better to use in coding a framework?nojevive2009-06-25T20:49:21Z2009-06-25T20:49:21ZThanks, great 'best practice' advice.http://stackoverflow.com/questions/1045863/which-design-option-is-better-to-use-in-coding-a-framework/1045902#1045902Comment by nojevive on Which design option is better to use in coding a framework?nojevive2009-06-25T20:48:31Z2009-06-25T20:48:31ZOk, right, so there's no guarantee. Smart checks here and there should catch most serious errors, but the rest then boils down to having good documentation.http://stackoverflow.com/questions/1017429/is-there-any-ruby-or-python-interpreter-for-lego-mindstorm/1020503#1020503Comment by nojevive on Is there any Ruby or Python interpreter for Lego Mindstorm?nojevive2009-06-22T21:56:12Z2009-06-22T21:56:12ZHi, thanks for the pointer to the site, I guess there's a good starting point ;-)http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/378712#378712Comment by nojevive on What is the single most influential book every programmer should read?nojevive2009-05-22T21:53:49Z2009-05-22T21:53:49ZI definitely agree on this one. It is a must read, especially for your boss when you are unhappy with your working conditions.http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1729#1729Comment by nojevive on What is the single most influential book every programmer should read?nojevive2009-05-22T21:51:44Z2009-05-22T21:51:44ZAre there any people who read this? I guess this is what you call a book to use, not to read...http://stackoverflow.com/questions/871238/what-should-i-keep-in-mind-in-order-to-refactor-huge-code-base/871321#871321Comment by nojevive on What should I keep in mind in order to refactor huge code base?nojevive2009-05-16T07:46:00Z2009-05-16T07:46:00ZThanks for the pointer to the book, I'm going to look into that.