Category Archives: Features

Alice vs Scratch

On the ap-computerscience listserv, there has recently been a discussion thread discussing the relative merits of Alice and Scratch

submitting bug reports from a java app

Since Java 1.5, you can set the default uncaught exception handler:

Thread.setDefaultUncaughtExceptionHandler( new Thread.UncaughtExceptionHandler() {
public void uncaughtException( Thread thread, Throwable throwable ) {
// fill in code here
}
} );

When combined with the JavaMail API, Alice-3 can now submit bug reports on uncaught exceptions and attach things like the stack trace, the system properties, the user’s project, the [...]