Yes, great superpowers!
A bit more lightweight and efficient than abort(); gdb myApp core

A small reminder for myself:

[
(Delay forSeconds: 2 hours asSeconds) wait.
WorldState addDeferredUIMessage: [ UIManager default inform: 'You''re Smalltalking too much
There are other nice things worth in life' ].
] fork


2013/5/1 Camillo Bruni <camillobruni@gmail.com>
I really love the use of fuel to serialize errors on the build server:
-------------------------------------------------------------------------

[
� �"some code causing an error"
� � Error signal
] on: Error do: [ :error |
� � FLSerializer serialize: error toFileNamed: 'error.fuel' ]

-------------------------------------------------------------------------
Then in a new image open a debugger on the serialized error:
-------------------------------------------------------------------------

error := FLMaterializer materializeFromFileNamed: 'error.fuel'.
error debug.