User Uri - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T00:44:20Zhttp://stackoverflow.com/feeds/user/23072http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1835523/is-there-a-way-to-make-eclipse-run-a-junit-test-mulitple-times-until-failure0Is there a way to make Eclipse run a JUnit test mulitple times until failure?Uri2009-12-02T20:19:42Z2009-12-02T20:45:05Z
<p>We occasionally have bugs that appear once in every X runs. Before people check in stuff (where it is automatically JUnit'd), our devs need to pass JUnit locally via Eclipse. </p>
<p>Is there some convenient way (built in or high-quality Plugin) to make Eclipse run the same test X times and stop if there's a failure? An alternative to just clicking Run X times?</p>
<p>Note that I'm looking for something in the UI (e.g., right click and say "Run X times" instead of just "Run"). </p>
http://stackoverflow.com/questions/1828708/how-to-learn-to-like-visual-studio-and-heavy-duty-ides/1828785#18287853Answer by Uri for How to learn to like Visual Studio and heavy-duty IDEsUri2009-12-01T20:42:55Z2009-12-01T20:42:55Z<p>I'm an avid Eclipse user (for Java), and I admit, it is very heavy. </p>
<p>You're not going to like all the features - though you can turn many of them off, at least in Eclipse. </p>
<p>I like automatic refactoring and I like auto completion (or content assist). But I also drive an automatic transmission. Sometimes I miss stick-shift, but most of the time I'm just trying to pound my way through something and it saves me time and effort. In the same way, sometimes I like picking my own methods, but I enjoy having Eclipse figure it out often. </p>
<p>To me the integrated debugger is the best feature of all these IDEs. I also like having tight SVN integration (or CVS/VSS/etc). I was not impressed by offerings outside the IDE. </p>
<p>I think in many cases, you have to find the one plugin that changes your life. To me it is things like the Java element search (better than grepping), and a plugin that I have written. For many people, something like Mylyn is perfect (it supposedly finds the most relevant files all the time). You can't really get something like it without an IDE, so you make the choice whether to use one or not. </p>
<p>In the end, the goal is to be productive and enjoy what you do. Deciding that you must or must not use a tool is more of a religion argument than something productive. Most people swear by Word, and I use LaTeX for everything. To each his own. </p>
http://stackoverflow.com/questions/632808/why-is-vb6-still-so-widely-used8Why is VB6 still so widely used?Uri2009-03-11T00:17:37Z2009-12-01T19:36:21Z
<p>Note that this question is not meant to start an argument, I am genuinely curious:</p>
<p>Back in the 90s I used to work for a large CPU maker and we were building some debuggers. All our core logic was in C++, but the GUI was made in VB6. We couldn't figure out MFC and it was too much a hassle. We glued together VB6 and C++ using COM which we created via ATL.</p>
<p>Fast forward to 2009, having been mostly in the Java world I am looking at job boards and seeing more VB6 jobs than I expected. I genuinely thought that VB6 was extinct, especially since VB.NET supposedly solved a lot of the problems with the VB6 which at the time felt a lot like a scripting language than a true OOP language. </p>
<p>So what happened? Why is new code still written in it? Isn't there a better way to glue C++ and VB.NET? </p>
<p>Note that I haven't used VB.NET, I just understand that it is a much more "stricter" language than VB6 was. Even with Option Explicit or whatever it was. </p>
http://stackoverflow.com/questions/1827791/why-are-consultants-made-fun-of/1827801#18278010Answer by Uri for Why are consultants made fun of?Uri2009-12-01T17:52:08Z2009-12-01T17:52:08Z<p>I think it's mostly management consultants. Watch "Office Space"...</p>
<p>For IT consultants, sometimes you have some really bad developers who can't maintain a job in one place, so they go around leeching on different companies. And sometimes they just leave after having created a mess and become consultants on their own code to their previous company. Read the daily WTF for examples.</p>
<p>That being said, I have met many brilliant software consultants, but these are usually folks who can financially afford the lifestyle (and lack of workplace benefits) of going solo.</p>
http://stackoverflow.com/questions/1813905/if-you-dont-code-for-fun-you-cant-be-a-good-programmer/1814162#18141620Answer by Uri for If you don't code for fun, you can't be a good programmer?Uri2009-11-28T23:45:30Z2009-11-28T23:45:30Z<p>I disagree. It's not required.</p>
<p>Personally, I used to code for fun (when I had time). I also sometimes (not all the time) enjoy my paid day job when coding. It certainly helps to enjoy what you do.</p>
<p>That being said, I have met (and taught) my share of people who program well but simply don't enjoy it and would never think of doing it for fun. Just like some civil engineers and architects liked building hugely complex things with Lego as kids, while others just studied it in college and became good at it without wanting to built stuff outside work.</p>
<p>In my view there is an "intuition" that really good developers have and others lack. People who enjoy development and are good at it often get to expose that intuition in themselves and then tread down this path. However, school and work can discover this intuition in other people as well, even if they never enjoy applying it. </p>
<p>I don't think age has much to do with it. It just gives you less free time to do fun stuff anyway, it doesn't eliminate your wish to do those things if you had free time. </p>
http://stackoverflow.com/questions/1814035/documentation-style/1814050#18140501Answer by Uri for Documentation styleUri2009-11-28T23:00:23Z2009-11-28T23:00:23Z<p>Others will probably tell you more specific stuff about PHP.</p>
<p>However, I would argue that the most important thing to figure out is "who is going to read this and when". If you are writing some major API that you expect a lot of people to use and read, you need to offer a complete specification. A nice formal style that shows clearly what the parameters are, what the return values are, etc., may almost be mandatory. </p>
<p>If you are not writing a world-class API but rather internal code, think about your readers. Most people who are ever going to read this are going to gloss through the code. They're going to instantiate a class or call a method to accomplish something, and they wouldn't care two cents about everything that they can probably figure out on their own. You're going to get only a second or two of attention while they skimming, and you have to make the best use of this.</p>
<p>In these cases, a complete description, a full parameter listing, and so on are just going to be "visual noise". If you actually write something surprising or unique or important, it maybe missed. so you are better opting for just documenting what is unique, and not documenting otherwise. The presence of documentation would then be indicative to your reader that they actually want to read, rather than notice things that they expect otherwise.</p>
<p>Beyond that, I would argue that you should always carefully design your class and especially your function so that nobody needs to read the documentation. If somebody needs to read "the short description" to know what your function does or what it takes, you've done a bad job of naming it or distinguishing it from others. Documentation should be a last resort, for conveying things that there is just no way to make obvious in the signature.</p>
http://stackoverflow.com/questions/1813902/documenting-interfaces-and-their-implementation/1813923#18139235Answer by Uri for Documenting Interfaces and their implementationUri2009-11-28T22:07:12Z2009-11-28T22:07:12Z<p>I am not sure I fully understood your question (and I'm a Java, not C# developer), but it seems you are asking about what is essentially an issue of polymorphism: if somebody uses a method on an interface that is declared to throw X and Y, what happens if an implementation throws Z?</p>
<p>One thing to follow is the principle of conformance, that essentially says that a subtype should conform to the behavior of the supertype. That is, if you are documenting that your method in the interface can only throw exceptions of one type (e.g., null pointer exceptions), then your contract with callers is that this is the only thing they should watch for. If you throw something else, you could be surprising them. </p>
<p>Documenting things about a specific subtype in the supertype not a good idea since it creates needless coupling. I would be more concerned about the fact that an implementation may behave differently than the declaration since that might suggest the declaration is not fleshed out enough. </p>
<p>Try to think what are all the types of exceptions that your method could throw. Create supertypes for them, and then explicitly declare in your interface method (e.g., this method can throw some "calculation exception"). Then, in your implementation, throw a calculation exception with more details, or throw some subtype of the calculation exception that is specific to the implementation, you would still conform.</p>
http://stackoverflow.com/questions/1806184/java-equals-failing-for-sets-jgrapht/1806215#18062150Answer by Uri for Java: .equals() failing for sets (JGraphT)Uri2009-11-27T00:05:55Z2009-11-27T00:05:55Z<p>I'm not familiar with JGraphT, but there are two issues I can think of.</p>
<p>First, what does it mean for two sets of edges to be equivalent? What is it that makes two edges equivalent? If I create a graph, and create an identical graph separately, both might have the same structure. But if edge comparison of two matching edges uses the node identities, the two edges would not be "equal".</p>
<p>Second, I've noted this in the JavaDocs:</p>
<p>"The graph implementation may maintain a particular set ordering (e.g. via LinkedHashSet) for deterministic iteration, but this is not required. It is the responsibility of callers who rely on this behavior to only use graph implementations which support it."</p>
<p>I would try (at least for sanity) to make sure that the two sets contain each other, as it is possible that equals is not implemented correctly (e.g., it may take order into account).</p>
http://stackoverflow.com/questions/390703/what-is-the-purpose-of-the-expression-new-string-in-java7What is the purpose of the expression "new String(...)" in Java?Uri2008-12-24T03:57:38Z2009-11-26T12:09:30Z
<p>While looking at online code samples, I have sometimes come across an assignment of a String constant to a String object via the use of the new operator.</p>
<p>For example:</p>
<pre><code>String s;
...
s = new String("Hello World");
</code></pre>
<p>This, of course, compared to</p>
<pre><code>s = "Hello World";
</code></pre>
<p>I'm not familiar with this syntax and have no idea what the purpose or effect would be.
Since String constants typically get stored in the constant pool and then in whatever representation the JVM has for dealing with String constants, would anything even be allocated on the heap?</p>
http://stackoverflow.com/questions/664744/what-is-the-direction-of-stack-growth-in-most-modern-systems6What is the direction of stack growth in most modern systems?Uri2009-03-20T01:58:39Z2009-11-26T01:51:54Z
<p>I am preparing some training materials in C and I want my examples to fit the typical stack model.</p>
<p>What direction does a C stack grow in Linux, Windows, Mac OSX (PPC and x86), Solaris, and most recent Unixes? </p>
http://stackoverflow.com/questions/431777/funny-interesting-software-limitations-due-to-design-choices10Funny/Interesting software limitations due to design choicesUri2009-01-10T21:15:22Z2009-11-24T15:31:12Z
<p>I'm interested in stories (factual, preferably on well-known systems) about funny or interesting ways in which certain design or implementation decisions constrained the software as it was experienced by users.</p>
<p>For example, in the funny comment threads someone mentioned that in the original Doom game, doors opened vertically because the maps were static so walls couldn't move horizontally. Those sort of things. </p>
http://stackoverflow.com/questions/1788436/why-using-integration-tests-instead-of-unit-tests-is-a-bad-idea/1788468#17884681Answer by Uri for Why using Integration tests instead of unit tests is a bad idea?Uri2009-11-24T07:37:02Z2009-11-24T07:37:02Z<p>I think coverage is the main issue.</p>
<p>A unit test of a specific small component such as a method or at most a class is supposed to test that component in every legal scenario (of course, one abstracts equivalence classes but every major one should be covered). As a result, a change that breaks the established specification should be caught at this point.</p>
<p>In most cases, an integration uses only a subset of the possible scenarios for each subunit, so it is possible for malfunctioning units to still produce a program that initially integrates well. </p>
<p>It is typically difficult to achieve maximal coverage on the integration testing for all the reasons you specified below. Without unit tests, it is more likely that a change to a unit that essentially operates it in a new scenario would not be caught and might be missed in the integration testing. Even if it is not missed, pinpointing the problem may be extremely difficult.</p>
<p>I am not sure that most developers refer to unit tests as integration tests. My impression is that most developers understand the differences, which does not mean they practice either. </p>
http://stackoverflow.com/questions/1773352/java-why-does-calling-remove-on-a-list-throw-unsupportedoperation-exception/1773419#17734190Answer by Uri for Java: Why does calling `remove()` on a List throw UnsupportedOperation exception?Uri2009-11-20T21:42:48Z2009-11-20T21:42:48Z<p>The remove() method in the Collection interface is explicitly specified as an optional operation:</p>
<pre><code>remove(Object o)
Removes a single instance of the specified element from this collection, if it is present (optional operation).
</code></pre>
<p>Lists do not have to support in. In fact, there is no clear semantics for it. Lists are not meant for that sort of random-access. Rather than provide some default implementation that may be inefficient or inaccurate, you get the exception.</p>
<p>You can write your own utility method with a for-each loop to do this if it is critical. </p>
http://stackoverflow.com/questions/1772649/year-end-budget-what-development-software-should-be-considered/1772792#17727920Answer by Uri for Year end budget - what development software should be considered?Uri2009-11-20T19:41:51Z2009-11-20T19:41:51Z<p>Not really a development tool, but a second monitor and the graphic card to support it (if your workstations are not dual). IMHO access to a second monitor has a huge impact on productivity.</p>
http://stackoverflow.com/questions/1767957/paying-great-programmers-more-than-average-programmers/1771614#17716143Answer by Uri for Paying great programmers more than average programmersUri2009-11-20T16:23:27Z2009-11-20T16:34:40Z<p>I am not sure that compensating by productivity is so practical. For instance, I would rather see a developer who (if the timeline allows) may take longer but write something reusable with little technical debt that can be used and changed in the future. If we got measured by how fast we get the next short-term task done, when would we refactor? Why would we test? Tying compensation to short-term goals is how the economy got to this point. It would reverse positive trends in software development like testing by developers, since they can get more stuff and make bugs "a QA problem".</p>
<p>Now I would certainly love to be getting paid a lot more (especially considering education and such) rather than slightly above market.</p>
<p>However, I have come to accept the fact that unless you get to the upper echelons, developers who actually write code and have most of their experience in standard technologies rather than some unique, obscure, or extinct one, are simply a market commodity. There are too many of us, and the techniques for measuring our quality or contribution or talent are simply not there. At best, we could have come from a "top company" or a "top school". There could be companies like Fog Creek who actively hunt for superstars. But for the vast majority of companies, we are a commodity. </p>
<p>Companies are businesses, businesses are run by execs who control compensations, and execs only know how to poach and pay a lot to other execs, not technical people. That's because the people who can best evaluate technical talent are the technical people, which are merely means to an end for most of the execs. That's because most execs are one golf outing away from outsourcing our jobs and hiring some fancy consultant with "experience to manage an offshore team".</p>
<p>Anybody who is in this profession for the money in the US is in trouble. Anybody who expects to be reliably compensated for his talent in this profession is also probably in trouble. We could have used our talents to go to Law, Business, or Medical school; I believe many of us could have made it in. I'd like to think that most of us made the choice to not do so. </p>
http://stackoverflow.com/questions/1767366/translate-interviewese-please/1767417#17674172Answer by Uri for Translate Interviewese, PleaseUri2009-11-19T23:46:20Z2009-11-19T23:46:20Z<p>I would have to guess that this question is going to be closed since it's not directly programming related (or applicable for most cases).</p>
<p>In the end interviewing it's like dating. Not everyone you'll meet you will end up in a relationship with. </p>
<p>We've all (or at least most of us) been in a situation of a bad interview, and it's natural to reflect back on "what could have been". The unfortunate part of the whole process is that it's very subjective, depends a lot of luck, and often depends on interpersonal connections. In addition, issues like mood and workload affect interviewer attitude, and that's before we even get to the problematic but real areas of racism and biases. Even if you are perfect on the technical side, there might be a personality mismatch. </p>
<p>In my experience if I have a bad feeling about an interview, I'm probably right. There's also not much that you can do to change that. You can't go on second guessing, and you don't even know that he wasn't playing with your head. I never go into 80% of the questions on my list when I interview, but I don't mention that to the candidates. You just have to look past it and hope that the next interview will be better. Interviewers are different from each other. </p>
<p>Good luck!</p>
http://stackoverflow.com/questions/255442/which-parser-generator-to-teach-my-students11Which parser generator to teach my students?Uri2008-11-01T02:55:32Z2009-11-18T19:17:42Z
<p>I am teaching (with others) a relatively introductory course in computer science for IT professionals without a background in CS. Since I developed the course materials on automata and grammars, I am also responsible for teaching about compilers and compiler construction.</p>
<p>Years ago, when I studied compilation in college, all our examples came from Lex and Yacc. Are these still in widespread use? Is there something that is more commonly used for Java? The students are proficient in C and Java but have never used parser generators.</p>
<p>Any tips on what to teach would be appreciated</p>
http://stackoverflow.com/questions/1709929/is-there-a-way-in-the-eclipse-debugger-to-be-notified-when-the-state-of-a-java-ob2Is there a way in the Eclipse debugger to be notified when the state of a Java object changes?Uri2009-11-10T17:59:53Z2009-11-10T18:22:37Z
<p>I'm debugging some legacy code where we have a cached object that appears to be changed externally.</p>
<p>If I know the object identifier for it (while debugging), is there some way to "watch" it so that if some other code in the same thread or another thread attempts to modify its state it'll trigger my debug? </p>
<p>I can't use just an expression watch for it since there may be references to that object elsewhere and as there are many instances of the same class. </p>
http://stackoverflow.com/questions/1697215/what-is-your-favourite-java-api-annoyance/1697301#16973014Answer by Uri for What is your "favourite" Java API annoyance?Uri2009-11-08T17:47:03Z2009-11-08T18:05:03Z<p>Oh gosh... I read the JavaDocs of the entire JDK for my Ph.D. and found so many annoyances beyond what already annoyed me from day-to-day programming. </p>
<p>To name a few from my own experience though:</p>
<ol>
<li>Swing is too intertwined with AWT. IMHO it is a good example of when you have to give up on inheritance. </li>
<li>The text in the JavaDoc that provides instructions for people using a method in an interface or a base class is often mixed with the text for people overriding or implementing that method. No real way to overcome this since there is one javadoc per method, but they could have wrote this better. </li>
<li>Naming that doesn't convey everything (e.g., <code>Hashtable</code> vs. <code>HashMap</code> and the threading issues).</li>
<li>The date and calendar API. 'nuff said. </li>
</ol>
<p>That being said, Hindsight is 20/20. It's hard to come up with the perfect API the first time around, and even harder to rectify it while maintaining backward compatibility. </p>
http://stackoverflow.com/questions/1646671/is-it-possible-to-programmatically-generate-junit-test-cases-and-suites3Is it possible to programmatically generate JUnit test cases and suites?Uri2009-10-29T21:28:45Z2009-11-05T08:30:12Z
<p>I have to write a very large test suite for a complex set of business rules that are currently captured in several tabular forms (e.g., if parameters X Y Z are such and such, the value should be between V1 and V2). Each rule has a name and its own semantics.</p>
<p>My end goal is to have a test suite, organized into sub test suites, with a test case to each rule.</p>
<p>One option is to actually hard code all these rules as tests. That is ugly, time consuming, and inflexible.</p>
<p>Another is to write a Python script that would read the rule files and generate Java classes with the unit tests. I'd rather avoid this if I can. Another variation would be to use Jython.</p>
<p>Ideally, however I would like to have a test suite that would read the files, and would then define sub-suites and tests within them. Each of these tests might be initialized with certain values taken from the table files, run fixed entry points in our system, and then call some validator function on the results based on the expected value. </p>
<p>Is there a reasonable way to pull this off using only Java?</p>
<p>Update: I may have somewhat simplified our kind of rules. Some of them are indeed tabular (excel style), others are more fuzzy. The general question though remains as I'm probably not the first person to have this problem.</p>
http://stackoverflow.com/questions/1678305/accepted-practice-for-converting-an-object-to-and-from-a-string-in-java/1678413#16784130Answer by Uri for Accepted practice for converting an Object to and from a String in Java ?Uri2009-11-05T04:49:29Z2009-11-05T04:49:29Z<p>I agree with Oscar that XML might be the preferable form here, if you can tolerate large uncompressed file sizes. To elaborate on his answer, in my experience if you write a fairly straightforward utility class you can serialize your objects into XML with not too much work. To read them back, I would recommend Apache Digester which does a great job of rule-based interpretation.</p>
<p>I would only opt for other file formats if I cared about performance or file sizes, though I eprsonally in most cases prefer the flexibility of XML.</p>
http://stackoverflow.com/questions/1677993/java-inheritance-resolution-in-case-of-instance-methods-and-variables/1678023#16780233Answer by Uri for java inheritance resolution in case of instance methods and variables Uri2009-11-05T02:52:00Z2009-11-05T02:52:00Z<p>When you upcast an object, you don't actually change the content of the item you are referring to, just the way you treat it. So when you upcast c to parent and call please(), you invoke please() on a Parent, but the dynamic type is still a child, so what really gets invoked is the overridden version in child and "Child" is printed. </p>
<p>When you upcast c and refer to foo, you are not making a function call. The compiler can determine at compile time what you are referring to. In this case, the field foo of an object that has the type parent. Fields and static fields are not overridden. Instead, they are hidden. What you actually end up doing with this upcast is helping Java pick the hidden version (the one from Parent) rather than the one from child. Similarly, with hoo you get the version of the parent.</p>
<p>Here's some info from the JAva tutorial: <a href="http://java.sun.com/docs/books/tutorial/java/IandI/hidevariables.html" rel="nofollow">http://java.sun.com/docs/books/tutorial/java/IandI/hidevariables.html</a></p>
http://stackoverflow.com/questions/1674991/how-do-you-collaboratively-write-specs/1675817#16758171Answer by Uri for How do you collaboratively write specs?Uri2009-11-04T18:44:53Z2009-11-04T18:44:53Z<p>If you have an intranet or VPN, I would actually consider installing and using a small Wiki for these specs.</p>
<p>Compared to Google docs you get:</p>
<ol>
<li>Much better versioning and change tracking (IMHO)</li>
<li>Much easier to start new documents for subsections</li>
<li>An actual markup rather than WYSIWYG (a matter of taste, I prefer LaTeX to Word).</li>
<li>Possible to attach variety of other file types</li>
<li>Very easy to backup </li>
<li>Very easy to create an offline version</li>
<li>You don't have to worry about storing sensitive materials elsewhere. </li>
</ol>
<p>The disadvantage is that it is not WYSIWYG, which may or may not be an issue to you.</p>
<p>Of course, you can pick a Wiki implementation that supports a better editor, and possibly even a synchronous collaboration one. </p>
http://stackoverflow.com/questions/1675610/arguments-against-annotations/1675663#16756631Answer by Uri for Arguments Against AnnotationsUri2009-11-04T18:13:33Z2009-11-04T18:13:33Z<p>I personally feel that annotations have taken over too much and have blown up from their original and super useful purpose (e.g., minor things like indicating overridden method) into this crazy metaprogramming tool. I don't feel the JAva mechanism is robust enough to handle these clusters of annotations preceding each method.
For instance, I'm fighting with JUnit annotations these days because they restrict me in ways that I don't like</p>
<p>That being said, in my experience the XML based configuration isn't pretty either. So to quote South Park, you're choosing between a giant douche and a t*rd sandwich.</p>
<p>I think that the main decision you have to make is whether you are more comfortable with having a delocalization of the spring configuration (i.e., maintain two files instead of one), and whether you use tools or IDE plugins that benefit from the annotations. Another important question is whether the developers who will use or maintain your code truly understand annotations. </p>
http://stackoverflow.com/questions/1662722/whats-my-current-cursor-position/1662754#16627541Answer by Uri for What's my current cursor position?Uri2009-11-02T18:03:35Z2009-11-02T18:03:35Z<p>Some editors (such as the built in Java editor) display the current insertion point location in the status bar. However, if you use a third-party editor sch as SimplifIDE, you may have to check its own configuration for that option.</p>
<p>If you write your own editor, you could ask the editor to give you the selection provider, as the selection provider can also provide the current insertion point location.</p>
http://stackoverflow.com/questions/1645154/how-do-i-define-a-testsuite-without-using-suiteclasses-in-junit-4-51How do I define a TestSuite without using @SuiteClasses in Junit 4.5?Uri2009-10-29T17:00:03Z2009-10-29T17:35:54Z
<p>I'm trying to migrate to JUnit 4 and I'm not clear about the correct way to set up test suites.</p>
<p>I know how to set up a test suite with fixed tests using the @SuitesClasses annotation.</p>
<p>However, I want to have a top-level suite class, where I can programatically decide which test classes or suites I want to load. I know that there are addTest and addTestSuite operations in the TestSuite class.</p>
<p>However, if I define a TestSuite subclass with a constructor that attempts to add these tests and try to run it, I get an error "Must have SuiteClasses annotation". </p>
<p>Any idea how to do this? </p>
http://stackoverflow.com/questions/1633211/java-methods-that-look-like-public-static-f-extends-fieldf-densevectorf-va/1633249#16332491Answer by Uri for Java methods that look like: public static <F extends Field<F>> DenseVector<F> valueOf(F... elements)...what are they?Uri2009-10-27T19:49:08Z2009-10-27T19:49:08Z<p>These are called Generic types. They've been added in Java 5 and are similar to C++ templates.</p>
<p>The idea is that you define a collection of items of a particular type rather than something general. </p>
<p>This helps you avoid frequent downcasting. In older Java code, suppose that you knew your vector would contain only X's. Once you retrieved items out of that collection, you would just get Object, and you had to explicitly downcast it. </p>
<p>It is also safer because you can't put Ys into a vector of Xs, and clearer to read for the same reasons. </p>
<p>The story behinds the "extends" in these brackets is that you can define collections of "Xs and all their subtypes" that would still accept subtypes of X but reject Y.</p>
http://stackoverflow.com/questions/791533/why-do-you-program-in-assembly/791541#79154128Answer by Uri for Why do you program in assembly?Uri2009-04-26T20:25:32Z2009-10-27T12:40:44Z<p>I have not coded in assembly language for many years, but I can give several reasons that I frequently saw:</p>
<ul>
<li><p>Not all compilers can make use of certain CPU optimizations and instruction set (e.g., the new instruction sets that Intel adds once in a while). Waiting for compiler writers to catch up means losing a competitive advantage. </p></li>
<li><p>Easier to match actual code to known CPU architecture and optimization. For example, things you know about the fetching mechanism, caching, etc. This is supposed to be transparent to the developer, but the fact is that it is not, that's why compiler writers can optimize.</p></li>
<li><p>Certain hardware level accesses are only possible/practical via assembly language (e.g., when writing device driver).</p></li>
<li><p>Formal reasoning is sometimes actually easier for the assembly language than for the high-level language since you already know what the final or almost final layout of the code is. </p></li>
<li><p>Programming certain 3D graphic cards (circa late 1990s) in the absence of APIs was often more practical and efficient in assembly language, and sometimes not possible in other languages. But again, this involved really expert-level games based on the accelerator architecture like manually moving data in and out in certain order.</p></li>
</ul>
<p>I doubt many people use assembly language when a higher-level language would do, especially when that language is C. Hand-optimizing large amounts of general-purpose code is impractical. </p>
http://stackoverflow.com/questions/670353/when-teaching-c-is-it-better-to-teach-arrays-before-or-after-pointers12When teaching C, is it better to teach arrays before or after pointers?Uri2009-03-22T00:50:59Z2009-10-15T20:50:29Z
<p>For those of you with curriculum development experience: what is the best strategy regarding arrays?</p>
<p>I have seen some schools that teach arrays after variables and control structures, often before even teaching functions. This allows teaching of some rudimentary algorithms, etc. However, it then brings the problem of how to pass arrays to functions, so it is necessary to go back to arrays pointers are taught and patch things up.</p>
<p>Another option is to go from variables and control structures to functions, and then teach pointers, and once you have pointers, teach arrays from scratch, and then use that to get to dynamic memory allocation.</p>
<p>To me the second option makes more sense, because unlike simple variables, with arrays it is easy to "go out of bounds", but students who did not yet learn about memory and pointers may not understand what lies outside these bounds.</p>
<p>However, I'm interested to know what others think.</p>
http://stackoverflow.com/questions/693139/what-are-convincing-examples-where-pointer-arithmetic-is-preferable-to-array-subs3What are convincing examples where pointer arithmetic is preferable to array subscripting?Uri2009-03-28T17:19:37Z2009-10-15T15:44:38Z
<p>I'm preparing some slides for an introductory C class, and I'm trying to present good examples (and motivation) for using pointer arithmetic over array subscripting.</p>
<p>A lot of the examples I see in books are fairly equivalent. For example, many books show how to reverse the case of all values in a string, but with the exception of replacing an a[i] with a *p the code is identical.</p>
<p>I am looking for a good (and short) example with single-dimensional arrays where pointer arithmetic can produce significantly more elegant code. Any ideas?</p>
http://stackoverflow.com/questions/1835523/is-there-a-way-to-make-eclipse-run-a-junit-test-mulitple-times-until-failureComment by Uri on Is there a way to make Eclipse run a JUnit test mulitple times until failure?Uri2009-12-02T21:53:20Z2009-12-02T21:53:20Z@Peter: Primarily things like race conditions and unclean states. We're testing one part of a system against a bunch of services that are outside our control. http://stackoverflow.com/questions/1835523/is-there-a-way-to-make-eclipse-run-a-junit-test-mulitple-times-until-failure/1835615#1835615Comment by Uri on Is there a way to make Eclipse run a JUnit test mulitple times until failure?Uri2009-12-02T20:39:35Z2009-12-02T20:39:35ZYea, I tried something like this. But I was hoping for something directly in the UI. http://stackoverflow.com/questions/1835523/is-there-a-way-to-make-eclipse-run-a-junit-test-mulitple-times-until-failure/1835542#1835542Comment by Uri on Is there a way to make Eclipse run a JUnit test mulitple times until failure?Uri2009-12-02T20:34:12Z2009-12-02T20:34:12ZYea, but we've got a whole test suite where multiple people keep adding tests... On the build server we do have a loop... I was hoping Eclipse had something.
http://stackoverflow.com/questions/1813902/documenting-interfaces-and-their-implementation/1813974#1813974Comment by Uri on Documenting Interfaces and their implementationUri2009-11-28T23:03:39Z2009-11-28T23:03:39ZI agree with Rob. I would also say that in my experience, too many exception subtypes don't really add much. Most people would prefer an exception object that is initialized with more meaningful state data, even a better error message. I use typed exceptions if I want to clarify I expect someone to recover from certain errors. http://stackoverflow.com/questions/1767957/paying-great-programmers-more-than-average-programmers/1771614#1771614Comment by Uri on Paying great programmers more than average programmersUri2009-11-20T19:08:27Z2009-11-20T19:08:27ZMy wife is in the humanities... Unfortunately I know... http://stackoverflow.com/questions/1767957/paying-great-programmers-more-than-average-programmers/1771141#1771141Comment by Uri on Paying great programmers more than average programmersUri2009-11-20T16:37:08Z2009-11-20T16:37:08ZI think that in the US, self employment and contracting have very little to do with talent but rather with age and family status. If you live in the US, have a family, and your spouse does not have group health care coverage or if your are the primary breadwinner, you don't have a practical option (if you are averse to risks) to go solo. This was less of a problem in my home country, where the state covers health care and things like that. http://stackoverflow.com/questions/956771/eclipse-cleanup-code-style-for-entire-package-class-setComment by Uri on Eclipse cleanup code-style for entire package/class setUri2009-11-19T01:49:09Z2009-11-19T01:49:09Z@JeeBee: Not that I'm aware off. It would be great to have a standard "do not reformat" option for the times you specifically want to do something fancy with tabulations. http://stackoverflow.com/questions/1709929/is-there-a-way-in-the-eclipse-debugger-to-be-notified-when-the-state-of-a-java-obComment by Uri on Is there a way in the Eclipse debugger to be notified when the state of a Java object changes?Uri2009-11-10T18:53:17Z2009-11-10T18:53:17ZThe properties are manipulated directly (I DID NOT write this code...)http://stackoverflow.com/questions/1709929/is-there-a-way-in-the-eclipse-debugger-to-be-notified-when-the-state-of-a-java-ob/1710013#1710013Comment by Uri on Is there a way in the Eclipse debugger to be notified when the state of a Java object changes?Uri2009-11-10T18:38:50Z2009-11-10T18:38:50Z@BallusC: If only whoever wrote this code actually used getters and setters :) http://stackoverflow.com/questions/1459190/which-out-of-python-ruby-f-is-better-for-learning-as-first-programming-langu/1459209#1459209Comment by Uri on Which out of Python, Ruby, F# is better for learning as first programming language with dynamic type system?Uri2009-11-08T03:22:55Z2009-11-08T03:22:55ZIf you pick up Python, I would recommend deciding between 3 and 2. There are minor differences. I find 3 more elegant, but most libraries don't support it, so you might be better of with 3. I can tell you from experience that it is super easy to pick up, but incredibly annoying to debug. Make sure to get a good IDE (like PyDev) and arm yourself with a lot of patience. http://stackoverflow.com/questions/1646665/dissertation-about-the-dangers-of-modern-day-abstractions-of-software-developmentComment by Uri on Dissertation about the Dangers of Modern Day Abstractions of Software DevelopmentUri2009-11-05T02:54:50Z2009-11-05T02:54:50ZMake sure you are scoping your work and contribution. A thorough treatment of this subject can easily degenerate into a masters thesis or even a PhD. http://stackoverflow.com/questions/1675610/arguments-against-annotations/1675663#1675663Comment by Uri on Arguments Against AnnotationsUri2009-11-05T02:46:46Z2009-11-05T02:46:46Z@Pascal: I've mostly used Hibernate, not Spring, and I found the XML version to be a significant pain, with the annotations being a little easier as long as I only used a precious few. My impression from Spring is that the potential for crazy constructs that nobody understands is higher... http://stackoverflow.com/questions/1677721/evidence-that-unit-tests-are-good-or-badComment by Uri on Evidence that unit tests are good or badUri2009-11-05T01:24:45Z2009-11-05T01:24:45ZExcellent question. I know there were various studies of aspects of agile such as pair programming that demonstrated effectiveness, but I'm not sure about unit testing, probably because no two people do it the same way. http://stackoverflow.com/questions/1674991/how-do-you-collaboratively-write-specsComment by Uri on How do you collaboratively write specs?Uri2009-11-04T18:41:27Z2009-11-04T18:41:27ZHow is this not programming related?http://stackoverflow.com/questions/398546/technical-tips-for-writing-great-javadoc/398646#398646Comment by Uri on Technical tips for writing great JavaDocUri2009-11-04T16:55:03Z2009-11-04T16:55:03Z@Ryan: The stuff that's online is somewhat outdated. I've been dealing with a full time job and a new baby, so I haven't had many opportunities for public releases. PM me if you'd like to try this out or just see some of the examples we've seen of that in APIs