Re: [Newbies] Mindstorms NXT and Squeak?

2008-09-27 Thread Michael Haupt
Hi. On Fri, Sep 26, 2008 at 9:00 PM, Mark L. Miller, Ph.D. [EMAIL PROTECTED] wrote: Does anyone know if anyone is doing anything with Squeak and Mindstorms NXT? apart from the code Lukas mentioned, Martin Beck, a graduate student at HPI in Potsdam, is developing NXTalk. That's a real Smalltalk

Re: [Newbies] code formatter

2008-09-27 Thread Ian J Cottee
A +1 from me regarding the dev images. Having used the SBE image, I thought I'd go to a vanilla Squeak image when I started my development. No no no. I think it was a link that I folllowed from here or irc that led me to the dev images. Well worth using. On Sat, Sep 27, 2008 at 1:32 AM, Rob

[Newbies] sockets in threads

2008-09-27 Thread Aidan Gauland
Hello, I have successfully followed this tutorial on the Squeak wiki, http://wiki.squeak.org/squeak/325 so I tried to come up with a way to have a socket listening on its own thread. This is what I came up with (in a Workspace)... [sckt := Socket newTCP listenOn: 8080. [sckt isConnected

Re: [Newbies] System Browser back and forward

2008-09-27 Thread K. K. Subramaniam
On Saturday 27 Sep 2008 12:47:59 am Mark Volkmann wrote: When ctrl-B is used in the System Browser to browse a selected class in the same System Browser, is there a way to go back to previous classes you were viewing ... like back and forward buttons in a web browser? Alt+r/Ctrl+r in Browser

Re: [Newbies] System Browser back and forward

2008-09-27 Thread Cédrick Béler
eventually, you can use OBBrowser + OBEnhancment that provide this kind of buttons. I think Tamaris has them too. Cédrick 2008/9/27 K. K. Subramaniam [EMAIL PROTECTED]: On Saturday 27 Sep 2008 12:47:59 am Mark Volkmann wrote: When ctrl-B is used in the System Browser to browse a selected class

[Newbies] Are setters a good idea?

2008-09-27 Thread Andy Burnett
I read somewhere - can't remember where - that setters are considered evil. The argument was that in the real world you can't suddenly change the colour of a car, just by settings its colour value. Instead, you have to perform some action, e.g. sprayPaintCar: aColour. Therefore in the OO world,

Re: [Newbies] Are setters a good idea?

2008-09-27 Thread Marcin Tustin
The short answer is that you are exposing the internals of the object. If you have an object that is just a packet of values, great. If you have an object that will always have e.g. a colour, then possibly great, or possibly not depending on the domain. On Sat, Sep 27, 2008 at 7:40 PM, Andy

[Newbies] SqueakMap, Universes, Monticello - Lost in dependencies...

2008-09-27 Thread Markus Fritsche
Hello squeak.general, it's the time of the year again - I am installing squeak, development enhancements, seaside and persistence frameworks again, since the nights become longer and everything flash-based device I have is already bricked... I don't know how to put this in writing without being

[Newbies] Re: SqueakMap, Universes, Monticello - Lost in dependencies...

2008-09-27 Thread Markus Fritsche
Markus Fritsche wrote: Hello squeak.general squeak.beginners, it is (I decided to choose the newbies list since I'm acting like a newbie, tbh). ___ Beginners mailing list Beginners@lists.squeakfoundation.org

Re: [Newbies] multiple Transcript windows

2008-09-27 Thread David T. Lewis
On Fri, Sep 26, 2008 at 01:01:31PM -0500, Mark Volkmann wrote: If I have multiple Transcript windows open, can I choose in code which one will receive output? If not, what is the purpose of having more than one open? The Transcript is normally used as a single place to write things, such

[Newbies] coverage tool

2008-09-27 Thread Mark Volkmann
Is there a code coverage tool for Squeak? When I run my suite of unit tests, I want to know if there is any code within the classes in category I'm testing that wasn't executed by the tests. --- Mark Volkmann ___ Beginners mailing list

[Newbies] Re: code formatter

2008-09-27 Thread Jerome Peace
[Newbies] code formatter Mark Volkmann mark at ociweb.com Sat Sep 27 00:18:00 UTC 2008 Hi Mark, Use case: In a fresh sq7159 world menuopenclass browser select a method (I used KernelTests-Methods MethodPropertiesTest testAllMethodsHaveMethodClass ) to the right of

Re: [Newbies] Re: code formatter

2008-09-27 Thread Mark Volkmann
On Sep 27, 2008, at 9:56 PM, Jerome Peace wrote: [Newbies] code formatter Mark Volkmann mark at ociweb.com Sat Sep 27 00:18:00 UTC 2008 Hi Mark, Use case: In a fresh sq7159 world menuopenclass browser select a method (I used KernelTests-Methods MethodPropertiesTest

[Newbies] HTML documentation for Smalltalk classes

2008-09-27 Thread Mark Volkmann
Is there a tool that generates HTML-based documentation for classes using the comments on classes and methods? Maybe something similar to javadoc? --- Mark Volkmann ___ Beginners mailing list Beginners@lists.squeakfoundation.org

Re: [Newbies] Are setters a good idea?

2008-09-27 Thread Ralph Johnson
On Sat, Sep 27, 2008 at 1:40 PM, Andy Burnett [EMAIL PROTECTED] wrote: I read somewhere - can't remember where - that setters are considered evil. The argument was that in the real world you can't suddenly change the colour of a car, just by settings its colour value. Instead, you have to