[Pharo-users] SequenceableCollection>>#allButFirst: inconsistence across subclasses

2019-08-30 Thread Julien
Hello, I opened that issue: https://github.com/pharo-project/pharo/issues/4442 And I think to fix it we need to actually discuss about what we want. #allButFirst: behaves differently depending on the actual type of sequenceable collection wh

Re: [Pharo-users] how to open a system browser on a environment?

2019-08-30 Thread Denis Kudriashov
Hi Bernardo. RBEnvironment is not supported in Calypso. But you can scope browser to the set of packages: ClyFullBrowser openWithState: [:browser | browser switchToPackageScopeOf: {Announcer package. Array package}] It will keep given scope in following navigation from opened browser

[Pharo-users] Exercism - creating fresh image with previously submitted exercises

2019-08-30 Thread DavidBajger
Hi Tim & Pharo Exercism contributors!I had a chance to come back to my exercism challenges and tried to create new image for continuing on solutions. I've tried to load manually previously submitted/completed exercises into fresh image (with Exercism loaded) and found few issues. Here is my list:

Re: [Pharo-users] SequenceableCollection>>#allButFirst: inconsistence across subclasses

2019-08-30 Thread Ben Coman
On Fri, 30 Aug 2019 at 15:34, Julien wrote: > Hello, > > I opened that issue: https://github.com/pharo-project/pharo/issues/4442 > > And I think to fix it we need to actually discuss about what we want. > > #allButFirst: behaves differently depending on the actual type of > sequenceable collectio

Re: [Pharo-users] SequenceableCollection>>#allButFirst: inconsistence across subclasses

2019-08-30 Thread Cyril Ferlicot
On Fri 30 Aug 2019 at 09:34, Julien wrote: > Hello, > > I opened that issue: https://github.com/pharo-project/pharo/issues/4442 > > And I think to fix it we need to actually discuss about what we want. > > #allButFirst: behaves differently depending on the actual type of > sequenceable collection

Re: [Pharo-users] SequenceableCollection>>#allButFirst: inconsistence across subclasses

2019-08-30 Thread Herby Vojčík
On 30. 8. 2019 11:56, Ben Coman wrote: On Fri, 30 Aug 2019 at 15:34, Julien > wrote: Hello, I opened that issue: https://github.com/pharo-project/pharo/issues/4442 And I think to fix it we need to actually discuss about what we want. #allB

Re: [Pharo-users] SequenceableCollection>>#allButFirst: inconsistence across subclasses

2019-08-30 Thread Kasper Østerbye
I always like to find a way not to make the choice. #(1 2) allButFirst: 3 ifInsufficient: […] allButFirst: N ^self allButFirst: N ifInsufficent: [ “fight about this"]. — Kasper On 30 August 2019 at 12.28.14, Cyril Ferlicot (cyril.ferli...@gmail.com) wrote: On Fri 30 Aug 2019 at 09:34, Julie