User Calum - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T23:32:45Z http://stackoverflow.com/feeds/user/8434 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2378218/deadlock-in-scala/2379082#2379082 0 Answer by Calum for 'Deadlock' in scala Calum http://stackoverflow.com/users/8434 2010-03-04T12:09:02Z 2010-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#1950140 1 Answer by Calum for Printing Unicode from Scala interpreter Calum http://stackoverflow.com/users/8434 2009-12-23T00:54:46Z 2009-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 &lt;control&gt;</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&gt; print(0x20AC.toChar) € </code></pre> <p>Another fun test is to print the Unicode snowman character:</p> <pre><code>scala&gt; 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&gt; 'ƒ'.toInt res8: Int = 402 scala&gt; 402.toChar res9: Char = ƒ </code></pre> http://stackoverflow.com/questions/1342350/creating-strings-from-bytes-ints-in-java/1342371#1342371 5 Answer by Calum for Creating Strings from Bytes/Ints in Java Calum http://stackoverflow.com/users/8434 2009-08-27T16:56:53Z 2009-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#1044935 1 Answer by Calum for Unable to understand a line of Python code exactly Calum http://stackoverflow.com/users/8434 2009-06-25T16:37:08Z 2009-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#915069 7 Answer by Calum for Convert.ToInt32 versus TryParse Calum http://stackoverflow.com/users/8434 2009-05-27T10:39:53Z 2009-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#915049 1 Answer by Calum for MySQl Query Execution Plan Calum http://stackoverflow.com/users/8434 2009-05-27T10:36:17Z 2009-05-27T10:36:17Z <p>Use <code>EXPLAIN &lt;your query&gt;</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#495289 0 Answer by Calum for File Extension to MIME Type Web Service? Calum http://stackoverflow.com/users/8434 2009-01-30T12:01:00Z 2009-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#428562 2 Answer by Calum for Is it impractical to put an HTML form into an email? Calum http://stackoverflow.com/users/8434 2009-01-09T15:46:48Z 2009-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#268713 14 Answer by Calum for Is there a no-duplicate List implementation out there? Calum http://stackoverflow.com/users/8434 2008-11-06T13:38:42Z 2008-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#250145 0 Answer by Calum for Best programming methodology for very fast timeline and little requirements? Calum http://stackoverflow.com/users/8434 2008-10-30T13:19:15Z 2008-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#91039 1 Answer by Calum for Factorial Algorithms in different languages Calum http://stackoverflow.com/users/8434 2008-09-18T08:54:02Z 2008-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 =&gt; 1 case _ =&gt; value * factorial( value - 1 ) } </code></pre> http://stackoverflow.com/questions/70537/cheat-single-inheritance-in-java/70559#70559 4 Answer by Calum for Cheat single inheritance in Java !! Calum http://stackoverflow.com/users/8434 2008-09-16T09:04:43Z 2008-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#70535 10 Answer by Calum for (no) Properties in Java? Calum http://stackoverflow.com/users/8434 2008-09-16T09:00:15Z 2008-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#66272 1 Answer by Calum for What is the best multi-platform RAD language? Calum http://stackoverflow.com/users/8434 2008-09-15T19:55:08Z 2008-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#66157 0 Answer by Calum for Order of DOM NodeList returned by getChildNodes() Calum http://stackoverflow.com/users/8434 2008-09-15T19:46:48Z 2008-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#65727 17 Answer by Calum for why to use StringBuffer in java instead of the string concantion operator Calum http://stackoverflow.com/users/8434 2008-09-15T19:02:48Z 2008-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#64463 3 Answer by Calum for Disadvantages of Test Driven Development? Calum http://stackoverflow.com/users/8434 2008-09-15T16:31:56Z 2008-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#64396 5 Answer by Calum for Multimap in Scala Calum http://stackoverflow.com/users/8434 2008-09-15T16:24:13Z 2008-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#64377 5 Answer by Calum for Is Scala the next big thing? Calum http://stackoverflow.com/users/8434 2008-09-15T16:21:52Z 2008-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#2379086 Comment by Calum on 'Deadlock' in scala Calum http://stackoverflow.com/users/8434 2010-03-04T12:53:28Z 2010-03-04T12:53:28Z Well 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#2083298 Comment by Calum on Check if a double is evenly divisible by another double in C? Calum http://stackoverflow.com/users/8434 2010-01-18T00:52:25Z 2010-01-18T00:52:25Z So 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#1979812 Comment by Calum on Printing Unicode from Scala interpreter Calum http://stackoverflow.com/users/8434 2010-01-11T13:42:31Z 2010-01-11T13:42:31Z McDowell: 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 &quot;anything goes&quot; nonsense on that system. On the other hand &quot;anything goes&quot; 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#1979812 Comment by Calum on Printing Unicode from Scala interpreter Calum http://stackoverflow.com/users/8434 2010-01-01T16:59:15Z 2010-01-01T16:59:15Z One 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 &quot;val myOut = new PrintStream( System.out, &quot;UTF-8&quot; ); myOut.print( 0x20AC.toChar )&quot;. 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#1950140 Comment by Calum on Printing Unicode from Scala interpreter Calum http://stackoverflow.com/users/8434 2010-01-01T16:54:47Z 2010-01-01T16:54:47Z Ah, 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#1580936 Comment by Calum on What does MySQL do when auto incrementing IDs overflow? Calum http://stackoverflow.com/users/8434 2009-10-17T00:14:01Z 2009-10-17T00:14:01Z Is the row not being inserted with an erro really &quot;worse&quot;? 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-conversion Comment by Calum on Java SGML to XML conversion? Calum http://stackoverflow.com/users/8434 2009-10-01T14:31:27Z 2009-10-01T14:31:27Z SGML 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#1483744 Comment by Calum on List of Scala's "magic" functions Calum http://stackoverflow.com/users/8434 2009-09-30T18:46:17Z 2009-09-30T18:46:17Z ...and you've done it, thanks! http://stackoverflow.com/questions/1483212/list-of-scalas-magic-functions/1483744#1483744 Comment by Calum on List of Scala's "magic" functions Calum http://stackoverflow.com/users/8434 2009-09-28T09:29:00Z 2009-09-28T09:29:00Z You 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-scala Comment by Calum on Thrift Concurrency Implementation in Scala Calum http://stackoverflow.com/users/8434 2009-09-14T17:01:42Z 2009-09-14T17:01:42Z I'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#1400726 Comment by Calum on apple certified professionals Calum http://stackoverflow.com/users/8434 2009-09-09T16:37:11Z 2009-09-09T16:37:11Z The 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#1342367 Comment by Calum on Creating Strings from Bytes/Ints in Java Calum http://stackoverflow.com/users/8434 2009-08-27T17:00:34Z 2009-08-27T17:00:34Z Just to raise a point about this answer, the &quot;intern()&quot; one only requires &quot;test&quot; to be intern()ed because &quot;compare&quot; is a literal in the source file (which means it's interned already). If it was created in the same way as &quot;test&quot;, 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#1129532 Comment by Calum on Is it possible to write loop in Scala Console ? Calum http://stackoverflow.com/users/8434 2009-07-15T12:35:26Z 2009-07-15T12:35:26Z Of course for the same effect there's: for( i &lt;- 0 until 10 ) { println( i ); }, the &quot;while&quot; way of doing it seems unusual in Scala. http://stackoverflow.com/questions/1095329/scala-constructor-overload/1095333#1095333 Comment by Calum on Scala constructor overload? Calum http://stackoverflow.com/users/8434 2009-07-08T15:25:15Z 2009-07-08T15:25:15Z Also 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#915069 Comment by Calum on Convert.ToInt32 versus TryParse Calum http://stackoverflow.com/users/8434 2009-06-03T16:17:56Z 2009-06-03T16:17:56Z Yeah, that's why I mentioned the &quot;while wanting to return a primitive&quot; part. It's possible but never neat, essentially.