[Pharo-dev] Question on AioPlugin

2015-02-03 Thread Thierry Goubier
Hi all, anybody knows how to check if the AioPlugin is included in the current stable Pharo vm(*)? OSProcess is complaining of a missing AioPlugin, and I remember a thread where this was solved by integrating it in the vm build. Thanks, Thierry * : The vm one get when doing wget -O-

Re: [Pharo-dev] Question on AioPlugin

2015-02-03 Thread Esteban Lorenzano
in linux, is in the latest, not the stable (you can take the latest without problem, btw… is a lateral problem who is preventing me to me latest to stable) in mac is since ever in windows is not necessary Esteban On 04 Feb 2015, at 07:18, Thierry Goubier thierry.goub...@gmail.com wrote: Hi

Re: [Pharo-dev] GitFileTree - Git command not found (is which shell startup script is run when pharo launched from UI)

2015-02-03 Thread Peter Uhnák
Hi, Both .bashrc and .bash_profile are directly bound to shell (bash shell) so this will not help. I do not know MacOS, so I'm not sure if there is some GUI configuration like in MS Windows, so someone else might clarify. In the meantime there is also an alternative way - create a custom

[Pharo-dev] can a Float be not finite and not equals to Float class#infinity ?

2015-02-03 Thread Esteban Lorenzano
Hi, that… I wonder if aFloat isFinite = true and (aFloat == Float infinite) = false is a possible combination Esteban

[Pharo-dev] GitFileTree - Git command not found (is which shell startup script is run when pharo launched from UI)

2015-02-03 Thread Christophe Demarey
Hi, I wanted to give a try to gitfiletree but I got a 'Git command not found'. Indeed, the git command is not in the path Here is the code used by GitFileTree to run a git command: | c output | [ c := PipeableOSProcess command: 'export'. output

[Pharo-dev] Monospaced font

2015-02-03 Thread KasperOsterbye
And no, I do not want to restart the discussion of the (lack of) qualities regarding such fonts. It is just not clear to me how to get hold of a font. It seems like at the one hand it is all 'Bitmap deja vu sans regular'. In the settings browser I can pick all kinds of fonts, but it is

Re: [Pharo-dev] [Pharo-users] Slides from the Pharo Status talk at FOSDEM 2015

2015-02-03 Thread Marcus Denker
On 02 Feb 2015, at 21:26, Eliot Miranda eliot.mira...@gmail.com wrote: On Mon, Feb 2, 2015 at 12:19 PM, Marcus Denker marcus.den...@inria.fr mailto:marcus.den...@inria.fr wrote: Hi, Here are the slides from my talk from yesterday:

Re: [Pharo-dev] ||

2015-02-03 Thread Yuriy Tymchuk
Yes, I’ve reported that already and it was fixed in Pharo 4 Uko On 03 Feb 2015, at 09:17, Marcus Denker marcus.den...@inria.fr wrote: On 02 Feb 2015, at 21:47, Eliot Miranda eliot.mira...@gmail.com mailto:eliot.mira...@gmail.com wrote: Hi All, code as in the double bars forming

Re: [Pharo-dev] GitFileTree - Git command not found (is which shell startup script is run when pharo launched from UI)

2015-02-03 Thread Manfred Kröhnert
Hi, On Tue, Feb 3, 2015 at 4:21 PM, Peter Uhnák i.uh...@gmail.com wrote: Hi, Both .bashrc and .bash_profile are directly bound to shell (bash shell) so this will not help. I do not know MacOS, so I'm not sure if there is some GUI configuration like in MS Windows, so someone else might

Re: [Pharo-dev] can a Float be not finite and not equals to Float class#infinity ?

2015-02-03 Thread Chris Cunningham
Ah, there is also NaN (not a number). So, float can be: NegativeInfinity a Finite Float Infinity (;positive by elimination) NaN Oh, and NegativeZero as well. floats are weird. -cbc On Tue, Feb 3, 2015 at 7:51 AM, Esteban Lorenzano esteba...@gmail.com wrote: in fact, I wonder why #isFinite

Re: [Pharo-dev] can a Float be not finite and not equals to Float class#infinity ?

2015-02-03 Thread Chris Cunningham
There is Float infinity and Float negativeInfinity - two infinite classes. Can I assume your first test really wanted to be: aFloat isFinite = false ? cbc On Tue, Feb 3, 2015 at 7:38 AM, Esteban Lorenzano esteba...@gmail.com wrote: Hi, that… I wonder if aFloat isFinite = true and

Re: [Pharo-dev] can a Float be not finite and not equals to Float class#infinity ?

2015-02-03 Thread Esteban Lorenzano
in fact, I wonder why #isFinite is implemented: ^(self - self) = 0.0 and not just: ^self isInfinite not which includes the negativeInfinity… Esteban On 03 Feb 2015, at 16:46, Chris Cunningham cunningham...@gmail.com wrote: There is Float infinity and Float negativeInfinity - two

Re: [Pharo-dev] can a Float be not finite and not equals to Float class#infinity ?

2015-02-03 Thread Esteban Lorenzano
yeah :( On 03 Feb 2015, at 17:02, Chris Cunningham cunningham...@gmail.com wrote: Ah, there is also NaN (not a number). So, float can be: NegativeInfinity a Finite Float Infinity (;positive by elimination) NaN Oh, and NegativeZero as well. floats are weird. -cbc On Tue, Feb

Re: [Pharo-dev] Overwrite repository in symbolic version

2015-02-03 Thread Yuriy Tymchuk
One more question. Is there any command line handler which uses Metacello? Because as far as I know, Gofer does not support github “protocol”. Uko On 02 Feb 2015, at 18:28, Thierry Goubier thierry.goub...@gmail.com wrote: Hi Uko, 2015-02-02 17:34 GMT+01:00 Yuriy Tymchuk

[Pharo-dev] [pharo-project/pharo-core] 3a0ba4: 40473

2015-02-03 Thread GitHub
Branch: refs/heads/4.0 Home: https://github.com/pharo-project/pharo-core Commit: 3a0ba4aeb85b5422431633c0f60f856759c7ec54 https://github.com/pharo-project/pharo-core/commit/3a0ba4aeb85b5422431633c0f60f856759c7ec54 Author: Jenkins Build Server bo...@pharo-project.org Date:

Re: [Pharo-dev] [Pharo-users] spotter preview

2015-02-03 Thread Marcus Denker
On 02 Feb 2015, at 22:02, Tudor Girba tu...@tudorgirba.com wrote: Hi, The Glamorous Team is happy to present a new feature in Spotter: preview (you toggle it with Cmd+p). We think this boosts the usefulness of the Spotter interface significantly. spotter-method-preview.png For

Re: [Pharo-dev] Overwrite repository in symbolic version

2015-02-03 Thread Thierry Goubier
I do on the command line the following: pharo Pharo.image eval --save Metacello new baseline: \'MyProject\'\; repository: \'github://\'\; load The \ are a bit annoying, but it gives you access to any smalltalk cod, which is very convenient. Thierry Le 3 févr. 2015 17:15, Yuriy Tymchuk

Re: [Pharo-dev] ||

2015-02-03 Thread Levente Uzonyi
On Tue, 3 Feb 2015, Marcus Denker wrote: On 03 Feb 2015, at 09:17, Marcus Denker marcus.den...@inria.fr wrote: On 02 Feb 2015, at 21:47, Eliot Miranda eliot.mira...@gmail.com wrote: Hi All,     code as in the double bars forming the end of block arguments and the beginning of

Re: [Pharo-dev] GitFileTree - Git command not found (is which shell startup script is run when pharo launched from UI)

2015-02-03 Thread Christophe Demarey
Hi Thierry, - Mail original - De: Thierry Goubier thierry.goub...@gmail.com À: Pharo Development List pharo-dev@lists.pharo.org Envoyé: Mardi 3 Février 2015 18:51:05 Objet: Re: [Pharo-dev] GitFileTree - Git command not found (is which shell startup script is run when pharo launched

Re: [Pharo-dev] GitFileTree - Git command not found (is which shell startup script is run when pharo launched from UI)

2015-02-03 Thread Thierry Goubier
2015-02-03 22:04 GMT+01:00 Christophe Demarey christophe.dema...@inria.fr: Hi Thierry, -- *De: *Thierry Goubier thierry.goub...@gmail.com *À: *Pharo Development List pharo-dev@lists.pharo.org *Envoyé: *Mardi 3 Février 2015 18:51:05 *Objet: *Re: [Pharo-dev]

[Pharo-dev] why smalltalk is the best system to support object-oriented thinking :)

2015-02-03 Thread stepharo
Here is the presentation I did at Brescia http://www.slideshare.net/pharoproject/the-best-system-for-objectoriented-thinking

Re: [Pharo-dev] why smalltalk is the best system to support object-oriented thinking :)

2015-02-03 Thread Thierry Goubier
Thanks Steph, I'll have a use for that :) Thierry 2015-02-03 21:15 GMT+01:00 stepharo steph...@free.fr: Here is the presentation I did at Brescia http://www.slideshare.net/pharoproject/the-best-system- for-objectoriented-thinking

Re: [Pharo-dev] Slides from the Pharo Status talk at FOSDEM 2015

2015-02-03 Thread Marcus Denker
On 02 Feb 2015, at 21:19, Marcus Denker marcus.den...@inria.fr wrote: Hi, Here are the slides from my talk from yesterday: http://www.slideshare.net/MarcusDenker/2015-fosdempharo The part in between Pharo3 and Pharo4 tries a bit to explain the philosophy… I did a longer talk at ESUG