[Pharo-users] FileDoesNotExistException: '/.VolumeIcon.icns'

2021-06-01 Thread Davide Varvello via Pharo-users
Hi Guys Opening the File Browser on Pharo8 (and also on Pharo9) gives me FileDoesNotExistException: '/.VolumeIcon.icns' Can you help me please? Davide -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

[Pharo-users] Image crashed on Parallels

2021-06-01 Thread Davide Varvello via Pharo-users
Hi Guys, I'm running a 32bit image (Pharo5) on OSX Mojave on Parallels but unfortunately it crashes. The same image is working on my old mac with Mojave so I'm wondering what the issue is. Reading the dump file it seems a display problem but I'm not a vm expert so here is the dmp, I'm seeking

[Pharo-users] Re: voyage in singleton mode

2021-06-01 Thread Jesus Mari Aguirre
Thanks Norbert! Voyage is a great piece of software. El mar., 1 jun. 2021 11:53, Norbert Hartl escribió: > You should not have to worry. The two possible culprits are the VOCache > which should be thread safe done by a semaphore. The other one is the > connection to the database. Here the

[Pharo-users] Re: And it goes on - How do I fix a missing repository

2021-06-01 Thread Esteban Lorenzano
Hi, I am sorry, but why you need a repository to add an extension methods? To add an extension, the easiest way to open calypso and put your method in ScaledDecimal. Then you can use the menu right clicking on the method you added : The fact that you need a repository to save those changes

[Pharo-users] And it goes on - How do I fix a missing repository

2021-06-01 Thread David Pennington
I am obviously out of the loop when it comes to all of this repository stuff. So, I have imported my 8.0 code into 9.0 but I can’t add an extension method to ScaledDecimal because a repository is missing. I check what to do and get sent to Iceberg. Somehow, as a newbie, I am supposed to

[Pharo-users] Re: voyage in singleton mode

2021-06-01 Thread Norbert Hartl
You should not have to worry. The two possible culprits are the VOCache which should be thread safe done by a semaphore. The other one is the connection to the database. Here the connection pool removes that problem. Hope that answers your question. I use it just as it is in a concurrent

[Pharo-users] voyage in singleton mode

2021-06-01 Thread Jesus Mari Aguirre
Hello all, I'm developing a tepot+voyage(mongodb) web app and I have one doubt, is voyage thread safe? or do I have to take care about using a Mutex because multiple teapot instances can call it. Thank you all!