User Calum - Stack Overflowmost recent 30 from stackoverflow.com2010-03-21T23:32:45Zhttp://stackoverflow.com/feeds/user/8434http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2378218/deadlock-in-scala/2379082#23790820Answer by Calum for 'Deadlock' in scalaCalumhttp://stackoverflow.com/users/84342010-03-04T12:09:02Z2010-03-04T12:09:02Z<p>Not deadlock, just a plain ol' bug, I think. Two lines under your comment:</p>
<p><code>received == true
</code></p>
<p>This should be <code>=</code> instead of <code>==</code>. I've not looked in depth (this sprung out at me) but it <em>looks</em> like this would fix your issue.</p>
http://stackoverflow.com/questions/1948044/printing-unicode-from-scala-interpreter/1950140#19501401Answer by Calum for Printing Unicode from Scala interpreterCalumhttp://stackoverflow.com/users/84342009-12-23T00:54:46Z2009-12-23T11:03:19Z<p>Ok, at least part, if not all, of your problem here is that 128 is not the Unicode codepoint for Euro. 128 (or 0x80 since hex seems to be the norm) is <code>U+0080 <control></code>, i.e. it is not a printable character, so it's not surprising your terminal is having trouble printing it.</p>
<p>Euro's codepoint is 0x20AC (or in decimal 8364), and that appears to work for me (I'm on Linux, on a nightly of 2.8):</p>
<pre><code>scala> print(0x20AC.toChar)
€
</code></pre>
<p>Another fun test is to print the Unicode snowman character:</p>
<pre><code>scala> print(0x2603.toChar)
☃
</code></pre>
<p>128 as € is apparently an extended character from one of the Windows code pages.</p>
<p>I got the other character you mentioned to work too:</p>
<pre><code>scala> 'ƒ'.toInt
res8: Int = 402
scala> 402.toChar
res9: Char = ƒ
</code></pre>
http://stackoverflow.com/questions/1342350/creating-strings-from-bytes-ints-in-java/1342371#13423715Answer by Calum for Creating Strings from Bytes/Ints in JavaCalumhttp://stackoverflow.com/users/84342009-08-27T16:56:53Z2009-08-27T16:56:53Z<p>Strings in Java are reference types, and == checks whether they are the <em>same</em> string, rather than <em>equal</em> strings. Confusing I know. Long story short you need to do this:</p>
<p><code>if( test.equals( compare ) ) {</code></p>
<p>For more you can see here: <a href="http://leepoint.net/notes-java/data/strings/12stringcomparison.html" rel="nofollow">http://leepoint.net/notes-java/data/strings/12stringcomparison.html</a></p>
http://stackoverflow.com/questions/1044889/unable-to-understand-a-line-of-python-code-exactly/1044935#10449351Answer by Calum for Unable to understand a line of Python code exactlyCalumhttp://stackoverflow.com/users/84342009-06-25T16:37:08Z2009-06-25T16:37:08Z<p>The % is an operator which makes a format string. A simple example would be:</p>
<pre><code>"%s is %s" % ( "Alice", "Happy" )
</code></pre>
<p>Which would evaluate to the string <code>"Alice is Happy"</code>. The format string that is provided defines how the values you pass are put into the string; the syntax is available <a href="http://docs.python.org/library/string.html#formatstrings" rel="nofollow">here</a>. In short the <code>d</code> is "treat as a decimal number" and the <code>8.2</code> is "pad to 8 characters and round to 2 decimal places". In essence it looks like that format in particular is being used so that the answers line up when viewed with a monospace font. :)</p>
<p>In my code example the <code>s</code> means "treat as a string".</p>
http://stackoverflow.com/questions/915056/convert-toint32-versus-tryparse/915069#9150697Answer by Calum for Convert.ToInt32 versus TryParseCalumhttp://stackoverflow.com/users/84342009-05-27T10:39:53Z2009-05-27T10:39:53Z<p>Yes, Java is missing a similar method, although without <code>out</code> parameters it's actually pretty difficult to express (while wanting to return a primitive). Generally, though, in C# you should use <code>TryParse</code> if you expect the value to not be an integer sometimes, and <code>ToInt32</code> otherwise; this way the "exceptional" situation is treated as such.</p>
<p>In particular if performance is your main reason for wanting <code>TryParse</code>, the regex matches method you post is considerably worse. The performance "expense" of Exceptions (which is, in reality, very minimal) is dwarfed by how much using them wrongly can fuzz easy understanding of control flow.</p>
http://stackoverflow.com/questions/915023/mysql-query-execution-plan/915049#9150491Answer by Calum for MySQl Query Execution PlanCalumhttp://stackoverflow.com/users/84342009-05-27T10:36:17Z2009-05-27T10:36:17Z<p>Use <code>EXPLAIN <your query></code> to tell you what the system will do. Adding an extra column can definitely change the way it's interpreted, however. There's a page on using <code>EXPLAIN</code> in the MySQL docs: <a href="http://dev.mysql.com/doc/refman/5.0/en/using-explain.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/using-explain.html</a></p>
http://stackoverflow.com/questions/483656/file-extension-to-mime-type-web-service/495289#4952890Answer by Calum for File Extension to MIME Type Web Service?Calumhttp://stackoverflow.com/users/84342009-01-30T12:01:00Z2009-01-30T12:01:00Z<p>Is a web service really more useful than a library? I suppose it could be kept up to date, but otherwise what's the benefit? Do you envisage a lot of use for this?</p>
http://stackoverflow.com/questions/428543/is-it-impractical-to-put-an-html-form-into-an-email/428562#4285622Answer by Calum for Is it impractical to put an HTML form into an email?Calumhttp://stackoverflow.com/users/84342009-01-09T15:46:48Z2009-01-09T15:46:48Z<p>Yes, I've seen this done (emails from LiveJournal do this, as an example). As you mention it's not something you should rely upon working, though. Just putting an HTML form with action set to the full URL to post to should work wherever it's supported, however.</p>
<p>It's worked in most web-based email systems I've used but I don't know how many standalone clients would deal with it.</p>
http://stackoverflow.com/questions/268672/is-there-a-no-duplicate-list-implementation-out-there/268713#26871314Answer by Calum for Is there a no-duplicate List implementation out there?Calumhttp://stackoverflow.com/users/84342008-11-06T13:38:42Z2008-11-06T13:45:14Z<p>There's no Java collection in the standard library to do this. <code>LinkedHashSet</code> preserves ordering similarly to a <code>List</code>, though, so if you wrap your set in a <code>List</code> when you want to use it as a <code>List</code> you'll get the semantics you want.</p>
<p>Alternatively, the Commons Collections (or <code>collections15</code>, for the generic version) has a <code>List</code> which does what you want already: <a href="http://collections15.sourceforge.net/apidocs/net/sf/collections15/list/SetUniqueList.html" rel="nofollow"><code>SetUniqueList</code></a>.</p>
http://stackoverflow.com/questions/250050/best-programming-methodology-for-very-fast-timeline-and-little-requirements/250145#2501450Answer by Calum for Best programming methodology for very fast timeline and little requirements?Calumhttp://stackoverflow.com/users/84342008-10-30T13:19:15Z2008-10-30T13:19:15Z<p>Scrum or XP works pretty well in these circumstances; if you can thrash out some minimal set of requirements for a "basic" system and build upon that, you can be reactive to the fact that even when up-front requirements are provided, they are almost always wrong.</p>
<p>People who write 5000 line single file programs are undisciplined and bad programmers. Since both XP and Scrum require the discipline to make a system that can be maintained and built upon, I'm not sure how to proceed if that's what you've got to work with. My <em>guess</em> would be to at least attempt to convince them the wrongness of their ways.</p>
http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/91039#910391Answer by Calum for Factorial Algorithms in different languagesCalumhttp://stackoverflow.com/users/84342008-09-18T08:54:02Z2008-09-18T08:54:02Z<h1>Scala: Recursive</h1>
<ul>
<li>Should compile to being tail recursive. Should!</li>
</ul>
<p>.</p>
<pre><code>def factorial( value: BigInt ): BigInt = value match {
case 0 => 1
case _ => value * factorial( value - 1 )
}
</code></pre>
http://stackoverflow.com/questions/70537/cheat-single-inheritance-in-java/70559#705594Answer by Calum for Cheat single inheritance in Java !!Calumhttp://stackoverflow.com/users/84342008-09-16T09:04:43Z2008-09-16T09:04:43Z<p>Use of composition instead of inheritance tends to be the way around this. This actually also helps a lot with testability, so it's good practice in general. </p>
<p>If you just want your type to "behave" like several other types, you can inherit from as many interfaces as you like, though; you can't "borrow" implementation details from these though, obviously.</p>
http://stackoverflow.com/questions/70471/no-properties-in-java/70535#7053510Answer by Calum for (no) Properties in Java?Calumhttp://stackoverflow.com/users/84342008-09-16T09:00:15Z2008-09-16T09:00:15Z<p>There is a "standard" pattern for getters and setters in Java, called <a href="http://java.sun.com/docs/books/tutorial/javabeans/properties/index.html" rel="nofollow">bean properties</a>. Basically any method starting with <code>get</code>, taking no arguments and returning a value, is a property getter for a property named as the rest of the method name (with a lowercased start letter). Likewise <code>set</code> creates a setter of a void method with a single argument.</p>
<p>For example:</p>
<pre><code>// Getter for "awesomeString"
public String getAwesomeString() {
return awesomeString;
}
// Setter for "awesomeString"
public void setAwesomeString( String awesomeString ) {
this.awesomeString = awesomeString;
}
</code></pre>
<p>Most Java IDEs will generate these methods for you if you ask them (in Eclipse it's as simple as moving the cursor to a field and hitting ctrl-1, then selecting the option from the list).</p>
<p>For what it's worth, for readability you can actually use <code>is</code> and <code>has</code> in place of <code>get</code> for boolean-type properties too, as in:</p>
<pre><code>public boolean isAwesome();
public boolean hasAwesomeStuff();
</code></pre>
http://stackoverflow.com/questions/66227/what-is-the-best-multi-platform-rad-language/66272#662721Answer by Calum for What is the best multi-platform RAD language?Calumhttp://stackoverflow.com/users/84342008-09-15T19:55:08Z2008-09-15T19:55:08Z<p>It really depends what sort of interfaces you're comfortable with, and what you'd like to do. Even Java is alright with the NetBeans interface constructor.</p>
<p>From what I've seen recently, <a href="http://shoooes.net/" rel="nofollow">Shoes</a> for Ruby looks pretty great for just knocking up nice interfaces, but it really depends if you like Ruby. This is disgracefully subjective though.</p>
http://stackoverflow.com/questions/66032/order-of-dom-nodelist-returned-by-getchildnodes/66157#661570Answer by Calum for Order of DOM NodeList returned by getChildNodes()Calumhttp://stackoverflow.com/users/84342008-09-15T19:46:48Z2008-09-15T19:46:48Z<p>I'd love to tell you that this is guaranteed (as I believe it is) but the <a href="http://www.w3.org/DOM/" rel="nofollow">Document Object Model specification</a> itself seems ambiguous in this case. I'm pretty sure that it's always document-order, though.</p>
http://stackoverflow.com/questions/65668/why-to-use-stringbuffer-in-java-instead-of-the-string-concantion-operator/65727#6572717Answer by Calum for why to use StringBuffer in java instead of the string concantion operatorCalumhttp://stackoverflow.com/users/84342008-09-15T19:02:48Z2008-09-15T19:02:48Z<p>It's better to use StringBuilder (it's an unsynchronized version; when do you build strings in parallel?) these days, in almost every case, but here's what happens:</p>
<p>When you use + with two strings, it compiles code like this:</p>
<pre><code>String third = first + second;
</code></pre>
<p>To something like this:</p>
<pre><code>StringBuilder builder = new StringBuilder( first );
builder.append( second );
third = builder.toString();
</code></pre>
<p>Therefore for just little examples, it usually doesn't make a difference. But when you're building a complex string, you've often got a lot more to deal with than this; for example, you might be using many different appending statements, or a loop like this:</p>
<pre><code>for( String str : strings ) {
out += str;
}
</code></pre>
<p>In this case, a new <code>StringBuilder</code> instance, and a new <code>String</code> (the new value of <code>out</code> - <code>String</code>s are immutable) is required in each iteration. This is very wasteful. Replacing this with a single <code>StringBuilder</code> means you can just produce a single <code>String</code> and not fill up the heap with <code>String</code>s you don't care about.</p>
http://stackoverflow.com/questions/64333/disadvantages-of-test-driven-development/64463#644633Answer by Calum for Disadvantages of Test Driven Development?Calumhttp://stackoverflow.com/users/84342008-09-15T16:31:56Z2008-09-15T16:31:56Z<p>Prototyping can be very difficult with TDD - when you're not sure what road you're going to take to a solution, writing the tests up-front can be difficult (other than very broad ones). This can be a pain. </p>
<p>Honestly I don't think that for "core development" for the vast majority of projects there's any real downside, though; it's talked down a lot more than it should be, usually by people who believe their code is good enough that they don't need tests (it never is) and people who just plain can't be bothered to write them.</p>
http://stackoverflow.com/questions/50373/multimap-in-scala/64396#643965Answer by Calum for Multimap in ScalaCalumhttp://stackoverflow.com/users/84342008-09-15T16:24:13Z2008-09-15T16:24:13Z<p>That can be annoying, the name overloading in Scala's collections is one of its big weaknesses.</p>
<p>For what it's worth, if you had <code>scala.collections._</code> imported, you could probably have written your <code>HashMap</code> type as:</p>
<pre><code>new HashMap[ Integer, mutable.Set[ TreeNode ] ]
</code></pre>
http://stackoverflow.com/questions/33744/is-scala-the-next-big-thing/64377#643775Answer by Calum for Is Scala the next big thing?Calumhttp://stackoverflow.com/users/84342008-09-15T16:21:52Z2008-09-15T16:21:52Z<p>The interesting thing about Scala is largely that its a functionally-influenced language which is very pragmatic, so essentially all of its features are there to make its use easier, rather than to prove some academic point. It essentially combines the terseness of dynamic languages with the safety and toolability of static ones, mostly successfully. The typesystem ends up with a few complications as a result of this combination, but for those who are consuming libraries, rather than writing them, this can usually be ignored.</p>
<p>I really like it, and I think it's a lot better placed than its "purer" functional cousins, such as OCaml, Haskell or F#, to take off, on technical merits at least. As for whether it'll be the "next big thing", nobody can really tell, and this thread shows a few good examples to the contrary of it taking off like that. On the other hand I think the movement of languages to target the "big" VMs and reuse their libraries may well make the "next big thing" argument pretty academic; hopefully you'll be able to use whatever you like with no loss of functionality soon enough.</p>
http://stackoverflow.com/questions/2378218/deadlock-in-scala/2379086#2379086Comment by Calum on 'Deadlock' in scalaCalumhttp://stackoverflow.com/users/84342010-03-04T12:53:28Z2010-03-04T12:53:28ZWell you certainly went a lot further than I did with my answer!http://stackoverflow.com/questions/2083290/check-if-a-double-is-evenly-divisible-by-another-double-in-c/2083298#2083298Comment by Calum on Check if a double is evenly divisible by another double in C?Calumhttp://stackoverflow.com/users/84342010-01-18T00:52:25Z2010-01-18T00:52:25ZSo is what he wants to know that one number is an exact multiple of some other number? Because that makes more sense, although I suspect it'd be lost in machine-representation-of-double land.http://stackoverflow.com/questions/1948044/printing-unicode-from-scala-interpreter/1979812#1979812Comment by Calum on Printing Unicode from Scala interpreterCalumhttp://stackoverflow.com/users/84342010-01-11T13:42:31Z2010-01-11T13:42:31ZMcDowell: Ack, I only really use Linux. It's probable (although I've not checked) that the Windows console system things in characters rather than bytes, so you can't do the sort of "anything goes" nonsense on that system. On the other hand "anything goes" is part of the reason we're here ;). Thanks a lot for the update. :)http://stackoverflow.com/questions/1948044/printing-unicode-from-scala-interpreter/1979812#1979812Comment by Calum on Printing Unicode from Scala interpreterCalumhttp://stackoverflow.com/users/84342010-01-01T16:59:15Z2010-01-01T16:59:15ZOne way to do this while avoiding the issue that McDowell flags is to wrap the System.out PrintStream (which still works as a raw OutputStream) with a PrintStream which uses the encoding you want, then use that, such as "val myOut = new PrintStream( System.out, "UTF-8" ); myOut.print( 0x20AC.toChar )". This should always work.
I would edit this in but I don't think I have the karma for that sort of thing.http://stackoverflow.com/questions/1948044/printing-unicode-from-scala-interpreter/1950140#1950140Comment by Calum on Printing Unicode from Scala interpreterCalumhttp://stackoverflow.com/users/84342010-01-01T16:54:47Z2010-01-01T16:54:47ZAh, I see it was a file.encoding issue from another response. Sorry! Please see my comment on your accepted answer, Martin.http://stackoverflow.com/questions/1580924/what-does-mysql-do-when-auto-incrementing-ids-overflow/1580936#1580936Comment by Calum on What does MySQL do when auto incrementing IDs overflow?Calumhttp://stackoverflow.com/users/84342009-10-17T00:14:01Z2009-10-17T00:14:01ZIs the row not being inserted with an erro really "worse"? I'd rather have the system fail fast than roll over and potentially (one day) overwrite ID values.http://stackoverflow.com/questions/1504202/java-sgml-to-xml-conversionComment by Calum on Java SGML to XML conversion?Calumhttp://stackoverflow.com/users/84342009-10-01T14:31:27Z2009-10-01T14:31:27ZSGML is a superset of XML; what would you want the semantics of the conversion to be? Is there some specified transform you want?http://stackoverflow.com/questions/1483212/list-of-scalas-magic-functions/1483744#1483744Comment by Calum on List of Scala's "magic" functionsCalumhttp://stackoverflow.com/users/84342009-09-30T18:46:17Z2009-09-30T18:46:17Z...and you've done it, thanks!http://stackoverflow.com/questions/1483212/list-of-scalas-magic-functions/1483744#1483744Comment by Calum on List of Scala's "magic" functionsCalumhttp://stackoverflow.com/users/84342009-09-28T09:29:00Z2009-09-28T09:29:00ZYou might want to add the unary_! etc. operators that were listed in one of the other posts, since this looks like the most exhaustive answer to the question here :)http://stackoverflow.com/questions/1422105/thrift-concurrency-implementation-in-scalaComment by Calum on Thrift Concurrency Implementation in ScalaCalumhttp://stackoverflow.com/users/84342009-09-14T17:01:42Z2009-09-14T17:01:42ZI'm not sure what you're hoping to gain by making a synchronous call to a random actor (this seems like a really strange choice of implementation for anything - why are you using actors at all when you have a thread pool for these things?). I'm not putting in an answer for now though, since I've no idea!http://stackoverflow.com/questions/1400716/apple-certified-professionals/1400726#1400726Comment by Calum on apple certified professionalsCalumhttp://stackoverflow.com/users/84342009-09-09T16:37:11Z2009-09-09T16:37:11ZThe latter looks a lot like what the OP is looking for, although interestingly there is no software-related certifications listed.http://stackoverflow.com/questions/1342350/creating-strings-from-bytes-ints-in-java/1342367#1342367Comment by Calum on Creating Strings from Bytes/Ints in JavaCalumhttp://stackoverflow.com/users/84342009-08-27T17:00:34Z2009-08-27T17:00:34ZJust to raise a point about this answer, the "intern()" one only requires "test" to be intern()ed because "compare" is a literal in the source file (which means it's interned already). If it was created in the same way as "test", you'd need to use test.intern() == compare.intern() (and it's usually bad practice unless there's guaranteed to be a relatively small, or at least constrained, number of distinct strings).http://stackoverflow.com/questions/1129514/is-it-possible-to-write-loop-in-scala-console/1129532#1129532Comment by Calum on Is it possible to write loop in Scala Console ?Calumhttp://stackoverflow.com/users/84342009-07-15T12:35:26Z2009-07-15T12:35:26ZOf course for the same effect there's: for( i <- 0 until 10 ) { println( i ); }, the "while" way of doing it seems unusual in Scala.http://stackoverflow.com/questions/1095329/scala-constructor-overload/1095333#1095333Comment by Calum on Scala constructor overload?Calumhttp://stackoverflow.com/users/84342009-07-08T15:25:15Z2009-07-08T15:25:15ZAlso the site FAQ does say it's accepted practice to answer your own question - it's always nice to have an answer to a common question, even if it was asked by someone who already knows :)http://stackoverflow.com/questions/915056/convert-toint32-versus-tryparse/915069#915069Comment by Calum on Convert.ToInt32 versus TryParseCalumhttp://stackoverflow.com/users/84342009-06-03T16:17:56Z2009-06-03T16:17:56ZYeah, that's why I mentioned the "while wanting to return a primitive" part. It's possible but never neat, essentially.