User Christian Vest Hansen - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T16:19:27Zhttp://stackoverflow.com/feeds/user/13251http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1839527/externalized-time-dimension-in-mysql-olap-cubes0Externalized time dimension in MySQL OLAP cubes?Christian Vest Hansen2009-12-03T12:08:32Z2009-12-03T12:28:14Z
<p>It appears to be a common practice to let the time dimension of OLAP cubes be in a table of its own, like the other dimensions.</p>
<p>My question is: why?</p>
<p>I simply don't see what the advantage would be to have a <code>time_dimension</code> table of <code>(int, timestamp)</code> that is joined with the cube on some <code>time_id</code> foreign key, instead of having a <code>timestamp</code> column in the cube itself.</p>
<p>Principally, points in time are immutable and constant, and they are their own value. I don't find it very likely that one would want to change the associated value for a given <code>time_id</code>.</p>
<p>In addition, the <code>timestamp</code> column type is 4 bytes wide (in MySQL), as is the <code>int</code> type that would otherwise typically be the key, so cannot be to save space either.</p>
<p>In discussing this with my colleagues, the only somewhat sensible argument I have been able to come up with is conformity with the other dimensions. But I find this argument rather weak.</p>
http://stackoverflow.com/questions/1764654/mysql-connector-j-problem/1828358#18283581Answer by Christian Vest Hansen for MySQL Connector/J ProblemChristian Vest Hansen2009-12-01T19:34:53Z2009-12-01T19:34:53Z<p>Your Java Web Start program runs on the client, but your JDBC driver is loaded by your Tomcat server - those are two different environments running in two different JVMs.</p>
<p>You say that you have a reference to your JDBC driver in your JNLP file - this is the part you need to look at. The jar file that contains your driver needs to be downloadable by the Web Start client through HTTP. I'm guessing that this is where the chain is broken.</p>
<p>That said, I wonder about the safety of letting your clients download a JDBC driver and connect to your database. Bytecode isn't terribly hard to reverse engineer, and jar files are just a special case of zip compression.</p>
http://stackoverflow.com/questions/202750/is-there-a-human-readable-programming-language/204773#2047739Answer by Christian Vest Hansen for Is there a human readable programming language?Christian Vest Hansen2008-10-15T13:49:44Z2009-11-18T23:18:20Z<p>I see the <a href="http://en.wikipedia.org/wiki/Shakespeare%5Fprogramming%5Flanguage" rel="nofollow">Shakespeare programming language</a> have yet to be mentioned.</p>
<p>These programs are coded to look like shakespear plays, the individial characters in the play being variables that can hold numbers and the various phrases in the play manipulate the characters and the number they hold. For instance, "Speak your mind" orders a character to output his value.</p>
http://stackoverflow.com/questions/1473242/stuck-with-jvm-sick-of-java-where-to-go/1473316#14733162Answer by Christian Vest Hansen for Stuck with JVM, Sick of Java... Where to go?Christian Vest Hansen2009-09-24T18:18:54Z2009-09-24T18:18:54Z<p>Tool support for Scala and Clojure may be immature, but it's steadily improving.</p>
<p>Since you like F#, then Scala is most likely your best bet. I say try it out and form your own opinion - you might find that the things people gripe about are things that don't matter to you, or things you can work around.</p>
http://stackoverflow.com/questions/1459021/excluding-provided-dependencies-from-maven-assembly2Excluding "provided" dependencies from Maven assemblyChristian Vest Hansen2009-09-22T09:21:26Z2009-09-22T12:11:24Z
<p>I am trying to use the Maven assembly plugin to build a jar-with-dependencies, <em>except</em> those that have provided scope.</p>
<p>I have copied the jar-with-dependencies into an assembly.xml file and configured its use in my pom. Here it is for reference:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<assembly>
<id>injectable-jar</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<dependencySets>
<dependencySet>
<unpack>true</unpack>
<scope>runtime</scope>
</dependencySet>
</dependencySets>
<fileSets>
<fileSet>
<directory>${project.build.outputDirectory}</directory>
</fileSet>
</fileSets>
</assembly>
</code></pre>
<p>I have found out, that if I set the scope to <code>provided</code>, then I can build a jar that contains exactly what I <em>don't</em> want, but I cannot figure out how to get inverse behavior of that.</p>
http://stackoverflow.com/questions/1432284/test-driven-development-presentation/1432324#14323241Answer by Christian Vest Hansen for Test Driven Development presentationChristian Vest Hansen2009-09-16T11:10:11Z2009-09-16T11:10:11Z<p>I have been looking for a video like that myself.</p>
<p>The best I could come up is <a href="http://www.infoq.com/presentations/TDD-Steve-Freeman" rel="nofollow">Steve Freeman On TDD: How Do We Know When We’re Done?</a>, but sadly it is significantly longer than 35 minutes.</p>
http://stackoverflow.com/questions/1381403/why-does-git-send-whole-repository-each-time-push-origin-master/1381476#13814761Answer by Christian Vest Hansen for why does Git send whole repository each time push origin master Christian Vest Hansen2009-09-04T20:47:45Z2009-09-04T20:47:45Z<p>Git versions whole file trees, and each commit points to a complete snapshot of a tree. Git then relies on compression for keeping the size of the repository down. So the data that needs to be transfered when you push are these snapshots, rather than diffs. In effect, Git asks the server what its newest commit is and then sends all the local commits in that branch that are built on top of that. The objects are probably compressed when they are transfered, but they are still snapshots.</p>
<p>That is at least my understanding.</p>
http://stackoverflow.com/questions/1375695/is-a-method-with-no-linearization-points-always-not-linearizable/1375959#13759591Answer by Christian Vest Hansen for Is a method with no linearization points always not linearizable?Christian Vest Hansen2009-09-03T21:06:40Z2009-09-03T21:06:40Z<p>This answer is based on me reading about linearizability on wikipedia for the first time, and trying to map it to my existing understanding of memory consistency through happens-before relationships. So I may be misunderstanding the concept.</p>
<blockquote>
<p>If you can definitely prove that a method has no linearization points, does
it necessarily mean that that method is not linearizable?</p>
</blockquote>
<p>It <em>is</em> possible to have a scenario where shared, mutable state is concurrently operated on by multiple threads without any synchronization or visibility aids, and still maintain all invariants without risk of corruption.</p>
<p>However, those cases are very rare.</p>
<blockquote>
<p>how can you prove that a method has no linearizatioon points?</p>
</blockquote>
<p>As I understand linearization points, and I may be wrong here, they are where happens-before relationships are established between threads. If a method (recursively through every method it calls in turn) establishes no such relationships, then I would assert that it has no linearizatioon points.</p>
http://stackoverflow.com/questions/1234510/how-do-i-replace-a-character-in-a-string-in-java/1234690#12346901Answer by Christian Vest Hansen for How do I replace a character in a string in Java?Christian Vest Hansen2009-08-05T17:43:40Z2009-08-05T17:43:40Z<p>Escaping strings <a href="http://www.xml.com/pub/a/2003/08/20/embedded.html" rel="nofollow">can be tricky</a> - especially if you want to take unicode into account. I suppose XML is one of the simpler formats/languages to escape but still. I would recommend taking a look at the StringEscapeUtils class in Apache Commons Lang, and its handy <a href="http://commons.apache.org/lang/api/org/apache/commons/lang/StringEscapeUtils.html#escapeXml%28java.lang.String%29" rel="nofollow">escapeXml</a> method.</p>
http://stackoverflow.com/questions/1208320/what-is-the-cost-of-calling-array-length/1208913#12089131Answer by Christian Vest Hansen for What is the Cost of Calling array.lengthChristian Vest Hansen2009-07-30T19:47:02Z2009-07-30T19:47:02Z<p>Array.length is a constant and the JIT compiler should see through that in both instances. I would expect the resulting machine code to be the same in both cases. At least for the server compiler.</p>
http://stackoverflow.com/questions/1208695/where-methods-live-stack-or-in-heap/1208746#12087460Answer by Christian Vest Hansen for Where methods live? Stack or in Heap?Christian Vest Hansen2009-07-30T19:20:52Z2009-07-30T19:20:52Z<p>The heap is split up into multiple generations.</p>
<p>The bytecode, and its corrosponding JIT compiled machine code lives in the so called permanent generation, along with interned Strings and other class data.</p>
<p>Even though it is called the "permanent" generation, it can still be garbage collected. Some libraries, frameworks and JVM languages generate bytecode at run-time, so the permanent generation sometimes need clean up. Just like the other generations of the heap, but (one usually hopes) less frequently.</p>
http://stackoverflow.com/questions/1208627/visualizing-data-in-java/1208704#12087041Answer by Christian Vest Hansen for Visualizing Data in JavaChristian Vest Hansen2009-07-30T19:13:13Z2009-07-30T19:13:13Z<p>There's a library for Clojure (not quite Java but still on the JVM) called <a href="http://incanter.org/" rel="nofollow">Incanter</a>.</p>
<p>It is built on Colt and JFreeChart. It may be possible that you can just use <a href="http://sites.google.com/site/piotrwendykier/software/parallelcolt" rel="nofollow">Colt</a> directly, but I wouldn't know.</p>
http://stackoverflow.com/questions/1202444/how-is-javas-threadlocal-implemented-under-the-hood/1202468#12024683Answer by Christian Vest Hansen for How is Java's ThreadLocal implemented under the hood?Christian Vest Hansen2009-07-29T19:20:58Z2009-07-29T19:32:32Z<p>ThreadLocal variables in Java works by accessing a HashMap held by the Thread.currentThread() instance.</p>
http://stackoverflow.com/questions/1200842/does-a-variable-accessed-by-multiple-threads-in-a-java-servlet-need-to-be-declare/1200925#12009251Answer by Christian Vest Hansen for Does a variable accessed by multiple threads in a java servlet need to be declared volatile?Christian Vest Hansen2009-07-29T15:02:01Z2009-07-29T15:02:01Z<p>There is a clean read/write split between the threads; one thread "publishes" the last prime for others to read, then you can get away with making it volatile.</p>
<p>If the access pattern involved some read-modify-write sequences or the like, then you'd have to synchronize the access to the field.</p>
http://stackoverflow.com/questions/284753/nuggets-of-wisdom/1200894#12008942Answer by Christian Vest Hansen for Nuggets of wisdom?Christian Vest Hansen2009-07-29T14:57:57Z2009-07-29T14:57:57Z<blockquote>
<p>Programming is communication. Communication is not programming.</p>
</blockquote>
<p>-- Myself.</p>
<p>Here's an explanation (spoiler alert?) for those that might find it difficult to grok exactly what this phrase is suppose to mean:</p>
<p>The first part of this phrase is butt naked and means exactly what is says. When we write code - <em>good code</em>, that is - we are communicating ideas and intent, data and process. Not only are we communicating this information to our compiler, but also to our colleagues, the next guy who is going to maintain that code and to our (near) future self.</p>
<p>The second part; "communication is not programming," is a bit deeper and is about communicating with living people, and how different that is from communicating with a compiler. Human languages are full of ambiguity, and often require multiple different explanations before a point or idea comes across clearly. Communicating with people require "people communication." Further, people are not computers. When you ask a person to do something, they will probably not do <em>exactly</em> what you asked. They may do less or they may do more. They may even do something completely different, or what amounts to nothing of value (to you). Not because they are bad, but because they are people.</p>
http://stackoverflow.com/questions/1194129/singleton-in-cluster-environment/1194148#11941486Answer by Christian Vest Hansen for Singleton in Cluster environmentChristian Vest Hansen2009-07-28T13:35:51Z2009-07-28T13:35:51Z<p>Replace your singleton cache with a distributed cache.</p>
<p>One such cache could be <a href="http://www.jboss.org/infinispan" rel="nofollow">JBoss Infinispan</a> but I'm sure that other distributed cache and grid technologies exist, including commercial ones which are probably more mature at this point.</p>
<p>For singleton objects in general, I'm not sure. I think I'd try to not have singletons in the first place.</p>
http://stackoverflow.com/questions/1181794/disappearing-head-in-git-repo/1181808#11818083Answer by Christian Vest Hansen for Disappearing head in git repoChristian Vest Hansen2009-07-25T10:20:39Z2009-07-25T10:20:39Z<p>Perhaps you haven't pushed all of your branches to your remote repository. Cloning a remote repository should automatically include all remote branches.</p>
<p>Note that remote branches do not automatically become local branches. You can use the <code>git branch -a</code> command to see all the branches you have. Example:</p>
<pre><code>$ git branch -a
* master
remotes/origin/next
remotes/origin/HEAD -> origin/master
remotes/origin/master
</code></pre>
<p>With that, we can turn the "next" remote branch into a local one with <code>git checkout -b</code> and specify the remote branch as a starting point:</p>
<pre><code>$ git co -b next origin/next
Branch next set up to track remote branch next from origin.
Switched to a new branch 'next'
</code></pre>
<p>And now you're all set for working on "next".</p>
http://stackoverflow.com/questions/1175920/explain-clojure-symbols/1176413#11764133Answer by Christian Vest Hansen for Explain Clojure SymbolsChristian Vest Hansen2009-07-24T08:33:29Z2009-07-24T08:33:29Z<p>Using a Symbol as a function is not the same thing as evaluating it. Symbols-as-functions work the same way as keywords-as-functions. Like this:</p>
<pre><code>user=> (declare a)
#'user/a
user=> (def a-map {'a "value"})
#'user/a-map
user=> ('a a-map)
"value"
user=>
</code></pre>
<p>This is not how you would normally use a symbol. They are more commonly used for looking up vars in a namespace, and when generating code in a macro.</p>
<p>To break down the layers of indirection, let's define "x" as 1 and see what happens:</p>
<pre><code>user=> (def x 1)
#'user/x
</code></pre>
<p>Using <code>def</code>, we have created a "var." The name of the var is the symbol user/x. The <code>def</code> special form returns the var itself to the repl, and this is what we can see printed. Let's try and get a hold of that var:</p>
<pre><code>user=> #'x
#'user/x
</code></pre>
<p>The <code>#'</code> syntax is a reader macro that says "give me the var referred to by the following symbol." And in our case, that symbol is "x". We got the same var back as before. Vars are pointers to values, and can be dereferenced:</p>
<pre><code>user=> (deref #'x)
1
</code></pre>
<p>But the var needs to be found before it can be dereferenced. This is where the callability of symbols come into play. A namespace is like a map, where the symbols are keys and vars are the values, and when we plainly name a symbol, we implicitly look up its var in our namespace. Like this:</p>
<pre><code>user=> ('x (.getMappings *ns*))
#'user/x
</code></pre>
<p>Although, in reality, it is probably more like this:</p>
<pre><code>user=> (.findInternedVar *ns* 'x)
#'user/x
</code></pre>
<p>And now we have come full circle on the journey of the unquoted symbol:</p>
<pre><code>user=> (deref (.findInternedVar *ns* 'x))
1
user=> x
1
</code></pre>
<p>The two are not entirely equal, though. Because the evaluator does this for all symbols, including <code>deref</code> and *ns*.</p>
<p>The thing about quoting is that you essentially bypass this whole mechanism, and just get the plain symbol back. Like the <code>#'</code> reader macro get plain vars back, the ` and ' reader macros will get plain symbols back, with or without a namespace qualification respectively:</p>
<pre><code>user=> 'x
x
user=> `x
user/x
</code></pre>
http://stackoverflow.com/questions/1161566/how-do-you-refer-to-a-java-class-in-the-same-package-from-a-clojure/1161820#11618200Answer by Christian Vest Hansen for How do you refer to a Java Class in the same Package from a Clojure?Christian Vest Hansen2009-07-21T21:19:26Z2009-07-21T21:19:26Z<p>That is how you do it.</p>
<p>I have Clojuredev install in Eclipse 3.5 and what you described above just worked.</p>
<p>Perhaps you have misspelled something or your classpath isn't right.</p>
http://stackoverflow.com/questions/1149741/connection-pooling-how-much-of-an-overhead-is-it/1149771#11497711Answer by Christian Vest Hansen for Connection Pooling - How much of an overhead is it? Christian Vest Hansen2009-07-19T12:11:01Z2009-07-19T12:11:01Z<p><em>A connection pool is all about connection re-use.</em></p>
<p>If you are holding on to a connection at times where you don't need a connection, then you are preventing that connection from being re-used somewhere else. And if you have a lot of threads doing this, then you must also run with a larger pool of connections to prevent pool exhaustion. More connections takes longer to create and establish, and they take more resources to maintain; there will be more reconnecting as the connections grow old and your database server will also be impacted by the greater number of connections.</p>
<p>In other words: you want to run with the smallest possible pool without exhausting it. And the way to do that is to hold on to your connections as little as possible.</p>
<p>I have implemented a JDBC connection pool myself and, although many pool implementations out there probably <em>could</em> be faster, you are likely not going to notice because any slack going on in the pool is most likely dwarfed by the time it takes to execute queries on your database.</p>
<p>In short: connection pools just <em>love it</em> when you return their connections. Or they should anyway.</p>
http://stackoverflow.com/questions/1149671/compare-java-enum-values/1149678#11496786Answer by Christian Vest Hansen for Compare Java enum valuesChristian Vest Hansen2009-07-19T11:13:42Z2009-07-19T11:13:42Z<p>All Java enums implements Comparable: <a href="http://java.sun.com/javase/6/docs/api/java/lang/Enum.html" rel="nofollow">http://java.sun.com/javase/6/docs/api/java/lang/Enum.html</a></p>
<p>You can also use the <code>ordinal</code> method to turn them into <code>int</code>s, then comparison is trivial.</p>
<pre><code>if (ErrorLevel.ERROR.compareTo(someOtherLevel) <= 0) {
...
}
</code></pre>
http://stackoverflow.com/questions/1132930/what-is-wrong-with-an-inner-class-not-using-an-outer-class-in-java/1132989#11329897Answer by Christian Vest Hansen for What is wrong with an inner class not using an outer class in Java?Christian Vest Hansen2009-07-15T18:08:10Z2009-07-16T11:05:32Z<p>If the inner class can only ever be used by the outer class, yet the inner class needs no reference to the outer class, then you can make it <code>private static</code>.</p>
<p>If the inner class is known to someone other than the outer class, then it might as well be a top-level class in its own right.</p>
http://stackoverflow.com/questions/1031885/mysql-optimize-table-for-all-fragmented-tables/1031941#10319411Answer by Christian Vest Hansen for Mysql OPTIMIZE TABLE for all fragmented tablesChristian Vest Hansen2009-06-23T11:19:21Z2009-06-23T11:19:21Z<p>You will have to write external code to do this.</p>
http://stackoverflow.com/questions/1011136/how-do-you-speed-up-java-unit-tests/1011399#10113992Answer by Christian Vest Hansen for How do you speed up java unit tests?Christian Vest Hansen2009-06-18T08:09:25Z2009-06-18T08:09:25Z<p>Obviously there's something in your test that takes a long time.</p>
<p>Sometimes, you can't get around slow test. For instance, testing that Spring can read all its configuration files, testing that the hibernate mapping works, that sort of stuff. The good thing about those test is that they only need to run in a single test and then you can mock it all out, but you can also decide to run these as part of the integration test and let the build server worry about it.</p>
<p>The rest of the tests are slow either because they are doing IO or because they are overly CPU bound.</p>
<p>IO can be many things. Web service and database calls can be abstracted out and mocked, and the few real calls you have to do can be moved to the integration phase if need be. Logging can really slow down things as well - especially with 3.000 test cases. I'd say just turn off logging entirely and rely on your brain and your debugger when a test fails.</p>
<p>There may be cases where the IO itself is the unit being tested. For instance, if you are testing the part of a database server that writes table data to disk. In that case, try to keep as much IO in memory as possible. In Java, many of the IO abstractions have in-memory implementations.</p>
<p>CPU bounds tests comes in different flavors as well. Pure performance and throughput test should be in the integration test phase. If you are spinning up a bunch of threads to try an vet out a concurrency bug, then you might move the big test to the integration phase and keep a 'light' version in your regular test suite.</p>
<p>And lastly, the profiler is your friend. It may well be that parts of your code can be made more efficient and give a noticeably speed your tests up.</p>
http://stackoverflow.com/questions/993354/jquery-pulsate-leaves-jagged-text-behind-but-only-in-ie/993379#9933790Answer by Christian Vest Hansen for Jquery pulsate leaves jagged text behind but only in IEChristian Vest Hansen2009-06-14T18:11:49Z2009-06-14T18:11:49Z<p>Is it really that important? I have to agree with Nosredna that if you stick to using IE, then you are going to have to accept quirky rendering like this.</p>
<p>Otherwise, what if you re-apply that style attribute that you removed, to get the positioning back? It sure is a hack, but if removing and re-applying styling to an element can force a redrawing or something.</p>
http://stackoverflow.com/questions/993278/storing-your-private-projects-where/993301#9933011Answer by Christian Vest Hansen for Storing your private projects - where?Christian Vest Hansen2009-06-14T17:43:48Z2009-06-14T17:43:48Z<p>I use <a href="http://github.com" rel="nofollow">Github</a> for the private projects that I feel needs to be on a server of some kind. Some of my repositories are public, others are private for various different reasons.</p>
<p>But if you, like me, prefer Git as a source control tool, then Github is the place.</p>
<p>If you are into Mercurial, then <a href="http://bitbucket.org/" rel="nofollow">BitBucket</a> the place to be, and Subversion users might like <a href="http://beanstalkapp.com/" rel="nofollow">Beanstalk</a>.</p>
http://stackoverflow.com/questions/993112/what-does-the-exclamation-mark-mean-in-a-haskell-declaration/993122#9931225Answer by Christian Vest Hansen for What does the exclamation mark mean in a Haskell declaration?Christian Vest Hansen2009-06-14T16:12:06Z2009-06-14T16:12:06Z<p>I believe it is a strictness annotation.</p>
<p>Haskell is a pure and <em>lazy</em> functional language, but sometimes the overhead of lazyness can be too much or wasteful. So to deal with that, you can ask to compiler to fully evaluate the arguments to a function instead of parsing thunks around.</p>
<p>There's more information on this page: <a href="http://www.haskell.org/haskellwiki/Performance/Strictness" rel="nofollow">Performance/Strictness</a>.</p>
http://stackoverflow.com/questions/323161/using-javax-naming-spi-dirobjectfactory-to-lookup-objects-from-an-ldap/993084#9930840Answer by Christian Vest Hansen for Using javax.naming.spi.DirObjectFactory to lookup objects from an LDAPChristian Vest Hansen2009-06-14T15:54:44Z2009-06-14T15:54:44Z<p>It could be that your context points to the "root node" or what ever it is called. That is, the node that has the top-level namespaces as its children.</p>
<p>I suppose it could also be that the context isn't bound at the time you call getNameInNamespace, although I would expect that to throw an exception.</p>
<p>I use spring-ldap for this sort of stuff, and have not experienced a similar bug with its DirContextAdapter and LdapTemplate classes. But then again, I always bind them to a specific namespace.</p>
http://stackoverflow.com/questions/309202/java-transport-send-is-it-thread-safe/993041#9930411Answer by Christian Vest Hansen for Java Transport.send() is it thread-safe?Christian Vest Hansen2009-06-14T15:37:55Z2009-06-14T15:37:55Z<p>It is usually bad design and a violation of expectations to have a static method that is not thread-safe.</p>
<p>The documentation indeed appears to be devoid of any mention of thread-safety, but a quick glance through the code <em>suggests</em> that the implementation is thread-safe by creating a thread-confined Transport instance on every call and delegating to that.</p>
<p>To be absolutely sure I recommend pulling a couple of days out the calendar for a proper analysis.</p>
http://stackoverflow.com/questions/246383/how-many-web-service-objects-are-created-in-jax-ws-ri/992980#9929801Answer by Christian Vest Hansen for How many Web service objects are created in JAX-WS RI?Christian Vest Hansen2009-06-14T15:02:55Z2009-06-14T15:02:55Z<p>Does the JAX-WS standard specify this?</p>
<p>I would expect this to be pretty much like Servlets, where the standard does not state of the server just creates one Servlet object for the application, or one for every request. If so, then you should not build your program such that it makes assumptions about how the JAX-WS implementation works.</p>
<p>And that is what I would recommend either way: write your code such that this question is moot. Then you're certain that you won't run into surprises, and you will be able to switch out Metro for something else even if the new implementation happens to do things differently.</p>
http://stackoverflow.com/questions/1149741/connection-pooling-how-much-of-an-overhead-is-it/1149771#1149771Comment by Christian Vest Hansen on Connection Pooling - How much of an overhead is it? Christian Vest Hansen2009-11-28T13:42:01Z2009-11-28T13:42:01ZThis can be a long discussion, but the wheel was not reinvented. Rather, a new wheel design was created with a performance profile distinct from all other existing wheels. Same reason we have multiple java.util.Map implementations ;-)http://stackoverflow.com/questions/1469431/why-am-i-receiving-a-low-level-socket-error-when-using-the-fabric-python-library/1469466#1469466Comment by Christian Vest Hansen on Why am I receiving a low level socket error when using the Fabric python library?Christian Vest Hansen2009-11-23T00:03:10Z2009-11-23T00:03:10Z@Marco
No it should not. It should do exactly what it is told and not try to second-guess the programmer. <code>run()</code> is explicitly a remote (connected) operation, with all the failure modes that entails. Use <code>local()</code> instead if you want to run something locally.http://stackoverflow.com/questions/1479632/what-is-pythons-fabric-equivalent-in-other-languages/1479645#1479645Comment by Christian Vest Hansen on What is Python's Fabric equivalent in other languages?Christian Vest Hansen2009-10-12T19:20:19Z2009-10-12T19:20:19ZThere are SSH servers for Windows, but the command line environment they give you is probably not posix compatible.http://stackoverflow.com/questions/186964/java-core-api-anti-patterns-what-is-wrong/937970#937970Comment by Christian Vest Hansen on Java core API anti-Patterns. What is wrong?Christian Vest Hansen2009-10-12T16:53:57Z2009-10-12T16:53:57ZWhat can you do with this that you cannot do with block comments? I see no purpose in allowing unreachable code.http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1176659#1176659Comment by Christian Vest Hansen on What is the single most influential book every programmer should read?Christian Vest Hansen2009-10-10T20:08:03Z2009-10-10T20:08:03ZHe has written more than one book.http://stackoverflow.com/questions/1459021/excluding-provided-dependencies-from-maven-assembly/1459623#1459623Comment by Christian Vest Hansen on Excluding "provided" dependencies from Maven assemblyChristian Vest Hansen2009-09-24T15:53:51Z2009-09-24T15:53:51ZIt turns out that one execution is enough. <code><includeScope>runtime</includeScope></code> is all I need - it implicitly excludes <code>test</code>, <code>provided</code> and <code>system</code>, which is perfect.http://stackoverflow.com/questions/494465/how-to-enumerate-ip-addresses-of-all-enabled-nic-cards-from-java/494483#494483Comment by Christian Vest Hansen on How to enumerate IP addresses of all enabled NIC cards from Java?Christian Vest Hansen2009-09-24T14:09:59Z2009-09-24T14:09:59ZPeople seem to disagree.http://stackoverflow.com/questions/1459021/excluding-provided-dependencies-from-maven-assembly/1459623#1459623Comment by Christian Vest Hansen on Excluding "provided" dependencies from Maven assemblyChristian Vest Hansen2009-09-22T12:53:11Z2009-09-22T12:53:11ZI can't figure out how to get it to exclude the one <code>test</code> dependency I have, but apart from that it works perfectly. :)http://stackoverflow.com/questions/1459021/excluding-provided-dependencies-from-maven-assemblyComment by Christian Vest Hansen on Excluding "provided" dependencies from Maven assemblyChristian Vest Hansen2009-09-22T09:33:33Z2009-09-22T09:33:33ZNo, it also has <code>test</code>-scoped dependencies. In what way can that possibly be a sane default, I wonder?http://stackoverflow.com/questions/1459021/excluding-provided-dependencies-from-maven-assemblyComment by Christian Vest Hansen on Excluding "provided" dependencies from Maven assemblyChristian Vest Hansen2009-09-22T09:28:49Z2009-09-22T09:28:49ZIt seems to contain everything but <code>test</code>-scoped dependencies.http://stackoverflow.com/questions/1429860/easiest-way-to-convert-a-list-to-a-set-java/1429875#1429875Comment by Christian Vest Hansen on Easiest way to convert a List to a Set? - JavaChristian Vest Hansen2009-09-15T22:45:30Z2009-09-15T22:45:30ZInterfaces don't have constructors...http://stackoverflow.com/questions/1416067/when-you-type-hello-world-in-clojure-repl-why-does-it-say-nil/1416073#1416073Comment by Christian Vest Hansen on When you type "hello, world" in Clojure REPL, why does it say 'nil'?Christian Vest Hansen2009-09-12T21:31:39Z2009-09-12T21:31:39ZThe expression is a string literal, and the return value is the string.http://stackoverflow.com/questions/1375999/object-locking-in-java/1376032#1376032Comment by Christian Vest Hansen on Object locking in JavaChristian Vest Hansen2009-09-03T21:26:50Z2009-09-03T21:26:50ZAnd the departments field can be made final. And the getAllDepartments method can return an unmodifiable view of the list. So you don't let it change if it's not suppose to.http://stackoverflow.com/questions/1234510/how-do-i-replace-a-character-in-a-string-in-java/1234667#1234667Comment by Christian Vest Hansen on How do I replace a character in a string in Java?Christian Vest Hansen2009-08-05T17:46:15Z2009-08-05T17:46:15ZThat is risky because HTML has many more entities defined than pure XML.http://stackoverflow.com/questions/1208699/findbugs-and-maven/1208776#1208776Comment by Christian Vest Hansen on FindBugs and MavenChristian Vest Hansen2009-07-30T20:31:52Z2009-07-30T20:31:52ZGood question. I actually don't know.