User Kevin Peterson - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T18:51:30Zhttp://stackoverflow.com/feeds/user/88313http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1786871/can-java-floats-be-sorted-by-their-byte-representations0Can java floats be sorted by their byte representations?Kevin Peterson2009-11-23T23:46:55Z2009-11-24T07:05:18Z
<p>I'm working in Hadoop, and I need to provide a comparator to sort objects as raw network order byte arrays. This is easy for me to do with integers -- I just compare each byte in order. I also need to do this for floats. I think, but I can't find a reference, that the IEEE 754 format for floats used by Java can be sorted by just comparing each byte as a signed 8 bit value.</p>
<p>Can anyone confirm or refute this?</p>
<p>Edit: the representation is IEEE 754 32 bit floating point. I actually have a (larger) byte buffer and an offset and length within that buffer. I found some utility methods already there that make it easy to turn this into a float, so I guess this question is moot. I'm still curious if anyone knows the answer.</p>
http://stackoverflow.com/questions/1761513/multiple-svn-repositories-or-single-company-repository/1761557#17615577Answer by Kevin Peterson for Multiple SVN Repositories or single company repositoryKevin Peterson2009-11-19T07:42:22Z2009-11-19T10:51:52Z<p>I strongly recommend not using a repository per project. Within a single subversion repository, you can move and copy data and it will retain its history. If you decide that some piece of code that started as a backend tool is being merged into the front end, and those are in different repositories, this isn't an operation that subversion will know anything about. It will be as if you added something to the front end from no where. This also means that you can't do merges if you need to temporarily maintain two versions of related code.</p>
<p>You will note that all the examples in the <a href="http://svnbook.red-bean.com/en/1.5/svn.branchmerge.maint.html#svn.branchmerge.maint.layout" rel="nofollow">svn book</a> assume everything is in one repository.</p>
<p>There's a separate question of whether to use /trunk/project1, /trunk/project2, /branches/project1-r1 or to use /project1/trunk, /project1/branches/r1, /project2/trunk. Generally, the second is easier to keep track of.</p>
<p>The best reason to not put everything in one repository is that access control is hard to do more finely grained than at the repository level. Possible, yes, but not as easy. We currently have two main repositories:</p>
<ul>
<li>svn/code for all software development, requires jira ticket to commit</li>
<li>svn/ops for any config, set up scripts, third party tars, whatever, no jira required</li>
</ul>
http://stackoverflow.com/questions/1762418/process-vs-thread/1762436#17624363Answer by Kevin Peterson for Process vs ThreadKevin Peterson2009-11-19T10:48:05Z2009-11-19T10:48:05Z<p>Threads share the code and data segments and the heap, but they don't share the stack.</p>
http://stackoverflow.com/questions/1761601/is-the-usage-of-stored-procedures-a-bad-practice/1761625#17616252Answer by Kevin Peterson for Is the usage of stored procedures a bad practice?Kevin Peterson2009-11-19T07:56:31Z2009-11-19T07:56:31Z<p>Stored procedures are useful for enforcing constraints at the database level. It's easier to validate a handful of stored procedures restricting access to the database than it is to validate every bit of client code. So this makes them good.</p>
<p>Other than that, I'm a skeptic. I like to have everything in one place, in a language I can unit test.</p>
http://stackoverflow.com/questions/1732278/what-are-some-questions-to-ask-when-choosing-between-two-equal-programmers/1732421#17324213Answer by Kevin Peterson for What are some questions to ask when choosing between two equal programmers?Kevin Peterson2009-11-13T22:57:21Z2009-11-13T22:57:21Z<p>Have them write FizzBuzz for you. This is an intentionally easy problem. They should be able to do it one a white board. If, and only if, they get that right, you may want to move on to something like implement a queue using a stack, but you can have a competent programmer who can do FizzBuzz, but can't figure out a queue using a stack. If he can't write FizzBuzz, he isn't a competent programmer.</p>
<p>Ask him to explain pointers to you. A poor programmer will draw a linked list and say "it has something to do with this". A decent programmer can explain pass by value vs. pass by reference (if not by name, then at least the concept).</p>
<p>"Why did you choose programming as a career?"</p>
<p>"What's a recent problem you have had while programming and how did you eventually solve it?"</p>
<p>Ask them to read a stack trace and tell you where they will look. The correct answer is "here where one of your methods calls a library is the most likely place to start".</p>
http://stackoverflow.com/questions/1081466/limit-cpu-stack-for-java-method-call1Limit CPU / Stack for Java method call?Kevin Peterson2009-07-04T04:09:10Z2009-11-11T20:42:28Z
<p>I am using an NLP library (Stanford NER) that throws OOM errors for rare input documents.</p>
<p>I plan to eventually isolate these documents and figure out what about them causes the errors, but this is hard to do (I'm running in Hadoop, so I just know the error occurs 17% through split 379/500 or something like that). As an interim solution, I'd like to be able to apply a CPU and memory limit to this particular call.</p>
<p>I'm not sure what the best way to do this would be. My first though is to create a fixed thread pool of one thread, and use the timed get() on Future. This would at least give me a wall clock limit which would likely help somewhat.</p>
<p>My question is whether there is any way to do better than this with a reasonable amount of effort.</p>
http://stackoverflow.com/questions/1635659/strings-are-immutable-that-means-i-should-never-use-and-only-stringbuffer/1635675#16356755Answer by Kevin Peterson for Strings are immutable - that means I should never use += and only StringBuffer?Kevin Peterson2009-10-28T07:35:15Z2009-10-28T07:35:15Z<p>In Java 5 or later, StringBuffer is thread safe, and so has some overhead that you shouldn't pay for unless you need it. StringBuilder has the same API but is not thread safe (i.e. you should only use it internal to a single thread).</p>
<p>Yes, if you are building up large strings, it is more efficient to use StringBuilder. It is probably not worth it to pass StringBuilder or StringBuffer around as part of your API. This is too confusing.</p>
http://stackoverflow.com/questions/1635632/is-it-possible-to-change-the-default-action-for-a-restful-resource/1635663#16356632Answer by Kevin Peterson for Is it possible to change the default action for a RESTful resource?Kevin Peterson2009-10-28T07:32:47Z2009-10-28T07:32:47Z<p>I'd point out that if you are pointing /books to /books/new, you are going to be confusing anyone who is expecting REST. If you aren't working alone, or if you are and have other come on board later, or if you expect to expose an API to the outside, the REST convention is that /books takes you to a listing, /books/new is where you create a new record.</p>
http://stackoverflow.com/questions/1529298/whats-your-modus-operandi-to-solving-a-programming-problem/1610192#16101922Answer by Kevin Peterson for What's your Modus Operandi to solving a (programming) problem?Kevin Peterson2009-10-22T21:52:15Z2009-10-22T21:52:15Z<p>I'm interpreting this as fixing a bug, not a design problem.</p>
<p>Isolate the problem. Does it always occur? Does it occur only the first time run on a set of new data? Does it occur with specific values, but not with others?</p>
<p>Is the system generating any error message that appear related to the problem? Verify that the error messages are not generated when the problem does not occur.</p>
<p>Has anything been changed recently? Those are likely places to start looking.</p>
<p>Identify the gap between what I know is working (e.g. I can start up the app and attempt to do a query) and what I know is not working (e.g. it gives me an error instead of the expected results). Find an intermediate point in the code where it seems possible to look for a problem (does this contain valid data at this point?). This allows me to isolate the problem on one side or the other of the point I looked.</p>
<p>Read the stack traces. If you have a stack trace, find the first line that mentions in-house code. The problem is not in your libraries. Maybe it will turn out to be, but just forget about that possibly first. The error is in your code. It's not a bug in java, it's not a bug in apache commons HTTP client, it's in code written in your organization.</p>
<p>Think. Come up with something the system could be doing that can cause the symptoms you see. Find a way to validate whether that is what the system is doing.</p>
<p>No possibility the bug is in your code? Google for anything you can think of related. Maybe it is a bug in the library, or poor documentation leading you to use it wrong.</p>
http://stackoverflow.com/questions/1571006/scala-build-tool-and-test-framework-that-play-nice-together2Scala build tool and test framework that play nice together?Kevin Peterson2009-10-15T08:22:57Z2009-10-15T23:19:14Z
<p>Here are my goals:
1. Run my tests in Eclipse and see the pretty green or red bar.
2. Run my tests on the command line with a build tool.</p>
<p>I'm leaning towards specs and sbt, but I can't get them to work. I have no desire to pick up Maven. My question is which one of the follow sets works best?</p>
<ol>
<li>sbt and scalatest</li>
<li>sbt and specs</li>
<li>ant and scalatest</li>
<li>ant and specs</li>
<li>something else?</li>
</ol>
<p>A consideration is how much effort do other people need to get the project up and running on a new machine. Bonus points if it can integrate with Hudson.</p>
http://stackoverflow.com/questions/1570215/what-is-the-actual-definition-of-an-array/1570563#15705632Answer by Kevin Peterson for What is the actual definition of an array?Kevin Peterson2009-10-15T06:11:11Z2009-10-15T06:11:11Z<p>An array:</p>
<ol>
<li>is a finite collection of elements</li>
<li>the elements are ordered, and this is their only structure</li>
<li>elements of the same type</li>
<li>supported efficient random access</li>
<li>has no expectation of efficient insertions</li>
<li>may or may not support append</li>
</ol>
<p>(1) differentiates arrays from things like iterators or generators. (2) differentiates arrays from sets. (3) differentiates arrays from things like tuples where you get an int and a string. (4) differentiates arrays from other types of lists. Maybe it's not always true, but a programmer's expectation is that random access is constant time. (5) and (6) are just there to deny additional requirements.</p>
http://stackoverflow.com/questions/1564537/supporting-covariant-type-conversions-in-java/1564629#15646290Answer by Kevin Peterson for Supporting covariant type conversions in JavaKevin Peterson2009-10-14T06:45:09Z2009-10-14T06:45:09Z<p>Java does not provide any way to specify that a generic type should be covariant (or contravariant). In your case, if I can cast from a Producer<Producer<A>>, to a Producer<Producer<A>>, then I can do this:</p>
<pre><code>Producer<Producer<Object>> objProducerProducer = cast(Producer<Producer<A>>);
Producer<Object> objProducer = objProducerProducer.produce()
</code></pre>
<p>But of course, objProducerProducer is actually producing Producer<A> objects. Java can't cast these to Producer<Object> automatically, that's just how it goes. Your explicit cast static method works because you are requiring <? extends T>. The generics don't extend each other. I guess what you want is implicit conversions that are integrated with the generics system, which is a long leap from what we have.</p>
<p>Edit: to clarify, yes, in your case, it's safe to treat a Producer<A> as a Producer<Object>, but this is knowledge that's not available to the generics system.</p>
http://stackoverflow.com/questions/1548301/learning-ruby-where-do-i-start/1548378#15483780Answer by Kevin Peterson for Learning Ruby, where do I start?Kevin Peterson2009-10-10T16:24:50Z2009-10-10T16:24:50Z<p>Good suggestions here, and I also highly recommend <a href="http://rads.stackoverflow.com/amzn/click/0596516177" rel="nofollow" title="Link to Amazon">The Ruby Programming Language</a></p>
http://stackoverflow.com/questions/1548324/how-to-design-my-class/1548372#15483722Answer by Kevin Peterson for How to design my classKevin Peterson2009-10-10T16:22:06Z2009-10-10T16:22:06Z<p>The other responses have answered the mechanics of you question, but there's also a design issue that I would be remiss if I didn't point out.</p>
<p>If your first example is the one that better fits what the data means, you would be better off using a simple object that knows nothing about how it's stored, and an ORM to map it to and from the database. Presumably, you are going to have other code that uses this object. If you write that code expecting this class, querying the database in a constructor and so on, it will be hard to test and hard to reuse.</p>
<p>If the second is the better match, you should look into dependency injection, so that you can inject a different datasource for testing (or for when you change from a SQL backend to a local database, etc).</p>
http://stackoverflow.com/questions/76042/java-1-6-jdk-tool-visualvm/1534120#15341200Answer by Kevin Peterson for Java 1.6 JDK tool, VisualVMKevin Peterson2009-10-07T20:51:32Z2009-10-07T20:51:32Z<p>I've used VisualVM before to profile something running locally. A big win was that I just start it up, and it can connect to the running JVM. It's easier to use than other profiling tools I've used before and didn't seem to have as much overhead.</p>
<p>I think it does sampling. The overhead on a CPU intensive application didn't seem significant. I didn't measure anything (I was interested in how my app performed, not how the tool performed), but it definitely didn't have the factor of 10 slowdown I'm used to seeing from profiling.</p>
http://stackoverflow.com/questions/1530088/java-thread-join-froze-my-program/1530147#15301474Answer by Kevin Peterson for Java thread: 'join' froze my programKevin Peterson2009-10-07T07:49:02Z2009-10-07T07:49:02Z<p>You have shared data between two threads with no memory barriers. It's possible that if your main thread sets abort = true, it will set abort locally, but the other processor already has "false" in it's local cache for that field.</p>
<p>The volatile keyword is for exactly this purpose.</p>
<p>It may work on your machine because you have a single processor, but the remote machine may not. </p>
http://stackoverflow.com/questions/1530069/comparing-floating-point-values/1530102#15301021Answer by Kevin Peterson for Comparing floating point valuesKevin Peterson2009-10-07T07:37:15Z2009-10-07T07:37:15Z<p>Generally floating point numbers should be compared using a construct like</p>
<pre><code>if( abs((x1 - x2) < 0.001) )
</code></pre>
<p>The reason for the warning you quoted is you may have two methods of calculating something, and they may be equal if you had no rounding error, but the rounding error makes them slightly different.</p>
http://stackoverflow.com/questions/1529988/simple-type-inference-in-scala/1530079#15300790Answer by Kevin Peterson for Simple Type Inference in ScalaKevin Peterson2009-10-07T07:30:28Z2009-10-07T07:30:28Z<p>Type inference infers the return type of a method when it can, which is more or less in any case that the method isn't recursive.</p>
<p>Your example would work if you changed it to:</p>
<pre><code>def upCase(s: String) = {
if (s.length == 0)
s // note: no return
else
s.toUpperCase()
}
</code></pre>
<p>I don't know offhand why the return changes this.</p>
http://stackoverflow.com/questions/1524330/what-characters-would-you-make-invalid-for-a-password/1524375#15243752Answer by Kevin Peterson for What characters would you make invalid for a password?Kevin Peterson2009-10-06T08:49:57Z2009-10-06T08:49:57Z<p>Best is no restrictions whatsoever, unless you can really justify them.</p>
<p>If you are a bank, email provider, or if the user can order something without supplying a credit card, then forcing users to use a strong password makes sense. Otherwise, you're just making it hard for no reason.</p>
<p>As to what you should store, I'd say 1024 characters of unicode with control characters prohibited is about all that's justified. If the user can't type it, they should have picked a different password. All you're storing is a hash, so you can always cut it down to whatever size you want.</p>
http://stackoverflow.com/questions/1524154/naming-boolean-columns-in-rails/1524194#15241947Answer by Kevin Peterson for Naming Boolean columns in RailsKevin Peterson2009-10-06T08:02:43Z2009-10-06T08:02:43Z<p>You should call it trained. Define it in your schema with a type of :boolean. You can refer to it as trained? and everything will magically work. So says <a href="http://www.ruby-forum.com/topic/60847" rel="nofollow">http://www.ruby-forum.com/topic/60847</a></p>
http://stackoverflow.com/questions/1512066/is-there-any-non-blocking-io-open-source-implementation-for-scalas-actors/1524172#15241721Answer by Kevin Peterson for Is there any Non-blocking IO open source implementation for Scala's actors?Kevin Peterson2009-10-06T07:58:33Z2009-10-06T07:58:33Z<p>Not that I know of, but you could probably get a lot of mileage out of looking at <a href="http://robey.lag.net/2009/03/02/actors-mina-and-naggati.html" rel="nofollow" title="Naggati">Naggati</a>, a Scala wrapper around Apache Mina. Mina is a networking library that uses NIO, Naggati translates this into a Scala style of coding.</p>
http://stackoverflow.com/questions/1524106/exceptional-programmer-in-bodyshop-environment/1524136#15241362Answer by Kevin Peterson for Exceptional Programmer in bodyshop environmentKevin Peterson2009-10-06T07:47:28Z2009-10-06T07:47:28Z<p>Do programmers need good people skills? No, they don't. Sure, it helps, and you need at least some people on the development side of things who can speak to the business types, but a programmer generally doesn't have customer contact. If a sales rep has poor people skills, he needs to find another career. If a programmer has poor people skills, he won't do quite as well as one who does. Programmers are near the bottom of the barrel as far as need for people skills.</p>
<p>Constant communication with business isn't needed. Even agile methods revolve around an iterate-and-test methodology. Developers are developers because they see how the pieces fit together. The communication has to happen at the level of drawing out good business requirements. The BRD is not perfect. If I can make assumptions like that, I may as well design a new development methodology that starts with "assume all code is bug-free". The best thing to show to a client to get feedback is a working prototype, but you need to establish boundaries and procedures. You need to say "this is what we're doing next, are you certain these features are things you want to try out"? Then they can come back and revise after they see how they work out.</p>
<p>Has my view changed with experience? Once, I thought I should just listen to what the business side was asking for. Now I realize that all I need is a sound proof room, a car battery and some wires attached to sponges, and I can get them to tell me what they actually need, rather than their poorly thought out idea of how it should be accomplished.</p>
http://stackoverflow.com/questions/653770/software-developer-vs-programmer-why-the-difference/1524103#15241031Answer by Kevin Peterson for Software Developer vs Programmer...Why the difference?Kevin Peterson2009-10-06T07:36:43Z2009-10-06T07:36:43Z<p>The difference is historical, and it's a change of terminology that reflects a real change in the role.</p>
<p>Years ago, before we had fancy languages and libraries and list comprehension and actually needed to worry about things like memory management, there was a long, involved task that consisted of taking a specification for a subroutine and translating that into whatever crude programming language was being used. This is not to say that there were not design aspects to developing software -- there were, and they were just as important as they are today -- but the largest single chunk of a "programmer's" time was devoted to the actual programming task.</p>
<p>Now, the process of developing software still involves all the same steps, but high level languages, frameworks, best practices, widely available rich libraries, and pre-built components have reduced the programming step down to almost nothing. Programming, that is, translating a detailed mental picture of what the computer should be doing into the programming language, has faded to a small part of what a software developer does.</p>
<p>There's an interesting remnant that shows something similar in the military -- the Surgeon General isn't (as far as I know) a surgeon. Her title is a remnant from when the only thing that differentiated an MD from any random person who knew how to set a broken arm was that an MD performed surgery.</p>
<p>Now, programmer is a poor term to refer to a software engineer because it's like calling a carpenter a nail hammerer -- that's just a part of his job.</p>
<p>Sure, people can invent different meanings of the terms to make it sound like they all refer to different things, but to say that "programmers" and "software engineers" are different types of people or different job roles makes it seem like a reasonable thing to say that your department has 5 programmers and 3 software engineers. It isn't. Maybe we could differentiate based on type of application people write, enterprise vs. web apps vs. shrink wrap, or the preferred language, or ui vs. data layer, but certainly the distinction between "programmer" and "software developer" doesn't capture any of these.</p>
http://stackoverflow.com/questions/1520919/rename-faster-than-dropadd-in-mysql-alter-table/1524046#15240460Answer by Kevin Peterson for RENAME faster than DROP+ADD in MySQL alter tableKevin Peterson2009-10-06T07:17:10Z2009-10-06T07:17:10Z<p>I've used that same logic, and got stung because even with changes that are supposed to not require rewriting the table (i.e. a table rename), a MySQL bug caused it to think it was a change that required rewriting the table.</p>
<p>If the fields you are dealing with are date, datetime or timestamp fields, you are likely to be hit by this, which means that you should just assume it has to do a full rewrite and plan that way.</p>
http://stackoverflow.com/questions/1517799/why-do-migrations-need-the-table-block-param/1517844#15178440Answer by Kevin Peterson for Why do migrations need the table block param?Kevin Peterson2009-10-05T01:01:38Z2009-10-05T01:01:38Z<p>My understanding is that ruby is lexically scoped, meaning that "integer" has to refer to something defined at the point it occurs in the code. You'd need dynamic scoping to accomplish what you're asking for.</p>
<p>It may be that I'm wrong and at least one of procs, blocks and lambdas is dynamically scoped, but then you still have your answer -- obscure details of how scope behaves is not a good thing to expect a programmer to know.</p>
http://stackoverflow.com/questions/1517745/sorting-on-last-name/1517747#15177471Answer by Kevin Peterson for Sorting on Last Name ...Kevin Peterson2009-10-05T00:03:34Z2009-10-05T00:03:34Z<p>You need to parse your data into real objects or arrays, then you can pass a comparator to sort asking it to sort on last name.</p>
<p>Alternately, you <em>could</em> do this with a complicated comparator and a string that has the fields separated, but it's not the right way to do it, and will be more painful than the first option.</p>
http://stackoverflow.com/questions/1509352/can-we-start-a-background-process-using-exec-giving-as-an-argument/1512334#15123340Answer by Kevin Peterson for Can we start a background process using exec() giving & as an argument?Kevin Peterson2009-10-02T23:50:58Z2009-10-02T23:50:58Z<p>Fork returns the PID of the child, so the common idiom is:</p>
<pre><code>if(fork() == 0)
// I'm the child
exec(...)
</code></pre>
http://stackoverflow.com/questions/1512117/would-a-cloud-based-compiler-be-feasible/1512324#15123240Answer by Kevin Peterson for Would a cloud-based compiler be feasible?Kevin Peterson2009-10-02T23:44:17Z2009-10-02T23:44:17Z<p>I've seen a nice demo of running JUnit tests on top of GridGain, and GridGain can be run in the cloud.</p>
<p>I don't see much value in the compiler being in the cloud though.</p>
http://stackoverflow.com/questions/1506728/on-performance-and-java-interoperability-clojure-vs-scala/1508198#15081982Answer by Kevin Peterson for On Performance and Java Interoperability: Clojure vs. ScalaKevin Peterson2009-10-02T07:47:29Z2009-10-02T07:47:29Z<p>On interoperability, I can't speak for Clojure, but I would expect it to be in a similar situation as Scala.</p>
<p>It is trivially easy to call Java from Scala.</p>
<p>It is easy to call Scala from Java as long as you conform your external API to the common points between Scala and Java. For example, a Scala object is used in some ways like static methods in Java, but it's not the same thing. Scala classes may compile to a number of classes with names that look funny in Java.</p>
<p>You will not want to mix and match much. Building component in Scala or Clojure that uses lots of Java libraries is very feasible. You can of course call into this component from Java, but what you are not going to want to do is try to consume a Scala API intended for use by Scala programs from Java.</p>
<p>SVN claims to be "CVS done right". In my view, Scala is Java done right.</p>
http://stackoverflow.com/questions/1479234/crypto-hashes-and-password-questions-total-noob/1508103#15081030Answer by Kevin Peterson for Crypto, hashes and password questions, total noob?Kevin Peterson2009-10-02T07:12:11Z2009-10-02T07:12:11Z<p>A hash cannot be reversed. Conceptually, think of a hash as taking the value to be hashed as the seed to a random number generator, then taking the 500th number that it generates. This is a <em>repeatable</em> process, but it is not a <em>reversible</em> process.</p>
<p>If you store a hashed password in your database, when your user logs in, you take his password from the input to the login page, you apply the same hash to it, and then you compare the result of that operation to what you have stored in the database. If they match, the user typed the right password. (Or, in theory, they could have typed something that happens to hash to the same value, but in practice, you can completely ignore this.)</p>
<p>The purpose of the salt is so that even if users have the same password, you can't tell, and also lots of other things which are equivalent to this idea. If the user's password is "secret", and the salt is "abc", then instead of making a hash of "secret", you hash "secretabc" and store the results of that in your database. You also store the salt, but this is perfectly safe to store -- you can't figure out any information about the password from it.</p>
<p>The only reason to safeguard the hashed passwords and salt is that if an attacker has a copy of it, he can test passwords offline on his own machine, rather than repeatedly trying to log in to your server, which you would probably lock him out after three attempts or something like that. Even if you don't lock him out, it's much faster to test locally than to wait for the network round-trip.</p>
http://stackoverflow.com/questions/1761533/database-alternativesComment by Kevin Peterson on Database alternatives?Kevin Peterson2009-11-19T07:49:30Z2009-11-19T07:49:30ZAll three of those in fact run off of MySQL.http://stackoverflow.com/questions/1761148/where-are-methods-defined-at-the-ruby-top-level/1761461#1761461Comment by Kevin Peterson on Where are methods defined at the ruby top level?Kevin Peterson2009-11-19T07:47:01Z2009-11-19T07:47:01ZAah, I read it as "what methods are" rather than "where are methods"http://stackoverflow.com/questions/1635659/strings-are-immutable-that-means-i-should-never-use-and-only-stringbuffer/1635675#1635675Comment by Kevin Peterson on Strings are immutable - that means I should never use += and only StringBuffer?Kevin Peterson2009-10-28T07:43:30Z2009-10-28T07:43:30ZThat makes a lot more sense than what I previously thought. I noticed that the documentation changed from 1.4 to 5 and thread safe is now mentioned more prominently.http://stackoverflow.com/questions/1571006/scala-build-tool-and-test-framework-that-play-nice-togetherComment by Kevin Peterson on Scala build tool and test framework that play nice together?Kevin Peterson2009-10-15T16:25:24Z2009-10-15T16:25:24ZI eventually tracked it down to a bug in sbt that it only runs tests defined as objects, not classes.http://stackoverflow.com/questions/1570913/how-much-risk-is-exposing-all-the-sources-to-a-third-party/1570957#1570957Comment by Kevin Peterson on How much risk is exposing all the sources to a third party?Kevin Peterson2009-10-15T08:29:51Z2009-10-15T08:29:51ZCompeting insurance companies wouldn't want to know where you set the thresholds for bumping someone from one risk category to another?http://stackoverflow.com/questions/1093520/is-there-a-scala-unit-test-tool-that-integrates-well-with-maven/1095603#1095603Comment by Kevin Peterson on Is there a Scala unit test tool that integrates well with Maven?Kevin Peterson2009-10-14T06:47:48Z2009-10-14T06:47:48ZI like specs, and found it easy to run from within Eclipse as JUnit tests.http://stackoverflow.com/questions/1548301/learning-ruby-where-do-i-start/1548356#1548356Comment by Kevin Peterson on Learning Ruby, where do I start?Kevin Peterson2009-10-10T16:23:35Z2009-10-10T16:23:35Z+1 for Simply Rails 2. It isn't comprehensive, but it's a fantastic tutorial.http://stackoverflow.com/questions/1524106/exceptional-programmer-in-bodyshop-environment/1524136#1524136Comment by Kevin Peterson on Exceptional Programmer in bodyshop environmentKevin Peterson2009-10-07T07:26:18Z2009-10-07T07:26:18ZThere's a big difference between "need good people skills" and "are hindered by extremely poor people skills". Simply not being a jerk isn't <i>good</i> people skills unless you have an incredibly low bar.http://stackoverflow.com/questions/1524330/what-characters-would-you-make-invalid-for-a-password/1524369#1524369Comment by Kevin Peterson on What characters would you make invalid for a password?Kevin Peterson2009-10-06T08:55:16Z2009-10-06T08:55:16ZPlease stop spreading these absolute rules. These rules don't even make sense for a bank -- I prefer a long passphrase which I can remember, rather than what I would be forced to choose with your rules of "abcDEF32_!" or similar.http://stackoverflow.com/questions/1512043/best-location-for-ant-build-xml-files/1522689#1522689Comment by Kevin Peterson on Best location for ant build.xml files?Kevin Peterson2009-10-06T08:45:27Z2009-10-06T08:45:27ZThis is the exact configuration we use. I don't want copy and paste inheritance everywhere for things like the code coverage targets. I should have pegged to a specific revision, though it hasn't been a big deal.http://stackoverflow.com/questions/1447653/multiple-programmers-in-software-development-how-do-we-work-on-the-same-code-and/1447660#1447660Comment by Kevin Peterson on Multiple Programmers in Software Development. How do we work on the same code and it always be updated??Kevin Peterson2009-09-22T06:22:00Z2009-09-22T06:22:00ZAnd the number one reason to use subversion? The best documentation: <a href="http://svnbook.red-bean.com/en/1.5/index.html" rel="nofollow">svnbook.red-bean.com/en/1.5/index.html</a>http://stackoverflow.com/questions/1458280/regex-to-match-the-first-ending-html-tag/1458347#1458347Comment by Kevin Peterson on Regex to match the first ending HTMl tag Kevin Peterson2009-09-22T06:17:20Z2009-09-22T06:17:20ZThe question didn't ask for the matching form tag, it asked for the first, which might not be the best thing to do, but this is a valid and useful trick sometimes.http://stackoverflow.com/questions/1258405/regex-to-check-fix-length-field-with-packed-space/1258432#1258432Comment by Kevin Peterson on Regex to check fix length field with packed spaceKevin Peterson2009-08-11T05:36:33Z2009-08-11T05:36:33ZIndeed. The first thing you think of when faced with a problem is "I know, I'll use regular expressions." Now you have two problems.http://stackoverflow.com/questions/1116974/what-functional-language-implementations-allow-threads-to-run-in-parallel/1117025#1117025Comment by Kevin Peterson on What functional language implementations allow threads to run in parallel? Kevin Peterson2009-08-02T19:12:32Z2009-08-02T19:12:32ZScala supports Actors <a href="http://www.scala-lang.org/node/242" rel="nofollow">scala-lang.org/node/242</a> if you like that model, and you can use java.util.concurrency just as you would in Java. I suppose given the question is about functional programming, Actors is more appropriate.http://stackoverflow.com/questions/1191740/find-a-number-where-it-appears-exactly-n-2-times/1192385#1192385Comment by Kevin Peterson on Find a number where it appears exactly N/2 timesKevin Peterson2009-07-29T01:10:18Z2009-07-29T01:10:18ZJeremy, it's a perfectly fine answer to the question I thought was being asked. Sorry for providing an answer before the comments clarified what question it was. In an interview, it's important to know what you are looking for in an answer.