Re: [Pharo-users] [ANN] Teapot was moved to GitHub

2018-11-28 Thread Attila Magyar
Esteban A. Maringolo wrote > Excellent material. > I also liked that you not only provided instructions for installation, > but also to set Teapot as a dependency. > > Please add the `pharo` tag to the repository, so it gets listed in the > topics section [1] and also helps bumping Pharo topic to

Re: [Pharo-users] [ANN] Teapot was moved to GitHub

2018-11-28 Thread Attila Magyar
Esteban A. Maringolo wrote > Excellent material. > I also liked that you not only provided instructions for installation, > but also to set Teapot as a dependency. > > Please add the `pharo` tag to the repository, so it gets listed in the > topics section [1] and also helps bumping Pharo topic to

Re: [Pharo-users] Reify RBLiteralNode and RBBlockNode args/return with MetaLink?

2018-11-28 Thread Manuel Leuenberger
Awesome, thanks for the effort Marcus! I was wondering if it would be useful to use matrix-testing for MetaLinks. I imagine having example methods which employ all features of the Smalltalk syntax (syntax on a postcard?), for which all intermediate results of expressions are known, then apply

Re: [Pharo-users] [ANN] Teapot was moved to GitHub

2018-11-28 Thread Esteban Maringolo
El mié., 28 nov. 2018 a las 16:01, Sven Van Caekenberghe () escribió: > > Nice docs, thank you. +1 I couldn't avoid reading the whole getting started doc. Excellent material. I also liked that you not only provided instructions for installation, but also to set Teapot as a dependency. Please

Re: [Pharo-users] [ANN] Teapot was moved to GitHub

2018-11-28 Thread Sven Van Caekenberghe
Nice docs, thank you. > On 28 Nov 2018, at 08:49, Attila Magyar wrote: > > Hi, > > I just want to let you know that the source code of Teapot was moved from > Smalltalkhub to GitHub. > > The new repository is located at: > > https://github.com/zeroflag/teapot

Re: [Pharo-users] Loading Metacello with Seaside

2018-11-28 Thread Vitor Medina Cruz
> > "I tried to load magritte only and I got the same problem. Maybe I do not > have it in my project because I load seaside before with an other group?" > Probably "You can try to add seaside yourself in your project. Something like:" > I will try that :( On Wed, Nov 28, 2018 at 3:22 PM

Re: [Pharo-users] [ANN] Teapot was moved to GitHub

2018-11-28 Thread Norbert Hartl via Pharo-users
--- Begin Message --- Great! Thanks! Norbert > Am 28.11.2018 um 08:49 schrieb Attila Magyar : > > Hi, > > I just want to let you know that the source code of Teapot was moved from > Smalltalkhub to GitHub. > > The new repository is located at: > > https://github.com/zeroflag/teapot

Re: [Pharo-users] Loading Metacello with Seaside

2018-11-28 Thread Cyril Ferlicot D.
Le 28/11/2018 à 17:38, Vitor Medina Cruz a écrit : > Tried now, didn't work, same error. It is working for you? > I tried to load magritte only and I got the same problem. Maybe I do not have it in my project because I load seaside before with an other group? I think there was an issue that is

Re: [Pharo-users] Loading Metacello with Seaside

2018-11-28 Thread Vitor Medina Cruz
Tried now, didn't work, same error. It is working for you? On Wed, Nov 28, 2018 at 8:34 AM Vitor Medina Cruz wrote: > I tried with Baseline also, but it didn't work. I will try again as I can > have made some mistake and I will report here. > > On Tue, Nov 27, 2018 at 9:19 PM Cyril Ferlicot D.

Re: [Pharo-users] Unable to compile myself Pharo

2018-11-28 Thread teso...@gmail.com
Hi Alexandre, as Cédrick said there is no need to generate a new image from scratch. Pharo is basically divided in two parts an image (that is the one that it is generated by the process you want to run) and a virtual machine to run the image. The image is multi-OS you can download a 32 bits

Re: [Pharo-users] Unable to compile myself Pharo

2018-11-28 Thread Cédrick Béler
Hi Alexandre, Do you really want to « bootstrap » an image ? You don’t need to (just use an official image). Try here, either through the launcher or the curl command line: https://pharo.org/download (Linux for thé launcher or at the end of the page from the command line. HTH, Cedrick

Re: [Pharo-users] Reify RBLiteralNode and RBBlockNode args/return with MetaLink?

2018-11-28 Thread Marcus Denker
> > >>> iii) How are cascaded message sends reified? Am I supposed to instrument >>> the cascade node or the individual message sends? >>> > > https://pharo.fogbugz.com/f/cases/22702/support-before-after-intead-on-RBCascadeNode > >

Re: [Pharo-users] Loading Metacello with Seaside

2018-11-28 Thread Vitor Medina Cruz
I tried with Baseline also, but it didn't work. I will try again as I can have made some mistake and I will report here. On Tue, Nov 27, 2018 at 9:19 PM Cyril Ferlicot D. wrote: > Le 28/11/2018 à 00:08, Vitor Medina Cruz a écrit : > > Hello! > > > > WIndows 10 here with Pharo 7 32 bits. Here is

Re: [Pharo-users] Unable to compile myself Pharo

2018-11-28 Thread Garreau, Alexandre
Le 28/11/2018 à 11h17, Garreau, Alexandre a écrit : > This VM uses a separate heartbeat thread to update its internal clock > and handle events. For best operation, this thread should run at a > higher priority, however the VM was unable to change the priority. The > effect is that heavily

[Pharo-users] Unable to compile myself Pharo

2018-11-28 Thread Garreau, Alexandre
I need Pharo soon for my studies, and since it’s not packaged for debian (how sad for something requiring bootstraping hence binaries :/) I wanted to compile it, but (please tell me what additional informations I could give you, I’m under Debian GNU/Linux 32bits for now) since then:

Re: [Pharo-users] Reify RBLiteralNode and RBBlockNode args/return with MetaLink?

2018-11-28 Thread Marcus Denker
>> >> >> i) How do I reify the value of an RB(Valuel|Literal|LiteralValue)Node? >> RFValueReification does not work, and there is no reification for literal, >> value, or literal value nodes. This is now fixed. All subclasses of RBValueNode with the exception of Cascade now support #value.

Re: [Pharo-users] how to write this without a if then

2018-11-28 Thread Roelof Wobben
Thanks for all the explanations. and yes, I have to get a feel when I need a new class and when not. and when it's "allowed" to use a if then and when not. and if I understand the explanations I did not ask a class something so a if then is

Re: [Pharo-users] how to write this without a if then

2018-11-28 Thread Richard O'Keefe
DRAT! What (genius negated) designed gmail's interface? If I am wrong that the canHandleInput: class method of IllegalMoveSanta should return false, not true (because the order of the elements of #subclasses is not defined, so that IllegalMoveSanta might *always* be selected), then that is