Re: [Pharo-users] Standalone HTML Model

2017-09-18 Thread Craig Latta
Hi Norbert-- > > In Pharo on the SqueakJS virtual machine in a web browser[1], I > > sketch with live DOM objects, and write them out as HTML. This way, > > the DSL is the actual JavaScript DOM API which is sitting in the web > > browser anyway, although driven with Smalltalk messages over the

Re: [Pharo-users] UFFI problem / doubt

2017-09-18 Thread Ben Coman
Calling the wrapper function from Pharo the printf "should" output to the console (at least on Unix platforms). Shout if it doesn't. cheers -ben On Mon, Sep 18, 2017 at 9:41 PM, alvaro piorno wrote: > Thanks Ben, i `ll try that. > Should "printf" print something on

Re: [Pharo-users] (no subject)

2017-09-18 Thread Sean P. DeNigris
demarey wrote > It is a workaround but maybe I will add a strategy to use the unzip exe if > I can find it on the system. That should solve most problems. > WDYT? Sounds like a reasonable workaround for now. - Cheers, Sean -- Sent from:

Re: [Pharo-users] UFFI problem / doubt

2017-09-18 Thread alvaro piorno
Thanks Ben, i `ll try that. Should "printf" print something on console while calling function form pharo or is only to check from C example? 2017-09-17 14:12 GMT-03:00 Ben Coman : > On Mon, Sep 18, 2017 at 12:01 AM, alvaro piorno > wrote: > >

Re: [Pharo-users] Web stack practices (Glorp / QCMagritte)

2017-09-18 Thread jtuc...@objektfabrik.de
Laurent, I don't have answers to all your questions, but we use Glorp & Seaside (no Magritte) on VA Smalltalk for our cloud service (http://kontolino.de). Am 18.09.17 um 12:22 schrieb laurent: Hi all, it's been a long time :) At work we are currently comparing several technologies to

Re: [Pharo-users] Web stack practices (Glorp / QCMagritte)

2017-09-18 Thread Esteban A. Maringolo
Laurent, Regarding QCMagritte I don't know, since I don't use it. I've used Magritte and Glorp, but didn't bind them, the only special thing I built for it was an "evented memento" that let me edit a tree of objects (1:N relations derived from the edited object) within a single DB transaction.

Re: [Pharo-users] Continued Fractions

2017-09-18 Thread werner kassens
Hi Phil, yes, in polymath it is the the object PMContinuedFraction. werner On 09/17/2017 08:38 PM, p...@highoctane.be wrote: > Ah, I see there is something in the Numerical Methods book. :rolleyes: > > Phil > > On Sun, Sep 17, 2017 at 8:30 PM, p...@highoctane.be >

[Pharo-users] Web stack practices (Glorp / QCMagritte)

2017-09-18 Thread laurent
Hi all, it's been a long time :) At work we are currently comparing several technologies to start a business project that will hopefully be used by thousands of people for several years ;) We need a web stack and we put Pharo & co in the comparative process. My team have strong experience

Re: [Pharo-users] (no subject)

2017-09-18 Thread Christophe Demarey
> Le 17 sept. 2017 à 05:21, Sean P. DeNigris a écrit : > > demarey wrote >> Let us know if everything is fine. > > Was this issue [1] fixed: >> I think I found it. It seems to be a bug in the way Launcher/Pharo unzips >> the downloaded VM. >> The symlink libgit2.dylib

Re: [Pharo-users] Standalone HTML Model

2017-09-18 Thread Norbert Hartl
> Am 18.09.2017 um 09:03 schrieb Craig Latta : > > > Hi Sean-- > >> I'd like to create HTML via a DSL, like Seaside's canvas builder, but >> without loading a whole web framework. Any ideas? > > In Pharo on the SqueakJS virtual machine in a web browser[1], I >

Re: [Pharo-users] Standalone HTML Model

2017-09-18 Thread Craig Latta
Hi Sean-- > I'd like to create HTML via a DSL, like Seaside's canvas builder, but > without loading a whole web framework. Any ideas? In Pharo on the SqueakJS virtual machine in a web browser[1], I sketch with live DOM objects, and write them out as HTML. This way, the DSL is the actual