Re: [Pharo-users] [Ann] Pharo Sprint App to improve coordination during Pharo Sprints

2017-04-30 Thread Tudor Girba
Unfortunately, I could not participate. How did it go with the App? Cheers, Doru > On Apr 27, 2017, at 10:25 PM, Juraj Kubelka wrote: > > Hi, > > Marcus and I have updated the contribute page: > http://pharo.org/contribute-events > And I have just released Pharo Sprint App version 0.2.0: >

Re: [Pharo-users] Geocoder Services in Pharo?

2017-04-30 Thread Hernán Morales Durand
Hi Volkert Territorial (https://github.com/hernanmd/Territorial), is a library for geographical information retrieval. GADM is included in Territorial but is mainly for boundaries. The feature you ask for is not there yet, but if you want to try out other features or look for integration you can i

Re: [Pharo-users] PMMatrix vs Matrix

2017-04-30 Thread Ben Coman
On Mon, Apr 24, 2017 at 8:15 PM, Serge Stinckwich < serge.stinckw...@gmail.com> wrote: > Yes this what I was going to answer as well. Matrix in Pharo does not > implement the usual mathematical operators like PMMatrix. > Maybe should be rename as Array2D in order to avoid confusion in the > future

[Pharo-users] VoyageMongo questions

2017-04-30 Thread john pfersich
Has anyone tried to use VoyageMongo to connect to a MongoDB instance not on the local machine? I used the VoyageMongo from Smalltalkhub like the "Persisting Objects with Voyage" said and it looks like I had the same problem that Sabine mentioned on Discord; "Not enough space for external objects,

Re: [Pharo-users] Implement Matrix whith OrderedCollection

2017-04-30 Thread frankl1_miky
Tanks, that answer absolutely explain everting Le 30 avr. 2017 10:29 PM, "Sven Van Caekenberghe-2 [via Smalltalk]" < ml+s1294792n4945003...@n4.nabble.com> a écrit : > Because all 16 elements of the first/top ordered collection contain the > exact same element. They are all #==, the same instance/

Re: [Pharo-users] Implement Matrix whith OrderedCollection

2017-04-30 Thread Sven Van Caekenberghe
Because all 16 elements of the first/top ordered collection contain the exact same element. They are all #==, the same instance/object. If you change one, you change them all. Here is one way to create what I think you want: OrderedCollection new: 16 streamContents: [ :out | 16 timesRepeat:

[Pharo-users] Implement Matrix whith OrderedCollection

2017-04-30 Thread frankl1_miky
Hi everyone, I'm figuring out a strange behavoir with OrderedCollection. Actually I've created a matrix using OrderedCollection like this: /c := OrderedCollection new: 16 withAll: (OrderedCollection new: 16 withAll: 0). c./ But when I try to set the value at row 1 and column 2 to be 50 like this

Re: [Pharo-users] PMMatrix vs Matrix

2017-04-30 Thread frankl1_miky
Thanks for that very clear answer -- View this message in context: http://forum.world.st/PMMatrix-vs-Matrix-tp4943819p4945000.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] Process scheduling

2017-04-30 Thread raffaello . giulietti
On 30/04/17 17:01, Ben Coman wrote: > > > On Sun, Apr 30, 2017 at 10:11 PM, > wrote: > > Hi, > > I can't find a description on how ProcessorScheduler in Pharo (i.e., > Cog) is supposed to do context switches in absence of other > synchron

Re: [Pharo-users] Voyage - collecting data from Mongo

2017-04-30 Thread Sabine Manaa
Happy to help. I got this information from Udo Schneider in slack several weeks ago. As far as I know, he works on an update for several things concerning mongo but I don't know when he will release it. chrismihaylyk [via Smalltalk] schrieb am So. 30. Apr. 2017 um 16:45: > Sabine, thank you ver

Re: [Pharo-users] Pharo 6 / VM crashes

2017-04-30 Thread Ben Coman
On Sun, Apr 30, 2017 at 8:00 PM, Clément Bera wrote: > Hi, > > About the best way to help... > > A reproducible case that we (VM developers) can reproduce easily is the > best way to help. If we do not have a way to reproduce your bug, we cannot > do anything about it. The best is an image which

Re: [Pharo-users] Process scheduling

2017-04-30 Thread Ben Coman
On Sun, Apr 30, 2017 at 10:11 PM, wrote: > Hi, > > I can't find a description on how ProcessorScheduler in Pharo (i.e., > Cog) is supposed to do context switches in absence of other > synchronization points. > > Is it following the BlueBook spec? Just to recall that model, the VM, > when about to

Re: [Pharo-users] Voyage - collecting data from Mongo

2017-04-30 Thread Христина Михайлюк
Sabine, thank you very much! It's very helpful, work fine. 2017-04-30 17:09 GMT+03:00 Sabine Manaa : > Khrystyna , > > I also use a new version of mongo with authentication (but only old > version) and wired Tiger. > > I am not sure but possibly you can try to overwrite the following method > to

Re: [Pharo-users] Voyage - collecting data from Mongo

2017-04-30 Thread Sabine Manaa
Khrystyna , I also use a new version of mongo with authentication (but only old version) and wired Tiger. I am not sure but possibly you can try to overwrite the following method to fix the problem: MongoDatabase>>collections | reply names | reply := self command: {(#listCollections -> 1)} asDic

Re: [Pharo-users] Pharo 6 / VM crashes

2017-04-30 Thread volkert
ok. when the next crash happens i try to create a reproducible case and will open in case the pharo issue tracker. thanks for all the valuable work on the VM ... Volkert Am 30.04.2017 um 14:00 schrieb Clément Bera: Hi, About the best way to help... A reproducible case that we (VM developer

[Pharo-users] Process scheduling

2017-04-30 Thread raffaello . giulietti
Hi, I can't find a description on how ProcessorScheduler in Pharo (i.e., Cog) is supposed to do context switches in absence of other synchronization points. Is it following the BlueBook spec? Just to recall that model, the VM, when about to execute the current bytecode instruction of the current

Re: [Pharo-users] Pharo 6 / VM crashes

2017-04-30 Thread Esteban Lorenzano
> On 30 Apr 2017, at 13:10, Oleks wrote: > > Hello, > > The same happened to me about a week ago. Apparently, the latest 'stable' > (Feb 22) version of VR has some compactor bug which makes it crash. > > Try this: > curl get.pharo.org/60+vmLatest | bash > It should download the latest (Apr 18)

Re: [Pharo-users] Pharo 6 / VM crashes

2017-04-30 Thread volkert
Oleks, much better :-) Thank you, Volkert Am 30.04.2017 um 13:10 schrieb Oleks: Hello, The same happened to me about a week ago. Apparently, the latest 'stable' (Feb 22) version of VR has some compactor bug which makes it crash. Try this: curl get.pharo.org/60+vmLatest | bash It should downl

Re: [Pharo-users] Pharo 6 / VM crashes

2017-04-30 Thread Clément Bera
Hi, About the best way to help... A reproducible case that we (VM developers) can reproduce easily is the best way to help. If we do not have a way to reproduce your bug, we cannot do anything about it. The best is an image which crashes immediately after start-up or a do-it that reliably crash t

Re: [Pharo-users] Pharo 6 / VM crashes

2017-04-30 Thread Oleks
Hello, The same happened to me about a week ago. Apparently, the latest 'stable' (Feb 22) version of VR has some compactor bug which makes it crash. Try this: curl get.pharo.org/60+vmLatest | bash It should download the latest (Apr 18) VM, which works just fine. Oleks -- View this message in

Re: [Pharo-users] Geocoder Services in Pharo?

2017-04-30 Thread volkert
See http://catalog.pharo.org/ and search for GADM Am 30.04.2017 um 12:29 schrieb Stephane Ducasse: may be this is only for pharo40. Does it have a configurationOf? Because this is strange Stef On Sun, Apr 30, 2017 at 10:17 AM, volkert > wrote: of course :-)

Re: [Pharo-users] Voyage - collecting data from Mongo

2017-04-30 Thread Mark Rizun
> Mark > once you have a solution could you post it because I would like to add > your question to the voyage chapter. > stef > Sure thing, Stef.

Re: [Pharo-users] Dark theme and white vs. green color

2017-04-30 Thread Stephane Ducasse
I can tell you that for me the green is a lot more difficult to read because it is too saturated. During a long period I could not use the dark one because of the saturated red error color. I could just not read what was written. On Fri, Apr 28, 2017 at 6:42 PM, Juraj Kubelka wrote: > Hi, > > Wh

Re: [Pharo-users] MOOC offline download

2017-04-30 Thread Stephane Ducasse
The github folder contains just the source. Yes I will do a iso image and put it. Now it will be around 10gb. I got a script that is called starterKit that should be updated and collected all the resources to actually build the iso. I was looking for a service to produce DVD. If people want to he

Re: [Pharo-users] Geocoder Services in Pharo?

2017-04-30 Thread Stephane Ducasse
may be this is only for pharo40. Does it have a configurationOf? Because this is strange Stef On Sun, Apr 30, 2017 at 10:17 AM, volkert wrote: > of course :-) > > yes, i am trying to load the package GADM in Pharo 5, but it failed ... > :-( > > Volkert > > Am 30.04.2017 um 09:57 schrieb Stepha

Re: [Pharo-users] Voyage - collecting data from Mongo

2017-04-30 Thread Stephane Ducasse
Mark once you have a solution could you post it because I would like to add your question to the voyage chapter. stef On Sun, Apr 30, 2017 at 10:37 AM, Stephane Ducasse wrote: > mark > > what is such collection? > > Stef > > On Fri, Apr 28, 2017 at 11:04 PM, Holger Freyther > wrote: > >> >> > O

[Pharo-users] Pharo 6 / VM crashes

2017-04-30 Thread volkert
|Dear all, | |from time to time i trying the lastest Pharo 6 (curl get.pharo.org/60+vm | bash) and i am always a bit scarred about its stability. I mainly use Roassal and Athens and after a few minutes the VM crashes. The the same happens with Pharo 5, but less ofte

Re: [Pharo-users] Voyage - collecting data from Mongo

2017-04-30 Thread Христина Михайлюк
Hello, Holger! When I'm using MongoTalk in Pharo 5 and MongoDB 3.4 I can only get a list of existing databases, using command Mongo default open databases. But when I want to get some database's collection (Mongo default open databaseNamed: 'SomeDatabase') collectionAt:'SomeCollection'. it ret

Re: [Pharo-users] Voyage - collecting data from Mongo

2017-04-30 Thread Mark Rizun
I am running a Pharo3.0 image (with an older Voyage) against MongoDB 3.2. I think I am already using "WiredTiger" as database. If you can reproduce it, we can have a look. The only issue I have seen is Sabines authentication failure with more "modern" schemes. I have Pharo 6 and the newest Voyage

Re: [Pharo-users] Voyage - collecting data from Mongo

2017-04-30 Thread Holger Freyther
> On 30. Apr 2017, at 11:18, Mark Rizun wrote: > > > > Sorry, I wasn't very accurate in previous email. > Actually, my friend is using MongoTalk/Voyage, and she encountered a problem > that it is not possible to work with databases created in 3.0+ versions of > MongoDB. > Probably this is

Re: [Pharo-users] Voyage - collecting data from Mongo

2017-04-30 Thread Mark Rizun
oh? Is that written somewhere in the Voyage documentation? Sorry, I wasn't very accurate in previous email. Actually, my friend is using MongoTalk/Voyage, and she encountered a problem that it is not possible to work with databases created in 3.0+ versions of MongoDB. Probably this issue is relat

Re: [Pharo-users] Voyage - collecting data from Mongo

2017-04-30 Thread Holger Freyther
> On 30. Apr 2017, at 10:47, Mark Rizun wrote: > > Hi, Hi! > Holger, thank you, I will try your suggestion. > However, I use MongoDB 3.4, and I think that Voyage has support for only > versions under 3.0. Am I right? oh? Is that written somewhere in the Voyage documentation? The MongoDB wi

Re: [Pharo-users] Voyage - collecting data from Mongo

2017-04-30 Thread Mark Rizun
Hi, Holger, thank you, I will try your suggestion. However, I use MongoDB 3.4, and I think that Voyage has support for only versions under 3.0. Am I right? Stef, collection in mongo is a container for documents. For example, here three documents are inserted in collection "inventory": db.invento

Re: [Pharo-users] Voyage - collecting data from Mongo

2017-04-30 Thread Stephane Ducasse
mark what is such collection? Stef On Fri, Apr 28, 2017 at 11:04 PM, Holger Freyther wrote: > > > On 28. Apr 2017, at 14:27, Mark Rizun wrote: > > > > Hi, > > Hi! > > > > Is it possible to retrieve data from Mongo collection if it was not > created > > via Voyage? > > Meaning that I do not ha

Re: [Pharo-users] Geocoder Services in Pharo?

2017-04-30 Thread volkert
of course :-) yes, i am trying to load the package GADM in Pharo 5, but it failed ... :-( Volkert Am 30.04.2017 um 09:57 schrieb Stephane Ducasse: volkert Then what would be good is to code it as open-source so that people can join effort. Did you check the packages of geolocalisation dev

Re: [Pharo-users] Geocoder Services in Pharo?

2017-04-30 Thread Stephane Ducasse
volkert Then what would be good is to code it as open-source so that people can join effort. Did you check the packages of geolocalisation developed by Hernan Morales? Stef On Sat, Apr 29, 2017 at 4:18 PM, volkert wrote: > Hi Sven, > > thanks for your fast response and the snippets. I scanned t