User jitter - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T18:26:46Z http://stackoverflow.com/feeds/user/122428 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1809709/how-do-you-refresh-an-advert-served-by-google-ad-manager-after-a-javascript-event/1810052#1810052 0 Answer by jitter for How do you refresh an advert served by Google Ad Manager after a javascript event (eg ajax postback) has occured on a webpage jitter 2009-11-27T18:12:04Z 2009-11-27T18:12:04Z <p>After digging around a bit my advise is: Do not try to do this. It probably is a violation of google TOS.</p> <p>I you still want to try it. Here a few links for a starter (but most still use <code>iframe</code> solutions as anything else most surely is against the TOS).</p> <p><a href="http://nico.berlee.nl/adsense-and-ajax-not-a-happy-combination/" rel="nofollow">AdSense and AJAX: Not a happy combination</a></p> <p><a href="http://www.jguru.com/forums/view.jsp?EID=1305379" rel="nofollow">How to advertise on a pure AJAX application?</a></p> <p><a href="http://www.interaktonline.com/Support/Knowledgebase/Technote/Details/248/17/I+can%27t+use+Google+Ads+in+an+AJAX+panel.html" rel="nofollow">I can't use Google Ads in an AJAX panel</a></p> <p><a href="http://www.google.com/support/forum/p/Google+Ad+Manager/thread?tid=6c5ddadca3930d28&amp;hl=en" rel="nofollow">How to fetch new ads after an AJAX action (no page reload)</a></p> <p><a href="https://www.google.com/adsense/support/bin/search.py?query=ajax" rel="nofollow">https://www.google.com/adsense/support/bin/search.py?query=ajax</a></p> http://stackoverflow.com/questions/1805936/need-some-help-with-xpath-expression-one-works-the-other-doesnt/1806383#1806383 0 Answer by jitter for Need some help with XPath expression. One works, the other doesn't... jitter 2009-11-27T01:24:25Z 2009-11-27T17:57:26Z <p>I just ran your code sample as is (copy paste) and got this output. So everything seems fine. (which cobra version are you using? Me 0.98.4)</p> <pre><code>1 Content: DATA: DATA: Information by Associate INFO: associate </code></pre> <p><hr></p> <h2>Reproducible test(?)</h2> <ul> <li>Using javac/java version 1.6.0_16 (HotSpot Client: build 14.2-b01, mixed mode, sharing)</li> <li>I downloaded 0.98.4 (<em><code>cobra-0.98.4.zip</code></em>) from here <a href="http://sourceforge.net/projects/xamj/files/Cobra%20HTML%20Toolkit/" rel="nofollow">Sourceforge: Cobra HTML Toolkit download</a></li> <li>Extracted <em><code>js.jar</code></em> and <em><code>cobra.jar</code></em> from the <em><code>cobra-0.98.4.zip:\lib</code></em> to a directory <code>XXX</code></li> <li>Wrote <a href="http://pastebin.com/m65e3807c" rel="nofollow"><code>XMLTest.java</code></a> and <a href="http://pastebin.com/m7f34b93" rel="nofollow"><code>HTMLTest.java</code></a> in same directory (<strong>!filenames are links</strong> to source)</li> <li>Ran this to compile (windows): <code>javac -cp .;cobra.jar;js.jar *.java</code></li> <li>Then executed like this (output included) <hr></li> </ul> <p>XMLTest</p> <pre><code>java -cp .;cobra.jar;js.jar XMLTest 1 </code></pre> <p>XMLTest Output:</p> <pre><code>1 Content: DATA: DATA: Information by Associate INFO: associate </code></pre> <p>HTMLTest</p> <pre><code>java -cp .;cobra.jar;js.jar HTMLTest 1 </code></pre> <p>HTMLTest Output:</p> <pre><code>1 Content: DATA: DATA: Information by Associate INFO: associate </code></pre> http://stackoverflow.com/questions/1806378/log4j-not-adding-newlines-between-logfile-entries/1806408#1806408 5 Answer by jitter for Log4J not adding newlines between logfile entries jitter 2009-11-27T01:32:53Z 2009-11-27T01:32:53Z <p>Replace</p> <pre><code>log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n </code></pre> <p>with</p> <pre><code>log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n </code></pre> <p>Same for A2 + there remove the <code>%</code> after the n <code>%m%n%</code> -> <code>m%n</code></p> <p>Basically you seem to have a newline after the <code>-</code> character in your <code>ConversionPattern</code> lines. That would explain why the newline isn't output (<code>%n</code> --> outputs platform dependend newline character)</p> <p>Btw. if you want to know what the options mean</p> <p><a href="http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/PatternLayout.html" rel="nofollow">javadoc: PatternLayout</a></p> http://stackoverflow.com/questions/1806218/javascript-event-triggering/1806307#1806307 4 Answer by jitter for JavaScript: event triggering jitter 2009-11-27T00:49:10Z 2009-11-27T00:49:10Z <p>A few starting points</p> <ul> <li><a href="https://developer.mozilla.org/en/DOM/document.createEvent" rel="nofollow"><code>document.createEvent</code></a></li> <li><a href="https://developer.mozilla.org/en/DOM/element.dispatchEvent" rel="nofollow"><code>element.dispatchEvent</code></a></li> <li><a href="http://msdn.microsoft.com/en-us/library/ms536423%28VS.85%29.aspx" rel="nofollow"><code>fireEvent</code> Method</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/ms536390%28VS.85%29.aspx" rel="nofollow"><code>createEventObject</code> Method</a></li> <li><a href="http://github.com/kangax/protolicious/blob/5b56fdafcd7d7662c9d648534225039b2e78e371/event.simulate.js" rel="nofollow">event.simulate.js</a></li> <li>A look into how known big Javascript Frameworks do it (e.g. <a href="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" rel="nofollow"><code>jQuery</code></a>)</li> <li>And don't forget <ul> <li>grab a cup of coffee (or better two)</li> <li>be ready to get many headaches</li> <li>be ready to encounter subtle bugs which will make you want to rip your hear out</li> <li>to make it crossbrowser you will need to do a lot(!) of testing</li> </ul></li> </ul> http://stackoverflow.com/questions/1804145/hide-labels-on-jfreechart-pieplot3d-piechart/1804990#1804990 1 Answer by jitter for Hide labels on jfreechart/PiePlot3D piechart. jitter 2009-11-26T18:00:33Z 2009-11-26T18:12:00Z <p>Actually this seems to be an even easier way and also much shorter.</p> <p>Just do the label distribution yourself (anonymous implementation) and pretend that there are no labels to display by returning a zero in <code>getItemCount()</code>.</p> <pre><code>plot.setLabelDistributor(new AbstractPieLabelDistributor() { public int getItemCount() { return 0; } public void distributeLabels(double minY,double height) {} }); </code></pre> <p><hr></p> <p>Old solution:</p> <p>Don't know if there is an easier way but this should work. Should be self-explanatory. Don't show links set some colors transparent and don't generate labels. Else just ask.</p> <pre><code>Color transparent = new Color(0.0f,0.0f,0.0f,0.0f); plot.setLabelLinksVisible(Boolean.FALSE); plot.setLabelOutlinePaint(transparent); plot.setLabelBackgroundPaint(transparent); plot.setLabelShadowPaint(transparent); plot.setLabelGenerator(new PieSectionLabelGenerator(){ @Override public AttributedString generateAttributedSectionLabel(PieDataset dataset, Comparable key) { return new AttributedString(""); } @Override public String generateSectionLabel(PieDataset dataset, Comparable key) { return ""; } }); </code></pre> http://stackoverflow.com/questions/1803986/send-asapmail-without-reloading-page-using-ajax/1804629#1804629 0 Answer by jitter for Send asapMail without reloading page using ajax jitter 2009-11-26T16:28:06Z 2009-11-26T17:09:38Z <p>Are you sure the code snippet with form-html is correct? You jQuery looks for an element with id myForm. But your form doesn't seem to have and id attribute.</p> <p>So either add the id to form or try replacing this line</p> <pre><code>$('#myForm').submit(function() { </code></pre> <p>with this one</p> <pre><code>$('form[name="myForm"]').submit(function() { </code></pre> <p>And add a <code>return false;</code> statement after the ajax call</p> <pre><code>$.ajax({...}); return false; </code></pre> http://stackoverflow.com/questions/1803255/how-can-i-get-read-all-the-parameters-of-an-applet/1803322#1803322 1 Answer by jitter for How can I get read all the parameters of an applet? jitter 2009-11-26T12:08:04Z 2009-11-26T16:16:15Z <p>AFAIK you can't read in unknown parameters using the standard applet API.</p> <p>Which doesn't make sense anyway. What are you going to do with unknown parameters? Care to explain why that might be useful.</p> <p>A way to do it nonetheless, if you really want, is to use JavaScript and call a method defined in your applet and just pass it in the parameters.</p> <p>How that works can be read up on several places. Here a few starting points:</p> <p><a href="http://java.sun.com/j2se/1.5.0/docs/guide/plugin/developer%5Fguide/js%5Fjava.html" rel="nofollow">JavaScript to Java Communication (Scripting)</a></p> <p><a href="https://jdk6.dev.java.net/plugin2/liveconnect/#JS%5FTO%5FJAVA" rel="nofollow">Liveconnect: Calling from JavaScript to Java</a></p> <p><a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FGuide/LiveConnect%5FOverview/JavaScript%5Fto%5FJava%5FCommunication" rel="nofollow">Mozilla DevCenter: JavaScript to Java Communication</a></p> <p><hr></p> <p>Regarding authors comment:</p> <p>If I understood you correctly you could also enforce that every applet your lib constructs overwrites the <code>Applet.getParameterInfo()</code> method and returns appropriate information.</p> <p>Now you could provide a static map for the parameters which the applet declared to be supported.</p> http://stackoverflow.com/questions/1800317/impossible-to-make-a-cached-thread-pool-with-a-size-limit/1800341#1800341 2 Answer by jitter for Impossible to make a cached thread pool with a size limit? jitter 2009-11-25T22:23:20Z 2009-11-26T00:30:27Z <p>This is what you want (atleast I guess so). For an explanation check <a href="http://stackoverflow.com/questions/1800317/impossible-to-make-a-cached-thread-pool-with-a-size-limit/1800369#1800369">Jonathan Feinberg answer</a></p> <p><a href="http://java.sun.com/javase/7/docs/api/java/util/concurrent/Executors.html#newFixedThreadPool%28int%29" rel="nofollow"><code>Executors.newFixedThreadPool(int n)</code></a> </p> <blockquote> <p>Creates a thread pool that reuses a fixed number of threads operating off a shared unbounded queue. At any point, at most nThreads threads will be active processing tasks. If additional tasks are submitted when all threads are active, they will wait in the queue until a thread is available. If any thread terminates due to a failure during execution prior to shutdown, a new one will take its place if needed to execute subsequent tasks. The threads in the pool will exist until it is explicitly shutdown.</p> </blockquote> http://stackoverflow.com/questions/1800648/alternative-to-interruptmain-in-jython/1800694#1800694 0 Answer by jitter for Alternative to interrupt_main() in Jython? jitter 2009-11-25T23:37:14Z 2009-11-25T23:37:14Z <p>Does listing 3000 numbers take longer than 60 seconds on your machine? Looks like main is finished before the timer will fire so nothing to interrupt anymore as main already has exited. No?</p> <p>You could also try using <code>PyErr_SetInterrupt()</code> instead.</p> http://stackoverflow.com/questions/1800018/datepicker-mindate-relative-1-month-from-start-date/1800657#1800657 1 Answer by jitter for DatePicker minDate relative 1 month from start date jitter 2009-11-25T23:27:10Z 2009-11-25T23:27:10Z <p>Not sure what you mean by "<em>not just 30 days</em>" but this should do what you want.</p> <pre><code>$("#endDatePicker").datepicker({ minDate: '+1m', beforeShow: function() { //get date startDate is set to var startDate = $("#startDatePicker").datepicker('getDate'); //if a date was selected else do nothing if (startDate != null) { startDate.setMonth(startDate.getMonth()+1); $(this).datepicker('option', 'minDate',startDate); } } }); </code></pre> http://stackoverflow.com/questions/1799212/show-hide-div-based-on-radio-clicked-with-class/1799246#1799246 1 Answer by jitter for show/hide div based on radio clicked with class jitter 2009-11-25T19:04:38Z 2009-11-25T19:04:38Z <p>Just replace</p> <pre><code>var selected = $(this).val(); </code></pre> <p>with</p> <pre><code>var selected = $(this).attr("class"); </code></pre> <p>And the <code>div</code> faded in depends on the <code>class</code> attribute of the <code>input</code>.</p> <p>Additionally I suggest using this (which should be faster)</p> <pre><code>$("div.shade:visible").fadeOut("slow"); </code></pre> <p>instead of</p> <pre><code>$(".shade").fadeOut("slow"); </code></pre> http://stackoverflow.com/questions/1798901/how-to-use-jquery-in-affiliate-sites/1798992#1798992 0 Answer by jitter for How to use jQuery in affiliate sites? jitter 2009-11-25T18:26:09Z 2009-11-25T18:26:09Z <p>I suggest using the <a href="http://wonko.com/post/painless%5Fjavascript%5Flazy%5Floading%5Fwith%5Flazyload" rel="nofollow">LazyLoad library</a>.</p> <p>Then modify the original LazyLoad js file and at the end append the appropriate <code>LazyLoad.XXX</code> calls which then loads any other <em>.js</em> you are interested in. This is then the file you hand to your partners to include.</p> <p>e.g. if you then want to load jQuery just load it via LazyLoad and use the <code>noConflict()</code> function.</p> <p>For more details about that. Check these and similar references</p> <p><a href="http://docs.jquery.com/Using%5FjQuery%5Fwith%5FOther%5FLibraries" rel="nofollow">Using jQuery with Other Libraries</a></p> <p><a href="http://stackoverflow.com/questions/528241/how-do-i-run-different-versions-of-jquery-on-the-same-page">How do I run different versions of jQuery on the same page?</a></p> http://stackoverflow.com/questions/1798625/how-to-access-jquery-event-without-using-anonymous-callback-parameter/1798668#1798668 6 Answer by jitter for How To Access jQuery Event Without Using Anonymous Callback Parameter jitter 2009-11-25T17:38:51Z 2009-11-25T18:12:28Z <h2>Original answer</h2> <pre><code>function test(eve) { alert(eve.type); alert(this); //$(this) if you need it as jQuery object } $([yourselector]).live("click", test); </code></pre> <p>You will automatically get the event in the <code>eve</code> parameter.</p> <p><hr></p> <h2>Answer to extended question in comment</h2> <p>Passing in a parameter makes it a little more difficult. If you need an explanation why I did it like this: Ask.</p> <pre><code>function helper(customparam) { return function(eve, selector) { actualFunction(eve, selector, customparam, this) }; } function actualFunction(eve, selector, customparam, self) { alert(eve.type); alert(selector); alert(customparam); alert(self); //self is now the element we clicked on //$(self) if you need it as jQuery object //using this won't work anymore as this is now window } $([yourselector]).live("click", helper([yourparameter])); </code></pre> http://stackoverflow.com/questions/1798016/junit-enable-assertions-in-class-under-test/1798081#1798081 0 Answer by jitter for JUnit: Enable assertions in class under test jitter 2009-11-25T16:18:21Z 2009-11-25T17:33:13Z <p>I propose three possible (simple?) fixes which work for me after a quick test (but you might need to check the side effects of using a static-initializer-block)</p> <p>1.) Add a static-initializer block to those testcases which rely on assertions being enabled</p> <pre><code>import .... public class TestXX.... ... static { ClassLoader.getSystemClassLoader().setDefaultAssertionStatus(true); } ... @Test(expected=AssertionError.class) ... ... </code></pre> <p>2.) Create a base-class which all of your test-classes extend which need assertions enabled</p> <pre><code>public class AssertionBaseTest { static { //static block gets inherited too ClassLoader.getSystemClassLoader().setDefaultAssertionStatus(true); } } </code></pre> <p>3.) Create a test suite which runs all your test</p> <pre><code>import org.junit.runner.RunWith; import org.junit.runners.Suite; @RunWith(Suite.class) @Suite.SuiteClasses({ //list of comma-separated classes /*Foo.class, Bar.class*/ }) public class AssertionTestSuite { static { //should run before the test classes are loaded ClassLoader.getSystemClassLoader().setDefaultAssertionStatus(true); } public static void main(String args[]) { org.junit.runner.JUnitCore.main("AssertionTestSuite"); } } </code></pre> http://stackoverflow.com/questions/1797930/how-to-get-eclipse-to-recognize-preprocessor-statements/1798022#1798022 1 Answer by jitter for How to get eclipse to recognize preprocessor statements? jitter 2009-11-25T16:10:53Z 2009-11-25T16:10:53Z <p>Are you using EclipseME? If yes check this page on how to get it working correctly</p> <p><a href="http://eclipseme.org/docs/installEclipseME.html#step2d" rel="nofollow">Configuring Preprocessor Support</a></p> http://stackoverflow.com/questions/1797419/count-calls-to-eval/1797578#1797578 -1 Answer by jitter for Count calls to eval jitter 2009-11-25T15:12:36Z 2009-11-25T15:12:36Z <p>Try this modified version</p> <pre><code>var increment = function () { var me = arguments.callee; if (!me.count) me.count = 0; return ++me.count; } var oldEval = eval; eval = function (str) { alert('eval number ' + increment()); return oldEval(str); } </code></pre> <ul> <li>Renamed <code>string</code> to <code>str</code></li> <li>used alert instead of <code>console.log</code> (which isn't available in all browser)</li> <li>Changed call to alert to use string concatenation</li> <li>changed new eval function to be anonymous (removed eval name)</li> </ul> http://stackoverflow.com/questions/1797095/jquery-issue-with-first-how-to-solve/1797155#1797155 5 Answer by jitter for jQuery issue with :first-how to solve jitter 2009-11-25T14:11:49Z 2009-11-25T14:44:08Z <h2>Answer to first question</h2> <p>I'm sorry to tell you but using <code>:first</code> won't make your selection any quicker. It's not the browsers fault though. It's how jQuery works. (BTW. if your page isn't super large e.g. several hundred matches for e.g. mydiv it doesn't really matter what your selector looks like)</p> <pre><code>$(".mydiv .indiv .myspan:first"); </code></pre> <ol> <li>jQuery first selects all elements in the DOM which have the class <code>mydiv</code> set.</li> <li>it loops over all(!) elements found in step 1 and finds all their descendants with class <code>indiv</code> set.</li> <li>it loops over all(!) elements found in step 2 and finds all their descendants with class <code>myspan</code> set</li> <li>finally it loops over all(!!!) elements found in step 3 and determines if it is the first element</li> </ol> <p>Especially step 4 is not what you normally would expect. As only returning the first found <code>.myspan</code> element would suffice, but that's not how the Sizzle selector library that jQuery uses works.</p> <p>So the only way to improve this selector is to use</p> <pre><code>$(".mydiv .indiv .myspan").eq(0); </code></pre> <p>Which at least spares you the loop in step 4</p> <p>Or to find a more concise selector</p> <p><hr></p> <h2>Answer to second question</h2> <p>If I understood you correctly you hide the second <code>&lt;a&gt;</code> similar to this</p> <pre><code>$(".indiv &gt; a").eq(1).hide(); </code></pre> <p>Then the following should do what you want. Hides second link in first <code>indiv</code>. Appends <code>click</code> handler only to the first two links. Which show/hide each other.</p> <pre><code>$(document).ready(function(){ $(".indiv").eq(0).children("a").eq(1).hide(); $(".indiv").eq(0).children("a").each(function(i,e) { var x = $(e); if(i==0) { x.click(function(){ x.hide(); x.next().show(); }); } else { x.click(function(){ x.hide(); x.prev().show(); }); } }); }); </code></pre> <p><hr></p> <p>A few comments to your question:</p> <p>The <code>&lt;span&gt;</code> doesn't have set a class <code>myspan</code> but only contains the text <code>myspan</code>. Is the class attribute just missing or is you selector wrong.</p> <p>Assuming you really have the spans like this <code>&lt;span class="myspan"&gt;....&lt;/span&gt;</code>. Are there any spans on the page which also have this class set but shouldn't be selected? If not you could rewrite your selector to</p> <pre><code>$(".myspan").eq(0); </code></pre> http://stackoverflow.com/questions/1797055/modify-all-html-of-a-certain-class/1797068#1797068 2 Answer by jitter for modify all html of a certain class jitter 2009-11-25T13:57:14Z 2009-11-25T13:57:14Z <p>This should do it</p> <pre><code>$(".comment_date").each(function(i,e) { var x = $(e); x.html(x.attr("title")); }); </code></pre> http://stackoverflow.com/questions/1797010/screencast-or-video-for-database-programs-in-java/1797050#1797050 2 Answer by jitter for Screencast or video for Database programs in JAVA jitter 2009-11-25T13:53:39Z 2009-11-25T13:53:39Z <p>Why would you need a video tutorial for that? There are plenty of "normal" (hey just text) tutorial out there on the web. What is the benefit of a video tutorial?</p> <p><a href="http://support.microsoft.com/kb/313100/EN-US/" rel="nofollow">HOW TO: Get Started with Microsoft JDBC</a></p> <p><a href="http://www.devdaily.com/java/edu/pj/pj010024/" rel="nofollow">JDBC 101: Connect to a SQL database with JDBC</a></p> <p>And many more. Google for "sqlserver" and "jdbc" and "connect" and you are done.</p> http://stackoverflow.com/questions/1789986/mouseenter-leave-cause-flicker-in-jquery/1790277#1790277 0 Answer by jitter for mouseenter leave cause flicker in jQuery jitter 2009-11-24T14:03:59Z 2009-11-24T18:01:47Z <p>I suggest using <code>hover()</code> this instead of binding to <code>mouseenter</code> and <code>mouseleave</code> looks cleaner to me.</p> <pre><code>$("#helptext").hover(function(){ $("p:first",this).text("helptext text."); }, function(){ $("p:first",this).text(""); } ); </code></pre> <p>Btw. I guess without more of your HTML/CSS code I think we can't solve this issue as the above doesn't flicker for me at all.</p> <p>Check here <a href="http://jsbin.com/ihuna/" rel="nofollow">http://jsbin.com/ihuna/</a></p> http://stackoverflow.com/questions/1791178/customising-serialisation-of-java-collections-using-xstream/1791238#1791238 0 Answer by jitter for customising serialisation of java collections using xstream jitter 2009-11-24T16:31:37Z 2009-11-24T17:58:57Z <p>Out of interest I gave it a try to do it without writing my own converter. Basically I just register a special instructed version of <code>CollectionConverter</code> for a certain field in a certain class.</p> <p>Relevant snippet:</p> <pre><code>ClassAliasingMapper mapper = new ClassAliasingMapper(xstream.getMapper()); mapper.addClassAlias("tag", String.class); xstream.registerLocalConverter( Test.class, "tags", new CollectionConverter(mapper) ); </code></pre> <p>Full-blown example:</p> <pre><code>import com.thoughtworks.xstream.*; import com.thoughtworks.xstream.converters.collections.*; import com.thoughtworks.xstream.mapper.*; import java.util.*; public class Test { public List&lt;String&gt; tags = new ArrayList&lt;String&gt;(); public List&lt;String&gt; notags = new ArrayList&lt;String&gt;(); public Test(String tag, String tag2) { tags.add(tag); tags.add(tag2); notags.add(tag); notags.add(tag2); } public static void main(String[] args) { Test test = new Test("foo", "bar"); XStream xstream = new XStream(); ClassAliasingMapper mapper = new ClassAliasingMapper(xstream.getMapper()); mapper.addClassAlias("tag", String.class); xstream.registerLocalConverter( Test.class, "tags", new CollectionConverter(mapper) ); System.out.println(xstream.toXML(test)); } } </code></pre> <p><hr></p> <p>Not tested but this should work. No?</p> <pre><code>xstream.alias("tag", java.lang.String.class); </code></pre> http://stackoverflow.com/questions/1790971/adding-variable-into-a-jquery-plugin/1791363#1791363 0 Answer by jitter for adding variable into a jquery plugin jitter 2009-11-24T16:50:03Z 2009-11-24T16:50:03Z <p>@Phil Jackson comment to Alexander Gyoshev</p> <p>Are you sure <code>getAspectRation</code> should return an integer? e.g. if you do that <code>16/9</code> would return <code>1</code>. </p> <p>I guess what you really want is float. But your function should return a float anyway without changing anything.</p> <p>Else if you somewhere have a number (not an expression) as string and you need it as number do</p> <pre><code>var x = "0.5123"; return parseInt(x); //if you really want an integer return parseFloat(x); //if you want a float </code></pre> <p>So if you really want <code>getAspectRation</code> to return an integer you could do </p> <pre><code>return parseInt(newW / newH); </code></pre> http://stackoverflow.com/questions/1790724/jquery-ui-dialog-cannot-see-the-closetext/1791190#1791190 1 Answer by jitter for jQuery UI Dialog - Cannot see the closeText jitter 2009-11-24T16:26:26Z 2009-11-24T16:26:26Z <p>Actually the problem is the jQuery UI CSS and jQuery Dialog itself.</p> <p>The jQuery UI Dialog does the following with whatever you pass in as <code>closeText</code>. </p> <ul> <li>it creates a <code>&lt;span&gt;&lt;/span&gt;</code> which contains your <code>closeText</code></li> <li>sets the styles <code>ui-icon</code> and <code>ui-icon-closethick</code>' on it</li> </ul> <p>The span is actually always created, no matter if you pass in <code>closeText</code> or not. It is used to display the <code>x</code>-closing-image.</p> <p>Now looking into the default jQuery UI CSS we find for <code>ui-icon</code></p> <pre><code>... text-indent: -99999px; width: 16px; height: 16px; ... </code></pre> <p>Thus jQuery sets the text but the browser will never show it (<code>text-indent: -99999px</code>) and region too small for any text.</p> <p>So what I did is</p> <pre><code>//open dialog $("#dialog").dialog({ closeText: 'Close me' }); //get the automagically created div which represents the dialog //then get the span which has `ui-icon-closethick` class set (== contains closeText) var closeSpan = $("div[role='dialog'] span.ui-icon-closethick"); //prepend a span with closeText to the closing-image closeSpan.parent().before( '&lt;span style="float:right;margin-right:25px"&gt;'+ closeSpan.text()+ '&lt;/span&gt;' ); </code></pre> <p>Check this <a href="http://jsbin.com/ibibe/" rel="nofollow">http://jsbin.com/ibibe/</a> for a working example</p> http://stackoverflow.com/questions/1790676/super-constructor-call-in-blackberry-screen-classes/1790751#1790751 0 Answer by jitter for Super constructor call in Blackberry Screen classes. jitter 2009-11-24T15:21:02Z 2009-11-24T15:33:12Z <p>You are right about the no-arg constructor being implicitly called. And I'm pretty damn sure that also the RIM JRE does it this way.</p> <p>I guess what you stumbled upon is just the notorious "<em>super basic beginner hello world example</em>" which even calls <code>super()</code> explicitly so that every java noob understands that the constructor of <code>MainScreen</code> is called too.</p> <p>I looked through most of the samples on the page you linked to and it looks like a copy-paste thing. If you for example checkout the <code>Using PIM functions</code> sample you will notice that here the call to <code>super()</code> is missing from the no-arg child constructor.</p> http://stackoverflow.com/questions/1790575/win32-how-to-scrape-html-without-regular-expressions/1790584#1790584 0 Answer by jitter for Win32.: How to scrape HTML without regular expressions? jitter 2009-11-24T14:54:03Z 2009-11-24T15:00:48Z <p>Use a DOM parser</p> <p>e.g. for java check this list</p> <p><a href="http://java-source.net/open-source/html-parsers" rel="nofollow">Open Source HTML Parsers in Java</a> (I like to use cobra)</p> <p>Or if you are sure e.g. that you only want to parse a certain subset of your html which ideally is also xml valid you could use some xml parser to parse only fragment you pass it in and then even use xpath to request the values your are interested in.</p> <p><a href="http://java-source.net/open-source/xml-parsers" rel="nofollow">Open Source XML Parsers in Java</a> (e.g. dom4j is easy to use)</p> http://stackoverflow.com/questions/1788881/js-compatibility-problem-with-safari/1790549#1790549 2 Answer by jitter for JS : Compatibility problem with Safari jitter 2009-11-24T14:48:39Z 2009-11-24T14:48:39Z <p>Why don't you try setting <code>visibility</code> to <code>visible</code> instead of <code>''</code>.</p> <pre><code>liste_sel[j].style.visibility = 'visible'; </code></pre> <p>And are they really hidden by setting <code>visibility</code> to <code>hidden</code> or are the hidden by <code>display:none</code> that might also make a difference.</p> http://stackoverflow.com/questions/1788887/bypassing-event-stoppropagation/1790525#1790525 0 Answer by jitter for Bypassing event.stopPropagation jitter 2009-11-24T14:45:28Z 2009-11-24T14:45:28Z <p>How does <code>stopPropagation()</code> get in your way? (Add more description how/on what your add-on works/attaches).</p> <p>The only thing <code>stopPropagation()</code> does, is to stop the event from bubbling up to the parent element of the element which received the event. Thus the event handlers on the parent aren't called. But multiple handlers for the same event directly on the element are all called.</p> <p>So... as long as you bind your event-handler directly to the element which the event is first generated on first, you are ok. If you just try to listen for events on e.g. on <code>body</code> and rely on all events bubbling up to you, you are out of luck.</p> <p>e.g. if you now click on the red div you will get an alert saying <code>sibling handler</code> and one saying <code>inline handler</code>although the earlier defined inline-<code>onclick</code> handler calls <code>stopPropagation()</code>.</p> <p>(Note: this sample doesn't handle IE specifics which uses <code>attachEvent()</code> and <code>cancelBubble</code>)</p> <pre><code>&lt;style type="text/css" media="screen"&gt; #parent1 { background-color: green; width:300px; height:300px } #test { background-color: red; width:200px; height:200px } &lt;/style&gt; &lt;div id="parent1"&gt; &lt;div id="test" onclick="javascript:event.stopPropagation();alert('inline handler');"&gt;&lt;/div&gt; &lt;/div&gt; &lt;script type="text/javascript"&gt; parent1.addEventListener('click', function(e) { alert('parent'); }, false ); test.addEventListener('click', function(e) { alert('sibling handler'); }, false ); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1789826/extract-duration-from-a-u-law-audio-file-with-java/1790209#1790209 0 Answer by jitter for Extract duration from a U-LAW audio file with Java jitter 2009-11-24T13:54:33Z 2009-11-24T13:54:33Z <p>Are you sure the audio file is in valid format? The exception normally means that java can't interpret the data read form the file as valid audio data.</p> <p>Are you sure the settings you provide with <code>ULAW_FORMAT</code> are correct?</p> <p>I'm not familiar with µ-law encoding but are the values for <code>frameSize</code> and <code>frameRate</code> correct?</p> <p>You could also try</p> <pre><code>AudioSystem.getAudioInputStream(AudioFormat.Encoding.ULAW, inputFileStream); </code></pre> <p>If that too doesn't work either the file has invalid audio data or java has some parsing bug.</p> http://stackoverflow.com/questions/1789169/jquery-unexpected-sortable-behaviour/1789775#1789775 1 Answer by jitter for jQuery unexpected sortable behaviour jitter 2009-11-24T12:28:34Z 2009-11-24T12:28:34Z <p>Just add this</p> <pre><code>$('ul.list').bind('mousedown', function(e) { e.stopPropagation(); }); </code></pre> <p>This will stop IE from bubbling up the <code>mousedown</code> event to the parent <code>ul</code>, which causes the strange sortable behavior you have seen. Now it should work as expected</p> http://stackoverflow.com/questions/1789204/run-a-batch-file-and-then-an-exe-file-from-java-program/1789265#1789265 0 Answer by jitter for Run a batch file and then an exe file from Java program jitter 2009-11-24T10:46:14Z 2009-11-24T10:46:14Z <p>Can't you just reuse the first <code>ProcessBuilder</code>?</p> <pre><code>ProcessBuilder pb = new ProcessBuilder("D:\\newlogin\\setup.bat"); .... pb.command("d:\\newlogin\\tcelogin.exe", "Eid123", "Eid123"); pb.start(); int exitValue2 = p.waitFor(); Map&lt;String, String&gt; env2 = pb.environment(); System.out.println("exitStatus &gt; " + exitValue2); </code></pre> <p>Or manually append all values from the first environment which aren't already in the second environemtn</p> <pre><code>ProcessBuilder pb = new ProcessBuilder("D:\\newlogin\\setup.bat"); ... Map&lt;String, String&gt; env = pb.environment(); ... ProcessBuilder pb2 = new ProcessBuilder("d:\\newlogin\\tcelogin.exe", "Eid123", "Eid123"); Map&lt;String, String&gt; env2 = pb2.environment(); [PSEUDOCODE] loop: for key,value in env check if key exists in env2 if not: add (key,value) to env2 else: check if values different and add [/PSEUDOCODE] pb2.start(); .... </code></pre> http://stackoverflow.com/questions/1798016/junit-enable-assertions-in-class-under-test Comment by jitter on JUnit: Enable assertions in class under test jitter 2009-11-28T07:23:57Z 2009-11-28T07:23:57Z Did you consider my reworked answer? I proposed three possible solutions to your problem which all work (tested) http://stackoverflow.com/questions/1800018/datepicker-mindate-relative-1-month-from-start-date/1800657#1800657 Comment by jitter on DatePicker minDate relative 1 month from start date jitter 2009-11-28T07:20:00Z 2009-11-28T07:20:00Z You could accept now, as you have more than 15reppoints http://stackoverflow.com/questions/1804145/hide-labels-on-jfreechart-pieplot3d-piechart/1804990#1804990 Comment by jitter on Hide labels on jfreechart/PiePlot3D piechart. jitter 2009-11-28T07:19:01Z 2009-11-28T07:19:01Z So? Does this do what you want? http://stackoverflow.com/questions/1805936/need-some-help-with-xpath-expression-one-works-the-other-doesnt/1806383#1806383 Comment by jitter on Need some help with XPath expression. One works, the other doesn't... jitter 2009-11-27T17:56:47Z 2009-11-27T17:56:47Z Check expanded answer. Provided source too (tested with HTML and XML Parsing) http://stackoverflow.com/questions/1806218/javascript-event-triggering/1806236#1806236 Comment by jitter on JavaScript: event triggering jitter 2009-11-27T01:41:22Z 2009-11-27T01:41:22Z Sorry. Forget about it. Wrote this after I took the time to gather a few relevant links and saw that you accepted the &quot;hey just copy jQuery's solution&quot; answer. Which upset me a little after you wrote: I want to do it myself. btw. just copying the code and pretending it is home made would be a license violation too http://stackoverflow.com/questions/1805724/firefox-jquery-json-problem/1805881#1805881 Comment by jitter on Firefox JQuery JSON Problem jitter 2009-11-26T22:27:15Z 2009-11-26T22:27:15Z -1 Did you even read the question. He already sets <code>contentType</code> in his code http://stackoverflow.com/questions/1803239/help-in-jquery-slidetoggle-with-ul-and-li-menu/1803279#1803279 Comment by jitter on help in jquery slideToggle with ul and li menu jitter 2009-11-26T17:16:20Z 2009-11-26T17:16:20Z Why didn't you fix it in you question? Instead of posting an answer to your question which isn't an answer http://stackoverflow.com/questions/1804839/eclipse-most-useful-refactorings Comment by jitter on Eclipse: Most useful refactorings jitter 2009-11-26T17:13:10Z 2009-11-26T17:13:10Z <a href="http://www.ibm.com/developerworks/opensource/library/os-eclipse-refactoring/index.html" rel="nofollow">ibm.com/developerworks/opensource/&hellip;</a> http://stackoverflow.com/questions/1803986/send-asapmail-without-reloading-page-using-ajax/1804629#1804629 Comment by jitter on Send asapMail without reloading page using ajax jitter 2009-11-26T17:09:54Z 2009-11-26T17:09:54Z thanks. lol 2 typing errors in such a short piece of code http://stackoverflow.com/questions/1803986/send-asapmail-without-reloading-page-using-ajax Comment by jitter on Send asapMail without reloading page using ajax jitter 2009-11-26T16:31:58Z 2009-11-26T16:31:58Z @BalusC: I beg your pardon, but what do you mean http://stackoverflow.com/questions/1803255/how-can-i-get-read-all-the-parameters-of-an-applet/1803322#1803322 Comment by jitter on How can I get read all the parameters of an applet? jitter 2009-11-26T16:16:25Z 2009-11-26T16:16:25Z Expanded answer. Check second part http://stackoverflow.com/questions/1803254/store-password-field-in-encryption-form-using-mysql-and-hibernate Comment by jitter on Store Password Field in Encryption Form Using MySQL and Hibernate jitter 2009-11-26T12:12:05Z 2009-11-26T12:12:05Z I don't mean to be mean but: What did you already try yourself? Why didn't it work. Did you read the MySql, Spring and Hibernate documentation? Did you even try googling for your problem. http://stackoverflow.com/questions/1803239/help-in-jquery-slidetoggle-with-ul-and-li-menu Comment by jitter on help in jquery slideToggle with ul and li menu jitter 2009-11-26T11:54:40Z 2009-11-26T11:54:40Z Ok. So you want to use slideToggle. What did you try. Why/What didn't work out for you. We won't write the code you want for you. http://stackoverflow.com/questions/1803239/help-in-jquery-slidetoggle-with-ul-and-li-menu Comment by jitter on help in jquery slideToggle with ul and li menu jitter 2009-11-26T11:53:56Z 2009-11-26T11:53:56Z Your HTML code is invalid. You can't place the sub <code>ul</code>'s like this. The inner <code>ul</code> has to <i>inside</i> the <code>li</code>. A correct structure might look like this <code>&lt;ul&gt;&lt;li&gt;....&lt;ul&gt;&lt;li&gt;...&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;</code> http://stackoverflow.com/questions/1802540/apparent-memory-leak-in-web-application-maybe-from-ajax Comment by jitter on Apparent memory leak in web application (maybe from AJAX?) jitter 2009-11-26T11:28:15Z 2009-11-26T11:28:15Z Does this happen only in Chrome?