[Pharo-users] free learnig book

2014-04-07 Thread Roelof Wobben
Hello, I wonder if there is a free book with a lot of exercises so I can practice and learn a lot about Smalltalk. Roelof

Re: [Pharo-users] free learnig book

2014-04-07 Thread Jean Baptiste Arnaud
Steph keeps some treasure: http://stephane.ducasse.free.fr/FreeBooks.html On 07 Apr 2014, at 08:43, Roelof Wobben r.wob...@home.nl wrote: Hello, I wonder if there is a free book with a lot of exercises so I can practice and learn a lot about Smalltalk. Roelof

Re: [Pharo-users] [ANN] WIP iStoa

2014-04-07 Thread Bernat Romagosa
Very nice, Hilarie! Just FYI, I had to replace the shipped vm and plugins by the latest ones to get it to work on my Debian Wheezy machine. Congrats! 2014-04-05 18:20 GMT+02:00 Hilaire Fernandes hilaire.fernan...@gmail.com: Hello, For those who want to give a try to work in progress iStoa

Re: [Pharo-users] Drag and drop items between list views

2014-04-07 Thread Benjamin
Sorry for the delay, I turn off my emails during the week end :) Out of this thread, I have made this post: http://spec.st/docs/drag_n_drop/ With a small change in the Spec code base (to not sort by default, but only when a sorting block is specified), it gives an example of how to do what you

[Pharo-users] Compiler evaluate: - Smalltalk evaluate:

2014-04-07 Thread Andre Hora
Hello, Recently in Pharo there was some tendency to replace Compiler evaluate: by Smalltalk evaluate:. Stef does not seem to agree with that. My question is which one is the correct convention to call #evaluate: ? thanks in advance, -- Andre Hora

Re: [Pharo-users] Drag and drop items between list views

2014-04-07 Thread MartinW
Benjamin Van Ryseghem (Pharo) wrote Out of this thread, I have made this post: http://spec.st/docs/drag_n_drop/ With a small change in the Spec code base (to not sort by default, but only when a sorting block is specified), it gives an example of how to do what you want :) Cool. Thank you.

Re: [Pharo-users] Compiler evaluate: - Smalltalk evaluate:

2014-04-07 Thread Marcus Denker
On 07 Apr 2014, at 12:15, Andre Hora andreho...@gmail.com wrote: Hello, Recently in Pharo there was some tendency to replace Compiler evaluate: by Smalltalk evaluate:. Stef does not seem to agree with that. My question is which one is the correct convention to call #evaluate: ? The

Re: [Pharo-users] free learnig book

2014-04-07 Thread Roelof Wobben
Jean Baptiste Arnaud schreef op 7-4-2014 8:58: Steph keeps some treasure: http://stephane.ducasse.free.fr/FreeBooks.html On 07 Apr 2014, at 08:43, Roelof Wobben r.wob...@home.nl wrote:

Re: [Pharo-users] Compiler evaluate: - Smalltalk evaluate:

2014-04-07 Thread Sergi Reyner
2014-04-07 11:51 GMT+01:00 Marcus Denker marcus.den...@inria.fr: In 4.0, we will remove the old compiler and then we can see how to make the API perfect. Will it be able to decompile by then? Cheers, Sergi

Re: [Pharo-users] [ANN] JNIPort for Pharo 3.0 alpha

2014-04-07 Thread Tudor Girba
Hi Joachim, Thanks for the explanations. It looks complicated but I am very happy it is possible! I will give a try next week and get back to you. Cheers, Doru On Sat, Apr 5, 2014 at 2:32 PM, Joachim Geidel joachim.gei...@onlinehome.de wrote: Am 31.03.2014 um 21:25 schrieb Tudor Girba

[Pharo-users] Use of FileDialogWindow : getting the result

2014-04-07 Thread Thomas Bany
Hi ! I'm trying to fit a GUI in full screen mode, that uses a FileDialogWindow at some point. I'm able to recover the answer from FileDialogWindow when I it is opened modaly. However, since I would like to open it fullscreen with the selector #openFullScreen, the calling block does not wait and

Re: [Pharo-users] free learnig book

2014-04-07 Thread Damien Cassou
On Mon, Apr 7, 2014 at 8:43 AM, Roelof Wobben r.wob...@home.nl wrote: I wonder if there is a free book with a lot of exercises so I can practice and learn a lot about Smalltalk. You can learn from Pharo By Example http://pharobyexample.org/ -- Damien Cassou

Re: [Pharo-users] Compiler evaluate: - Smalltalk evaluate:

2014-04-07 Thread Camille Teruel
On 7 avr. 2014, at 16:31, Clément Bera bera.clem...@gmail.com wrote: Hello, I do not like 'Smalltalk evaluate:' either. One solution is to do 'self class compiler evaluate:'. Yes IMO, calling #compiler on a class is the best solution since it returns a compiler with the options that the

[Pharo-users] [spec] set ballonText on a treeNode

2014-04-07 Thread Emilio Oca
Hi I think this is spec related. How can I set a ballonText on aTreeNode? I was expecting something like: tree childrenBlock: [ :anObject | self childrenFor: anObject ]; displayBlock: [ :anObject | self labelFor: anObject ];

Re: [Pharo-users] Drag and drop items between list views

2014-04-07 Thread Benjamin
Ben On 07 Apr 2014, at 12:17, MartinW w...@fastmail.fm wrote: Benjamin Van Ryseghem (Pharo) wrote Out of this thread, I have made this post: http://spec.st/docs/drag_n_drop/ With a small change in the Spec code base (to not sort by default, but only when a sorting block is specified), it

Re: [Pharo-users] Use of FileDialogWindow : getting the result

2014-04-07 Thread Thomas Bany
Okey so I only needed to select a directory and needed to shrink the size of the widget anyway. So I opted for the sublass solution, got rid of the file pane and added an action block on the #ok method. 2014-04-07 16:12 GMT+02:00 Thomas Bany mun.sys...@gmail.com: Hi ! I'm trying to fit a GUI

Re: [Pharo-users] [ANN] WIP iStoa

2014-04-07 Thread Hilaire Fernandes
Hello, Can you tell me the error message you get when executing from a terminal? Also I am curious about the output you get from your latest VM with this command: ldd -v bin/pharo Thanks Hilaire Le 07/04/2014 10:01, Bernat Romagosa a écrit : Very nice, Hilarie! Just FYI, I had to

Re: [Pharo-users] Use of FileDialogWindow : getting the result

2014-04-07 Thread Nicolai Hess
2014-04-07 17:58 GMT+02:00 Thomas Bany mun.sys...@gmail.com: Okey so I only needed to select a directory and needed to shrink the size of the widget anyway. So I opted for the sublass solution, got rid of the file pane and added an action block on the #ok method. 2014-04-07 16:12 GMT+02:00

Re: [Pharo-users] Compiler evaluate: - Smalltalk evaluate:

2014-04-07 Thread Andre Hora
Thanks guys! On Apr 7, 2014 4:36 PM, Camille Teruel camille.ter...@gmail.com wrote: On 7 avr. 2014, at 16:31, Clément Bera bera.clem...@gmail.com wrote: Hello, I do not like 'Smalltalk evaluate:' either. One solution is to do 'self class compiler evaluate:'. Yes IMO, calling #compiler