Re: [Pharo-users] Pharo 7- looking for seaside-REST and RFB

2018-11-23 Thread Johan Brichau
Sanjay, Which version of Seaside are you using and from which repository? Johan > On 24 Nov 2018, at 07:22, Sanjay Minni wrote: > > > I am migrating my 6.1 application (under develoment) to 7.0 - > I have loaded the required packages first thru Catalog Browser (in 7.0) - > Mandrill,

[Pharo-users] Pharo 7- looking for seaside-REST and RFB

2018-11-23 Thread Sanjay Minni
I am migrating my 6.1 application (under develoment) to 7.0 - I have loaded the required packages first thru Catalog Browser (in 7.0) - Mandrill, Mustache, Seaside3, VoyageMongo How to load the following in 7: - seaside-REST - My application looks for WARestfulComponentFilter - RFB Sven

Re: [Pharo-users] My Keynote at the Salta Conference

2018-11-23 Thread Offray Vladimir Luna Cárdenas
On 23/11/18 19:06, Offray Vladimir Luna Cárdenas wrote: > > Hi, > > Thanks for your positive and critical comments, as usual Ben. > > Richard I think that is important to listen to a community when > reaching to it (I remember a talk we had where I suggested an approach > closer to anthropology

Re: [Pharo-users] About the IoT Hackathon last Friday

2018-11-23 Thread Offray Vladimir Luna Cárdenas
Great video guys! The only think I wonder when I saw hackathon and technical videos in general is when/how we will get more diversity represented in the participants (ethnicities, ages, gender), but of course this is a hard open question that we all need to solve. Cheers, Offray On 17/11/18

Re: [Pharo-users] Lambda World 2018 - What FP can learn from Smalltalk by Aditya Siram

2018-11-23 Thread Offray Vladimir Luna Cárdenas
I saw it and really like it. Particularly the part where the speaker says that is impressed about what a small community with not much funding can do. Because this is also truth and doesn't hurt at all. I don't know about the garbage collector. In my case, the more I use the image and load things

Re: [Pharo-users] My Keynote at the Salta Conference

2018-11-23 Thread Offray Vladimir Luna Cárdenas
Hi, Thanks for your positive and critical comments, as usual Ben. Richard I think that is important to listen to a community when reaching to it (I remember a talk we had where I suggested an approach closer to anthropology instead of marketing). Many of us value your contributions, despite of

Re: [Pharo-users] Lambda World 2018 - What FP can learn from Smalltalk by Aditya Siram

2018-11-23 Thread horrido
I didn't like the fact that he said the Pharo community was really, really tiny, even compared to the likes of Clojure. Because the truth hurts. -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Lambda World 2018 - What FP can learn from Smalltalk by Aditya Siram

2018-11-23 Thread Esteban Maringolo
I watched it and shared it to friends and social networks. I think it's an excellent example of good organic marketing from a not-so-much outsider, but certainly not daily user of Pharo, to an audience that might have heard about it for the very first time. Regards, Esteban A. Maringolo El

Re: [Pharo-users] Lambda World 2018 - What FP can learn from Smalltalk by Aditya Siram

2018-11-23 Thread Todd Blanchard via Pharo-users
--- Begin Message --- I saw it. I learned a lot about some things I didn't know about in Pharo. I had no idea how PetitParser worked. Now I'm intrigued. It was an interesting perspective because, while he wasn't pushing Smalltalk, he was pushing for other languages to pursue better

[Pharo-users] Lambda World 2018 - What FP can learn from Smalltalk by Aditya Siram

2018-11-23 Thread Jimmie Houchin
Hello, Interesting video using Pharo for presenting its points. https://www.youtube.com/watch?v=baxtyeFVn3w Wondering if anybody else has seen this video. What can be learned from this outside perspective. He is mostly positive about Pharo and is using it as an example of things he would

Re: [Pharo-users] VPS difficulties

2018-11-23 Thread Ben Coman via Pharo-users
--- Begin Message --- On Fri, 23 Nov 2018 at 04:02, horrido wrote: > Okay, I've resolved everything. First, the reason why I'm getting the > 'pthread_setschedparam failed' error when I run Pharo under Debian is > because it must be run as 'root'! Don't ask me why, but that's the reason > why

Re: [Pharo-users] [ANN] JSON schema implementation

2018-11-23 Thread Tudor Girba
Nice work! Thanks! Doru > On Nov 22, 2018, at 5:56 PM, Norbert Hartl wrote: > > JSONSchema > === > > This is an implementation of JSON Schema for the pharo language. It is used > to define the structure and values of a JSON string and to validate it. The > schema itself can be

Re: [Pharo-users] Tracking method in and out with MetaLinks

2018-11-23 Thread Marcus Denker
> On 23 Nov 2018, at 14:59, Marcus Denker wrote: > > > >> On 23 Nov 2018, at 13:40, Manuel Leuenberger >> wrote: >> >> Hi, >> >> I stumbled upon another MetaLink scenario that I am unsure how to implement. >> I want to track method invocations, with receiver, arguments, selector, and

Re: [Pharo-users] Tracking method in and out with MetaLinks

2018-11-23 Thread Manuel Leuenberger
Awesome! I am looking forward to it. Cheers, Manuel > On 23 Nov 2018, at 14:59, Marcus Denker wrote: > > > >> On 23 Nov 2018, at 13:40, Manuel Leuenberger >> wrote: >> >> Hi, >> >> I stumbled upon another MetaLink scenario that I am unsure how to implement. >> I want to track method

Re: [Pharo-users] Tracking method in and out with MetaLinks

2018-11-23 Thread Marcus Denker
> On 23 Nov 2018, at 13:40, Manuel Leuenberger wrote: > > Hi, > > I stumbled upon another MetaLink scenario that I am unsure how to implement. > I want to track method invocations, with receiver, arguments, selector, and > return value (maybe even signaled exception). I can track the

Re: [Pharo-users] can't debug TinyBlog in the Pharo MOOC

2018-11-23 Thread Cyril Ferlicot
On Fri, Nov 23, 2018 at 1:25 PM iu136 via Pharo-users wrote: > > You were right Esteban, finally I fixed it by manually executing the code > below at Playground: > > | repository | > repository := VOMongoRepository database: 'tinyblog'. > repository enableSingleton . > > Even thought I was

[Pharo-users] Tracking method in and out with MetaLinks

2018-11-23 Thread Manuel Leuenberger
Hi, I stumbled upon another MetaLink scenario that I am unsure how to implement. I want to track method invocations, with receiver, arguments, selector, and return value (maybe even signaled exception). I can track the method input with a MetaLink installed on an RBMethodNode like this:

[Pharo-users] [ANN] Next Pharo Sprint: Nov 30

2018-11-23 Thread Marcus Denker
We will organize a Pharo sprint / Moose dojo Nov 30, starting at 10:00am. (Local Time Paris). Goals of this sprint: • Pharo 7 issues Remote Sprint: Remotely, you can join us on Discord. During the sprint, we synchronize local and remote Pharo sprinters:

Re: [Pharo-users] can't debug TinyBlog in the Pharo MOOC

2018-11-23 Thread iu136 via Pharo-users
--- Begin Message --- > Which again, should means you never executed initializeLocalhostMongoDB > method. > Can you try doing: > > TBBlock initializeLocalhostMongoDB. > > Esteban You were right Esteban, finally I fixed it by manually executing the code below at Playground: | repository |

Re: [Pharo-users] can't debug TinyBlog in the Pharo MOOC

2018-11-23 Thread Esteban Lorenzano
> On 22 Nov 2018, at 21:48, iu136 via Pharo-users > wrote: > > > From: iu136 > Subject: Re: can't debug TinyBlog in the Pharo MOOC > Date: 22 November 2018 at 21:48:52 CET > To: pharo-users@lists.pharo.org > > > EstebanLM wrote >> Hi, >> >> You are missing to initialise the Voyage