[Pharo-users] (no subject)

2016-03-04 Thread john pfersich
I tried to execute curl get.pharo.org/alpha+vm | bash I executed it 8 times and it terminated after downloading the image. I finally tried curl get.pharo.org/alpha+vmLatest | bash and it worked the first time. Is there a problem with the alpha+vm script? Trying to test OSSubprocess.

Re: [Pharo-users] Using the new OSProcess still no Stdout string

2016-03-04 Thread john pfersich
You want to use waitForCommand: instead of command:, like Transcript show: (PipeableOSProcess waitForCommand: 'whoami') output command: doesn't wait for output and is useful only for commands that don't return anything. It's kind of useless for anything that returns values. I haven't tried this o

Re: [Pharo-users] PharoLauncher eventual slowdown

2016-03-04 Thread Ben Coman
On Sat, Mar 5, 2016 at 1:59 AM, Nicolai Hess wrote: > > > 2016-03-04 17:15 GMT+01:00 Ben Coman : >> >> Hi Peter, I see you had this problem 12 months ago. >> >> http://lists.pharo.org/pipermail/pharo-users_lists.pharo.org/2015-February/017026.html >> >> What you can try is in development mode, clo

Re: [Pharo-users] Understanding Slang for building a compiler to C++

2016-03-04 Thread Dimitris Chloupis
Thanks guys for the pointers, Clement I dont care about the VM my goal is not something like Slang but rather something that I will take a small piece of code in pharo lets say a few classes and convert it to C++ code that is human readable. But Esteban recommended to take a look at Slang anyway fo

Re: [Pharo-users] Making STON exportation lighter

2016-03-04 Thread Mariano Martinez Peck
Not sure which is the reason of making it lighter, but you may also want to use a compressing stream so that the resulting stream is much smaller. On Thu, Mar 3, 2016 at 2:03 PM, Cyril Ferlicot wrote: > HI, > > There is a method in the class side of Object to override. This method > return all t

Re: [Pharo-users] Understanding Slang for building a compiler to C++

2016-03-04 Thread Bernardo Ezequiel Contreras
Hi Dimitris, Pavel has extracted the code generator in this project http://smalltalkhub.com/#!/~PavelKrivanek/CCodeGenerator On Fri, Mar 4, 2016 at 9:06 AM, Dimitris Chloupis wrote: > Hey pharo experts I am interesting into studying how Slang works for > making a compiler that takes pharo cod

[Pharo-users] [Pillar] Ascii doc

2016-03-04 Thread Thibault ARLOING
Hi, Yann Dubois and me were working on an asciidoc exporter for Pillar, he is now ready and available in the development version of Pillar. We will be gratefull for any feedbacks, thanks Good evening Thibault Arloing

Re: [Pharo-users] Rubric docs

2016-03-04 Thread Alexandre Bergel
Good question. Once you have an answer, feel free to write a short Help :-) Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. > On Mar 4, 2016, at 3:50 PM, Peter Uhnák wrote: > > Hi, > > t

[Pharo-users] Rubric docs

2016-03-04 Thread Peter Uhnák
Hi, the (new) code box in Nautilus has some visual cool stuff: ​ my question is: is this documented somewhere? Can I mold it for my own purposes? Peter

Re: [Pharo-users] PharoLauncher eventual slowdown

2016-03-04 Thread Nicolai Hess
2016-03-04 17:15 GMT+01:00 Ben Coman : > Hi Peter, I see you had this problem 12 months ago. > > http://lists.pharo.org/pipermail/pharo-users_lists.pharo.org/2015-February/017026.html > > What you can try is in development mode, closing the PharoLauncher > window, nil out class variables and garba

Re: [Pharo-users] PharoLauncher eventual slowdown

2016-03-04 Thread Ben Coman
Hi Peter, I see you had this problem 12 months ago. http://lists.pharo.org/pipermail/pharo-users_lists.pharo.org/2015-February/017026.html What you can try is in development mode, closing the PharoLauncher window, nil out class variables and garbage collect, then check what instances remain of Pha

Re: [Pharo-users] Nautilus code panel unsynchronized with 4.0

2016-03-04 Thread Hilaire
Yeah I guessed so. Cool. Thanks Le 04/03/2016 16:02, Peter Uhnák a écrit : > Indeed, there's an old issue for > that > https://pharo.fogbugz.com/f/cases/13111/Browser-with-no-method-selected-does-not-follow-changes -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] Nautilus code panel unsynchronized with 4.0

2016-03-04 Thread Peter Uhnák
Indeed, there's an old issue for that https://pharo.fogbugz.com/f/cases/13111/Browser-with-no-method-selected-does-not-follow-changes On Fri, Mar 4, 2016 at 3:56 PM, Hilaire wrote: > Hello, > > I noted, twice since yesterday, Nautilus can have code panel contents > unsynchronized between two ins

Re: [Pharo-users] CDB project

2016-03-04 Thread Nicolas Berveglieri
Thx a lot thats exactly what we wanted ! Nicolas. B 2016-03-04 15:49 GMT+01:00 Sven Van Caekenberghe : > I am not sure I understand the question correctly, but the closest > equivalent in Pharo is > > readInto: collection startingAt: offset count: requestedCount > "Read requestedCount elements

Re: [Pharo-users] CDB project

2016-03-04 Thread Sven Van Caekenberghe
I am not sure I understand the question correctly, but the closest equivalent in Pharo is readInto: collection startingAt: offset count: requestedCount "Read requestedCount elements into collection starting at offset, returning the number of elements read, there could be less elements avail

[Pharo-users] Nautilus code panel unsynchronized with 4.0

2016-03-04 Thread Hilaire
Hello, I noted, twice since yesterday, Nautilus can have code panel contents unsynchronized between two instances of itself: - two nautilus windows on the same class - edit a method in window 1 - look at the modified method on window 2, it is the old code Hilaire -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] CDB project

2016-03-04 Thread Nicolas Berveglieri
Hello, we're looking for a function similar to the function read, having this prototype: public int read(byte[] b, int off, int len) throws IOException (found there: https://docs.oracle.com/javase/7/docs/

[Pharo-users] Using the new OSProcess still no Stdout string

2016-03-04 Thread Dimitris Chloupis
I once reported a bug for OSProcess on MacOS https://pharo.fogbugz.com/f/cases/16944/OSProcess-stdout-is-not-returned-back-to-pharo Still experience the same problem, is this suppose to be fixed with new OSProcess ?

[Pharo-users] Understanding Slang for building a compiler to C++

2016-03-04 Thread Dimitris Chloupis
Hey pharo experts I am interesting into studying how Slang works for making a compiler that takes pharo code and turns it to C++ code, my questions is where to find Slang , how to extract the code that compiles Slang to C and study it as an example for making my own compiler for C++.

Re: [Pharo-users] [Pharo-dev] Call about Numerical Methods in Pharo :)

2016-03-04 Thread Alexandre Bergel
> Great list ! At the moment, there is only Kolmogorov-Smirnov test implemented. I am not sure when this tests has to be applied. > Can you create issues in the SciSmalltalk issue tracker in order to > keep track of your needs ? > The issue tracker is here: > https://github.com/SergeStinckwich/S

Re: [Pharo-users] PharoLauncher eventual slowdown

2016-03-04 Thread Peter Uhnák
Yeah I saw that when he was in Prague (incidentally that's where my launcher slowdown started :)). I've removed write access and will report back in couple of days. :) Thanks, Peter On Fri, Mar 4, 2016 at 11:24 AM, Damien Cassou wrote: > Hi Peter, > > Peter Uhnák writes: > > I've been using P

Re: [Pharo-users] PharoLauncher eventual slowdown

2016-03-04 Thread Damien Cassou
Hi Peter, Peter Uhnák writes: > I've been using Pharo Launcher for quite a while and problem that I am > constantly encountering is that launching of it becomes slower and > slower. Stéphane, in CC, reported the same months ago on OS X. I don't know if Stéphane still experiences the problem. Cou

Re: [Pharo-users] [Pharo-dev] Who is using Pharo Launcher and for what

2016-03-04 Thread Laurent
Hi, PharoLauncher is my main entry point for creating / managing / launching Pharo images. I work at AFI and use Pharo for application monitoring & Redmine bug tracker analysis. Laurent Le sam. 20 févr. 2016 à 11:49, Damien Cassou a écrit : For my CV, I need to know who is using the stuff