User Jherico - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T00:47:24Zhttp://stackoverflow.com/feeds/user/85306http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1915898/base64-decode-in-c-or-java/1916063#19160631Answer by Jherico for Base64 Decode in C# or JavaJherico2009-12-16T16:57:39Z2009-12-16T16:57:39Z<p>It sounds like you're dealing with data that is both gzipped and Base 64 encoded. Once you strip off any mime headers, you should convert the Base64 data to a byte array using something like Apache commons codec. You can then wrap the byte[] in a <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/io/ByteArrayInputStream.html" rel="nofollow"><code>ByteArrayInputStream</code></a> object and pass that to a <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/zip/GZIPInputStream.html" rel="nofollow"><code>GZipInputStream</code></a> which will let you read the uncompressed data.</p>
http://stackoverflow.com/questions/1915069/in-memory-version-of-javas-filechannel/1915971#19159711Answer by Jherico for In-memory version of Java's FileChannelJherico2009-12-16T16:43:38Z2009-12-16T16:43:38Z<p>Java 7 will allow pluggable filesystems, so you'll be able to use a memory based filesystem and keep the current FileChannel API. Short of that you're likely to have to change the API you use to Commons-VFS as Adrian suggests or use memory only structures.</p>
http://stackoverflow.com/questions/1910669/if-i-have-a-variable-locally-declared-in-a-loop-that-creats-a-thread-is-it-safe/1910720#19107200Answer by Jherico for If I have a variable locally declared in a loop that creats a thread, is it safe to use that variable in the called thread, even after the next iteration of the loop takes place?Jherico2009-12-15T22:03:05Z2009-12-15T22:03:05Z<p>This is incredibly unsafe. As soon as your thread is created and the next loop executes, then the mpthreadargs will likely be populated with data from the next iteration, not the data you expected to be passed to the thread.</p>
<p>If you don't want to use heap allocation, you need to create the variable in a scope that will outlive the thread. For instance, create an array of mpthreadargs object in a global scope sized to the number of threads you will need. If you don't know the maximum size of threads, then you pretty much have to use heap allocation.</p>
<p>Why are you averse to the use of malloc anyway?</p>
http://stackoverflow.com/questions/1909599/java-some-kind-of-a-problem/1909899#19098990Answer by Jherico for java some kind of a problemJherico2009-12-15T19:46:19Z2009-12-15T19:46:19Z<p>You've only modeled the children, not the actual roundabout. I doubt each child needs its own thread, unless that's been mandated. </p>
<p>What seems a more useful approach is to make three threads, one for each queue, and one for the roundabout. The roundabout is the worker thread and the child queues are the producer threads. Your roundabout thread would have a circular buffer of children, each with a 'time to play' decided randomly when they enter the roundabout. The thread would periodically check the 'time to play' of each child and when any of them expire it would eject them randomly into the north or south queue and raise a semaphore that a space is open.</p>
<p>The two queue threads would each wait on the semaphore and whenever it went up, the first one to acquire it would put its child into the roundabout structure with a randomly chosen 'time to play'.</p>
<p>Alternatively you could have the roundabout thread eject people into the east and west playgrounds at random and have the queuing threads responsible for emptying them. You need to ensure that each shared collection (the circular buffer and the actual list of children in each of the queue threads) is properly handled in terms of synchronization. You will only need two classes, the roundabout thread and the queue thread, but there will be two instances of the queue thread, one for north and one for south. </p>
http://stackoverflow.com/questions/1909623/unix-stat-lstat-for-java/1909826#19098261Answer by Jherico for Unix stat()/lstat() for JavaJherico2009-12-15T19:35:57Z2009-12-15T19:35:57Z<p>Looks like you've pretty much covered all the bases. When I started reading your question my first thought was JDK 7 or JNI. Without knowing anything about the change pattern on these files you might also look into some sort of persistent cache of the information in question, like an embedded DB. You could also look at some other access method besides NFS, like a custom web service that provides bulk file information from a remote host.</p>
http://stackoverflow.com/questions/1901784/in-maven2-is-there-a-way-to-scope-a-dependency-to-package-only-and-keep-it-off/1905317#19053170Answer by Jherico for In Maven2, is there a way to scope a dependency to "package only" and keep it off the test classpath?Jherico2009-12-15T05:17:31Z2009-12-15T05:17:31Z<p>Break the test classes out of the jar file into a separate jar which is only for tests, and add an exclusion to the dependency on the jar with the legacy dependencies.</p>
http://stackoverflow.com/questions/1903248/c-client-for-java-rmi-or-any-other-way-to-use-java-from-c/1905277#19052771Answer by Jherico for C++ client for Java RMI? Or any other way to use Java from C++?Jherico2009-12-15T05:03:41Z2009-12-15T05:03:41Z<p>Don't bother with RMI. If you're willing to take the step of making the Java application a separate server, have your C++ client communicate via <a href="http://en.wikipedia.org/wiki/Java%5FMessage%5FService" rel="nofollow">JMS</a> (Java Messaging Service). <a href="http://activemq.apache.org/" rel="nofollow">ActiveMQ</a> is a free JMS message broker implementation that provides embedded services as well as <a href="http://activemq.apache.org/cms/" rel="nofollow">C++ client libraries</a>. The JMS protocol is dead simple to use (at least from Java). Its probably not as flexible as doing REST, but it would likely be an easier implementation.</p>
http://stackoverflow.com/questions/1884284/merging-xml-save-files/1884625#18846251Answer by Jherico for Merging XML save filesJherico2009-12-10T22:44:45Z2009-12-10T22:44:45Z<p>This question is a little broad given we don't know the size of the files, what kind of data they store or what kind of data conflicts there could be between two files.</p>
<p>Given two files with no potentially conflicting items and no ordering requirements, you can load them both up as DOM documents, create a third output DOM document and import the children from the two source files into the root element of the third, before saving it. </p>
<p>For larger files this might be memory intensive, so you might want to use SAX or STAX processing (which is basically stream processing for XML). </p>
<p>If you can provide more details people can give you a better answer.</p>
http://stackoverflow.com/questions/1884339/how-is-c-inspired-by-c-more-than-by-java/1884600#18846001Answer by Jherico for How is C# inspired by C++ more than by Java?Jherico2009-12-10T22:40:57Z2009-12-10T22:40:57Z<p>I'll probably take flak for this, but yes, C# is by and large Microsoft's answer to Java. Its a language they can extend any which way they choose (unlike Java where they were censured for extending it in non-approved ways). It has the critical features of Java: memory management and a large system library. It is C++-like or C-like in as much as it need to be to lure C++ and C developers who aren't already fans of Java. </p>
http://stackoverflow.com/questions/1634401/what-is-a-good-community-run-venue-for-finding-programming-competitions7What is a good community run venue for finding programming competitions? Jherico2009-10-27T23:54:36Z2009-12-01T16:26:17Z
<p>The closure of a recent <a href="http://stackoverflow.com/questions/1631414/what-is-the-best-battleship-ai-closed">entertaining 'question'</a> got me wondering what would have been a better forum for the challenge presented. I know there is a <a href="http://stackoverflow.com/questions/505404/what-are-good-programming-competitions">similar question</a>, but most of the responses are pointers to infrequent and or hierarchical style challenges. I don't see any where the programming community creates both the challenges and the solutions. Is there such a venue, or is it perhaps another potential Stack Overflow offshoot?</p>
<p>Alternatively, what features would you like to see in such a site?</p>
http://stackoverflow.com/questions/1805936/need-some-help-with-xpath-expression-one-works-the-other-doesnt/1806023#18060230Answer by Jherico for Need some help with XPath expression. One works, the other doesn't...Jherico2009-11-26T22:53:12Z2009-11-26T22:53:12Z<p>I ran the following code</p>
<pre><code>public static void main(String[] args) throws SAXException, IOException, ParserConfigurationException, XPathExpressionException {
Document doc = XmlUtil.parseXmlResource("/temp.xml");
for (Node n : XPathUtil.getNodes(doc, "//span[contains(@class, 'body')]")) {
System.out.println(XPathUtil.getStringValue(doc, "//span[@class='shared-content']/a/@data"));
}
}
</code></pre>
<p>And it output 'associate'. I think your XPath is fine. What is happening instead? And can you remove the empty catch blocks so we can see if you're actually getting exceptions?</p>
<p>Note, XmlUtil and XPathUtil are my own personal convenience functions to eliminate most of the XPath and XML boilerplate code. </p>
http://stackoverflow.com/questions/1805274/eclipse-wont-believe-i-have-maven-2-2-1/1805968#18059680Answer by Jherico for Eclipse won't believe I have Maven 2.2.1Jherico2009-11-26T22:35:48Z2009-11-26T22:35:48Z<p>M2Eclipse uses an embedded maven instance, not the maven instance you have installed on your system. </p>
http://stackoverflow.com/questions/1805923/incremental-deployment-of-java-web-applications/1805945#18059450Answer by Jherico for Incremental deployment of java web applicationsJherico2009-11-26T22:28:22Z2009-11-26T22:28:22Z<p>You can have the master war deployed somewhere the running servers can access it, and instead of deploying war files to the individual servers you can use rsync and perl to determine if there are changes to any files in the master war, distribute them to the servers and execute restarts.</p>
http://stackoverflow.com/questions/1805905/using-recursively-returned-reference-to-node-in-tree-does-not-allow-changes-to-th/1805925#18059250Answer by Jherico for Using recursively returned reference to node in tree does not allow changes to the node itselfJherico2009-11-26T22:23:08Z2009-11-26T22:23:08Z<p>Unless you're assigning something to the <code>root</code> member, it will never acquire a value. You probably need some sort of outer container for your tree, similarly to how an XML document (which is also a tree) has an outer <code>Document</code> object which is distinct from the actual document root node.</p>
http://stackoverflow.com/questions/1785743/why-do-some-jvm-linux-kernels-show-each-java-thread-as-a-process-and-other-not0Why do some JVM/Linux Kernels show each java thread as a process and other not? How can I determine beforehand what the behavior will be?Jherico2009-11-23T20:31:50Z2009-11-24T07:34:50Z
<p>I have two machines, one running 2.4.18 and one running 2.4.20. Both run Java 1.5 build 13. On one machine (2.4.18), each thread shows up as a separate process in the <code>ps</code> output, and on the other the whole JVM shows up as one process. What is the distinguishing factor and can I control it?</p>
http://stackoverflow.com/questions/914013/namespacecontext-and-using-namespaces-with-xpath2NamespaceContext and using namespaces with XPathJherico2009-05-27T04:57:04Z2009-11-24T05:00:32Z
<p>Resolving an xpath that includes namepsaces in Java appears to require the use of a NamespaceContext object, mapping prefixes to namespace urls and vice versa. But I can find no mechanism for getting a NamespaceContext other than implementing it myself. This seems counter-intuitive. Is there any easy way to acquire a NamespaceContext from a document, or to create one, or failing that, to forgo prefixes altogether and specify the xpath with fully qualified names?</p>
http://stackoverflow.com/questions/1777191/how-can-i-make-smtp-authenticated-in-net/1777222#17772222Answer by Jherico for How can I make SMTP authenticated in .NET?Jherico2009-11-21T23:56:04Z2009-11-21T23:56:04Z<p>When you tried enabling ssl did you also change the port to 587, the GMail SSL SMTP port?</p>
http://stackoverflow.com/questions/1774148/hibernate-component-with-generics/1774242#17742420Answer by Jherico for Hibernate Component with GenericsJherico2009-11-21T01:53:26Z2009-11-21T01:53:26Z<p>If what you're trying to do is make many classes that correspond to many tables but use the same column names for the 'timestamp' and 'value' properties, then what you want is a 'mapped superclass' with those columns, not an embedded class. Research the <code>@MappedSuperclass</code> annotation.</p>
http://stackoverflow.com/questions/1774179/generate-hibernate-mapping-files-hbm-xml-from-pojos/1774220#17742200Answer by Jherico for Generate Hibernate Mapping Files (*.hbm.xml) from POJOS?Jherico2009-11-21T01:42:27Z2009-11-21T01:42:27Z<p>Pojo's don't have an inherent ORM mapping. Mapping files (or mapping annotations) are the 'value added' of hibernate. If you really wanted to try something like this you could annotate all your classes with @Entity and try to get hibernate to generate schema based on this.</p>
http://stackoverflow.com/questions/1772453/get-the-last-children-from-database/1772502#17725020Answer by Jherico for Get the last children from databaseJherico2009-11-20T18:46:45Z2009-11-20T19:11:34Z<pre><code>select * from a where id not in (select parent_id from table a)
</code></pre>
<p>In other words, select everything from table a where the ID of the item is not the parent ID of any other item. This will give you all the leaf nodes of the graph. </p>
<p>EDIT:<br>
Your edit is a bit confusing, and ID's aren't typically used as ordering mechanisms, but regardless, the example you give can be accomplished by this query</p>
<pre><code>SELECT MAX( id )
FROM a
WHERE id NOT IN
(SELECT parent_id
FROM a
WHERE parent_id IS NOT NULL
)
GROUP BY parent_id
</code></pre>
http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732382#17323822Answer by Jherico for RegEx match open tags except XHTML self-contained tagsJherico2009-11-13T22:47:17Z2009-11-13T22:47:17Z<p>You want the first > not preceded by a /. Look <a href="http://www.regular-expressions.info/lookaround.html" rel="nofollow">here</a> for details on how to do that. Its referred to as negative lookbehind.</p>
<p>However, a naive implementation of that will end up matching <code><bar/></foo></code> in this example document</p>
<pre><code><foo><bar/></foo>
</code></pre>
<p>Can you provide a little more information on the problem you're trying to solve? Are you iterating through tags programatically?</p>
http://stackoverflow.com/questions/861382/why-does-maven-have-such-a-bad-rep/1732320#17323203Answer by Jherico for Why does Maven have such a bad rep?Jherico2009-11-13T22:33:38Z2009-11-13T22:33:38Z<p>I'd like to counter a few of the complaints made in this forum:</p>
<blockquote>
<p>Maven is all-or-nothing. Or at least as far as I could tell from the documentation. You can't easily use maven as a drop-in replacement for ant, and gradually adopt more advanced features.</p>
</blockquote>
<p>This isn't true. Maven's big win is using it to manage your dependencies in a rational way and if you want to do that in maven and do everything else in ant, you can. Here's how:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<project name="foo" basedir="." xmlns:maven="antlib:org.apache.maven.artifact.ant" >
<maven:dependencies verbose="true" pathId="maven.classpath">
<maven:pom id="maven.pom" file="pom.xml" />
</maven:dependencies>
</project>
</code></pre>
<p>You now have a classpath object named 'maven.classpath' which contains all the maven dependencies defined in the pom file. All you need is to put the maven ant tasks jar in your ant's lib directory.</p>
<blockquote>
<p>Maven makes your build process dependent on your network connection.</p>
</blockquote>
<p>The default dependency and plugin fetching process depends on a network connection, yes, but only for the initial build (or if you change the dependencies or plugins in use). After that all the jars are locally cached. And if you want to force no-network connection, you can tell maven to use offline mode. </p>
<blockquote>
<p>It imposes rigid structure on you from the start.</p>
</blockquote>
<p>Its not clear if this is referring to the file format or the 'convention versus configuration' issue. For the latter, there are a lot of <em>invisible defaults</em> like the expected location of java source files and resources, or the compatibility of the source. But this isn't rigidity, its putting in sensible defaults for you so you don't have to define them explicitly. All the settings can be overridden pretty easily (though for a beginner it can be hard to find in the documentation how to change certain things).</p>
<p>If you're talking about the file format, well that's covered in the response to the next part...</p>
<blockquote>
<p>It's XML-based so it's as hard to read as ANT was. </p>
</blockquote>
<p>First off, I don't see how you can complain that some aspect of something 'Isn't better than ant' as a justification for it having a bad rep. Second, while it still XML, the format of the XML is <em>much</em> more defined. Further, because its so defined, its a lot easier to make a sensible thick client editor for a POM. I've seen pages long ant build scripts that jump all over the place. Any ant build script editor isn't going to make that any more palatable, just another long list of interconnected tasks presented in a slightly different way.</p>
<p>Having said that there are a few complaints that I've seen here that have or had some vailidity, the biggest being</p>
<ul>
<li>Documentation is poor/missing</li>
<li>Reproducible builds </li>
<li>Eclipse integration is bad</li>
<li>Bugs</li>
</ul>
<p>To which my response is twofold. First, Maven is a much younger tool than Ant or Make, so you have to expect that its going to take time to get to the maturity level of those applications. Second is, well if you don't like it, <em>fix it</em>. Its an open source project and using it and then complaining about something that anyone can have a hand in solving seems fairly asinine to me. Don't like the documentation? Contribute to it to make it clearer, more complete or more accessible to a beginner. </p>
<p>Reproducible builds problem breaks down into two issues, version ranges and automatic maven plugin updates. For the plugin upates, well unless you're making sure when you rebuild a project a year later that you're using the exact same JDK and exact same Ant version, well this is just the same problem with a different name. For version ranges, I recommend working on a plugin that will produce a temporary pom with locked versions for all direct and transitive dependencies and make it part of the maven release lifecycle. That way your release build poms are always exact descriptions of all the dependencies.</p>
http://stackoverflow.com/questions/1716740/creating-java-stubs-for-a-dlna-service-client-or-what-the-hell-is-a-scpd-r0Creating Java stubs for a DLNA service / client? (or, What the hell is a <scpd> root tag in an XML file?)Jherico2009-11-11T17:23:20Z2009-11-11T19:18:01Z
<p>Looking at the specifications for DLNA, most of the metadata communication appears to be soap based. However I can't find anything like a WSDL for any of the various services. Instead there is some sort of service description language that looks like this:</p>
<pre><code><scpd>
<serviceStateTable>
<stateVariable>
<Optional />
<name>TransferIDs</name>
<sendEventsAttribute>yes</sendEventsAttribute>
<dataType>string</dataType>
...
</stateVariable>
</serviceStateTable>
<actionList>
<action>
<name>Browse</name>
<argumentList>
<argument>
<name>ObjectID</name>
<direction>in</direction>
<relatedStateVariable>A_ARG_TYPE_ObjectID</relatedStateVariable>
</argument>
...
</argumentList>
</action>
...
</actionList>
</scpd>
</code></pre>
<p>I can't find any documentation on this format or any tools to generate server or client stubs for it like I can with a WSDL. At this point my options appear to be </p>
<ol>
<li>Create an XSLT to try to transform the descriptor language <em>into</em> wsdl</li>
<li>Write java code generation tools that work from the existing descriptor language</li>
<li>Write stubs and code to serialize/deserialize the soap messages by hand</li>
</ol>
<p>All three options seem pretty equally unappealing, though the first seems like the least work, not that that's saying much. Any suggestions for getting a better handle on the problem?</p>
http://stackoverflow.com/questions/1716853/is-there-a-citation-available-for-a-growing-rebellion-against-strict-typing-sys4Is there a citation available for 'a growing rebellion' against strict typing systems? [closed]Jherico2009-11-11T17:40:13Z2009-11-11T18:10:58Z
<p>The <a href="http://golang.org/doc/go%5Ffaq.html" rel="nofollow">FAQ</a> for the new <a href="http://golang.org/" rel="nofollow">Go language</a> explicitly makes this claim:</p>
<blockquote>
<p>There is a growing rebellion against cumbersome type systems like those of Java and C++, pushing people towards dynamically typed languages such as Python and JavaScript.</p>
</blockquote>
<p>Is there (non-anecdotal) data to actually support such a claim? I've always found dynamic typing sloppy and tiresome, but if I'm losing touch I at least want some warning.</p>
http://stackoverflow.com/questions/274470/creating-a-dlna-server-service-in-vb-net/1716775#17167751Answer by Jherico for Creating a DLNA server/service in VB.NETJherico2009-11-11T17:27:31Z2009-11-11T17:27:31Z<p>You can get a lot of information about the various UPNP protocols, including DLNA from the UPNP website <a href="http://www.upnp.org/resources/default.asp" rel="nofollow">here</a>. This includes a zip file will all the service definitions and a list of existing SDKs from which you can start. </p>
http://stackoverflow.com/questions/80692/java-logger-that-automatically-determines-callers-class-name/1705397#17053970Answer by Jherico for Java logger that automatically determines caller's class nameJherico2009-11-10T03:01:37Z2009-11-10T03:01:37Z<p>Actually I have a use case for this. I'm working with a legacy codebase that used its own 'logging api'. While I'm in development mode I can use this mechanism to rewrite the logging functions in the log API (which don't preserve the class names of their callers) and get the classes calling the logging api. It gives me more info and an ability to find out where a particular message is coming from without scouring the code.</p>
http://stackoverflow.com/questions/1610045/how-to-return-array-from-jni-to-java/1610062#16100623Answer by Jherico for How to return array from JNI to java?Jherico2009-10-22T21:25:31Z2009-11-06T22:18:40Z<p>If you've examined the documentation and still have questions that should be part of your initial question. In this case, the JNI function in the example creates a number of arrays. The outer array is comprised of an 'Object' array creating with the JNI function <code>NewObjectArray()</code>. From the perspective of JNI, that's all a two dimensional array is, an object array containing a number of other inner arrays. </p>
<p>The following for loop creates the inner arrays which are of type int[] using the JNI function <code>NewIntArray()</code>. If you just wanted to return a single dimensional array of ints, then the <code>NewIntArray()</code> function is what you'd use to create the return value. If you wanted to create a single dimensional array of Strings then you'd use the <code>NewObjectArray()</code> function but with a different parameter for the class. </p>
<p>Since you want to return an int array, then your code is going to look something like this:</p>
<pre><code>JNIEXPORT jintArray JNICALL Java_ArrayTest_initIntArray(JNIEnv *env, jclass cls, int size)
{
jintArray result;
result = (*env)->NewIntArray(env, size);
if (result == NULL) {
return NULL; /* out of memory error thrown */
}
int i;
// fill a temp structure to use to populate the java int array
jint fill[256];
for (i = 0; i < size; i++) {
fill[i] = 0; // put whatever logic you want to populate the values here.
}
// move from the temp structure to the java structure
(*env)->SetIntArrayRegion(env, result, 0, size, tmp);
return result;
}
</code></pre>
http://stackoverflow.com/questions/1689381/why-need-base64-in-smtp/1689550#16895501Answer by Jherico for Why need base64 in smtpJherico2009-11-06T18:52:42Z2009-11-06T19:46:41Z<p>Basic SMTP doesn't require auth at all. SMTP-AUTH is defined in <a href="http://tools.ietf.org/html/rfc4954" rel="nofollow">RFC 4954</a> but it doesn't define the specific type of auth you're using here 'auth login'. It does say.</p>
<blockquote>
<p>A server implementation MUST implement a configuration in which it does NOT permit any plaintext password mechanisms</p>
</blockquote>
<p>I can't find a specification for 'AUTH LOGIN', though googling it indicates its most likely a Microsoft exchange only feature. Further googling indicates your example is directly copied from <a href="http://www.computerperformance.co.uk/exchange2003/exchange2003%5FSMTP%5FAuth%5FLogin.htm" rel="nofollow">here</a>. </p>
<p>If you're asking why the particular example is base64 encoded, its because Microsoft has a dumb interpretation of the RFC's prohibition on cleartext. If you want to know why other SMTP auth mechanisms use base64, its because typically the data they're sending is actually binary data of some sort (like a MD5 hash of the shared secret and a token provided by the server). If this doesn't answer your question, please edit your question to include more details.</p>
http://stackoverflow.com/questions/1689554/telnet-server-backspace-delete-not-working/1689616#16896161Answer by Jherico for Telnet server -> backspace/delete not workingJherico2009-11-06T19:03:08Z2009-11-06T19:20:11Z<p>Behavior of delete and backspace are dependent on the terminal emulation of the server. Further, hitting backspace and or delete in the client may or may not send the actual backspace and delete keycodes to the server, depending on what it believes the emulation to be. I don't believe there is a terminal agnostic command for moving back one character and removing the last character. <a href="http://www.columbia.edu/kermit/backspace.html" rel="nofollow">Here's</a> a good discussion of the problem.</p>
<p>Finally, don't use the windows built in telnet client. It sucks. I prefer Van Dyke's <a href="http://www.vandyke.com/" rel="nofollow">SecureCRT</a>, but if you don't want to spend money, <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" rel="nofollow">PuTTY</a> is a popular free client.</p>
http://stackoverflow.com/questions/1366197/how-to-do-order-by-in-hibernate-mapping/1684944#16849440Answer by Jherico for how to do order-by in hibernate mappingJherico2009-11-06T01:59:42Z2009-11-06T01:59:42Z<p>The order-by clause should contain the SQL snippet you would use to order the list of items. If your ordering criteria is not located in the table T_B in your example, then you probably won't be able to accomplish what you want. On the other hand if B contains a C and its always a one to one relationship, you could define a view in the DB the aggregates the tables and gives you a column to sort on.</p>
http://stackoverflow.com/questions/1916019/java-abstract-static-workaroundComment by Jherico on Java abstract static WorkaroundJherico2009-12-16T17:02:02Z2009-12-16T17:02:02ZCan you explain why you need this function which is implemented in all the derived classes to be static? Why is a normal abstract method not sufficient? http://stackoverflow.com/questions/1909599/java-some-kind-of-a-problem/1909899#1909899Comment by Jherico on java some kind of a problemJherico2009-12-16T07:32:27Z2009-12-16T07:32:27Zwhy don't you take a shot at it and if you encounter a problem you can't figure out, come back and ask a more specific question.http://stackoverflow.com/questions/1911053/turn-a-c-string-with-null-bytes-into-a-char-arrayComment by Jherico on Turn a C string with NULL bytes into a char arrayJherico2009-12-15T23:22:16Z2009-12-15T23:22:16ZBear in mind that most of the solutions here presuppose a double null at the end of the list of files.http://stackoverflow.com/questions/1910669/if-i-have-a-variable-locally-declared-in-a-loop-that-creats-a-thread-is-it-safe/1910685#1910685Comment by Jherico on If I have a variable locally declared in a loop that creats a thread, is it safe to use that variable in the called thread, even after the next iteration of the loop takes place?Jherico2009-12-15T22:06:43Z2009-12-15T22:06:43Z@Tom: Why? The stack isn't the proper place for data that's getting passed between threads.http://stackoverflow.com/questions/1910669/if-i-have-a-variable-locally-declared-in-a-loop-that-creats-a-thread-is-it-safe/1910708#1910708Comment by Jherico on If I have a variable locally declared in a loop that creats a thread, is it safe to use that variable in the called thread, even after the next iteration of the loop takes place?Jherico2009-12-15T22:05:15Z2009-12-15T22:05:15ZI guess I just don't type fast enough. Your point about 'on most architectures' isn't really valid though, imo. 9 times out of 10 in a tight loop, by the time he accesses the passed args object, it will be populated with data from some later iteration of the loop that is spawning threads. (or random data from the stack if the loop has already been exited. http://stackoverflow.com/questions/1909599/java-some-kind-of-a-problem/1909899#1909899Comment by Jherico on java some kind of a problemJherico2009-12-15T21:44:31Z2009-12-15T21:44:31ZMore than likely, they want an application that will simply run forever. The app as you've described it has no output, so the design of the program is the point. I expect that the grading for something like this will be executing it for a few hours to ensure that it a) doens't lose any children along the way and b) doesn't enter a non-viable state like a deadlock condition. http://stackoverflow.com/questions/1884339/how-is-c-inspired-by-c-more-than-by-java/1884575#1884575Comment by Jherico on How is C# inspired by C++ more than by Java?Jherico2009-12-10T22:39:41Z2009-12-10T22:39:41ZSmalltalk is a bit of a slut, eh?http://stackoverflow.com/questions/1884339/how-is-c-inspired-by-c-more-than-by-java/1884435#1884435Comment by Jherico on How is C# inspired by C++ more than by Java?Jherico2009-12-10T22:36:19Z2009-12-10T22:36:19ZAll non-static java methods are virtual. All objects are passed by reference. Your syntax examples are nothing more than that, syntax.http://stackoverflow.com/questions/1849599/how-do-i-pass-a-reference-to-the-outer-class-to-a-method-in-an-inner-class-or/1849612#1849612Comment by Jherico on How do I pass a reference to the outer class to a method in an inner class? ( Or how do I pass "this" to an inner class? ) Jherico2009-12-04T22:07:02Z2009-12-04T22:07:02ZI've often wondered about this. http://stackoverflow.com/questions/1822136/confusion-with-equal-method/1822150#1822150Comment by Jherico on Confusion with equal methodJherico2009-11-30T23:23:38Z2009-11-30T23:23:38Zprobably because the implementation of StringBuffer might make equals comparison non-trivial without calling toString() and as such its better to make the cost of calling toString() explicit by forcing a client to call it to perform equality checks. http://stackoverflow.com/questions/1823059/declaring-arrays-similar-to-c-style-c/1823085#1823085Comment by Jherico on Declaring arrays similar to C style (C++)Jherico2009-11-30T23:20:05Z2009-11-30T23:20:05ZMaybe its a very sparse array?http://stackoverflow.com/questions/1805936/need-some-help-with-xpath-expression-one-works-the-other-doesnt/1806023#1806023Comment by Jherico on Need some help with XPath expression. One works, the other doesn't...Jherico2009-11-26T23:06:54Z2009-11-26T23:06:54ZThe built in Java 5 XML and XPath libraries.http://stackoverflow.com/questions/1805200/retrieve-java-annotation-attributeComment by Jherico on Retrieve JAVA Annotation AttributeJherico2009-11-26T22:38:31Z2009-11-26T22:38:31ZThat's not really an effective programming method. There's no advantage here to having the values set in an annotation as opposed to being set in final variables inside the code, or being set in final static variables outside the method.http://stackoverflow.com/questions/1805923/incremental-deployment-of-java-web-applicationsComment by Jherico on Incremental deployment of java web applicationsJherico2009-11-26T22:26:03Z2009-11-26T22:26:03ZReally? Two hours for 80 MB war deploys? http://stackoverflow.com/questions/1774179/generate-hibernate-mapping-files-hbm-xml-from-pojos/1774220#1774220Comment by Jherico on Generate Hibernate Mapping Files (*.hbm.xml) from POJOS?Jherico2009-11-24T20:55:33Z2009-11-24T20:55:33ZGranted, but once you've got annotations, why would you want the mapping files?