Re: [Pharo-users] GUI Applications

2016-06-08 Thread stepharo
I agree with you this is why we worked on building Spec (still working on a new tutorial) cleaning morphic helping people to rethink the core graphics and all the stack Stef Le 6/6/16 à 20:56, sergio ruiz a écrit : It would seem to me that in order for an ecosystem to really t

Re: [Pharo-users] GUI Applications

2016-06-08 Thread stepharo
Le 6/6/16 à 22:01, sergio ruiz a écrit : yes, but i kind of want to avoid the web.. i just want something that works natively without the headaches of browser incompatibility. I also want an app to feel snappy and able to make OS calls.. me too :) On Jun 6, 2016, at 3:51 PM, Alexandre B

[Pharo-users] Enterprise Pharo ePub: The Second Pass

2016-06-08 Thread Thibault ARLOING
Hi, I reworked the Enterprise Pharo book as ePub taking into account feedbacks of the pass on first version. So, now the navigation menu is more developed and I added a cover for the book. It would be great to have new feedbacks on this version If some of you have electronic readers, it woul

[Pharo-users] Glorp / SQLite3 issue

2016-06-08 Thread Alistair Grant
Hi All, I'm working my way through some of the examples in PharoInProgress/Glorp. Adapting Pierce's code from his announcement: | workingDir dbName login session | workingDir := SmalltalkImage current imagePath asFileReference parent fullName

Re: [Pharo-users] question on message passing.

2016-06-08 Thread Sven Van Caekenberghe
Sergio, Here is my code: https://github.com/svenvc/mpdclient - the README.md should get you started. Have fun ! Sven > On 07 Jun 2016, at 22:17, sergio ruiz wrote: > >> >> I have a (almost complete) MPD client in Pharo, talks the protocol directly. >> As well as a simple web UI to control

Re: [Pharo-users] OSProcess command - non responding image when calling often

2016-06-08 Thread Sabine Manaa
Hi Thierry, all, you were right, it was not so complicated to write my own version for calling an external program based on your Github code. It worked fine on Pharo3+4 but on Pharo5 there are the locking problems described, also in your code. Until there is a decision if supporting windows in OS

Re: [Pharo-users] Enterprise Pharo ePub: The Second Pass

2016-06-08 Thread Julius Peinelt
Hi, Looks good after a (really) short look, except for the content table. At least if I open the book in iBooks on my Mac every entry for ‘Conclusion’ has the page number 19, and every ‘Getting Started’ links to page 2. Best, Julius https://wokabulary.com – Learn and

Re: [Pharo-users] GUI Applications

2016-06-08 Thread Dimitris Chloupis
Morphic is so far for me my favorite option Morphic has a lot of ugly code inside it but its by far the most powerful of all, and its not hard at all to implement your own cleaners implementations since the functionality is already there its also well tested based on a brilliant design lacks docum

Re: [Pharo-users] Smalltalkhub Admin

2016-06-08 Thread Pierce Ng
On Tue, Jun 07, 2016 at 06:42:04PM +0200, Esteban Lorenzano wrote: > Me > What happens? See screenshot I pasted in the #random channel. Pierce

Re: [Pharo-users] Glorp / SQLite3 issue

2016-06-08 Thread Pierce Ng
On Wed, Jun 08, 2016 at 09:50:41AM +0200, Alistair Grant wrote: > PharoDatabaseAccessor DefaultDriver: GlorpSQLite3Driver. > session := GlorpBookDescriptorSystem sessionForLogin: login. Listing 1.12 on page 9 of the PDF says your code is missing a line: session login. The example

Re: [Pharo-users] OSProcess command - non responding image when calling often

2016-06-08 Thread Mariano Martinez Peck
Sabine, Did you test if the one-liner (Delay delaySchedulerClass: DelayMillisecondScheduler.) fixes these lookups? Thanks On Wed, Jun 8, 2016 at 5:31 AM, Sabine Manaa wrote: > Hi Thierry, all, > > you were right, it was not so complicated to write my own version for > calling an external prog

Re: [Pharo-users] OSProcess command - non responding image when calling often

2016-06-08 Thread Sabine Manaa
Hi Mariano, yes, I tried this. It creates a non-responding image. I have to kill it. Regards Sabine 2016-06-08 15:26 GMT+02:00 Mariano Martinez Peck [via Smalltalk] < ml-node+s1294792n489992...@n4.nabble.com>: > Sabine, > > Did you test if the one-liner (Delay delaySchedulerClass: > DelayMillis

Re: [Pharo-users] OSProcess command - non responding image when calling often

2016-06-08 Thread Mariano Martinez Peck
On Wed, Jun 8, 2016 at 10:33 AM, Sabine Manaa wrote: > Hi Mariano, > > yes, I tried this. It creates a non-responding image. I have to kill it. > > Uhhh too bad :( I thought we were talking about the same issue. > Regards > Sabine > > 2016-06-08 15:26 GMT+02:00 Mariano Martinez Peck [via Sma

Re: [Pharo-users] OSProcess command - non responding image when calling often

2016-06-08 Thread Sabine Manaa
I dont understand Am Mittwoch, 8. Juni 2016 schrieb Mariano Martinez Peck [via Smalltalk] : > > > On Wed, Jun 8, 2016 at 10:33 AM, Sabine Manaa <[hidden email] > > wrote: > >> Hi Mariano, >> >> yes, I tried this. It creates a non-responding i

Re: [Pharo-users] OSProcess command - non responding image when calling often

2016-06-08 Thread Mariano Martinez Peck
As I said in a previous email I found out a bug in Pharo 5.0 related to delays. This affected OSSubprocess but could affect OSProcess as well. The workaround is setting ANOTHER kind of delay scheduler than the one that has the bug. I thought that the "locks" you were having could have been because

Re: [Pharo-users] OSProcess command - non responding image when calling often

2016-06-08 Thread Sabine Manaa
Hi Mariano, ok, now I understand. But it is not clear to me, why "Delay delaySchedulerClass: DelayMillisecondScheduler" creates the locked image in my case. With a new Pharo5 image, there is no lock. I have to find out, what is causing this locks and report this to you, I hope tomorrow. Sabine

Re: [Pharo-users] GUI Applications

2016-06-08 Thread Petr Fischer
Interesting - is possible to write app like CASE diagram editor with this phobos-XUL thing (so a lot of custom drawing to something like canvas), or it's intended rather for "form apps"? pf > You may be interested in Phobos: > https://github.com/pavel-krivanek/phobos-framework > > -- Pavel >

Re: [Pharo-users] GUI Applications

2016-06-08 Thread sergio ruiz
whoa! chronosmanager is way awesome! i am going to start using it for my task/pomodoro timer! > On Jun 8, 2016, at 7:34 AM, Dimitris Chloupis wrote: > > Its also the best solution for custom designed GUIs which is what I used for > my ChronosManager project you can find in Catalog Browser.

Re: [Pharo-users] GUI Applications

2016-06-08 Thread Pavel Krivanek
It is possible but not without JavaScript. There is (non Smalltalk) XUL based project of this type. http://pencil.evolus.vn/Features.html -- Pavel 2016-06-08 17:13 GMT+02:00 Petr Fischer : > Interesting - is possible to write app like CASE diagram editor with this > phobos-XUL thing (so a lot o

Re: [Pharo-users] question on message passing.

2016-06-08 Thread sergio ruiz
wow! on it! thanks! > On Jun 8, 2016, at 4:53 AM, Sven Van Caekenberghe wrote: > > Sergio, > > Here is my code: https://github.com/svenvc/mpdclient - the README.md should > get you started. peace, sergio photographer, journalist, visionary #BitMessage BM-NBaswViL21xqgg9STRJjaJaUoyiNe2d

Re: [Pharo-users] Glorp / SQLite3 issue

2016-06-08 Thread Alistair Grant
Hi Pierce, On Wed, Jun 08, 2016 at 09:22:10PM +0800, Pierce Ng wrote: > On Wed, Jun 08, 2016 at 09:50:41AM +0200, Alistair Grant wrote: > > PharoDatabaseAccessor DefaultDriver: GlorpSQLite3Driver. > > session := GlorpBookDescriptorSystem sessionForLogin: login. > > Listing 1.12 on page 9

Re: [Pharo-users] OSProcess command - non responding image when calling often

2016-06-08 Thread Sabine Manaa
Hi Mariano, if you take the download Image from the Pharo website, then load commandShell and then zinc from the catalog browser and then do Delay delaySchedulerClass: DelayMillisecondScheduler. and then 20 timesRepeat: [OSProcess command: ('echo "Hi there"').] Then you will get the lock. Does

Re: [Pharo-users] Glorp / SQLite3 issue

2016-06-08 Thread Alistair Grant
On Wed, Jun 08, 2016 at 07:49:13PM +0200, Alistair Grant wrote: > Hi Pierce, > > On Wed, Jun 08, 2016 at 09:22:10PM +0800, Pierce Ng wrote: > > On Wed, Jun 08, 2016 at 09:50:41AM +0200, Alistair Grant wrote: > > > PharoDatabaseAccessor DefaultDriver: GlorpSQLite3Driver. > > > session := GlorpB

Re: [Pharo-users] OSProcess command - non responding image when calling often

2016-06-08 Thread Mariano Martinez Peck
Sabine, I did not yet tested OSProcess but with OSSubprocess (in 5.0) I cannot reproduce the issue: *Polling strategy works:* Delay delaySchedulerClass: DelayMillisecondScheduler. 20 timesRepeat: [OSSUnixSubprocess new command: 'echo'; arguments: { ' }; redirectStdout; *runAndWaitPollingEvery: (

Re: [Pharo-users] OSProcess command - non responding image when calling often

2016-06-08 Thread Paul DeBruicker
Hi Sabine, I had a Pharo 5 image where running OSProcess waitForCommand:'ls' twice would lock everything up. Following Gaston's suggestion here: http://forum.world.st/Problem-with-delay-waiting-OSSubprocess-code-on-Pharo-5-0-td4895780.html#a4898158 Fixed it for me. Maybe we hit the same issu

[Pharo-users] VOMongoRepository

2016-06-08 Thread Franklin Mike
Hi every body, I'm doing the Pharo Mooc and I have a proble with Voyage. I used memory repository withoud problem and when I try to use external repository(after install MongoDB) my Pharo system stop working as it was frozen. After some days I try to run VORepositoryTest it do the same thing. I'm

Re: [Pharo-users] OSProcess command - non responding image when calling often

2016-06-08 Thread Sabine Manaa
Hi Mariano, Great, I will try this tomorrow! Regards Sabine Am Mittwoch, 8. Juni 2016 schrieb Mariano Martinez Peck [via Smalltalk] : > Sabine, > > I did not yet tested OSProcess but with OSSubprocess (in 5.0) I cannot > reproduce the issue: > > *Polling strategy works:* > > Delay delaySchedulerC

Re: [Pharo-users] Smalltalkhub Admin

2016-06-08 Thread stepharo
please post to the mailing-list. We do not have all the time to get present still having the information is important. Le 8/6/16 à 15:06, Pierce Ng a écrit : On Tue, Jun 07, 2016 at 06:42:04PM +0200, Esteban Lorenzano wrote: Me What happens? See screenshot I pasted in the #random channel.

Re: [Pharo-users] VOMongoRepository

2016-06-08 Thread Yanni Chiu
You might have to do: ConfigurationOfVoyageMongo loadBleedingEdge. ConfigurationOfMongoTalk loadBleedingEdge. to load the latest package versions. It worked for me, at the time I did it, but the bleeding edge packages are not a fixed code base. Unfortunately, the "stable" configuration has the "f

Re: [Pharo-users] Glorp / SQLite3 issue

2016-06-08 Thread stepharo
Thanks Alistair This is a great initiative. Documentation is our shared knowledge. I spent time editing the document but I do not have time and the need for glorp now. Stef Le 8/6/16 à 09:50, Alistair Grant a écrit : Hi All, I'm working my way through some of the examples in PharoInProgre

Re: [Pharo-users] Smalltalkhub Admin

2016-06-08 Thread Esteban Lorenzano
yes, but is just the connection reset problem. refreshing browser should correct it. and the amber debugger is there “by design” :P Esteban > On 08 Jun 2016, at 21:02, stepharo wrote: > > please post to the mailing-list. > > We do not have all the time to get present still having the inform

Re: [Pharo-users] GUI Applications

2016-06-08 Thread Dimitris Chloupis
Thank you Sergio I will be building a ton of new custom GUIs for Pharo for my Ephestos project which ChronosManager is part of , so this is only the beginning of testing the limitations of Morphic ;) Will keep you posted about my progress. On Wed, Jun 8, 2016 at 6:23 PM sergio ruiz wrote: > whoa

Re: [Pharo-users] question on message passing.

2016-06-08 Thread stepharo
Keep us up to date It looks like an exciting project. BTW I love the audio stuff made by sven (I did not buy because I have too many loud speakers around me) but they keep telling me that I should buy them. Stef Le 7/6/16 à 20:42, sergio ruiz a écrit : On Jun 7, 2016, at 2:36 PM, Peter U