Re: [Pharo-users] Logging system

2018-07-10 Thread Miguel Campusano
> > Peter > > On Mon, Jul 9, 2018 at 10:30 PM, Miguel Campusano < > m.campusano.ar...@gmail.com> wrote: > >> Hello guys, >> >> I want to capture the logs of a Pharo program to visualize them, but I do >> not find something like Python to log stuffs

[Pharo-users] Logging system

2018-07-09 Thread Miguel Campusano
Hello guys, I want to capture the logs of a Pharo program to visualize them, but I do not find something like Python to log stuffs with more info than the string itself (such as severity or source of the log) ( https://docs.python.org/2/howto/logging.html). Is there a standard tool for logging

Re: [Pharo-users] [JOB] Engineer 1 year: Pharo IoT platform

2018-01-22 Thread Miguel Campusano
On Mon, Jan 22, 2018 at 6:17 AM Marcus Denker wrote: > Inria RMoD are looking for a full-time engineer for helping with > developing Pharo in the context of IoT. The focus of this job is "Pharo on > embedded and mobile devices for the internet of things" > > With Pharo,

Re: [Pharo-users] Trying to test Phantom / aspects in Pharo

2018-01-14 Thread Miguel Campusano
As far as I know, this is a project for an undregard thesis and I believe it is discontinued. If you contact Johan I will be glad to collaborate on this for a good cause On Sat, Jan 13, 2018 at 10:24 AM Stephane Ducasse wrote: > You should ask Johan Fabry. > Now working

Re: [Pharo-users] Looking for game state

2017-11-03 Thread Miguel Campusano
I found this paper some time ago, they modeled the AI of a tank using statecharts. http://www.adinfo.qc.ca/pdf/publication/models2007tankwars.pdf On Fri, Nov 3, 2017 at 11:11 AM Ben Coman wrote: > On Fri, Nov 3, 2017 at 4:59 PM, Stephane Ducasse

[Pharo-users] Nao robot with Pharo and LRP

2016-10-18 Thread Miguel Campusano
Hello, I've been working on an API for the Nao Robot [1] in Pharo. You can find an early demo of how it works in Pharo: https://www.youtube.com/watch?v=z8jopUfLWtQ Moreover, I built a communication bridge between the Nao and LRP [2]. LRP is a live programming language for robotic behaviors. You

Re: [Pharo-users] Rubric docs

2016-03-05 Thread Miguel Campusano
I don't think this is documented, but you can take a look at the SemanticWarningIconStyler class. This class is in charge of styling the semantic warnings. In AbstractNautilusUI>>addIconStyle you can see more how the icons are added. In short, you have to extend AbstractIconStyler for your own

Re: [Pharo-users] Rubric events

2015-10-02 Thread Miguel Campusano
datedInModel through the model of > the morph (and not directly the morph) ? > Cheers > Alain > > > > On 30 Sep 2015, at 16:52, Miguel Campusano <mcamp...@dcc.uchile.cl> > wrote: > > > > Hello, > > I'm working on modifying the styling of text by usi

[Pharo-users] Rubric events

2015-09-30 Thread Miguel Campusano
Hello, I'm working on modifying the styling of text by using RubTextSegmentMorph. The problem is that the text could be modified dynamically by selecting another text, so the styling must be modified. I want to use the announcements system of Rubric but something weird happens. When I subscribe to

[Pharo-users] shout styler and rubric segment morph

2015-09-23 Thread Miguel Campusano
Hello, I want to style smalltalk code inside a rubric text model (such as the one being used Nautilus in Pharo 5) but I want to extend this styling with underlines and highlighting. I notice that rubric added this kind of styling to the text morph and not to the text itself so I think it's not