Mnementh

8,041
Reputation
749 views

Registered User

name Mnementh
member for 1 year
seen Dec 2 at 15:33
website
location Benden Weyr, Pern
age 9
My name is Jörgen Kosche and I'm a programmer. I use mostly Java.
12h
awarded  Popular Question
1d
awarded  Mortarboard
Oct
23
comment What means the error-message ‘java.lang.OutOfMemoryError: GC overhead limit exceeded’ in Java?
I simply found the problem, that lead to too much memory-usage, near to the limit of the heap. A simple solution could be simply to give some more Heap-memory to the Java-Engine (-Xmx) but this only helps, if the application needs exactly as much memory, as the heap-limit before was set.
Oct
1
awarded  Necromancer
Sep
30
awarded  Nice Answer
Sep
30
awarded  Popular Question
Sep
29
revised Java: What is the difference between these methods of construction.
added 1 characters in body
Sep
29
awarded  Nice Question
Sep
28
awarded  Nice Question
Sep
24
awarded  Yearling
Sep
17
answered What is the best length of a coding session before taking a break?
Sep
17
answered Comparison of CI Servers?
Sep
17
comment Comparison of CI Servers?
Ah, isn't CC.Net the .net-port of CruiseControl?
Sep
14
revised What OSS Licence Should I Use?
added 382 characters in body
Sep
14
comment What OSS Licence Should I Use?
@DrJokepu: That's right, that's why the Affero GPL especially catches this case. I add this to my answer.
Sep
14
awarded  Popular Question
Sep
14
accepted What OSS Licence Should I Use?
Sep
14
answered What OSS Licence Should I Use?
Sep
13
revised Best Open Source Project Hosting Site
added 480 characters in body
Sep
12
accepted Choosing the right version of Apache Commons Logging
Sep
11
comment How can be sectsty used together with \part in scrbook-documentclass in LaTeX?
Nice to see people already downvote without any comment on questions with a real world problem sigh.
Sep
11
comment How can be sectsty used together with \part in scrbook-documentclass in LaTeX?
I tested your solution and it worked fine. Thanks.
Sep
11
revised How can be sectsty used together with \part in scrbook-documentclass in LaTeX?
deleted 1 characters in body
Sep
11
comment How can be sectsty used together with \part in scrbook-documentclass in LaTeX?
That brings up the question, if sectsty is under further development and will release future version.
Sep
9
accepted Ugly looking java data structure
Sep
9
answered Java: Howto know where the jar is located in Linux
Sep
9
revised Should I always make my java-code thread-safe, or for performance-reasons do it only when needed?
added 228 characters in body
Sep
9
revised How to test new features without corrupting the trunk?
added 372 characters in body
Sep
9
comment Do you continue development in a branch or in the trunk?
This is problematic, as developers can work long time on a branch that is diverging from the main trunk. Integrating that stuff later can produce large headaches. For me it was always easier to maintain a bleeding edge trunk with some minimal requirements (must always compile) and to branch of the stuff that should be stabilized for a release.
Sep
9
revised Should I always make my java-code thread-safe, or for performance-reasons do it only when needed?
added 1 characters in body
Sep
9
revised Java Multithreading and Inheritance
fix typo in title
Sep
9
revised How can I combine cells in a row in a latex-table?
added 8 characters in body
Sep
9
answered How to test new features without corrupting the trunk?
Sep
9
comment How can be sectsty used together with \part in scrbook-documentclass in LaTeX?
Yep. I added an example reproducing the problem.
Sep
9
comment How can be sectsty used together with \part in scrbook-documentclass in LaTeX?
I added an example.
Sep
9
revised How can be sectsty used together with \part in scrbook-documentclass in LaTeX?
added 209 characters in body
Sep
8
comment How can be sectsty used together with \part in scrbook-documentclass in LaTeX?
You don't understand my problem. Redefining the section works fine - as long as I don't use the \part-command and srcbook-class. In this moment the \part triggers the above written problem.
Sep
8
revised How can be sectsty used together with \part in scrbook-documentclass in LaTeX?
deleted 1 characters in body
Sep
8
comment How to explain Open-Source to your boss?
Isn't that book more about centralized vs. non-centralized development-model than about open-source? I know, he says Open-source usually embraces the Bazaar.
Sep
8
asked How can be sectsty used together with \part in scrbook-documentclass in LaTeX?
Sep
8
comment How to underline section-headings in LaTeX?
sectsty does what I want, but I have another problem: I have a book (scrbook-documentclass) and using the command \part. That does no longer work with sectsty. Any advices?
Sep
8
revised What means the error-message ‘java.lang.OutOfMemoryError: GC overhead limit exceeded’ in Java?
added 103 characters in body
Sep
8
asked What means the error-message ‘java.lang.OutOfMemoryError: GC overhead limit exceeded’ in Java?
Sep
8
revised How to underline section-headings in LaTeX?
added 207 characters in body
Sep
8
comment How to underline section-headings in LaTeX?
I see I asked my question bad. I don't want a underline in this sense, I really want a line separating the heading from the following text.
Sep
8
answered Choosing the right version of Apache Commons Logging
Sep
8
comment How to underline section-headings in LaTeX?
As you say, every class format it different. I would prefer a solution, that I can use in different projects and that work even if you change particular thing (switching from book to scrbook for instance). That can happen years later by someone else, who doesn't know about the redefined section. That's why I would like to use a more general solution.
Sep
8
comment Should I make all my java code threadsafe ?
Somewhat similar to stackoverflow.com/questions/234341/…
Sep
8
asked How to underline section-headings in LaTeX?
Sep
7
comment How to create a selfdefined table-environment with the caption at the end of the table with LaTeX?
Thanks alot. But it turned out that \gdef didn't work. Instead I used \renewcommand and all works as I want. Thank you.