Very interesting visualization. It's always hard to wrap in mind what a Brainfuck program does while executing.
While reading the source of the interpreter, I found out that the "[" command is not working properly. It is suppose to jump to the next matching bracket when the value of the current pointer is zero. I'm quite sure the creator is aware of that as he wrote on the demo page what it supposed to do. Good work still !
An improvement would be to highlight the currently active instruction in the source code. Also, for debugging many algorithms it is nice to see the current ASCII character alongside the numeric value in a cell.
Nice gui. It needs a fast-forward speed. It also needs to interpret the , instruction for accepting input. Maybe you could use http://www.iamcal.com/misc/bf_debug (in Debug mode) as a guide.
While reading the source of the interpreter, I found out that the "[" command is not working properly. It is suppose to jump to the next matching bracket when the value of the current pointer is zero. I'm quite sure the creator is aware of that as he wrote on the demo page what it supposed to do. Good work still !