[Pharo-users] [ANN] Magritte v3.6

2019-08-23 Thread Norbert Hartl
A short notice that I did a new version of magritte. I made it load in pharo8 but forgot to release a new version. This is it. FYI, Norbert

[Pharo-users] [ANN] mongotalk 1.19

2019-08-23 Thread Norbert Hartl
Pharo8 is enabled and added to travis. Grease depedency has been updated to v1.4.3 FYI, Norbert

[Pharo-users] [ANN] pre-release voyage 1.6

2019-08-23 Thread Norbert Hartl
I made a pre-release for voyage 1.6 at https://github.com/pharo-nosql/voyage/releases/tag/1.6 It enables to usage in pharo8. Also included is a first preview of using ArangoDB [1] with voyage [1] https://www.arangodb.com

[Pharo-users] [ANN] Iterators

2019-08-23 Thread Julien
Hello, I wanted to have an iterator framework for Pharo for a long time. So I started building it step by step and today I think that, while it still requires more documentation, it is ready to be announced and used by others. I present you Iterators : https://github.com/juliendelplanque/Iterat

Re: [Pharo-users] [ANN] Iterators

2019-08-23 Thread Julien
I made a mistake in the following snippet: > Le 23 août 2019 à 16:14, Julien a écrit : > > iterator := #(1 2 3) iterator. > collectionToFill := OrderedCollection new. > iterator > | [ :x | x * 2 ] collectIt > | [ :x :y | x + y ] reduceIt > > collectionToFill. > collectionToFi

Re: [Pharo-users] [ANN] Iterators

2019-08-23 Thread Kasper Østerbye
Hi This is supercool! I had been wondering myself of the lack of such a library. The Xtreams seem to be a bit related, but they focus on IO more that map/reduce programming. I am intrigued by your choice of argument-less methods (reduceIt, collectIt,…). I would most likely have opted for a synta

Re: [Pharo-users] [ANN] Iterators

2019-08-23 Thread Herby Vojčík
On 23. 8. 2019 16:14, Julien wrote: Hello, I wanted to have an iterator framework for Pharo for a long time. So I started building it step by step and today I think that, while it still requires more documentation, it is ready to be announced and used by others. I present you Iterators : ht

Re: [Pharo-users] [ANN] Iterators

2019-08-23 Thread Herby Vojčík
On 23. 8. 2019 19:23, Herby Vojčík wrote:> On 23. 8. 2019 16:14, Julien wrote: >> Hello, >> >> I wanted to have an iterator framework for Pharo for a long time. >> >> So I started building it step by step and today I think that, while it >> still requires more documentation, it is ready to be ann

Re: [Pharo-users] Finding replacements for deprecated functions

2019-08-23 Thread Steve Quezadas
Ok, so with, for example, "SpecColumnLayout", how would I find the new method selector to use? On Mon, Aug 19, 2019 at 11:34 AM Cyril Ferlicot wrote: > > > On Mon 19 Aug 2019 at 20:30, Steve Quezadas wrote: > >> I am experimenting with smalltalk. Sometimes a function gets >> deprecated and is c