[Pharo-dev] Pharo 5 prepackaged not working

2016-04-16 Thread jannik laval
Hi Pharoers, I tried to use prepackaged pharo 5 (pharo5-win) but it does not work. Same for the CI of phratch. the pharo prepackage for linux, mac and win do not work. Cheers, -- ~~Jannik Laval~~ Enseignant-chercheur Responsable Pédagogique Licence Coordonnateur de Projet en Système

Re: [Pharo-dev] [Pharo-users] GTDebugger shortcuts usability

2016-04-16 Thread Peter Uhnák
> > Let’s turn this energy into something positive. Please propose a concrete > set of default keybindings that you think would work better. In this > process, please take into account all keybindings that are already defined > in the code editor (it might not be so easy as it appears). > As I've

Re: [Pharo-dev] GTDebugger shortcuts usability

2016-04-16 Thread Tudor Girba
Hi Peter, Let’s turn this energy into something positive. Please propose a concrete set of default keybindings that you think would work better. In this process, please take into account all keybindings that are already defined in the code editor (it might not be so easy as it appears).

[Pharo-dev] Merging refactoring changes

2016-04-16 Thread Peter Uhnák
Is it possible to merge changesets? For example when I am creating a new class and adding a new instance variable, I would like to see it as one change set, not two. Similarly if I am overriding a method twice, it would be good to see only what actually gets applied. For example

[Pharo-dev] GTDebugger shortcuts usability

2016-04-16 Thread Peter Uhnák
Hi, I'm getting fed-up with GTDebugger shortcuts since they are completely random. Can we have them more meaningful and/or somehow visible? For now I ended up overriding the labels so I can at least see them... but doing this is also stupid, because I still have to look at them since I cannot

Re: [Pharo-dev] RBRefactoring docs

2016-04-16 Thread Jan van de Sandt
Hi, I think this is the original documentation: http://www.refactory.com/tools/refactoring-browser Jan. On Sat, Apr 16, 2016 at 5:42 PM, Peter Uhnák wrote: > Hi, > > is there any documentation for RBRefactoring? > Since there are not even class comments the only thing I

Re: [Pharo-dev] RBRefactoring docs

2016-04-16 Thread stepharo
Hi, is there any documentation for RBRefactoring? Yes, there is, with examples and all. It used to be a chapter in one of the Pharo books, but it seems to have vanished. I forked one of the books to be able to recover the refactoring chapter. I would be good to push the comment back in

Re: [Pharo-dev] RBRefactoring docs

2016-04-16 Thread Thierry Goubier
Le 16/04/2016 17:42, Peter Uhnák a écrit : Hi, is there any documentation for RBRefactoring? Yes, there is, with examples and all. It used to be a chapter in one of the Pharo books, but it seems to have vanished. I forked one of the books to be able to recover the refactoring chapter.

[Pharo-dev] RBRefactoring docs

2016-04-16 Thread Peter Uhnák
Hi, is there any documentation for RBRefactoring? Since there are not even class comments the only thing I found is judging from tests. Thanks, Peter

Re: [Pharo-dev] Missing #removeDuplicates

2016-04-16 Thread stepharo
Le 16/4/16 15:12, Nicolai Hess a écrit : 2016-04-16 14:50 GMT+02:00 Werner Kassens >: perhaps it is a speed question? using pharo4.0 (with polymath): a:=DhbVector new: 50 random: 20. b:=a copy asOrderedCollection .

Re: [Pharo-dev] Missing #removeDuplicates

2016-04-16 Thread Werner Kassens
yes, that _is_ occasionally an advantage. werner On 04/16/2016 03:12 PM, Nicolai Hess wrote: 2016-04-16 14:50 GMT+02:00 Werner Kassens >: perhaps it is a speed question? using pharo4.0 (with polymath): a:=DhbVector new: 50 random:

Re: [Pharo-dev] Missing #removeDuplicates

2016-04-16 Thread Nicolai Hess
2016-04-16 14:50 GMT+02:00 Werner Kassens : > perhaps it is a speed question? using pharo4.0 (with polymath): > a:=DhbVector new: 50 random: 20. > b:=a copy asOrderedCollection . > Smalltalk garbageCollect . > [ b removeDuplicates]bench. "'47,004 per second'" > b:=a copy

Re: [Pharo-dev] Missing #removeDuplicates

2016-04-16 Thread Werner Kassens
perhaps it is a speed question? using pharo4.0 (with polymath): a:=DhbVector new: 50 random: 20. b:=a copy asOrderedCollection . Smalltalk garbageCollect . [ b removeDuplicates]bench. "'47,004 per second'" b:=a copy asArray. Smalltalk garbageCollect . [ b asSet asArray]bench. "'27,249 per

Re: [Pharo-dev] Missing #removeDuplicates

2016-04-16 Thread Volkert
I have done the same ;-) On 11.04.2016 09:06, Nicolai Hess wrote: 2016-04-10 8:55 GMT+02:00 Volkert >: Sorry. i meant AthensSkatch ;-) It is a nice demo about using athens.

Re: [Pharo-dev] Missing #removeDuplicates

2016-04-16 Thread stepharo
And I do not see why removeDuplicates is less ugly than asSet asArray. Just that it is doing two passes. Stef Le 15/4/16 23:57, Yuriy Tymchuk a écrit : On 11 Apr 2016, at 09:06, Nicolai Hess > wrote: 2016-04-10 8:55 GMT+02:00 Volkert

Re: [Pharo-dev] Missing #removeDuplicates

2016-04-16 Thread stepharo
Le 15/4/16 23:57, Yuriy Tymchuk a écrit : On 11 Apr 2016, at 09:06, Nicolai Hess > wrote: 2016-04-10 8:55 GMT+02:00 Volkert >: Sorry. i meant AthensSkatch