User Asgeir S. Nilsen - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T06:49:28Zhttp://stackoverflow.com/feeds/user/16023http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/84143/what-programming-paradigm-will-be-most-successful-in-future-multi-core-computers0What programming paradigm will be most successful in future multi-core computers?Asgeir S. Nilsen2008-09-17T14:58:37Z2009-08-05T18:54:31Z
<p>Many of us have two or more CPU cores on our desktop today. Most applications work quite similarly to what they did when we had only one core.</p>
<p>But what when a typical desktop machine has 1000+ cores?</p>
<p>What programming paradigms will we use then. Our current threading and synchronization solutions seldom scale well to that many cores.</p>
<p>Do you think the Thread class be deprecated in the JDK?</p>
http://stackoverflow.com/questions/105544/most-important-problem-solved-by-ejb-3/108976#1089760Answer by Asgeir S. Nilsen for Most important problem solved by EJB 3?Asgeir S. Nilsen2008-09-20T18:46:51Z2008-09-20T18:46:51Z<p>One thing that has bitten many when using EJBs, or J2EE in general, is the dependency on the application server you're running your EJBs on. The appserver tends to be supported for a particular set of operating system releases and JVM versions. Not having the source code to a significant part of your runtime environment could also turn into a challenge.</p>
<p>While migrating from one vendor to another in principle is possible, you need to be very aware of small differences in how they implement the specification, and to stay away from vendor-specific extensions.</p>
<p>That being said, the appservers I've been exposed to can handle very much abuse from the code running in it and perform very well.</p>
http://stackoverflow.com/questions/100162/what-is-your-tool-for-version-control-faq/100373#1003737Answer by Asgeir S. Nilsen for What is your tool for version control (FAQ)Asgeir S. Nilsen2008-09-19T08:01:45Z2008-09-19T08:01:45Z<p>Bazaar (for voting)</p>
http://stackoverflow.com/questions/100162/what-is-your-tool-for-version-control-faq/100370#1003700Answer by Asgeir S. Nilsen for What is your tool for version control (FAQ)Asgeir S. Nilsen2008-09-19T08:00:53Z2008-09-19T08:00:53Z<p>Mercurial (for voting)</p>
http://stackoverflow.com/questions/34975/branching-strategies/97548#975483Answer by Asgeir S. Nilsen for Branching StrategiesAsgeir S. Nilsen2008-09-18T22:13:21Z2008-09-18T22:13:21Z<p>Henrik Kniberg's <a href="http://www.infoq.com/articles/agile-version-control" rel="nofollow">Version Control for Multiple Agile Teams</a> also has some good points to take into consideration.</p>
http://stackoverflow.com/questions/203/best-filesystem-to-use-for-desktop-linux/97383#973832Answer by Asgeir S. Nilsen for Best Filesystem to use for Desktop Linux?Asgeir S. Nilsen2008-09-18T21:53:38Z2008-09-18T21:53:38Z<p>I would pay more attention to what is <em>underneath</em> the filesystem: LVM. Because of LVM I have basically had the same Linux installation on three hard drives in three different laptop models.</p>
<p>Because of the way LVM is structured you can migrate the data from one disk to another, <em>while the machine is up and running!</em></p>
<p>I also tend to create filesystems for each major area of the filesystem hierarchy (my current install has six) and create them as small as possible. You can then grow them from the spare space on the disk when needed.</p>
http://stackoverflow.com/questions/89456/linux-servers/97336#973360Answer by Asgeir S. Nilsen for Linux ServersAsgeir S. Nilsen2008-09-18T21:46:25Z2008-09-18T21:46:25Z<p>It really depends:</p>
<ul>
<li>How long will the server "live" without major upgrades?</li>
<li>How important is it that much of the software is of the latest and greatest version?</li>
<li>How much time do you want to spend on upgrades and maintenance?</li>
<li>Do you want to build software packages yourself or depend on what's in the distribution?</li>
</ul>
http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/94938#949381Answer by Asgeir S. Nilsen for Overriding equals and hashCode in JavaAsgeir S. Nilsen2008-09-18T17:53:42Z2008-09-18T17:53:42Z<p>The first question you should ask is <em>do you really need to?</em> java.lang.Object has implementations of these methods that are sufficient for usage as hashtable keys.</p>
http://stackoverflow.com/questions/92666/tips-on-walking-through-unfamiliar-code-or-info-on-tools-that-help-the-process/94887#948871Answer by Asgeir S. Nilsen for Tips on walking through unfamiliar code or info on tools that help the process?Asgeir S. Nilsen2008-09-18T17:48:16Z2008-09-18T17:48:16Z<p>A tip I got from listening to a presentation given by Michael Fethers is to write unit tests for the code. By running these tests with different inputs you get an idea on the behavior of the classes.</p>
<p>They are also helpful to assert that behaviour hasn't changed if you change the code.</p>
http://stackoverflow.com/questions/93177/java-jvm-parameters/94824#948240Answer by Asgeir S. Nilsen for Java jvm parametersAsgeir S. Nilsen2008-09-18T17:43:12Z2008-09-18T17:43:12Z<p>You can change a system property using System.setProperty(), but whether or not this has an effect really depends on that system property. Some properties are read statically, i.e. at class loading time, and others might cache the value in some object field.</p>
http://stackoverflow.com/questions/94542/can-i-compose-a-spring-configuration-file-from-smaller-ones/94788#947881Answer by Asgeir S. Nilsen for Can I compose a Spring Configuration File from smaller ones?Asgeir S. Nilsen2008-09-18T17:39:35Z2008-09-18T17:39:35Z<p>We do this in our projects at work, using the classpath* resource loader in Spring. For a certain app, all appcontext files containing the application id will be loaded:</p>
<pre><code>classpath*:springconfig/spring-appname-*.xml
</code></pre>
http://stackoverflow.com/questions/94361/when-do-you-use-javas-override-annotation-and-why/94759#947590Answer by Asgeir S. Nilsen for When do you use Java's @Override annotation and why?Asgeir S. Nilsen2008-09-18T17:37:33Z2008-09-18T17:37:33Z<p>@Override on interfaces actually are helpful, because you will get warnings if you change the interface.</p>
http://stackoverflow.com/questions/94685/what-are-the-extents-of-the-meaning-of-distributing-under-the-lgpl-license/94723#947231Answer by Asgeir S. Nilsen for What are the extents of the meaning of "distributing" under the LGPL license?Asgeir S. Nilsen2008-09-18T17:33:49Z2008-09-18T17:33:49Z<p>Your first question really depends on the contract you develop software under. Do you deliver a complete product or work on a hour-by-hour basis? Who retains copyright over the software?</p>
<p>I'd say that in general if you work as a contractor, its your client that has to deal with these issues.</p>
<p>Yes, download via password protection constitutes distribution in my opinion, and you would have to distribute source code in the same manner.</p>
http://stackoverflow.com/questions/94346/can-i-legally-incorporate-gpl-lgpl-open-sourced-software-in-a-proprietary-clo/94428#944282Answer by Asgeir S. Nilsen for Can I legally incorporate GPL & LGPL, open-sourced software in a proprietary, closed-source project?Asgeir S. Nilsen2008-09-18T16:55:03Z2008-09-18T17:23:56Z<p>This is a tricky question to answer generally, since it really depends on many things. LGPL softens some requirements in the GPL specifically related to linking. GPL also exists in a <a href="http://www.gnu.org/software/classpath/license.html" rel="nofollow">classpath exception</a> variant where putting the library on the classpath of a proprietary application is not considered derived works.</p>
<p>I recommend that you read the <a href="http://www.gnu.org/licenses/gpl-faq.html" rel="nofollow">GPL FAQ</a>. It tries to answer some of these questions.</p>
<p>One thing many people seem to forget is that the GPL mostly relates to <em>distribution</em> of software. Building a proprietary application and copying it internally in your corporation is <em>not</em> considered as distribution.</p>
<p>But to get a complete answer you need to seek legal counsel and / or contact the copyright holders to ascertain their opinion on the matter. Many open source projects are also dual licensed.</p>
<p>For Hibernate you should read <a href="http://www.hibernate.org/356.html" rel="nofollow">http://www.hibernate.org/356.html</a> -- it provides some insight and has this to say:</p>
<blockquote>
<p>Using Hibernate (by importing Hibernate's public interfaces in your Java code), and extending Hibernate (by subclassing or implementation of an extension interface) is considered by the authors of Hibernate to be dynamic linking. Hence our interpretation of the LGPL is that the use of the unmodified Hibernate source does not affect the license of your application code.</p>
</blockquote>
<p>Another thing you could do is to break up your applications into several modules that interact at arm's length. In this matter only the components that actually use GPL-licensed modules would have to be released under a GPL compatible license.</p>
http://stackoverflow.com/questions/92059/gui-testing/94518#945181Answer by Asgeir S. Nilsen for GUI TestingAsgeir S. Nilsen2008-09-18T17:07:43Z2008-09-18T17:07:43Z<p>We do incorporate GUI testing in our project, and it has its side effects. The developers however have one critical design principle: <em>Keep the GUI layer as thin as possible!</em></p>
<p>That means <em>no logic</em> in the GUI classes. Separate this in presentation models responsible for input validation etc.</p>
<p>For testing on a Unix machine we use the Xvfb server as the DISPLAY when running the tests.</p>
http://stackoverflow.com/questions/91857/renaming-mapping-cygwin-folders/91866#918665Answer by Asgeir S. Nilsen for Renaming/Mapping Cygwin FoldersAsgeir S. Nilsen2008-09-18T11:56:07Z2008-09-18T11:56:07Z<p>Yes, you can. See <a href="http://www.cygwin.com/cygwin-ug-net/using.html#mount-table" rel="nofollow">The Cygwin Mount Table</a> in Cygwin's documentation. I have my documents folder mounted as /doc. These mounts end up in the registry and are retained across reboots etc.</p>
http://stackoverflow.com/questions/25707/how-do-you-track-your-hours/91854#918540Answer by Asgeir S. Nilsen for How do you track your hours?Asgeir S. Nilsen2008-09-18T11:53:37Z2008-09-18T11:53:37Z<p>I've used <a href="http://psync.com/" rel="nofollow">Punch Time Clock</a> for Palm on an off for five years. It has never failed me. The desktop app allows you to send data to Excel, and a report is just a pivot table away.</p>
http://stackoverflow.com/questions/90523/is-the-scrum-master-also-a-developer-on-your-team/90865#908653Answer by Asgeir S. Nilsen for Is the Scrum Master also a developer on your team?Asgeir S. Nilsen2008-09-18T08:11:21Z2008-09-18T08:11:21Z<p>I think you could easily get the hats mixed up if you have both the ScrumMaster hat and a developer hat or even an architect hat.</p>
<p>The ScrumMaster's role is purely as a facilitator and should not have any real power over the team or the product they are working on. Perhaps you should consider swapping ScrumMasters with the team down the hall?</p>
http://stackoverflow.com/questions/87513/what-is-the-best-resource-for-learning-scrum/90850#908500Answer by Asgeir S. Nilsen for What is the best resource for learning Scrum?Asgeir S. Nilsen2008-09-18T08:06:37Z2008-09-18T08:06:37Z<p>We've had good experience by holding an on-site CSM (Certified ScrumMaster) course.</p>
<p>From the course we learned that the key most important thing in Scrum is "inspect and adapt," i.e. figure out what works for your team and adapt the process accordingly.</p>
http://stackoverflow.com/questions/71036/scrum-non-cooperative-team-members/90825#908250Answer by Asgeir S. Nilsen for SCRUM - non cooperative team membersAsgeir S. Nilsen2008-09-18T08:00:45Z2008-09-18T08:00:45Z<p>Scrum is a bottom up process, so in principle every team member should support the process.</p>
<p>How is the team put together? By organizational tradition or because of a common goal?</p>
<p>Not everybody buy into the Scrum idea, and we should respect that. Perhaps the best for all is that these members are not part of the Scrum team?</p>
http://stackoverflow.com/questions/90682/how-do-i-create-a-thread-dump-of-a-java-web-start-application/90743#907432Answer by Asgeir S. Nilsen for How do I create a thread dump of a Java Web Start applicationAsgeir S. Nilsen2008-09-18T07:37:02Z2008-09-18T07:37:02Z<p>Recent JDKs (sadly not JREs) include tools like jstack which does such things. JVMs from version 5 include JMX extensions to get thread dumps, memory statistics, and much more. All java applications, including web start applications, have this functionality available.</p>
<p>You would either need to have the JDK installed or to write a JMX client that does the same thing. Take a look at <a href="http://java.sun.com/javase/6/docs/technotes/guides/management/" rel="nofollow">http://java.sun.com/javase/6/docs/technotes/guides/management/</a> to get more information.</p>
http://stackoverflow.com/questions/959/are-it-conferences-useful/87685#876850Answer by Asgeir S. Nilsen for Are IT conferences useful?Asgeir S. Nilsen2008-09-17T21:08:44Z2008-09-17T21:08:44Z<p>I bet there are many <em>REALLY GOOD</em> conferences out there, but they seem to be hard to find. My gut feeling is that small-scale (for your culture's definition of small) conferences driven by a community has higher probability of good content than gigantic vendor-driven conferences.</p>
<p>But it's all about the people. My suggestion would be to try something (completely) different, perhaps far away from home.</p>
<p>Have anyone attended any of the NFJS events? Are they any good?</p>
http://stackoverflow.com/questions/87137/sequence-diagram-reverse-engineering/87617#876170Answer by Asgeir S. Nilsen for Sequence Diagram Reverse EngineeringAsgeir S. Nilsen2008-09-17T20:59:59Z2008-09-17T20:59:59Z<p>A friend of me directed me to SEQUENCE (<a href="http://www.xanthan.com/ajm/sequencev7/sequence.jar" rel="nofollow">http://www.xanthan.com/ajm/sequencev7/sequence.jar</a>). I cannot find any other documentation than within the jar itself. </p>
<p>It does not parse Java source code directly, but uses a text-based representation of the sequence to generate the sequence diagram. You could either write this representation by hand or do some source code preprocessing magic to generate this text format.</p>
<p>I am yet to be impressed by any reverse-engineering trickery when it comes to sequence diagrams, but perhaps others have better experiences?</p>
http://stackoverflow.com/questions/87330/numbering-regex-submatches/87417#874170Answer by Asgeir S. Nilsen for Numbering Regex SubmatchesAsgeir S. Nilsen2008-09-17T20:39:03Z2008-09-17T20:39:03Z<p>You count opening parentheses, left to right. So the order would be</p>
<pre><code>(([0-9]{3}).([0-9]{3}).([0-9]{3}).([0-9]{3}))
([0-9]{3})
([0-9]{3})
([0-9]{3})
([0-9]{3})
([A-Z]+)
</code></pre>
<p>At least this is what Perl would do. Other regex engines might have different rules.</p>
http://stackoverflow.com/questions/11831/singletons-good-design-or-a-crutch/87053#870530Answer by Asgeir S. Nilsen for Singletons: good design or a crutch?Asgeir S. Nilsen2008-09-17T20:04:45Z2008-09-17T20:04:45Z<p>One scary thing on singletons in for instance Java is that you <em>can</em> end up with multiple instances of the same singleton in some cases. The JVM uniquely identifies based on <em>two</em> elements: A class' fully qualified name, and the classloader responsible for loading it.</p>
<p>That means the same class can be loaded by two classloaders unaware of each other, and different parts of your application would have different instances of this singleton that they interact with.</p>
http://stackoverflow.com/questions/86784/agile-development-in-a-distributed-team/86982#869824Answer by Asgeir S. Nilsen for Agile development in a distributed teamAsgeir S. Nilsen2008-09-17T19:57:57Z2008-09-17T19:57:57Z<p>These are findings my employer presented from a massive distributed project.</p>
<p>Make sure the team meets in person, both at start-up of project, and regularly throughout the project. Ensure that all feel included in social events.</p>
<p>Be prepared to spend on good communication equipment. Don't buy crap microphones -- go for decent teleconferencing equipment. Make sure you have enough bandwidth to handle this.</p>
<p>Find good collaboration tools and stick to them.</p>
<p>Add people's photos to virtual meeting rooms -- it's much easier to talk to a face even if it's just a photo.</p>
<p>Communicate the project's vision as often as possible to ensure people are on track.</p>
http://stackoverflow.com/questions/86878/log4j-why-is-the-root-logger-collecting-all-log-types-regardless-the-configurati/86928#869281Answer by Asgeir S. Nilsen for Log4j: Why is the root logger collecting all log types regardless the configuration?Asgeir S. Nilsen2008-09-17T19:50:34Z2008-09-17T19:50:34Z<p>Two things: Check additivity and decide whether you want log events captured by more detailed levels of logging to propagate to the root logger.</p>
<p>Secondly, check the level for the root logger. In addition you can also add filtering on the appender itself, but this should normally not be necessary.</p>
http://stackoverflow.com/questions/83918/log4j-log-file-names/84039#840391Answer by Asgeir S. Nilsen for log4j log file names?Asgeir S. Nilsen2008-09-17T14:48:43Z2008-09-17T14:48:43Z<p>If the job names are known ahead of time, you could include the job name when you do the getLogger() call. You then can bind different appenders to different loggers, with separate file names (or other destinations).</p>
<p>If you cannot know the job name ahead of time, you could configure the logger at runtime instead of using a configuration file:</p>
<pre><code>FileAppender appender = new FileAppender();
appender.setFileName(...);
appender.setLayout(...);
Logger logger = Logger.getLogger("com.company.job."+jobName);
logger.addAppender(appender);
</code></pre>
http://stackoverflow.com/questions/549/the-definitive-guide-to-website-authentication-beta/83980#839800Answer by Asgeir S. Nilsen for The Definitive Guide To Website Authentication (beta)Asgeir S. Nilsen2008-09-17T14:43:07Z2008-09-17T14:43:07Z<p>Hash the password on the client side (using JavaScript). Include user name and server-generated challenge to the hash.</p>
<p><a href="http://blog.asgeirnilsen.com/2005/11/password-authentication-without.html" rel="nofollow">http://blog.asgeirnilsen.com/2005/11/password-authentication-without.html</a></p>
http://stackoverflow.com/questions/59022/replacing-plain-text-password-for-app/83961#839610Answer by Asgeir S. Nilsen for Replacing plain text password for appAsgeir S. Nilsen2008-09-17T14:41:39Z2008-09-17T14:41:39Z<p>Hope you forgive me for plugging a solution I wrote on this, using client side JavaScript to hash the password before it's transmitted: <a href="http://blog.asgeirnilsen.com/2005/11/password-authentication-without.html" rel="nofollow">http://blog.asgeirnilsen.com/2005/11/password-authentication-without.html</a></p>
http://stackoverflow.com/questions/31353/is-jad-the-best-java-decompiler/31406#31406Comment by Asgeir S. Nilsen on Is Jad the best java decompiler?Asgeir S. Nilsen2008-09-19T17:31:13Z2008-09-19T17:31:13ZCavaj is just a graphical frontend to Jad.http://stackoverflow.com/questions/100162/what-is-your-tool-for-version-control-faqComment by Asgeir S. Nilsen on What is your tool for version control (FAQ)Asgeir S. Nilsen2008-09-19T08:05:30Z2008-09-19T08:05:30ZVoting could still be relevant I think, just to see what people use and what they think. There never will be a universal answer, but interesting things could still emerge from the figures.http://stackoverflow.com/questions/94346/can-i-legally-incorporate-gpl-lgpl-open-sourced-software-in-a-proprietary-clo/94377#94377Comment by Asgeir S. Nilsen on Can I legally incorporate GPL & LGPL, open-sourced software in a proprietary, closed-source project?Asgeir S. Nilsen2008-09-18T16:56:54Z2008-09-18T16:56:54ZThis is not true for GPL with the classpath exception.http://stackoverflow.com/questions/84884/jms-esp-tibco-ems-can-i-have-an-environment-with-in-a-message-brokerComment by Asgeir S. Nilsen on JMS (esp Tibco EMS) can I have an environment with in a message brokerAsgeir S. Nilsen2008-09-17T21:01:36Z2008-09-17T21:01:36ZDo these applications use hard coded topic names, or are there some JNDI lookups inbetween?http://stackoverflow.com/questions/85605/can-anyone-recommend-a-simple-java-logging-framework/85918#85918Comment by Asgeir S. Nilsen on Can anyone recommend a simple Java logging framework?Asgeir S. Nilsen2008-09-17T20:49:09Z2008-09-17T20:49:09ZOne nice thing about LogBack is also the Eclipse console plugin (<a href="http://logback.qos.ch/consolePlugin.html" rel="nofollow">logback.qos.ch/consolePlugin.html</a>). I for one is sick and tired of grepping and other nasty stuff to get the important messages to stand out.http://stackoverflow.com/questions/85605/can-anyone-recommend-a-simple-java-logging-framework/85654#85654Comment by Asgeir S. Nilsen on Can anyone recommend a simple Java logging framework?Asgeir S. Nilsen2008-09-17T20:43:27Z2008-09-17T20:43:27ZSad thing with log4j is that you don't get any logging with the default configuration. I second Andreas' suggestion on using SLF4J. This gives you the opportunity to switch at a later time without changing a lot of code.