[Pharo-users] Re: Communication between different images

2021-06-29 Thread Esteban Maringolo
Hi Gabriel, I like the Ansible approach using RabbitMQ, in particular because it would also work to delegate tasks to workers (even if in the same image), and the task queue would be preserved, whilst in MQTT if there are no subscribers for a topic, then all messages sent to it are discarded. Is

[Pharo-users] Re: Communication between different images

2021-06-29 Thread Gabriel Cotelli
If you want to use Rabbit you can also take a look at Ansible for connecting using the protocol instead of STOMP. On Tue, Jun 29, 2021 at 3:11 PM Esteban Maringolo wrote: > As far as I understand, ZeroMQ does not require a broker to perform > the communication

[Pharo-users] Re: Communication between different images

2021-06-29 Thread Esteban Maringolo
As far as I understand, ZeroMQ does not require a broker to perform the communication between publishers and subscribers, I don't know how that is implemented (what do they connect to? how each client discovers each other?). I already got MQTT running, It's not completely clear to me how the QoS

[Pharo-users] Re: Communication between different images

2021-06-29 Thread Jesus Mari Aguirre
Maybe ZeroMQ fits you, but unlucky is not documented and there are only a few examples. I use ir in my jupyter kernel. You can install my port to pharo64 uFFI doing: Metacello new baseline: 'JupyterTalk'; repository: 'github://jmari/JupyterTalk:master/repository';

[Pharo-users] Re: Fwd: [vwnc] Exception in Regex11 1.4.6

2021-06-29 Thread Sebastian Jordan
No problem Steffen. Have a nice day too! Sebastian De : Steffen Märcker Envoyé : mardi 29 juin 2021 à 18:27 À : Any question about pharo is welcome Objet : [Pharo-users] Re: Fwd: [vwnc] Exception in Regex11 1.4.6 Thanks Sebastian, that's exactly what I was

[Pharo-users] Re: Fwd: [vwnc] Exception in Regex11 1.4.6

2021-06-29 Thread Steffen Märcker
Thanks Sebastian, that's exactly what I was looking for. I vaguely remembered that such a site exits. =) Have a nice day! Steffen Sebastian Jordan schrieb am Dienstag, 29. Juni 2021 18:23:23 (+02:00): Here https://github.com/pharo-project/pharo/wiki/Contribute-a-fix-to-Pharo Sebastian

[Pharo-users] Re: Fwd: [vwnc] Exception in Regex11 1.4.6

2021-06-29 Thread Sebastian Jordan
Here https://github.com/pharo-project/pharo/wiki/Contribute-a-fix-to-Pharo Sebastian From: Steffen Märcker Sent: Tuesday, June 29, 2021 6:13:00 PM To: Any question about pharo is welcome Subject: [Pharo-users] Re: Fwd: [vwnc] Exception in Regex11 1.4.6 Dear

[Pharo-users] Re: Fwd: [vwnc] Exception in Regex11 1.4.6

2021-06-29 Thread Steffen Märcker
Dear all! I just checked and found that Regex in Pharo is indeed based on Regex11. It suffers from the same bug as the original. I'd like to bring the fix to Pharo. As a first-timer, where can I read about the procedure of contributing code? Kind regards, Steffen Steffen Märcker schrieb am

[Pharo-users] Re: Communication between different images

2021-06-29 Thread Sven Van Caekenberghe
> On 29 Jun 2021, at 15:50, Esteban Maringolo wrote: > > Hi Sven, > > I thought about both RabittMQ and MQTT too. > > For RabittMQ I noticed you provide a docker config to get a container > running quickly. That was done for GitHub action testing, by Santiago, you could indeed (re)use

[Pharo-users] Re: Communication between different images

2021-06-29 Thread Esteban Maringolo
Hi Sven, I thought about both RabittMQ and MQTT too. For RabittMQ I noticed you provide a docker config to get a container running quickly. What is the easy-go solution for MQTT? Regards! Esteban A. Maringolo On Tue, Jun 29, 2021 at 3:15 AM Sven Van Caekenberghe wrote: > > Hi Esteban, > > >

[Pharo-users] SerialPort hangs image in combination with Raspberry Pico (Windows)

2021-06-29 Thread Rob van Lopik
I have the following strange situation, where SerialPort>>nextPutAll: hangs when sending to a COM port that is (USB) connected to a Raspberry Pico (RP2040). The Pico contains a simple program (sketch) that echoes all input on it USB-serial port. This is written with the Arduino IDE. The echo

[Pharo-users] Re: Is there an easy way to cherry pick methods from another branch in iceberg?

2021-06-29 Thread Tim Mackinnon
Hi Guille - thanks for Chipping in on this - I have bookmarked the revert commands you have mentioned and see if that works better for me (rather than flailing around and making a mess of it). Possibly this scenario is one that could get its own menu option in the future - its a quite a common

[Pharo-users] Re: Communication between different images

2021-06-29 Thread Sven Van Caekenberghe
Hi Esteban, > On 29 Jun 2021, at 04:55, Esteban Maringolo wrote: > > Hi, > > I'm rearchitecting a web app to perform updates only when necessary > (instead of computing them all the time) on each request, I can have a > global announcer and subscribers to know when to update within an > image,