Re: [Pharo-users] Roassal : Playing with the contrast

2018-02-21 Thread abdelghani ALIDRA via Pharo-users
t 7:01 AM, abdelghani ALIDRA via Pharo-users > <pharo-users@lists.pharo.org> wrote: > > > From: abdelghani ALIDRA <alidran...@yahoo.fr> > Subject: Roassal : Playing with the contrast > Date: February 20, 2018 at 7:01:20 AM GMT-3 > To: "pharo-users@lists.phar

Re: [Pharo-users] Roassal : Playing with the contrast

2018-02-21 Thread abdelghani ALIDRA via Pharo-users
:). Stef On Wed, Feb 21, 2018 at 10:13 AM, Stephane Ducasse <stepharo.s...@gmail.com> wrote: > Abdel > > > MCSmalltalkhubRepository > owner: 'StephaneDucasse' > project: 'Colors' > user: '' > password: '' > > On Tue, Feb 20, 2018 at 11:01 AM, abdelghani ALIDRA

[Pharo-users] Roassal : Playing with the contrast

2018-02-20 Thread abdelghani ALIDRA via Pharo-users
--- Begin Message --- Hi, I am wondering if there is a way to play with the contrast of Roassal visualisations. If so, please tell me how :) Thank you in advanceAbdelghani --- End Message ---

Re: [Pharo-users] Removing instance variables doesn't recompile the methods

2017-11-27 Thread abdelghani ALIDRA via Pharo-users
pected. Peter On Mon, Nov 27, 2017 at 6:03 AM, Ben Coman <b...@openinworld.com> wrote: Thanks for reporting Abdelghani.Now it would be doubly useful if you could isolate which build introduced the problem.PharoLauncher can be used to help bisect working/non-working images. cheers -ben

Re: [Pharo-users] Removing instance variables doesn't recompile the methods

2017-11-27 Thread abdelghani ALIDRA via Pharo-users
the problem.PharoLauncher can be used to help bisect working/non-working images. cheers -ben On 27 November 2017 at 04:08, abdelghani ALIDRA via Pharo-users <pharo-users@lists.pharo.org> wrote: -- Forwarded message -- From: abdelghani ALIDRA <alidran...@yahoo.fr>

[Pharo-users] Removing instance variables doesn't recompile the methods

2017-11-26 Thread abdelghani ALIDRA via Pharo-users
--- Begin Message --- Hi, In a fresh pharo 6 image, I add a class with an instance variable x and implement accessors. Then I write a test method for the accessors of x MyClassTest>>testReadWriteX     self assert (MyClass new x: 0) x equals: 0 I run the test and obviously it is green BUT I

Re: [Pharo-users] Dynamically changing code in a safe way

2017-11-04 Thread abdelghani ALIDRA via Pharo-users
again, it won't start the new block executing. Imagine if I were to hand you a loaf of bread and tell you to feed it to the dog. If I were then to hand you another loaf of bread, the dog would continue eating the first loaf. We never told the dog to do anything else. On Mon, Oct 23, 20

[Pharo-users] Dynamically changing code in a safe way

2017-10-23 Thread abdelghani ALIDRA via Pharo-users
--- Begin Message --- Hi, If I create a class HotSwapping with the instance variable currentBLoc (and the corresponding accessors) and the following methods : HotSwapping>>initialize currentBloc := [ 1 to:50 do: [:index |Transcript show: index. 100 milliSeconds asDelay wait].