1,076 reputation
38
bio website
location United Kingdom
age
visits member for 1 year, 8 months
seen 9 hours ago
stats profile views 100

Been involved in open source for 20 years.

Currently QtJambi maintainer (the Qt framework for Java, which combines the best of both worlds). This is a Qt/C++/JNI/Java project and is over 250k LoC. We are always looking for more contributors with the project.
http://qt-jambi.org

Previously worked with and on various OSS projects (Linux Kernel, ZMailer, OpenSSL, ...)

Spend most of my time making OSS do what I want (or rather what my clients want open source to do for them)


Apr
22
comment How to make the Maven EAR Plugin automatically manage the classpath for dependencies?
And by the lack of a useful answer after all this time, we can only infer there isn't a better way.
Apr
18
revised spring + hibernate + infinispan as 2nd level cache
added 1 characters in body
Apr
18
answered spring + hibernate + infinispan as 2nd level cache
Mar
5
awarded  Caucus
Feb
26
answered no any “plugin descriptor” founded in my maven project
Feb
26
revised Using Maven with QT Jambi
added 279 characters in body
Feb
26
comment error in install a plugin in Maven
Just to comment as the hostname suggests old.qt-jambi.org only existed during decommission and change over with hosting and website. A previous answer has the http://repository.qt-jambi.org/nexus/content/repositories/releases-before-2011/‌​ which is new URL, simply replace the http://old.qt-jambi.org/maven2/ part with the new URL (or any replace any previous URL that has a /maven2/ part), We have HTTP redirection and ability to browser with human web-browser in place to hopefully self-document things.
Feb
26
answered How to compile the qtjambi examples
Feb
26
answered Qt Jambi build failure (VS2010)
Nov
19
comment What's wrong with my Spring MVC configuration?
<url-pattern>/*</url-pattern>
Nov
18
answered Can't get jettyRun to work in Gradle
Nov
18
comment Can't get jettyRun to work in Gradle
And how does the ':presenter' project have the dependency on the ':dao-impl' project ? How have you declared that matter in the presenter gradle configuration ? Please show more of the presenter project's gradle configuration in respect of dependencies. This answer maybe helpful (but modify as necessary for runtime dependencies, not just test) stackoverflow.com/questions/5644011/…
Nov
18
comment Qt app 64-bit architecture error
But the type is Ui::MainWindow is not it (so therefore MainWindow will be unknown) ? Does this link help stackoverflow.com/questions/41590/…
Nov
18
comment Qt app 64-bit architecture error
Are you sure your use of namespace Ui is correct? what happens if you remove 'class MainWindow;' and move the closing brace of the namespace to the last line ? Or maybe you change 'class MainWindow ...' to 'class Ui::MainWindow ...' an incorrect namespace will cause symbol resolution failure.
Nov
18
answered Changing data type “Varchar” to “TimeStamp” in PostgreSQL
Nov
18
comment Qt app 64-bit architecture error
Please quote the whole class declaration that contains the "public slots:" One thing we shall be looking out for is the correct use of Q_OBJECT declaration.
Nov
18
comment perl threads exiting abnormally
Ok good on the script at least we can see what you are doing.You have just 4 items placed in $workq but you start 10 threads and each thread could work on more than one item. The 4th thread it unlikely to see any work to do.Are the target sites are owned/managed by you? How do you know they don't have connect flooding controls in place? Your Thread numbers in original error indicate more than 10 if they are sequential.Maybe add to subroutine the current thread start start/stop and the total number of jobs worked on, also emit threads->tid() in all output.You maybe you see problem better.
Nov
18
comment perl threads exiting abnormally
Are you ensuring you get a new instance of everything for each thread? Audit the code to ensure nothing is being shared in each thread, each thread needs to initialize its own perl objects, very little should be passed in (like only the URL) and no shared globals variable should be accessed. I suspect the issue is simply design error.
Nov
18
comment perl threads exiting abnormally
If you are sure, could be anything, program bug, design bug, perl bug. You need to get to the bottom of that.
Nov
18
revised perl threads exiting abnormally
added 322 characters in body