Re: [Pharo-users] [ANN] Python3Generator and MatplotLibBridge

2018-01-05 Thread Dimitris Chloupis
Ah ok so you want to target the AST specifically, I see now. Yeap I did not implement any security measure for Atlas because the goal was local and not remote execution. Yes indeed the socket connects directly to 127.0.0 port 4000.So Atlas is preconfigured to work locally. I think safety is somethi

Re: [Pharo-users] [ANN] Python3Generator and MatplotLibBridge

2018-01-05 Thread Julien
> > Le 5 janv. 2018 à 17:15, Dimitris Chloupis a écrit : > > > > > Python3Generator allows to generate a Python 3 AST programatically. So > basically you have objects that represent Python 3 AST nodes and some > messages in top of that to make the generation of the AST easier from Pharo. >

Re: [Pharo-users] [ANN] Python3Generator and MatplotLibBridge

2018-01-05 Thread Dimitris Chloupis
> > Python3Generator allows to generate a Python 3 AST programatically. So > basically you have objects that represent Python 3 AST nodes and some > messages in top of that to make the generation of the AST easier from Pharo. > > E.g. > > ast := 'print' asP3GIdentifier callWith: #('Hello world'). >

Re: [Pharo-users] Grafoscopio (Initial) Feedback

2018-01-05 Thread Offray Vladimir Luna Cárdenas
Hi Sean, I would like to use the Metacello script you advised to me for loading Grafoscopio. The Gopher scripts were created following documentation in PBE2. Does any has pointers to documentation on how to create Metacello installing scripts? Thanks, Offray On 31/12/17 11:08, Sean P. DeNigri

Re: [Pharo-users] Examples of Garage for DB2

2018-01-05 Thread Andrei Stebakov
Thanks, Esteban, it works in my Pharo 6.1. Odbc connection works as well. On Jan 5, 2018 6:28 AM, "Esteban Lorenzano" wrote: this: SmalltalkImage compilerClass: Compiler. Metacello new smalltalkhubUser: 'PharoExtras' project: 'ODBC'; configuration: 'ODBC'; version: #bleedingEdge; load. Smalltal

Re: [Pharo-users] [ANN] Python3Generator and MatplotLibBridge

2018-01-05 Thread Julien
> > Le 5 janv. 2018 à 12:34, Dimitris Chloupis a écrit : > > > Well done, great to see my code be reused for new project. I am happy to see > people take it one step further. > > What exactly your code offers additional to my code ? Is there is something > special you do with it? Python3Ge

[Pharo-users] End of Pharo Mooc is delayed until end of January

2018-01-05 Thread Stephane Ducasse
Dear all, Some of you asked for a deadline extension in order to complete the course activities and get the certificate of attendance. We agreed to give you a few more days. The deadline is now January 31th. If you haven't done so, please take a moment to give us your feedback on the course by f

[Pharo-users] Exception in Gofer with Pharo 7

2018-01-05 Thread Rafael Luque
Hi all. I'm trying to load some packages from SmalltalkHub and I get an exception because ByteString did not understand #asUrl. Maybe it is related with String>>asUrl deprecated? https://pharo.fogbugz.com/f/cases/2896/Deprecate-String-asUrl Thank you!

Re: [Pharo-users] [ANN] Python3Generator and MatplotLibBridge

2018-01-05 Thread Dimitris Chloupis
Well done, great to see my code be reused for new project. I am happy to see people take it one step further. What exactly your code offers additional to my code ? Is there is something special you do with it? > There is a concept of « Interpreter » in this framework. Basically, an > interpreter

Re: [Pharo-users] Examples of Garage for DB2

2018-01-05 Thread Esteban Lorenzano
this: SmalltalkImage compilerClass: Compiler. Metacello new smalltalkhubUser: 'PharoExtras' project: 'ODBC'; configuration: 'ODBC'; version: #bleedingEdge; load. SmalltalkImage compilerClass: OpalCompiler. loads for me (after proceeding a warning) in Pharo7. no

Re: [Pharo-users] Where is "recover lost changes"?

2018-01-05 Thread Ben Coman
Similar question asked here... http://forum.world.st/Epicea-feedback-save-points-td5060619.html I have since got close to what I needed by first doing... Filter > Show only latest changes then doing... Filter > Hide changes if apply operation is redundant cheers -ben On 5 January 2018 at

[Pharo-users] Where is "recover lost changes"?

2018-01-05 Thread Andreas Brodbeck
Hi all In the newest Pharo 6.1 I miss a feature from the older Pharos "recover lost changes", which showed me all code changes after the image crashed. I am aware of the new Epicea, which is great, but I can't really get it to show me only those changes since the last image save. How can I get th

Re: [Pharo-users] [ANN] Python3Generator and MatplotLibBridge

2018-01-05 Thread Julien
> Le 4 janv. 2018 à 23:48, Kjell Godo a écrit : > > did you use a socket to communicate from Pharo to Python? > it does not sound like it it sounds more one way > i am interested in using sockets to communicate between programs > but i haven't done much with it yet >