User WolfmanDragon - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T21:00:37Z http://stackoverflow.com/feeds/user/13491 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1499833/convert-a-two-byte-bit-mask-into-a-enumset 0 convert a two Byte bit mask into a EnumSet WolfmanDragon 2009-09-30T18:20:08Z 2009-11-06T17:31:20Z <p>I am reading a binary file that has values stored in bit masks, both 1 Byte <em>bit masks</em> and 2 Byte <em>bit masks</em>. Each bit in the masks act as a switch that indicates where an Event has transpired. </p> <blockquote> <p>Example of 1 Byte mask: </p> <pre><code>00000101 </code></pre> <p>Indicates that Event one and Event 3 has transpired.</p> </blockquote> <p>Example of <em>Enum</em></p> <pre><code>public enum MyEnum { EventOne, EventTwo, ....; } </code></pre> <p>I have created a <code>Enum MyEnum</code>(as per Item 32 in <a href="http://java.sun.com/docs/books/effective/toc.html" rel="nofollow">Effective java, Second Edition</a>) of the events. How can the binary bit masks be read into an <code>EnumSet&lt;MyEnum&gt;</code>? </p> http://stackoverflow.com/questions/206158/is-there-any-way-to-manually-fold-code-in-eclipse 2 Is there any way to manually fold code in Eclipse? WolfmanDragon 2008-10-15T19:52:04Z 2009-11-05T08:47:03Z <p>Is there any way to manually create fold points in code in Eclipse? I know how to enable folding and how to set the auto preferences, but i like being able to set my own fold points so I can ignore certain parts of my code. Think regions in VS.<br /> I know there is in VS and NetBeans, but I cannot find a way to set manual fold points in Eclipse. </p> http://stackoverflow.com/questions/1595574/postgresql-select-the-last-order-per-customer-per-date-range 0 PostgreSQL SELECT the last order per customer per date range WolfmanDragon 2009-10-20T15:44:16Z 2009-10-20T21:51:50Z <p>In PostgreSQL: I have a Table that has 3 columns:</p> <p><code>CustomerNum, OrderNum, OrderDate</code>. </p> <p>There may(or may not) be many orders for each customer per date range. What I am needing is the last OrderNum for each Customer that lies in the date range that is supplied. What I have been doing is getting a ResultSet of the customers and querying each one separately, but this is taking too much time.</p> <p>Is there any way of using a sub-select to select out the customers, then get the last OrderNum for each Customer?</p> http://stackoverflow.com/questions/462534/how-do-i-check-to-see-if-a-column-name-exists-in-a-cachedrowset 0 How do I check to see if a column name exists in a CachedRowSet? WolfmanDragon 2009-01-20T18:39:55Z 2009-10-08T18:34:40Z <p>I am querying data from views that are subject to change. I need to know if the column exists before I do a crs.get*<strong>X*</strong>().I have found that I can query the metadata like this to see if a column exist before I request the data from it.</p> <pre><code>ResultSetMetaData meta = crs.getMetaData(); int numCol = meta.getColumnCount(); for (int i = 1; i &lt; numCol+1; i++) { if(meta.getColumnName(i).equals("name")) {return true;} } </code></pre> <p>Is there a simpler way of checking to see if a column exists? </p> <p>EDIT: It must be database agnostic. That is why I am referencing the the CachedRowSet instead of the database.</p> http://stackoverflow.com/questions/363805/what-is-the-best-way-to-convert-an-existing-php-class-into-java 0 What is the best way to convert an existing php class into Java? WolfmanDragon 2008-12-12T19:01:56Z 2009-10-01T08:54:29Z <p>I have been tasked with converting several php classes into java classes, which is quickly becoming a nightmare for me. I understand the basic language structure, it being similar to C. It is all of the function calls and class calls that seem to go nowhere and the fact that a var can be declared in the <strong>!middle of an expression!</strong> that is spinning my head, oh and the fact that there is zero "0" documentation.</p> <p>What is the best <strong>method</strong> (and/or) <strong>tool</strong> (and/or) <strong>reference material</strong> to convert the php into java code?</p> <p>edit: There is 3 reasons that I am having to convert the php to java. </p> <ol> <li>The usual reason, my boss told me too.</li> <li>The php is too slow, it is taking <strong>minutes</strong> sometimes to run a request to the server. </li> <li>php is a nightmare to scale and maintain.(at least for us strong typed language types)</li> </ol> http://stackoverflow.com/questions/1455138/java-generics-why-does-map-get-ignore-type/1455226#1455226 -2 Answer by WolfmanDragon for Java Generics: Why Does Map.get() Ignore Type? WolfmanDragon 2009-09-21T15:47:24Z 2009-09-21T16:31:45Z <p>To add to @subtenante, Java is designed so that Java will always be backwards compatible. Generics disallow puts of the wrong type, as this does not break backwards compatibility. The easy way to make sure that the right key is being used is to do this.</p> <pre><code>K key = null; V value = null; Map&lt;K,V&gt; mapped = new HashMap&lt;K,V&gt;() .......//set the key and value.......... mapped.put(key, value) ..... V var = mapped.get(key); </code></pre> <p>Problem solved.<br /> One more caveat to generics, any child of a class can also be placed into a collection. </p> <pre><code>Number k= null; Number v= null; Map&lt;Number,Number&gt; mapped = new HashMap&lt;Number,Number&gt;() .......//set the key and value.......... k = double someDouble; v = int someInt; mapped.put(k, v) ..... </code></pre> <p>This could cause some big bugs!!</p> http://stackoverflow.com/questions/1455094/how-can-i-cycle-through-hex-color-codes-in-php/1455122#1455122 1 Answer by WolfmanDragon for How can I cycle through hex color codes in PHP? WolfmanDragon 2009-09-21T15:30:22Z 2009-09-21T15:36:08Z <p>00FF00 is Green 000000 is Black. all you have to do it increment one color at a time while decrementing the other colors. Stick it in a loop, where it be php, javascript or whatever and go.</p> <p><strong>EDIT:</strong> Here is a link to code that shows how to <a href="http://php.about.com/od/finishedphp1/ss/hexcolors%5F2.htm" rel="nofollow">loop</a> through Hex color codes.</p> http://stackoverflow.com/questions/1427272/for-loop-construction-and-code-complexity/1427302#1427302 -1 Answer by WolfmanDragon for For loop construction and code complexity WolfmanDragon 2009-09-15T13:51:33Z 2009-09-15T13:51:33Z <p>This looks like a place for a while loop. For loops are <a href="http://en.wikipedia.org/wiki/Syntactic%5Fsugar" rel="nofollow">Syntactic Sugar</a> on top of a While loop anyway. The general rule is that if you have to break out of a For loop, then use a While loop instead. </p> http://stackoverflow.com/questions/1401658/html-overlay-which-allows-clicks-to-fall-through-to-elements-behind-it/1401732#1401732 0 Answer by WolfmanDragon for HTML "overlay" which allows clicks to fall through to elements behind it WolfmanDragon 2009-09-09T19:52:32Z 2009-09-09T19:52:32Z <p>This is a horrible idea, this is very similar to "Click-Jacking" used by very unsavory characters. Good security tools(i.e. NoScripts) will id this as a possible hostile site and ask the user to direct away from the site. </p> http://stackoverflow.com/questions/1363887/does-a-foreign-key-referencing-pk-need-the-not-null-constraint 0 Does a Foreign Key referencing PK need the NOT NULL constraint? WolfmanDragon 2009-09-01T18:22:14Z 2009-09-01T18:49:58Z <p>Does a Foreign Key referencing a Primary Key need the NOT NULL constraint in a PostgreSQL database?<br /> The database is highly normalized and will be very large. I do not wish to add extra constraints that will slow down the queries even more if said queries are unneeded.</p> http://stackoverflow.com/questions/1359157/might-enummap-be-considered-a-reasonable-alternative-to-java-beans/1359272#1359272 2 Answer by WolfmanDragon for Might EnumMap be considered a reasonable alternative to Java beans? WolfmanDragon 2009-08-31T20:31:49Z 2009-08-31T20:38:40Z <p>A bean is meant to be mutable, hence the setter methods. EnumMap is comparable in speed to using a HashMap with integers as the Key, but are Keys are Immutable. Beans and EnumMaps serve two different purposes. If all of the Keys are known at design time and are guaranteed to never change, then using an EnumMap will be fine.<br /> Updating a bean is much simpler than changing the backing Enum of the EnumMap with much less chance of creating errors downstream in the code. </p> http://stackoverflow.com/questions/1324676/what-is-a-word-boundary-in-regexes/1324784#1324784 0 Answer by WolfmanDragon for What is a word boundary in regexes? WolfmanDragon 2009-08-24T21:05:57Z 2009-08-24T21:05:57Z <p>A word boundary is a position. It can be one of three positions.</p> <ol> <li>Before the first character in the string, if the first character is a word character. </li> <li>After the last character in the string, if the last character is a word character.</li> <li>Between two characters in the string, where one is a word character and the other is not a word character. </li> </ol> <p>Word characters are alpha-numeric characters. A minis sign is a non word character. Taken from <a href="http://www.regular-expressions.info/wordboundaries.html" rel="nofollow">Regex Tutorial</a>.</p> http://stackoverflow.com/questions/1239627/do-final-members-assigned-constants-on-declaration-get-optimized-at-run-time-to/1239835#1239835 1 Answer by WolfmanDragon for Do final members assigned constants on declaration get optimized at run-time to 'static final's? WolfmanDragon 2009-08-06T15:52:31Z 2009-08-06T15:52:31Z <p>There is one caveat to making a <code>final</code> a <code>static final</code>, that is if there is a method building the variable. If there is more than one instance of the variable with a dynamic set, then the value of the variable gets <em>stuck</em>. Many times finals are created dynamically for performance reasons; this is dangerous, as someone may decide to optimize the code and <code>static</code> them. </p> <p>In your example there is no issue, but if you are going to have more than one instance of the Class or Method where the variable is set and it is set dynamically, make sure that there is no static modifier to the final. Unless there is a <strong>large loop</strong> where the var is being set, the danger of breaking code is not worth the <strong>very small</strong> performance gain. </p> http://stackoverflow.com/questions/457884/what-are-the-things-java-got-wrong/1236786#1236786 0 Answer by WolfmanDragon for What are the things Java got wrong? WolfmanDragon 2009-08-06T03:08:44Z 2009-08-06T03:08:44Z <p>Lack of Class modifier <strong>Friend</strong>. One long and verbose class can be broken into two Friend-ly Classes in C++, but not in Java. A static inner class will do the same thing as long as the code never needs to be reused.</p> http://stackoverflow.com/questions/1235013/what-is-a-member-vs-a-property/1235147#1235147 1 Answer by WolfmanDragon for what is a member vs. a property WolfmanDragon 2009-08-05T19:06:59Z 2009-08-05T19:24:27Z <p>Both properties and methods are members of an object. A property describes some aspect of the object while a method accesses or uses the owning object.<br /> An example in pseudo-code:</p> <pre><code>Object Ball Property color(some Value) Method bounce(subroutine describing the movement of the Ball) </code></pre> <p>Where the ball is defined and given a color(property) while the method bounce is a subroutine that describes the how the ball will react on hitting another object.<br /> Not all languages have properties, i.e. Java only has fields that must be accessed by getters and setters.</p> http://stackoverflow.com/questions/1235179/simple-way-to-repeat-a-string-in-java/1235204#1235204 0 Answer by WolfmanDragon for Simple way to repeat a String in java WolfmanDragon 2009-08-05T19:21:15Z 2009-08-05T19:21:15Z <p>If you are worried about performance, just use a StringBuilder inside the loop and do a .toString() on exit of the Loop. Heck, write your own Util Class and reuse it. 5 Lines of code max.</p> http://stackoverflow.com/questions/1223710/we-have-to-use-c-for-performance-reasons/1223817#1223817 3 Answer by WolfmanDragon for We have to use C "for performance reasons" WolfmanDragon 2009-08-03T18:14:57Z 2009-08-04T19:56:00Z <p>Embedded systems = ADA;</p> <p>ADA is a Fast secure language that has data checking built in everywhere. It is what the auto pilots in airplanes are programmed in.</p> <p>EDIT:<br /> <a href="http://www.adaic.com/whyada/ada-vs-c/ada-vs-c.html" rel="nofollow">ADA vs. C</a></p> http://stackoverflow.com/questions/1207957/how-do-i-create-a-new-joda-datetime-truncated-to-the-last-hour 1 How do I create a new Joda DateTime truncated to the last hour? WolfmanDragon 2009-07-30T17:04:53Z 2009-07-30T17:20:58Z <p>I am pulling timestamps from a file that I want to create a new DateTime for, but I want to create the DateTime at the floor of the hour (or any Joda Period will do).<br /> How Can I do this?</p> http://stackoverflow.com/questions/1207957/how-do-i-create-a-new-joda-datetime-truncated-to-the-last-hour/1208053#1208053 2 Answer by WolfmanDragon for How do I create a new Joda DateTime truncated to the last hour? WolfmanDragon 2009-07-30T17:20:58Z 2009-07-30T17:20:58Z <p>Wohoo, found it. Simple like everything in Joda once I traced down the calls.</p> <pre><code>DateTime dt = new DateTime().hourOfDay().roundFloorCopy(); </code></pre> http://stackoverflow.com/questions/1072561/problem-with-numeric-string-using-apache-poi/1190339#1190339 0 Answer by WolfmanDragon for Problem with Numeric/String using Apache POI... WolfmanDragon 2009-07-27T20:08:11Z 2009-07-27T20:08:11Z <p>cast to an int then do a .toString(). It is ugly but it works.</p> http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/509561#509561 6 Answer by WolfmanDragon for What's your most controversial programming opinion? WolfmanDragon 2009-02-04T00:09:08Z 2009-07-20T16:15:43Z <p><strong>Premature optimization</strong> is <strong>NOT</strong> the root of all evil! Lack of proper planning is the root of all evil. </p> <p>Remember the old naval saw </p> <blockquote> <p>Proper Planning Prevents P*ss Poor Performance!</p> </blockquote> http://stackoverflow.com/questions/1154229/how-to-handle-remote-monitoring-of-log4j/1154451#1154451 1 Answer by WolfmanDragon for How to handle remote monitoring of log4j ? WolfmanDragon 2009-07-20T16:07:45Z 2009-07-20T16:07:45Z <p>There is nothing wrong with chainsaw, it is good. If you need something more, look at the log4j <a href="http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/Appender.html" rel="nofollow">appenders</a>. If you read all of the documentation with log4j you will see that the appenders can send logs to email, cell phones.....</p> http://stackoverflow.com/questions/1139718/php-and-databases-views-functions-and-stored-procedures-performance/1139804#1139804 1 Answer by WolfmanDragon for PHP and Databases: Views, Functions and Stored Procedures performance WolfmanDragon 2009-07-16T19:33:36Z 2009-07-16T19:38:54Z <p>I. Views offer encapsulation, but if not carefully designed they can slow down the application. Use with caution.<br /> II. Use functions if needed, no reason to put them in if they are unneeded.<br /> III. Stored Procedures are a godsend, use them everywhere there is a static query!!</p> <p>In response to the views vs. queries, try to use views with Stored Procedure's, the Stored Procedure's will mitigate some of the performance hit taken with <strong><em>most</em></strong> views.</p> http://stackoverflow.com/questions/1122921/suggested-c-books/1122960#1122960 0 Answer by WolfmanDragon for Suggested C++ books? WolfmanDragon 2009-07-14T01:00:12Z 2009-07-14T01:00:12Z <p>Thee <a href="http://oreilly.com/catalog/9781932111262/" rel="nofollow">C++ Black Book</a> is the perfect book for the level you are at. Easy to read descriptions and cook booking exercises that will take you to the next level of coding.</p> http://stackoverflow.com/questions/1122604/what-is-the-practical-purpose-of-xml-that-mysql-does-not-have/1122685#1122685 1 Answer by WolfmanDragon for What is the practical purpose of XML, that MySQL does not have? WolfmanDragon 2009-07-13T23:30:23Z 2009-07-13T23:30:23Z <p>In addition to @Jared, there are XML databases. If the data is stored in XML, then it can be queried, transformed into html on the fly, or used in applications without the need for wrapping the data.</p> http://stackoverflow.com/questions/1122328/first-name-middle-name-last-name-why-not-full-name/1122561#1122561 1 Answer by WolfmanDragon for First name, middle name, last name. Why not Full Name? WolfmanDragon 2009-07-13T22:57:47Z 2009-07-13T23:05:28Z <p>The i18n issue can be a bugger either way. certain cultures use the surname first and the given name last, that strikes the idea of first and last names so we move to fields for surnames and given names. <strong><em>Wait</em></strong>, some cultures don't have a surname or the surname is modified by the gender of the named.<br /> We can get into tribal cultures where the person is renamed on adulthood. "Sitting Bull" childhood name was "Jumping Badger".<br /> This is somewhat of a ramble but what I am showing is that the more fields you have the more accurate the design is. There should be at least a <code>not null</code> 'given name' field and a <code>optional</code> 'surname' field tied to a <code>PK</code> that is an integer. If the aforementioned requirements are observed, fields can be added without issues of breaking queries. </p> http://stackoverflow.com/questions/721859/poi-importing-csv-data/1087984#1087984 1 Answer by WolfmanDragon for POI: Importing CSV data. WolfmanDragon 2009-07-06T16:42:47Z 2009-07-06T17:00:22Z <p>Apache POI was never designed to call on CSV files. While a CSV File may be opened in Excel, Excel has its own reader that does an auto import. This is assuming that your CSV has the .csv instead of the .txt suffix. If it has the .txt suffix, save it as a .csv. All then you have to do is right click on the CSV and Open With Excel. Presto, the CSV has been imported into Excel. </p> <p>I am assuming that you are wanting to parse the data from a txt file into the Excel File. If that is the case I would suggest you use a Library liKe <a href="http://supercsv.sourceforge.net/" rel="nofollow">SuperCSV</a> instead of trying to get POI to do something it was never designed to do. It will load it all into a Bean, Map or List of your choice as it parses the data and then you can either write it back in the format you chose into a .csv file or use a JDBC-ODBC Bridge or Apache POI to write it directly into and .XLS format. Adds an extra step, but then you have complete control of the data. </p> <p>SuperCSV carries the Apache2 License, so it should be good for anything you choose to do with it.</p> <p>Or just use the .split() function in java and parse up the CSV into arrays and load the arrays into .xls with POI.</p> http://stackoverflow.com/questions/1081063/compressing-array-of-integers-in-java/1081102#1081102 0 Answer by WolfmanDragon for Compressing array of integers in java WolfmanDragon 2009-07-03T23:10:37Z 2009-07-03T23:10:37Z <p>A byte array is not going to save you much memory unless you make it a byte array holding unsigned ints, which is very dangerous in Java. It will replace memory overhead with extra processing time for the step checking of the code. This may be aright for data storage, but there already is data storage solution out there.<br /> Unless you are doing this for serialization purposes, I think that you are wasting your time.</p> http://stackoverflow.com/questions/135314/which-listobject-implementation-will-be-the-fastest-for-one-pass-write-read-t 5 Which list<Object> implementation will be the fastest for one pass write, read, then destroy? WolfmanDragon 2008-09-25T19:07:53Z 2009-07-03T20:50:31Z <p>What is the fastest list implementation (in java) in a scenario where the list will be created one element at a time then at a later point be read one element at a time? The reads will be done with an iterator and then the list will then be destroyed.<br /> I know that the Big O notation for get is O(1) and add is O(1) for an ArrayList, while LinkedList is O(n) for get and O(1) for add. Does the iterator behave with the same Big O notation?</p> http://stackoverflow.com/questions/1071800/how-to-use-jodatime-with-java-sql-timestamp 2 How to use JodaTime with java.sql.Timestamp WolfmanDragon 2009-07-01T23:24:37Z 2009-07-01T23:40:07Z <p>I Have a prepared statement</p> <pre><code>INSERT INTO mst(time) VALUES (?); </code></pre> <p>where time is of type Timestamp in a PostgreSQL database.<br /> I am inserting a Joda DateTime object, or I should say I am trying to. I can find no way to convert the DateTime ovject into a java.sql.Timestamp. I have read the Joda docs and see no reference to this.</p> <p>Thanks.</p> http://stackoverflow.com/questions/50255/does-java-need-closures/716763#716763 Comment by WolfmanDragon on Does Java need closures? WolfmanDragon 2009-11-24T18:39:05Z 2009-11-24T18:39:05Z This is the best description of a closure that I have encountered. I understand now why the new closure implementation is being limited to local only. Danger Will Robinson, Danger! http://stackoverflow.com/questions/1511082/why-cant-i-do-i-in-c-like-languages/1511122#1511122 Comment by WolfmanDragon on Why can't I do ++i++ in C-like languages? WolfmanDragon 2009-10-06T04:31:41Z 2009-10-06T04:31:41Z :) @TokenMacGuy, you made a great argument for two arg being passed into a unary operator. Logically when the postfix operator is called it has to call the prefix operator, making it a 2 argument operator. I'll take your word that the parser has different rules (reasons) for throwing the error; I have never dug through code for a C Parser. http://stackoverflow.com/questions/1511082/why-cant-i-do-i-in-c-like-languages/1511122#1511122 Comment by WolfmanDragon on Why can't I do ++i++ in C-like languages? WolfmanDragon 2009-10-02T21:37:36Z 2009-10-02T21:37:36Z @TokenMacGuy there are no parenthesis anywhere in the question. That would cause it to be a Unary operation. But alas, no parenthesis where placed. http://stackoverflow.com/questions/1510999/how-can-i-see-what-exactly-contains-a-proprieties-variable/1511027#1511027 Comment by WolfmanDragon on How can I see what exactly contains a proprieties variable? WolfmanDragon 2009-10-02T18:22:12Z 2009-10-02T18:22:12Z This should have been a separate question. Asking a question inside of a question makes it hard for others to find the answer. http://stackoverflow.com/questions/1499833/convert-a-two-byte-bit-mask-into-a-enumset/1499876#1499876 Comment by WolfmanDragon on convert a two Byte bit mask into a EnumSet WolfmanDragon 2009-09-30T20:28:38Z 2009-09-30T20:28:38Z I am pulling in the bytes as short's, so I was able to shorten the mask to int mask = (hbyte &lt;&lt; 8) | (lbyte); It works, thanks. http://stackoverflow.com/questions/1455138/java-generics-why-does-map-get-ignore-type/1455226#1455226 Comment by WolfmanDragon on Java Generics: Why Does Map.get() Ignore Type? WolfmanDragon 2009-09-21T18:05:11Z 2009-09-21T18:05:11Z @ZZ Coder, I addressed the get in the top set of code, the second set of code I was pointing out another common problem some have using generics http://stackoverflow.com/questions/1427272/for-loop-construction-and-code-complexity/1427302#1427302 Comment by WolfmanDragon on For loop construction and code complexity WolfmanDragon 2009-09-15T16:36:21Z 2009-09-15T16:36:21Z I would so love to see my old instructors faces if any of them saw these posts promoting breaks inside a loop. :) Sure we can use a hammer to drive in a screw, but maybe we should use a screwdriver instead. http://stackoverflow.com/questions/1427272/for-loop-construction-and-code-complexity/1427302#1427302 Comment by WolfmanDragon on For loop construction and code complexity WolfmanDragon 2009-09-15T13:56:39Z 2009-09-15T13:56:39Z Computer Science 101. http://stackoverflow.com/questions/1363887/does-a-foreign-key-referencing-pk-need-the-not-null-constraint/1363980#1363980 Comment by WolfmanDragon on Does a Foreign Key referencing PK need the NOT NULL constraint? WolfmanDragon 2009-09-01T18:55:23Z 2009-09-01T18:55:23Z 1:1 relationship. The Table that I am working on is a bridge table. http://stackoverflow.com/questions/1359157/might-enummap-be-considered-a-reasonable-alternative-to-java-beans/1359272#1359272 Comment by WolfmanDragon on Might EnumMap be considered a reasonable alternative to Java beans? WolfmanDragon 2009-08-31T20:40:46Z 2009-08-31T20:40:46Z @ChssPly76, edited answer to address this. http://stackoverflow.com/questions/1122328/first-name-middle-name-last-name-why-not-full-name/1122561#1122561 Comment by WolfmanDragon on First name, middle name, last name. Why not Full Name? WolfmanDragon 2009-08-06T21:17:43Z 2009-08-06T21:17:43Z So a Pope gets to change his name? I think I have heard something about that. My point exactly, how many situations do we have that we have not thought up? http://stackoverflow.com/questions/1240316/why-is-listnumber-not-a-sub-type-of-listobject/1240364#1240364 Comment by WolfmanDragon on Why is List<Number> not a sub-type of List<Object>? WolfmanDragon 2009-08-06T17:49:17Z 2009-08-06T17:49:17Z +1, this is how generics works. <b>DO</b> pick up a copy of Java Generics and Collections. Awesome book! http://stackoverflow.com/questions/1239227/dynamically-creating-destroying-logging-appenders/1239251#1239251 Comment by WolfmanDragon on dynamically creating & destroying logging appenders WolfmanDragon 2009-08-06T14:52:22Z 2009-08-06T14:52:22Z +1 Good tutorial link http://stackoverflow.com/questions/457884/what-are-the-things-java-got-wrong/474873#474873 Comment by WolfmanDragon on What are the things Java got wrong? WolfmanDragon 2009-08-06T03:02:50Z 2009-08-06T03:02:50Z I agree on the naming schema @Scott http://stackoverflow.com/questions/457884/what-are-the-things-java-got-wrong/740811#740811 Comment by WolfmanDragon on What are the things Java got wrong? WolfmanDragon 2009-08-06T03:00:18Z 2009-08-06T03:00:18Z Real time is best done in ADA or C. While Java can run real-time systems, but was not designed for them.