User Mnementh - Stack Overflowmost recent 30 from stackoverflow.com2009-12-14T21:57:09Zhttp://stackoverflow.com/feeds/user/21005http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/810667/how-to-reproject-map-with-a-cascading-umn-mapserver0How to reproject map with a cascading UMN-mapserver?Mnementh2009-05-01T08:38:15Z2009-12-13T21:09:24Z
<p>I have UMN configured as a cascading mapserver. I want it to reproject the map while cascading through UMN. How can I do that? Is that possible at all?</p>
http://stackoverflow.com/questions/291630/does-pair-programming-work34Does pair programming work?Mnementh2008-11-14T22:20:13Z2009-12-10T09:00:08Z
<p>At our company, we the developers tried some methodologies to be more productive. One thing we could not try was Pair Programming. The reason is, that we are a small company and have only few programmers (and more non-programmers). So it would be impossible to explain to our boss, that two programmers sit at the same computer and solve together the same task. Usually we all even work on different projects.</p>
<p>So I'm interested in your experiences: Does Pair programming work? I mean, does it make a team more productive? Clearly the two are more effective, than only one programmer working on the task. But does the pair can complete the project faster than the two programmers working both on the project, but with different tasks and different computers?</p>
http://stackoverflow.com/questions/303877/is-a-successor-for-tex-latex-in-sight20Is a successor for TeX/LaTeX in sight?Mnementh2008-11-19T23:59:17Z2009-12-02T13:17:08Z
<p>TeX/LaTeX is great, I use it in many ways. Some of it's advantages are:</p>
<ul>
<li>it uses text files, this way the input-files can be diffed and many tools exist to work with text</li>
<li>it is very flexible</li>
<li>it has a stable layout: if I change something at the start of the document, it doesn't affect other things at the end of the document</li>
<li>it has many extensions to reach different goals (a successor would start without extensions, but would have a good extension-system)</li>
<li>you can use standard build control tools to support complicated documents (thanks dmckee)</li>
<li>you can encapsulate solutions and copy&paste them to new documents or send them to others to learn from (thanks dmckee)</li>
</ul>
<p>But on the other hand some little things are not so good:</p>
<ul>
<li>it is hard to learn at the beginning</li>
<li>it is complicated to control position of images</li>
<li>a few things are a little counter-intuitive</li>
<li>sometimes you have to type too much (begin{itemize} ... \end{itemize})</li>
</ul>
<p>So, does there exist a successor/alternative to LaTeX or at least is some hot candidate for an alternative in development. A real successor/good alternative would keep the advantages and fix the disadvantages, or at least some of them.</p>
http://stackoverflow.com/questions/503877/how-can-i-measure-time-with-microsecond-precision-in-java/503976#5039760Answer by Mnementh for How can I measure time with microsecond precision in Java?Mnementh2009-02-02T17:08:50Z2009-11-21T19:01:04Z<p>Such a benchmark that relies on short time-interval gives you unreliable results. You will always get different results, because of external factors like I/O, Swapping, Process Switches, Caches, Garbage Collection etc. Additionally the JVM optimizes your calls, so it's likely that the first measured things are going slower than later call. The JVM starts more and more to optimize the commands you execute.</p>
<p>Additionally the method like System.nanoTime() is dependent on the timers of the underlying system. They may (and most likely will) not have the granularity to measure in that accuracy. To cite the <a href="http://java.sun.com/javase/6/docs/api/java/lang/System.html#nanoTime%28%29" rel="nofollow">API</a>:</p>
<blockquote>
<p>This method provides nanosecond
precision, but not necessarily
nanosecond accuracy. No guarantees are
made about how frequently values
change.</p>
</blockquote>
<p>To really measure with high precision you need to access an external timing hardware with guaranteed precision.</p>
<p>To make your benchmark more stable you need to execute it more than once and to measure bigger time-intervals than only milliseconds.</p>
http://stackoverflow.com/questions/699300/if-you-break-long-code-lines-how-do-you-indent-the-stuff-on-the-next-line6If you break long code lines, how do you indent the stuff on the next line?Mnementh2009-03-30T22:32:39Z2009-11-17T15:12:01Z
<p>Sometimes you have to write in your source long lines, that are better to break. How do you indent the stuff ceated by this.</p>
<p>You can indent it the same:</p>
<pre><code>very long
statement;
other statement;
</code></pre>
<p>That makes it harder to differentiate from the following code, as shown in the example. On the other hand you could indent it one level:</p>
<pre><code>very long
statement;
other statement;
</code></pre>
<p>That makes it easier, but it can happen, that the long line is the start of a nested block, that you want to indent, like this:</p>
<pre><code>if ((long test 1) &&
(long test 2) &&
(long test 3)) {
code executed if true;
}
</code></pre>
<p>In this case again it's hard to read. The third possibility I can think of, is to not break long lines at all, modern editors can handle it and create soft linebreaks. But with another editor you have to scroll sideways and you cannot influence the position, the editor breaks your long line.</p>
<p>What possibility do you prefer? Do you have other ideas to solve this? Can you support your preference with a good justification?</p>
http://stackoverflow.com/questions/721215/how-can-i-fix-a-java-gui-program-swing-that-it-works-with-awesome-wm2How can I fix a Java-GUI-program (swing), that it works with awesome-wm?Mnementh2009-04-06T12:30:57Z2009-11-09T14:59:01Z
<p>The swing-UI of Java-programs doesn't work perfectly together with the <a href="http://awesome.naquadah.org/" rel="nofollow">awesome-wm</a>. awesome is a window-manager for UNIX, that automatically resizes program-windows, and the Swing-UI doesn't recognize these resizes correctly. I don't care if awesome or Java is guilty, what I wanna know if I can change my Java-programs in a way, that they will work with awesome. So that users of my programs get the correct experience, even when they use exotic window-managers.</p>
http://stackoverflow.com/questions/1395116/how-can-be-sectsty-used-together-with-part-in-scrbook-documentclass-in-latex0How can be sectsty used together with \part in scrbook-documentclass in LaTeX?Mnementh2009-09-08T17:07:00Z2009-11-08T13:25:22Z
<p>In <a href="http://stackoverflow.com/questions/1392614/how-to-underline-section-headings-in-latex">this question</a> I asked, how to produce rules under sections. The answer provided using sectsty does what I wish, but triggers a problem: If I use the package sectsty the \part-command produces an error:</p>
<pre><code>! Undefined control sequence.
\NR@part ...elax \refstepcounter {part}\@maybeasf
\addcontentsline {toc}{par...
l.8 \part{partname}
</code></pre>
<p>If I use book-documentclass instead of scrbook, it works all right. But I use much features of Komascript, so I don't want to switch. Knows anyone a solution, how I can use both together?</p>
<p><strong>EDIT</strong>: Following simple example reproduces the problem:</p>
<pre><code>\documentclass{scrbook}
\usepackage{sectsty}
\begin{document}
\part{test} % crash and burn here
\end{document}
</code></pre>
http://stackoverflow.com/questions/772684/how-can-i-mix-layers-with-different-coordinate-system-in-openlayers1How can I mix layers with different coordinate system in OpenLayers?Mnementh2009-04-21T13:50:50Z2009-10-30T14:00:03Z
<p>I'm using an OpenLayers-map and I want to use in it different mapservers, that use different coordinate systems. Can OpenLayers integrate it in the same map and automatically converts coordinate-systems?</p>
http://stackoverflow.com/questions/122685/which-java-library-can-be-used-to-access-data-via-webdav3Which Java-library can be used to access data via WebDAV?Mnementh2008-09-23T18:06:40Z2009-10-18T22:13:25Z
<p>That's the question: Which library can help me to access data available via WebDAV in my Java-programs? OpenSource is preferred.</p>
http://stackoverflow.com/questions/301683/why-does-automatic-injection-of-log-object-not-always-work-in-grails2Why does automatic injection of log-object not always work in grails?Mnementh2008-11-19T12:00:17Z2009-10-10T10:21:54Z
<p>In the grails-framework some objects are using log. This is normally injected by grails. It works on execution of 'grails test-app'. But the same test (an integration-test) fails on execution of 'grails test-app -integration'.</p>
<p>What goes wrong here and can I force the injection of the log-object somehow?</p>
http://stackoverflow.com/questions/1182446/java-what-is-the-difference-between-these-methods-of-construction/1182463#1182463-2Answer by Mnementh for Java: What is the difference between these methods of construction.Mnementh2009-07-25T16:36:42Z2009-09-29T13:28:33Z<p>The first variant is shorter and easier to understand.</p>
<p>The first variant sets the reference observer before inherited constructors are called, the second after that. </p>
<p>The second variant allows to handle checked exceptions the constructor may throw (although the constructor of ArrayList doesn't throw checked exceptions). </p>
http://stackoverflow.com/questions/234341/should-i-always-make-my-java-code-thread-safe-or-for-performance-reasons-do-it-o10Should I always make my java-code thread-safe, or for performance-reasons do it only when needed?Mnementh2008-10-24T16:49:34Z2009-09-28T01:51:48Z
<p>If I create classes, that are used at the moment only in a single thread, should I make them thread-safe, even if I don't need that at the moment? It could be happen, that I later use this class in multiple threads, and at that time I could get race conditions and may have a hard time to find them if I didn't made the class thread-safe in the first place. Or should I make the class not thread-safe, for better performance? But premature optimization is evil.</p>
<p>Differently asked: Should I make my classes thread-safe if needed (if used in multiple threads, otherwise not) or should I optimize this issue then needed (if I see that the synchronization eats up an important part of processing time)?</p>
<p>If I choose one of the both ways, are there methods to reduce the disadvantages? Or exists a third possibility, that I should use?</p>
<p><strong>EDIT</strong>: I give the reason this question came up to my mind. At our company we have written a very simple user-management that writes the data into property-files. I used it in a web-app and after some work on it I got strange errors, that the user-management forgot about properties of users(including name and password) and roles. That was very annoying but not consistently reproducible, so I think it was race condition. Since I synchronized all methods reading and writing from/on disk, the problem disappeared. So I thought, that I probably could have been avoided all the hassle, if we had written the class with synchronization in the first place?</p>
<p><strong>EDIT 2</strong>: As I look over the tips of Pragmatic Programmer, I saw tip #41: Always Design for Concurrency. This doesn't say that all code should be thread-safe, but it says the design should have the concurrency in mind.</p>
http://stackoverflow.com/questions/1438787/what-is-the-best-length-of-a-coding-session-before-taking-a-break/1438843#14388433Answer by Mnementh for What is the best length of a coding session before taking a break?Mnementh2009-09-17T13:18:17Z2009-09-17T13:18:17Z<p>You should trust your feelings about it.</p>
<p>If I get in the flow, I will work for a long time (some hours) without a break, usually until I solve the ticket or I get stuck. If I solve a ticket I give myself a break, a little chat, a short surf-session or e-Mail-reading as reward for the achievement, before starting the next. If I have difficulties to get into the flow, I take more breaks, drink coffee or so until it works.</p>
http://stackoverflow.com/questions/1438390/comparison-of-ci-servers/1438779#14387791Answer by Mnementh for Comparison of CI Servers?Mnementh2009-09-17T13:07:57Z2009-09-17T13:07:57Z<p>We use Hudson at work. The main reason is, that it is very easy to setup. You can directly execute the war (it's a executable jar) or deploy it at any servlet-container. And you're ready to start. Also Hudson supports many tools and is extensible through it's plugin-system.</p>
http://stackoverflow.com/questions/1199389/what-is-the-most-dangerous-feature-in-java8What is the most dangerous feature in Java?Mnementh2009-07-29T10:51:44Z2009-09-15T13:30:39Z
<p>Which feature of the Java-language is the source of the most misunderstandings and bugs in your experience? The scope of this question is about the language, not the class-library.</p>
http://stackoverflow.com/questions/1130433/how-to-avoid-unchecked-conversion-warning-in-java-if-you-use-legacy-libraries5How to avoid unchecked-conversion-warning in Java, if you use legacy libraries?Mnementh2009-07-15T09:47:39Z2009-09-15T07:15:44Z
<p>I like the generics-feature in java and use it often. But I have a problem, if I use libraries that aren't yet aware of generics. An example are servlets. If you use ServletRequest.getParameterMap() the result will be a raw map, but it includes only String as keys and String[] as values. So I want to assign it to a Map. But for this assignement I get an warning. How can I avoid this warning with the language, not by simply suppressing the warning with the SuppressWarnings-annotation.</p>
http://stackoverflow.com/questions/1422590/what-oss-licence-should-i-use/1422624#14226242Answer by Mnementh for What OSS Licence Should I Use?Mnementh2009-09-14T16:32:40Z2009-09-14T19:25:59Z<p>As the Open-Source-definition describes, you cannot limit the usage of your project, if you want to stay open-source. In other words: you cannot forbid a commercial use for an open-source-app. So you can choose another (non-open-source) license, that fulfills your demands, or you choose another way.</p>
<p>One possibility is to release only the source under open-source-license and have another license for binary distributions. As far as I know thats true for Java. That works good, if the build of your app is somewhat complicated.</p>
<p>You can release your app under the GPL-license. That does not forbid commercial use. But if some derivate work is created, it has to be GPL-licensed too. That works well for libraries or similar stuff that isn't used alone, but in a merged product. <strong>EDIT</strong>: As DrJokepu mentions, using a GPL-framework in a webserver-stack would help to avoid to release your own sources. That's why one extension to the GPL is the Affero GPL, that need you to release your work under the same license (AGPL) even if you don't release it, but only use it to build a public webpage. So for webservices you need the AGPL to achieve the same result.</p>
http://stackoverflow.com/questions/10490/best-open-source-project-hosting-site/143546#14354644Answer by Mnementh for Best Open Source Project Hosting SiteMnementh2008-09-27T12:26:49Z2009-09-13T08:16:05Z<p>As I switched with my projects recently from Sourceforge, I had a look at some project-hosting-platforms.</p>
<h2>Sourceforge</h2>
<p><a href="https://sourceforge.net/" rel="nofollow">https://sourceforge.net/</a></p>
<p>Sourceforge is the classic and the most projects will use it. It has many features, as an Issue-Tracker, Mailinglists, a Wiki, Forums, support for Subversion and CVS, a shell-server, statistics, file-releases and much more. It hosts thousand of projects, is well-known. Sourceforge seems to be the only platform, that allows to submit issues anonymously. Since 2001 the software behind Sourceforge became Closed-Source, before it was open-source. The subversion-server is somewhat slow. The UI was totally ugly, but was completely recreated in the last time and now looks much nicer. But (in my opinion) the new UI of Sourceforge is confusingly full of different informations. The UI can be used without Javascript for normal users, but project-admins will need Javascript for some functionality, especially for file releases. Sourceforge allows to access all sites via https. Sourceforge has advertisements on the sf-sites (the site it hosts for you is fully under your control and contains no ads, except you put them there). The killer-feature are without a question the hosted apps. If you dislike the (mediocre) issue-tracker from sourceforge - deactivate it and use Trac or Mantis. You can also deactivate the forums and use phpBB. Wordpress, Mediawiki or different project-management-tools are other options. Hosted apps are a great addition.</p>
<h2>Berlios</h2>
<p><a href="http://developer.berlios.de/" rel="nofollow">http://www.berlios.de/</a></p>
<p>Berlios has taken the old Open-Source-Software from Sourceforge and developed it some further. Now it looks uglier than Sourceforge itself. ;-) It has mostly the same features as Sourceforge. Berlios hosts more than 5000 projects.</p>
<h2>Google-Code</h2>
<p><a href="http://code.google.com/hosting/" rel="nofollow">http://code.google.com/hosting/</a></p>
<p>The hosting-platform from Google. It has the nicest and cleanest interface of all contestants. It has a Wiki, Downloads, an issue-tracker and supports subversion. Projects get tags and you can search for the tags. Google restricts the licenses you can choose, but as the accepted licenses are very common Open-Source-Licenses, that seems no big problem. The problem for me was, that you need a google-account. So Google can gather much data from the different services they have and can all the data combine for you as a user. Much badder: Every user who wants to submit a bug, have to sign on for an Google-account. Google might be not evil, but I don't want to give them the chance to become evil. Other than that, the platform looks very good.</p>
<h2>Microsoft Codeplex</h2>
<p><a href="http://www.codeplex.com/" rel="nofollow">http://www.codeplex.com/</a></p>
<p>Codeplex has a nice, but not very simple interface. It features releases, website, issue-tracker, statistics and some sort of source-code-control, but one I don't know about. Team Foundation Server, never heard. The issue-tracker allows to vote on issues, very nice. Projects can be tagged and CodePlex shows a tag-cloud.</p>
<h2>Kenai</h2>
<p><a href="http://kenai.com/" rel="nofollow">http://kenai.com/</a></p>
<p>Kenai from Sun is a new contender and Beta at the moment. It has Forums, Mailinglists, Wiki, an issue-tracker, allows sub-projects, and supports hosting of Subversion or Mercurial. The UI of Kenai looks good, projects can be tagged and it has a tag-cloud.</p>
<h2>Tigris</h2>
<p><a href="http://www.tigris.org/" rel="nofollow">http://www.tigris.org/</a></p>
<p>Tigris has a nice website, supports Subversion (Subversion itself is a tigris project), and has also releases and mailinglists. The issue-tracker is overcomplicated in my opinion. Tigris is restricted to only projects, that create tools for software-developers.</p>
<h2>java.net</h2>
<p><a href="http://java.net/" rel="nofollow">http://java.net/</a></p>
<p>java.net is a project-hosting-site for only Java-projects and Java-related communities. It has the same overcomplicated issue-tracker, that tigris also have. Other than that, the typical support, releases, website etc.</p>
<h2>GNA!</h2>
<p><a href="https://gna.org/" rel="nofollow">https://gna.org/</a></p>
<p>GNA! is a hosting-platform of the GNU-project, but also non-gnu-projects are allowed, if they conform to free licenses and can run on a completely free system (for example: Windows-only-program are not allowed, but multiplatform Linux/Windows-programs). Interesting is, that GNA also allows Documentation- and Organization-projects. GNA supports releases, projectsites, issue-tracking, news. Supported Versionscontrol is subversion and Git. Nice feature is, it hosts the GPG-key of project-members. Clean UI, seems a good choice. I would have tested it, but I never got the e-mail for validation of my account, so I wasn't able to use. Hopefully a temporary problem. GNA hosts more than 1000 projects.</p>
<h2>Origo</h2>
<p><a href="http://www.origo.ethz.ch/" rel="nofollow">http://www.origo.ethz.ch/</a></p>
<p>Origo is created by the ETHZ, a well-known university in Switzerland. Origo has a clean UI, supports Wiki-sites, Forums, a blog and releases (no mailinglists). The issue-tracker is simple in the usage. The supported version-control is Subversion. Origo support software-and non-software-projects and also Closed-Source-Projects.</p>
<p>Good, I hope this list gives some key-features of some typical sites. I hope I forgot no important site. I myself transferred my projects to origo, but decide for yourself. I will try to update this answer, as I get new information.</p>
http://stackoverflow.com/questions/1400125/java-howto-know-where-the-jar-is-located-in-linux/1400144#14001440Answer by Mnementh for Java: Howto know where the jar is located in LinuxMnementh2009-09-09T14:39:27Z2009-09-09T14:39:27Z<p>In both cases it is the actual directory. Under windows automatically the actual directory is set to the base-dir of the jar, if you execute it from explorer. Under linux the home-directory is the actual directory for your GUI. To set the directory write a short shell-script, which sets the actual directory (with the cd-command) and then executes the jar (with javaw -jar xyz.jar).</p>
http://stackoverflow.com/questions/1398924/how-to-test-new-features-without-corrupting-the-trunk/1398950#13989503Answer by Mnementh for How to test new features without corrupting the trunk?Mnementh2009-09-09T10:54:33Z2009-09-09T13:48:17Z<p>One thing is, you could test on the branch, before merging back. Also often the trunk isn't seen as the stable development, you make snapshots from time to time, fix bugs on them without adding features (or even remove features if they are buggy or incomplete) and release these branches as stable.</p>
<p><strong>EDIT</strong>: To explain it a little further: Keeping feature branches for a long time separated from the main trunk can cause headaches for integration. Your team recognizes late conflicting changes - not only on source-level, but also on semantic or data-level. Keeping the trunk current uncovers such problems fast. Therefore I prefer to stabilize on a separate branch.</p>
http://stackoverflow.com/questions/440228/how-can-i-combine-cells-in-a-row-in-a-latex-table2How can I combine cells in a row in a latex-table?Mnementh2009-01-13T18:38:57Z2009-09-09T10:57:05Z
<p>In a table I want to combine some of the columns, but not in all rows. How can I realize this with LaTeX?</p>
http://stackoverflow.com/questions/1392614/how-to-underline-section-headings-in-latex1How to underline section-headings in LaTeX?Mnementh2009-09-08T08:03:22Z2009-09-08T22:14:17Z
<p><strong>EDIT</strong>: As I see in the first answer, underline is the wrong word. I want a line under the section heading, separating the heading from the following text.</p>
<p>I want to separate section headings from the following text with a horizontal line. At the moment I use the following:</p>
<pre><code>\newcommand{\tmpsection}[1]{}
\let\tmpsection=\section
\renewcommand{\section}[1]{\tmpsection{#1}\hrule\nobreak}
</code></pre>
<p>But that produces a line, that is too far away from the section-heading and to near to the following text. Has anyone a better idea?</p>
http://stackoverflow.com/questions/1393486/what-means-the-error-message-java-lang-outofmemoryerror-gc-overhead-limit-excee6What means the error-message 'java.lang.OutOfMemoryError: GC overhead limit exceeded' in Java?Mnementh2009-09-08T11:34:28Z2009-09-08T16:15:09Z
<p>I get this errormessage as I execute my JUnit-Tests:</p>
<pre><code>java.lang.OutOfMemoryError: GC overhead limit exceeded
</code></pre>
<p>I know OutOfMemoryError, but what does GC overhead limit mean, and how can I exceed this?</p>
<p><strong>EDIT</strong>: I resolved the problem, but thanks to your answers I learned something new about the JVM.</p>
http://stackoverflow.com/questions/1392634/choosing-the-right-version-of-apache-commons-logging/1392669#13926691Answer by Mnementh for Choosing the right version of Apache Commons LoggingMnementh2009-09-08T08:19:15Z2009-09-08T08:19:15Z<p>The <a href="http://commons.apache.org/logging/RELEASE-NOTES.txt" rel="nofollow">RELEASE-NOTES</a> of version 1.1.1 say the following:</p>
<pre><code>== Incompatibilities ==
The protected method LogFactory.getContextClassLoader has been reverted to pre-1.1
behaviour. In earlier releases, this method did not use an AccessController when
obtaining the context classloader. In version 1.1 it did. In this release, it has
reverted to not using an AccessController; any user-level code that needs to obtain
a context classloader should itself create an AccessController, and call the
LogFactory.getContextClassLoader method via the doPrivileged method. This fixes a
potential security issue, where untrusted code could get access to the context
classloader if a signed Commons Logging library was in the classpath.
</code></pre>
<p>That sounds very specific to me. I would try the newest version (1.1.1) and look if some problems occur.</p>
http://stackoverflow.com/questions/1390064/how-to-create-a-selfdefined-table-environment-with-the-caption-at-the-end-of-the1How to create a selfdefined table-environment with the caption at the end of the table with LaTeX?Mnementh2009-09-07T16:19:23Z2009-09-07T18:34:59Z
<p>I have a custom table-environment defined with \newenvironment. I have a caption in this environment, but I want to have it at the end.</p>
<p>My environment looks (a little simplified) like this:</p>
<pre><code>\newenvironment{mytable}[2]{\begin{table}[hbtp]\caption{#1}\label{#1}\begin{center}\begin{tabular}{#2}}{\end{tabular}\end{center}\end{table}}
</code></pre>
<p>I wanna put the caption at the end, like this:</p>
<pre><code>\newenvironment{mytable}[2]{\begin{table}[hbtp]\label{#1}\begin{center}\begin{tabular}{#2}}{\caption{#1}\end{tabular}\end{center}\end{table}}
</code></pre>
<p>But that doesn't work, because I cannot use the parameters in the end of the environment. How can I solve this problem?</p>
http://stackoverflow.com/questions/1367505/is-the-map-parameter-of-the-umn-mapserver-conform-to-the-ogc-wms-specification0Is the map-Parameter of the UMN-mapserver conform to the OGC WMS-specification?Mnementh2009-09-02T12:48:59Z2009-09-07T13:56:49Z
<p>Say you have a mapserver-url like this: <a href="http://host/cgi-bin/mapserv?MAP=/path/to/mapfile.map&" rel="nofollow">http://host/cgi-bin/mapserv?MAP=/path/to/mapfile.map&</a></p>
<p>Is a WMS specified in this way conform to the OGC WMS-specification? Some say the map-parameter is a vendor-specific parameter, but you also could see it as part of the URL-prefix for this service (ending with ? or & as specified, it's an & in this case). What do you think, is that compatible to the specification or not?</p>
http://stackoverflow.com/questions/1388924/how-can-i-create-a-bar-chart-with-jfreechart-that-shortens-too-long-bars-with-a1How can I create a bar-chart with JFreeChart, that shortens too long bars with a visible hint?Mnementh2009-09-07T11:33:18Z2009-09-07T12:39:06Z
<p>I want to create a bar-chart, but extraordinary high values should be shortened. An example is this image:</p>
<p><img src="http://www.epa.gov/recovery/images/bar-chart.gif" alt="shortened graph" /></p>
<p>I hope it is clear what I want.</p>
<p>My question is: How can I do this with <a href="http://www.jfree.org/jfreechart/" rel="nofollow">JFreeChart</a>. If it isn't possible with JFreeChart you can possibly recommend alternative open-source Java-libraries to produce such an output.</p>
http://stackoverflow.com/questions/1388692/what-are-the-rights-of-contributors-to-open-source-projects/1388713#13887135Answer by Mnementh for what are the rights of contributors to open source projectsMnementh2009-09-07T10:43:40Z2009-09-07T10:43:40Z<p>It depends under which limitations you gave your contributions. If you gave it directly to a GPL-project without further notifications, the project-owner can't change the license without asking you. So the commercial fork of the GPL-project either don't contain your contribution or you have to be asked. Some projects let transfer the rights in before, i.e. for contributing to the OpenJDK Sun wants an agreement, that you transfer your rights to the code to them.</p>
http://stackoverflow.com/questions/1357070/why-does-the-hudson-integration-game-plugin-does-not-work-after-update0Why does the Hudson Integration Game plugin does not work after update?Mnementh2009-08-31T11:46:26Z2009-09-01T10:39:20Z
<p>Recently I updated the <a href="http://wiki.hudson-ci.org/display/HUDSON/The+Continuous+Integration+Game+plugin" rel="nofollow">cigame-plugin</a> for Hudson to version 1.12. Now I recognized, that no build get points at the moment. The builds are SCM-triggered and the CI-game is activated for the project and the user. What is going wrong? How can I fix it?</p>
<p><strong>EDIT</strong>: I have to correct, the update to the new version of the plugin isn't the problem. Looking through the build-history I can see, that after this update builds got a score. But at some point the builds are not longer scored. Nothing happened to hudson at this time, no restart, no reconfiguration etc. Simply SCM-changes came in and triggered builds.</p>
<p><strong>EDIT 2</strong>: The ci-game-plugin counts a score for builds started manually, but not for builds started by changes in version-control. I have no idea why it behaves this way.</p>
<p><strong>EDIT 3</strong>: Further investigation shows that I have <a href="https://hudson.dev.java.net/issues/show%5Fbug.cgi?id=3726" rel="nofollow">this bug</a> with the same stacktrace produced.</p>
http://stackoverflow.com/questions/1346391/line-equivalent-in-java/1346842#13468420Answer by Mnementh for __LINE__ equivalent in Java ?Mnementh2009-08-28T13:00:55Z2009-08-28T13:00:55Z<p>I don't know about such a thing in the Java-compiler. But you could write a simple program, that replaces a token like <code>__LINE__</code> with the linenumber in the file and configure your buildprocess to execute this tool before compiling. Some sort of a preprocessor.</p>
http://stackoverflow.com/questions/1393486/what-means-the-error-message-java-lang-outofmemoryerror-gc-overhead-limit-exceeComment by Mnementh on What means the error-message 'java.lang.OutOfMemoryError: GC overhead limit exceeded' in Java?Mnementh2009-10-23T09:10:17Z2009-10-23T09:10:17ZI 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.http://stackoverflow.com/questions/1438390/comparison-of-ci-servers/1438473#1438473Comment by Mnementh on Comparison of CI Servers?Mnementh2009-09-17T13:02:39Z2009-09-17T13:02:39ZAh, isn't CC.Net the .net-port of CruiseControl?http://stackoverflow.com/questions/1422590/what-oss-licence-should-i-use/1422624#1422624Comment by Mnementh on What OSS Licence Should I Use?Mnementh2009-09-14T19:23:42Z2009-09-14T19:23:42Z@DrJokepu: That's right, that's why the Affero GPL especially catches this case. I add this to my answer.http://stackoverflow.com/questions/1395116/how-can-be-sectsty-used-together-with-part-in-scrbook-documentclass-in-latexComment by Mnementh on How can be sectsty used together with \part in scrbook-documentclass in LaTeX?Mnementh2009-09-11T19:23:30Z2009-09-11T19:23:30ZNice to see people already downvote without any comment on questions with a real world problem <i>sigh</i>.http://stackoverflow.com/questions/1395116/how-can-be-sectsty-used-together-with-part-in-scrbook-documentclass-in-latex/1410454#1410454Comment by Mnementh on How can be sectsty used together with \part in scrbook-documentclass in LaTeX?Mnementh2009-09-11T19:22:00Z2009-09-11T19:22:00ZI tested your solution and it worked fine. Thanks.http://stackoverflow.com/questions/1395116/how-can-be-sectsty-used-together-with-part-in-scrbook-documentclass-in-latex/1410454#1410454Comment by Mnementh on How can be sectsty used together with \part in scrbook-documentclass in LaTeX?Mnementh2009-09-11T14:25:28Z2009-09-11T14:25:28ZThat brings up the question, if sectsty is under further development and will release future version.http://stackoverflow.com/questions/35646/do-you-continue-development-in-a-branch-or-in-the-trunk/35690#35690Comment by Mnementh on Do you continue development in a branch or in the trunk?Mnementh2009-09-09T13:41:27Z2009-09-09T13:41:27ZThis 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.http://stackoverflow.com/questions/1395116/how-can-be-sectsty-used-together-with-part-in-scrbook-documentclass-in-latex/1395538#1395538Comment by Mnementh on How can be sectsty used together with \part in scrbook-documentclass in LaTeX?Mnementh2009-09-09T06:54:47Z2009-09-09T06:54:47ZYep. I added an example reproducing the problem.http://stackoverflow.com/questions/1395116/how-can-be-sectsty-used-together-with-part-in-scrbook-documentclass-in-latexComment by Mnementh on How can be sectsty used together with \part in scrbook-documentclass in LaTeX?Mnementh2009-09-09T06:54:14Z2009-09-09T06:54:14ZI added an example.http://stackoverflow.com/questions/1395116/how-can-be-sectsty-used-together-with-part-in-scrbook-documentclass-in-latex/1395538#1395538Comment by Mnementh on How can be sectsty used together with \part in scrbook-documentclass in LaTeX?Mnementh2009-09-08T22:30:29Z2009-09-08T22:30:29ZYou 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.http://stackoverflow.com/questions/489706/how-to-explain-open-source-to-your-boss/489736#489736Comment by Mnementh on How to explain Open-Source to your boss?Mnementh2009-09-08T17:17:58Z2009-09-08T17:17:58ZIsn'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.http://stackoverflow.com/questions/1392614/how-to-underline-section-headings-in-latex/1393041#1393041Comment by Mnementh on How to underline section-headings in LaTeX?Mnementh2009-09-08T16:46:18Z2009-09-08T16:46:18Zsectsty 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?http://stackoverflow.com/questions/1392614/how-to-underline-section-headings-in-latex/1392724#1392724Comment by Mnementh on How to underline section-headings in LaTeX?Mnementh2009-09-08T09:12:07Z2009-09-08T09:12:07ZI 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.http://stackoverflow.com/questions/1392614/how-to-underline-section-headings-in-latexComment by Mnementh on How to underline section-headings in LaTeX?Mnementh2009-09-08T08:12:28Z2009-09-08T08:12:28ZAs 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.http://stackoverflow.com/questions/1391995/should-i-make-all-my-java-code-threadsafeComment by Mnementh on Should I make all my java code threadsafe ?Mnementh2009-09-08T08:07:13Z2009-09-08T08:07:13ZSomewhat similar to <a href="http://stackoverflow.com/questions/234341/should-i-always-make-my-java-code-thread-safe-or-for-performance-reasons-do-it-o" rel="nofollow" title="should i always make my java code thread safe or for performance reasons do it o">stackoverflow.com/questions/234341/…</a>