Re: [Pharo-users] Problems to serialise object when using FileSystem memory

2015-09-01 Thread Mariano Martinez Peck
I am quickly answering without testing (I can do that tomorrow otherwise). Did you see #serializeToByteArray: ? and FLInMemoryBasicSerializationTest? This is not filesytem, but still an in-memory stream. Also, did you make sure the in memory stream of FileStream is binary and not text? Try sending

[Pharo-users] Problems to serialise object when using FileSystem memory

2015-09-01 Thread Juraj Kubelka
Hi, I am writing test case that uses following strategy: -=-=- | memory file | memory := FileSystem memory. file := memory workingDirectory / 'file.fuel'. FLSerializer serialize: {1. 2. 3} toFileNamed: file. -=-=- But it does not work because in StandardFileStream class>> #forceNewFileNamed: a

Re: [Pharo-users] Becoming good at VM development

2015-09-01 Thread stepharo
thanks esteban! I love CI. Le 1/9/15 08:37, Esteban Lorenzano a écrit : On 31 Aug 2015, at 21:41, stepharo > wrote: Hi After the effort made by igor stasenko building the VM is a lot simpler than it used to. Did you try to compile the Pharo VM on your platform? Did

Re: [Pharo-users] [ANN] Pillar 1.0.0.

2015-09-01 Thread Tudor Girba
Sounds great. I am really looking forward to using the PetitPillar parser. Cheers, Doru On Tue, Sep 1, 2015 at 3:45 PM, Ferlicot D. Cyril wrote: > Hello guys! > > I finished 5 months of internship into the RMoD team. I worked on Pillar > and I am glad to announce the version 1.0.0! > You can fi

Re: [Pharo-users] Ecstatic

2015-09-01 Thread stepharo
Le 1/9/15 18:58, Ben Coman a écrit : Hi Guille, I'm taking a look at Ecstatic, cloned from https://github.com/guillep/ecstatic (Thats a really cool name btw) Thanks I appretiate that a naitve speaker like you enjoy it because I pushed it :) I notice that ../_scripts/publish-gh-pages.sh do

Re: [Pharo-users] [ANN] Pillar 1.0.0.

2015-09-01 Thread stepharo
Thank you for your commitment. Pillar really improved! Stef Le 1/9/15 15:45, Ferlicot D. Cyril a écrit : Hello guys! I finished 5 months of internship into the RMoD team. I worked on Pillar and I am glad to announce the version 1.0.0! You can find an updated documentation of this version here

Re: [Pharo-users] Ecstatic

2015-09-01 Thread Peter Uhnák
> > [1] https://gist.github.com/cobyism/4730490 This is what Guille recommended me some time ago when I was starting with Ecstatic and that's what I'm still using. Peter

Re: [Pharo-users] Becoming good at VM development

2015-09-01 Thread Ben Coman
On Tue, Sep 1, 2015 at 9:48 PM, Esteban Lorenzano wrote: > > On 01 Sep 2015, at 15:34, Mariano Martinez Peck > wrote: > > BTW, you question is about becoming good at VM development, so actually the > compilation of the VM itself is a very very very little part of the whole > picture. > > yeah, I

[Pharo-users] Ecstatic

2015-09-01 Thread Ben Coman
Hi Guille, I'm taking a look at Ecstatic, cloned from https://github.com/guillep/ecstatic (Thats a really cool name btw) I notice that ../_scripts/publish-gh-pages.sh does some fancy footwork to push the generated site to the gh-pages branch. I wonder if the following command [1] might be simpler

Re: [Pharo-users] [Pharo-dev] [ANN] Pillar 1.0.0.

2015-09-01 Thread Sven Van Caekenberghe
> On 01 Sep 2015, at 18:13, Ferlicot D. Cyril wrote: > > Le 01/09/2015 18:08, Sven Van Caekenberghe a écrit : >> Thank you for your contributions, Cyril, we can only hope that you stick >> around. >> > > I'll spend 2 years with Synectique working with so I'll not be far :) Great ! > -- > C

Re: [Pharo-users] [Pharo-dev] [ANN] Pillar 1.0.0.

2015-09-01 Thread Ferlicot D. Cyril
Le 01/09/2015 18:08, Sven Van Caekenberghe a écrit : > Thank you for your contributions, Cyril, we can only hope that you stick > around. > I'll spend 2 years with Synectique working with so I'll not be far :) -- Cyril signature.asc Description: OpenPGP digital signature

Re: [Pharo-users] [Pharo-dev] [ANN] Pillar 1.0.0.

2015-09-01 Thread Sven Van Caekenberghe
Thank you for your contributions, Cyril, we can only hope that you stick around. > On 01 Sep 2015, at 15:45, Ferlicot D. Cyril wrote: > > Hello guys! > > I finished 5 months of internship into the RMoD team. I worked on Pillar > and I am glad to announce the version 1.0.0! > You can find an upd

Re: [Pharo-users] [Pharo-dev] [ANN] Pillar 1.0.0.

2015-09-01 Thread Damien Cassou
Ferlicot D. Cyril writes: > I finished 5 months of internship into the RMoD team. I worked on Pillar > and I am glad to announce the version 1.0.0! > You can find an updated documentation of this version here : > https://ci.inria.fr/pharo-contribution/view/Books/job/EnterprisePharoBook/lastBuild

Re: [Pharo-users] Becoming good at VM development

2015-09-01 Thread Esteban Lorenzano
> On 01 Sep 2015, at 15:34, Mariano Martinez Peck wrote: > > BTW, you question is about becoming good at VM development, so actually the > compilation of the VM itself is a very very very little part of the whole > picture. yeah, I could keep adding “very”s there ;) > > On Tue, Sep 1, 2015

[Pharo-users] [ANN] Pillar 1.0.0.

2015-09-01 Thread Ferlicot D. Cyril
Hello guys! I finished 5 months of internship into the RMoD team. I worked on Pillar and I am glad to announce the version 1.0.0! You can find an updated documentation of this version here : https://ci.inria.fr/pharo-contribution/view/Books/job/EnterprisePharoBook/lastBuild/artifact/book-result/Pi

Re: [Pharo-users] Becoming good at VM development

2015-09-01 Thread Mariano Martinez Peck
BTW, you question is about becoming good at VM development, so actually the compilation of the VM itself is a very very very little part of the whole picture. On Tue, Sep 1, 2015 at 3:37 AM, Esteban Lorenzano wrote: > > On 31 Aug 2015, at 21:41, stepharo wrote: > > Hi > After the effort made by

[Pharo-users] Flattr added to pharo.org

2015-09-01 Thread Marcus Denker
Hi, We added at Flattr button: http://pharo.org/contribute Direkt link is: https://flattr.com/thing/4606474/Pharo-Welcome-to-Pharo Marcus