Essays:

Userland -
-



Sam Ruby
< It's just data >

Updated: 11/1/2002; 4:43:36 AM.

Thursday, October 17, 2002

Chris Sells: I have always turned up my nose at run-time type checking until I realized (and this is the insight I got from Tim's talk) that *all* marshaling-based type checking is done at run-time.  Excellent!

Now for fun: what is '1' + '2'?  The answer may surprise you.  C# and Java agree (insert obvious joke here), but get a different answer than C, Perl, or Python do (which get three different answers).  Here's some test programs.

C#
public class test {
  public static void Main(string[] args) {
    System.Console.WriteLine('1' + '2');
  }
}

Java
public class test {
  public static void main(String[] args) {
    System.out.println('1' + '2');
  }
}

More on this subject can be found in Dealing with Diversity


  2:50:46 PM   Comment 

Mark Pilgrim: Guess what this means.  I'm quite interested in hearing the results.  People are welcome to leave their feedback here.
  1:38:56 PM   Comment 

Dave Winer: When Radio reads an RSS feed that contains links to comments, it shows them on the News page, so if you read something there and want to comment (and the site supports them) you can just click on the Comments link and you're there.  I'm in.  I've added a comments element to my rss2 feed.  I also continue to provide the number of comments made on the entry to date.
  9:02:06 AM   Comment 




October 2002
Sun Mon Tue Wed Thu Fri Sat
    1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31    
Sep   Nov

Click to see the XML version of this web page.


Related: Help link
Scripting News
Simon Fell > Its just code
John Robb's Radio Weblog
Peter Drayton's Radio Weblog
Bitworking
rebelutionary
Don Box's Spoutlet
Sjoerd Visscher's weblog - w3future.com
Bright Eyed Mister Zen
The .NET Guy

Click here to visit the Radio UserLand website.


Last update: 1/25/2002; 7:23:12 AM

© Copyright 2002 Sam Ruby

-