Jherico

3,441
Reputation
251 views

Registered User

Name Jherico
Member for 8 months
Seen yesterday
Website
Location WA
Age 37
Java / C++ developer

Yep, no problem, needle in the eye, happens all the time

2d
comment Need some help with XPath expression. One works, the other doesn’t…
The built in Java 5 XML and XPath libraries.
2d
answered Need some help with XPath expression. One works, the other doesn’t…
2d
comment Retrieve JAVA Annotation Attribute
That'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.
2d
answered Eclipse won’t believe I have Maven 2.2.1
2d
answered Incremental deployment of java web applications
2d
comment Incremental deployment of java web applications
Really? Two hours for 80 MB war deploys?
2d
answered Using recursively returned reference to node in tree does not allow changes to the node itself
Nov
25
awarded  Popular Question
Nov
24
comment Generate Hibernate Mapping Files (*.hbm.xml) from POJOS?
Granted, but once you've got annotations, why would you want the mapping files?
Nov
24
accepted Generate Hibernate Mapping Files (*.hbm.xml) from POJOS?
Nov
24
comment Does a published endpoint have a limited number of connections? [Java 1.6.0_16]
What is the enclosing OS?
Nov
23
comment how do i seed a random class to avoid getting duplicate random values
xkcd.com/221
Nov
23
asked Why 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?
Nov
22
comment How can I make SMTP authenticated in .NET?
Maybe you should include a longer code sample?
Nov
22
comment In java to remove an element in an array can you set it to null?
which is why a linked list is better for this particular case.
Nov
22
comment generate javadoc comments in eclipse
Maybe you need to install Eclipse for Java Developers or Eclipse for J2EE developers.
Nov
21
revised How can I make SMTP authenticated in .NET?
title and tags
Nov
21
answered How can I make SMTP authenticated in .NET?
Nov
21
comment Hibernate Component with Generics
You can use mapped superclasses for embeddables as well.
Nov
21
answered Hibernate Component with Generics
Nov
21
revised Running a Java Class from a Jar thru a command line
tags
Nov
21
answered Generate Hibernate Mapping Files (*.hbm.xml) from POJOS?
Nov
21
comment Is the order of initialization guaranteed by the standard?
You can however, still refer to previously initialized members, as discussed here: parashift.com/c++-faq-lite/ctors.html#faq-10.7/…
Nov
20
revised Get the last children from database
added 346 characters in body
Nov
20
answered Get the last children from database
Nov
19
comment OpenGL 3D Selection Question
what do you mean you can only register a click on the part of the robots head that is facing you? How would you click on something that isn't facing you (i.e. wouldn't it be obscured).
Nov
19
comment Before and After Suite execution hook in jUnit 4.x
This worked perfectly for me once I went into the maven-surefire-plugin and created an includes listing that pointed to the suite I wanted to run.
Nov
14
comment How to validate Java logging properties files?
Can you insist on the XML Log4j configuration format?
Nov
13
comment RegEx match open tags except XHTML self-contained tags
Oh, and XML parsers are supposed to mask implementation details like whether the document contained <foo/> or <foo></foo>, which are functionally equivalent.
Nov
13
answered RegEx match open tags except XHTML self-contained tags
Nov
13
comment RegEx match open tags except XHTML self-contained tags
Using an XML parser may be overkill depending on the situation. If I wanted to run modify thousands of XML documents in some way that was implementable with regex I'd probably go with that over parsing them using DOM or SAX
Nov
13
answered Why does Maven have such a bad rep?
Nov
13
comment Why does Maven have such a bad rep?
Maven is all-or-nothing. This isn't true. You can use maven for dependency management and nothing else if you want. All it takes is one working example of how to use the Maven ant tasks to read your pom file and generate an ANT classpath containing all your dependencies.
Nov
12
comment Is DocumentBuilder.parse() thread safe?
Creating instances per thread means you have to be concerned about long running apps leaving that memory in use forever.
Nov
12
revised Is DocumentBuilder.parse() thread safe?
grammar
Nov
12
comment What is a good community run venue for finding programming competitions?
I was under the impression that Top Coder competitions were designed by the people in charge of Top Coder, not the community as a whole. Is there something I'm not aware of?
Nov
11
comment Creating Java stubs for a DLNA service / client? (or, What the hell is a <scpd> root tag in an XML file?)
<...crickets...>
Nov
11
comment Quantum Tic Tac Toe AI
That just makes the problem more complicated, because if you create a learning tic-tac-toe machine, you're obliged to give it voice synthesis and the ability to talk like WOPR from WarGames
Nov
11
revised Creating Java stubs for a DLNA service / client? (or, What the hell is a <scpd> root tag in an XML file?)
edited title
Nov
11
comment Can a java class member variable decleared as `native`?
Seriously, Its a pretty straightforward question.
Nov
11
revised Can a java class member variable decleared as `native`?
added 60 characters in body; edited tags; edited title
Nov
11
comment Is there a citation available for ‘a growing rebellion’ against strict typing systems?
Thanks Jed / Kaizer, much better question format than I originally came up with and still gets the same point across
Nov
11
comment Is there a citation available for ‘a growing rebellion’ against strict typing systems?
I've switched it to a community wiki. And accusing people of rep whoring is kind of weak since there's naturally going to be a flood of discussion when a new language is announced by a company like Google.
Nov
11
revised Is there a citation available for ‘a growing rebellion’ against strict typing systems?
removing subjective tag, making community wiki
Nov
11
comment Is there a citation available for ‘a growing rebellion’ against strict typing systems?
The question itself doesn't actually relate specifically to Go. I'm curious about an assertion made in a FAQ and whether it has any actual basis in reality.
Nov
11
asked Is there a citation available for ‘a growing rebellion’ against strict typing systems?
Nov
11
answered Creating a DLNA server/service in VB.NET
Nov
11
asked Creating Java stubs for a DLNA service / client? (or, What the hell is a <scpd> root tag in an XML file?)
Nov
10
answered Java logger that automatically determines caller’s class name
Nov
9
revised Java performance in numerical algorithms
edited tags