Re: [Pharo-users] Documentation about Pharo Launcher?

2016-05-02 Thread serge . stinckwich
Images available through PharoLauncher are images on the CI server : https://ci.inria.fr/pharo-contribution/ You need to add a CI job. Sent from my iPhone > On 3 mai 2016, at 02:14, Offray Vladimir Luna Cárdenas > wrote: > > Hi all. > > I would like to made one of

[Pharo-users] Documentation about Pharo Launcher?

2016-05-02 Thread Offray Vladimir Luna Cárdenas
Hi all. I would like to made one of my images available through Pharo Launcher. Anyone knows where I can find documentation about this? I can't find anything on the StHub page for the project. Thanks, Offray

Re: [Pharo-users] RT export to PDF

2016-05-02 Thread Arturo Zambrano
Thanks Stephan! On Sun, May 1, 2016 at 7:24 AM, Stephan Eggermont wrote: > On 01/05/16 04:00, Arturo Zambrano wrote: > >> Hi, >> I'm using RT on top of pharo5. >> As I need to export to pdf, I also installed >> RTPDFExporter >> and >> Artefact >> >> development versions >>

Re: [Pharo-users] Can you help me find this info?

2016-05-02 Thread Ben Coman
On Mon, May 2, 2016 at 5:30 PM, Victor RENE wrote: > > Hello, > > I am new to Pharo and would like to understand a few things. > I can search by myself, but I do not know the code base yet, so: > > [Questions] > Pharo vm (Cog/Spur): > Rendering loop (Whoops, I

Re: [Pharo-users] What other languages can do something similar?

2016-05-02 Thread Jimmie Houchin
Yes, I have had that problem in the past. But I do not recall the last time I did. And I don't remember if any time that I had an unresponsive UI that it was due to an infinite loop as described here as opposed to some other CPU intensive and possibly memory increasing bug. My example here is

Re: [Pharo-users] Metaprogramming facilities

2016-05-02 Thread Cédrick Béler
Or even quicker with the shortcut CMD+H+A Cheers, Cédrik

[Pharo-users] Metaprogramming facilities

2016-05-02 Thread Victor RENE
In the TinyBlog mini-project of the MOOC, we start by creating the model. However, since I basically finished the exercises, I wanted to go one step further and ask you guys, what is the correct way _not_ to write all gettters / setters for the fields. TBPost >> title ^ title TBPost >>

Re: [Pharo-users] Failing to create a project on SmalltalkHub

2016-05-02 Thread Peter Uhnák
> > > Also, they say it's possible to use Git but they don't describe the > setup. > This is indeed possible, but it may not be the simplest. Even though apart from the initial setup it behaves pretty much as normal smalltalkhub/anyothermonticellorepo, if a problem occurs it may not be the most

Re: [Pharo-users] Failing to create a project on SmalltalkHub

2016-05-02 Thread Serge Stinckwich
What is the web browser you are using ? Can you try another web browser ? Regards, On Mon, May 2, 2016 at 10:04 PM, Victor RENE wrote: > http://smalltalkhub.com/#!/~VictorRene > > I am trying to create a project on Smalltalk hub to save progress on the > MOOC. > But

[Pharo-users] Failing to create a project on SmalltalkHub

2016-05-02 Thread Victor RENE
http://smalltalkhub.com/#!/~VictorRene I am trying to create a project on Smalltalk hub to save progress on the MOOC. But it fails with "incorrect username or password", and i can not logout. Okay, I can probably empty my browser cache but it's still incorrect behavior. Also, they say it's

Re: [Pharo-users] What other languages can do something similar?

2016-05-02 Thread Peter Uhnák
> > I can execute foreverTrue in a Playground and when nothing returns in an > appropriate amount of time. I can stop the execution Assuming the UI is responsive enough to receive the stop command… which (at least in my experience) is more often false than true. In principle any environment

Re: [Pharo-users] Can you help me find this info?

2016-05-02 Thread Hernán Morales Durand
2016-05-02 6:30 GMT-03:00 Victor RENE : > Hello, > > I am new to Pharo and would like to understand a few things. > I can search by myself, but I do not know the code base yet, so: > > [Questions] > Pharo image: > Serialization, deserialization, where is the code?

[Pharo-users] What other languages can do something similar?

2016-05-02 Thread Jimmie Houchin
While working on a project I made a mistake in some code. A common mistake in most languages, a less common one in Smalltalk or Pharo. Something similar to the below. foreverTrue | index end | [ index < end ] whileTrue: [ "Do something clever. But forget to increment index." ]. ^

Re: [Pharo-users] Can you help me find this info?

2016-05-02 Thread Serge Stinckwich
Maybe you should register for Pharo MOOC: https://www.fun-mooc.fr/courses/inria/41010/session01/about?platform=hootsuite This is English/French and start today ;-) Regards, On Mon, May 2, 2016 at 5:30 PM, Victor RENE wrote: > Hello, > > I am new to Pharo and would

[Pharo-users] Can you help me find this info?

2016-05-02 Thread Victor RENE
Hello, I am new to Pharo and would like to understand a few things. I can search by myself, but I do not know the code base yet, so: [Questions] Pharo image: Serialization, deserialization, where is the code? Pharo vm (Cog/Spur): Rendering loop and event loops. done with SDL2, where is

Re: [Pharo-users] Best way to clear the Transcript?

2016-05-02 Thread john pfersich
Transcript clear works for me in Pharo 4 and 5 images. On Sun, May 1, 2016 at 11:52 PM, Peter Uhnák wrote: > What version of Pharo? > > `Transcript clear.` does exactly that. :) > > On Mon, May 2, 2016 at 8:49 AM, p...@highoctane.be > wrote: > >> I am

Re: [Pharo-users] Best way to clear the Transcript?

2016-05-02 Thread Peter Uhnák
What version of Pharo? `Transcript clear.` does exactly that. :) On Mon, May 2, 2016 at 8:49 AM, p...@highoctane.be wrote: > I am looking for a way to clear the Transcript. > > There is no direct command like Transcript clear available. > > I do not want to reopen a new

[Pharo-users] Best way to clear the Transcript?

2016-05-02 Thread p...@highoctane.be
I am looking for a way to clear the Transcript. There is no direct command like Transcript clear available. I do not want to reopen a new one, just be able to clear one with code, so that I can leave the window placed properly where I want it. TIA Phil