Re: [Pharo-dev] Instructions for Pharo 6 64bits

2016-11-05 Thread Esteban Lorenzano
this is more a question for vm-dev list I think. I have not idea on how to overcome this problem… doesn’t look very possible, thinking in general. Maybe in freebsd (who I also do not know at all) there is another way to change limits? also, I think itimer could be less efficient, but should be p

[Pharo-dev] [pharo-project/pharo-core] 5ac041: 60281

2016-11-05 Thread GitHub
Branch: refs/heads/6.0 Home: https://github.com/pharo-project/pharo-core Commit: 5ac0416ed4c7f6ff27d8771fad45afd4220b6692 https://github.com/pharo-project/pharo-core/commit/5ac0416ed4c7f6ff27d8771fad45afd4220b6692 Author: Jenkins Build Server Date: 2016-11-05 (Sat, 05 Nov 2016

[Pharo-dev] [pharo-project/pharo-core]

2016-11-05 Thread GitHub
Branch: refs/tags/60281 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core]

2016-11-05 Thread GitHub
Branch: refs/tags/60282 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core] 189d2e: 60282

2016-11-05 Thread GitHub
Branch: refs/heads/6.0 Home: https://github.com/pharo-project/pharo-core Commit: 189d2e1cd910e3d24861d6baf50c05acde27207c https://github.com/pharo-project/pharo-core/commit/189d2e1cd910e3d24861d6baf50c05acde27207c Author: Jenkins Build Server Date: 2016-11-05 (Sat, 05 Nov 2016

Re: [Pharo-dev] Instructions for Pharo 6 64bits

2016-11-05 Thread Jan van de Sandt
Hi, With the latest 64bits VM (201611042126) and image (60282) UFFI is also looking good. I'm testing a small library of mine [1] to interface with LMDB [1], a memory mapped key-value database. Almost all tests are green. This is great progress! I only ran into one issue, a PrimitiveFailed error

Re: [Pharo-dev] Instructions for Pharo 6 64bits

2016-11-05 Thread Thierry Goubier
Le 05/11/2016 à 12:12, Jan van de Sandt a écrit : Hi, With the latest 64bits VM (201611042126) and image (60282) UFFI is also looking good. I'm testing a small library of mine [1] to interface with LMDB [1], a memory mapped key-value database. Almost all tests are green. This is great progress!

Re: [Pharo-dev] Instructions for Pharo 6 64bits

2016-11-05 Thread Sven Van Caekenberghe
Wow, this LMDB thing seems pretty cool. Actually, it sounds as if there are no downsides. What are the limitations ? > On 5 Nov 2016, at 12:12, Jan van de Sandt wrote: > > Hi, > > With the latest 64bits VM (201611042126) and image (60282) UFFI is also > looking good. I'm testing a small libr

Re: [Pharo-dev] Keyboard list item navigation in Sender browser is strange

2016-11-05 Thread stepharo
Denis showed me that this is the normal behavior since the list indicates where the mouse is. Le 3/11/16 à 21:54, stepharo a écrit : Hi guys If I click on an item in the message browser. The previous item gets deselected and the new one selected. Now if I use arrows, the previous items is

Re: [Pharo-dev] pillar highlight text in code

2016-11-05 Thread stepharo
Yes I should fix them. Le 3/11/16 à 23:52, Nicolai Hess a écrit : 2016-11-03 23:50 GMT+01:00 Nicolai Hess >: Can we highlight a piece of code? In the updated PBE (Reflection chapter) there is the text: "Change the definition of Integer>>>factorial

Re: [Pharo-dev] Instructions for Pharo 6 64bits

2016-11-05 Thread Jan van de Sandt
Hi, The only thing I had to do was to regenerate the accessors of the structure classes MDBValue and MDBStat. The offsets for the fields are different on 32 versus 64 bit systems. Perhaps we can think of a way to generate the field accessors of structure classes such that they work in both environ

Re: [Pharo-dev] Instructions for Pharo 6 64bits

2016-11-05 Thread Jan van de Sandt
Hi Sven, LMDB is a lean, mean and very fast storage engine. One limitation is that you need a 64bit proces before you can store more than 2GB of data. That was a downside for me until very recently :-) LMDB is a low level key-value storage engine that runs on a single host. But if that is what yo

Re: [Pharo-dev] pillar highlight text in code

2016-11-05 Thread Nicolai Hess
2016-11-05 13:41 GMT+01:00 stepharo : > Yes I should fix them. > > > Are you working on this right now? Otherwise I can do it too. And I was about to create new screenshots for that chapter. Just tell if you would need them or if you are about to change them yourself. > > Le 3/11/16 à 23:52, Ni

Re: [Pharo-dev] roundTo: strange behavior

2016-11-05 Thread werner kassens
Hi, fwiw when i redid that #testIfCompletelyBroken i noticed a sort of bug in that new #round: - well, i think its a feature -, but i should probably mention it nevertheless: 1.15 round:1. "1.1""down" 1.25 round:1. "1.3""up" 1.35 round:1. "1.4""up" 1.45 round:1. "1.4""down" 1.55

Re: [Pharo-dev] Instructions for Pharo 6 64bits

2016-11-05 Thread Esteban Lorenzano
> On 5 Nov 2016, at 12:27, Thierry Goubier wrote: > > Le 05/11/2016 à 12:12, Jan van de Sandt a écrit : >> Hi, >> >> With the latest 64bits VM (201611042126) and image (60282) UFFI is also >> looking good. I'm testing a small library of mine [1] to interface with >> LMDB [1], a memory mapped ke

Re: [Pharo-dev] Instructions for Pharo 6 64bits

2016-11-05 Thread stepharo
Hi jan will you contact to add Pharo to the list of languages because this is good for us to be in this list. Stef Le 5/11/16 à 13:55, Jan van de Sandt a écrit : Hi Sven, LMDB is a lean, mean and very fast storage engine. One limitation is that you need a 64bit proces before you can sto

[Pharo-dev] Newbie(ish) Question on SVG with Athens / Roassal / Spec

2016-11-05 Thread Graham McLeod
Hi I am contemplating moving an old Pharo app (1.4 vintage) which used Morphic heavily into the new Pharo world (Pharo 5). One of the options is to move a proprietary vector graphic implementation which draws symbols to SVG. Looking for examples / documentation on the use of SVG (external fil

Re: [Pharo-dev] Instructions for Pharo 6 64bits

2016-11-05 Thread Jan van de Sandt
Hi Esteban, Instantiations is also busy porting their VM to 64bits. They have already created a new API for OStructures so that the offsets are re calculated based on the platform alignment rules and the VM type [1]. I know Pharo is open source and VA Smalltalk is not. But a bit of cooperation sh

Re: [Pharo-dev] Instructions for Pharo 6 64bits

2016-11-05 Thread Thierry Goubier
Le 05/11/2016 à 15:10, Esteban Lorenzano a écrit : On 5 Nov 2016, at 12:27, Thierry Goubier wrote: Le 05/11/2016 à 12:12, Jan van de Sandt a écrit : Hi, With the latest 64bits VM (201611042126) and image (60282) UFFI is also looking good. I'm testing a small library of mine [1] to interface

Re: [Pharo-dev] Newbie(ish) Question on SVG with Athens / Roassal / Spec

2016-11-05 Thread stepharo
Hi Graham Hi I am contemplating moving an old Pharo app (1.4 vintage) which used Morphic heavily into the new Pharo world (Pharo 5). One of the options is to move a proprietary vector graphic implementation which draws symbols to SVG. Looking for examples / documentation on the use of SVG

[Pharo-dev] why sparta depends on Taskit?

2016-11-05 Thread stepharo
why sparta depends on Taskit? Since I cannot load it I cannot try to understand. I find strange that a graphical canvas depends on a concurrent task management system. I tried to follow the instruction given by glenn and it failed. So so far I could not see any recent versions of Bloc. I d

Re: [Pharo-dev] Instructions for Pharo 6 64bits

2016-11-05 Thread Paul DeBruicker
I never got around to it resurrecting it (I don't have the skill, yet (ever?) ;) ) but there is the BerkeleyDbPlugin which should be portable to LMDB here: https://github.com/pdebruic/BerkeleyDBPlugin Jan van de Sandt wrote > Hi, > > With the latest 64bits VM (201611042126) and image (60282

Re: [Pharo-dev] Instructions for Pharo 6 64bits

2016-11-05 Thread Eliot Miranda
Hi Petr, > On Nov 4, 2016, at 3:56 PM, Petr Fischer wrote: > > Also on FreeBSD, there is no security/limits config, so on FreeBSD, I am not > able to run heartbeat VM as normal user at all :( > > Ins't there any other solution? Why "realtime" threads? There's nothing special about the heartbe

Re: [Pharo-dev] roundTo: strange behavior

2016-11-05 Thread Martin McClure
On 11/05/2016 06:17 AM, werner kassens wrote: Hi, fwiw when i redid that #testIfCompletelyBroken i noticed a sort of bug in that new #round: - well, i think its a feature -, but i should probably mention it nevertheless: 1.15 round:1. "1.1""down" 1.25 round:1. "1.3""up" 1.35 round:1. "