Re: [Pharo-users] Nautilus groups

2015-02-10 Thread Ben Coman
I've never used the groups - mainly because I've never seen a sample workflow that I could copy, and my existing workflow is sufficient (which means I get a mess of windows plastered all over the screen as I follow senderimplementors, and could probably do better). btw, I've just spent 60 seconds

Re: [Pharo-users] recover lost changes

2015-02-10 Thread Martin Bähr
Excerpts from Hartmut's message of 2015-02-10 15:58:13 +0100: Working with Pharo 3.0 I noticed for a while that I could not recover class definitions (do it's) from the Recent Changes. i noticed this too. methods worked fine, but i couldn't recover methods to new classes until i recreated the

Re: [Pharo-users] PhD offer with Pharo about Interaction design

2015-02-10 Thread Marcus Denker
On 10 Feb 2015, at 15:46, Ben Coman b...@openinworld.com wrote: This was interesting to know... The researchers at Inria published over 4,500 articles in 2013. They are behind over 300 active patents and 120 start-ups. It is a big research institute: 8 research centers, 172 Teams,

Re: [Pharo-users] PhD offer with Pharo about Interaction design

2015-02-10 Thread Ben Coman
This was interesting to know... The researchers at Inria published over 4,500 articles in 2013. They are behind over 300 active patents and 120 start-ups. cheers -ben On Tue, Feb 10, 2015 at 9:37 PM, Camille camille.ter...@gmail.com wrote: Great! On 10 Feb 2015, at 14:29, stepharo

Re: [Pharo-users] Problems evaluating message sends in run-time arrays

2015-02-10 Thread Sean P. DeNigris
Andy Burnett wrote In both cases it evaluates to 'Color blue' rather than the Color object. 'Color blue' is the Color object you created and put in your array. It is aColor object. It's print string is 'Color blue'. See Color#printOn: for more info. - Cheers, Sean -- View this message

Re: [Pharo-users] Problems evaluating message sends in run-time arrays

2015-02-10 Thread Ignacio Sniechowski
or | colorList | colorList := { Color blue class }. *Lic. Ignacio Sniechowski, MBA* *Prosavic SRL* *Tel: (011) 4542-6714* On Tue, Feb 10, 2015 at 10:38 PM, Andy Burnett andy.burn...@knowinnovation.com wrote: I would like to create an array with a collection of colour

Re: [Pharo-users] Problems evaluating message sends in run-time arrays

2015-02-10 Thread Ben Coman
I'm away from my Pharo computer to double-check, but is it just that is how a Color object displays itself ? Maybe have a look at ColorprintOn: cheers -ben On Wed, Feb 11, 2015 at 9:38 AM, Andy Burnett andy.burn...@knowinnovation.com wrote: I would like to create an array with a collection of

[Pharo-users] Problems evaluating message sends in run-time arrays

2015-02-10 Thread Andy Burnett
I would like to create an array with a collection of colour values. I tried both: colorList := {Color blue} and colourList := {Color named: #blue.}. In both cases it evaluates to 'Color blue' rather than the Color object. What surprised me was that: charList := {Character digitValue:35.

Re: [Pharo-users] Problems evaluating message sends in run-time arrays

2015-02-10 Thread Ignacio Sniechowski
| colorList | colorList := [ Color blue class ] value. *Lic. Ignacio Sniechowski, MBA* *Prosavic SRL* *Tel: (011) 4542-6714* On Tue, Feb 10, 2015 at 10:38 PM, Andy Burnett andy.burn...@knowinnovation.com wrote: I would like to create an array with a collection of colour

Re: [Pharo-users] Nautilus groups

2015-02-10 Thread Christophe Demarey
Le 10 févr. 2015 à 16:39, Martin Bähr a écrit : Excerpts from Christophe Demarey's message of 2015-02-10 14:28:19 +0100: We would like to know if some of you use Nautilus groups functionality: dynamic groups: 'Last modified packages', 'Most viewed classes', 'Work' do you mean 'last

Re: [Pharo-users] Changes file size

2015-02-10 Thread Sven Van Caekenberghe
Esteban, You might be on something important there. I always found it strange what effect loading Glorp had on an image, blowing it up. I can't say I understand though, best make it into an issue. Sven On 10 Feb 2015, at 00:22, Esteban A. Maringolo emaring...@gmail.com wrote: Just when I

[Pharo-users] Changes file size

2015-02-10 Thread Torsten Bergmann
I always found it strange what effect loading Glorp had on an image, blowing it up. Looks like it is really an effect of the Glorp code. Maybe because it was initially exported from VW and then imported into Squeak/Pharo. I always thought slow loading is because of this or the long license

[Pharo-users] Nautilus groups

2015-02-10 Thread Christophe Demarey
Hello, We would like to know if some of you use Nautilus groups functionality: dynamic groups: 'Last modified packages', 'Most viewed classes', 'Work' user defined groups : from the menu, you can flatten the content of many packages and get all classes into the newly created group. We have the

[Pharo-users] PhD offer with Pharo about Interaction design

2015-02-10 Thread stepharo
http://www.inria.fr/en/institute/recruitment/offers/phd/campaign-2015/%28view%29/details.html?id=PNGFK026203F3VBQB6G68LOE1LOV5=4509LG=ENResultsperpage=20nPostingID=9157nPostingTargetID=15138option=52sort=DESCnDepartmentID=28

Re: [Pharo-users] PhD offer with Pharo about Interaction design

2015-02-10 Thread Camille
Great! On 10 Feb 2015, at 14:29, stepharo steph...@free.fr wrote: http://www.inria.fr/en/institute/recruitment/offers/phd/campaign-2015/%28view%29/details.html?id=PNGFK026203F3VBQB6G68LOE1LOV5=4509LG=ENResultsperpage=20nPostingID=9157nPostingTargetID=15138option=52sort=DESCnDepartmentID=28

Re: [Pharo-users] Agile visualization book as an interactive grafoscopio document

2015-02-10 Thread Nicolai Hess
Hi Offray, 2015-02-09 22:14 GMT+01:00 Offray Vladimir Luna Cárdenas off...@riseup.net : Hi all, So, wiring by sendToOutside: from: is not working and I don't know how to tell my code browser to autosave its contents as part of the node body where they belong. Any help with this is

Re: [Pharo-users] Externally signalling pharo VM for shutdown

2015-02-10 Thread Sebastian Sastre
You can do it with kill -15 PID And, this (requires OSProcess): makeStopHook Answers the process that hooks to the OS signal that makes this worker to shutdown when the VM process receives a TERM signal from the OS. ^ [|semaphore|

[Pharo-users] Externally signalling pharo VM for shutdown

2015-02-10 Thread Esteban A. Maringolo
Is there a way I can externally signal a running pharo-vm in order to request a shutdown equivalent to clicking on the close icon? I'd like to externally manage the start/stop of a Pharo image, but because the image can be used during development, I'd like to provide the user with a confirmation

Re: [Pharo-users] Externally signalling pharo VM for shutdown

2015-02-10 Thread Paul DeBruicker
Depends on how you want the user to access the image. Using Seaside you could do something like whats described here: http://book.seaside.st/book/advanced/deployment/maintaining/requesthandler Esteban A. Maringolo wrote Is there a way I can externally signal a running pharo-vm in order to

Re: [Pharo-users] Spotter: Browse Impementors?

2015-02-10 Thread Sean P. DeNigris
Juraj Kubelka wrote Do you need to open it in Implementors/Senders Browser? Yes. I was fixing mouse wheel user code to handle horizontal wheel events. The Morphic hook is #mouseWheel:, so I wanted a browser on all implementors of #mouseWheel: so that I could view each one and update it if

Re: [Pharo-users] Externally signalling pharo VM for shutdown

2015-02-10 Thread Norbert Hartl
Am 10.02.2015 um 21:25 schrieb Esteban A. Maringolo emaring...@gmail.com: Great. This is cool. Why this can't be part of the stock vm/image? Because it needs OSProcess ;) A zinc server is always present in the image. Sven made a ZnReadEvalPrintDelegate that you can easily hook in to

Re: [Pharo-users] recover lost changes

2015-02-10 Thread stepharo
Yes this should be fixed. Le 10/2/15 16:42, Martin Bähr a écrit : Excerpts from Hartmut's message of 2015-02-10 15:58:13 +0100: Working with Pharo 3.0 I noticed for a while that I could not recover class definitions (do it's) from the Recent Changes. i noticed this too. methods worked fine,

Re: [Pharo-users] Spotter: Browse Impementors?

2015-02-10 Thread Juraj Kubelka
You can dive-in using cmd+shift+right-arrow in Spotter and follow observation of those implementors. Preview is available by cmd+p. So basically you open in a browser only one specific method. Do you need to open it in Implementors/Senders Browser? If yes, can you describe your use case,

[Pharo-users] Spotter: Browse Impementors?

2015-02-10 Thread Sean P. DeNigris
Maybe I'm missing something obvious, but if I zero in on a message name in spotter, can I open a browser on all implementors, or only browse one specific method? - Cheers, Sean -- View this message in context: http://forum.world.st/Spotter-Browse-Impementors-tp4805013.html Sent from the

Re: [Pharo-users] Nautilus groups

2015-02-10 Thread stepharo
having a simpler way to express here is my project would be good. For now the way to add a group is too complex. I would like to click on package and add it to a favorite list that is on the top I would love to get a group containing the class that were loaded (or not in the system). because

Re: [Pharo-users] Externally signalling pharo VM for shutdown

2015-02-10 Thread Esteban A. Maringolo
Great. This is cool. Why this can't be part of the stock vm/image? Regards! Esteban A. Maringolo 2015-02-10 16:28 GMT-03:00 Sebastian Sastre sebast...@flowingconcept.com: You can do it with kill -15 PID And, this (requires OSProcess): makeStopHook Answers the process that hooks

Re: [Pharo-users] recover lost changes

2015-02-10 Thread Norbert Hartl
Am 10.02.2015 um 20:59 schrieb stepharo steph...@free.fr: Yes this should be fixed. You mean fix the current implementation or swap it for epicea? Norbert Le 10/2/15 16:42, Martin Bähr a écrit : Excerpts from Hartmut's message of 2015-02-10 15:58:13 +0100: Working with Pharo 3.0 I

Re: [Pharo-users] Spotter vs Spotlight was: [Re: Cleaning code completition's namespace]

2015-02-10 Thread Laura Risani
What do you mean about all existing menus in the image? Right now, the default Spotter searches for the top level entries in the World menu and then lets you dive if you want. It can also be made easily to search for all menu entries from the World menu. Is that what you have in mind? At

Re: [Pharo-users] SmaCC: First steps

2015-02-10 Thread kilon alios
Ok so after rereading the tutorial and testing again and again , I think I have finally managed to understand how SmaCC really works and I was succesful into converting simple python litsts to pharo arrays and ordered collections. The tricky part now is to apply this knowledge to complex python

[Pharo-users] get them while they are young

2015-02-10 Thread Martin Bähr
here is the reaction of a student preparing for a GSoC project for which the student needs to learn smalltalk: I have installed Pharo v4.0 and started the book Pharo By Example as suggested by you I just wanted to say that I am in the initial stages and loving it already :)

Re: [Pharo-users] Spotter vs Spotlight was: [Re: Cleaning code completition's namespace]

2015-02-10 Thread Ben Coman
On Wed, Feb 11, 2015 at 1:25 PM, Laura Risani laura.ris...@gmail.com wrote: Also at some point i started to get an #inform: msg saying WorldState interCyclePause failed. Thats not GTSpotter. That was my fault since build 40477 integrated Issue 14669. This should be fixed since Issue 40874

[Pharo-users] recover lost changes

2015-02-10 Thread Hartmut
To whom can answer me Working with Pharo 3.0 I noticed for a while that I could not recover class definitions (do it's) from the Recent Changes. I also lost class comments on file-out / file-in . For the second problem I made the following test: 1. take a fresh Pharo 3.0 image (bundle for Mac

Re: [Pharo-users] Nautilus groups

2015-02-10 Thread Martin Bähr
Excerpts from Christophe Demarey's message of 2015-02-10 14:28:19 +0100: We would like to know if some of you use Nautilus groups functionality: dynamic groups: 'Last modified packages', 'Most viewed classes', 'Work' do you mean 'last modified classes'? i use them. i find them much easier to