[Pharo-users] Discord server ownership

2017-05-25 Thread Dimitris Chloupis
Hey there, as you may or may not know I am the person to blame for starting the Pharo server in Discord , out of curiousity at first then it grew up to our main online chat. Unfortunately I have been using Pharo , less and less lately because for better or worse the libraries I depend on are based

[Pharo-users] Booklet update

2017-05-25 Thread Stephane Ducasse
Hi There are 7 booklets on the back burner Smacc, Voyage, Mocking, Bloc, Reddit, uFFI, Glorp and more to come. My goal is to flushmy hard-disc and make sure that other people can contribute. Now I made sure that all have a travis green job! Thanks a lot to damien P for the docker latex

Re: [Pharo-users] mustache questions

2017-05-25 Thread Stephane Ducasse
The formats are not the problems. This is just that some smart students were not really carefully supervised. So I will work on it slowly because I want to be able to use pillar for real in the future. On Thu, May 25, 2017 at 6:50 PM, p...@highoctane.be wrote: > Ah, yes,

Re: [Pharo-users] mustache questions

2017-05-25 Thread p...@highoctane.be
Ah, yes, that change really smells bad compared to previous Pillar where it was all in one step. Let's do opinionated books/booklets/presentations/articles. At least we'll have something working. Let's pick one or two output formats and then let's use Pandoc http://pandoc.org/ for the rest.

Re: [Pharo-users] mustache questions

2017-05-25 Thread Norbert Hartl
> Am 25.05.2017 um 17:00 schrieb Stephane Ducasse : > > Hi Norbert > > Pillar uses Mustache: it generate a json file and take the template and ask > mustache to do the inlining. > Now I just hate the idea that we have objects that we should save in file to > produce

Re: [Pharo-users] Renamed instance attribute by code

2017-05-25 Thread Hilaire
No I don't have a repeatable case I can share. (RPackageOrganizer default packageNamed: each) definedClasses returns Trait if there are part of the package. Therefore only work around I found is to not send instVarNames to a Trait. Le 25/05/2017 à 14:04, Stephane Ducasse a écrit : > Hilaire

[Pharo-users] mustache questions

2017-05-25 Thread Stephane Ducasse
Hi Norbert Pillar uses Mustache: it generate a json file and take the template and ask mustache to do the inlining. Now I just hate the idea that we have objects that we should save in file to produce other files... Do you know if we could use mustache directly: i.e., get the text from object,

Re: [Pharo-users] Pharo 6

2017-05-25 Thread p...@highoctane.be
Yeah, lots of red on the Jenkins and strange behavior on the ubuntu 16 linux it seems. Any statuspage to know what is going on? Phil On Thu, May 25, 2017 at 2:00 PM, Stephane Ducasse wrote: > We got instability with the jenkins server and we open a welcome window >

Re: [Pharo-users] A benchmarking package or lib ?

2017-05-25 Thread Steven Costiou
Thank you all for your answers :) I will have a look into all that :) Steven.

Re: [Pharo-users] A benchmarking package or lib ?

2017-05-25 Thread Ben Coman
On Thu, May 25, 2017 at 6:51 PM, Steven Costiou wrote: > Hi, > > is there any benchmark library for Pharo ? that would provide tools to > choose metrics to measure between two versions of the same code and maybe > display a comparison or something (whatever the form of

Re: [Pharo-users] A benchmarking package or lib ?

2017-05-25 Thread p...@highoctane.be
You can do things like: MessageTally spyOn: [ 1 to: 1000 do: [ :i | i primeFactors logCr ] ]. or AndreasSystemProfiler spyOn: [ 1 to: 1000 do: [ :i | i primeFactors logCr ] ]. See https://www.youtube.com/watch?v=aiA8GblEw00 or [ 1000 primeFactors ] benchFor: 5 seconds --> "a

Re: [Pharo-users] Renamed instance attribute by code

2017-05-25 Thread Stephane Ducasse
Hilaire Do you have a repeatable case? A test? can you open a bug entry? Because gustavos is working on improving the refactorings. Stef On Tue, May 23, 2017 at 4:46 PM, Hilaire wrote: > Indeed. > > Not so funnily, it breaks the class definition of those using traits :( >

Re: [Pharo-users] A benchmarking package or lib ?

2017-05-25 Thread Stephane Ducasse
Check Smark and clement and vm guys has a lot of benchmarks On Thu, May 25, 2017 at 12:51 PM, Steven Costiou wrote: > Hi, > > is there any benchmark library for Pharo ? that would provide tools to > choose metrics to measure between two versions of the same code and

Re: [Pharo-users] Pharo 6

2017-05-25 Thread Stephane Ducasse
We got instability with the jenkins server and we open a welcome window and this got unexpected side effect and pharodays arrived and we prefer to take the time and be cool and release one time instead of release and get problems and be forced to rerelease. So we will probably release end of next

[Pharo-users] A benchmarking package or lib ?

2017-05-25 Thread Steven Costiou
Hi, is there any benchmark library for Pharo ? that would provide tools to choose metrics to measure between two versions of the same code and maybe display a comparison or something (whatever the form of the report) ? I've found BenchmarkResult in Pharo but it seems very basic, at least there

[Pharo-users] Pharo 6

2017-05-25 Thread Norbert Hartl
What happened to Pharo 6. Postponing is understandable while not dropping a note about it, is not. What is the next best release date? Or did I just miss something? Norbert

Re: [Pharo-users] How to add a contextual menu to a Spec ListModel

2017-05-25 Thread Stephan Eggermont
On 24/05/17 11:58, Nicolai Hess wrote: It is a problem or at least confusing that the menu: method does not uses a MenuModel, but a Morphic menu. Yes. That is a bug. Stephan

Re: [Pharo-users] How to use uFFI with String

2017-05-25 Thread Stephane Ducasse
Did you read the UFFI chapter? https://ci.inria.fr/pharo-contribution/view/Books/job/PharoBookWorkInProgress/174/artifact/book-result/UnifiedFFI/UnifiedFFI.pdf https://ci.inria.fr/pharo-contribution/view/Books/job/PharoBookWorkInProgress/174/artifact/book-result/UnifiedFFI/ I'm turning it

Re: [Pharo-users] How to query a JSON

2017-05-25 Thread Stephane Ducasse
mark what you can also do is to generate the classes from the json we did that for certain libraries. Stef On Wed, May 24, 2017 at 4:20 PM, Marc Hanisch via Pharo-users < pharo-users@lists.pharo.org> wrote: > > > -- Forwarded message -- > From: Marc Hanisch