Monthly Archives: February 2010

Review: DrJava – A Simple IDE For Beginners

I found a nice review of DrJava today, written by Julian Jaic. DrJava is a simple and light IDE for Java development. It is a free, open source IDE primarily designed for students. But it also includes powerful features for … Continue reading

Share
Posted in DrJava | Leave a comment

Print This Post Print This Post   Email This Email This

ReLooper for DrJava?

I received a message from Danny Dig, the project lead of the ReLooper project. ReLooper is a refactoring tool that enables Java programmers to parallelize loops over arrays or vectors using Java’s upcoming ParallelArray framework. I assume Danny searched for … Continue reading

Share
Posted in DrJava, Ramblings | Leave a comment

Print This Post Print This Post   Email This Email This

Short, Non-Technical Talks Are Hard

I just gave my talk Testing Concurrent Programs, A 7-Minute Jargon-Free Introduction to the students of the Thesis Writing Seminar of the School of Engineering here at Rice. It went very well, but I’ve got to say that this was … Continue reading

Share
Posted in Concurrent Unit Testing, Graduate School | Leave a comment

Print This Post Print This Post   Email This Email This

Presentation: Testing Concurrent Programs, A 7-Minute Jargon-Free Introduction

Testing Concurrent Programs, A 7-Minute Jargon-Free Introduction (PowerPoint, view embedded) Where: Rice University School of Engineering, Thesis Writing Seminar When: February 25, 2010 A 7-minute jargon-free introduction to the problems of testing concurrent programs, and a proposal for a solution, … Continue reading

Share
Posted in Publications | 1 Comment

Print This Post Print This Post   Email This Email This

1.6.0_18 Seems to Have Fixed Bug

Java’s latest version, JDK 1.6.0 Update 18, seems to have fixed the most frequent DrJava bug report, which Corky determined to be Sun’s problem (Oracle’s problem now). We have been filing all of the bug reports as duplicates of bug … Continue reading

Share
Posted in DrJava | Leave a comment

Print This Post Print This Post   Email This Email This

New Mint Release: r15116

I just created a new release of Mint and DrJava with Mint: February 17, 2010 (r15116). The release is available from the Mint implementation page: JavaMint-r15116.tar.gz JavaMint-r15116-binaries.zip drjava-r5178-mint-r15116.jar There were some small changes in the approximation of weak separability to … Continue reading

Share
Posted in Mint | Leave a comment

Print This Post Print This Post   Email This Email This

<clinit> in The Thread of First Use

Question: In which thread does <clinit> run? Answer: is being executed in whatever thread uses the class first. package testers; import java.awt.EventQueue; public class CLInit { public static void main(String[] args) throws Exception { new CLInit2().doSomething(); EventQueue.invokeAndWait(new Runnable() { public … Continue reading

Share
Posted in Concurrent Unit Testing | 1 Comment

Print This Post Print This Post   Email This Email This

Anonymous Inner Class Surprise

I had no idea that the following code was allowed: public class AICSurprise { public static void main(String[] args) { new Object() { public void foo() { System.out.println(“foo”); } }.foo(); } } I thought foo() could not be accessed from … Continue reading

Share
Posted in Ramblings | Leave a comment

Print This Post Print This Post   Email This Email This

Code<?> Escaped As Statement

A few days ago, I changed the Mint compiler to allow non-void code objects to be spliced in where statement form is required: Code x = ; Code c = ; This essentially generates the code below, which allows the … Continue reading

Share
Posted in Mint | Leave a comment

Print This Post Print This Post   Email This Email This

<clinit> in Which Thread?

Question: In which thread does <clinit> run? Answer tomorrow.

Share
Posted in Concurrent Unit Testing | Leave a comment

Print This Post Print This Post   Email This Email This

The Free Java Book

Corky just informed me that there is a talk by Daniel L. Schuster at SIGCSE 2010 about Java, games, and the Free Java Book. I’ll definitely check out the talk and the book. I’ll also examine how concurrency is handled … Continue reading

Share
Posted in Concurrent Unit Testing, DrJava | Leave a comment

Print This Post Print This Post   Email This Email This

New Mint Release: r15085

I just created a new release of Mint and DrJava with Mint: February 12, 2010 (r15085). The release is available from the Mint implementation page: JavaMint-r15085.tar.gz JavaMint-r15085-binaries.zip drjava-r5178-mint-r15085.jar The two changes since the last release involve CSP values and escapes … Continue reading

Share
Posted in Mint | 1 Comment

Print This Post Print This Post   Email This Email This

Mint Talk Video

The video recording of the Mint talk I gave on Monday is now available on vimeo: Mint: A Multi-stage Extension of Java (Mathias Ricken) from Mathias Ricken on Vimeo.

Share
Posted in Mint, Pictures | Leave a comment

Print This Post Print This Post   Email This Email This

Pictures from Yesterday’s Talk

Here are a few pictures from yesterday’s talk about Mint.

Share
Posted in Graduate School, Mint, Pictures | Leave a comment

Print This Post Print This Post   Email This Email This

Mint Talk in COMP 600

I just gave the first presentation about Mint in the COMP 600 graduate seminar at Rice. The slides for “Mint: A Multi-stage Extension of Java” are available (PowerPoint, PDF, view embedded). This weekend, I was kicking myself why I had … Continue reading

Share
Posted in Graduate School, Mint | 1 Comment

Print This Post Print This Post   Email This Email This

Presentation: Mint: A Multi-stage Extension of Java

Mint: A Multi-stage Extension of Java (PowerPoint, PDF, view embedded) Video recording available on vimeo. Where: Rice University Computer Science Department, COMP 600 Graduate Seminar When: February 8, 2010 Multi-stage programming (MSP) provides a safe way of generating code at … Continue reading

Share
Posted in Mint, Publications | 2 Comments

Print This Post Print This Post   Email This Email This