Re: [Pharo-dev] I am stuck ProfStef

2017-02-05 Thread Dimitris Chloupis
Do not hit yourself too hard, this is why we are here to help you so we are glad you asked. Most people are afraid to ask questions. Also this mailing list is for discussing developing of Pharo , use the Pharo-Users mailing list which is for the users because its more active and you will get your

Re: [Pharo-dev] Pharo 6 update catalog entries

2017-02-05 Thread Dimitris Chloupis
The release what marked #common with the initial intention to make it compatible with Squeak too since it relies only on Morphic but I never actually bothered testing it, I have marked it #pharo now and it seems to install fine on my end. I see little reason to support individual pharo versions be

[Pharo-dev] shallowCopy problem on 64 bit Pharo ?

2017-02-05 Thread Ciprian Teodorov
Hi all, I'm very happy to see that the 64 bit Pharo vm is progressing. I've even managed to get a ~6.85 GB heap allocated (see http://bit.ly/2lbp8n6). This is great! There seems however to be a small problem with the #shallowCopy message, which is 2.63 times slower on the 64bit VM (image/vm detai

Re: [Pharo-dev] shallowCopy problem on 64 bit Pharo ?

2017-02-05 Thread stepharong
Hi Cip Cool to see you trying the 64 bits :) Your feedback and cases are really nice for Pharo. Stef Hi all, I'm very happy to see that the 64 bit Pharo vm is progressing. I've even managed to get a ~6.85 GB heap allocated (see http://bit.ly/2lbp8n6). This is great! There seems however t

[Pharo-dev] How can I create a trivial "spinner" etc, to see if image is busy?

2017-02-05 Thread Yuriy Tymchuk
Hi all, is there an easy was to do some thing that is constantly changing? so if my image freezes (to export a 1gb ston file for example) I can see when it’s done. Or maybe there is a way to send a mac notification from Pharo? Cheers. Uko

[Pharo-dev] Seamless Error in GT-Inspector

2017-02-05 Thread Sean P. DeNigris
DoIt and Go: `remoteSmalltalk at: #Transcript.` In right pane: `self open` -> "MessageNotUnderstood: SeamlessRemoteClassCompilationContext>>requestorScopeClass" - Cheers, Sean -- View this message in context: http://forum.world.st/Seamless-Error-in-GT-Inspector-tp4933050.html Sent from the

Re: [Pharo-dev] Seamless Error in GT-Inspector

2017-02-05 Thread Denis Kudriashov
Hi Sean. What Pharo you use? 2017-02-05 17:36 GMT+01:00 Sean P. DeNigris : > DoIt and Go: `remoteSmalltalk at: #Transcript.` > In right pane: `self open` > -> "MessageNotUnderstood: > SeamlessRemoteClassCompilationContext>>requestorScopeClass" > > > > - > Cheers, > Sean > -- > View this mess

Re: [Pharo-dev] PharoLauncher Hanging

2017-02-05 Thread Sean P. DeNigris
Sean P. DeNigris wrote > I just had Launcher hang (Mac's spinning beach ball of death) twice in a > row after launching a 5.0 image with "quit on launch" disabled. Still happening fairly regularly. Pretty disruptive. I can't discern a particular pattern. No Debug log or crash dump. I leave "quit o

Re: [Pharo-dev] Seamless Error in GT-Inspector

2017-02-05 Thread Denis Kudriashov
Just check in latest Pharo 6. It works 2017-02-05 18:55 GMT+01:00 Denis Kudriashov : > Hi Sean. > > What Pharo you use? > > 2017-02-05 17:36 GMT+01:00 Sean P. DeNigris : > >> DoIt and Go: `remoteSmalltalk at: #Transcript.` >> In right pane: `self open` >> -> "MessageNotUnderstood: >> SeamlessRemo

Re: [Pharo-dev] How can I create a trivial "spinner" etc, to see if image is busy?

2017-02-05 Thread Henrik Nergaard
http://smalltalkhub.com/#!/~Latsabben/GafletFremgangFremviser - | ston file| ston := (1 to: 30) flatCollect: [:ix |STON toStringPretty: Smalltalk allClasses]. file := (FileStream fileNamed: 'file.ston'). ston whileDisplayingProgress action: [ :stream | file nextPutAl

Re: [Pharo-dev] How can I create a trivial "spinner" etc, to see if image is busy?

2017-02-05 Thread Sven Van Caekenberghe
A bit off topic, but I would do the STON writing as follows: [ (FileLocator temp / 'file.ston') writeStreamDo: [ :out | (STON writer on: out) in: [ :stonWriter | 30 timesRepeat: [ stonWriter nextPut: Smalltalk allClasses ] ] ]. ] timeToRun. "0:00:00:02.176" But in light of alternativ

Re: [Pharo-dev] How can I create a trivial "spinner" etc, to see if image is busy?

2017-02-05 Thread Yuriy Tymchuk
This is a really nice solution for STON, thank you! But in general terms, imagine I have some task and it’s not the trivial to add a progress bar. I could spawn a string morph and make circle the digits with some interval, but maybe there is something easier. For example Kommiter had a spinner

Re: [Pharo-dev] How can I create a trivial "spinner" etc, to see if image is busy?

2017-02-05 Thread Sven Van Caekenberghe
You could also have a look at ZnClientTests>>#testProgress where Notification are used, try the example in the comment. But that is probably not what you are looking for. > On 5 Feb 2017, at 20:32, Yuriy Tymchuk wrote: > > This is a really nice solution for STON, thank you! > > But in general

Re: [Pharo-dev] How can I create a trivial "spinner" etc, to see if image is busy?

2017-02-05 Thread Henrik Nergaard
You can create a morph that steps until the process is terminated. Attached is an example class: StepForProcessMorph new process: [ 10 seconds asDelay wait ]; extent: 200 asPoint; openCenteredInWorld Best regards, Henrik -Op

Re: [Pharo-dev] How can I create a trivial "spinner" etc, to see if image is busy?

2017-02-05 Thread p...@highoctane.be
In the base image Smalltalk allClasses do:[:aClass| (Delay forMilliseconds: 1) wait] displayingProgress:[:aClass| 'Processing ', aClass name]. Phil On Sun, Feb 5, 2017 at 7:16 PM, Henrik Nergaard wrote: > http://smalltalkhub.com/#!/~Latsabben/GafletFremgangFremviser > > - >

Re: [Pharo-dev] How can I create a trivial "spinner" etc, to see if image is busy?

2017-02-05 Thread p...@highoctane.be
Maybe time to resurrect the AnimatedImageMorph that can load an animated gif... http://magaloma.seasidehosting.st/MorphExamplesAndDemos http://smalltalkhub.com/#!/~PharoExtras/MorphExamplesAndDemos Phil On Sun, Feb 5, 2017 at 8:32 PM, Yuriy Tymchuk wrote: > This is a really nice solution for

[Pharo-dev] [QA] quality assurance

2017-02-05 Thread Hilaire
Hi, I discussed briefly with Steph about QA team and dedicated mailing list. He proposed to just use the @devel list with an appropriate [QA] tag, so every one can participate or just discard the topic without too much noise. I will post here about glitches I see in the UI, then depending on the

Re: [Pharo-dev] How can I create a trivial "spinner" etc, to see if image is busy?

2017-02-05 Thread Dimitris Chloupis
Fork can be used to avoid freezing issues unless of course they are caused by the VM. VM usually prefer to crash. I have used fork once to load a very glitchy package when StHub was misbeheaving. You do not need a spinner in this case because you can keep using the image. But if you want to find

Re: [Pharo-dev] How can I create a trivial "spinner" etc, to see if image is busy?

2017-02-05 Thread Henrik Nergaard
Yes, but that will block the UI. The progress bar update (world rendering) is done by force using “self currentWorld displayWorld”, which also means that if the #do:displayingProgress: is forked there will be more than one UI rendering at the same time. Open a window, evaluate the script below,

Re: [Pharo-dev] How can I create a trivial "spinner" etc, to see if image is busy?

2017-02-05 Thread Yuriy Tymchuk
Hey guys, thanks for all the replies, I know there there are many ways to do it right, but I don’t have time to do a nice implementation because I want to see if I can hack something out of the data that I have and so I just need a way to see whether my image is busy. This did a job for me (and

Re: [Pharo-dev] PharoLauncher Hanging

2017-02-05 Thread Ben Coman
On Mon, Feb 6, 2017 at 1:52 AM, Sean P. DeNigris wrote: > Sean P. DeNigris wrote >> I just had Launcher hang (Mac's spinning beach ball of death) twice in a >> row after launching a 5.0 image with "quit on launch" disabled. > > Still happening fairly regularly. Pretty disruptive. I can't discern a

Re: [Pharo-dev] [QA] quality assurance

2017-02-05 Thread Ben Coman
On Mon, Feb 6, 2017 at 4:51 AM, Hilaire wrote: > Hi, > > I discussed briefly with Steph about QA team and dedicated mailing list. > He proposed to just use the @devel list with an appropriate [QA] tag, so > every one can participate or just discard the topic without too much noise. That seems app

Re: [Pharo-dev] [QA] quality assurance

2017-02-05 Thread serge . stinckwich
Great ! Thank you Hilaire. I will help when I'm free. Envoyé de mon iPhone > Le 6 févr. 2017 à 00:38, Ben Coman a écrit : > >> On Mon, Feb 6, 2017 at 4:51 AM, Hilaire wrote: >> Hi, >> >> I discussed briefly with Steph about QA team and dedicated mailing list. >> He proposed to just use the @d