Re: [Pharo-users] looking for another iterator :)

2018-01-25 Thread Evan Donahue
It is also worth mentioning that there is now also the Cons library available through the Pharo6 catalog browser. Cons is a lazy linked list that can be used like a normal linked list, but can also be used as an iterator over streams or infinite-sequence-generating blocks, using the usual Pharo

Re: [Pharo-users] looking for another iterator :)

2018-01-25 Thread Richard O'Keefe
I thought about that for my own Smalltalk, but then realised that I didn't know whether #upTo:timesSelect: was bounding the number of elements *considered* or the number of elements in the *result*, and I could argue either way. Arguably the cleanest way would be to have something like

Re: [Pharo-users] looking for another iterator :)

2018-01-25 Thread Richard O'Keefe
My own Smalltalk has these: Enumerable methods for: 'enumerating' limit: n do: aBlock "Pass elements of the receiver to aBlock one at a time, as for #do:, but stop after n elements. n must be a non-negative SmallInteger. Which elements you get is for the

Re: [Pharo-users] How to declare a do:[] loop for a matrix to read and acces its elements?

2018-01-25 Thread Richard O'Keefe
Sorry about the late reply, but I've been away on holiday. You wrote "Im not sure is the gameworld should grow inifitly. In the ruleset on wikipedia there is a fixed board size. The smallest one is 3*3 but I could implement is as one possible size to select from." It's not your decision.

Re: [Pharo-users] Voyage and Instance Mode

2018-01-25 Thread Esteban Lorenzano
> On 25 Jan 2018, at 23:24, Dominique Dartois wrote: > > Thanks Esteban. > I was fooled by the doc : "In instance mode, the first argument is always the > repository on which to performed the operation"... > Well, not really, but the object to store. yeah, it should say:

Re: [Pharo-users] Voyage and Instance Mode

2018-01-25 Thread Dominique Dartois
Thanks Esteban. I was fooled by the doc : "In instance mode, the first argument is always the repository on which to performed the operation"... Well, not really, but the object to store. Regards 2018-01-25 23:07 GMT+01:00 Esteban Lorenzano : > > > > On 25 Jan 2018, at

Re: [Pharo-users] Voyage and Instance Mode

2018-01-25 Thread Esteban Lorenzano
> On 25 Jan 2018, at 23:03, Dominique Dartois wrote: > > Hello all. > > I'am learning to use Voyage by trying the examples in the Voyage doc (in the > Enterprise Pharo book). > I read "By default, Voyage works in instance mode". > If I run the example in instance mode, I

[Pharo-users] Voyage and Instance Mode

2018-01-25 Thread Dominique Dartois
Hello all. I'am learning to use Voyage by trying the examples in the Voyage doc (in the Enterprise Pharo book). I read "By default, Voyage works in instance mode". If I run the example in instance mode, I get an error via the debugger. |repo anAssociation| repo := VOMemoryRepository new.

[Pharo-users] Download pillar image -> Error 403: Forbidden

2018-01-25 Thread Hernán Morales Durand
I am following the Publishing Pillar Booklet guide from here https://github.com/SquareBracketAssociates/Booklet-PublishingAPillarBooklet $ git clone g...@github.com:SquareBracketAssociates/Booklet-PublishingAPillarBooklet.git $ cd Booklet-PublishingAPillarBooklet/ $ wget

Re: [Pharo-users] Lengthy operations block UI

2018-01-25 Thread Andrei Stebakov
Thanks, Sven, got it On Jan 25, 2018 10:36, "Sven Van Caekenberghe" wrote: > Hi Andrei, > > > On 25 Jan 2018, at 16:26, Andrei Stebakov wrote: > > > > I have written some code that has a deep nested loop of calling > ZnClient>>get. > > In the loop I also

Re: [Pharo-users] Lengthy operations block UI

2018-01-25 Thread Sven Van Caekenberghe
Hi Andrei, > On 25 Jan 2018, at 16:26, Andrei Stebakov wrote: > > I have written some code that has a deep nested loop of calling > ZnClient>>get. > In the loop I also execute Transcript>>show but I can only see the transcript > output after a few seconds when the loop

[Pharo-users] Lengthy operations block UI

2018-01-25 Thread Andrei Stebakov
I have written some code that has a deep nested loop of calling ZnClient>>get. In the loop I also execute Transcript>>show but I can only see the transcript output after a few seconds when the loop is finished. During all that time while the loop is busy the UI is also unresponsive. Is there a way

Re: [Pharo-users] [ANN] PharoLauncher v1.1 released!

2018-01-25 Thread Christophe Demarey
> Le 25 janv. 2018 à 14:46, Mariano Martinez Peck a > écrit : > > Thanks Christophe, > > Is there a way to update my existing Launcher image or should I wait until > you release a future binary (no problem, I can wait). > > Thanks! > > On Thu, Jan 25, 2018 at 10:23

Re: [Pharo-users] [ANN] PharoLauncher v1.1 released!

2018-01-25 Thread Mariano Martinez Peck
Thanks Christophe, Is there a way to update my existing Launcher image or should I wait until you release a future binary (no problem, I can wait). Thanks! On Thu, Jan 25, 2018 at 10:23 AM, Christophe Demarey < christophe.dema...@inria.fr> wrote: > > > Le 25 janv. 2018 à 13:54, Christophe

Re: [Pharo-users] [ANN] PharoLauncher v1.1 released!

2018-01-25 Thread Christophe Demarey
> Le 25 janv. 2018 à 13:54, Christophe Demarey a > écrit : > > Hi Mariano, > >> Le 25 janv. 2018 à 12:33, Mariano Martinez Peck a >> écrit : >> >> Hi Christoph, >> >> One issue I am having is that the Launch without settings is actually

Re: [Pharo-users] [ANN] PharoLauncher v1.1 released!

2018-01-25 Thread Christophe Demarey
Hi Mariano, > Le 25 janv. 2018 à 12:33, Mariano Martinez Peck a > écrit : > > Hi Christoph, > > One issue I am having is that the Launch without settings is actually running > the settings anyway... (it was not the case before). > > Do you see this as well? Hum, yes

Re: [Pharo-users] [ANN] PharoLauncher v1.1 released!

2018-01-25 Thread Mariano Martinez Peck
Hi Christoph, One issue I am having is that the Launch without settings is actually running the settings anyway... (it was not the case before). Do you see this as well? On Fri, Jan 19, 2018 at 9:04 AM, Stephane Ducasse wrote: > tx! > > > On Thu, Jan 18, 2018 at

[Pharo-users] [ANN] Pharo Consortium New Gold Member: KnowRoaming

2018-01-25 Thread Marcus Denker
The Pharo Consortium is very happy to announce that KnowRoaming has joined the Consortium as a Gold Member. About - KnowRoaming: https://www.knowroaming.com - Pharo Consortium: http://consortium.pharo.org The goal of the Pharo Consortium is to allow companies and institutions to support the