Christian Vest Hansen

2,518
Reputation
245 views

Registered User

Name Christian Vest Hansen
Member for 1 year
Seen 7 hours ago
Website
Location DK
Age 25

A Java developer with an interest in concurrency and functional programming.

I also happen to be fairly proficient with SQL in the MySQL 5 variants.

Author of Nanopool and instigator of Fabric.

10h
answered MySQL Connector/J Problem
Nov
28
comment Connection Pooling - How much of an overhead is it?
This 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 ;-)
Nov
23
comment Why am I receiving a low level socket error when using the Fabric python library?
@Marco No it should not. It should do exactly what it is told and not try to second-guess the programmer. run() is explicitly a remote (connected) operation, with all the failure modes that entails. Use local() instead if you want to run something locally.
Nov
20
awarded  Good Answer
Oct
28
awarded  Nice Answer
Oct
21
accepted Java Transport.send() is it thread-safe?
Oct
12
comment What is Python’s Fabric equivalent in other languages?
There are SSH servers for Windows, but the command line environment they give you is probably not posix compatible.
Oct
12
comment Java core API anti-Patterns. What is wrong?
What can you do with this that you cannot do with block comments? I see no purpose in allowing unreachable code.
Oct
10
comment What is the single most influential book every programmer should read?
He has written more than one book.
Sep
24
answered Stuck with JVM, Sick of Java… Where to go?
Sep
24
comment Excluding “provided” dependencies from Maven assembly
It turns out that one execution is enough. <includeScope>runtime</includeScope> is all I need - it implicitly excludes test, provided and system, which is perfect.
Sep
22
comment Excluding “provided” dependencies from Maven assembly
I can't figure out how to get it to exclude the one test dependency I have, but apart from that it works perfectly. :)
Sep
22
comment Excluding “provided” dependencies from Maven assembly
No, it also has test-scoped dependencies. In what way can that possibly be a sane default, I wonder?
Sep
22
comment Excluding “provided” dependencies from Maven assembly
It seems to contain everything but test-scoped dependencies.
Sep
22
asked Excluding “provided” dependencies from Maven assembly
Sep
17
awarded  Yearling
Sep
16
answered Test Driven Development presentation
Sep
15
comment Easiest way to convert a List to a Set? - Java
Interfaces don't have constructors...
Sep
12
comment When you type “hello, world” in Clojure REPL, why does it say ‘nil’?
The expression is a string literal, and the return value is the string.
Sep
4
answered why does Git send whole repository each time push origin master
Sep
3
comment Object locking in Java
And 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.
Sep
3
answered Is a method with no linearization points always not linearizable?
Aug
13
awarded  
Aug
5
comment How do I replace a character in a string in Java?
That is risky because HTML has many more entities defined than pure XML.
Aug
5
answered How do I replace a character in a string in Java?
Aug
5
awarded  Nice Answer
Jul
30
answered What is the Cost of Calling array.length
Jul
30
comment What is the Cost of Calling array.length
It is actually quite hard to do micro-benchmarking in Java with reasonable statistical confidence.
Jul
30
answered Where methods live? Stack or in Heap?
Jul
30
answered Visualizing Data in Java
Jul
30
awarded  Nice Answer
Jul
29
revised How is Java’s ThreadLocal implemented under the hood?
apparently had some info wrong.
Jul
29
answered How is Java’s ThreadLocal implemented under the hood?
Jul
29
answered Does a variable accessed by multiple threads in a java servlet need to be declared volatile?
Jul
29
answered Nuggets of wisdom?
Jul
28
answered Singleton in Cluster environment
Jul
26
accepted Disappearing head in git repo
Jul
25
comment Java Performance - ArrayLists versus Arrays for lots of fast reads.
It is notoriously difficult to devise meaningful micro-benchmarks in Java. The problems have been described in many blog posts and in the paper "Statistically Rigorous Java Performance Evaluation" -- if you haven't already, you might want to google around and read up on it if it really matters this much.
Jul
25
revised Multithreaded JDBC
"thread pool" -> "connection pool"
Jul
25
answered Disappearing head in git repo
Jul
24
answered Explain Clojure Symbols
Jul
21
comment Get list of fields in struct
You can accept your own answers
Jul
21
answered How do you refer to a Java Class in the same Package from a Clojure?
Jul
19
answered Connection Pooling - How much of an overhead is it?
Jul
19
comment Nuggets of wisdom?
I don't think the logic holds: it takes a lot of effort to make non-trivial code read easily.
Jul
19
accepted Compare Java enum values
Jul
19
comment Translating open-source code into different language: what licence?
I wonder why this one got a down vote. To the best of my knowledge, "Clean room" implementations are copyrighted to their implementor.
Jul
19
answered Compare Java enum values
Jul
16
accepted What is wrong with an inner class not using an outer class in Java?
Jul
16
revised What is wrong with an inner class not using an outer class in Java?
rephrasing as suggested by comments