show/hide this revision's text 2 added 20 characters in body

I use Smalltalk (Squeak, Pharo and Dolphin) for the odd tasks at my work. Say I need to manipulate some data, I find it easier to do in Smalltalk over Java even though I have 9 years Java experience. Say I need to knock up a utility web page I'll use Seaside and webservices and have it up and debugged much quicker than using Java (Groovy/Grails are catching up there though but then again its another language to learn...again). I've also used Seaside to create some WAP pages for an estate agent as a proof of concept.

Sometimes I refer to Smalltalk implementations to see how they solved a design problem (so I'd run through say StrongTalk, Squeak, stx, Smalltalk MT, Dolphin, VisualWorks). Often the implementations are the same sometimes different. Sometimes I try and copy a protocol and put it in my Java code as much as possible, although I always try and keep within the Java idioms that the other developers in my team would be comfortable with :)

The main benefit I find is the debugging support, the 'low ceremony' of dynamic typing and the expressiveness of Smalltalk syntax and Seaside. On the downside it takes a while to get use used to the image and maintaining it . Using effectively; using a source code repository helps though.

show/hide this revision's text 1

I use Smalltalk (Squeak, Pharo and Dolphin) for the odd tasks at my work. Say I need to manipulate some data, I find it easier to do in Smalltalk over Java even though I have 9 years Java experience. Say I need to knock up a utility web page I'll use Seaside and webservices and have it up and debugged much quicker than using Java (Groovy/Grails are catching up there though but then again its another language to learn...again). I've also used Seaside to create some WAP pages for an estate agent as a proof of concept.

Sometimes I refer to Smalltalk implementations to see how they solved a design problem (so I'd run through say StrongTalk, Squeak, stx, Smalltalk MT, Dolphin, VisualWorks). Often the implementations are the same sometimes different. Sometimes I try and copy a protocol and put it in my Java code as much as possible, although I always try and keep within the Java idioms that the other developers in my team would be comfortable with :)

The main benefit I find is the debugging support, the 'low ceremony' of dynamic typing and the expressiveness of Smalltalk syntax and Seaside. On the downside it takes a while to get use to the image and maintaining it. Using a source code repository helps.