User ykaganovich - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T10:45:33Zhttp://stackoverflow.com/feeds/user/10026http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1768256/java-class-file-and-java-lang-class/1768542#17685421Answer by ykaganovich for Java: .class file and java.lang.Classykaganovich2009-11-20T05:37:41Z2009-11-20T05:37:41Z<p>I think the OP is trying to identify a file on the classpath in which the class file exists. See <a href="http://asolntsev.blogspot.com/2008/03/how-to-find-which-jar-file-contains.html" rel="nofollow">http://asolntsev.blogspot.com/2008/03/how-to-find-which-jar-file-contains.html</a></p>
http://stackoverflow.com/questions/1766189/please-how-can-i-modify-this-code/1766194#17661940Answer by ykaganovich for please, how can i modify this code?ykaganovich2009-11-19T20:10:58Z2009-11-19T20:10:58Z<p><a href="http://www.exforsys.com/tutorials/xml/xml-document-type-definitions-dtd.html" rel="nofollow">http://www.exforsys.com/tutorials/xml/xml-document-type-definitions-dtd.html</a></p>
http://stackoverflow.com/questions/1750970/is-nested-xmlhttprequests-with-multiple-closures-a-good-idea/1751090#17510901Answer by ykaganovich for Is nested XMLHttpRequests with multiple closures a good idea?ykaganovich2009-11-17T19:15:18Z2009-11-17T19:15:18Z<p>When this gets more complicated, you might consider a state machine. <a href="http://www.ibm.com/developerworks/library/wa-finitemach1/" rel="nofollow">http://www.ibm.com/developerworks/library/wa-finitemach1/</a></p>
http://stackoverflow.com/questions/1739971/what-free-or-cheap-tools-i-can-use-for-website-creation-business/1740014#17400141Answer by ykaganovich for What free or cheap tools I can use for website creation business?ykaganovich2009-11-16T04:15:19Z2009-11-16T04:15:19Z<p><a href="http://mono-project.com/Main%5FPage" rel="nofollow">Mono</a> has <a href="http://www.mono-project.com/ASP.NET" rel="nofollow">ASP.NET support</a></p>
http://stackoverflow.com/questions/1739955/how-do-i-submit-a-form-to-javascript-without-the-submit-button/1740000#17400001Answer by ykaganovich for How do I submit a form to JavaScript without the submit button?ykaganovich2009-11-16T04:10:54Z2009-11-16T04:10:54Z<p>I wonder if the OP is missing the basic information that the browser automatically submits the form when you press <code>Enter</code> in any text field inside the form. That's why you can use the onsubmit handler if you want to invoke a method in response to the <code>Enter</code> key, per Marius' and Wogan's answers.</p>
http://stackoverflow.com/questions/1724347/java-library-and-class-path-problems/1724503#17245032Answer by ykaganovich for Java Library and Class Path Problemsykaganovich2009-11-12T18:51:52Z2009-11-12T18:51:52Z<p>You need to separate Java concepts from IDE-specific concepts. I recommend going through a simple java tutorial using a text editor and command shell before jumping into NetBeans.</p>
<p>Library and Project are NetBeans specific terms. I'm not a NetBeans user, so I won't try to guess what they are although I have some guesses, but I will say that their configuration will most likely affect compile-time environment.</p>
<p>A Classpath is a core java concept. You must provide the paths to all your classes (or jars that contain those classes) to the <code>java</code> command at runtime in order for it to be able to load those classes. (You also need to do the same to the <code>javac</code> command at compile-time for the classes that you're referencing but not compiling at the moment).</p>
<p><strong>Any time</strong> you see <code>java.lang.ClassNotFoundException</code>, it means that some class that was present on the classpath when you compiled your code is missing from the classpath when you launched the runtime.</p>
http://stackoverflow.com/questions/1703951/interoperate-between-c-and-java-using-web-services-without-a-java-ee-application/1704041#17040411Answer by ykaganovich for Interoperate between C# and Java using web services without a Java EE application server?ykaganovich2009-11-09T21:40:40Z2009-11-09T21:40:40Z<p>I don't quite understand your statement "the only Java application server supported on our infrastructure is WebSphere 6.1" with respect to the question about how to run other stuff. But no, you don't need a full App Server just to expose a web service.</p>
<p>I think this is a good starting point for you: <a href="http://docs.codehaus.org/display/JETTY/J2se6HttpServerSPI" rel="nofollow">http://docs.codehaus.org/display/JETTY/J2se6HttpServerSPI</a></p>
http://stackoverflow.com/questions/1615190/ruby-declaring-instance-variables-iterating-over-a-hash/1615783#16157831Answer by ykaganovich for [Ruby] Declaring instance variables iterating over a hash!!ykaganovich2009-10-23T20:44:36Z2009-10-23T20:44:36Z<p><a href="http://facets.rubyforge.org/apidoc/api/more/classes/OpenStructable.html" rel="nofollow">http://facets.rubyforge.org/apidoc/api/more/classes/OpenStructable.html</a></p>
<blockquote>
<p>OpensStructable is a mixin module
which can provide OpenStruct behavior
to any class or object. OpenStructable
allows extention of data objects with
arbitrary attributes.</p>
</blockquote>
http://stackoverflow.com/questions/1605377/how-to-read-xml-property-value-using-java/1605411#16054113Answer by ykaganovich for How to read XML Property value using Javaykaganovich2009-10-22T06:44:39Z2009-10-22T06:44:39Z<p>Assuming Hibernate libraries are available, and the properties file is stored in config.xml:</p>
<pre><code>new Configuration().addFile("config.xml").getProperty("connection.url")
</code></pre>
http://stackoverflow.com/questions/1564147/how-to-open-an-email-client-and-automatically-attach-file-in-java/1564319#15643190Answer by ykaganovich for How to open an email client and automatically attach file in javaykaganovich2009-10-14T05:04:42Z2009-10-14T05:04:42Z<p>It depends on particular email clients, but <code>&attachment</code> parameter should work for at least some versions of Outlook.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa767737%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa767737%28VS.85%29.aspx</a></p>
http://stackoverflow.com/questions/1535293/do-something-special-first-time-around-in-a-ruby-loop/1535307#15353076Answer by ykaganovich for Do something special first time around in a Ruby loopykaganovich2009-10-08T02:27:04Z2009-10-08T02:27:04Z<pre><code>items.each_with_index do |x, i|
do_something if i==0
do_rest
end
</code></pre>
http://stackoverflow.com/questions/1523811/advice-needed-stay-with-java-team-or-move-to-c-team/1523850#15238508Answer by ykaganovich for Advice needed: stay with Java team or move to C++ team?ykaganovich2009-10-06T06:10:51Z2009-10-06T06:59:13Z<p>First of all, either choice is perfectly valid. Specializing in Java won't hurt your career, and learning C++ won't make you forget Java.</p>
<p>Being on a money-losing team might cost you a job, but so might being a junior C++ developer with an intermediate developer's salary.</p>
<p>I think the biggest deciding factor for you should be what kind of domain you find interesting. If you like programming web or b2b applications, stick with Java. If you're interested in devices, audio/video processing, gaming etc., then switch to C++.</p>
http://stackoverflow.com/questions/1522143/which-is-the-standard-java-crypto-api/1522652#15226522Answer by ykaganovich for Which is the standard Java crypto API?ykaganovich2009-10-05T22:03:30Z2009-10-05T22:03:30Z<p>To answer the question asked:</p>
<p>javax.crypto deals with low level crypto: encryption, decryption, and hashing. It's where the Cipher class is defined.</p>
<p>java.security deals with everything else: key management, certtificate management, and signatures.</p>
<p>Those interfaces abstract JCE providers, which implement specific algorithms. Sun provides some, and BouncyCastle is another good one.</p>
<p>If you are planning some custom ciphers for which there is not already an implementation, you'll be implementing your own JCE provider, and specifically extending <code>javax.crypto.CipherSpi</code>.</p>
<p>It's not difficult, but you have to <a href="http://java.sun.com/javase/6/docs/technotes/guides/security/crypto/HowToImplAProvider.html" rel="nofollow">read through the documentation on how to do that</a>. In order for the JCE to allow your provider, you will have to apply to Sun for a certificate, basically faxing them a signed statement that you are aware of the US export restrictions on crypto libraries.</p>
http://stackoverflow.com/questions/643142/what-is-happening-to-such-distributed-in-memory-cloud-databases-as-hazelcast-and/1484961#14849610Answer by ykaganovich for What is happening to such distributed in-memory cloud databases as Hazelcast and Scalris if there is more Data to store than RAM in the cluster? ykaganovich2009-09-28T00:55:36Z2009-09-28T00:55:36Z<p>I don't know what the state of affairs was when the accepted by Martin K. was published, but Scalaris FAQ now claims that this is supported.</p>
<p><a href="http://code.google.com/p/scalaris/wiki/FAQ#Can%5FI%5Fstore%5Fmore%5Fdata%5Fin%5FScalaris%5Fthan%5Fram+swapspace%5Fis%5Favailabl" rel="nofollow">Can I store more data in Scalaris than ram+swapspace is available in the cluster?</a></p>
<blockquote>
<p>Yes. We have several database
backends, e.g. src/db_ets.erl (ets)
and src/db_tcerl (tokyocabinet). The
former uses the main memory for
storing data, while the latter uses
tokyocabinet for storing data on disk.
With tokycoabinet, only your local
disks should limit the total size of
your database. Note however, that this
still does not provide persistency.</p>
<p>For instructions on switching the
database backend to tokyocabinet see
<a href="http://code.google.com/p/scalaris/wiki/Tokyocabinet" rel="nofollow">Tokyocabinet</a>.</p>
</blockquote>
http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1480225#14802253Answer by ykaganovich for What's the worst security hole you've ever seen?ykaganovich2009-09-26T01:58:03Z2009-09-26T01:58:03Z<p><a href="http://www.metasploit.com/users/hdm/tools/debian-openssl/" rel="nofollow">http://www.metasploit.com/users/hdm/tools/debian-openssl/</a></p>
http://stackoverflow.com/questions/1468794/java-jtree-valuechanged-event-before-mouseevent/1470013#14700130Answer by ykaganovich for Java JTree valueChanged Event before MouseEventykaganovich2009-09-24T06:12:17Z2009-09-24T20:13:42Z<p>Don't do it that way, override <code>JTree.fireValueChanged</code> instead.</p>
<p>Try something like this (untested):</p>
<pre><code>class ChainedSelectionEvent extends TreeSelectionEvent {
ChainedSelectionEvent(TreeSelectionEvent e) {
super(e.newSource, e.paths, e.areNew, e.oldLeadSelectionPath, e.newLeadSelectionPath);
}
}
protected void fireValueChanged(TreeSelectionEvent e) {
if(chained) { // figure out separately
super.fireValueChanged(new ChainedSelectionEvent(e));
} else {
super.fireValueChanged(e);
}
}
</code></pre>
<p>Then check instanceof ChainedSelectionEvent in your listener</p>
<p><strong>EDIT</strong></p>
<p>Actually, I think the right way to do this is to implement your own TreeSelectionModel, and override fireValueChanged there instead. Assuming <code>setSelectionPath(s)</code> methods imply a new selection, and <code>add/removeSelectionPath(s)</code> imply chaining, you could distinguish between the two cleanly. I don't like listening to either keyboard or mouse events explicitly, because there's more than one way to change a selection (e.g. if someone is holding down SHIFT and hitting a down-arrow, you won't get a mouse event).</p>
http://stackoverflow.com/questions/1408080/mouselistener-on-jframe/1408255#14082554Answer by ykaganovich for MouseListener on JFrameykaganovich2009-09-10T23:31:37Z2009-09-10T23:31:37Z<p>You can get all events and check if their source is a component in the JFrame.</p>
<p>See <a href="http://java.sun.com/javase/6/docs/api/java/awt/Toolkit.html#addAWTEventListener%28java.awt.event.AWTEventListener,%20long%29" rel="nofollow">Toolkit.addAWTEventListener</a></p>
http://stackoverflow.com/questions/1406412/run-java-application-as-a-service/1406880#14068800Answer by ykaganovich for Run Java Application as a Serviceykaganovich2009-09-10T18:16:58Z2009-09-10T18:16:58Z<p>There's an LGPL clone of the Java Service Wrapper: <a href="http://yajsw.sourceforge.net" rel="nofollow">http://yajsw.sourceforge.net</a></p>
<p>BTW, IANAL, but I suspect that JSW people are spreading FUD, and their software can be used to service-enable commercial applications under GPL license, just like one can gzip a commercial app for redistribution. I could be completely wrong about this, though :)</p>
http://stackoverflow.com/questions/1406616/is-java-guaranteed-to-inline-string-constants-if-they-can-be-determined-at-compil/1406823#14068230Answer by ykaganovich for Is Java guaranteed to inline string constants if they can be determined at compile time.ykaganovich2009-09-10T18:05:57Z2009-09-10T18:05:57Z<p>I suspect, but don't know for sure, that this will work, but it doesn't sound like a good idea.</p>
<p>The "normal" ways to do this are:</p>
<ol>
<li>Put the constants in a package that's shared between the client and the server. Presumably, there is such a package, because that's where the interfaces go.</li>
<li>If there's no such package, create 2 classes with the shared constants: one for the server and one for the client. </li>
</ol>
http://stackoverflow.com/questions/1338127/java-framework-tool-for-simple-distributed-computing-problem/1338259#13382590Answer by ykaganovich for Java framework/tool for simple distributed computing problemykaganovich2009-08-27T00:19:38Z2009-09-10T17:29:39Z<p>Google says there is a Java port of BOINC here: <a href="http://boincoid.sf.net" rel="nofollow">http://boincoid.sf.net</a></p>
<p>It's mostly targeting about android :-/ but apparently all but the GUI can run on a regular VM.</p>
http://stackoverflow.com/questions/1396784/should-we-store-jre-in-cvs-svn/1396861#13968610Answer by ykaganovich for Should we store JRE in CVS/SVN?ykaganovich2009-09-08T23:24:03Z2009-09-08T23:24:03Z<p>I see nothing wrong with storing the JRE in CVS.</p>
<p>However, it's not so important whether you do or not as long as your script can pull it as part of the build. For example, if you want to host a downloadable jre.zip on an HTTP server, or point to it in a Maven repo, that's just as good.</p>
http://stackoverflow.com/questions/1396749/parsing-scanning-tokenizing-raw-xml/1396776#13967762Answer by ykaganovich for parsing/scanning/tokenizing "raw XML"ykaganovich2009-09-08T22:58:46Z2009-09-08T23:09:37Z<p>I think you might have to generate your own grammar. </p>
<p>Some links:</p>
<ul>
<li><a href="http://www.antlr.org/wiki/display/ANTLR3/Parsing+XML" rel="nofollow">Parsing XML with ANTLR Tutorial</a></li>
<li><a href="http://javadude.com/tools/antxr/index.html" rel="nofollow">ANTXR</a></li>
<li><a href="http://xpa.sourceforge.net/" rel="nofollow">XPA</a></li>
<li><a href="http://www.google.com/search?q=antlr+xml" rel="nofollow">http://www.google.com/search?q=antlr+xml</a></li>
</ul>
http://stackoverflow.com/questions/1395103/best-java-approach-for-stream-filtering-in-xml/1395201#13952011Answer by ykaganovich for best java approach for stream filtering in XML?ykaganovich2009-09-08T17:24:10Z2009-09-08T18:07:34Z<p>StAX should work well for you. Piping input to output is super easy; you just write the XMLEvent you get from the XMLEventReader to the XMLEventWriter.</p>
<pre><code>XMLEventFactory EVT_FACTORY;
XMLEventReader reader;
XMLEventWriter writer;
QName numberQName = new QName("number");
QName factorsQName = new QName("factors");
while(reader.hasNext()) {
XMLEvent e = reader.nextEvent();
if(e.isAttribute() && ((Attribute)e).getName().equals(numberQName)) {
String v = ((Attribute)e).getValue();
String factors = factorize(Integer.parseInt(v));
XMLEvent factorsAttr = EVT_FACTORY.createAttribute(factorsQName, factors);
writer.add(factorsAttr);
}
// pass through
writers.add(e);
}
</code></pre>
http://stackoverflow.com/questions/1355810/how-is-an-instance-initializer-different-from-a-constructor/1355839#13558390Answer by ykaganovich for How is an instance initializer different from a constructor?ykaganovich2009-08-31T04:49:43Z2009-08-31T17:43:36Z<p>In terms of object lifecycle, there is no difference. Both are invoked at construction, time, and logically the initializer block can be considered part of construction.</p>
<p>Semantically, an initializer is a nice tool to have for several reasons:</p>
<p>the initializer can improve code readability by keeping the initialization logic next to the variable being initialized:</p>
<pre><code> public class Universe {
public int theAnswer;
{
int SIX = 6;
int NINE = 7;
theAnswer = SIX * NINE;
}
// a bunch of other vars
}
</code></pre>
<p>vs</p>
<pre><code> public class Universe {
public int theAnswer;
// a bunch of other vars
public Universe() {
int SIX = 6;
int NINE = 7;
theAnswer = SIX * NINE;
// other constructor logic
}
}
</code></pre>
<p>Initializers are invoked regardless
of which constructor is used.</p>
<p>Initializers can be used in anonymous
inner classes, where constructors
can't.</p>
http://stackoverflow.com/questions/1338127/java-framework-tool-for-simple-distributed-computing-problem/1338180#13381801Answer by ykaganovich for Java framework/tool for simple distributed computing problemykaganovich2009-08-26T23:51:33Z2009-08-26T23:51:33Z<ul>
<li><a href="http://hadoop.apache.org/" rel="nofollow">http://hadoop.apache.org/</a></li>
<li><a href="http://www.gridgain.com/" rel="nofollow">http://www.gridgain.com/</a></li>
<li><a href="http://www.oracle.com/technology/products/coherence/index.html" rel="nofollow">http://www.oracle.com/technology/products/coherence/index.html</a></li>
</ul>
http://stackoverflow.com/questions/1202448/how-to-gather-profiling-information-for-a-java-1-4-application/1202876#12028761Answer by ykaganovich for How to gather profiling information for a Java 1.4 application?ykaganovich2009-07-29T20:35:26Z2009-07-29T20:35:26Z<p>First things first: did you analyze the thread dump when your application hangs? A lot of the time that has enough information to troubleshoot a hanging java app...</p>
<p><code>Ctrl-Break</code> in the process window on Windows, or <code>kill -QUIT [pid]</code> on Linux.</p>
http://stackoverflow.com/questions/1197729/retrieve-post-parameters-only-java/1197797#11977973Answer by ykaganovich for Retrieve POST parameters only (Java)ykaganovich2009-07-29T02:37:49Z2009-07-29T18:06:53Z<p>I guess one way might be to manually parse <code>HttpServletRequest.getQueryString()</code> and check that a parameter is not present in it.</p>
<p>A naive implementation (ignoring url-escaped key values) would go something like this (untested) :</p>
<pre><code>public boolean isInQuery(HttpServletRequest request, String key) {
String query = request.getQueryString();
String[] nameValuePairs = query.split("&");
for(String nameValuePair: nameValuePairs) {
if(nameValuePair.startsWith(key + "=")) {
return true;
}
}
return false;
}
</code></pre>
http://stackoverflow.com/questions/1174271/what-happens-when-open-source-software-has-two-or-more-licenses/1174452#11744525Answer by ykaganovich for What happens when open source software has two or more licenses?ykaganovich2009-07-23T20:56:16Z2009-07-23T20:56:16Z<p>A license is what gives you rights to use a library. Dual licenses means that you can pick either license.</p>
<p>The reason you release something under dual licensing is so that people can use either of the licenses when they use your software. E.g. many libraries are released under GPL as well as a commercial license, so that commercial applications can pay for using the library, while opensource projects can use them freely.</p>
<p>This is different than having different parts of the application being covered by different licenses, which also happens a lot when different parties have the copyright to different parts of the application. For example, a commercial application might use an LGPL library; in that case, the library will be included and redistributed under the original LGPL license.</p>
<p>In case of JQuery, I honestly don't know what they're thinking, because MIT license is <a href="http://www.gnu.org/philosophy/license-list.html#GPLCompatibleLicenses" rel="nofollow">compatible with GPL</a>, which means <a href="http://www.gnu.org/licenses/gpl-faq.html#WhatDoesCompatMean" rel="nofollow">you can always use a library that's licensed under MIT and reditribute the product under GPL</a>. So I don't know why they felt the need to also release it under GPL explicitly.</p>
http://stackoverflow.com/questions/1161607/xhtml-not-displaying-in-ie6-7-8-or-ff3-5-1-but-ok-in-firefox-3-0-1/1161645#11616451Answer by ykaganovich for XHTML Not Displaying in IE6, 7, 8 or FF3.5.1 - but ok in Firefox 3.0.1.ykaganovich2009-07-21T20:43:36Z2009-07-21T20:43:36Z<p>Check that you're reporting correct content type in the HTTP response. Should be <code>application/xhtml+xml</code></p>
http://stackoverflow.com/questions/1142065/what-are-the-arguments-against-mono-does-the-microsoft-community-promise-change/1155242#11552422Answer by ykaganovich for What are the arguments against Mono. Does the Microsoft Community Promise change anything?ykaganovich2009-07-20T18:50:46Z2009-07-20T18:50:46Z<p>The argument against Mono is based on a notion that using C# will make your code fall under Microsoft patents, but using something else will avoid Microsoft patents. In my IANAL opinion, there's no reason to believe that avoiding C# will decrease the likelihood of infringement. </p>
<p>Therefore, it seems to me that using Mono is safer than not using it, since at least C# is explicitly covered by the Community Promise. Any other alternative technology is covered by nothing, and therefore is more at risk of liability.</p>
http://stackoverflow.com/questions/1772905/disabling-the-close-x-in-a-joptionpaneComment by ykaganovich on Disabling the close x in a JOptionPaneykaganovich2009-11-20T21:12:50Z2009-11-20T21:12:50ZWhy do you want to do that? JOptionPane should normally have a "Cancel" or "No" button. You should make hitting the close button behave consistently with those.http://stackoverflow.com/questions/1761346/parsing-notepad-using-javaComment by ykaganovich on parsing notepad using javaykaganovich2009-11-19T06:49:16Z2009-11-19T06:49:16Zwhat's a notepad file?http://stackoverflow.com/questions/1719581/how-can-java-inline-over-virtual-function-boundaries/1719731#1719731Comment by ykaganovich on How can Java inline over virtual function boundaries?ykaganovich2009-11-12T03:59:22Z2009-11-12T03:59:22Z+1 for answering the actual questionhttp://stackoverflow.com/questions/1703951/interoperate-between-c-and-java-using-web-services-without-a-java-ee-application/1704041#1704041Comment by ykaganovich on Interoperate between C# and Java using web services without a Java EE application server?ykaganovich2009-11-11T08:41:55Z2009-11-11T08:41:55Z"This extension has been written not only to workaround the internal Sun HttpServer problem (<a href="http://forums.java.net/jive/message.jspa?messageID=130831" rel="nofollow">forums.java.net/jive/message.jspa?messageID=130831/…</a>) but also to allow tight integration of JAX-WS web services and servlets." Probably not really needed. But it's a single link that points to an embeddable servlet container and JAX-WS implementation you can use. I'm lazy :)http://stackoverflow.com/questions/430001/xml-diff-and-merge/430067#430067Comment by ykaganovich on XML Diff and Mergeykaganovich2009-11-09T18:22:26Z2009-11-09T18:22:26ZGive a man a fish and you feed him for a day; teach a man to fish and you feed him for a lifetime.http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/1445447#1445447Comment by ykaganovich on Worst UI You've Ever Usedykaganovich2009-10-30T23:44:04Z2009-10-30T23:44:04ZPostgreSQL installer FTWhttp://stackoverflow.com/questions/1583762/inexpensive-cdn-with-origin-pull-servicesComment by ykaganovich on Inexpensive CDN with Origin/Pull services?ykaganovich2009-10-24T06:10:52Z2009-10-24T06:10:52ZMove to ServerFault?http://stackoverflow.com/questions/1615190/ruby-declaring-instance-variables-iterating-over-a-hash/1615355#1615355Comment by ykaganovich on [Ruby] Declaring instance variables iterating over a hash!!ykaganovich2009-10-23T20:47:21Z2009-10-23T20:47:21ZDon't comment in answers, that's what comments are forhttp://stackoverflow.com/questions/1603513/ruby-sanitize-code-why-is-sanitizedComment by ykaganovich on Ruby Sanitize Code ... why is & sanitized ...ykaganovich2009-10-21T20:59:29Z2009-10-21T20:59:29ZSeems like a strange use case... do you sanitize things variable number of times? Otherwise, what's wrong with <code>&amp;amp;</code> if you know you will reverse it when you need it?http://stackoverflow.com/questions/1523811/advice-needed-stay-with-java-team-or-move-to-c-team/1523850#1523850Comment by ykaganovich on Advice needed: stay with Java team or move to C++ team?ykaganovich2009-10-12T23:31:28Z2009-10-12T23:31:28ZI don't mean that he should forever stay one language. I mean that as an intermediate developer, staying with Java and mastering programming skills is a reasonable course of action.http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1471831#1471831Comment by ykaganovich on What's the worst security hole you've ever seen?ykaganovich2009-09-25T03:11:19Z2009-09-25T03:11:19Z<a href="http://johnny.ihackstuff.com/ghdb/" rel="nofollow">johnny.ihackstuff.com/ghdb</a>http://stackoverflow.com/questions/1468794/java-jtree-valuechanged-event-before-mouseevent/1470013#1470013Comment by ykaganovich on Java JTree valueChanged Event before MouseEventykaganovich2009-09-24T18:52:40Z2009-09-24T18:52:40ZI think this should work. fireValueChanged will be called by JTree in response to selections. I don't think you should ever have to deal with MouseEvents explicitly.http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1469933#1469933Comment by ykaganovich on What's the worst security hole you've ever seen?ykaganovich2009-09-24T06:03:09Z2009-09-24T06:03:09Zso what? Methinks the secuirty hole was not what you thinkhttp://stackoverflow.com/questions/1396749/parsing-scanning-tokenizing-raw-xml/1396776#1396776Comment by ykaganovich on parsing/scanning/tokenizing "raw XML"ykaganovich2009-09-10T06:36:41Z2009-09-10T06:36:41ZGlad it worked out for you. For anyone else needing to extract BNF from the XML spec, it can be scraped from the XML version (currently at <a href="http://www.w3.org/TR/xml11/REC-xml11-20060816.xml" rel="nofollow">w3.org/TR/xml11/REC-xml11-20060816.xml</a>). Search for <scrap lang="ebnf"> elementshttp://stackoverflow.com/questions/1396749/parsing-scanning-tokenizing-raw-xmlComment by ykaganovich on parsing/scanning/tokenizing "raw XML"ykaganovich2009-09-09T02:48:28Z2009-09-09T02:48:28Z@Jason S wow that's the issue, ability to diff? Run the StAX processor once in "pass-through" mode to normalize it; then run it again with the programming logic. Then diff the outputs!