User Josh - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T08:42:10Z http://stackoverflow.com/feeds/user/17672 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/103564/the-performance-impact-of-using-instanceof-in-java 12 The performance impact of using instanceof in Java Josh 2008-09-19T16:41:12Z 2009-11-17T10:20:27Z <p>I am working on an application and one design approach involves extremely heavy use of the instanceof operator. While I know that OO design generally tries to avoid using instanceof, that is a different story and this question is purely related to performance. I was wondering if there is any performance impact? Is is just as fast as ==?</p> <p>For example, I have a base class with 10 subclasses. In a single function that takes the base class, I do checks for if the class is an instance of the subclass and carry out some routine. </p> <p>One of the other ways I thought of solving it was to use to use a "type id" integer primitive instead, and use a bitmask to represent categories of the subclasses, and then just do a bit mask comparison of the subclasses "type id" to a constant mask representing the category.</p> <p>Is instanceof somehow optimized by the JVM to be faster than that? I want to stick to Java but the performance of the app is critical. It would be cool if someone that has been down this road before could offer some advice. Am I nitpicking too much or focusing on the wrong thing to optimize?</p> http://stackoverflow.com/questions/128043/algorithm-for-merging-large-files 3 Algorithm for merging large files Josh 2008-09-24T16:00:15Z 2009-06-29T00:56:41Z <p>I have several log files of events (one event per line). The logs can possibly overlap. The logs are generated on separate client machines from possibly multiple time zones (but I assume I know the time zone). Each event has a timestamp that was normalized into a common time (by instantianting each log parsers calendar instance with the timezone appropriate to the log file and then using getTimeInMillis to get the UTC time). The logs are already sorted by timestamp. Multiple events can occur at the same time, but they are by no means equal events.</p> <p>These files can be relatively large, as in, 500000 events or more in a single log, so reading the entire contents of the logs into a simple Event[] is not feasible.</p> <p>What I am trying do is merge the events from each of the logs into a single log. It is kinda like a mergesort task, but each log is already sorted, I just need to bring them together. The second component is that the same event can be witnessed in each of the separate log files, and I want to "remove duplicate events" in the file output log.</p> <p>Can this be done "in place", as in, sequentially working over some small buffers of each log file? I can't simply read in all the files into an Event[], sort the list, and then remove duplicates, but so far my limited programming capabilities only enable me to see this as the solution. Is there some more sophisticated approach that I can use to do this as I read events from each of the logs concurrently?</p> http://stackoverflow.com/questions/985431/max-parallel-http-connections-in-a-browser/986547#986547 1 Answer by Josh for Max parallel http connections in a browser? Josh 2009-06-12T13:06:31Z 2009-06-12T13:06:31Z <p>The 2 concurrent requests is an intentional part of the design of many browsers. There is a standard out there that "good http clients" adhere to on purpose. Check out <a href="http://www.ietf.org/rfc/rfc2616.txt" rel="nofollow">this RFC</a> to see why.</p> http://stackoverflow.com/questions/659693/best-way-to-serialize-a-c-structure-to-be-deserialized-by-java-etc/659894#659894 0 Answer by Josh for Best way to serialize a C structure to be deserialized by Java, etc. Josh 2009-03-18T20:08:35Z 2009-03-18T20:08:35Z <p>Take a look at <a href="http://hessian.caucho.com" rel="nofollow">Resin's Hessian/Burlap services</a>. You may not want the whole service, just part of the API and an understanding of the wire protocol.</p> http://stackoverflow.com/questions/430314/g-mail-style-form-submission-on-table-data/430385#430385 0 Answer by Josh for G-mail style form submission on table data Josh 2009-01-10T02:03:18Z 2009-01-10T02:03:18Z <p>Well, you could do it in a few ways:</p> <p>1) Have all elements in the same form. Name each checkbox the same but give each checkbox a value that distinguishes the record/id/file it represents. When the browser, if it is compliant, submits the form, the CGI app should be able to see the HTTP parameters as part of the POST or GET submission. Lots of CGI apps like PHP combine same-name parameters into an array. You can always walk the param list yourself with C as well.</p> <pre><code>// Client side html &lt;table&gt; &lt;form&gt; &lt;tr&gt;&lt;td&gt;&lt;input type="checkbox" name="id" value="1"/&gt;&lt;/td&gt;&lt;td&gt;Row 1&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;&lt;input type="checkbox" name="id" value="2"/&gt;&lt;/td&gt;&lt;td&gt;Row 2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;&lt;input type="checkbox" name="id" value="3"/&gt;&lt;/td&gt;&lt;td&gt;Row 3&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;&lt;input type="checkbox" name="id" value="4"/&gt;&lt;/td&gt;&lt;td&gt;Row 4&lt;/td&gt;&lt;/tr&gt; &lt;/form&gt; &lt;/table&gt; // Server side CGI, using pseudo-code String[] ids = request.getArrayOfParametersNamed("id"); if(!empty(ids)) { for(id in ids) { DatabaseControllerModelThingWhatever.deleteById(id); } // Actually if SQL based you should use a batch statement instead of // one-at-a-time deletes like above } // Ok the rows are deleted, either print out the page, or better yet, // send a redirect so that a user-refresh does not try and re-delete // already deleted stuff and also give the user a wierd "resubmit form" warning // Done </code></pre> <p>2) Using AJAX and preferrably some type of Javascript library, when user clicks delete, perform an ajax-based submission that submits a request to delete the checked records. Simultaneously use Javascript to remove the rows from the HTML table. This means the user's page is never fully refreshed, well, sort of.</p> <pre><code> // Client side HTML is same as before, only this time there is a DELETE button with // an onclick handler. Also, add a "class" or "id" to each "tr" so we can find it // in the HTML table // Pseudo-javascript because I am lazy function onDeleteButtonClick() { // Get our ids var idElements = document.getElementsById("id"); // Submit an async AJAX request (e.g. use Jquery and send ids as URL params) ajaxedDeleteSubmission(idElements); // Delete all the rows that should not be there for(i = 0; i &lt; tablex.rows.length; i++) { // Grab the value of the "id" attribute of each table row (&lt;tr id="?"&gt;...&lt;/tr&gt;) id = tablex.rows[id].id; if(id in ids) { // Remove the row, forget how because now I just use Jquery. tablex.deleteRow(i); } } } </code></pre> http://stackoverflow.com/questions/419850/java-receive-a-multipart-http-response/424722#424722 1 Answer by Josh for Java: Receive a multipart HTTP response Josh 2009-01-08T15:42:28Z 2009-01-08T15:42:28Z <p>Try HttpClient from Apache Commons. The source code has a couple classes that show how to read in a multipart in a stream fashion.</p> http://stackoverflow.com/questions/377854/jquery-return-links-not-working-when-ajax/377928#377928 0 Answer by Josh for JQuery Return Links Not Working When Ajax Josh 2008-12-18T14:02:31Z 2008-12-18T14:02:31Z <p>For starters, don't nest script tags. Script tags with a source should be closed immediately and should be under the or and not in another .</p> http://stackoverflow.com/questions/373182/i-would-like-to-move-an-element-to-the-left-using-loop/373217#373217 2 Answer by Josh for I would like to move an element to the left using loop ... Josh 2008-12-16T23:54:38Z 2008-12-16T23:54:38Z <p>If you want it to slide, you have to timeout per iteration. Try writing a function that does a single shift, then calling this function every 10 ms. You can also look into a Javascript library like <a href="http://www.jquery.com" rel="nofollow">jQuery</a> that provides a nice API for doing the moving.</p> http://stackoverflow.com/questions/344117/how-to-get-user-roles-in-a-jsp-servlet/344223#344223 0 Answer by Josh for How to get user roles in a JSP / Servlet Josh 2008-12-05T15:41:49Z 2008-12-05T15:41:49Z <p>Read in all the possible roles, or hardcode a list. Then iterate over it running the isUserInRole and build a list of roles the user is in and then convert the list to an array.</p> <pre><code>String[] allRoles = {"1","2","3"}; HttpServletRequest request = ... (or from method argument) List userRoles = new ArrayList(allRoles.length); for(String role : allRoles) { if(request.isUserInRole(role)) { userRoles.add(role); } } // I forgot the exact syntax for list.toArray so this is prob wrong here return userRoles.toArray(String[].class); </code></pre> http://stackoverflow.com/questions/344162/set-html-elements-style-property-in-javascript/344176#344176 0 Answer by Josh for Set HTML element's style property in javascript Josh 2008-12-05T15:32:30Z 2008-12-05T15:32:30Z <p>Don't set the style object itself, set the background color property of the style object that is a property of the element.</p> <p>And yes, even though you said no, jquery and <a href="http://www.tablesorter.com" rel="nofollow">tablesorter</a> with its zebra stripe plugin can do this all for you in 3 lines of code.</p> <p>And just setting the class attribute would be better since then you have non-hard-coded control over the styling which is more organized</p> http://stackoverflow.com/questions/337414/earley-parser-generator-for-java/337637#337637 1 Answer by Josh for Earley parser generator for Java Josh 2008-12-03T16:00:43Z 2008-12-03T18:20:29Z <p>Not sure if this is an answer, but one of the scanner generators I regularly use is <a href="http://www.jflex.de" rel="nofollow">JFlex</a>, which outputs Java code.</p> <p>It works closely with <a href="http://www2.cs.tum.edu/projects/cup/manual.html" rel="nofollow">CUP</a>, which is a bit closer regarding actions.</p> http://stackoverflow.com/questions/335095/access-jstl-tag-from-code-inside-of-foreach-loop/335101#335101 0 Answer by Josh for Access JSTL tag from code inside of forEach loop Josh 2008-12-02T19:16:06Z 2008-12-02T19:16:06Z <p>If you use bean style access, this is possible. I don't remember the details of the spec but I think it is recommended to avoid relying on the generated servlet code from the JSP.</p> http://stackoverflow.com/questions/315667/determining-word-frequency-of-specific-terms/315727#315727 1 Answer by Josh for Determining Word Frequency of Specific Terms Josh 2008-11-24T22:26:59Z 2008-11-24T22:37:11Z <p>First familiarize yourself with lexical analysis and how to write a scanner generator specification. Read the introductions to using tools like YACC, Lex, Bison, or my personal favorite, JFlex. Here you define what constitutes a token. This is where you learn about how to create a tokenizer.</p> <p>Next you have what is called a seed list. The opposite of the stop list is usually referred to as the start list or limited lexicon. Lexicon would also be a good thing to learn about. Part of the app needs to load the start list into memory so it can be quickly queried. The typical way to store is a file with one word per line, then read this in at the start of the app, once, into something like a map. You might want to learn about the concept of hashing.</p> <p>From here you want to think about the basic algorithm and the data structures necessary to store the result. A distribution is easily represented as a two dimensional sparse array. Learn the basics of a sparse matrix. You don't need 6 months of linear algebra to understand what it does.</p> <p>Because you are working with larger files, I would advocate a stream-based approach. Don't read in the whole file into memory. Read it as a stream into the tokenizer that produces a stream of tokens.</p> <p>In the next part of the algorithm think about how to transform the token list into a list containing only the words you want. If you think about it, the list is in memory and can be very large, so it is better to filter out non-start-words at the start. So at the critical point where you get a new token from the tokenizer and before adding it to the token list, do a lookup in the in-memory start-words-list to see if the word is a start word. If so, keep it in the output token list. Otherwise ignore it and move to the next token until the whole file is read.</p> <p>Now you have a list of tokens only of interest. The thing is, you are not looking at other indexing metrics like position and case and context. Therefore, you really don't need a list of all tokens. You really just want a sparse matrix of distinct tokens with associated counts.</p> <p>So,first create an empty sparse matrix. Then think about the insertion of the newly found token during parsing. When it occurs, increment its count if its in the list or otherwise insert a new token with a count of 1. This time, at the end of parsing the file, you have a list of distinct tokens, each with a frequency of at least 1.</p> <p>That list is now in-mem and you can do whatever you want. Dumping it to a CSV file would be a trivial process of iterating over the entries and writing each entry per line with its count.</p> <p>For that matter, take a look at the non-commercial product called "GATE" or a commercial product like TextAnalyst or products listed at <a href="http://textanalysis.info" rel="nofollow">http://textanalysis.info</a></p> http://stackoverflow.com/questions/290326/stax-xml-formatting-in-java/290507#290507 4 Answer by Josh for StAX XML formatting in Java Josh 2008-11-14T15:50:05Z 2008-11-24T20:02:43Z <p>Not sure about another lib, or how the lib you are using works, but if its based on the jdk, but you can set the attribute:</p> <pre><code>transformer.setOutputProperty(OutputKeys.INDENT, "yes"); </code></pre> <p>To accomplish this. Or take a look at the following <a href="https://stax-utils.dev.java.net/nonav/javadoc/utils/javanet/staxutils/IndentingXMLEventWriter.html" rel="nofollow">for a stax approach</a></p> http://stackoverflow.com/questions/314300/how-to-simply-generate-post-http-request-from-java-to-do-the-file-upload/314615#314615 2 Answer by Josh for how to (simply) generate POST http request from java to do the file upload Josh 2008-11-24T16:11:40Z 2008-11-24T16:11:40Z <p>You need to learn about the chunked encoding used in newer versions of HTTP. The Apache HttpClient library is a good reference implementation to learn from.</p> http://stackoverflow.com/questions/301291/a-career-in-programming-and-now-for-something-completely-different/302549#302549 2 Answer by Josh for A career in programming - and now for something completely different? Josh 2008-11-19T16:45:49Z 2008-11-19T16:45:49Z <p>I'm presently apping to law schools. Evil, I know! But programming has begun to feel mundane, and my now 8 year old startup has sadly begun to plateau.</p> <p>There are many things you can bring to the legal profession with a technical background. A better understanding of licensing, contracts, property, etc. You've seen the tangible parts of all the abstract stuff many law students have not. I also have a pretty strong opinion on some of the absurdly non-novel patents coming out of the system.</p> http://stackoverflow.com/questions/297303/printwriter-and-printstream-never-throw-ioexceptions/297391#297391 1 Answer by Josh for PrintWriter and PrintStream never throw IOExceptions Josh 2008-11-17T23:47:46Z 2008-11-17T23:47:46Z <p>I don't really know the story, but I think it was to make Java easier for newer programmers who the designers wanted to be able to use simple stdio printing methods without the need to know what exceptions are. So in that regard it is good design (I agree with you somewhat though).</p> http://stackoverflow.com/questions/296587/light-weight-alternative-to-hibernate/296599#296599 0 Answer by Josh for Light weight alternative to Hibernate? Josh 2008-11-17T19:31:06Z 2008-11-17T19:31:06Z <p>You might find <a href="http://caucho.com/resin/doc/amber.xtp" rel="nofollow">Resin's Amber</a> to be interestnig.</p> http://stackoverflow.com/questions/291391/jquery-referencing-the-calling-objectthis-when-the-bind-click-event-is-for-a-c/291412#291412 0 Answer by Josh for jQuery: Referencing the calling object(this) when the bind/click event is for a class Josh 2008-11-14T21:04:15Z 2008-11-14T21:04:15Z <p>That is matching one select. You need to match multiple elements so you want</p> <pre><code>$("select[class='classSelect']") ... </code></pre> http://stackoverflow.com/questions/291183/jquery-syntax-error-on-post-in-opera/291195#291195 2 Answer by Josh for jQuery syntax error on POST in Opera Josh 2008-11-14T19:57:37Z 2008-11-14T19:57:37Z <p>Try putting the word delete in double quotes. I once had a problem with the keys needing to be strings because some browser wasn't picking them up.</p> http://stackoverflow.com/questions/291162/how-to-use-jquery-to-grab-the-values-of-checkboxes-and-spit-them-into-a-different/291181#291181 0 Answer by Josh for How to use jQuery to grab the values of checkboxes and spit them into a different form field Josh 2008-11-14T19:52:51Z 2008-11-14T19:52:51Z <p>First hack at it (without testing):</p> <pre><code>var serializedCheckboxes = ''; $("input type='checkbox'").each(function() { if($(this).attr("checked")) { serializedCheckboxes += $(this).attr("value") + ','; } }); $("input name='allchecks').attr("value", serializedCheckboxes); </code></pre> http://stackoverflow.com/questions/290368/editing-all-external-links-with-javascript/290445#290445 0 Answer by Josh for Editing all external links with javascript Josh 2008-11-14T15:36:41Z 2008-11-14T15:43:26Z <p>This can be accomplished pretty easily with <a href="http://www.jquery.com" rel="nofollow">Jquery</a>. You would add this to the onload:</p> <pre><code>$("div a[href^='http']").each(function() { $(this).attr("alt",altText); var oldClassAttributeValue = $(this).attr("class"); if(!oldClassAttributeValue) { $(this).attr("class",newClassAttributeValue); } }); </code></pre> <p>You could modify this to add text. Class can also be modified using the <a href="http://docs.jquery.com/CSS" rel="nofollow">css</a> function.</p> http://stackoverflow.com/questions/290394/jquery-ui-when-to-use-destroy/290467#290467 1 Answer by Josh for jQuery UI - when to use destroy Josh 2008-11-14T15:41:03Z 2008-11-14T15:41:03Z <p>Try using <a href="http://docs.jquery.com/Manipulation/remove" rel="nofollow">remove</a> . I don't think this happens automatically, but then again, I don't think you need to call the destroy method as the event handlers are destroyed for you from the remove call.</p> http://stackoverflow.com/questions/287407/how-to-stop-title-attribute-from-displaying-tooltip-temporarily/287469#287469 2 Answer by Josh for How to stop title attribute from displaying tooltip temporarily? Josh 2008-11-13T16:45:35Z 2008-11-13T16:45:35Z <p>With <a href="http://jquery.com" rel="nofollow">jquery</a> you could bind the hover function to also set the title attribute to blank onmouseover and then reset it on mouse out.</p> <pre><code>$("element#id").hover( function() { $(this).attr("title",""); $("div#popout").show(); }, function() { $("div#popout").hide(); $(this).attr("title",originalTitle); } ); </code></pre> http://stackoverflow.com/questions/287093/what-architecture-can-i-use-to-handle-a-shopping-cart-where-each-product-requries/287135#287135 2 Answer by Josh for What architecture can I use to handle a shopping cart where each product requries different attributes to be saved Josh 2008-11-13T14:52:28Z 2008-11-13T14:52:28Z <p>I would avoid making a class for each product. Each of your products are <em>instances</em> of the same Product class.</p> <p>With such variable properties, a dictionary approach (basically a map of key-value pairs, type specific or not, is a great way to retain flexibility in the design. You aren't talking about amazon.com sized product inventory, so I think it is a good enough design for the perf you need.</p> http://stackoverflow.com/questions/285593/maximize-data-minimize-code-what-are-the-limits-and-problems/285623#285623 1 Answer by Josh for Maximize data, minimize code - what are the limits and problems? Josh 2008-11-12T22:28:02Z 2008-11-12T22:28:02Z <p>Something not all too different to consider is using a heavily static and small code base around a script interpreter, like Rhino:</p> <p><a href="http://www.mozilla.org/rhino/ScriptingJava.html" rel="nofollow">http://www.mozilla.org/rhino/ScriptingJava.html</a></p> <p>That way all the logic and data can be put into reloadable scripts and the only core part of the program is the script runner and shell-like part.</p> <p>This is definitely bad for performance, I think that is a given.</p> <p>If I remember correctly, Yegge posted something similar once in his blog, so if you get to talk to him again, might ask him about that.</p> http://stackoverflow.com/questions/285421/style-html-text-input-size-to-match-its-contents/285436#285436 1 Answer by Josh for Style html text input size to match its contents Josh 2008-11-12T21:25:52Z 2008-11-12T21:25:52Z <p>The span idea isn't that bad. With a Javascript library like <a href="http://jquery.com" rel="nofollow">jquery</a>, a single 1-2 line Javascript function could dynamically replace all the appropriate <code>&lt;input&gt;</code> tags with <code>&lt;span&gt;..&lt;/span&gt;</code>. You wouldn't have to enter in any of the spans yourself.</p> <p>In really rough pseudo-javascript code with jquery it would be something like:</p> <pre><code>function replaceInputsOnSomeButtonClick() { // Find all inputs, wrap value with span tag, remove the input tag $("input").text().wrap("&lt;span&gt;").remove(); } </code></pre> http://stackoverflow.com/questions/285177/how-do-i-call-one-constructor-from-another-in-java/285187#285187 7 Answer by Josh for How do I call one constructor from another in Java? Josh 2008-11-12T20:13:22Z 2008-11-12T21:05:46Z <p>Using <code>this(args)</code>.</p> <p>The best way is from the smallest constructor to the largest.</p> <pre><code>public class Cons { public Cons() { this(madeUpArg1Value,madeUpArg2Value,madeUpArg3Value); } public Cons(int arg1, int arg2) { this(arg1,arg2, madeUpArg3Value); } public Cons(int arg1, int arg2, int arg3) { // Largest constructor that does the work this.arg1 = arg1; this.arg2 = arg2; this.arg3 = arg3; } } </code></pre> <p>You can also use a more recently advocated approach of valueOf or just "of":</p> <pre><code>public class Cons { public static Cons newCons(int arg1,...) { // This function is commonly called valueOf, like Integer.valueOf(..) // More recently called "of", like EnumSet.of(..) Cons c = new Cons(...); c.setArg1(....); return c; } } </code></pre> <p>To call a super class, use <code>super(asdf)</code>. Note that it must be the first call in the constructor.</p> http://stackoverflow.com/questions/283050/yahoo-widget-appending-image/284872#284872 0 Answer by Josh for Yahoo Widget appending Image Josh 2008-11-12T18:33:40Z 2008-11-12T18:33:40Z <p>bgEle is an image object, not a dom object. I think if you want to go this route you need to use <a href="http://www.google.com/search?q=javascript+createElement" rel="nofollow">createElement</a></p> http://stackoverflow.com/questions/281563/getting-begin-and-end-positions-with-antlr/281571#281571 0 Answer by Josh for Getting begin and end positions with AntLR Josh 2008-11-11T17:29:09Z 2008-11-11T17:29:09Z <p>Not quite following why the first position you are getting is the position of test. You should easily be able to get the character offset of the "function" token if you designed the pattern specification correctly. Can you list the relevant parts of the specification?</p> http://stackoverflow.com/questions/344117/how-to-get-user-roles-in-a-jsp-servlet/344223#344223 Comment by Josh on How to get user roles in a JSP / Servlet Josh 2008-12-16T23:58:10Z 2008-12-16T23:58:10Z When it comes to writing webapps, I always avoid any of the server-specific code. You want to maintain portability across servers like Tomcat and Resin and Jetty. So you would need to see if there is something in the spec, or a way to retrieve the list from the context. http://stackoverflow.com/questions/351314/stuck-on-a-iterator-implementation-of-a-trie/351344#351344 Comment by Josh on Stuck on a Iterator Implementation of a Trie Josh 2008-12-08T23:44:54Z 2008-12-08T23:44:54Z Good answer. As an aside, sometimes it is better to store stuff entries in reverse order, like domain names. http://stackoverflow.com/questions/346544/best-way-to-cancel-a-slow-loading-remote-js-call/346578#346578 Comment by Josh on Best way to cancel a slow loading remote JS call Josh 2008-12-06T19:18:30Z 2008-12-06T19:18:30Z Try to respond to answers with a comment, not another answer. And like the previous comment, if possible, you can modify the script to do this initialization in the onload function http://stackoverflow.com/questions/344162/set-html-elements-style-property-in-javascript/344176#344176 Comment by Josh on Set HTML element's style property in javascript Josh 2008-12-05T15:57:16Z 2008-12-05T15:57:16Z You can only set one property in a single statement if you are avoiding class. Basically extend what I suggested and set the X properties you want to modify. There are a lot of compliance issues but generally just set style.backgroundColor and style.foregroundColor http://stackoverflow.com/questions/337414/earley-parser-generator-for-java/337637#337637 Comment by Josh on Earley parser generator for Java Josh 2008-12-03T18:20:06Z 2008-12-03T18:20:06Z Sure, I added the CUP link which may be a little closer. http://stackoverflow.com/questions/318888/solving-who-owns-the-zebra-programmatically/318991#318991 Comment by Josh on Solving "Who owns the Zebra" programmatically? Josh 2008-11-26T00:09:06Z 2008-11-26T00:09:06Z Dude cyc has been in dev for decades without any type of revolutionary method. Kinda sad, would be neat to see the brute force approach win out over associative models. http://stackoverflow.com/questions/315667/determining-word-frequency-of-specific-terms/315727#315727 Comment by Josh on Determining Word Frequency of Specific Terms Josh 2008-11-25T18:22:12Z 2008-11-25T18:22:12Z The scanner could take care of character translation, if conflation is even of interest. http://stackoverflow.com/questions/310410/iterate-over-hashmap-values-in-jsffacelets Comment by Josh on Iterate over HashMap.values() in JSF+Facelets Josh 2008-11-21T22:47:45Z 2008-11-21T22:47:45Z An aside, i think you can just call: return new ArrayList&lt;Document&gt;(document.values()) http://stackoverflow.com/questions/305358/is-there-a-merged-iterator-implementation/305390#305390 Comment by Josh on is there a merged iterator implementation? Josh 2008-11-20T14:06:58Z 2008-11-20T14:06:58Z Try using the &quot;add comment&quot; to respond instead of typing a new answer. And if you think he answered it, check it as the answer. http://stackoverflow.com/questions/166841/xml-add-a-hyperlink/166853#166853 Comment by Josh on XML add <a> hyperlink Josh 2008-11-17T21:40:20Z 2008-11-17T21:40:20Z No it's &lt;slaps forehead&gt; http://stackoverflow.com/questions/291162/how-to-use-jquery-to-grab-the-values-of-checkboxes-and-spit-them-into-a-different/291251#291251 Comment by Josh on How to use jQuery to grab the values of checkboxes and spit them into a different form field Josh 2008-11-14T21:20:48Z 2008-11-14T21:20:48Z Forgot, would be wise to use ,join(stuff,',') instead of manually building it into a local string variable. http://stackoverflow.com/questions/291162/how-to-use-jquery-to-grab-the-values-of-checkboxes-and-spit-them-into-a-different Comment by Josh on How to use jQuery to grab the values of checkboxes and spit them into a different form field Josh 2008-11-14T21:06:43Z 2008-11-14T21:06:43Z Just a note, please use the &quot;add comment&quot; option to discuss an answer instead of adding a new answer. http://stackoverflow.com/questions/291162/how-to-use-jquery-to-grab-the-values-of-checkboxes-and-spit-them-into-a-different/291196#291196 Comment by Josh on How to use jQuery to grab the values of checkboxes and spit them into a different form field Josh 2008-11-14T20:06:09Z 2008-11-14T20:06:09Z Nice catch and good improvement. http://stackoverflow.com/questions/291183/jquery-syntax-error-on-post-in-opera/291195#291195 Comment by Josh on jQuery syntax error on POST in Opera Josh 2008-11-14T20:03:08Z 2008-11-14T20:03:08Z Thanks Javier, that explains it better. http://stackoverflow.com/questions/290700/how-can-you-concatenate-two-huge-files-with-very-little-spare-disk-space/290771#290771 Comment by Josh on How can you concatenate two huge files with very little spare disk space? Josh 2008-11-14T18:00:33Z 2008-11-14T18:00:33Z Got a laugh out of me! While I agree with the point, I would add that eventually the same problem repeats itself.