[Pharo-users] Re: change process variable while process is running

2021-03-26 Thread Richard O'Keefe
Open a Playground in Pharo. Enter the following text. (((ProcessorScheduler selectors) select: [:each | each endsWith: 'Priority']) collect: [:each | {Processor perform: each. each}]) sorted: [:x :y | x first <= y first] Select it, the ctrl-i or "Inspect It" from a menu). That gives you a

[Pharo-users] Re: Connecting to a MongoDB Atlas Cluster

2021-03-26 Thread Sanjay Minni
I dont know how the Pharo Mongo Driver works but if connecting to Mongo Atlas would require a lot of exploring then could using the mongo C drivers thru uFFI or some other way be an alternative method to connect to Mongo Atlas https://docs.mongodb.com/drivers/c/ Regards Sanjay Minni wrote >