Re: [Pharo-project] update to OCompletion
Message: 7 Date: Tue, 3 Aug 2010 11:20:03 +0200 From: St?phane Ducasse <stephane.ducasse@inria.fr> Subject: Re: [Pharo-project] update to OCompletion To: Pharo-project@lists.gforge.inria.fr Message-ID: <94557FA5-8F73-42B7-8537-3882867A80B5@inria.fr> Content-Type: text/plain; charset=us-ascii
thanks romain (and sorry for my stupid suggestion - good that you corrected it) Your tools are really important. Is there a ConfigurationOfOCompletion or just loading OCompletion works?
Yes, Mariano made a ConfigurationOfOCompletion. Otherwise, just loading the latest OCompletion package on top of the old one should work too. Romain -- Romain Robbes http://romain.robb.es rrobbes@dcc.uchile.cl
On Tue, Aug 3, 2010 at 5:20 PM, Romain Robbes <romain.robbes@gmail.com>wrote:
Message: 7 Date: Tue, 3 Aug 2010 11:20:03 +0200 From: St?phane Ducasse <stephane.ducasse@inria.fr> Subject: Re: [Pharo-project] update to OCompletion To: Pharo-project@lists.gforge.inria.fr Message-ID: <94557FA5-8F73-42B7-8537-3882867A80B5@inria.fr> Content-Type: text/plain; charset=us-ascii
thanks romain (and sorry for my stupid suggestion - good that you corrected it) Your tools are really important. Is there a ConfigurationOfOCompletion or just loading OCompletion works?
Yes, Mariano made a ConfigurationOfOCompletion. Otherwise, just loading the latest OCompletion package on top of the old one should work too.
My conf says you also need Shout and RoelTyper ;) but maybe they are optional
Romain
-- Romain Robbes http://romain.robb.es rrobbes@dcc.uchile.cl
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
I have no problem. I ***love*** metacello and the garanty it offers to load packages coherently Stef On Aug 3, 2010, at 5:29 PM, Mariano Martinez Peck wrote:
On Tue, Aug 3, 2010 at 5:20 PM, Romain Robbes <romain.robbes@gmail.com> wrote:
Message: 7 Date: Tue, 3 Aug 2010 11:20:03 +0200 From: St?phane Ducasse <stephane.ducasse@inria.fr> Subject: Re: [Pharo-project] update to OCompletion To: Pharo-project@lists.gforge.inria.fr Message-ID: <94557FA5-8F73-42B7-8537-3882867A80B5@inria.fr> Content-Type: text/plain; charset=us-ascii
thanks romain (and sorry for my stupid suggestion - good that you corrected it) Your tools are really important. Is there a ConfigurationOfOCompletion or just loading OCompletion works?
Yes, Mariano made a ConfigurationOfOCompletion. Otherwise, just loading the latest OCompletion package on top of the old one should work too.
My conf says you also need Shout and RoelTyper ;) but maybe they are optional
Romain
-- Romain Robbes http://romain.robb.es rrobbes@dcc.uchile.cl
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Am I missing something here - in a fresh 1.1 one click image if I do: ConfigurationOfOCompletion project latestVersion load I get an endless stream of errors: The method Boolean and:and: has been deprecated. use and: Select Proceed to continue, or close this window to cancel the operation.??????? On 3 Aug 2010, at 16:31, Stéphane Ducasse wrote:
I have no problem. I ***love*** metacello and the garanty it offers to load packages coherently
Stef
On Aug 3, 2010, at 5:29 PM, Mariano Martinez Peck wrote:
On Tue, Aug 3, 2010 at 5:20 PM, Romain Robbes <romain.robbes@gmail.com
wrote: Message: 7 Date: Tue, 3 Aug 2010 11:20:03 +0200 From: St?phane Ducasse <stephane.ducasse@inria.fr> Subject: Re: [Pharo-project] update to OCompletion To: Pharo-project@lists.gforge.inria.fr Message-ID: <94557FA5-8F73-42B7-8537-3882867A80B5@inria.fr> Content-Type: text/plain; charset=us-ascii
thanks romain (and sorry for my stupid suggestion - good that you corrected it) Your tools are really important. Is there a ConfigurationOfOCompletion or just loading OCompletion works?
Yes, Mariano made a ConfigurationOfOCompletion. Otherwise, just loading the latest OCompletion package on top of the old one should work too.
My conf says you also need Shout and RoelTyper ;) but maybe they are optional
Romain
-- Romain Robbes http://romain.robb.es rrobbes@dcc.uchile.cl
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
On Wed, Aug 4, 2010 at 2:09 AM, Tim Mackinnon <tamackinnon@gmail.com> wrote:
Am I missing something here - in a fresh 1.1 one click image if I do: ConfigurationOfOCompletion project latestVersion load
The problem is the following: latestVersion answer the latest version BUT not the ones that are blassed as #development, #broken, etc. See the method #excludeFromLatestVersion The latest (and working) version of Ocompletion is in version 1.1.2, which is blassed as #development. Thus, you are probably loading 1.1.1 (last one released). I like to let versions in development for a while, to detect bugs. And then, blasse those versions as release. So...if you want to load 1.1.2 explicitly, you can just do: (ConfigurationOfOCompletion project version: '1.1.1') load Or ConfigurationOfOCompletion project lastVersion load lastVersion doesn't exclude the cases I told you. Finally, you can always load a baseline. As baselines only have structural inormation, and you are not telling Metacello wich version to load for each package, it will load all the latests version. Thus, if you want to load the very latest versions of all packages, load a baseline. For example: (ConfigurationOfOCompletion project version: '1.1-baseline') load Cheers Mariano
I get an endless stream of errors:
The method Boolean and:and: has been deprecated. use and:
Select Proceed to continue, or close this window to cancel the operation.???????
On 3 Aug 2010, at 16:31, Stéphane Ducasse wrote:
I have no problem. I ***love*** metacello and the garanty it offers to
load packages coherently
Stef
On Aug 3, 2010, at 5:29 PM, Mariano Martinez Peck wrote:
On Tue, Aug 3, 2010 at 5:20 PM, Romain Robbes <romain.robbes@gmail.com> wrote:
Message: 7 Date: Tue, 3 Aug 2010 11:20:03 +0200 From: St?phane Ducasse <stephane.ducasse@inria.fr> Subject: Re: [Pharo-project] update to OCompletion To: Pharo-project@lists.gforge.inria.fr Message-ID: <94557FA5-8F73-42B7-8537-3882867A80B5@inria.fr> Content-Type: text/plain; charset=us-ascii
thanks romain (and sorry for my stupid suggestion - good that you corrected it) Your tools are really important. Is there a ConfigurationOfOCompletion or just loading OCompletion works?
Yes, Mariano made a ConfigurationOfOCompletion. Otherwise, just loading the latest OCompletion package on top of the old one should work too.
My conf says you also need Shout and RoelTyper ;) but maybe they are optional
Romain
-- Romain Robbes http://romain.robb.es rrobbes@dcc.uchile.cl
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
That's a great explanation - that clears up a number of things for me - I appreciate that. Tim On 4 Aug 2010, at 17:53, Mariano Martinez Peck wrote:
On Wed, Aug 4, 2010 at 2:09 AM, Tim Mackinnon <tamackinnon@gmail.com> wrote: Am I missing something here - in a fresh 1.1 one click image if I do: ConfigurationOfOCompletion project latestVersion load
The problem is the following:
latestVersion answer the latest version BUT not the ones that are blassed as #development, #broken, etc.
See the method #excludeFromLatestVersion
The latest (and working) version of Ocompletion is in version 1.1.2, which is blassed as #development. Thus, you are probably loading 1.1.1 (last one released). I like to let versions in development for a while, to detect bugs. And then, blasse those versions as release.
So...if you want to load 1.1.2 explicitly, you can just do:
(ConfigurationOfOCompletion project version: '1.1.1') load
Or
ConfigurationOfOCompletion project lastVersion load
lastVersion doesn't exclude the cases I told you.
Finally, you can always load a baseline. As baselines only have structural inormation, and you are not telling Metacello wich version to load for each package, it will load all the latests version. Thus, if you want to load the very latest versions of all packages, load a baseline. For example:
(ConfigurationOfOCompletion project version: '1.1-baseline') load
Cheers
Mariano
I get an endless stream of errors:
The method Boolean and:and: has been deprecated. use and:
Select Proceed to continue, or close this window to cancel the operation.???????
On 3 Aug 2010, at 16:31, Stéphane Ducasse wrote:
I have no problem. I ***love*** metacello and the garanty it offers to load packages coherently
Stef
On Aug 3, 2010, at 5:29 PM, Mariano Martinez Peck wrote:
On Tue, Aug 3, 2010 at 5:20 PM, Romain Robbes <romain.robbes@gmail.com> wrote: Message: 7 Date: Tue, 3 Aug 2010 11:20:03 +0200 From: St?phane Ducasse <stephane.ducasse@inria.fr> Subject: Re: [Pharo-project] update to OCompletion To: Pharo-project@lists.gforge.inria.fr Message-ID: <94557FA5-8F73-42B7-8537-3882867A80B5@inria.fr> Content-Type: text/plain; charset=us-ascii
thanks romain (and sorry for my stupid suggestion - good that you corrected it) Your tools are really important. Is there a ConfigurationOfOCompletion or just loading OCompletion works?
Yes, Mariano made a ConfigurationOfOCompletion. Otherwise, just loading the latest OCompletion package on top of the old one should work too.
My conf says you also need Shout and RoelTyper ;) but maybe they are optional
Romain
-- Romain Robbes http://romain.robb.es rrobbes@dcc.uchile.cl
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
2010/8/4 Tim Mackinnon <tamackinnon@gmail.com>
That's a great explanation - that clears up a number of things for me - I appreciate that.
I am glad I helped. You can also take a look to the Metacello draft we wrote for Pharo By Example 2. I attach it. Cheers Mariano
Tim
On 4 Aug 2010, at 17:53, Mariano Martinez Peck wrote:
On Wed, Aug 4, 2010 at 2:09 AM, Tim Mackinnon <tamackinnon@gmail.com>wrote:
Am I missing something here - in a fresh 1.1 one click image if I do: ConfigurationOfOCompletion project latestVersion load
The problem is the following:
latestVersion answer the latest version BUT not the ones that are blassed as #development, #broken, etc.
See the method #excludeFromLatestVersion
The latest (and working) version of Ocompletion is in version 1.1.2, which is blassed as #development. Thus, you are probably loading 1.1.1 (last one released). I like to let versions in development for a while, to detect bugs. And then, blasse those versions as release.
So...if you want to load 1.1.2 explicitly, you can just do:
(ConfigurationOfOCompletion project version: '1.1.1') load
Or
ConfigurationOfOCompletion project lastVersion load
lastVersion doesn't exclude the cases I told you.
Finally, you can always load a baseline. As baselines only have structural inormation, and you are not telling Metacello wich version to load for each package, it will load all the latests version. Thus, if you want to load the very latest versions of all packages, load a baseline. For example:
(ConfigurationOfOCompletion project version: '1.1-baseline') load
Cheers
Mariano
I get an endless stream of errors:
The method Boolean and:and: has been deprecated. use and:
Select Proceed to continue, or close this window to cancel the operation.???????
On 3 Aug 2010, at 16:31, Stéphane Ducasse wrote:
I have no problem. I ***love*** metacello and the garanty it offers to
load packages coherently
Stef
On Aug 3, 2010, at 5:29 PM, Mariano Martinez Peck wrote:
On Tue, Aug 3, 2010 at 5:20 PM, Romain Robbes <romain.robbes@gmail.com> wrote:
Message: 7 Date: Tue, 3 Aug 2010 11:20:03 +0200 From: St?phane Ducasse <stephane.ducasse@inria.fr> Subject: Re: [Pharo-project] update to OCompletion To: Pharo-project@lists.gforge.inria.fr Message-ID: <94557FA5-8F73-42B7-8537-3882867A80B5@inria.fr> Content-Type: text/plain; charset=us-ascii
thanks romain (and sorry for my stupid suggestion - good that you corrected it) Your tools are really important. Is there a ConfigurationOfOCompletion or just loading OCompletion works?
Yes, Mariano made a ConfigurationOfOCompletion. Otherwise, just loading the latest OCompletion package on top of the old one should work too.
My conf says you also need Shout and RoelTyper ;) but maybe they are optional
Romain
-- Romain Robbes http://romain.robb.es rrobbes@dcc.uchile.cl
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
I shall definitely give that a read - especially now i have an example to think back on. By the way - these chapters that people keep writing, are a great help (the monticello one certainly took away a huge load of frustrations I was having) - so thanks to everyone that keeps chipping away at them! tim On 4 Aug 2010, at 18:44, Mariano Martinez Peck wrote:
I am glad I helped. You can also take a look to the Metacello draft we wrote for Pharo By Example 2. I attach it.
Hi, i'm trying the latest version cause i's tired of waiting for the switch to the longer list of suggestions. But i don't understand the following change -removed enter to insert a completion am i missing something? why do u ppl make this change? Cheers, Francisco Ortiz Peñaloza On Wed, Aug 4, 2010 at 8:20 PM, Tim Mackinnon <tamackinnon@gmail.com> wrote:
I shall definitely give that a read - especially now i have an example to think back on.
By the way - these chapters that people keep writing, are a great help (the monticello one certainly took away a huge load of frustrations I was having) - so thanks to everyone that keeps chipping away at them!
tim
On 4 Aug 2010, at 18:44, Mariano Martinez Peck wrote:
I am glad I helped. You can also take a look to the Metacello draft we wrote for Pharo By Example 2. I attach it.
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
This is because when you have a line split into multiple lines, I want Enter to mean new line, not complete. This is particularly the case when you have pseudo-domain specific languages like in Glamour or Mondrian. Nevertheless, I would say that once I pressed the down arrow, my focus is to the completion, and thus enter should mean selection of the completion. Cheers, Doru On 12 Sep 2010, at 01:30, Francisco Ortiz Peñaloza wrote:
Hi, i'm trying the latest version cause i's tired of waiting for the switch to the longer list of suggestions. But i don't understand the following change
-removed enter to insert a completion
am i missing something? why do u ppl make this change?
Cheers, Francisco Ortiz Peñaloza
On Wed, Aug 4, 2010 at 8:20 PM, Tim Mackinnon <tamackinnon@gmail.com> wrote:
I shall definitely give that a read - especially now i have an example to think back on.
By the way - these chapters that people keep writing, are a great help (the monticello one certainly took away a huge load of frustrations I was having) - so thanks to everyone that keeps chipping away at them!
tim
On 4 Aug 2010, at 18:44, Mariano Martinez Peck wrote:
I am glad I helped. You can also take a look to the Metacello draft we wrote for Pharo By Example 2. I attach it.
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
-- www.tudorgirba.com "Every thing has its own flow."
This is because when you have a line split into multiple lines, I want Enter to mean new line, not complete. This is particularly the case when you have pseudo-domain specific languages like in Glamour or Mondrian.
A bit hard to get used to it, but I agree.
Nevertheless, I would say that once I pressed the down arrow, my focus is to the completion, and thus enter should mean selection of the completion.
+1 Alexandre
On 12 Sep 2010, at 01:30, Francisco Ortiz Peñaloza wrote:
Hi, i'm trying the latest version cause i's tired of waiting for the switch to the longer list of suggestions. But i don't understand the following change
-removed enter to insert a completion
am i missing something? why do u ppl make this change?
Cheers, Francisco Ortiz Peñaloza
On Wed, Aug 4, 2010 at 8:20 PM, Tim Mackinnon <tamackinnon@gmail.com> wrote:
I shall definitely give that a read - especially now i have an example to think back on.
By the way - these chapters that people keep writing, are a great help (the monticello one certainly took away a huge load of frustrations I was having) - so thanks to everyone that keeps chipping away at them!
tim
On 4 Aug 2010, at 18:44, Mariano Martinez Peck wrote:
I am glad I helped. You can also take a look to the Metacello draft we wrote for Pharo By Example 2. I attach it.
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
-- www.tudorgirba.com
"Every thing has its own flow."
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
-- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
On Sun, Sep 12, 2010 at 5:08 AM, Alexandre Bergel <alexandre@bergel.eu> wrote:
This is because when you have a line split into multiple lines, I want Enter to mean new line, not complete. This is particularly the case when you have pseudo-domain specific languages like in Glamour or Mondrian.
A bit hard to get used to it, but I agree.
Ok, you've got a good point. Thanks to point me out.
Nevertheless, I would say that once I pressed the down arrow, my focus is to the completion, and thus enter should mean selection of the completion.
+1
I totally agree on this one. Francisco
Alexandre
On 12 Sep 2010, at 01:30, Francisco Ortiz Peñaloza wrote:
Hi, i'm trying the latest version cause i's tired of waiting for the switch to the longer list of suggestions. But i don't understand the following change
-removed enter to insert a completion
am i missing something? why do u ppl make this change?
Cheers, Francisco Ortiz Peñaloza
On Wed, Aug 4, 2010 at 8:20 PM, Tim Mackinnon <tamackinnon@gmail.com> wrote:
I shall definitely give that a read - especially now i have an example to think back on.
By the way - these chapters that people keep writing, are a great help (the monticello one certainly took away a huge load of frustrations I was having) - so thanks to everyone that keeps chipping away at them!
tim
On 4 Aug 2010, at 18:44, Mariano Martinez Peck wrote:
I am glad I helped. You can also take a look to the Metacello draft we wrote for Pharo By Example 2. I attach it.
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
-- www.tudorgirba.com
"Every thing has its own flow."
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
-- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel  http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
Nevertheless, I would say that once I pressed the down arrow, my focus is to the completion, and thus enter should mean selection of the completion.
+1
I totally agree on this one.
We should also be able to do a mouse click on a list item. Alexandre
On 12 Sep 2010, at 01:30, Francisco Ortiz Peñaloza wrote:
Hi, i'm trying the latest version cause i's tired of waiting for the switch to the longer list of suggestions. But i don't understand the following change
-removed enter to insert a completion
am i missing something? why do u ppl make this change?
Cheers, Francisco Ortiz Peñaloza
On Wed, Aug 4, 2010 at 8:20 PM, Tim Mackinnon <tamackinnon@gmail.com> wrote:
I shall definitely give that a read - especially now i have an example to think back on.
By the way - these chapters that people keep writing, are a great help (the monticello one certainly took away a huge load of frustrations I was having) - so thanks to everyone that keeps chipping away at them!
tim
On 4 Aug 2010, at 18:44, Mariano Martinez Peck wrote:
I am glad I helped. You can also take a look to the Metacello draft we wrote for Pharo By Example 2. I attach it.
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
-- www.tudorgirba.com
"Every thing has its own flow."
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
-- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
-- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
participants (7)
-
Alexandre Bergel -
Francisco Ortiz Peñaloza -
Mariano Martinez Peck -
Romain Robbes -
Stéphane Ducasse -
Tim Mackinnon -
Tudor Girba