Re: [Pharo-users] Saving a Smalltalk Project

2018-05-02 Thread Sean P. DeNigris
horrido wrote > what types of recent industrial projects youve come across that use > Smalltalk? One that immediately comes to mind is Lam Research: https://pharo.org/success/LAMRC - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] #ast vs. #parseTree

2018-05-02 Thread Bernardo Ezequiel Contreras
a "parse tree" is not equal to an "ast"(abstract syntax tree) but its difficult to find a name for an ast that is not cached. maybe parsedAst parseAst On Wed, May 2, 2018 at 3:28 PM, Richard Sargent < richard.sarg...@gemtalksystems.com> wrote: > On Wed, May 2, 2018 at 11:06 AM, Denis

Re: [Pharo-users] Saving a Smalltalk Project

2018-05-02 Thread Todd Blanchard
OK, so I'm curious what hardware platforms you guys use for your "things"? Been doing things with Particle lately. Interested to try their new mesh offering. > On May 2, 2018, at 12:30 PM, Serge Stinckwich > wrote: > > If they are interested, we can get in touch.

Re: [Pharo-users] Saving a Smalltalk Project

2018-05-02 Thread Serge Stinckwich
If they are interested, we can get in touch. We are working on IoT for environmental monitoring and I’m working in Cameroon. Regards, Envoyé de mon iPad > Le 2 mai 2018 à 19:21, horrido a écrit : > > I received the following message: > > *We started off doing a

Re: [Pharo-users] Iceberg Pharo6.1 on Microsoft Windows 7

2018-05-02 Thread Ben Coman
On 2 May 2018 at 22:02, Guillermo Polito wrote: > Hi Federico, > > I don't think compiling libgit in your box will solve the problem. I think > libgit is correctly compiled (otherwise you'd have another kind of error). > What you probably have is an ssh authentication

Re: [Pharo-users] #ast vs. #parseTree

2018-05-02 Thread Richard Sargent
On Wed, May 2, 2018 at 11:06 AM, Denis Kudriashov wrote: > Hi. > > Maybe #parseSourceCode would be better name for #parseTree. > I've always found it good advice to avoid using a verb phrase to name something which does not entail some kind of action. #parseSourceCode

[Pharo-users] Saving a Smalltalk Project

2018-05-02 Thread horrido
I received the following message: *We started off doing a small project in conservation in South Africa that involved tracking Rhinos in a remote GPS denied environment and ended up with some impressive building blocks for a Big Data Platform for IoT. The platform includes its own GIS subsystem

Re: [Pharo-users] #ast vs. #parseTree

2018-05-02 Thread Denis Kudriashov
Hi. Maybe #parseSourceCode would be better name for #parseTree. 2018-05-02 16:33 GMT+03:00 Marcus Denker : > > > > On 27 Apr 2018, at 21:36, Sean P. DeNigris > wrote: > > > > Marcus Denker-4 wrote > >> I will add comments… > > > > I got confused

Re: [Pharo-users] Restoring a class via Epicea didn't recompile a reference?

2018-05-02 Thread Marcus Denker
> On 2 May 2018, at 17:33, Sean P. DeNigris wrote: > > Marcus Denker-4 wrote >> (I sometimes wonder if we should not late-bind accesses to globals, that >> is, just compile them as message sends to the environment). > > That would be *great*. This is another one of

Re: [Pharo-users] #ast vs. #parseTree

2018-05-02 Thread Marcus Denker
> On 2 May 2018, at 17:34, Sean P. DeNigris wrote: > > Marcus Denker-4 wrote >> the cached #ast is for one interesting… > > Thanks! Very interesting :) > In the end I think what I really would like to have is a Smalltalk with a “first class” and persistent AST (or

Re: [Pharo-users] #ast vs. #parseTree

2018-05-02 Thread Sean P. DeNigris
Marcus Denker-4 wrote > the cached #ast is for one interesting… Thanks! Very interesting :) - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Restoring a class via Epicea didn't recompile a reference?

2018-05-02 Thread Sean P. DeNigris
Marcus Denker-4 wrote > (I sometimes wonder if we should not late-bind accesses to globals, that > is, just compile them as message sends to the environment). That would be *great*. This is another one of those little lies where "everything is a message send" and "late binding everything" breaks

Re: [Pharo-users] Using secure websockets server side with Zinc

2018-05-02 Thread Cyril Ferlicot D.
On 02/05/2018 16:29, Sven Van Caekenberghe wrote: > Hi Cyril, > Thank you for the infos and the fast reply :) > You can run a ZnSecureServer with a specific certificate. See the class > comment. But, this is a bit experimental, you need a very specific > certificate and I have only seen it

Re: [Pharo-users] Using secure websockets server side with Zinc

2018-05-02 Thread Sven Van Caekenberghe
Hi Cyril, You can run a ZnSecureServer with a specific certificate. See the class comment. But, this is a bit experimental, you need a very specific certificate and I have only seen it work on Linux. If you front you Seaside app with Nginx, I assume you are doing HTTPS -> HTTP in Nginx. I

[Pharo-users] Using secure websockets server side with Zinc

2018-05-02 Thread Cyril Ferlicot D.
Hi! I am trying to deploy a Seaside application that uses Zinc's websockets. I use nginx and I have a TLS certificate for the application so I need to use secure websockets (wss://) and not simple websockets (ws://). I got a problem because the client could not access to the server because it

Re: [Pharo-users] Iceberg Pharo6.1 on Microsoft Windows 7

2018-05-02 Thread Guillermo Polito
Hi Federico, I don't think compiling libgit in your box will solve the problem. I think libgit is correctly compiled (otherwise you'd have another kind of error). What you probably have is an ssh authentication error. Could you try cloning using the https url provided by github instead? That

Re: [Pharo-users] #ast vs. #parseTree

2018-05-02 Thread Marcus Denker
> On 27 Apr 2018, at 21:36, Sean P. DeNigris wrote: > > Marcus Denker-4 wrote >> I will add comments… > > I got confused by this again and created an issue: > https://pharo.manuscript.com/f/cases/21806/Document-Difference-between-ast-and-parseTree > > And then Peter

Re: [Pharo-users] Restoring a class via Epicea didn't recompile a reference?

2018-05-02 Thread Marcus Denker
> On 2 May 2018, at 14:39, Guillermo Polito wrote: > > Well, yes to both. > > Now, about the performance, first I'd like to have a benchmark suite that > runs all the time, to at least understand if we lose some performance, > when/why was it. > Of course, this

Re: [Pharo-users] Restoring a class via Epicea didn't recompile a reference?

2018-05-02 Thread Guillermo Polito
Well, yes to both. Now, about the performance, first I'd like to have a benchmark suite that runs all the time, to at least understand if we lose some performance, when/why was it. Of course, this would have an impact depending on how often are globals read/written. But I'd like to know with more

Re: [Pharo-users] Restoring a class via Epicea didn't recompile a reference?

2018-05-02 Thread teso...@gmail.com
Two points. 1. Maybe we should centralize the removal of a class in a component as the class installer. So we can have it all in one place, and if we need to override and do fancy stuff. 2. Yes to the messages to the environment, I am doing so to have multiple environments sharing the same

Re: [Pharo-users] Restoring a class via Epicea didn't recompile a reference?

2018-05-02 Thread Marcus Denker
> On 26 Apr 2018, at 09:28, Guillermo Polito wrote: > > Hi, > > It looks you got bit by this issue: > > https://pharo.fogbugz.com/f/cases/21519/RemoveFromSystem-does-not-work-well-with-Undeclareds > > It's not particular to Epicea. There should be a better

[Pharo-users] Iceberg Pharo6.1 on Microsoft Windows 7

2018-05-02 Thread Federico.Balaguer
Hello, I am trying to help some newbies to Smalltalk to use Iceberg on Pharo6.1 on Windows 7. I have a VirtualBox with Windows 7, I have the PharoLauncher installed from where I launch the Pharo 6.1 image. I cannot clone github repositories, I get a debugger: "LGit_GIT_ERROR: failed to get

Re: [Pharo-users] Pharo 7 image, some more size reducation

2018-05-02 Thread Sven Van Caekenberghe
> On 2 May 2018, at 13:47, Marcus Denker wrote: > > > >> On 28 Apr 2018, at 11:16, Hilaire wrote: >> >> Hi, >> >> Pharo7 has proven to be a reliable host for Dr. Geo, and thank you for your >> advices and helps. In the past weeks several

Re: [Pharo-users] Pharo 7 image, some more size reducation

2018-05-02 Thread Marcus Denker
> On 28 Apr 2018, at 11:16, Hilaire wrote: > > Hi, > > Pharo7 has proven to be a reliable host for Dr. Geo, and thank you for your > advices and helps. In the past weeks several screenshots were posted on > DrGeo twitter, all based on P7 built. Many notable tools or

[Pharo-users] Pharo Laucher > Copy and subfolders

2018-05-02 Thread p...@highoctane.be
In the Pharo Launcher (Windows 19 here), I do a copy of an existing "image" (actually an entry in the right pane). The copy copies everything which is at the root and the subfolders but the subfolders end up being empty (apparently pharo-local and github-cache included). That's pretty annoying

Re: [Pharo-users] [Pharo-dev] [ANN] ba-st Web Stack family gets a new member: Willow-Mixpanel and new releases

2018-05-02 Thread Guillermo Polito
Thanks! On Tue, May 1, 2018 at 3:28 PM, Gabriel Cotelli wrote: > Hi, > > We're happy to announce a new member in the Web Stack family hosted at > https://github.com/ba-st/ : Willow-Mixpanel > . > > This is also a multi-release