User ordnungswidrig - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T13:18:30Zhttp://stackoverflow.com/feeds/user/9069http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/734110/persistent-data-structures-in-java4Persistent data structures in Javaordnungswidrig2009-04-09T13:00:26Z2009-11-18T18:56:35Z
<p>Does anyone know a library or some at least some research on creating and using persistent data structures in Java? I don't refer to persistence as long term storage but persistence in terms of immutability (see <a href="http://en.wikipedia.org/wiki/Persistent%5Fdata%5Fstructure" rel="nofollow">Wikipedia entry</a>).</p>
<p>I'm currently exploring different ways to model an api for persistent structures. Using builders seems to be a interesting solution:</p>
<pre><code>// create persistent instance
Person p = Builder.create(Person.class)
.withName("Joe")
.withAddress(Builder.create(Address.class)
.withCity("paris")
.build())
.build();
// change persistent instance, i.e. create a new one
Person p2 = Builder.update(p).withName("Jack");
Person p3 = Builder.update(p)
.withAddress(Builder.update(p.address())
.withCity("Berlin")
.build)
.build();
</code></pre>
<p>But this still feels somewhat boilerplated. Any ideas?</p>
http://stackoverflow.com/questions/1449425/what-very-large-functional-language-projects-are-freely-available/1451001#14510014Answer by ordnungswidrig for What very large functional language projects are freely available?ordnungswidrig2009-09-20T13:18:01Z2009-09-20T13:18:01Z<p>The darcs distributed version control system is pure haskell, i.e. pure and lazy fp. By lines of code this might not seem to be a large project, but keep in mind that haskell syntax is very dense.</p>
http://stackoverflow.com/questions/613603/java-nimbus-laf-with-transparent-text-fields/618802#6188020Answer by ordnungswidrig for Java Nimbus LAF with transparent text fieldsordnungswidrig2009-03-06T13:08:23Z2009-08-21T17:07:46Z<p>I think the question is how to interpret "opaque" and "background".
For a JTextfield there is the question: "what visible parts are the background?". I'd define "background" as the parts of the bounding rectangle, that are not drawn by the component.
For a "round" button, e.g., this will be the corners outside the circle.
Therefor I'd say a JTextfield has no visible background! It has a rectangular shape and what you are the taking as background is not the field's background but the field's canvas.</p>
<p><hr /></p>
<p><strong>Rebuttal from OP</strong></p>
<p>This is an interesting enough idea to be worth responding to in the answer for future viewers (as opposed to in comments).</p>
<p>I have to disagree. I would argue that the part of the component outside the border is not part of the component - it's <em>outside</em> the component. A field with rounded corners is, of necessity, non-opaque, in that it cannot be responsible for painting it's entire rectangular region - this is a side-effect of all components being rectangular in dimensions. </p>
<p>I think this consideration makes the argument for the existing (and misunderstood) meaning of isOpaque(). It also makes my argument that setOpaque() should not exist and that setBackground(null) should cause the component to not paint a background.</p>
<p>I would put forth that the background of a text field is indeed the color of the region inside it's borders, and I don't think you will find very many people to dispute that as an intuitive conclusion - therefore having background apply to that region obeys the rule of least surprise for the API user.</p>
http://stackoverflow.com/questions/299723/can-i-do-transactions-and-locks-in-couchdb/1215297#12152972Answer by ordnungswidrig for Can I do transactions and locks in CouchDB?ordnungswidrig2009-07-31T23:01:59Z2009-07-31T23:01:59Z<p>A design pattern for restfull transactions is to create a "tension" in the system. For the popular example use case of a bank account transaction you must ensure to update the total for both involved accounts:</p>
<ul>
<li>Create a transaction document "transfer USD 10 from account 11223 to account 88733". This creates the tension in the system.</li>
<li>To resolve any tension scan for all transaction documents and
<ul>
<li>If the source account is not updated yet update the source account (-10 USD)</li>
<li>If the source account was updated but the transaction document does not show this then update the transaction document (e.g. set flag "sourcedone" in the document)</li>
<li>If the target account is not updated yet update the target account (+10 USD)</li>
<li>If the target account was updated but the transaction document does not show this then update the transaction document </li>
<li>If both accouts have been updated you can delete the transaction document or keep it for auditing.</li>
</ul></li>
</ul>
<p>The scanning for tension should be done in a backend process for all "tension documents" to keep the times of tension in the system short. In the above example there will be a short time anticipated inconsistence when the first account has been updated but the second is not updated yet. This must be taken into account the same way you'll deal with eventual consistency if your Couchdb is distributed.</p>
<p>Another possible implementation avoids the need for transactions completely: just store the tension documents and evaluate the state of your system by evaluating every involved tension document. In the example above this would mean that the total for a account is only determined as the sum values in the transaction documents where this account is involved. In Couchdb you can modles this very nicely as a map/reduce view.</p>
http://stackoverflow.com/questions/838175/couchdb-views-createdat-greater-than-a-passed-value/1215242#12152420Answer by ordnungswidrig for CouchDB Views: created_at greater than a passed valueordnungswidrig2009-07-31T22:45:04Z2009-07-31T22:45:04Z<p>Please mind that couchdb works only on json values. If the timezone if the document stored in couchdb is different to the timezone of your startkey the query likely will fail.</p>
http://stackoverflow.com/questions/1036828/does-couchdb-support-multiple-range-queries/1215223#12152230Answer by ordnungswidrig for Does CouchDB support multiple range queries?ordnungswidrig2009-07-31T22:41:36Z2009-07-31T22:41:36Z<p>You're using arrays as your keys. Couchdb will compare arrays by comparing each array element in increasing order until two element are not equal.</p>
<p>E.g. to compare <code>[1,'a',5]</code> and <code>[1,'c',0]</code> it will compare 1 whith 1, then 'a' with 'c' and will decide that [1,'a',5] is less than [1,'a',0]</p>
<p>This explains why your range key query fails:</p>
<p><code>["7446567e45dc5155353736cb3d6041c0",nil,5,30000]</code> is greater <code>["7446567e45dc5155353736cb3d6041c0",nil,5,90000]</code></p>
http://stackoverflow.com/questions/1091735/is-there-a-hosted-couchdb-service-provider/1215200#12152001Answer by ordnungswidrig for Is there a hosted CouchDB service provider?ordnungswidrig2009-07-31T22:34:49Z2009-07-31T22:34:49Z<p>As the transport layer of couchdb transport JSON via REST over HTTP a unix couchdb server is perfectly accessible from a windows .net client. </p>
<p>To get started you can pick a Amazon EC2 AMI for ubuntu with couchdb and pay only for the time this machine is running.</p>
http://stackoverflow.com/questions/1203071/how-do-i-perform-a-parameterized-query-on-couchdb/1215193#12151931Answer by ordnungswidrig for How do I perform a parameterized query on CouchDBordnungswidrig2009-07-31T22:32:01Z2009-07-31T22:32:01Z<p>Technically this is possible of you emit for each document each set of the powerset of the tags of the document as the key. The key set element must be ordered and your query whould have to query the tags ordered, too.</p>
<pre><code>function map(doc) {
function powerset(array) { ... }
powerset_of_tags = powerset(doc.tags)
for(i in powerset_of_tags) {
emit(powerset_of_tags[i], doc);
}
}
</code></pre>
<p>for the doc <code>{"hello_world" : {"id":123, "tags":["hello", "world"], "text":"Hello World"}</code> this would emit:</p>
<pre><code>{ key: [], doc: ... }
{ key: ['hello'], doc: ... }
{ key: ['world'], doc: ... }
{ key: ['hello', 'world'], doc: ... }
</code></pre>
<p>Although is this possible I would consider this a rather arkward solution. I don't want to imagine the disk usage of the view for a larger number of tags. I expect the number of emitted keys to grow like 2^n.</p>
http://stackoverflow.com/questions/1148504/common-interface-for-couchdb-and-amazon-s3/1215163#12151631Answer by ordnungswidrig for Common Interface for CouchDB and Amazon S3ordnungswidrig2009-07-31T22:22:55Z2009-07-31T22:22:55Z<p>Technically a common layer is possible. However I question that this would make sense.
Couchdb has integrated map/reduce functions for your documents which are exposed as "views". I don't think SimpleDB hat anything like that. On the other hand SimpleDB has query expressions which Couchdb has not. Of coure you can model thos expressions as a view in Couchdb if you know your query at development time. </p>
<p>Beside that the common function is not more than create/update/delete a key-document pair.</p>
http://stackoverflow.com/questions/424346/accessing-erlang-business-layer-via-rest/1103195#11031950Answer by ordnungswidrig for Accessing Erlang business layer via RESTordnungswidrig2009-07-09T11:02:05Z2009-07-09T11:02:05Z<p>Do you really mean a RESTful interface or RPC over HTTP? Building a RESTful interface on top of an existing layer is more work than just exposing existing methods via HTTP.</p>
<p>I'd suggest to use mochiweb or yaws to implement a (generic) rpc layer.</p>
http://stackoverflow.com/questions/1080281/good-e-commerce-platform-for-java-or-net/1103167#11031672Answer by ordnungswidrig for Good e-commerce platform for Java or .NETordnungswidrig2009-07-09T10:55:06Z2009-07-09T10:55:06Z<p>I used ofbiz for some projects, a joyful experience. It's now under the apache umbrella: <a href="http://ofbiz.apache.org/" rel="nofollow">http://ofbiz.apache.org/</a></p>
<p>From the website:</p>
<blockquote>
<p>The Apache Open For Business Project
is an open source enterprise
automation software project licensed
under the Apache License Version 2.0.
By open source enterprise automation
we mean: Open Source ERP, Open Source
CRM, Open Source E-Business /
E-Commerce, Open Source SCM, Open
Source MRP, Open Source CMMS/EAM, and
so on</p>
</blockquote>
<p>I used it to build an ecommerce application to sell customized products to consumers. I used the webshop part, the production planning and warehouse management. </p>
<p>Beware that it takes some time to dig into this huge framework but depending on your actual needs it will be worth it. There is also decent commercial support by a lot of service providers.</p>
http://stackoverflow.com/questions/949125/why-are-there-so-many-tools-technologies-to-do-same-task-in-open-source-community/949300#9493008Answer by ordnungswidrig for why are there so many tools/technologies to do same task in open-source communityordnungswidrig2009-06-04T08:38:56Z2009-06-04T08:38:56Z<p>Why are there so many companies that produce cars, bread and tables? Wouldn't it be more productive to consolidate them into a singe mega-car, mega-bread and omni-table company?</p>
http://stackoverflow.com/questions/852579/how-do-i-manage-dynamic-dependencies-with-picocontainer/949282#9492820Answer by ordnungswidrig for How do I manage dynamic dependencies with PicoContainer?ordnungswidrig2009-06-04T08:35:35Z2009-06-04T08:35:35Z<p>I would register B within the session container as well. Any other dependency of B you can leave in the root container. Assume B has another dependency on C. So you can do the following: </p>
<pre><code>// during startup
final MutablePicoContainer root = new PicoBuilder().build();
root.addComponent(C.class, C.class);
// later, initialize sessions
final MutablePicoContainer session = new PicoBuilder(root)
.implementedBy(TransientPicoContainer.class)
.build();
session.addComponent(B.class, B.class);
session.addComponent(new A());
// some request
System.out.println(session.getComponent(B.class));
</code></pre>
http://stackoverflow.com/questions/767437/tool-to-refactor-boolean-expressions3Tool to refactor boolean expressionsordnungswidrig2009-04-20T08:43:37Z2009-04-20T09:02:25Z
<p>I'm looking for a tool to refactor boolean expression. I've got expressions like</p>
<pre><code>a1 => (b1 <=> c or d) AND
a2 => (b2 <=> c or d) AND
a2 => (b2 <=> c or d)
</code></pre>
<p>The tool should be able to simplify expressions, e.g. extract the sub expression "c or d" in the example above. Is there a free computer algebra system which can do this?</p>
<p>Currently I think of refactoring the expressions manually an prove the equivalence with a little haskell quickcheck script.</p>
http://stackoverflow.com/questions/727628/how-do-i-throw-an-exception-from-the-callers-scope/727877#72787710Answer by ordnungswidrig for How do I throw an Exception from the caller's scope?ordnungswidrig2009-04-07T22:42:55Z2009-04-07T22:42:55Z<p>You can set the stack trace of any exception you want to throw:</p>
<pre><code>import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class CarpTest {
public static void main(String[] args) {
new CarpTest().run();
}
public void run() {
methodThatCarps();
}
private void methodThatCarps() {
carp("Message");
}
private void carp(String message) {
RuntimeException e = new RuntimeException(message);
e.fillInStackTrace();
List<StackTraceElement> stack = new ArrayList<StackTraceElement>(Arrays.asList(e.getStackTrace()));
stack.remove(0);
e.setStackTrace(stack.toArray(new StackTraceElement[stack.size()]));
throw e;
}
}
</code></pre>
<p>This will print the following stacktrace at runtime:</p>
<pre><code>Exception in thread "main" java.lang.RuntimeException: Message
at CarpTest.methodThatCarps(CarpTest.java:18)
at CarpTest.run(CarpTest.java:14)
at CarpTest.main(CarpTest.java:10)
</code></pre>
<p>Note that as you want the method "carp" does not appear in the stacktrace. However the manipulation of stacktraces shoud only be done with greates care.</p>
http://stackoverflow.com/questions/706856/can-i-from-a-client-detect-which-ejbs-the-current-user-is-authorized-to-use/712012#7120121Answer by ordnungswidrig for Can I from a client detect which EJBs the current user is authorized to use?ordnungswidrig2009-04-02T23:24:08Z2009-04-02T23:24:08Z<p>As far as I know there is nothing in J2EE which would provide you this information at the client side. Even at the server side <a href="http://java.sun.com/j2ee/sdk%5F1.3/techdocs/api/javax/ejb/EJBContext.html" rel="nofollow">EJBContext</a> will give you just the roles the caller owns as well as the caller's principal (e.g. login name).</p>
<p>I see no other way than to have an extra Session Bean which you can query on the client side and which will inspect the EJBContext on the server side to tell the client which roles the current user owns.</p>
http://stackoverflow.com/questions/700969/caching-solutions-and-querying/701612#7016121Answer by ordnungswidrig for Caching solutions and Queryingordnungswidrig2009-03-31T15:33:38Z2009-03-31T15:33:38Z<p>Look at <a href="http://db4o.org" rel="nofollow">db4o</a>at rather lightweight java object database. You can even query the data using regular java code:</p>
<pre><code>List students = database.query( new Predicate(){
public boolean match(Student student){
return student.getAge() < 20
&& student.getGrade().equals(gradeA);}})
</code></pre>
<p>(From <a href="http://www.theserverside.com/news/thread.tss?thread%5Fid=37595" rel="nofollow">this article</a>).</p>
http://stackoverflow.com/questions/701559/designing-consoles-for-hardware-appliances/701576#7015760Answer by ordnungswidrig for designing consoles for hardware appliancesordnungswidrig2009-03-31T15:25:49Z2009-03-31T15:25:49Z<p>Swing can be customized to special UI environments rather well. Especially with the new Java 6 Nimbus Look and Feel. You'll be able to change e.g. sizes, colors and the way each component is drawn easily. </p>
http://stackoverflow.com/questions/689370/java-collections-copy-list-i-dont-understand/690668#6906680Answer by ordnungswidrig for Java Collections copy list - I don't understandordnungswidrig2009-03-27T17:16:14Z2009-03-27T17:16:14Z<p>Copy isn't useless if you imagine the use case to copy some values into an existing collection. I.e. you want to overwrite existing elements instead of inserting.</p>
<p>An example: a = [1,2,3,4,5] b = [2,2,2,2,3,3,3,3,3,4,4,4,] a.copy(b) = [1,2,3,4,5,3,3,3,3,4,4,4]</p>
<p>However I'd expect a copy method that would take additional parameters for the start index of the source and target collection, as well as a parameter for count.</p>
<p>See Java BUG <a href="http://bugs.sun.com/bugdatabase/view%5Fbug.do?bug%5Fid=6350752" rel="nofollow">6350752</a></p>
http://stackoverflow.com/questions/690084/link-java-textbox-to-string-in-external-class/690645#6906451Answer by ordnungswidrig for Link Java textbox to string in external classordnungswidrig2009-03-27T17:09:14Z2009-03-27T17:09:14Z<p>Make the "other class" a proper bean that supports PropertyChangeListeners. Then create a PropertyChangeLister which racts on changes in the "other class" and which updates the textarea.</p>
<p>Somethin like this:</p>
<pre><code>otherClass.addPropertyChangeListener("propertyname", new PropertyChangeListener() {
void propertyChange(PropertyChangeEvent evt) {
textarea.setText(evt.getNewValue());
}
}
</code></pre>
<p>See </p>
<p><a href="http://java.sun.com/docs/books/tutorial/javabeans/properties/bound.html" rel="nofollow">http://java.sun.com/j2se/1.4.2/docs/api/java/beans/PropertyChangeListener.html</a></p>
<p><a href="http://java.sun.com/j2se/1.4.2/docs/api/java/beans/PropertyChangeSupport.html" rel="nofollow">http://java.sun.com/j2se/1.4.2/docs/api/java/beans/PropertyChangeSupport.html</a></p>
<p><a href="http://java.sun.com/docs/books/tutorial/javabeans/properties/bound.html" rel="nofollow">http://java.sun.com/docs/books/tutorial/javabeans/properties/bound.html</a></p>
http://stackoverflow.com/questions/658488/iterator-for-all-elements-in-hash-maps-stored-in-an-array/658516#6585166Answer by ordnungswidrig for Iterator for all elements in hash maps stored in an arrayordnungswidrig2009-03-18T14:33:25Z2009-03-19T09:24:29Z<p>You can use <code>ChainedIterator</code> from apache commons collections:</p>
<pre><code>Iterator current = IteratorUtils.emptyIterator();
for(map: arrayOfHashmaps) {
current = IteratorUtils.chainedIterator(current, map.keySet().iterator);
}
</code></pre>
<p>If you want to avoid commons collections you can just collect the keysets in a list and iterate it:</p>
<pre><code>List allKeys = new LinkedList();
for(map: arrayOfHashmaps) {
allKeys.addAll(map.KeySet());
}
return allKey.iterator();
</code></pre>
<p>The second solution will have uses slightly more memory and will be a little slower. However I doubt it will matter.</p>
http://stackoverflow.com/questions/640957/java-swing-custom-text-jeditorpane/643107#6431071Answer by ordnungswidrig for Java Swing custom text JEditorPaneordnungswidrig2009-03-13T14:59:17Z2009-03-13T14:59:17Z<p>You can use <code>DefaultStyledDocument</code> together with <code>AttributeSet</code>:</p>
<pre><code>SimpleAttributeSet attr = new SimpleAttributeSet();
StyleConstants.setBold(attr , true);
StyleConstants.setForeground(attr, Color.RED);
document.insertString(document.getLenght(),"yourstring", attr))
</code></pre>
http://stackoverflow.com/questions/641172/how-to-focus-a-jframe/643000#6430000Answer by ordnungswidrig for how to focus a JFrame?ordnungswidrig2009-03-13T14:37:49Z2009-03-13T14:37:49Z<p>Toggle <code>alwaysOnTop</code></p>
<p>See here: </p>
<p><a href="http://forums.sun.com/thread.jspa?threadID=5124278" rel="nofollow">http://forums.sun.com/thread.jspa?threadID=5124278</a></p>
<blockquote>
<p>Read about toFront in the API
<a href="http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Window.html#toFront" rel="nofollow">http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Window.html#toFront</a></p>
<p>Some platforms may not permit this VM
to place its Windows above windows of
native applications, or Windows of
other VMs.</p>
<p>On Windows OS for example toFront
causes the icon on the Task Bar to
flicker, but the window stays in the
back.</p>
<p>The only think that will force the
window to front is setAlwaysOnTop.</p>
</blockquote>
<pre><code>frame.setAlwaysOnTop(true);
frame.setAlwaysOnTop(false);
</code></pre>
http://stackoverflow.com/questions/269669/is-there-a-difference-between-bigdecimal0-and-bigdecimal-zero/642907#6429070Answer by ordnungswidrig for Is there a difference between BigDecimal("0") and BigDecimal.ZERO?ordnungswidrig2009-03-13T14:14:25Z2009-03-13T14:14:25Z<p>Before talking about runtime penalties make sure that this piece of code matters. Setup profiling and measure the complete use case.</p>
<p>Nevertheless prefer <code>Bigdecimal.ZERO</code> as it's checked at compile time wheres you can accidently type <code>new Bigdecimal("9")</code> which the compile will eat but like will cause bugs into your system.</p>
http://stackoverflow.com/questions/614182/getting-drafts-and-sent-items-in-java-using-pop3/618708#6187080Answer by ordnungswidrig for getting drafts and sent items in Java using pop3ordnungswidrig2009-03-06T12:32:54Z2009-03-06T12:32:54Z<p>POP3 does not supports the notion of differents folder. If the mail server supports IMAP then you'd be able to access all folders. The IMAP support in JavaMail is decent and easy to use.</p>
http://stackoverflow.com/questions/615344/javax-net-ssl-sslhandshakeexception-certificate-expired-local-or-remote/618443#6184430Answer by ordnungswidrig for javax.net.ssl.SSLHandshakeException: certificate expired - Local or Remote?ordnungswidrig2009-03-06T10:58:53Z2009-03-06T10:58:53Z<p>See here <a href="http://www.cs.sunysb.edu/documentation/jsse/jssefaq.html#17" rel="nofollow">http://www.cs.sunysb.edu/documentation/jsse/jssefaq.html#17</a></p>
<p>E.g. set the SystemProperty javax.net.debug to ssl:</p>
<pre><code>java -Djavax.net.debug=ssl ...
</code></pre>
http://stackoverflow.com/questions/615493/how-do-i-read-the-manifest-file-for-a-webapp-running-in-apache-tomcat/618379#6183792Answer by ordnungswidrig for How do I read the manifest file for a webapp running in apache tomcat?ordnungswidrig2009-03-06T10:34:12Z2009-03-06T10:34:12Z<p>Generally this will not work as david a. said. You can work around it like described here <a href="http://forums.sun.com/thread.jspa?threadID=642761" rel="nofollow">http://forums.sun.com/thread.jspa?threadID=642761</a> but it's not guaranteed that this will work in any servlet engine.</p>
<p>I'll suggest to put the information you need from the manifest in another file during build which you can load as a resource.</p>
http://stackoverflow.com/questions/616958/virtual-listbox-in-swing/618336#6183363Answer by ordnungswidrig for virtual listbox in Swingordnungswidrig2009-03-06T10:16:11Z2009-03-06T10:16:11Z<p>The problem is that even using intelligent pre-fetch you cannot guarantee that all visible rows were prefetched when they are needed. </p>
<p>I'll sketch a solution which I used once in a project and which worked extremely well.</p>
<p>My solution was to make a ListModel will return a stub for missing rows that tell the user, that the item is loading. (You can enhance the visual experience with a custom <code>ListCellRenderer</code> which renders the stub specially). Additionally make the <code>ListModel</code> enqueue a request to fetch the missing row. The <code>ListModel</code> will have to spawn a thread which reads the queue and fetches the missing rows. After a row was fetched invoke <code>fireContentsChanges</code> to the fetched row. You can also use a Executor in you listmodel:</p>
<pre><code>private Map<Integer,Object> cache = new HashMap<Integer,Object>();
private Executor executor = new ThreadPoolExecutor(...);
...
public Object getElementAt(final int index) {
if(cache.containsKey(index)) return cache.get(index);
executor.execute(new Runnable() {
Object row = fetchRowByIndex(index);
cache.put(index, row);
fireContentsChanged(this, index, index);
}
}
</code></pre>
<p>You can improve this sketched solution in the following ways:</p>
<ul>
<li>No only fetch the requested item but also some items "around" it. The user likely will scroll up and down.</li>
<li>In case of really big lists make the <code>ListModel</code> forget those rows which are far away from the ones fetched last.</li>
<li>Use a LRU-cache</li>
<li>If desired prefetch all items in the background thread.</li>
<li>Make the ListModel a Decorator for a eager implementation of ListModel (this is what I did)</li>
<li>If you have multiple "big" ListModels for Lists visible at the same time use a central request queue to fetch the missing items.</li>
</ul>
http://stackoverflow.com/questions/617414/create-a-temporary-directory-in-java/618273#6182731Answer by ordnungswidrig for Create a temporary directory in Javaordnungswidrig2009-03-06T09:55:44Z2009-03-06T09:55:44Z<p>Using <code>File#createTempFile</code> and <code>delete</code> to create a unique name for the directory seems ok. You should add a <code>ShutdownHook</code> to delete the directory (recursively) on JVM shutdown. </p>
http://stackoverflow.com/questions/433110/recommendations-of-a-high-volume-log-event-viewer-in-a-java-enviroment/450154#4501542Answer by ordnungswidrig for Recommendations of a high volume log event viewer in a Java enviromentordnungswidrig2009-01-16T11:37:31Z2009-01-16T11:37:31Z<p>You might implement a adapter for logback to send log4j events to a log4j receiver. This would enable you to use chainsaw. Or build an adapter which receives logback network events and exposes them for log4j.</p>
http://stackoverflow.com/questions/1665760/compojure-development-without-web-server-restarts/1668209#1668209Comment by ordnungswidrig on Compojure development without web server restartsordnungswidrig2009-11-06T08:58:29Z2009-11-06T08:58:29ZUse M-x slime-connect to connect to a possibly remote runnnig swank server. You can start a swank server as outlined above in "web.clj"http://stackoverflow.com/questions/299723/can-i-do-transactions-and-locks-in-couchdb/1215297#1215297Comment by ordnungswidrig on Can I do transactions and locks in CouchDB?ordnungswidrig2009-08-02T22:08:39Z2009-08-02T22:08:39ZYes, you're correct, in this case -- while the tension is not resolved -- there will be inconsistency. However the inconsistency is only temporary until the next scan for tension documents detects this. That's the trade of in this case, a kind of eventual consistency regarding time. As long as you decrent the source acount first and later increment the target account this can be acceptable.
But beware: tension documents wont give you ACID transactions on top of REST. But they can be a good tradeoff between pure REST and ACID.http://stackoverflow.com/questions/560409/how-to-install-couchdb-on-a-media-temple-serverComment by ordnungswidrig on How to install couchDB on a media temple server?ordnungswidrig2009-07-31T22:47:27Z2009-07-31T22:47:27Znot programming related. http://stackoverflow.com/questions/331053/how-do-you-get-nano-pico-running-on-opensolarisComment by ordnungswidrig on How do you get nano/pico running on OpenSolaris?ordnungswidrig2009-06-04T08:37:10Z2009-06-04T08:37:10Zerickson: picocontainer is the wrong tag. pico was the right one.http://stackoverflow.com/questions/861914/jbutton-questionComment by ordnungswidrig on JButton questionordnungswidrig2009-05-14T13:23:48Z2009-05-14T13:23:48ZI would not do this at all because I cannot see how a User would not be confused. Perhaps you can tell us why you need this and there is a different way to do it.http://stackoverflow.com/questions/855518/why-does-java-pattern-class-use-a-factory-method-rather-than-constructor/855555#855555Comment by ordnungswidrig on Why does Java Pattern class use a factory method rather than constructor?ordnungswidrig2009-05-13T08:13:36Z2009-05-13T08:13:36ZIn general your argument is correct. But this kind of optimization should be left optional, I think. Nevertheless there are a lot of other spots where this optimization could have been applied.http://stackoverflow.com/questions/845202/can-i-use-java-with-xulrunner-gui-framework/846980#846980Comment by ordnungswidrig on can i use java with XULRunner GUI framework ?ordnungswidrig2009-05-11T13:29:10Z2009-05-11T13:29:10ZZimbra doesn't make use of XUL directly, they simply use Mozilla Prism to "desktopify" an ajax web application.http://stackoverflow.com/questions/767912/riddle-the-square-puzzle/767967#767967Comment by ordnungswidrig on Riddle: The Square Puzzleordnungswidrig2009-04-20T12:26:37Z2009-04-20T12:26:37ZI think choosing an algorithm that's better than brute force (e.g. A*) will improve the performance much more than the "low level" optimizations you're suggesting. If I'm correct each of your suggestions will not improve the runtime regarding the Big Oh.http://stackoverflow.com/questions/703896/as3-javascript-if-statement-commas-instead-of/703926#703926Comment by ordnungswidrig on as3/javascript if statement> commas instead of &&ordnungswidrig2009-04-20T11:52:41Z2009-04-20T11:52:41ZI think this is wrong. Evealuating in a sequence can either return the value of the first expression, the value of the last expression, all values ORed together or ANDed together. I think it returns the last expression as the first answers says.http://stackoverflow.com/questions/767437/tool-to-refactor-boolean-expressions/767485#767485Comment by ordnungswidrig on Tool to refactor boolean expressionsordnungswidrig2009-04-20T09:20:15Z2009-04-20T09:20:15ZThe first problem is that the number of variables of about 50. The second problem is that I'm not looking for a minimal expression. I want to refactor existing expression to make them maintainable.http://stackoverflow.com/questions/766394/are-java-generics-mainly-a-way-of-forcing-static-type-on-elements-of-a-collection/767168#767168Comment by ordnungswidrig on Are Java generics mainly a way of forcing static type on elements of a collection?ordnungswidrig2009-04-20T07:04:16Z2009-04-20T07:04:16ZI want to second this answer. Most developers will face java generics in the collection classes first. This is where generics sure make a big improvement to the compile time type checking. But there are a lot of patterns that emerge once you think in generics. E.g. factory methods like public <T> T createInstance(Class<? extends T> klass) and similiar. Generally most time you do a cast now, with generics you can replace this cast with a type safe expression.http://stackoverflow.com/questions/764529/what-tactics-can-i-use-to-prevent-users-from-discovering-what-language-a-website/764546#764546Comment by ordnungswidrig on What tactics can I use to prevent users from discovering what language a website is written in?ordnungswidrig2009-04-19T22:02:26Z2009-04-19T22:02:26ZDo not use a standard excetion like ".do" or ".action" these will easily let conclude on the framework.http://stackoverflow.com/questions/51582/java-generics-comparing-the-class-of-object-o-to-e/51623#51623Comment by ordnungswidrig on Java Generics: Comparing the class of Object o to <E>ordnungswidrig2009-04-19T21:57:44Z2009-04-19T21:57:44ZI'd rather compare the classes with equals. Or is there a special reason to use == ?http://stackoverflow.com/questions/734110/persistent-data-structures-in-java/737357#737357Comment by ordnungswidrig on Persistent data structures in Javaordnungswidrig2009-04-12T21:11:54Z2009-04-12T21:11:54ZThat's how I actually implemented a proof of concept on persisent data structures. I found this the simple part. What I did not find was an elegant api to "update" a field of an persistent instance, i.e. create a copy of the instance with only a certain field changed.http://stackoverflow.com/questions/734110/persistent-data-structures-in-java/735330#735330Comment by ordnungswidrig on Persistent data structures in Javaordnungswidrig2009-04-09T21:11:23Z2009-04-09T21:11:23ZThanks for the pointer to functional java. However my question was about implementing a persistent object model in gerneral, not about certain (well-known) persistent data structures.