User Alan - Stack Overflowmost recent 30 from stackoverflow.com2009-11-25T10:30:59Zhttp://stackoverflow.com/feeds/user/17205http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/169815/java-common-gotchas15Java - Common GotchasAlan2008-10-04T05:41:08Z2009-09-09T14:54:57Z
<p>In the same spirit of other platforms, it seemed logical to follow up with this question: What are common non-obvious mistakes in Java? Things that seem like they ought to work, but don't.</p>
<p>I won't give guidelines as to how to structure answers, or what's "too easy" to be considered a gotcha, since that's what the voting is for.</p>
<p>See also:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas">Perl - Common gotchas</a></li>
<li><a href="http://stackoverflow.com/questions/66117/aspnet-common-gotchas">.NET - Common gotchas</a></li>
</ul>
http://stackoverflow.com/questions/1197783/what-check-in-policies-should-be-considered-for-version-control/1197868#11978681Answer by Alan for What Check-In Policies should be considered for version control?Alan2009-07-29T03:04:38Z2009-07-29T03:04:38Z<p>Try to keep the number of developers working on the same branch small. That way the branch stays stable with respect to compilation, the unit tests, and regressions. It's a nightmare if a developer does a check in which compiles but his code breaks a key area of the application (such as login).</p>
<p>If you really have to have more than 10 developers checking code into the same branch, we've started an email policy where the developer checking in warns everyone that they're checking in, so that no one attempts to update their copy of the branch in the midst of a check in. Sometimes, we've had to have the converse, where we set aside an time in the date to prohibit check ins, so that updates are safe.</p>
http://stackoverflow.com/questions/1197781/why-is-java-frequently-used-for-enterprise-applications/1197837#11978371Answer by Alan for Why is Java frequently used for enterprise applications?Alan2009-07-29T02:53:04Z2009-07-29T02:53:04Z<p>Also for client-server applications, you have an abundance of choices for production-quality app servers that have the same J2EE interface (IBM WebSphere, BEA Weblogic, JBoss). Alternatively, you could use the Spring Framework on any server like Apache Tomcat the complies to the Servlet API if you're convinced you don't need EJBs. In contrast to .NET, it's hard to find choices with respect to app servers.</p>
<p>There are an abundance of choices with regards to frameworks for a given task be it an ORM tool, logging, collections, caching, web UIs, etc. There is no hardly any need to reinvent the wheel. </p>
<p>Finally, while it's fashionable these days to lament the very real shortcomings of Java the language, it's a language where folks know how to get things done and how to avoid certain anti-patterns.</p>
http://stackoverflow.com/questions/559906/what-kinds-of-unit-tests-pay-off-the-most-in-business-value2What kinds of unit tests pay off the most in business value?Alan2009-02-18T05:06:00Z2009-07-05T16:31:32Z
<p>My question assumes that folks already believe that unit tests of some sort are worthwhile and actually write them on their current projects. Let's also assume that unit tests for some parts of the code are not worth writing because they're testing trivial features. Examples are getters/setters, and/or things that a compiler/interpreter will catch immediately. The contrary assumption is that "interesting" code is worth testing.</p>
http://stackoverflow.com/questions/1059285/whats-it-called-when-you-have-a-data-structure-that-looks-like-an-org-chart/1060865#10608650Answer by Alan for what's it called when you have a data structure that looks like an org chart? Alan2009-06-29T22:19:20Z2009-06-29T22:19:20Z<p>As everyone points out, you probably don't need anything more complicated than a tree.</p>
<p>To the more complicated structures like a graph, it's not entirely crazy.</p>
<p>See <a href="http://martinfowler.com/apsupp/accountability.pdf" rel="nofollow">Martin Fowler's paper</a> on accountability structures. That said, I can say from first hand experience, it's better to avoid modeling an org tree as a graph, when you don't need it.</p>
http://stackoverflow.com/questions/1050710/it-guy-picking-up-programming-c-python-or-ruby/1050821#10508214Answer by Alan for IT guy picking up programming - C#, Python, or RubyAlan2009-06-26T19:30:58Z2009-06-26T19:30:58Z<p>If I had to teach someone who has never programmed in his life (but clearly has the potential like you), it's a toss up between Ruby and Python. </p>
<p>Ruby and Python are more or less equivalent in terms of ease of learning.</p>
<ol>
<li>You'll learn how to program with classes and objects</li>
<li>They support plain old imperative programming constructs such as if, for, etc.</li>
<li>They have great libraries to do the basics.</li>
<li>They have interactive environments where you can type in language constructs into console for immediate execution.</li>
</ol>
<p>Ruby is not merely Rails, even though Rails <em>is</em> the killer app for Ruby. Python is older and has the support of Google. It ain't going away.</p>
<p>Most of the great programmers I know aren't hung up on a language. They usually know several languages and can see the computer science concepts that every languages tries to express. As you learn, you'll probably learn C, C# and/or Java. </p>
<p>Now if you were really serious, learn Scheme from SICP.</p>
http://stackoverflow.com/questions/930477/given-a-tree-structure-how-do-you-use-recursion-to-make-it-into-a-simple-linked/930921#9309210Answer by Alan for given a tree structure, how do you use recursion to make it into a simple linked list in-place?Alan2009-05-31T00:14:31Z2009-05-31T00:14:31Z<p>In Scheme, using memoized recursion, an in-order algorithm would be:</p>
<pre><code>(define (tree->list tree)
(define empty-set (list))
(define (copy-to-list tree result-list)
(if (null? tree)
result-list
(copy-to-list (left-branch tree)
(cons (entry tree)
(copy-to-list (right-branch tree)
result-list)))))
(copy-to-list tree empty-set))
</code></pre>
<p>This assumes that a tree structure is represented as:</p>
<pre><code>(define (entry tree) (car tree))
(define (left-branch tree) (cadr tree))
(define (right-branch tree) (caddr tree))
(define (make-tree entry left right)
(list entry left right))
</code></pre>
<p>N.B. I could have used the literal <code>'()</code> for the <code>empty-set</code> but SO messes up the color coding of the block quoted code.</p>
http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/888901#8889012Answer by Alan for What is your longest-held programming assumption that turned out to be incorrect?Alan2009-05-20T16:17:50Z2009-05-20T16:17:50Z<p>That all OOP languages have the same concept of object orientation.</p>
<ul>
<li>A Java <code>interface</code> != a method's interface.</li>
<li>A Java interface is a language-specific solution for the need to have multiple inheritance. Ruby's mixins attempt to solve the same problem.</li>
<li>Inheritance provided out of the box in Javascript is very different from how Java implements inheritance.</li>
</ul>
http://stackoverflow.com/questions/302357/what-security-features-are-available-in-struts/873634#8736340Answer by Alan for What security features are available in Struts.Alan2009-05-17T00:33:21Z2009-05-17T00:33:21Z<p>Even for the features that YC mentions, you probably don't want to use a Struts configuration file out of the box to set up the ACLs for your actions. It may be better to programmatically examine state in the HttpRequest as it gets out of the ActionServlet, before it reaches your Struts actions (i.e. is this HttpRequest coming from an authenticated and authorized user given the URL?). Alternatively, you could intercept the request with a ServletFilter, though you would have to be careful to make sure it's thread safe.</p>
http://stackoverflow.com/questions/871637/free-video-podcasts-tutorials-for-java-beginner/871648#8716482Answer by Alan for Free Video podcasts/Tutorials for Java beginnerAlan2009-05-16T03:52:57Z2009-05-16T03:52:57Z<p>I generally found the podcasts <a href="http://www.parleys.com/display/PARLEYS/Home" rel="nofollow">Parley's</a> or <a href="http://www.infoq.com/" rel="nofollow">InfoQ</a> to be helpful. Anything from Joshua Bloch or Neal Gafter (even though they disagree about closures) to be of top notch quality.</p>
http://stackoverflow.com/questions/239019/which-language-would-you-use-for-the-self-study-of-sicp13Which language would you use for the self-study of SICP?Alan2008-10-27T03:41:28Z2009-05-08T08:43:31Z
<p>I've caught the bug to learn functional programming for real. So my
next self-study project is to work through the <a href="http://mitpress.mit.edu/sicp/" rel="nofollow">Structure and
Interpretation of Computer Programs</a>. Unfortunately, I've never
learned Lisp, as I was not a CS major in college. </p>
<p>While SICP does not emphasize the tools for programming, doing the
exercises entails picking a Lisp-like language to use. It seems like
some implementation of <a href="http://plt-scheme.org/" rel="nofollow">Scheme</a> would be the path of least
resistance. On the other hand, I hear of others who have used <a href="http://gigamonkeys.com/book/" rel="nofollow">Common
Lisp</a> and <a href="http://clojure.org" rel="nofollow">Clojure</a>. It seems to me that Common Lisp or Clojure would be
more likely to be used in production code, and therefore slightly
better for my resume. BTW, I fully get the argument that learning a
language is worthwhile for its own sake, but learning a language that
helps my resume is still a benefit. I'm a capitalist and an academic
about my learning.</p>
<p>If you had to self-study SICP, which language would you pick and why?
Ideally, I would like to use a language that can run on the JVM.
I can certainly work with a language where REPL works with bash
and emacs.</p>
<p>ADDITION: have any of you tried reading SICP without using Scheme? If so, what was your experience like?</p>
http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for4What applications is Python optimal for?Alan2008-10-02T15:01:03Z2009-04-22T18:42:11Z
<p>I'm already a professional J2EE developer by day, and Rails developer by night. I'm planning on adding Python to my list of skills. I'm already convinced a language is just a tool, so I'm not interested in a religious war. I agree with the Pragmatic Programmers that learning one language/year is a good thing for your professional development</p>
<p>So, in your considered opinion, what kinds of applications does Python hit the sweet spot? And why? What advantages does it have, and why do these advantages outweigh the costs in adopting Python?</p>
<p>ADD: I also plan on learning a pure functional language like Scheme.</p>
http://stackoverflow.com/questions/725770/should-the-java-this-keyword-be-used-when-it-is-optional/725983#7259830Answer by Alan for Should the Java "this" keyword be used when it is optional?Alan2009-04-07T14:21:00Z2009-04-07T14:21:00Z<p>There are certain coding techniques that require <code>this</code> in Java, beyond cosmetic preference.
Here are two examples that I use fairly often.</p>
<p>First, if you want to use method chaining within a class so that the method returns the same type as the type it belongs to, you should use this.'</p>
<pre><code>public class MyBuilder {
private long id;
private String name;
public MyBuilder id(long id) {
this.id = id;
return this;
}
public MyBuilder name(String name) {
this.name = name;
return this;
}
public AnotherType build() {
// business logic that consumes instance variables to build AnotherType
}
}
</code></pre>
<p>The other case is the Visitor pattern</p>
<pre><code>public interface Visitor<V extends Visitable> {
public void visit(V visitable);
}
public interface Vistable<V extends Visitor> {
public void accept(V visitor);
}
</code></pre>
<p>And its implementations will say:</p>
<pre><code>public class ConcreteVisitable implements Visitable<ConcreteVisitor> {
public void accept(ConcreteVisitor visitor) {
// grant access to ConcreteVisitable's state to the Visitor
visitor.visit(this);
}
}
public class ConcreteVisitor implements Visitor<ConcreteVisitable> {
public void visit(ConcreteVisitable target) {
// business logic that operates on the state of ConcreteVisitable
}
}
</code></pre>
<p>Notice that <code>ConcreteVisitable</code> uses <code>this</code> to allow its visitor's access to its state.
I'm using generics on the interfaces so that I can enforce a 1-1 mapping between <code>ConcreteVisitor</code>s and <code>ConcreteVisitable</code>s and so that <code>ConcreteVisitor</code>s have particular knowledge of their targets without needing a class cast..</p>
http://stackoverflow.com/questions/449549/how-to-leverage-clearcases-features/449571#4495711Answer by Alan for How to Leverage Clearcase's featuresAlan2009-01-16T05:17:42Z2009-03-13T01:38:07Z<p>On my current project, we're using ClearCase. To be honest, most of the development team wants to switch to Subversion, but we cannot for political reasons.</p>
<p>First off, if you can afford devoting folks to SCM work, I would recommend doing so. SCM work is not just about making sure ClearCase works. You also want to be able track whether commits are tied to your issue tracking database, and whether it ties into your continuous build scripts (we're using CruiseControl). This applies to any VCS.</p>
<p>Second, be sure to make sure your development team is using the same diff tool. I've found BeyondCompare to be the best, though I'd be happy to settle on WinMerge if money is tight.</p>
<p>Third, one really great thing about ClearCase is that it can show an entire version tree with branches and merges for the change sets with respect to a given file. Keep this working, because it is very useful for doing "code archeology". E.g. sometimes when I need to track down the source of a bug, the CC version tree tool helps me to chase down the person who introduced the change that introduced the bug.</p>
<p>Fourth, I would watch carefully for how your version of ClearCase handles merges. Yes, its merge algorithms have gotten better with successive releases, but we've been burned by ClearCase's merge algorithms making mistakes (especially when it hasn't capitalized on smarter knowledge of the syntax tree for a given file type).</p>
http://stackoverflow.com/questions/559906/what-kinds-of-unit-tests-pay-off-the-most-in-business-value/559925#5599250Answer by Alan for What kinds of unit tests pay off the most in business value?Alan2009-02-18T05:11:25Z2009-02-18T05:11:25Z<p>To take a shot at my own question, here's the modules I've found worthwhile testing:</p>
<p>a) Any of the business rules. On my current application the business rules are externalized from the business objects.</p>
<p>b) Any of the virtual attributes on the business objects. Often these virtual attributes have involved algorithms.</p>
<p>c) Major components where we can state the expected produced output for a given input consumed. Often this bleeds into integration testing.</p>
<p>d) Our development process requires us to check in unit tests for new features and bug fixes. For bug fixes, we attempt to duplicate exactly what caused the bug and show the unit test can pass once the code fix is checked in.</p>
<p>e) Any of our translation layers where we translate from one data representation type to another such as POJO-XML</p>
http://stackoverflow.com/questions/559634/elisp-function-guide/559767#5597671Answer by Alan for Elisp Function Guide?Alan2009-02-18T03:48:19Z2009-02-18T03:48:19Z<p>If you're willing to fork over money for a dead tree, I'd recommend</p>
<p><a href="http://oreilly.com/catalog/9780596006488/index.html" rel="nofollow"><img src="http://oreilly.com/catalog/covers/0596006489_cat.gif" alt="Learning GNU Emacs" /></a></p>
http://stackoverflow.com/questions/471448/tips-for-moving-from-c-to-java/472004#4720041Answer by Alan for Tips for moving from C# to Java?Alan2009-01-23T05:40:32Z2009-01-23T05:40:32Z<p>Since you've only got a week, I would echo the recommendation to focus on the sort of things pointed out by <em>Effective Java</em>.</p>
<p>Know the Collections API. When I interview folks, it's one way I weed out folks. Especially know the difference between <code>equals()</code>, <code>hashCode()</code> and <code>compareTo()</code>, and what it takes to implement them correctly.</p>
<p>Know how to handle exceptions in Java, and how it interacts with standard EJB transactions. </p>
<p>If you're fortunate to land the job, I would spend some time getting to know the J2EE landscape, which is quite vast. These days, I would consider fundamentals of J2EE to be EJBs, MDBs, servlets and JPA.</p>
<p>I wouldn't worry so much about the IDE, or the xUnit API. Those things are trivial for any decent developer with experience.</p>
http://stackoverflow.com/questions/452581/how-do-i-represent-domain-aggregates-in-mvc-pattern/452604#4526041Answer by Alan for How do I represent Domain Aggregates in MVC pattern?Alan2009-01-17T01:15:29Z2009-01-17T01:15:29Z<p>Not sure what MVC has to do with domain aggregates as it's possible to use the latter without a UI.</p>
<p>I generally prefer to make the parts of an aggregate separate classes because the parts can have business meaning on their own. Nested classes make sense when the outer class must be loaded before the inner class or when you cannot make the inner class public (at least these things apply to Java).</p>
http://stackoverflow.com/questions/443638/as-a-programmer-what-are-some-telltale-signs-that-youre-about-to-get-fired-or-l/445484#4454842Answer by Alan for As a programmer, what are some telltale signs that you're about to get fired or laid off?Alan2009-01-15T02:57:39Z2009-01-16T05:07:22Z<p>On my current project, we have over 50 developers, and team leads are in charge of feature sets. I can tell when a developer is not highly regarded, when team leads hesitate to accept him (or her) on their team. Conversely, when team leads fight for a developer's time or a developer has to give away work because he is in too much demand, that developer is highly regarded. </p>
http://stackoverflow.com/questions/445239/what-language-to-further-develop-in/445517#4455170Answer by Alan for What language to further develop in?Alan2009-01-15T03:13:33Z2009-01-15T03:13:33Z<p>Since you're still in high school, I would tell you that time is on your side. You have plenty of time to develop as a computer scientist. Therefore, take the long view for your development. So it's much better for you to understand the abstractions that underly software technology.</p>
<p>In my humble opinion, C++ and Java will always be around and you have plenty of time to develop your skills in that arena. However, a higher level language like Scheme or Python will pay plenty of dividends. You might find <a href="http://www.trollope.org/scheme.html" rel="nofollow">this recommendation</a> highly enlightening.</p>
<p>In addition, every application will deal with a database as its system of record. Understanding SQL and data modeling is a win-win.</p>
<p>Also, understanding formal logic and/or <a href="http://rads.stackoverflow.com/amzn/click/0201558025" rel="nofollow">discrete mathematics</a> is indispensable for computer science. Computer languages are nothing but formal languages for executing
procedures: i.e. mathematical induction is used to define their syntax and semantics. </p>
http://stackoverflow.com/questions/423132/how-do-you-use-intefaces-with-the-factory-pattern-in-domain-driven-design/423224#4232241Answer by Alan for How do you use Intefaces with the Factory Pattern in Domain-Driven Design?Alan2009-01-08T04:01:23Z2009-01-08T04:01:23Z<p>Here's a translation of the same problem into Java.</p>
<p>Original example</p>
<pre><code>public interface UserFactoryIF
{
User createNewUser();
}
</code></pre>
<p>Then the implementation of the Factory</p>
<pre><code>public class UserFactory implements UserFactoryIF
{
public User createNewUser()
{
// whatever special logic it takes to make a User
// below is simplification
return new User();
}
}
</code></pre>
<p>I don't see any special benefit to defining an interface for the factory, since you're defining a single interface for a centralized producer. Typically I find that I need to produce many different implementations of the same kind of product, and my factory needs to consume many different kinds of parameters. That is, we might have:</p>
<pre><code>public interface User
{
public String getName();
public long getId();
public long getUUID();
// more biz methods on the User
}
</code></pre>
<p>The factory would look like this:</p>
<pre><code>public class UserFactory {
public static User createUserFrom(Person person) {
// ...
return new UserImpl( ... );
}
public static user createUserFrom(AmazonUser amazonUser) {
// ... special logic for AmazonWS user
return new UserImpl( ... );
}
private static class UserImpl implements User {
// encapsulated impl with validation semantics to
// insure no one else in the production code can impl
// this naively with side effects
}
}
</code></pre>
<p>Hope this gets the point across.</p>
http://stackoverflow.com/questions/411751/daily-builds-is-that-realistic/411779#4117791Answer by Alan for Daily builds, is that realistic?Alan2009-01-04T22:07:44Z2009-01-04T22:07:44Z<p>On my current gig, we do at least a daily build of our JEE app using CruiseControl, an Ivy repo, Ant & ClearCase. We're a large team and able to afford a build team (of 3) and build servers.</p>
<p>Yes the problems you name do happen such as mistaken DB changes, incorrect merges, broken compiles & tests. But overall we would not have it any other way.</p>
http://stackoverflow.com/questions/406729/what-are-some-examples-of-lisp-being-used-in-production-outside-of-ai-and-academ/411505#4115053Answer by Alan for What are some examples of LISP being used in production, outside of AI and academia?Alan2009-01-04T19:09:16Z2009-01-04T19:09:16Z<p>While your question was about Lisp, you can find out more from the <a href="http://cufp.galois.com/" rel="nofollow">Commercial Users of Functional Programming</a>. Also see [Haskell in Industry][2]</p>
<p>In financial services, functional programming seems to be the right tool for quantitative finance</p>
<ul>
<li>Jane Street uses OCaml</li>
<li>Credit Suisse</li>
<li>Deutsche Bank</li>
</ul>
http://stackoverflow.com/questions/407518/code-golf-leibniz-formula-for-pi/410564#4105642Answer by Alan for Code Golf: Leibniz formula for PiAlan2009-01-04T06:33:17Z2009-01-04T06:33:17Z<p>For the record, this Scheme implementation has 95 characters ignoring unnecessary whitespace.</p>
<pre><code>(define (f)
(define (p a b)
(if (> a b)
0
(+ (/ 1.0 (* a (+ a 2))) (p (+ a 4) b))))
(* 8 (p 1 1e6)))
</code></pre>
http://stackoverflow.com/questions/410521/what-is-the-nbl-next-big-language-according-to-stack-overflow/410548#4105482Answer by Alan for What is the NBL (Next Big Language) according to Stack Overflow?Alan2009-01-04T06:11:18Z2009-01-04T06:11:18Z<p>I don't think a tag count or job posting count is a sufficient reason to abandon Python for .NET or any other platform. At the end of the day, programming languages are tools to express abstractions for manipulating code and data. </p>
<p>That said, my primary advice to young programmers like yourself is that you should develop a passion for programming and follow what you love. It will give you the motivation to put in quality work.</p>
<p>Figure out as soon as you can the kind of programmer you want to be. Do you want to be the architect who provides the technical vision for the product? You're in for a long slog of acquiring breadth. Do you want love UI development? These days in web programming you really have to learn Ajax, Javascript & XSLT. Or do you prefer server-side development? There's tons to learn about SOA, web services, security, data modeling, messaging systems, security, etc. In my experience with the industry, there's never a dull moment and always plenty to learn.</p>
<p>No matter what, since it is very hard to find good developers in any platform, become a good developer & you will always have a job. Develop a deep understanding of one platform. Understand why the platform solves certain computer science problems. Don't become religious about a platform. Then it's not too hard to acquire skills in another platform (in my case J2EE and then RoR). </p>
http://stackoverflow.com/questions/404601/how-do-you-negotiate-a-domain-model-with-your-domain-experts2How do you negotiate a domain model with your domain experts?Alan2009-01-01T05:53:59Z2009-01-02T23:10:47Z
<p>Suppose you're working with a customer's domain experts. You realize (or at least have a reasonable belief) that your model of their problem is clearer than theirs. How do you convince them that they should go your way.</p>
<p>In my case, it is fairly clear what the main thrust of the requirements are (e.g. a trading system for a product). Based on my experience and my research, I would recommend a TradeContract which has two TraderParties. Each TraderParty buys one Product and sells one Product. If I had to model the composite in XML, I might model it as:</p>
<pre><code><tradeContract>
<id>1234</id>
<tradeParty>
<id>1</id>
<name>Ann</name>
<long type="money" value="20.00"/>
<short reference="book.123"/>
</tradeParty>
<tradeParty>
<id>2</id>
<name>Bob</name>
<long reference="book.123"/>
<short type="money" value="20.00"/>
</tradeParty>
<product>
<id key="book.123">123</id>
<type>book</type>
<title>Harry Potter and the Prisoner of Azkaban</title>
</product>
</tradeContract>
</code></pre>
<p>The above simply models that Ann bought <em>Harry Potter and the Prisoner of Azkaban</em> from Bob for $20.00. More abstractly, this models a two-party, four-legged trade. Let's just assume for argument's sake the system that consumes the XML validates the <code>tradeContract</code> and orchestrates the trade. </p>
<p>What if your domain experts feel this is too complicated for them? While you can readily acknowledge some intermediate steps to get to the above domain model, how do you persuade them that it's better to "bite the bullet" and use the above domain model sooner rather than later?</p>
<p>ADDITION: the SME's proposed model ...</p>
<p>What the domain experts keeping talking about is the model I came up with, but it looks like they don't believe their business process is ready for it yet. (Still, I think there are ways to make do now).</p>
<p>The model they want <em>immediately</em> is:</p>
<pre><code><tradeParty>
<id>1</id>
<name>Ann</name>
<transaction type="long" product="money" value="20.00"/>
</tradeParty>
</code></pre>
<p>This models that Ann gave away $20.00. Then a <em>separate</em> transaction has to be entered:</p>
<pre><code><tradeParty>
<id>1</id>
<name>Ann</name>
<transaction type="short" product="book" reference="book.123"/>
</tradeParty>
</code></pre>
<p>To model that she acquired the Harry Potter book. Quite cumbersome in my opinion because we cannot model whether our system will cheat Ann. Likewise a similar kind of fragmentation of transactions happens to the Bob's side of the trade contract.</p>
http://stackoverflow.com/questions/402056/should-i-do-more-javase-before-jumping-to-javaee/402332#4023321Answer by Alan for Should I do more JavaSE before jumping to JavaEE?Alan2008-12-31T04:52:30Z2009-01-01T03:03:24Z<p>I would agree with the advice given that it's OK to jump into J2EE from learning core Java. That said, I would continuously hone your core Java skills.</p>
<p>When I'm looking for J2EE developers that I want on my team, I look for folks that know how to write simple maintainable code by exploiting the JDK to its fullest extent. You should know the collections API like the back of your hand. You should definitely practice the advice given in Effective Java. Eventually you will have to know some of the subtleties of threading (step 1: keep your objects immutable; step 2: see step 1).</p>
<p>BTW, if you're in the New York area, leave a comment and maybe we can contact each other offline.</p>
<p>Clarification: every interesting Java application will require business logic and the use of plain old Java objects (POJOs). Trivially, that includes J2EE applications, whether it is a web app, a framework for use by web apps, or even a J2EE app server itself. It's usually an eye opening experience for a Java developer once they've developed a "toy" app server. J2EE becomes a lot easier after that.</p>
<p>By my lights, a true J2EE "Jedi master" knows how to take apart an app server to its basic core Java components. E.g. EJBs are proxies that wrap business POJOs by adding the capability for remote procedure calls with the RMI networking protocol as well as a transactional manager. If you understand RPCs, RMI and transactions, your chances of understanding EJBs rapidly goes up.</p>
<p>Or to put it in Joel Spolsky talk, J2EE is a leaky abstraction built on top of the J2SE networking API.</p>
http://stackoverflow.com/questions/399618/what-is-fuzzy-logic/399680#3996804Answer by Alan for What is fuzzy logic? Alan2008-12-30T06:54:12Z2008-12-30T06:54:12Z<p>To build off of chaos' answer, a formal logic is nothing but an inductively defined set that maps sentences to a valuation. At least, that's how a model theorist thinks of logic. In the case of a sentential boolean logic:</p>
<pre><code> (basis clause) For all A, v(A) in {0,1}
(iterative) For the following connectives,
v(!A) = 1 - v(A)
v(A & B) = min{v(A), v(B)}
v(A | B) = max{v(A), v(B)}
(closure) All sentences in a boolean sentential logic are evaluated per above.
</code></pre>
<p>A fuzzy logic changes would be inductively defined:</p>
<pre><code> (basis clause) For all A, v(A) between [0,1]
(iterative) For the following connectives,
v(!A) = 1 - v(A)
v(A & B) = min{v(A), v(B)}
v(A | B) = max{v(A), v(B)}
(closure) All sentences in a fuzzy sentential logic are evaluated per above.
</code></pre>
<p>Notice the only difference in the underlying logic is the permission to evaluate a sentence as having the "truth value" of 0.5. An important question for a fuzzy logic model is the threshold that counts for truth satisfaction. This is to ask: for a valuation v(A), for what value D it is the case the v(A) > D means that A is satisfied.</p>
<p>If you really want to found out more about non-classical logics like fuzzy logic, I would recommend either <a href="http://rads.stackoverflow.com/amzn/click/0521854334" rel="nofollow"><em>An Introduction to Non-Classical Logic: From If to Is</em></a> or <a href="http://rads.stackoverflow.com/amzn/click/0199259879" rel="nofollow"><em>Possibilities and Paradox</em></a></p>
<p>Putting my coder hat back on, I would be careful with the use of fuzzy logic in real world programming, because of the tendency for a fuzzy logic to be undecidable. Maybe it's too much complexity for little gain. For instance a supervaluational logic may do just fine to help a program model vagueness. Or maybe probability would be good enough. In short, I need to be convinced that the domain model dovetails with a fuzzy logic.</p>
http://stackoverflow.com/questions/370258/real-world-example-of-the-strategy-pattern/370502#3705020Answer by Alan for Real World Example of the Strategy PatternAlan2008-12-16T05:06:26Z2008-12-16T05:06:26Z<p>A few weeks ago, I added a common Java interface which was implemented by one of our domain objects. This domain object was loaded from the database, and the database representation was a star schema with about 10+ branches. One of the consequences of having such a heavy weight domain object is that we've had to make other domain objects that represented the same schema, albeit less heavyweight. So I made the other lightweight objects implement the same interface. Put otherwise we had:</p>
<pre><code>public interface CollectibleElephant {
long getId();
String getName();
long getTagId();
}
public class Elephant implements CollectibleElephant { ... }
public class BabyElephant implements CollectibleElephant { ... }
</code></pre>
<p>Originally, I wanted to use <code>CollectibleElephant</code> to sort <code>Elephant</code>s. Pretty quickly, my teammates glommed onto <code>CollectibleElephant</code> to run security checks, filter them as they get sent to the GUI, etc.</p>
http://stackoverflow.com/questions/333030/open-source-or-free-financial-analysis-programs-libraries/333041#3330414Answer by Alan for Open source or free financial analysis programs/librariesAlan2008-12-02T04:15:19Z2008-12-02T04:15:19Z<p>How about <a href="http://www.jquantlib.org/index.php/Main_Page" rel="nofollow">JQuantLib</a> or <a href="http://quantlib.org/index.shtml" rel="nofollow">QuantLib</a>?</p>
http://stackoverflow.com/questions/1059285/whats-it-called-when-you-have-a-data-structure-that-looks-like-an-org-chart/1059299#1059299Comment by Alan on what's it called when you have a data structure that looks like an org chart? Alan2009-06-29T22:15:55Z2009-06-29T22:15:55ZDon't think it's an ordered tree. As stated, there is no need to sort siblings. There is no natural order that applies.
Call it an n-ary unordered tree.http://stackoverflow.com/questions/1050710/it-guy-picking-up-programming-c-python-or-ruby/1050821#1050821Comment by Alan on IT guy picking up programming - C#, Python, or RubyAlan2009-06-27T00:21:42Z2009-06-27T00:21:42ZFine: a Google search reveals that C# has a Mono REPL, but can we guarantee that it is equivalent to one for Windows?http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/888684#888684Comment by Alan on What is your longest-held programming assumption that turned out to be incorrect?Alan2009-05-20T16:12:11Z2009-05-20T16:12:11ZJava. FindBugs and PMD are Java static analysis tools.http://stackoverflow.com/questions/874576/is-latex-worth-learning-today/874826#874826Comment by Alan on Is LaTeX worth learning today?Alan2009-05-17T16:59:24Z2009-05-17T16:59:24ZI'm not sure if you've tried to write a long document (50+ pages) in both Word and Latex. As everyone has mentioned, Latex is the standard for math heavy docs. Word cannot make a subscript print directly below a superscript. Nor can many diff tools handle merges of Office documents. That said, if my cowriters were only comfortable with Word I would conform.
http://stackoverflow.com/questions/825141/is-there-any-library-to-represent-sql-queries-as-objects-in-java-code/825230#825230Comment by Alan on Is there any library to represent SQL queries as objects in Java code?Alan2009-05-15T04:15:33Z2009-05-15T04:15:33ZI think a criteria API pulls in the wrong direction from having a SQL builder API. On my current project, the original (and long gone) developers used a criteria API, and the current team hates it. We can get a DAO method done using native SQL in half the time it takes to write the criteria API, because the we often end up looking at the SQL the criteria API generates to verify its correctness. If you know the correct SQL already, why count on a SQL generator?http://stackoverflow.com/questions/213757/why-do-people-use-java/213800#213800Comment by Alan on Why do people use Java?Alan2009-04-27T12:44:31Z2009-04-27T12:44:31ZJon: as they say, if Java were a car, it would be the 4 door family sedan :)http://stackoverflow.com/questions/725432/best-programming-process-for-creating-a-graphically-complex-java-swing-applicatio/725641#725641Comment by Alan on Best programming process for creating a graphically-complex Java Swing Application?Alan2009-04-09T16:22:35Z2009-04-09T16:22:35ZTotally agree: sometimes we've even found that so-called presentational rules (i.e. show this if that kind of user has clicked buttonFoo) ought to live in a rules engine.http://stackoverflow.com/questions/579966/where-should-i-get-started-with-learning-databases/580016#580016Comment by Alan on Where should I get started with learning databases?Alan2009-02-24T01:45:26Z2009-02-24T01:45:26ZI'm as big as a RoR fan as you but certain things in Rails don't make sense unless you understand fundamentals of relational theory.http://stackoverflow.com/questions/559906/what-kinds-of-unit-tests-pay-off-the-most-in-business-value/560066#560066Comment by Alan on What kinds of unit tests pay off the most in business value?Alan2009-02-18T21:01:15Z2009-02-18T21:01:15ZWrote up this question (and my answer) while listing to the podcast. I tend to side with Bob Martin on this issue. More tests is better, though I can certainly hear Joel about the fragile test problem.http://stackoverflow.com/questions/322666/why-does-it-seem-that-most-programmers-tend-to-write-all-their-code-at-the-lowestComment by Alan on Why does it seem that most programmers tend to write all their code at the lowest possible level of abstraction?Alan2009-01-08T18:31:32Z2009-01-08T18:31:32ZYou're not a mutant. You're just kind of teammate I prefer.http://stackoverflow.com/questions/184118/what-programming-book-would-you-not-recommend-to-developers/391570#391570Comment by Alan on What Programming Book would you NOT recommend to Developers?Alan2009-01-08T18:20:59Z2009-01-08T18:20:59ZNewbies to design patterns with a sense of humor would definitely benefit the most but it's not a book I would reread. Better to have read & reread GOF. Even better to know the reason why these patterns "disappear" in higher level languages.http://stackoverflow.com/questions/423132/how-do-you-use-intefaces-with-the-factory-pattern-in-domain-driven-design/423139#423139Comment by Alan on How do you use Intefaces with the Factory Pattern in Domain-Driven Design?Alan2009-01-08T04:03:13Z2009-01-08T04:03:13ZAlso the collection of method signatures on a class counts an interface, which is independent of whether you're implementing a Java/C# interface.http://stackoverflow.com/questions/423132/how-do-you-use-intefaces-with-the-factory-pattern-in-domain-driven-designComment by Alan on How do you use Intefaces with the Factory Pattern in Domain-Driven Design?Alan2009-01-08T03:50:54Z2009-01-08T03:50:54ZThough your example is in C#, there's no reason why we can't ask this design question in Java.http://stackoverflow.com/questions/411254/what-are-the-differences-between-php-and-java/411650#411650Comment by Alan on What are the differences between PHP and Java?Alan2009-01-04T22:20:13Z2009-01-04T22:20:13ZI don't understand what is unintuitive about Strings. In your example, "foo" != "bar" whether the semantics is by reference or by value.http://stackoverflow.com/questions/411682/introduction-to-static-analysis/411711#411711Comment by Alan on Introduction to Static AnalysisAlan2009-01-04T22:13:48Z2009-01-04T22:13:48ZSince the question is about static analysis not optimizing bytecode generation, the Dragon book is still as relevant as ever because an analyzer must at least be smart about the AST.