Re: [Pharo-users] [Moose-dev] [ANN] Live Robot Programming

2014-08-14 Thread Lemuus
Awesome!!! now I really need to get a Lego Mindstorms EV3 :) On Thu, Aug 14, 2014 at 2:50 PM, Santiago Bragagnolo < santiagobragagn...@gmail.com> wrote: > Great Johan! Congrats for both of you :) > > > 2014-08-14 22:37 GMT+02:00 Johan Fabry : > > >> Aargh, copy-paste error. The Lego robot exampl

[Pharo-users] Charter chapter under construction

2014-08-14 Thread Alexandre Bergel
Dear All, Just to share the work on progress about a chapter on Charter. A charting library on top of Roassal. http://agilevisualization.com https://dl.dropboxusercontent.com/u/31543901/AgileVisualization/0202-Charter.pdf Cheers, Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:

Re: [Pharo-users] [Moose-dev] [ANN] Live Robot Programming

2014-08-14 Thread Santiago Bragagnolo
Great Johan! Congrats for both of you :) 2014-08-14 22:37 GMT+02:00 Johan Fabry : > > Aargh, copy-paste error. The Lego robot example is on Instagram of course > :-) > > http://instagram.com/p/pEhm0Oj837/ > > > On Aug 14, 2014, at 4:28 PM, Johan Fabry wrote: > > > Hi all, > > > > it’s with grea

Re: [Pharo-users] A Slice

2014-08-14 Thread Sven Van Caekenberghe
Another way, more technical way to say the same thing: a slice is an empty Monticello package which has a number of other packages as its so called requirements - loading the main slice package will then load the required packages. so it is a way to group modified packages. BTW, Monticello is a

Re: [Pharo-users] A Slice

2014-08-14 Thread p...@highoctane.be
A slice is useful for packaging changes one does for fixing a bug. Slices can hold several packages at once. One can create a slice from monticello. Slices are then put into an inbox monticello repository. And referred to in the fogbugz issue. Check the issue procedure on the website. Now, you

[Pharo-users] A Slice

2014-08-14 Thread Ichiseki
I've been reading some post that mention Slices. What is a slice? and what's usefull for? thank you Ichiro -- View this message in context: http://forum.world.st/A-Slice-tp4773357.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] [Pharo-business] [Pharo-dev] [ANN] HelloPharo - webapp deployment tool

2014-08-14 Thread Sven Van Caekenberghe
On 14 Aug 2014, at 22:40, François Stephany wrote: > Ah ! I was also thinking about a cookie to keep user identity, I hate to > re-login because of an expired session. I was looking for a good name, > "login-token" sounds good :) It works pretty well in practice (this is a mobile app mostly),

Re: [Pharo-users] [ANN] HelloPharo - webapp deployment tool

2014-08-14 Thread François Stephany
Just sent it to the Seaside ML, thanks for mentioning it ;) On Thu, Aug 14, 2014 at 5:13 PM, stepharo wrote: > > On 14/8/14 13:02, François Stephany wrote: > >> Hello, >> >> At Ta Mère, we are used to deploy Ruby/Rails application with Heroku or >> on VPS with Capistrano. Almost everybody uses

Re: [Pharo-users] [Pharo-business] [Pharo-dev] [ANN] HelloPharo - webapp deployment tool

2014-08-14 Thread François Stephany
Ah ! I was also thinking about a cookie to keep user identity, I hate to re-login because of an expired session. I was looking for a good name, "login-token" sounds good :) Why do you keep it 14 days only ? Is there a reason ? I planned to make it valid much longer than that... On Thu, Aug 14, 2

Re: [Pharo-users] [Moose-dev] [ANN] Live Robot Programming

2014-08-14 Thread Johan Fabry
Aargh, copy-paste error. The Lego robot example is on Instagram of course :-) http://instagram.com/p/pEhm0Oj837/ On Aug 14, 2014, at 4:28 PM, Johan Fabry wrote: > Hi all, > > it’s with great joy that I can announce the project that my PhD student > Miguel and I have been working on recently

[Pharo-users] [ANN] Live Robot Programming

2014-08-14 Thread Johan Fabry
Hi all, it’s with great joy that I can announce the project that my PhD student Miguel and I have been working on recently: Live Robot Programming, or LRP for short. LRP is a live programming language designed for the creation of the behavior layer of robots. It is fundamentally a nested state

Re: [Pharo-users] [Pharo-business] [Pharo-dev] [ANN] HelloPharo - webapp deployment tool

2014-08-14 Thread Sven Van Caekenberghe
On 14 Aug 2014, at 15:21, François Stephany wrote: > Good idea, I add monit as one of the next step. > > Load balancing is not supported at all. But we could change the nginx config > file to load balance between two images. And maybe make something for Seaside > and its state (sticky sessio

Re: [Pharo-users] AST source interval isn't changed

2014-08-14 Thread Thierry Goubier
Le 11/08/2014 10:09, Mark Rizun a écrit : Hello, I have MyTextModel class - a subclass of TextModel, it holds an ast of it's text. When I replace node of the ast using replaceWith: ast is changed, then I say text: ast formattedCode, so the text is changed too. But! when I inspect new ast(after r

Re: [Pharo-users] [ANN] HelloPharo - webapp deployment tool

2014-08-14 Thread stepharo
http://pharoweekly.wordpress.com/2014/08/14/hellopharo-smooth-deployment-of-pharo-web-apps/ :) On 14/8/14 13:02, François Stephany wrote: Hello, At Ta Mère, we are used to deploy Ruby/Rails application with Heroku or on VPS with Capistrano. Almost everybody uses the same tools and techniques

Re: [Pharo-users] [ANN] HelloPharo - webapp deployment tool

2014-08-14 Thread stepharo
On 14/8/14 13:02, François Stephany wrote: Hello, At Ta Mère, we are used to deploy Ruby/Rails application with Heroku or on VPS with Capistrano. Almost everybody uses the same tools and techniques in the Rails community so deployment is quite easy once you grasp the process. The same proc

Re: [Pharo-users] AST source interval isn't changed

2014-08-14 Thread Marcus Denker
On 14 Aug 2014, at 16:42, Mark Rizun wrote: > > > > I guess the AST is never used like that (it is re-created from source after > a change normally). > That's what I do (reparse it if something has been changed). But it seems to > me wrong, and also it causes problems. Yes, we should fix t

Re: [Pharo-users] AST source interval isn't changed

2014-08-14 Thread Mark Rizun
> I guess the AST is never used like that (it is re-created from source after > a change normally). > That's what I do (reparse it if something has been changed). But it seems to me wrong, and also it causes problems.

Re: [Pharo-users] AST source interval isn't changed

2014-08-14 Thread Marcus Denker
On 11 Aug 2014, at 10:09, Mark Rizun wrote: > Hello, > > I have MyTextModel class - a subclass of TextModel, it holds an ast of it's > text. > When I replace node of the ast using replaceWith: ast is changed, then I say > text: ast formattedCode, so the text is changed too. > But! when I inspe

Re: [Pharo-users] [Pharo-dev] [ANN] HelloPharo - webapp deployment tool

2014-08-14 Thread François Stephany
Good idea, I add monit as one of the next step. Load balancing is not supported at all. But we could change the nginx config file to load balance between two images. And maybe make something for Seaside and its state (sticky sessions?). I haven't done enough of this to actually take an informed de

Re: [Pharo-users] [ANN] HelloPharo - webapp deployment tool

2014-08-14 Thread Sven Van Caekenberghe
On 14 Aug 2014, at 13:08, François Stephany wrote: > Oh, I forgot to mention Sven. He wrote the original > http://stfx.eu/pharo-server/ > We basically stole all his Bash-fu to build the main script: > > https://github.com/fstephany/hello-pharo/blob/master/app > > Thanks a lot Sven! You're w

Re: [Pharo-users] [ANN] HelloPharo - webapp deployment tool

2014-08-14 Thread François Stephany
Oh, I forgot to mention Sven. He wrote the original http://stfx.eu/pharo-server/ We basically stole all his Bash-fu to build the main script: https://github.com/fstephany/hello-pharo/blob/master/app Thanks a lot Sven! On Thu, Aug 14, 2014 at 1:02 PM, François Stephany < tulipe.mouta...@gmail.co

[Pharo-users] [ANN] HelloPharo - webapp deployment tool

2014-08-14 Thread François Stephany
Hello, At Ta Mère, we are used to deploy Ruby/Rails application with Heroku or on VPS with Capistrano. Almost everybody uses the same tools and techniques in the Rails community so deployment is quite easy once you grasp the process. The same process was quite frustrating with Pharo. To solve tha

Re: [Pharo-users] Updatable trees in Moose browsers (It was Re: Rephrasing my question on Stackoverflow ...)

2014-08-14 Thread Nicolai Hess
Ah, calling act: on the tree, that makes sense. 2014-08-14 7:11 GMT+02:00 Tudor Girba : > Hi, > > The important visual objects, such as the selection, are reflected on the > ports of the pane containing the presentation. > > The tree has two ports that are relevant for selection: > - #selection