User Yuval A - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T00:59:07Z http://stackoverflow.com/feeds/user/24545 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1818712/convert-a-string-to-an-enum/1818736#1818736 11 Answer by Yuval A for Convert a String to an Enum ? Yuval A 2009-11-30T09:24:33Z 2009-11-30T09:30:59Z <p>Try a much cleaner way of writing your enum:</p> <pre><code>public static enum InstrumentType { SPOT("MKP"), VOLATILITY("VOL"), private final String name; InstrumentType(String name) { this.name = name; } public String toString() { return this.name; } public static InstrumentType getValue(String s) { for (InstrumentType t : InstrumentType.values()) { if (t.toString().equals(s)) return t; } return SOME_DEFAULT_VALUE; } } </code></pre> <p>This also solves your problem of String -> Enum. It might be cleaner to just use the three-letter acronyms as the enum name, but in the case you will need to make the <code>getValue()</code> decision according to other parameters, this is the right way to go.</p> http://stackoverflow.com/questions/1807864/using-clients-ip-as-the-servers-ip/1807903#1807903 0 Answer by Yuval A for Using Clients IP as the Servers IP Yuval A 2009-11-27T10:19:17Z 2009-11-27T10:19:17Z <p>Why on earth would a legitimate application want to spoof its IP address?</p> <p>Changing HTTP headers might cut it, but most likely it won't. Depends on how naive the other server is.</p> <p>It sounds like you're trying to do something the wrong way, can you give a bit more information as to what exactly the use-case is?</p> http://stackoverflow.com/questions/1775369/applying-a-symbol-as-a-procedure 1 Applying a symbol as a procedure Yuval A 2009-11-21T12:32:49Z 2009-11-26T21:20:08Z <p>Suppose I have a simple symbol:</p> <pre><code>&gt; '+ + </code></pre> <p>Is there any way I can apply that symbol as a procedure:</p> <pre><code>&gt; ((do-something-with '+) 1 2) 3 </code></pre> <p>So that <code>'+</code> is evaluated to the procedure <code>+</code>?</p> http://stackoverflow.com/questions/347584/why-is-software-quality-so-problematic 43 Why is software quality so problematic? Yuval A 2008-12-07T13:40:35Z 2009-11-26T09:42:46Z <p>Even when viewing the subject in the most objective way possible, it is clear that software, as a product, generally suffers from low quality.</p> <p>Take for example a house built from scratch. Usually, the house will function as it is supposed to. It will stand for many years to come, the roof will support heavy weather conditions, the doors and the windows will do their job, the foundations will not collapse even when the house is fully populated. Sure, minor problemsdo occur, like a leaking faucet or a bad paint job, but these are not critical.</p> <p>Software, on the other hand is much more susceptible to suffer from bad quality: unexpected crashes, erroneous behavior, miscellaneous bugs, etc. Sure, there are many software projects and products which show high quality and are very reliable. But lots of software products do not fall in this category. Take into consideration paradigms like TDD which its popularity is on the rise in the past few years.</p> <p>Why is this? Why do people have to fear that their software will not work or crash? (Do you walk into a house fearing its foundations will collapse?) Why is software - subjectively - so full of bugs?</p> <p><strong>Possible reasons:</strong></p> <ul> <li>Modern software engineering exists for only a few decades, a small time period compared to other forms of engineering/production.</li> <li>Software is very complicated with layers upon layers of complexity, integrating them all is not trivial.</li> <li>Software development is relatively easy to start with, anyone can write a simple program on his PC, which leads to amateur software leaking into the market.</li> <li>Tight budgets and timeframes do not allow complete and high quality development and extensive testing.</li> </ul> <p>How do you explain this issue, and do you see software quality advancing in the near future?</p> http://stackoverflow.com/questions/1797599/working-around-java-jit-bug/1797632#1797632 7 Answer by Yuval A for Working around Java JIT bug Yuval A 2009-11-25T15:20:04Z 2009-11-25T15:46:45Z <p>I doubt this is a legit JIT issue.</p> <p>Have you ruled out other possibilities such as memory corruption or runtime environment issues?</p> <p>How did you conclude that this is a JIT problem?</p> <p>Just to ease your mind, this is the code that is throwing the exception:</p> <pre><code>private char java.util.Formatter.FormatSpecifier.conversion(String s) { c = s.charAt(0); if (!dt) { if (!Conversion.isValid(c)) throw new UnknownFormatConversionException(String.valueOf(c)); ///////.......... } </code></pre> <p>with:</p> <pre><code>static boolean java.util.Formatter.Conversion.isValid(char c) { return (isGeneral(c) || isInteger(c) || isFloat(c) || isText(c) || c == 't' || c == 'c'); } </code></pre> <p><code>d</code> is a legit integer identifier, and <code>isValid()</code> should return with <code>True</code>.</p> <p>Debugging this is not the problem, and an educated guess will say that you will find nothing. This is clearly a memory corruption/environment issue. It sounds like this issue is easily reproduced. Try testing on a different machine, different OS, different JVM.</p> <p>My hunch - your problem is not the JIT compiler.</p> http://stackoverflow.com/questions/1797631/recognising-tone-of-the-audio/1797658#1797658 2 Answer by Yuval A for Recognising tone of the audio Yuval A 2009-11-25T15:24:02Z 2009-11-25T15:24:02Z <p>You will need to use an audio library such as the built-in <a href="http://docs.python.org/library/audioop.html" rel="nofollow"><strong>audioop</strong></a>.</p> <p>Analyzing the specific note being played is not trivial, but can be done using those APIs.</p> <p>Also could be of use: <a href="http://wiki.python.org/moin/PythonInMusic" rel="nofollow">http://wiki.python.org/moin/PythonInMusic</a></p> http://stackoverflow.com/questions/1797287/virtual-function-vtable/1797324#1797324 0 Answer by Yuval A for virtual function - vtable Yuval A 2009-11-25T14:39:11Z 2009-11-25T14:52:25Z <p>Generally speaking, a subclass will have a vtable pointer to each of the multiple superclasses it inherits from (assuming, obviously, that each of those classes have at least one virtual function).</p> <p>I'm not quite sure I understood your second question. When building an object, part of the construction process is setting the relevant vtable pointers, this is something that is done implicitly by the c++ compiler by static analysis of the inheritance hierarchy. None of the vtables <em>change</em>, they are merely pointed at.</p> http://stackoverflow.com/questions/1775931/redirect-to-new-blog-using-jquery-or-javascript/1775955#1775955 5 Answer by Yuval A for Redirect to new blog using jquery or javascript Yuval A 2009-11-21T16:35:08Z 2009-11-21T16:35:08Z <p><strong>Don't do JS redirects.</strong> This is the worst possible option. JS redirects are not reliable (what if the user has diasbled JS?), they break browser history behavior and they have much better <em>and correct</em> alternatives.</p> <p>Prefereably, use one of these:</p> <ul> <li>Server-side HTTP redirect (code 301)</li> <li><code>&lt;meta&gt;</code> redirect (such as: <code>&lt;meta http-equiv="REFRESH" content="0;url=<a href="http://www.new-domain.com" rel="nofollow">http://www.new-domain.com</a>"&gt;</code>)</li> </ul> http://stackoverflow.com/questions/607863/do-you-find-java-util-logging-sufficient 6 Do you find java.util.logging sufficient? Yuval A 2009-03-03T19:51:37Z 2009-11-19T20:41:40Z <p>Per the title, do you find the default Java logging framework sufficient for your needs?</p> <p>Do you use alternative logging services such as <a href="http://logging.apache.org/log4j/" rel="nofollow">log4j</a> or others? If so, why? I'd like to hear any advice you have regarding logging requirements in different types of projects, and when integrating frameworks is actually necessary and/or useful.</p> http://stackoverflow.com/questions/1117018/should-universities-be-teaching-scm-methodology-skills 13 Should universities be teaching SCM/methodology skills? Yuval A 2009-07-12T21:46:19Z 2009-11-17T04:11:06Z <p>Most CS programs these days do not teach skills such as:</p> <ul> <li>source control</li> <li>configuration management</li> <li>integration (and continuous integration)</li> <li>code readability (AKA how to comment <em>correctly</em>)</li> <li>programming methodologies</li> <li>bug tracking</li> </ul> <p>These topics are considered <em>easy enough</em> to be taught on-the-job (OTJ), even though mastering them can be very complex.</p> <p>Should these skills be taught in universities? Can a real-world programmer really do without these? Is it sufficient to learn them OTJ, as part of a first-year programming experience?</p> http://stackoverflow.com/questions/1738923/number-of-calls-for-nth-fibonacci-number/1738951#1738951 1 Answer by Yuval A for Number of calls for nth Fibonacci number. Yuval A 2009-11-15T21:42:23Z 2009-11-15T21:49:08Z <p>This is a classic problem for solving with <a href="http://en.wikipedia.org/wiki/Recurrence%5Frelation" rel="nofollow"><strong>Recurrence Relations</strong></a>.</p> <p>Specifically, the fibonacci problem has the following parameters:</p> <pre><code>f(0) = 1 f(1) = 1 f(n) = f(n-1) + f(n-2) </code></pre> <p>Once you master solving recurrences, you'll have no problem reaching the solution (which, incidently, is exactly the same as <code>fib(n)</code>).</p> http://stackoverflow.com/questions/457775/does-java-need-tuples 9 Does Java need tuples? Yuval A 2009-01-19T14:37:58Z 2009-11-14T23:02:47Z <p><a href="http://stackoverflow.com/questions/457629/how-to-return-multiple-objects-from-a-java-method">This question</a> got me re-thinking about something that always bothered me:</p> <p><strong>Does Java need tuples?</strong></p> <p>Do you feel the lack of them in your day-to-day work? Do you think tuples would simplify otherwise complex data structures you find yourself implementing?</p> http://stackoverflow.com/questions/1723250/intermediate-in-javascript-looking-for-a-book-to-learning-object-oriented-program/1723316#1723316 1 Answer by Yuval A for intermediate in javascript looking for a book to learning object oriented programming Yuval A 2009-11-12T16:02:37Z 2009-11-12T16:02:37Z <p>It is important to distinguish between <em>classic</em> OOP and OO JavaScript.</p> <p>While some languages such as Java, C# and Python are good for learning OO concepts such as classes, objects, inheritance and polymorphism - JavaScript is not one of those languages.</p> <p>JavaScript can have object-oriented features but through the use of prototypes. It gets more complicated due to the complex data structures.</p> <p>I think you should define exactly what you are looking after. If it's learning object-oriented concepts, you should go with a classic OO language to learn the basic concepts, and only then continue on to OOJS.</p> http://stackoverflow.com/questions/1722964/when-to-use-try-catch-blocks/1722991#1722991 11 Answer by Yuval A for When to use try/catch blocks? Yuval A 2009-11-12T15:22:32Z 2009-11-12T15:22:32Z <p>The basic rule of thumb for catching exceptions is to <strong>catch exceptions <em>if and only if</em> you have a meaningful way of handling them</strong>.</p> <p><em>Don't</em> catch an exception if you're only going to log the exception and throw it up the stack. It serves no meaning and clutters code.</p> <p><em>Do</em> catch an exception when you are expecting a failure in a specific part of your code, and if you have a fallback for it.</p> <p>Of course you always have the case of checked exceptions which require you to use try/catch blocks, in which case you have no other choice. Even with a checked exception, make sure you log properly and handle as cleanly as possible.</p> http://stackoverflow.com/questions/1722901/is-the-first-entry-in-sys-path-supposed-to-represent-the-current-working-director/1722915#1722915 4 Answer by Yuval A for Is the first entry in sys.path supposed to represent the current working directory? Yuval A 2009-11-12T15:14:25Z 2009-11-12T15:14:25Z <p>This is by design:</p> <blockquote> <p>As initialized upon program startup, the first item of this list, <code>path[0]</code>, is the directory containing the script that was used to invoke the Python interpreter.</p> </blockquote> <p><em>source: <a href="http://docs.python.org/library/sys.html#sys.path" rel="nofollow">http://docs.python.org/library/sys.html#sys.path</a></em></p> http://stackoverflow.com/questions/1720978/best-algorithm-to-find-all-possible-permutation-of-given-binary-bits/1721007#1721007 0 Answer by Yuval A for Best algorithm to find all possible permutation of given binary bits Yuval A 2009-11-12T09:27:26Z 2009-11-12T09:27:26Z <p>There are many permutation generating algorithms you can use, such as this one:</p> <pre><code>#include &lt;stdio.h&gt; void print(const int *v, const int size) { if (v != 0) { for (int i = 0; i &lt; size; i++) { printf("%4d", v[i] ); } printf("\n"); } } // print void visit(int *Value, int N, int k) { static level = -1; level = level+1; Value[k] = level; if (level == N) print(Value, N); else for (int i = 0; i &lt; N; i++) if (Value[i] == 0) visit(Value, N, i); level = level-1; Value[k] = 0; } main() { const int N = 4; int Value[N]; for (int i = 0; i &lt; N; i++) { Value[i] = 0; } visit(Value, N, 0); } </code></pre> <p><em>source:</em> <a href="http://www.bearcave.com/random%5Fhacks/permute.html" rel="nofollow"><em><a href="http://www.bearcave.com/random%5Fhacks/permute.html" rel="nofollow">http://www.bearcave.com/random%5Fhacks/permute.html</a></em></a></p> <p>Make sure you adapt the relevant constants to your needs (binary number, 7 bits, etc...)</p> http://stackoverflow.com/questions/1706237/overview-tutorial-on-moving-from-dl-util-concurrent-to-java-util-concurrent/1706254#1706254 0 Answer by Yuval A for Overview / Tutorial on moving from dl.util.concurrent to java.util.concurrent Yuval A 2009-11-10T07:49:14Z 2009-11-10T07:49:14Z <p>I doubt you could not find any resources on the web for this problem.</p> <p>Just as an example:</p> <ul> <li><a href="http://java.sun.com/developer/technicalArticles/J2SE/concurrency/" rel="nofollow">A high-level overview by Sun</a></li> <li><a href="http://www.cs.drexel.edu/~shartley/ConcProgJava/" rel="nofollow">A short tutorial covering the basics</a></li> </ul> <p>Like you said - there are many a fine books on this subject, and each one will get you where you need. Get <a href="http://rads.stackoverflow.com/amzn/click/0201310090" rel="nofollow">one of those</a>, read it beginning to end, and that's all you need to know.</p> http://stackoverflow.com/questions/1704425/how-to-prevent-pages-scroll-position-reset-after-dom-manipulation/1704438#1704438 1 Answer by Yuval A for How to prevent page's scroll position reset after DOM manipulation? Yuval A 2009-11-09T22:39:27Z 2009-11-09T22:39:27Z <p>If the functions are being called from a link you might have an internal anchor in your link:</p> <pre><code>http://www.website.com/page.html# </code></pre> <p>This is causing said behavior. The default behavior is that if an anchor does not exist, the page scroll position jumps to the top (<code>scrollTop = 0</code>).</p> <p>If this happens on every function call regardless of the source, then this can be crossed off the list.</p> http://stackoverflow.com/questions/1699713/installers-for-windows/1699767#1699767 4 Answer by Yuval A for Installers for windows Yuval A 2009-11-09T08:37:28Z 2009-11-09T08:37:28Z <p>Check out <a href="http://nsis.sourceforge.net/Main%5FPage" rel="nofollow"><strong>NSIS</strong></a>. It is scriptable and easy to use.</p> <p>For Maven integration use the <a href="http://maven.apache.org/maven-1.x/plugins/nsis/" rel="nofollow">Maven NSIS Plug-in</a>.</p> http://stackoverflow.com/questions/1694885/timezones-in-java/1694920#1694920 0 Answer by Yuval A for TimeZones in Java Yuval A 2009-11-08T00:30:03Z 2009-11-08T00:30:03Z <p>If you need the granularity of choosing exactly how the list would look, I would use the best hard-coded list I could find (<a href="http://publib.boulder.ibm.com/tividd/td/TWS/SC32-1274-02/en%5FUS/HTML/SRF%5Fmst273.htm" rel="nofollow">this is a good example</a>) and ensure it is displayed and converted as precisely as possible.</p> <p>Just keep in mind that each one of those 585 time zones does have a semantic meaning (such as DST for example) and users might want to choose the best time zone for them. Although I do agree that list can be much shorter.</p> http://stackoverflow.com/questions/1692678/comparing-objects/1692689#1692689 1 Answer by Yuval A for comparing objects Yuval A 2009-11-07T10:57:03Z 2009-11-07T10:57:03Z <p>Well, you will have to make <code>O(n^2)</code> comparisons in any case, the question is how clean the code will be.</p> <p>What you are suggesting now is good for 6 boolean comparisons, what if you have 30 subjects? Will you maintain the hundredss of comparisons you need to make?</p> <p>Keeping it simple, I would prefer keeping the grades in a <code>List</code> or a <code>Map</code> and then do a nested iteration:</p> <pre><code>for (int gradeA : thisStudent.getGrades()) { for (int gradeB : otherStudent.getGrades()) { if (gradeA == gradeB) return false; } } return true; </code></pre> <p>Of course this code needs to be adapted to your scenario (different iteration on List vs. Map, optimization by not checking each grade every time, extracting a method out of this, etc...)</p> http://stackoverflow.com/questions/1658229/scheme-lisp-nested-loops-and-recursion 2 Scheme/Lisp nested loops and recursion Yuval A 2009-11-01T20:31:34Z 2009-11-06T15:00:14Z <p>I'm trying to solve a problem in Scheme which is demanding me to use a nested loop or a nested recursion.</p> <p>e.g. I have two lists which I have to check a condition on their Cartesian product.</p> <p>What is the best way to approach these types of problems? Any pointers on how to simplify these types of functions?</p> <p><hr> I'll elaborate a bit, since my intent might not be clear enough.</p> <p>A regular recursive function might look like this:</p> <pre><code>(define (factorial n) (factorial-impl n 1)) (define (factorial-impl n t) (if (eq? n 0) t (factorial-impl (- n 1) (* t n)))) </code></pre> <p>Trying to write a similar function but with nested recursion introduces a new level of complexity to the code, and I was wondering what the basic pattern is for these types of functions, as it can get very ugly, very fast.</p> <p>As a specific example, I'm looking for the easiest way to visit all the items in a cartesian product of two lists.</p> http://stackoverflow.com/questions/1681144/what-exactly-is-the-danger-of-using-magic-debug-values-such-as-0xdeadbeef-as-li 1 What exactly is the danger of using magic debug values (such as 0xDEADBEEF) as literals? Yuval A 2009-11-05T15:08:48Z 2009-11-05T17:27:36Z <p>It goes without saying that using hard-coded, hex literal pointers is a disaster:</p> <pre><code>int *i = 0xDEADBEEF; // god knows if that location is available </code></pre> <p>However, what exactly is the danger in using hex literals as variable <em>values</em>?</p> <pre><code>int i = 0xDEADBEEF; // what can go wrong? </code></pre> <p>If these values are indeed "dangerous" due to their <a href="http://en.wikipedia.org/wiki/Magic%5Fnumber%5F%28programming%29#Magic%5Fdebug%5Fvalues" rel="nofollow">use in various debugging scenarios</a>, then this means that even if I do not use these literals, any program that during runtime happens to stumble upon one of these values might crash.</p> <p>Anyone care to explain the real dangers of using hex literals?</p> <p><hr></p> <p><strong>Edit:</strong> just to clarify, I am not referring to the general use of constants in source code. I am specifically talking about <strong>debug-scenario issues</strong> that might come up to the use of hex values, with the specific example of <code>0xDEADBEEF</code>.</p> http://stackoverflow.com/questions/1681542/develop-to-vs-develop-for-vs-develop-on/1681580#1681580 4 Answer by Yuval A for "develop to" vs. "develop for" vs. "develop on" Yuval A 2009-11-05T16:06:29Z 2009-11-05T16:06:29Z <p>Developing <strong>for</strong> a product (iPhone, Android).</p> <p>Developing <strong>with</strong>/<strong>in</strong> a language (C++, Java).</p> <p>Developing <strong>on</strong> a platform or framework (Drupal, Django, .NET).</p> http://stackoverflow.com/questions/1680365/integer-to-ip-address-c/1680380#1680380 3 Answer by Yuval A for Integer to IP Address - C Yuval A 2009-11-05T12:52:59Z 2009-11-05T14:06:30Z <p>Hint: break up the 32-bit integer to 4 8-bit integers, and print them out.</p> <p>Something along the lines of this (not compiled, YMMV):</p> <pre><code>int i = 0xDEADBEEF; // some 32-bit integer printf("%i.%i.%i.%i", (i &gt;&gt; 24) &amp; 0xFF, (i &gt;&gt; 16) &amp; 0xFF, (i &gt;&gt; 8) &amp; 0xFF, i &amp; 0xFF); </code></pre> http://stackoverflow.com/questions/1680189/getters-on-an-immutable-type/1680196#1680196 5 Answer by Yuval A for Getters on an immutable type Yuval A 2009-11-05T12:17:48Z 2009-11-05T12:23:55Z <p>Even for immutable types, the convention <code>getX()</code> still stands. Some examples:</p> <ul> <li><code>java.lang.Integer.getInteger()</code></li> <li><code>java.lang.Boolean.getBoolean()</code></li> </ul> <p>It is true that there are also many examples such as <code>java.lang.String.length()</code>, but the common convention is to use <em>getX</em>. Just as mentioned in the answer below, it is crucial to separate between an atomic <em>get</em> operation, and a method which does some calculations on the data.</p> <p>Also worth mentioning that plain java beans in many frameworks depend on the fact that getters/setters are conveniently named <em>getX</em> and <em>setX</em>.</p> http://stackoverflow.com/questions/1677011/when-converting-to-a-red-black-tree-is-there-any-reason-to-choose-one-form-over/1677062#1677062 1 Answer by Yuval A for When converting to a red-black tree, is there any reason to choose one form over another? Yuval A 2009-11-04T22:17:34Z 2009-11-04T22:24:46Z <p>The short answer is: <strong>it depends</strong>.</p> <p>Basically, any valid tree will suffice. However, in terms of <a href="http://en.wikipedia.org/wiki/Amortized%5Fanalysis" rel="nofollow">amortized analysis</a> - it might very possibly be that you will want to choose the most correct tree that in the long run will give you the most optimized behavior.</p> <p>e.g. if you always choose a valid tree, but one that is prone to lots of balancing operations, you will get bad amortized performance. An obvious example is a fully-black tree, which is perfectly valid, yet performs bad when modified.</p> <p>It depends, because this usually will be application-specific.</p> http://stackoverflow.com/questions/654275/favorite-online-lectures-and-presentations 43 Favorite online lectures and presentations Yuval A 2009-03-17T13:34:15Z 2009-11-03T20:06:02Z <p>What are your favorite online lectures, presentations and talks?</p> <p>A few rules:</p> <ul> <li><strong><em>Must</strong> be programming or software related.</em></li> <li>try to keep this non-academic. There are many online academic lectures, but let's try and keep this <em>fun</em>.</li> <li>try to post freely available stuff (YouTube, etc...)</li> <li>try to post specific talks, not just "google talks have good things...". As much as that is true :)</li> <li>feel free to edit, this is wiki :)</li> </ul> <p>Main goal is to make this a wiki post summarizing the best online lectures.</p> http://stackoverflow.com/questions/1626918/continuously-sending-data-through-java-socket/1626969#1626969 1 Answer by Yuval A for Continuously sending data through Java socket Yuval A 2009-10-26T19:53:44Z 2009-10-26T19:53:44Z <p>Using simple socket programming, this is not a problem at all:</p> <ul> <li>Open a TCP connection between server and client</li> <li>Send the data using the connections <code>InputStream</code> and <code>OutputStream</code></li> <li>Close the connection in case of any error/disconnection</li> </ul> <p>Note that this solution is not very scalable, and if this needs to be scaled you will need to use non-blocking IO (so that your server does not choke on all the open connections and the running threads)</p> http://stackoverflow.com/questions/1620803/accesing-an-remote-enterprise-bean-within-a-simple-java-class/1620817#1620817 1 Answer by Yuval A for Accesing an remote enterprise bean within a simple Java class Yuval A 2009-10-25T12:45:53Z 2009-10-25T12:51:28Z <p>Looks like you have no RMI registry (i.e. active server) you are <code>lookingUp()</code> against.</p> <p>You supplied no <code>Context.INITIAL_CONTEXT_FACTORY</code> variable, so the lookup should be a valid URL, which it is not.</p> <p>Hence, you should put something like this on your <code>env</code> (on the <code>iCtx</code>):</p> <pre><code>env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.rmi.registry.RegistryContextFactory"); </code></pre> <p>I suggest you read the the simple examples over at <a href="http://java.sun.com/j2se/1.5.0/docs/guide/jndi/jndi-rmi.html" rel="nofollow">http://java.sun.com/j2se/1.5.0/docs/guide/jndi/jndi-rmi.html</a></p> http://stackoverflow.com/questions/1815258/how-do-i-check-the-index-of-a-an-element-in-a-list-python/1815271#1815271 Comment by Yuval A on How do I check the index of a an element in a list? (Python) Yuval A 2009-11-29T11:20:58Z 2009-11-29T11:20:58Z No downvoting - but this is not pythonic. See Nick's answer for the <i>right</i> way of doing this. http://stackoverflow.com/questions/1815036/need-to-write-interrupt-based-java-module Comment by Yuval A on Need to write interrupt based java module Yuval A 2009-11-29T08:45:33Z 2009-11-29T08:45:33Z Cool. Good luck. &lt;/sarcasm&gt; http://stackoverflow.com/questions/1815031/please-help-me-understand-big-o Comment by Yuval A on Please help me understand Big-O? Yuval A 2009-11-29T08:44:00Z 2009-11-29T08:44:00Z -1. No. No one will solve your homework for you. Show us your steps and where you got stuck and we can point in the right direction. http://stackoverflow.com/questions/1775369/applying-a-symbol-as-a-procedure/1803376#1803376 Comment by Yuval A on Applying a symbol as a procedure Yuval A 2009-11-26T15:17:51Z 2009-11-26T15:17:51Z @Ben - you missed the part where the <code>+</code> is quoted, hence, it is not directly a procedure until it is evaluated. http://stackoverflow.com/questions/1802123/can-we-convert-a-byte-array-into-an-inputstream-in-java/1802126#1802126 Comment by Yuval A on Can we convert a byte array into an InputStream in Java? Yuval A 2009-11-26T08:38:23Z 2009-11-26T08:38:23Z +1 - Enjoy your new 10K status :) http://stackoverflow.com/questions/1801907/joda-time-first-day-of-week Comment by Yuval A on Joda Time: First day of week?? Yuval A 2009-11-26T08:37:26Z 2009-11-26T08:37:26Z Dupe: <a href="http://stackoverflow.com/questions/835895/joda-time-first-day-in-this-years-iso-week-1" rel="nofollow" title="joda time first day in this years iso week 1">stackoverflow.com/questions/835895/&hellip;</a> http://stackoverflow.com/questions/1797599/working-around-java-jit-bug Comment by Yuval A on Working around Java JIT bug Yuval A 2009-11-25T15:43:01Z 2009-11-25T15:43:01Z @omer - nice suggestion. +1 http://stackoverflow.com/questions/1797287/virtual-function-vtable Comment by Yuval A on virtual function - vtable Yuval A 2009-11-25T14:57:03Z 2009-11-25T14:57:03Z Idan - I tried to make your question more readable, please elaborate if I got it wrong. http://stackoverflow.com/questions/1778034/jsp-not-compiling-on-godaddy Comment by Yuval A on JSP not compiling on GODADDY Yuval A 2009-11-22T21:00:38Z 2009-11-22T21:00:38Z please upload your JSP file http://stackoverflow.com/questions/1776306/what-kind-of-algorithms-have-shortened-running-time-for-longer-inputs Comment by Yuval A on What kind of algorithms have shortened running time for longer inputs? Yuval A 2009-11-21T18:39:35Z 2009-11-21T18:39:35Z you are talking about O(1/n) algorithms, closing as dupe http://stackoverflow.com/questions/1775369/applying-a-symbol-as-a-procedure/1775376#1775376 Comment by Yuval A on Applying a symbol as a procedure Yuval A 2009-11-21T12:39:43Z 2009-11-21T12:39:43Z So simple, dunno how I missed that out. Thx! :) http://stackoverflow.com/questions/1738923/number-of-calls-for-nth-fibonacci-number/1738951#1738951 Comment by Yuval A on Number of calls for nth Fibonacci number. Yuval A 2009-11-15T23:08:18Z 2009-11-15T23:08:18Z Explain the -1. http://stackoverflow.com/questions/1731784/boost-how-do-we-specify-any-port-for-a-tcp-server Comment by Yuval A on Boost: how do we specify "any port" for a TCP server? Yuval A 2009-11-13T20:45:05Z 2009-11-13T20:45:05Z Define &quot;any available port&quot; http://stackoverflow.com/questions/1723120/matlab-polynomials Comment by Yuval A on MATLAB: Polynomials Yuval A 2009-11-12T15:51:56Z 2009-11-12T15:51:56Z Nobody is going to do your homework for you, try to write some code, see where you are stuck, and come back with a specific question. http://stackoverflow.com/questions/1722964/when-to-use-try-catch-blocks/1722991#1722991 Comment by Yuval A on When to use try/catch blocks? Yuval A 2009-11-12T15:29:02Z 2009-11-12T15:29:02Z @Manu - that is not always the way to go. Imagine you are a sys admin, and you open a log file only to find hundreds of useless traces all saying &quot;exception in XXX&quot;. This has a big impact on TCO, and usually does not have any benefit. Log in the most appropriate place so that a sys admin has a meaningful trace to work with.