User RodeoClown - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T21:54:08Zhttp://stackoverflow.com/feeds/user/943http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1655570/returning-the-value-of-a-new-checkbox-in-flex-air/1655633#16556330Answer by RodeoClown for Returning the value of a new CheckBox in Flex AirRodeoClown2009-10-31T21:03:33Z2009-10-31T21:03:33Z<p>You are trying to access the <strong>selected</strong> property of the checkbox, but the error is saying that the checkbox object itself is null - hence there is no selected property to get.</p>
<p>So, it doesn't look like the checkbox exists at all. You will need to create it first.</p>
http://stackoverflow.com/questions/1541923/how-would-you-write-your-own-java-classes-to-inherit-from-both-jfc-and-wfc-classe/1541983#15419830Answer by RodeoClown for How would you write your own Java classes to inherit from both JFC and WFC classes? RodeoClown2009-10-09T05:43:10Z2009-10-09T05:43:10Z<p>As Droidln.net said, you just create the class and say it implements the two interfaces.
Then you write the methods matching those described in the interface.</p>
<p>If you use eclipse (and I assume most other IDEs), you can automatically create the required methods.</p>
http://stackoverflow.com/questions/1535076/how-can-i-use-a-switch-statement-to-convert-from-a-numeric-to-a-letter-grade/1535144#15351441Answer by RodeoClown for How can I use a switch() statement to convert from a numeric to a letter grade?RodeoClown2009-10-08T01:29:45Z2009-10-08T01:29:45Z<p>Switch statements only work with values matching the given cases (along with a default).
The only way to write this using a switch statement is to have a case for every possible score.</p>
<p>You would do this like:</p>
<pre><code>switch (score)
{
case 0:
case 1:
...
case 80:
case 81:
...
case 89:
return "B";
case 90:
...
case 100:
return "A";
break;
}
</code></pre>
<p>OR</p>
<p>You can cut it down to a a list of 11 possible cases by dividing by 10 first.</p>
<p>That would leave you with:</p>
<pre><code>switch (score / 10)
{
case 0:
case 1:
case 2:
case 3:
case 4:
return "F";
case 5:
return "E";
case 6:
return "D";
case 7:
return "C";
case 8:
return "B";
case 9:
case 10:
return "A";
}
</code></pre>
<p>Or something similar (of course this assumes you have grades corresponding to 50+ = E, 90+ = A and so on).</p>
http://stackoverflow.com/questions/1499730/ethics-impersonation-alternatives/1501620#15016200Answer by RodeoClown for Ethics & Impersonation: Alternatives?RodeoClown2009-10-01T02:33:54Z2009-10-01T02:33:54Z<p>Ultimately this comes down to trust. Do you trust your (fellow) employees and yourself?</p>
<p>You can (and should) set up audit trails, and make sure the user knows you have logged on as them, but in any small company (I'm assuming you don't work for Google), it's probable that most of the devs will ultimately have access to the database, and could remove or modify these audits if they really wanted to.</p>
<p>One small way of dealing with this aspect is to take daily backups and send them offsite - then at least you can compare databases if you think someone has been fiddling the books.</p>
http://stackoverflow.com/questions/1174976/what-does-gc-mean-in-a-java-garbage-collection-log2What does "GC--" mean in a java garbage collection log?RodeoClown2009-07-23T23:05:25Z2009-08-25T23:10:54Z
<p>We've turned on verbose GC logging to keep track of a known memory leak and got the following entries in the log:</p>
<pre><code>...
3607872.687: [GC 471630K->390767K(462208K), 0.0325540 secs]
3607873.213: [GC-- 458095K->462181K(462208K), 0.2757790 secs]
3607873.488: [Full GC 462181K->382186K(462208K), 1.5346420 secs]
...
</code></pre>
<p>I understand the first and third of those, but what does the "GC--" one mean?</p>
http://stackoverflow.com/questions/1174976/what-does-gc-mean-in-a-java-garbage-collection-log/1325293#13252930Answer by RodeoClown for What does "GC--" mean in a java garbage collection log?RodeoClown2009-08-24T23:23:09Z2009-08-24T23:23:09Z<p><a href="http://stackoverflow.com/users/77779/yishai">Yishai</a> said in the comments:</p>
<blockquote>
<p>Given the timestamps and memory amounts I would guess it performed a garbage collection but lost available memory (because other objects were created in parallel)</p>
</blockquote>
http://stackoverflow.com/questions/1304465/how-to-prevent-css-inherit/1304504#13045043Answer by RodeoClown for how to prevent css inheritRodeoClown2009-08-20T07:22:37Z2009-08-20T07:22:37Z<p>If the inner object is inheriting properties you don't want, you can always set them to what you do want (ie - the properties are cascading, and so you can overwrite them at the lower level).</p>
<p>e.g.</p>
<pre><code>.li-a {
font-weight: bold;
color: red;
}
.li-b {
color: blue;
}
</code></pre>
<p>In this case, "li-b" will still be bold even though you don't want it to be. To make it not bold you can do:</p>
<pre><code>.li-b {
font-weight: normal;
color: blue;
}
</code></pre>
http://stackoverflow.com/questions/1157235/is-this-a-good-practice-something-something/1157250#11572500Answer by RodeoClown for Is this a good practice? "/*/something/*/something//*/"RodeoClown2009-07-21T04:04:49Z2009-07-21T04:04:49Z<p>It's just an easy way to switch between two blocks of code (as Kane Wallmann said).</p>
<p>It's probably not great to leave it in production code (just delete it and get it back from source control if you need it), but while developing it's a handy way of being able to quickly toggle two implementations (or stub out some code etc).</p>
http://stackoverflow.com/questions/1134777/unit-testing-or-debugging/1134782#11347826Answer by RodeoClown for Unit testing or debugging?RodeoClown2009-07-16T00:16:43Z2009-07-16T00:22:19Z<p>They are different.</p>
<p>You use the unit tests to test that a program is working correctly, but if the unit tests fail, you need to use debugging techniques to fix the problem (or the test, if the program is correct but the test is wrong).</p>
http://stackoverflow.com/questions/1128733/convert-pdf-to-rtf-in-java/1128747#11287470Answer by RodeoClown for Convert PDF to RTF in JavaRodeoClown2009-07-15T00:12:30Z2009-07-15T00:12:30Z<p>You could try looking at <a href="http://www.lowagie.com/iText/" rel="nofollow">iText</a>, which is primarily a PDF library, but it has an <a href="http://www.1t3xt.com/products/itextrtf.php" rel="nofollow">RTF package</a> addon available.</p>
http://stackoverflow.com/questions/373518/how-do-i-use-a-local-https-url-in-java3How do I use a local HTTPS URL in java?RodeoClown2008-12-17T02:48:22Z2009-07-13T05:47:28Z
<p>Using the Java URL class, I can connect to an external HTTPS server (such as our production site), but using a local URL I get "SunCertPathBuilderException: unable to find valid certification path to requested target".</p>
<p>How do I get a valid certification path?</p>
<p>EDIT: I'm not using this URL to directly create a connection, I am passing the URL to an itext PDFReader, which is then having the connection issue.</p>
http://stackoverflow.com/questions/264191/should-i-create-a-new-quartz-job-and-trigger-or-one-job-and-many-triggers2Should I create a new quartz job and trigger or one job and many triggers?RodeoClown2008-11-05T02:26:08Z2009-07-08T16:15:07Z
<p>I am looking to use quartz to schedule emails, but I'm not sure which approach to take:</p>
<ol>
<li>Create a new job and trigger whenever an email is scheduled OR</li>
<li>Create a single job, and create a new trigger each time an email is scheduled</li>
</ol>
<p>I need to pass the message/recipient etc either way, and I'm not sure whether creating heaps of jobs will start adding considerable memory overheads, as there will quite possibly be thousands of emails scheduled.</p>
<p><strong>Update</strong>: These emails will be scheduled by users, not by me - so I will be adding these programmatically at runtime, they aren't scheduled to go out at any particular time.</p>
http://stackoverflow.com/questions/1071613/what-are-your-dos-and-donts-for-the-first-day-on-the-job-as-a-developer/1071710#107171013Answer by RodeoClown for What are your do's and don'ts for the first day on the job as a developer?RodeoClown2009-07-01T22:43:11Z2009-07-01T22:43:11Z<p>Don't work unreasonable hours at the beginning - it sets a precedent, and makes it really hard to cut back later. Don't slack off, but don't let yourself be bullied into extremely long hours.</p>
http://stackoverflow.com/questions/1071514/flash-to-trigger-another-flash/1071704#10717043Answer by RodeoClown for Flash to trigger another flashRodeoClown2009-07-01T22:41:03Z2009-07-01T22:41:03Z<p>You want to look into the <a href="http://www.adobe.com/support/flash/action%5Fscripts/local%5Fconnection%5Fobjects/" rel="nofollow">LocalConnection</a> object</p>
http://stackoverflow.com/questions/795687/copying-wingdings-etc-from-word-documents-to-html-text-fields0Copying wingdings (etc) from word documents to html text fieldsRodeoClown2009-04-27T23:32:48Z2009-04-28T00:36:49Z
<p>When I write out some text (standard English, no fancy characters) in Word using Windgings as a font, copying the text and pasting into an html textfield results in the OS's "I don't know what character this is" characters (little squares on Windows).</p>
<p>It seems that changing the font (what should be a display-only property) is preventing the text from being pasted correctly into the input field.</p>
<p>Why does it not paste the text directly?
Is there anything I can do to stop the 'little squares' problem?</p>
http://stackoverflow.com/questions/679623/generate-user-friendly-codes/679813#6798132Answer by RodeoClown for Generate User Friendly CodesRodeoClown2009-03-25T00:39:59Z2009-03-25T00:39:59Z<p><a href="http://www.multicians.org/thvv/gpw.html" rel="nofollow">Java Pronouncable Passwords</a> is a site that generates random pronouncable words. The source is available,so you could port it to whatever system you need. </p>
<p>This should provide you with a code you can give to a user, one that they have a chance of actually remembering.</p>
http://stackoverflow.com/questions/223954/how-do-i-configure-cocoon-to-use-a-database-as-a-store-for-quartz-jobs-and-trigge1How do I configure cocoon to use a database as a store for quartz jobs and triggersRodeoClown2008-10-21T23:38:23Z2009-02-09T18:46:10Z
<p>I'm using Cocoon and want to store the jobs and triggers for the quartz scheduler in the database so they are persisted. I can see where I need to make the change in <code>cocoon.xconf</code> but I can't find much on how to configure the datasource etc.</p>
<p>How do I configure this to use our existing (postgres) database?</p>
http://stackoverflow.com/questions/514551/binding-a-list-of-integers-in-an-in-clause-using-cayenne0Binding a list of integers in an IN clause using CayenneRodeoClown2009-02-05T04:17:12Z2009-02-05T04:36:15Z
<p>I'm trying to bind a list of integers into an SQLTemplate IN clause like so:</p>
<pre><code>SELECT * FROM table1 WHERE id IN ( #bind($idList) );
</code></pre>
<p>I have a string of ids:</p>
<pre><code>idList = "1, 2, 3, 4";
</code></pre>
<p>I can't get the bind to work successfully, it returns no values when I pass in the string as a list of ids to check.</p>
<p>I'm having to use string concatenation to run this (not ideal).</p>
<p>Any ideas as to how I could get it to bind properly?</p>
<p>Thanks in advance.</p>
<p><em>(I'm using Java/Cayenne/Postgres, and running the query with the idList passed in as a parameter, this is a simplified example, not the actual sql I am running).</em></p>
<p><strong>UPDATE</strong> I figured out how to do it. Answer below.</p>
http://stackoverflow.com/questions/514551/binding-a-list-of-integers-in-an-in-clause-using-cayenne/514589#5145890Answer by RodeoClown for Binding a list of integers in an IN clause using CayenneRodeoClown2009-02-05T04:35:13Z2009-02-05T04:35:13Z<p>OK, I found out how to do it as soon as I posted the question.</p>
<p>Instead of having a string, use a list of Integers like so:</p>
<pre><code>List<Integer> ids = {1,2,3,4,5} (pseudocode)
</code></pre>
<p>And to do the bind, you need the following:</p>
<pre><code>SELECT * FROM table1 WHERE id IN ( #bind($idList, 'INTEGER') );
</code></pre>
<p>Then pass in the parameter as usual and it will work.</p>
http://stackoverflow.com/questions/217116/can-i-find-out-the-return-value-before-returning-while-debugging-in-eclipse14Can I find out the return value before returning while debugging in EclipseRodeoClown2008-10-19T22:57:18Z2009-01-20T16:51:24Z
<p>Is it possible to see the return value of a method after the line has been run and before the instruction pointer returns to the calling function?</p>
<p>I am debugging code I can't modify <em>(read: don't want to re-compile a third party library)</em>, and sometimes it jumps to code I don't have source to or the return expression has side effects that stop me being able to just run the expression in the <em>Display</em> tab.</p>
<p>Often the return value is used in a compound statement, and so the <em>Variables</em> view will never show me the value (hence wanting to see the result before control returns to the calling function).</p>
<p><strong>UPDATE:</strong> I can't use the expression viewer as there are side-effects in the statement. Please read the question before upvoting an incorrect answer. Thanks.</p>
http://stackoverflow.com/questions/361756/is-tight-looping-bad/437935#4379350Answer by RodeoClown for Is tight looping bad?RodeoClown2009-01-13T04:08:11Z2009-01-13T04:08:11Z<p>Also consider laptop users, running a tight loop continuously will keep the CPU running hard, and this will chew through their battery (many flash games are guilty of this). Something to consider when deciding whether to throttle your loops or not.</p>
http://stackoverflow.com/questions/373518/how-do-i-use-a-local-https-url-in-java/376489#3764890Answer by RodeoClown for How do I use a local HTTPS URL in java?RodeoClown2008-12-17T23:55:59Z2008-12-17T23:55:59Z<p>I have ended up running a static method (only on dev) that installs a very trusting TrustManager (accepts everything), and also added a hostnameVerifier that always returns true (thanks <a href="http://stackoverflow.com/users/4893/sblundy">sblundy</a>).</p>
<p><a href="http://www.exampledepot.com/egs/javax.net.ssl/TrustAll.html" rel="nofollow">Details on setting up a trust manager</a></p>
http://stackoverflow.com/questions/277044/do-i-need-to-store-the-salt-with-bcrypt6Do I need to store the salt with bcrypt?RodeoClown2008-11-10T04:14:55Z2008-11-10T04:33:24Z
<p><a href="http://www.mindrot.org/files/jBCrypt/jBCrypt-0.2-doc/" rel="nofollow">bCrypt's javadoc</a> has this code for how to encrypt a password:</p>
<pre><code>String pw_hash = BCrypt.hashpw(plain_password, BCrypt.gensalt());
</code></pre>
<p>To check whether a plaintext password matches one that has been hashed previously, use the checkpw method:</p>
<pre><code>if (BCrypt.checkpw(candidate_password, stored_hash))
System.out.println("It matches");
else
System.out.println("It does not match");
</code></pre>
<p>These code snippets imply to me that the randomly generated salt is thrown away. Is this the case, or is this just a misleading code snippet?</p>
http://stackoverflow.com/questions/248589/finding-unused-jars-used-in-an-eclipse-project5Finding unused jars used in an eclipse projectRodeoClown2008-10-29T22:00:42Z2008-10-29T22:22:39Z
<p>Are there any plugins/tools available to go through the classpath of an eclipse project (or workspace) and highlight any unused jars?</p>
http://stackoverflow.com/questions/245453/refactor-this-recursive-method/245680#2456800Answer by RodeoClown for Refactor this recursive method?RodeoClown2008-10-29T03:12:39Z2008-10-29T03:12:39Z<p>A nicer way of getting the max value of an array recursively would be to implement <a href="http://en.wikipedia.org/wiki/Quicksort" rel="nofollow">quicksort</a> (which is a nice, recursive sorting algorithm), and then just return the first value.</p>
<p>Here is some <a href="http://www.cs.princeton.edu/introcs/42sort/QuickSort.java.html" rel="nofollow">Java code for quicksort</a>.</p>
http://stackoverflow.com/questions/238824/getting-a-file-from-an-http-request-in-java2Getting a file from an http request in javaRodeoClown2008-10-27T00:03:15Z2008-10-27T01:31:31Z
<p>How do I call a url in order to process the results?</p>
<p>I have a stand-alone reporting servlet which I link to for reports. I want to email these reports now, if I were doing this in the browser, I could just use an xhttprequest, and process the results - I basically want to do the same thing in Java, but I'm not sure how to go about it.</p>
<p><strong>UPDATE</strong>: I'm looking to get a file back from the url (whether that be a pdf or html etc).</p>
<p><strong>UPDATE</strong>: This will be running purely on the server - there is no request that triggers the emailing, rather it is a scheduled email.</p>
http://stackoverflow.com/questions/228458/how-do-i-combine-multiple-birt-reports2How do I combine multiple BIRT reportsRodeoClown2008-10-23T03:39:07Z2008-10-24T02:01:37Z
<p>We currently have a whole suite of report designs that cover various parts of our app, and these reports are generated on demand by our users.</p>
<p>I want to be able to bundle up several of these reports into a single report to return to the user.</p>
<p>I initially hacked up a custom report builder that generated report design files using segments inside a report library file, and then ran that generated design, but this was unwieldy and a pain to manage as I had to duplicate the individual reports (still required) inside the report library file. Any changes to the stand-alone reports had to be duplicated in the library for the combined reports.</p>
<p>What I am really looking for is a way to specify several design files, have them all run, and then return a single file to the user, containing all the reports they selected.</p>
http://stackoverflow.com/questions/223918/java-efficient-equivalent-to-removing-while-iterating-a-collection/223942#2239422Answer by RodeoClown for Java: Efficient Equivalent to Removing while Iterating a CollectionRodeoClown2008-10-21T23:32:17Z2008-10-21T23:32:17Z<p>You can either use the iterator directly like you mentioned, or else keep a second collection and add each item you want to remove to the new collection, then removeAll at the end. This allows you to keep using the type-safety of the for-each loop at the cost of increased memory use and cpu time (shouldn't be a huge problem unless you have really, really big lists or a really old computer)</p>
<pre><code>public static void main(String[] args)
{
Collection<Integer> l = new ArrayList<Integer>();
Collection<Integer> itemsToRemove = new ArrayList<Integer>();
for (int i=0; i < 10; ++i) {
l.add(new Integer(4));
l.add(new Integer(5));
l.add(new Integer(6));
}
for (Integer i : l)
{
if (i.intValue() == 5)
itemsToRemove.add(i);
}
l.removeAll(itemsToRemove);
System.out.println(l);
}
</code></pre>
http://stackoverflow.com/questions/220424/getting-started-with-writing-a-java-tool-revisiting-java/220429#2204293Answer by RodeoClown for Getting started with writing a Java tool - Revisiting JavaRodeoClown2008-10-21T00:45:21Z2008-10-21T00:45:21Z<p>For the IDE, check out <a href="http://download.eclipse.org/eclipse/downloads/" rel="nofollow">Eclipse</a>.</p>
<p>It compiles every time you save, which will point out any syntax errors you run into without you needing to manually compile. Also offers code completion (intellisense), quick fixes for common errors and refactoring tools.</p>
http://stackoverflow.com/questions/204799/how-do-you-export-a-selection-of-files-from-the-synchronize-view-in-eclipse/217480#2174801Answer by RodeoClown for How do you export a selection of files from the Synchronize view in Eclipse?RodeoClown2008-10-20T03:48:24Z2008-10-20T03:48:24Z<p>You may want to look at <em>the Change Sets</em> feature.</p>
<p>On the synchronize view, the very last button is the Change Sets button - if you turn that on, you can assign your changes to sets that you define (right click on a file listed and then <em>Add To -> New Change Set</em>. </p>
<p>I set up a change set called <em>Local changes</em>, and then a new change set for each defect/feature I am working on (and set this to be the default change set). When it comes time to commit the changes for a feature or defect, I just right click on the appropriate change set name and click <em>commit</em>.</p>
<p>This way you can keep local changes around as long as you like without worrying about sorting which files need committing and which to keep around (or create a patch from etc).</p>
http://stackoverflow.com/questions/1919501/iframe-onload-visibility/1919568#1919568Comment by RodeoClown on iframe Onload VisibilityRodeoClown2009-12-17T05:07:23Z2009-12-17T05:07:23Z+1 for coming back with a resolutionhttp://stackoverflow.com/questions/1655570/returning-the-value-of-a-new-checkbox-in-flex-air/1655633#1655633Comment by RodeoClown on Returning the value of a new CheckBox in Flex AirRodeoClown2009-11-01T21:17:33Z2009-11-01T21:17:33ZIt might be picking it up as it is defined in the file, so the IDE knows it exists, but it may not have been instantiated at the point in time you are trying to access it via the createXMLData() method.
Again, that's just what it would appear the error message is saying - but I know I've hit plenty of misleading errors in the past too, so it could well be something different.http://stackoverflow.com/questions/1535076/how-can-i-use-a-switch-statement-to-convert-from-a-numeric-to-a-letter-grade/1535144#1535144Comment by RodeoClown on How can I use a switch() statement to convert from a numeric to a letter grade?RodeoClown2009-10-08T04:18:00Z2009-10-08T04:18:00Z@William - I didn't see that in the requirements, but this was a real simple example of how you would go about it. It isn't meant to be the correct answer.
If I had to do this for real, my final code would probably look pretty different (plus I'd challenge the switch-only restriction).http://stackoverflow.com/questions/1535076/how-can-i-use-a-switch-statement-to-convert-from-a-numeric-to-a-letter-grade/1535144#1535144Comment by RodeoClown on How can I use a switch() statement to convert from a numeric to a letter grade?RodeoClown2009-10-08T04:16:23Z2009-10-08T04:16:23Z@DVK- I gave it about 30 seconds thought, didn't really think about cleaning it up to use defaults etc. You're probably right about the fishing thing - but I think the problem is kind of like telling the kid to go catch a blue whale using a piece of spaghetti. Assuming he is a kid, and not a mature-age student. And a he.http://stackoverflow.com/questions/1373478/has-crashing-or-fast-tracking-a-project-schedule-ever-worked/1391866#1391866Comment by RodeoClown on Has Crashing or Fast-Tracking a project schedule ever worked?RodeoClown2009-09-08T04:23:02Z2009-09-08T04:23:02Z+1 for explaining the terms.http://stackoverflow.com/questions/1386593/why-use-sprintf-function-in-php/1386616#1386616Comment by RodeoClown on Why use sprintf function in PHP?RodeoClown2009-09-06T23:15:19Z2009-09-06T23:15:19ZRecent editions of Java will convert String concatenation to a StringBuilder behind the scenes.http://stackoverflow.com/questions/784461/how-do-you-clear-your-mind-after-8-10-hours-per-day-of-coding/786836#786836Comment by RodeoClown on How do you clear your mind after 8-10 hours per day of coding?RodeoClown2009-09-02T06:27:02Z2009-09-02T06:27:02ZThe Ballmer Peak occurs at a BAC of .1337http://stackoverflow.com/questions/1365873/how-do-you-plan-your-days-work/1365921#1365921Comment by RodeoClown on How do you plan your day's work?RodeoClown2009-09-02T06:12:11Z2009-09-02T06:12:11ZFixed that for you ;)http://stackoverflow.com/questions/1174976/what-does-gc-mean-in-a-java-garbage-collection-logComment by RodeoClown on What does "GC--" mean in a java garbage collection log?RodeoClown2009-07-29T22:41:23Z2009-07-29T22:41:23Z@trenton: JDK 1.6.0.12http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17900#17900Comment by RodeoClown on Computer Language puns and jokesRodeoClown2009-07-27T06:06:23Z2009-07-27T06:06:23ZThere are 10 types of programmer... those who understand ternary, those who don't, those who confuse it with binary, and those who see the pattern repeating for all base-n counting systems.http://stackoverflow.com/questions/1062443/avoding-unnecessary-updates-in-update-query/1062851#1062851Comment by RodeoClown on Avoding unnecessary updates In Update QueryRodeoClown2009-07-27T01:28:24Z2009-07-27T01:28:24ZAnd apparently, neither did he...http://stackoverflow.com/questions/1174976/what-does-gc-mean-in-a-java-garbage-collection-logComment by RodeoClown on What does "GC--" mean in a java garbage collection log?RodeoClown2009-07-23T23:46:09Z2009-07-23T23:46:09ZWant to put it in an answer so I can vote it up/accept it? :)http://stackoverflow.com/questions/1174976/what-does-gc-mean-in-a-java-garbage-collection-logComment by RodeoClown on What does "GC--" mean in a java garbage collection log?RodeoClown2009-07-23T23:43:20Z2009-07-23T23:43:20ZYishai, thanks, that makes a lot of sense. Not sure if it's right or not, but very well could be.http://stackoverflow.com/questions/1174976/what-does-gc-mean-in-a-java-garbage-collection-log/1175014#1175014Comment by RodeoClown on What does "GC--" mean in a java garbage collection log?RodeoClown2009-07-23T23:38:12Z2009-07-23T23:38:12ZHi e5, no special garbage collector. Normal Sun VM. I only see it occasionally, so no, it's not before every Full GC (but I couldn't say if every time it occurs it is directly before one). No System.gc().http://stackoverflow.com/questions/1152356/how-can-i-give-my-java-application-a-unique-process-name/1152381#1152381Comment by RodeoClown on How can I give my Java application a unique process name?RodeoClown2009-07-21T05:08:06Z2009-07-21T05:08:06ZI have done this with the java.exe I use to run eclipse with - then I can easily spot whether eclipse is chewing up resources, or my program.