User ykaganovich - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T10:45:33Z http://stackoverflow.com/feeds/user/10026 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1768256/java-class-file-and-java-lang-class/1768542#1768542 1 Answer by ykaganovich for Java: .class file and java.lang.Class ykaganovich 2009-11-20T05:37:41Z 2009-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#1766194 0 Answer by ykaganovich for please, how can i modify this code? ykaganovich 2009-11-19T20:10:58Z 2009-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#1751090 1 Answer by ykaganovich for Is nested XMLHttpRequests with multiple closures a good idea? ykaganovich 2009-11-17T19:15:18Z 2009-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#1740014 1 Answer by ykaganovich for What free or cheap tools I can use for website creation business? ykaganovich 2009-11-16T04:15:19Z 2009-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#1740000 1 Answer by ykaganovich for How do I submit a form to JavaScript without the submit button? ykaganovich 2009-11-16T04:10:54Z 2009-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#1724503 2 Answer by ykaganovich for Java Library and Class Path Problems ykaganovich 2009-11-12T18:51:52Z 2009-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#1704041 1 Answer by ykaganovich for Interoperate between C# and Java using web services without a Java EE application server? ykaganovich 2009-11-09T21:40:40Z 2009-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#1615783 1 Answer by ykaganovich for [Ruby] Declaring instance variables iterating over a hash!! ykaganovich 2009-10-23T20:44:36Z 2009-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#1605411 3 Answer by ykaganovich for How to read XML Property value using Java ykaganovich 2009-10-22T06:44:39Z 2009-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#1564319 0 Answer by ykaganovich for How to open an email client and automatically attach file in java ykaganovich 2009-10-14T05:04:42Z 2009-10-14T05:04:42Z <p>It depends on particular email clients, but <code>&amp;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#1535307 6 Answer by ykaganovich for Do something special first time around in a Ruby loop ykaganovich 2009-10-08T02:27:04Z 2009-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#1523850 8 Answer by ykaganovich for Advice needed: stay with Java team or move to C++ team? ykaganovich 2009-10-06T06:10:51Z 2009-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#1522652 2 Answer by ykaganovich for Which is the standard Java crypto API? ykaganovich 2009-10-05T22:03:30Z 2009-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#1484961 0 Answer 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? ykaganovich 2009-09-28T00:55:36Z 2009-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#1480225 3 Answer by ykaganovich for What's the worst security hole you've ever seen? ykaganovich 2009-09-26T01:58:03Z 2009-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#1470013 0 Answer by ykaganovich for Java JTree valueChanged Event before MouseEvent ykaganovich 2009-09-24T06:12:17Z 2009-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#1408255 4 Answer by ykaganovich for MouseListener on JFrame ykaganovich 2009-09-10T23:31:37Z 2009-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#1406880 0 Answer by ykaganovich for Run Java Application as a Service ykaganovich 2009-09-10T18:16:58Z 2009-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#1406823 0 Answer by ykaganovich for Is Java guaranteed to inline string constants if they can be determined at compile time. ykaganovich 2009-09-10T18:05:57Z 2009-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#1338259 0 Answer by ykaganovich for Java framework/tool for simple distributed computing problem ykaganovich 2009-08-27T00:19:38Z 2009-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#1396861 0 Answer by ykaganovich for Should we store JRE in CVS/SVN? ykaganovich 2009-09-08T23:24:03Z 2009-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#1396776 2 Answer by ykaganovich for parsing/scanning/tokenizing "raw XML" ykaganovich 2009-09-08T22:58:46Z 2009-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#1395201 1 Answer by ykaganovich for best java approach for stream filtering in XML? ykaganovich 2009-09-08T17:24:10Z 2009-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() &amp;&amp; ((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#1355839 0 Answer by ykaganovich for How is an instance initializer different from a constructor? ykaganovich 2009-08-31T04:49:43Z 2009-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#1338180 1 Answer by ykaganovich for Java framework/tool for simple distributed computing problem ykaganovich 2009-08-26T23:51:33Z 2009-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#1202876 1 Answer by ykaganovich for How to gather profiling information for a Java 1.4 application? ykaganovich 2009-07-29T20:35:26Z 2009-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#1197797 3 Answer by ykaganovich for Retrieve POST parameters only (Java) ykaganovich 2009-07-29T02:37:49Z 2009-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("&amp;"); 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#1174452 5 Answer by ykaganovich for What happens when open source software has two or more licenses? ykaganovich 2009-07-23T20:56:16Z 2009-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#1161645 1 Answer by ykaganovich for XHTML Not Displaying in IE6, 7, 8 or FF3.5.1 - but ok in Firefox 3.0.1. ykaganovich 2009-07-21T20:43:36Z 2009-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#1155242 2 Answer by ykaganovich for What are the arguments against Mono. Does the Microsoft Community Promise change anything? ykaganovich 2009-07-20T18:50:46Z 2009-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-joptionpane Comment by ykaganovich on Disabling the close x in a JOptionPane ykaganovich 2009-11-20T21:12:50Z 2009-11-20T21:12:50Z Why do you want to do that? JOptionPane should normally have a &quot;Cancel&quot; or &quot;No&quot; button. You should make hitting the close button behave consistently with those. http://stackoverflow.com/questions/1761346/parsing-notepad-using-java Comment by ykaganovich on parsing notepad using java ykaganovich 2009-11-19T06:49:16Z 2009-11-19T06:49:16Z what's a notepad file? http://stackoverflow.com/questions/1719581/how-can-java-inline-over-virtual-function-boundaries/1719731#1719731 Comment by ykaganovich on How can Java inline over virtual function boundaries? ykaganovich 2009-11-12T03:59:22Z 2009-11-12T03:59:22Z +1 for answering the actual question http://stackoverflow.com/questions/1703951/interoperate-between-c-and-java-using-web-services-without-a-java-ee-application/1704041#1704041 Comment by ykaganovich on Interoperate between C# and Java using web services without a Java EE application server? ykaganovich 2009-11-11T08:41:55Z 2009-11-11T08:41:55Z &quot;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/&hellip;</a>) but also to allow tight integration of JAX-WS web services and servlets.&quot; 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#430067 Comment by ykaganovich on XML Diff and Merge ykaganovich 2009-11-09T18:22:26Z 2009-11-09T18:22:26Z Give 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#1445447 Comment by ykaganovich on Worst UI You've Ever Used ykaganovich 2009-10-30T23:44:04Z 2009-10-30T23:44:04Z PostgreSQL installer FTW http://stackoverflow.com/questions/1583762/inexpensive-cdn-with-origin-pull-services Comment by ykaganovich on Inexpensive CDN with Origin/Pull services? ykaganovich 2009-10-24T06:10:52Z 2009-10-24T06:10:52Z Move to ServerFault? http://stackoverflow.com/questions/1615190/ruby-declaring-instance-variables-iterating-over-a-hash/1615355#1615355 Comment by ykaganovich on [Ruby] Declaring instance variables iterating over a hash!! ykaganovich 2009-10-23T20:47:21Z 2009-10-23T20:47:21Z Don't comment in answers, that's what comments are for http://stackoverflow.com/questions/1603513/ruby-sanitize-code-why-is-sanitized Comment by ykaganovich on Ruby Sanitize Code ... why is & sanitized ... ykaganovich 2009-10-21T20:59:29Z 2009-10-21T20:59:29Z Seems like a strange use case... do you sanitize things variable number of times? Otherwise, what's wrong with <code>&amp;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#1523850 Comment by ykaganovich on Advice needed: stay with Java team or move to C++ team? ykaganovich 2009-10-12T23:31:28Z 2009-10-12T23:31:28Z I 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#1471831 Comment by ykaganovich on What's the worst security hole you've ever seen? ykaganovich 2009-09-25T03:11:19Z 2009-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#1470013 Comment by ykaganovich on Java JTree valueChanged Event before MouseEvent ykaganovich 2009-09-24T18:52:40Z 2009-09-24T18:52:40Z I 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#1469933 Comment by ykaganovich on What's the worst security hole you've ever seen? ykaganovich 2009-09-24T06:03:09Z 2009-09-24T06:03:09Z so what? Methinks the secuirty hole was not what you think http://stackoverflow.com/questions/1396749/parsing-scanning-tokenizing-raw-xml/1396776#1396776 Comment by ykaganovich on parsing/scanning/tokenizing "raw XML" ykaganovich 2009-09-10T06:36:41Z 2009-09-10T06:36:41Z Glad 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 &lt;scrap lang=&quot;ebnf&quot;&gt; elements http://stackoverflow.com/questions/1396749/parsing-scanning-tokenizing-raw-xml Comment by ykaganovich on parsing/scanning/tokenizing "raw XML" ykaganovich 2009-09-09T02:48:28Z 2009-09-09T02:48:28Z @Jason S wow that's the issue, ability to diff? Run the StAX processor once in &quot;pass-through&quot; mode to normalize it; then run it again with the programming logic. Then diff the outputs!