Re: [Pharo-users] EPUB anyone

2015-11-13 Thread stepharo
would be great :) Le 14/11/15 04:18, Yanni Chiu a écrit : Long ago, I added an EPUB exporter to Pier-Book, but it was added to Pier2. The fork off point for Pier3 happened just before the EPUB piece. I see that it is still available at: http://source.lukas-renggli.ch/pier2/Pier-Book-YanniC

Re: [Pharo-users] New Introductory Tutorial

2015-11-13 Thread stepharo
Thanks this is nice effort. Now some remarks: - Do you think that great speakers like doru would be invited to prime time conference to talk about a language that is from 1980? - You talk about momentum and shared space. Do you think that it is wise to talk about a Smalltalk whose forum

Re: [Pharo-users] Very sad day for the world

2015-11-13 Thread stepharo
Thanks I just woke up and heard these terrible news. To me when a human believes that another one is not worth more than a dog and we can kill it for free, we cannot expect much. I really hope that people will not vote for extreme right because it would be terrible in addition. Now I hope tha

[Pharo-users] Democracy attacked...

2015-11-13 Thread stepharo
Hi guys I just want to let you that France got attacked by kamizazes probably from these fanatics ruining syria and we are touched. 120 people killed: they attacked a rock concert and restaurants in the street in Paris. They killed people randomly and as birds. I hope that such attacks will no

Re: [Pharo-users] EPUB anyone

2015-11-13 Thread stepharo
because we want! Le 13/11/15 19:44, Dimitris Chloupis a écrit : there are plenty of converters out there for coverting hmtl/pdf files to epub, why you need a pharo solution ? On Fri, Nov 13, 2015 at 7:45 PM Torsten Bergmann > wrote: Hi Is there anyone working

[Pharo-users] Very sad day for the world

2015-11-13 Thread Hernán Morales Durand
Cannot believe what happened in Paris. I am really sad and frightened about the future of human kind. Love and strength to the people in Paris and all of France. Hernán

Re: [Pharo-users] EPUB anyone

2015-11-13 Thread Yanni Chiu
Long ago, I added an EPUB exporter to Pier-Book, but it was added to Pier2. The fork off point for Pier3 happened just before the EPUB piece. I see that it is still available at: http://source.lukas-renggli.ch/pier2/Pier-Book-YanniChiu.164.mcz It would have to be ported to Pier3 or Pillar, or

Re: [Pharo-users] EPUB anyone

2015-11-13 Thread Ferlicot D. Cyril
Le 13/11/2015 18:44, Torsten Bergmann a écrit : > Hi > > Is there anyone working on/with EPUB in Pharo? > > If I remember correctly there was once the idea of an > EPUB exporter for Pillar. > > Status/Plans? Hi, This is on the todo list of Pillar but noone works on Pillar for now except for s

Re: [Pharo-users] EPUB anyone

2015-11-13 Thread Offray Vladimir Luna Cárdenas
Hi, On 13/11/15 15:26, Peter Uhnák wrote: For the same reason why Pillar supports export to LaTeX, HTML and Markdown...why not just one and use pandoc to convert it to everything? Because control and customizations. (And that's not even mentioning that some of the powers of Pharo stems from it

Re: [Pharo-users] EPUB anyone

2015-11-13 Thread Peter Uhnák
For the same reason why Pillar supports export to LaTeX, HTML and Markdown...why not just one and use pandoc to convert it to everything? Because control and customizations. (And that's not even mentioning that some of the powers of Pharo stems from it's self-centeredness.) There's open issue for

Re: [Pharo-users] EPUB anyone

2015-11-13 Thread Dimitris Chloupis
there are plenty of converters out there for coverting hmtl/pdf files to epub, why you need a pharo solution ? On Fri, Nov 13, 2015 at 7:45 PM Torsten Bergmann wrote: > Hi > > Is there anyone working on/with EPUB in Pharo? > > If I remember correctly there was once the idea of an > EPUB exporter

[Pharo-users] EPUB anyone

2015-11-13 Thread Torsten Bergmann
Hi Is there anyone working on/with EPUB in Pharo? If I remember correctly there was once the idea of an EPUB exporter for Pillar. Status/Plans? Thanks for an update Bye T.

Re: [Pharo-users] Transcrip Show: in a loop

2015-11-13 Thread abdelghani ALIDRA
Yes, the benchmark object is a nice idea. I just did not know about it Thanks to all  Abdelghani. De : Sven Van Caekenberghe À : Any question about pharo is welcome Cc : abdelghani ALIDRA Envoyé le : Vendredi 13 novembre 2015 14h32 Objet : Re: [Pharo-users] Transcrip Show: in a loop

Re: [Pharo-users] Transcrip Show: in a loop

2015-11-13 Thread Sven Van Caekenberghe
> On 13 Nov 2015, at 14:25, Alexandre Bergel wrote: > > Hi! > > I understand your concern. However, there are better way of doing the > benchmarking. Just inspect the following expression: > (1 to: 10) collect: [:i | [ aLongComputation ] timeToRun ] > > You can then easily graph the number, d

Re: [Pharo-users] Transcrip Show: in a loop

2015-11-13 Thread Marcus Denker
For the transcript issue, we have a bug entry: https://pharo.fogbugz.com/f/cases/15515/Transcript-does-not-show-immediate-results > On 13 Nov 2015, at 10:25, Alexandre Bergel wrote: > > Hi! > > I understand your concern. However, there are better way of doing the > benchmarking. Jus

Re: [Pharo-users] Transcrip Show: in a loop

2015-11-13 Thread Alexandre Bergel
Hi! I understand your concern. However, there are better way of doing the benchmarking. Just inspect the following expression: (1 to: 10) collect: [:i | [ aLongComputation ] timeToRun ] You can then easily graph the number, do some average… Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^

Re: [Pharo-users] FileDialog from Spec

2015-11-13 Thread Jeff Gray
Thanks! That worked like a charm. -- View this message in context: http://forum.world.st/FileDialog-from-Spec-tp4860608p4860831.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] Transcrip Show: in a loop

2015-11-13 Thread Carlo
Hi You could fork a thread which will free up the UI thread. e.g. [ 10 timesRepeat: [ aLongComputation. Transcript show: 'some message' ] ] fork Regards Carlo On 13 Nov 2015, at 12:06 PM, abdelghani ALIDRA wrote: Thanks Vincent, flush does n

Re: [Pharo-users] Transcrip Show: in a loop

2015-11-13 Thread abdelghani ALIDRA
Thanks Vincent,  flush does not seem to work but I think I am going to use bench. Abdelghani De : Blondeau Vincent À : abdelghani ALIDRA ; Any question about pharo is welcome Envoyé le : Vendredi 13 novembre 2015 10h37 Objet : RE: [Pharo-users] Transcrip Show: in a loop #yiv8061250

Re: [Pharo-users] Transcrip Show: in a loop

2015-11-13 Thread Sven Van Caekenberghe
> On 13 Nov 2015, at 10:20, abdelghani ALIDRA wrote: > > Hi all, > > In order to monitor my program performance, I am using Transcrip>>show as > follows ; > > 10 timesRepeat:[ > aLongComputation. > Transcript show: 'some message'. > ] > > The thing is that the messages are not sh

Re: [Pharo-users] Transcrip Show: in a loop

2015-11-13 Thread Blondeau Vincent
Hi, For benchmarking, you should do : [ aLongComputation] bench It is simpler that to write on Transcript the execution time. About the writing of the messages on Transcript, that is a normal behavior. Maybe you should try “Transcript flush” to force the message writing? Vincent De : Pharo-use

[Pharo-users] Transcrip Show: in a loop

2015-11-13 Thread abdelghani ALIDRA
Hi all, In order to monitor my program performance, I am using Transcrip>>show as follows ; 10 timesRepeat:[    aLongComputation.     Transcript show: 'some message'.     ] The thing is that the messages are not shown one after another but all together after the loop is finished, unless I put a