preload
Nov 24

I haven’t written anything on the blog in a while, so it’s probably time.  This comes from Facebook comments (what doesn’t these days).  Social networking is fun!  I’ve paraphrased and added emphasis below because, hey, this is my blog, after all.  So, let’s visit that Obama birth certificate issue One More Time… Continue reading »

  • Share/Bookmark
Tagged with:
Nov 12

One of the things I have in my Scala startup file is the following.

def show[T](implicit thetype:scala.reflect.Manifest[T]) {
  thetype.erasure.getMethods() foreach println
}
def help(x:AnyRef) {
  x.getClass().getMethods() foreach println
}

These silly little functions are useful – at least, to me. Now when I can’t remember the name of a method I can type something like the following at the Scala prompt. Continue reading »

  • Share/Bookmark
Tagged with: