Re: [Pharo-dev] can someone explain me this?

2015-05-22 Thread Esteban Lorenzano
On 21 May 2015, at 23:52, Marcus Denker marcus.den...@inria.fr wrote: On 21 May 2015, at 22:14, Esteban Lorenzano esteba...@gmail.com wrote: Smalltalk allClassesAndTraits size. 5057 Object withAllSubclasses size. “9900 I really do not understand :) Metaclasses. For every X there

[Pharo-dev] [pharo-project/pharo-core] f3f543: 50058

2015-05-22 Thread GitHub
Branch: refs/heads/5.0 Home: https://github.com/pharo-project/pharo-core Commit: f3f543ad9776f63e533fe3bbc8dd6bd5eb27fa86 https://github.com/pharo-project/pharo-core/commit/f3f543ad9776f63e533fe3bbc8dd6bd5eb27fa86 Author: Jenkins Build Server bo...@pharo-project.org Date:

[Pharo-dev] [pharo-project/pharo-core]

2015-05-22 Thread GitHub
Branch: refs/tags/50058 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] Format shortcut.

2015-05-22 Thread Cyril Ferlicot
Hi, for now we have 2 different shortcuts in hard code on Pharo to format methods: alt + shift + u and ctrl + shift + f. I opened an issue to correct that :

Re: [Pharo-dev] Cross platform key modifiers

2015-05-22 Thread Nicolai Hess
Hi ben, 2015-05-22 17:28 GMT+02:00 Ben Coman b...@openinworld.com: Not sure what past history we inherited, but I am questioning the semantics of our key modifiers. My understanding is that the following is industry standard... OSX Windows Linux option alt

[Pharo-dev] Pillar 0.56 : New features, new syntax

2015-05-22 Thread Cyril Ferlicot
Hello, today I created the version 0.56 of Pillar and with this version we'll need to do some changes, sorry. The first change is the numerator. The old numerator was too limited, so i changed it. Now if you put different files into the pillar.conf the numerator will not be reset at each files.

[Pharo-dev] Fwd: FogBugz (Case [Issue]13315) Morphic - NewList without icons

2015-05-22 Thread Nicolai Hess
Is there some more information about this? I opened that issue and I asks quesions about the NewList implementation on the mailing list and commented on some other issues about NewList (for example 13554 https://pharo.fogbugz.com/default.asp?13554 Red cross in EyeDateAndTimeInspector). (With not

Re: [Pharo-dev] Main pillar web site?

2015-05-22 Thread H. Hirzel
Hello Cyril I just saw your announcement about Pillar 0.56 : New features, new syntax My suggestion is to the main pillar web site the information which version of Pillar you describe there?

Re: [Pharo-dev] Opportunity to steal good ideas from dad ;)

2015-05-22 Thread Sven Van Caekenberghe
On 21 May 2015, at 16:50, Esteban A. Maringolo emaring...@gmail.com wrote: 2015-05-21 10:01 GMT-03:00 p...@highoctane.be p...@highoctane.be: On Thu, May 21, 2015 at 2:19 PM, Sean P. DeNigris s...@clipperadams.com wrote: Squeak 4.6 Spur Release Notes

Re: [Pharo-dev] [Reflectivity] Progress for Breakpoints

2015-05-22 Thread Marcus Denker
https://pharo.fogbugz.com/f/cases/15516/add-suggestion-for-breakpoint https://pharo.fogbugz.com/f/cases/15516/add-suggestion-for-breakpoint this is of course completely untested… it works only when there is no unaccepted text in the editor and maybe only within Nautilus. And of

Re: [Pharo-dev] Best practice for overwriting methods in other classes

2015-05-22 Thread Marcus Denker
On 22 May 2015, at 07:08, Kasper Osterbye kas...@itu.dk wrote: I have now twice in two different situations felt a need to steal a method in Nautilus and make that method an extension method in my own package. In situation A, I wanted to steal the #buildCommentPane to use a different

Re: [Pharo-dev] Opportunity to steal good ideas from dad ;)

2015-05-22 Thread p...@highoctane.be
Thinking of the = operator, this can be useful for things like this: dataset := #(1 3 4 5 7 8 5 2 3 0). mean := dataset average. dataset collect: [ :each | mean = each ] -- #(1 1 -1 -1 -1 -1 -1 1 1 1) This we can also do with coll := #(1 3 4 5 7 8 5 2 3 0). mean := coll average. coll

Re: [Pharo-dev] [Pre-ANN][Job] We are looking for a Engineer RD

2015-05-22 Thread Marcus Denker
Hi, No job posting yet as we are seeing what exact kind of person we can hire. There is a certain chance that this will not be constrained to “two years after university”. Job posting will be finalised next week, if you are interested (or now someone who might) == please contact me already

Re: [Pharo-dev] Best practice for overwriting methods in other classes

2015-05-22 Thread Ben Coman
On Fri, May 22, 2015 at 1:08 PM, Kasper Osterbye kas...@itu.dk wrote: I have now twice in two different situations felt a need to steal a method in Nautilus and make that method an extension method in my own package. In situation A, I wanted to steal the #buildCommentPane to use a different

[Pharo-dev] [pharo-project/pharo-core]

2015-05-22 Thread GitHub
Branch: refs/tags/50059 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core] 93ae2a: 50059

2015-05-22 Thread GitHub
Branch: refs/heads/5.0 Home: https://github.com/pharo-project/pharo-core Commit: 93ae2a76e4cae1e04906a07c81771312d9ba39e1 https://github.com/pharo-project/pharo-core/commit/93ae2a76e4cae1e04906a07c81771312d9ba39e1 Author: Jenkins Build Server bo...@pharo-project.org Date:

Re: [Pharo-dev] UI Design

2015-05-22 Thread Dimitris Chloupis
I am looking into implementing a futuristic GUI for Pharo but will be a very long term project since I am still quite unfamiliar with Morphic. The effort has started with my Blue theme but will expand the theme to make it customise Pharo a lot deeper. My goal is to also make the theme as dynamic

Re: [Pharo-dev] [Reflectivity] Progress for Breakpoints

2015-05-22 Thread Clara Allende
2015-05-22 8:53 GMT-03:00 Marcus Denker marcus.den...@inria.fr: https://pharo.fogbugz.com/f/cases/15516/add-suggestion-for-breakpoint this is of course completely untested… it works only when there is no unaccepted text in the editor and maybe only within Nautilus. And of course existing

[Pharo-dev] UI Design

2015-05-22 Thread Torsten Bergmann
Is there something new planned for Pharo 5 regarding the UI look? New theme or integration of an animation framework to support better looking Pharo apps? Looks like material design is the next fashionable UI hype: https://www.youtube.com/watch?v=7xH26aGqHDM

[Pharo-dev] Cross platform key modifiers

2015-05-22 Thread Ben Coman
Not sure what past history we inherited, but I am questioning the semantics of our key modifiers. My understanding is that the following is industry standard... OSX Windows Linux option altalt cmd ctrl ctrl with Copy

Re: [Pharo-dev] can someone explain me this?

2015-05-22 Thread Eliot Miranda
Oops, my math was wrong and so I got it wrong way round. But you know what I mean... Eliot (phone) On May 22, 2015, at 8:37 AM, Eliot Miranda eliot.mira...@gmail.com wrote: Hi All, On May 21, 2015, at 1:14 PM, Esteban Lorenzano esteba...@gmail.com wrote: Smalltalk allClassesAndTraits

Re: [Pharo-dev] Opportunity to steal good ideas from dad ;)

2015-05-22 Thread Esteban A. Maringolo
2015-05-22 6:43 GMT-03:00 Sven Van Caekenberghe s...@stfx.eu: On 21 May 2015, at 16:50, Esteban A. Maringolo emaring...@gmail.com wrote: About the spaceship operator (=), is this something we'd like to have around? (I like it). http://en.wikipedia.org/wiki/Three-way_comparison

Re: [Pharo-dev] can someone explain me this?

2015-05-22 Thread Alejandro Infante
If you remove the Traits you get exactly the double (at least in my moose image). As far as I remember, Traits are not subclasses of Objects and they do not have a metaclass for each Trait. Cheers, Alejandro On May 22, 2015, at 12:39 PM, Eliot Miranda eliot.mira...@gmail.com wrote: Oops,

[Pharo-dev] [pharo-project/pharo-core]

2015-05-22 Thread GitHub
Branch: refs/tags/50060 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core] 947163: 50060

2015-05-22 Thread GitHub
Branch: refs/heads/5.0 Home: https://github.com/pharo-project/pharo-core Commit: 947163790b1294d8502473a0c56b1a0bddbdac8e https://github.com/pharo-project/pharo-core/commit/947163790b1294d8502473a0c56b1a0bddbdac8e Author: Jenkins Build Server bo...@pharo-project.org Date:

Re: [Pharo-dev] Format shortcut.

2015-05-22 Thread Damien Cassou
Cyril Ferlicot cyril.ferli...@gmail.com writes: I propose to keep ctrl + shift + f (like in Eclipse). makes sense -- Damien Cassou http://damiencassou.seasidehosting.st Success is the ability to go from one failure to another without losing enthusiasm. --Winston Churchill

Re: [Pharo-dev] Opportunity to steal good ideas from dad ;)

2015-05-22 Thread stepharo
What is = because I found it quite not intention revealing. Le 22/5/15 11:19, p...@highoctane.be a écrit : Thinking of the = operator, this can be useful for things like this: dataset := #(1 3 4 5 7 8 5 2 3 0). mean := dataset average. dataset collect: [ :each | mean = each ] -- #(1 1 -1

Re: [Pharo-dev] Opportunity to steal good ideas from dad ;)

2015-05-22 Thread stepharo
http://www.smalltalkhub.com/#!/~emaringolo/SortFunctions I use them extensively. Esteban A. Maringolo I had a look. Apart from the fact that for some reason, the extensions on MAElement are in the Core package, hence loading just Core gave errors, things looked OK. This is generally

Re: [Pharo-dev] Morphic menus

2015-05-22 Thread stepharo
Hi mathieu can you open a bug entry? and publish your solution. Tx Le 21/5/15 14:50, Matthieu Lacaton a écrit : Hello everyone, I had to understand how menus work in Morphic lately and I noticed some things : 1) When a menu has strictly more than 1 submenu active it cannot regain the

Re: [Pharo-dev] New Collections for Pharo

2015-05-22 Thread stepharo
Hi did you write tests? did your implementation propose APIs that are compatible with the Collection API? Stef

Re: [Pharo-dev] Opportunity to steal good ideas from dad ;)

2015-05-22 Thread stepharo
If people wants to harvest some changes from Squeak, please do it. Collections Speed up testing different sized strings. Interval #sum is now O(1) instead of O(n). Introduction of Set#addNewElement: optimizes graph-traversal. Slightly faster

Re: [Pharo-dev] [Reflectivity] Progress for Breakpoints

2015-05-22 Thread stepharo
Marcus with franck and alain we worked on using Rubric instead of pluggableTextMorph in Nautilus. so you will be able to display icons or other for the breakpoints. Stef Le 22/5/15 11:53, Marcus Denker a écrit : https://pharo.fogbugz.com/f/cases/15516/add-suggestion-for-breakpoint this is