Re: [Pharo-users] Pharo on Chromebook

2020-06-08 Thread tbrunz
It's important to get a Chromebook with an Intel CPU. The ARM-based Chromebooks cannot run Crostini, so they do not have the option of running Linux containers -- so, no Pharo on ARM Chromebooks! Also, it's important to get a later model, in order to get a Linux kernel that supports containers

Re: [Pharo-users] Pharo on Chromebook

2020-06-08 Thread tbrunz
No, it's not quite the same... I've installed CloudReady on old (non-Chromebook) systems myself, so I'm a little bit familiar with it and what it can do. However, I've never tried to run 'Crostini' in CloudReady, so I don't know if that works, or (if it does), how well it parallels the

Re: [Pharo-users] Willow vs Seaside

2020-06-08 Thread Gabriel Cotelli
Hi Vitor, Willow is built on top of Seaside and it aims to ease the creation of interactive AJAX-based web applications. So if you're planning to do a lot of partial page rendering via AJAX updates it's worth a try. We're using it for several applications and the only full page refresh is done on

[Pharo-users] PharoJS now runs on Pharo 8 :-)

2020-06-08 Thread N. Bouraqadi
Thanks to Ivo Roefs and Dave Mason ! Noury

[Pharo-users] PharoJS for Pharo 8 is out

2020-06-08 Thread Noury Bouraqadi
Thanks to Ivo Roefs and Dave Mason :-) Noury

[Pharo-users] Willow vs Seaside

2020-06-08 Thread Vitor Medina Cruz
Hello, What's is the difference? Why should I use one or another? Regards, Vitor

Re: [Pharo-users] Willow selections

2020-06-08 Thread Tomaž Turk
Dear Gabriel, thanks for the answer, it helps tremendously. Best wishes, Tomaž

Re: [Pharo-users] Few newbie questoins about Pharo/Smalltalk capabilities

2020-06-08 Thread webwarrior
Well, one thing that might disappoint you in Pharo is UI libraries. You'd assume that system that has UI as integral part and relies on it would have excellent UI framework, but sadly that's not the case. Old framework - Morphic - is outdated; it's buggy, poorly documented, and its code is

Re: [Pharo-users] Willow selections

2020-06-08 Thread Gabriel Cotelli
Hi Tomaz, First check that your selection component is not created in every render cycle, so it can hold its state between calls. Usually components holding state must be kept in instance variables in the containing component, initialized once and rendered many times. Second, the selection state

[Pharo-users] Youtube REST API?

2020-06-08 Thread Stéphane Ducasse
Hello Does any of you already used the youtube REST API? S. Stéphane Ducasse http://stephane.ducasse.free.fr / http://www.pharo.org 03 59 35 87 52 Assistant: Aurore Dalle FAX 03 59 57 78 50 TEL 03 59 35 86 16 S. Ducasse - Inria 40, avenue Halley,

Re: [Pharo-users] Pharo on Chromebook

2020-06-08 Thread teso...@gmail.com
Hi, I have tested with CloudReady (another variation of Chromium OS) but I couldn't reproduce the error. Maybe there is a problem with the latest version of Chrome OS (that of course is not the same). On Mon, Jun 8, 2020 at 8:25 AM Stéphane Ducasse wrote: > > I think that we will have to buy one

Re: [Pharo-users] Pharo on Chromebook

2020-06-08 Thread Stéphane Ducasse
Thanks Olivier You do not experiment UI glitches so this means that it probably depend on the OS version. S > On 8 Jun 2020, at 09:22, olivier auverlot wrote: > > Hi, > > The leaders of the Chromebooks are Asus, Acer and HP. I recommend you to > choose a recent model with a powerfull x86

[Pharo-users] Willow selections

2020-06-08 Thread Tomaž Turk
Hi, when using selection components in Willow (like single and multiple selection lists), should #currentSelection and #currentSelectionIfNone: be called only within their own affordances? If I use these messages from onTrigger evaluate: of other components (e. g. buttons), then I don't get