[Pharo-users] How to export critics from Critic Browser?

2017-07-30 Thread Hernán Morales Durand
Hi, I'm using Pharo 6.1 and I want to export a report of Critics Browser results. Is there a way to save the results? It would be nice to have a CSV, to record historical analysis of my progress, then plot using Roassal, etc. Cheers, Hernán

[Pharo-users] Spotter question. "Spotter" search keyword need font setting from Pharo Setting Value.

2017-07-30 Thread peter yoo
I'm korean user. pharo using mac or linux. I'm always change font setting. because want look korean characters(so simple) but can't using spotter. GLMRubTextFieldMorph font value have hard coding inside.(maybe... look a "SourceSansPro". my pharo using another font now.) spotter result is ok.

Re: [Pharo-users] Performance of zero conf install since 6.1 seems very slow?

2017-07-30 Thread Tim Mackinnon
Actually its all over the place - the times vary from seconds (like it used to work) to 5-10 mins. It’s not very reliable - so. I hope it can be fixed (although it does seem that the image download is usually the one I’ve noticed to slow down dramatically). I’m still trying to sort out some

[Pharo-users] Threads safety in Pharo

2017-07-30 Thread Alidra Abdelghani via Pharo-users
--- Begin Message --- Hi, Somebody once evoked the problem of threads safety in Pharo. With a friend of mine who is expert in formal methods and process scheduling, we would like to have a look on it. Does anyone knows a good document describing the problem of Pharo with threads safety or at

Re: [Pharo-users] Performance of zero conf install since 6.1 seems very slow?

2017-07-30 Thread Tim Mackinnon
I’m still seeing very slow download response times - so I’ve started to work on better caching Inria downloads in my build script - however in doing this, I notice that its not the VM that takes time to download (its as quick as always) its the image? e.g.

Re: [Pharo-users] Pharo Seaside RESTful services pragma question

2017-07-30 Thread Greg Hutchinson
Thanks Johan - that link looks very helpful. On 30 July 2017 at 02:21, Johan Brichau wrote: > The Seaside book REST chapter should be deprecated or changed. > > Take a look here for the updated info: https://github.com/ > SeasideSt/Seaside/wiki/Seaside-REST > > Johan > > >

Re: [Pharo-users] [Pharo-dev] [ANN] Pharo 6.1 (summer) released!

2017-07-30 Thread peter yoo
congratulation !!! 2017-07-26 0:50 GMT+09:00 Esteban Lorenzano : > > On 25 Jul 2017, at 17:29, Hilaire wrote: > > As the P6.1 change log is not complete enough I have to try out to > discover: > > - fix for PNG regression is included > > - the Athen Wrap

Re: [Pharo-users] Pharo 61 crashes on iceberg history

2017-07-30 Thread herby
Me, too. Primitive failure. 117, IIRC. On July 30, 2017 3:51:56 AM GMT+02:00, "Julián Maestri" wrote: >I'm almost sure this is not the right place to report it. > >Im having a vm crash when looking at the history of a repository on >iceberg. > >urpharo: malloc.c:2394:

Re: [Pharo-users] STON question

2017-07-30 Thread Stephane Ducasse
> First question is, why do anything at all ? > > STON toStringPretty: > > Then loading is as simple as > > STON fromString: '...' I know :) Now I wanted to overuse STON to be able to edit manually the file too. > Next step is to customise how STON output is generated (but again, why ?). >

Re: [Pharo-users] NeoJSON "conditional" parsing/mapping

2017-07-30 Thread Esteban A. Maringolo
2017-07-26 18:36 GMT-03:00 Sven Van Caekenberghe : > Esteban, > > I had a quick look at the spec you mentioned. > > I am a bit puzzled though. Result can be anything, so how are you going to > map that to specific classes (and why) ? > That would require serious prior knowledge and

Re: [Pharo-users] Looking for small boards and tiny computers which can run Pharo

2017-07-30 Thread Steven Costiou
Hi, thanks everybody for all the leads. I will look into all those :) Steven. Le 2017-07-25 19:11, Bruce O'Neel a écrit : > Hi, > > With a bit of work it probably fits on one of these: > > https://onion.io/omega2/ > > If you feel on really wasting space this would work as well, though

[Pharo-users] Pharo launcher on Linux Mint

2017-07-30 Thread Sebastian Heidbrink via Pharo-users
--- Begin Message --- Hi! I used Pharo launcher on Windows and Ubuntu before and never had any troubles. Now, I am trying to used it on Linux Mint without success. Once I start the freshly created image the appropriate VM is downloaded but the image is not started. A PharoDebug.log is

Re: [Pharo-users] STON question

2017-07-30 Thread Sven Van Caekenberghe
First question is, why do anything at all ? STON toStringPretty: Then loading is as simple as STON fromString: '...' Next step is to customise how STON output is generated (but again, why ?). You do that by writing both an #stonOn: and a #fromSton: method (look for implementors for

Re: [Pharo-users] STON question

2017-07-30 Thread Cyril Ferlicot D.
Le 30/07/2017 à 17:39, Stephane Ducasse a écrit : > Hi sven > > I'm coding with my son a game collector application :) > We want to save our collection with STON > > So far we have > > GameCollector asSTON >> > > String streamContents: [ :s | STON put: self onStreamPretty: s ] > > and we

[Pharo-users] STON question

2017-07-30 Thread Stephane Ducasse
Hi sven I'm coding with my son a game collector application :) We want to save our collection with STON So far we have GameCollector asSTON >> String streamContents: [ :s | STON put: self onStreamPretty: s ] and we get GameCollector { #items : OrderedCollection [ GameItem { #name :

Re: [Pharo-users] Iceberg and removing packages

2017-07-30 Thread Esteban A. Maringolo
I got into the pharo-local/iceberg/... and git rm'ed the directory, commited and synchronized the project in Iceberg. I hope it doesn't break anything since I don't know how much "magic" does Iceberg behind the scenes other than automating the git commands and providing a centralized UI. What is

Re: [Pharo-users] Iceberg and removing packages

2017-07-30 Thread Peter Uhnak
This was supposedly fixed in April https://github.com/pharo-vcs/iceberg/issues/317 however I had the same issue ~two months ago, so I had to delete the packages by hand. P On Sun, Jul 30, 2017 at 11:04:20AM -0300, Esteban A. Maringolo wrote: > Hi, > > I'm playing around with Iceberg in

Re: [Pharo-users] Pharo 61 crashes on iceberg history

2017-07-30 Thread Stephane Ducasse
Thanks Julian Esteban is on vacation right now. But this is the right place. Thanks again. On Sun, Jul 30, 2017 at 3:51 AM, Julián Maestri wrote: > I'm almost sure this is not the right place to report it. > > Im having a vm crash when looking at the history of a repository on

Re: [Pharo-users] Pharo Seaside RESTful services pragma question

2017-07-30 Thread Stephane Ducasse
Argh I will try to migrate it to Pillar for real. On Sun, Jul 30, 2017 at 10:21 AM, Johan Brichau wrote: > The Seaside book REST chapter should be deprecated or changed. > > Take a look here for the updated info: https://github.com/ > SeasideSt/Seaside/wiki/Seaside-REST > >

Re: [Pharo-users] Critical issues for Dr. Geo on P6

2017-07-30 Thread Stephane Ducasse
Hilaire We were discussing this with Esteban and he will do a stab at making sure that we can deploy desktop applications much easier with Pharo. Because we need it. Esteban deployed several desktop apps in the past and we should leverage this knowledge. I also wants to write this in a

Re: [Pharo-users] Critical issues for Dr. Geo on P6

2017-07-30 Thread Stephane Ducasse
+ 100 On Fri, Jul 28, 2017 at 3:25 PM, Sven Van Caekenberghe wrote: > >> On 28 Jul 2017, at 15:13, p...@highoctane.be wrote: >> >> Changing too many things at once is indeed annoying. >> >> Now, I am ready to live with that but at one point, I think that we will >> have to move to

Re: [Pharo-users] Critical issues for Dr. Geo on P6

2017-07-30 Thread Stephane Ducasse
We understand that perfectly. Now for us we get money now and may be not the same in the future. Then there are the things that - must be done and consume a lot: 64bits, uFFI, - super important to do git - also super important: cleaning and improving the system. So we pay attention for

[Pharo-users] Iceberg and removing packages

2017-07-30 Thread Esteban A. Maringolo
Hi, I'm playing around with Iceberg in Pharo 6, and even when I find the workflow streamlined, but since it doesn't map 1:1 with git workflow from other IDEs or command line, I find myself not knowing how to do certain tasks. One thing that happened is that I published a few packages to one of

[Pharo-users] Job for Spec & Roassal?

2017-07-30 Thread David Epstein
Hello, I've been reading over the documentation and want to try my first project with Pharo. The project will begin as a simple diagramming program for making logic models.

Re: [Pharo-users] Pharo Seaside RESTful services pragma question

2017-07-30 Thread Johan Brichau
The Seaside book REST chapter should be deprecated or changed. Take a look here for the updated info: https://github.com/SeasideSt/Seaside/wiki/Seaside-REST Johan > On 30 Jul 2017, at 01:46, Greg Hutchinson