Re: [Pharo-users] [squeak-dev] Named serial port bug and how to contribute

2018-11-29 Thread Nicolai Hess
Good to know! Am Fr., 30. Nov. 2018 um 02:25 Uhr schrieb Ricardo Moran < richi.mo...@gmail.com>: > Hi, > > I think I found a bug with the named serial ports in windows. > I can open a named port without problem the first time but if I close it > and try to open it again it fails until I restart

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

2018-11-29 Thread Francisco Ortiz Peñaloza
Hi, It is great to have Teapot finally migrated to github. For those who liked the project structure and docs see https://github.com/ba-st/GitHub-setup. Cheers, On Wed, 28 Nov 2018 at 18:48 Attila Magyar wrote: > Esteban A. Maringolo wrote > > Excellent material. > > I also liked that you

[Pharo-users] Spec + Graphics?

2018-11-29 Thread Dan Wilczak
Hi, I'm interested in using Pharo to create a simulation with animated 2-D graphical output. The user can start/stop the simulation, change display modes, zoom in and out, and change various settings during operation. That means that, in addition to a graphical pane, I need a menu bar or maybe a

Re: [Pharo-users] [Pharo-dev] [Ann] TaskIt v1.0

2018-11-29 Thread Santiago Bragagnolo
Hey those are good news :). Tell me if I can help you on that. Santiago El jue., 29 de nov. de 2018 17:55, Norbert Hartl escribió: > Hi Santiago, > > > Am 29.11.2018 um 17:48 schrieb Santiago Bragagnolo < > santiagobragagn...@gmail.com>: > > Hi Norbert! > > We don't have yet implemented any

Re: [Pharo-users] Playing with Pharo 7

2018-11-29 Thread serge . stinckwich
Maybe some part should be merge with Baseline class comment ? We had a look to the comment of this class recently and not that easy to understand what is Baseline. Sent from my iPhone > On 29 Nov 2018, at 17:05, Konrad Hinsen wrote: > > "Cyril Ferlicot D." writes: > >> There is also a

Re: [Pharo-users] [Pharo-dev] [Ann] TaskIt v1.0

2018-11-29 Thread Norbert Hartl via Pharo-users
--- Begin Message --- Hi Santiago, > Am 29.11.2018 um 17:48 schrieb Santiago Bragagnolo > : > > Hi Norbert! > > We don't have yet implemented any nor all combinations. I will add it to the > list of things to do for next release. Looks like a simple and useful thing > to have. (Or if you

Re: [Pharo-users] [Pharo-dev] [Ann] TaskIt v1.0

2018-11-29 Thread Santiago Bragagnolo
Hi Norbert! We don't have yet implemented any nor all combinations. I will add it to the list of things to do for next release. Looks like a simple and useful thing to have. (Or if you have already something I wouldn't mind to integrate it) Thanks. Santiago El jue., 29 de nov. de 2018 17:36,

Re: [Pharo-users] [Pharo-dev] [Ann] TaskIt v1.0

2018-11-29 Thread Norbert Hartl via Pharo-users
--- Begin Message --- Great, thanks! Does TaskIt include implementations for combining futures such as the ALL and the ANY futures which resolve either when all or one future resolves? From the documentation it looks that rather not. Norbert > Am 29.11.2018 um 15:29 schrieb Santiago

Re: [Pharo-users] Playing with Pharo 7

2018-11-29 Thread Konrad Hinsen
"Cyril Ferlicot D." writes: > There is also a recent guide here: > https://github.com/pharo-tips-and-tricks/pharo-tips-and-tricks/blob/master/General/Baselines.md > > I don't know if it is more beginner friendly. Feedback is welcome. Yes, it's a lot better for beginners because it actually

[Pharo-users] [Ann] TaskIt v1.0

2018-11-29 Thread Santiago Bragagnolo
Hi everybody :). I am happy to announce TaskIt v1.0. In this version we add some new features, passed over the red tests and clean up some dead code. And did a pass in the documentation A bit from the DOC Downloading Current stable version of taskit can be downloaded using metacello as

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

2018-11-29 Thread Thierry Goubier
Le jeu. 29 nov. 2018 à 11:15, Marcus Denker a écrit : > > > > > On 29 Nov 2018, at 10:45, Thierry Goubier wrote: > > > > Hi Manuel, > > > > would that extend to testing what happens if you add many, many > > metalinks in a method? > > > > yes, it would be nice to test that. > > > > I tried to

[Pharo-users] Uncle Bob's package design metrics

2018-11-29 Thread Rafael Luque
Hi, Recently I've reread the chapter about "Package Design Principles" from the Robert C. Martin's "Agile Software Development" book and immediately find myself playing within the reflective and moldable Pharo's environment. I've built an small library DMMetrics that you can find at GitHub:

Re: [Pharo-users] VPS difficulties

2018-11-29 Thread Pierce Ng
On Wed, Nov 21, 2018 at 07:06:08PM -0500, Richard Kenneth Eng wrote: > I'm creating the competition website using Pharo and Teapot. For > encryption, I'm using Pierce Ng's PasswordCrypt, which requires a 32-bit C > library. This means I must run 32-bit Pharo. PasswordCrypt can be built as a

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

2018-11-29 Thread Marcus Denker
> On 29 Nov 2018, at 10:45, Thierry Goubier wrote: > > Hi Manuel, > > would that extend to testing what happens if you add many, many > metalinks in a method? > yes, it would be nice to test that. > I tried to rewrite the automated code tracer I had to use metalinks, > and I gave up once

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

2018-11-29 Thread Thierry Goubier
Hi Manuel, would that extend to testing what happens if you add many, many metalinks in a method? I tried to rewrite the automated code tracer I had to use metalinks, and I gave up once I discovered that going over a certain number of metalinks in a method would stop working. Thierry Le jeu.

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

2018-11-29 Thread Marcus Denker
> On 28 Nov 2018, at 21:37, Manuel Leuenberger wrote: > > 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?),