Re: [Pharo-users] unsubscribe

2016-09-19 Thread Ben Coman
hi Melanie, Can you check your junk mail for any confirmation emails that may have got stuck there. cheers -ben On Tue, Sep 20, 2016 at 9:58 AM, Melanie Tarr wrote: > > > On Sun, Sep 18, 2016 at 8:22 PM, Hilaire wrote: >> >> Hi, >> >> >> My Pharo4.0 image is in a situation where each MNU excep

[Pharo-users] unsubscribe

2016-09-19 Thread Melanie Tarr
On Sun, Sep 18, 2016 at 8:22 PM, Hilaire wrote: > Hi, > > > My Pharo4.0 image is in a situation where each MNU exception throw from > a DNU result in infinite loop, locking the image, even not breakable > with alt+[.]. > > From the doesNotUnderstand: message, > the "exception reachedDefaultHandle

Re: [Pharo-users] Using symbol

2016-09-19 Thread p...@highoctane.be
You can search for usages of Symbol. Lots of things to learn indeed. On Mon, Sep 19, 2016 at 12:12 PM, frankl1_miky wrote: > Hi, > > I'll like to know what is happening exactly in background when I'm using a > symbol as in *Collection withAllSubclasses collect: #numberOfLinesOfCode*. > > I al

Re: [Pharo-users] doesNotUnderstand: infinit loop

2016-09-19 Thread Hilaire
Guille, Can you send me your email at hilaire [at] drgeo.eu, I can't have it through the Gmane news forum. Hilaire Le 19/09/2016 à 10:21, Guille Polito a écrit : > Hillaire, if you have an image with the problem, can you forward it to > me? I'm looking forward to kill this bug with my axe. --

Re: [Pharo-users] Using symbol

2016-09-19 Thread Ben Coman
On Mon, Sep 19, 2016 at 6:12 PM, frankl1_miky wrote: > Hi, > > I'll like to know what is happening exactly in background when I'm using a > symbol as in *Collection withAllSubclasses collect: #numberOfLinesOfCode*. Nicolas has a good answer. Now you could explore this yourself. First, as a refer

Re: [Pharo-users] Using symbol

2016-09-19 Thread Nicolas Passerini
Collection withAllSubclasses collect: #numberOfLinesOfCode is the equicalent to Collection withAllSubclasses collect: [:each | each numberOfLinesOfCode ] What happens below is that (unary) symbols are polymorphic with one parameters blocks, i.e. they understand cull: and value:, which is impleme

[Pharo-users] Using symbol

2016-09-19 Thread frankl1_miky
Hi, I'll like to know what is happening exactly in background when I'm using a symbol as in *Collection withAllSubclasses collect: #numberOfLinesOfCode*. I also want to know the other cases where I can use symbol. Is there any tutorial about using symbol? Thanks -- View this message in cont

Re: [Pharo-users] Fwd: [Vm-dev] unused-method removal vs. Spur compaction

2016-09-19 Thread Clément Bera
Well maybe it would just work. One needs to try. I am pretty sure we could compress the Pharo image using code run in Squeak out of the box. We may or may not be able to run it from Pharo out of the box. Another interesting thing could be to use that as part of the bootstrap. I will try to have

Re: [Pharo-users] Fwd: [Vm-dev] unused-method removal vs. Spur compaction

2016-09-19 Thread Ben Coman
Right mailing list. Wrong assumptions. I guessed it would *just*work*. Thanks for the correction. cheers -ben On Mon, Sep 19, 2016 at 3:51 PM, Clément Bera wrote: > I am not sure this is the right mailing list. > > Spur32BitPreen could be used as part of the Pharo release process as long as > the

Re: [Pharo-users] doesNotUnderstand: infinit loop

2016-09-19 Thread Denis Kudriashov
Also in latest version we integrate this fix: 16877 2016-09-19 10:21 GMT+02:00 Guille Polito : > Hi, > > I was suffering from this infinite loop since a long time. Last week I > thought I was able to reproduce it but as soon

Re: [Pharo-users] doesNotUnderstand: infinit loop

2016-09-19 Thread Guille Polito
Hi, I was suffering from this infinite loop since a long time. Last week I thought I was able to reproduce it but as soon as I tried to fix it I could not reproduce it anymore... So I wasn't able to tell if I fixed it or not. The only thing I can say is that this is difficult to interrupt no

Re: [Pharo-users] doesNotUnderstand: infinit loop

2016-09-19 Thread Denis Kudriashov
Hi. I propose this 19108 . 2016-09-18 17:31 GMT+02:00 stepharo : > Hi denis > > Could you propose a way to speed up the stack? Write less :) > Because interrupting an endless or othe