Re: [Pharo-dev] Adapting the launcher to Spur VM

2015-12-17 Thread Esteban Lorenzano
‘Pharo.image' asFileReference readStreamDo: [ :stream | (stream binary; next: 4) longAt: 1 bigEndian: false ]. > On 17 Dec 2015, at 13:26, Guillermo Polito wrote: > > I’d prefer the new API that does not use MultiByteFileStream and friends :) > > version :=

Re: [Pharo-dev] Adapting the launcher to Spur VM

2015-12-17 Thread Damien Cassou
Stephan Eggermont writes: > I've commited a PharoLauncher version that adds a setting for a spur vm > path. If you download a spur vm and point set this setting, the launcher > will start the image with the right vm is it weird if I say I love you? :-) Thank you very much

Re: [Pharo-dev] Adapting the launcher to Spur VM

2015-12-17 Thread Sven Van Caekenberghe
Make that ‘Pharo.image' asFileReference binaryReadStreamDo: [ :stream | (stream next: 4) reversed asInteger ]. > On 17 Dec 2015, at 14:28, Sven Van Caekenberghe wrote: > > ‘Pharo.image' asFileReference > binaryReadStreamDo: [ :stream | (stream next: 4) reserved asInteger ].

Re: [Pharo-dev] Adapting the launcher to Spur VM

2015-12-17 Thread Sven Van Caekenberghe
‘Pharo.image' asFileReference binaryReadStreamDo: [ :stream | (stream next: 4) reserved asInteger ]. > On 17 Dec 2015, at 14:25, Esteban Lorenzano wrote: > > ‘Pharo.image' asFileReference > readStreamDo: [ :stream | (stream binary; next: 4) longAt: 1 bigEndian:

Re: [Pharo-dev] Adapting the launcher to Spur VM

2015-12-17 Thread Stephan Eggermont
On 17-12-15 13:26, Guillermo Polito wrote: I’d prefer the new API that does not use MultiByteFileStream and friends :) version := nil. (File named: 'Pharo.image') readStreamDo: [ :stream | version := (stream next: 4) longAt: 1 bigEndian: false ]. version File isn't in the

Re: [Pharo-dev] Adapting the launcher to Spur VM

2015-12-17 Thread Stephan Eggermont
I've commited a PharoLauncher version that adds a setting for a spur vm path. If you download a spur vm and point set this setting, the launcher will start the image with the right vm Stephan

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

2015-12-17 Thread GitHub
Branch: refs/tags/50506 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core] 83deba: 50507

2015-12-17 Thread GitHub
Branch: refs/heads/5.0 Home: https://github.com/pharo-project/pharo-core Commit: 83deba4317d51c05e322ee26e3403a43621b87e8 https://github.com/pharo-project/pharo-core/commit/83deba4317d51c05e322ee26e3403a43621b87e8 Author: Jenkins Build Server Date:

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

2015-12-17 Thread GitHub
Branch: refs/tags/50507 Home: https://github.com/pharo-project/pharo-core

Re: [Pharo-dev] Adapting the launcher to Spur VM

2015-12-17 Thread Skip Lentz
> On Dec 17, 2015, at 2:27 PM, Stephan Eggermont wrote: > > I've commited a PharoLauncher version that adds a setting for a spur vm path. > If you download a spur vm and point set this setting, the launcher will start > the image with the right vm Thank you!!

Re: [Pharo-dev] [Vm-dev] OT: Convince me github is a wise choice

2015-12-17 Thread Esteban A. Maringolo
You can have your own Git infraestructure with something like GitLab Community Edition (Free) or Enterprise (Paid). The "good thing" about Github is that it gives visibility to what you do, which for Pharo/Squeak could be a big thing. If all the code in

Re: [Pharo-dev] Adapting the launcher to Spur VM

2015-12-17 Thread Eliot Miranda
Hi Stephan, I love you too ;-). Just in case you weren't aware David Lewis' ImageFormat package on http://source.squeak.org/VMMaker contains the "official" approach to image version ids and will provide you with "the official way" (tm) to test for a Spur image, including 64-bits. On Thu,

Re: [Pharo-dev] TCP server for Pharo?

2015-12-17 Thread Robert Withers
I wish i could say this can work in JacobsLadder, but it didn't work for me a few days back. Perhaps somebody else can get it to be make to work. I am sure it is possible and probable. There is much potential, thank God. best, robert On 12/17/2015 12:53 PM, Hernán Morales Durand wrote: Hi

Re: [Pharo-dev] TCP server for Pharo?

2015-12-17 Thread Hernán Morales Durand
Hi Denis, There is http://www.squeaksource.com/SocketExamples.html http://www.squeaksource.com/Net.html Last one seems a lot of interesting work. or look for #remoteTestServerTCP which was in OldSocket or Socket some time ago: remoteTestServerTCP "See remoteTestClientTCP for instructions

Re: [Pharo-dev] Are Critical Tools Becoming Too Brittle?

2015-12-17 Thread stepharo
We should integrate the Mirror package of guillermo. But he was busy and sick. Stef Le 16/12/15 23:03, Esteban A. Maringolo a écrit : Yeap, they are in the VM, I used them with the fileout you sent me. I guess Tudor was referring to the spur *image* and not the VM. The issue is already

Re: [Pharo-dev] Are Critical Tools Becoming Too Brittle?

2015-12-17 Thread Tudor Girba
Would certainly be interesting. Until mirrors come, I would still use the primitives as there are only a few places and we can adapt later on again. Cheers, Doru > On Dec 17, 2015, at 8:06 PM, stepharo wrote: > > We should integrate the Mirror package of guillermo. But he

Re: [Pharo-dev] Bugs I found during the lectures in Yaounde

2015-12-17 Thread stepharo
Thanks nicolai As you did not see even if I have a strong 5* wifi signal I do not have connexion ;( I faced also some bugs moving classes between changeset in the changesorter I really think that we should do something when a student orverwrite a class with an object Dice :=

Re: [Pharo-dev] [Vm-dev] OT: Convince me github is a wise choice

2015-12-17 Thread Nicolas Anquetil
On 17/12/2015 20:46, Peter Uhnák wrote: Ah, that's interesting. So my concern is whether github is a safe long-term bet. Specifically what is there to prevent some third party from buying github, or of github going public and the board taking the decision, or github on its own, deciding

Re: [Pharo-dev] [Vm-dev] OT: Convince me github is a wise choice

2015-12-17 Thread Esteban A. Maringolo
2015-12-17 17:08 GMT-03:00 Nicolas Anquetil : > > > On 17/12/2015 20:46, Peter Uhnák wrote: >>> >>> Ah, that's interesting. So my concern is whether github is a safe >>> long-term bet. Specifically what is there to prevent some third party from >>> buying github, or of

Re: [Pharo-dev] Adapting the launcher to Spur VM

2015-12-17 Thread Stephan Eggermont
On 17-12-15 18:21, Eliot Miranda wrote: Hi Stephan, I love you too ;-). Just in case you weren't aware David Lewis' ImageFormat package on http://source.squeak.org/VMMaker contains the "official" approach to image version ids and will provide you with "the official way" (tm) to test for a

Re: [Pharo-dev] [Vm-dev] OT: Convince me github is a wise choice

2015-12-17 Thread Dimitris Chloupis
Google is king of abandonware , they have closed down half of their software projects, Google Code was just the tip of the iceberg . The other half is close to be abandoned or at least heavily outdated. Moreover google code was crappy anyway, its close down went unnoticed. Github is nowhere

Re: [Pharo-dev] [Vm-dev] OT: Convince me github is a wise choice

2015-12-17 Thread Peter Uhnák
> Ah, that's interesting. So my concern is whether github is a safe long-term > bet. Specifically what is there to prevent some third party from buying > github, or of github going public and the board taking the decision, or > github on its own, deciding to charge for hosting, keeping the

Re: [Pharo-dev] Bugs I found during the lectures in Yaounde

2015-12-17 Thread Ben Coman
On Fri, Dec 18, 2015 at 2:54 AM, stepharo wrote: > Thanks nicolai > As you did not see even if I have a strong 5* wifi signal I do not have > connexion ;( > > I faced also some bugs moving classes between changeset in the changesorter > > I really think that we should do

Re: [Pharo-dev] [Vm-dev] VM Maker: VMMaker.oscog-eem.1609.mcz

2015-12-17 Thread Ben Coman
Fantastic! cheers -ben On Fri, Dec 18, 2015 at 3:12 AM, Eliot Miranda wrote: > > Hi All, > >the real Cog 64-bit Spur x64 VM just evaluated 3+4 correctly on Mac OS > X: > > Early days yet. This is a debug VM. The optimised VM does not yet > display the prompt. But

Re: [Pharo-dev] Adapting the launcher to Spur VM

2015-12-17 Thread Stephan Eggermont
On 17/12/15 22:04, David T. Lewis wrote: On 17-12-15 18:21, Eliot Miranda wrote: Hi Stephan, I love you too ;-). Just in case you weren't aware David Lewis' ImageFormat package on http://source.squeak.org/VMMaker contains the "official" approach to image version ids and will provide you

Re: [Pharo-dev] Adapting the launcher to Spur VM

2015-12-17 Thread David T. Lewis
> On 17-12-15 18:21, Eliot Miranda wrote: >> Hi Stephan, >> >> I love you too ;-). Just in case you weren't aware David Lewis' >> ImageFormat package on http://source.squeak.org/VMMaker contains the >> "official" approach to image version ids and will provide you with "the >> official way"

Re: [Pharo-dev] [Vm-dev] OT: Convince me github is a wise choice

2015-12-17 Thread p...@highoctane.be
Git is a DVCS. Github happens to be hosting repos, but it is just a remote that one pushes to. You can have multiple remotes and push to them. So, a project can have a couple remotes to push/pull to/from. e.g. I have a couple things going on now where one company uses github private repos and

Re: [Pharo-dev] [Vm-dev] OT: Convince me github is a wise choice

2015-12-17 Thread Ben Coman
On Fri, Dec 18, 2015 at 4:34 AM, Dimitris Chloupis wrote: > Google is king of abandonware , they have closed down half of their software > projects, Google Code was just the tip of the iceberg . The other half is > close to be abandoned or at least heavily outdated.

Re: [Pharo-dev] potential to include cryptography in base image

2015-12-17 Thread Robert Withers
What shall I do after it passes tests in 50, Sven? They all pass. I have a saved ConfigurationOfCryptography but no catalog. R's, robert On 12/15/2015 04:57 PM, Sven Van Caekenberghe wrote: Before you copy it to the 50 repo, you should test it on 50 ! On 15 Dec 2015, at 20:59, Robert

Re: [Pharo-dev] TCP server for Pharo?

2015-12-17 Thread stepharo
denis there is a chapter on socket in deep into pharo. Le 10/12/15 12:07, Denis Kudriashov a écrit : Hi. I need simple TCP server which process incoming connection in separate processes. I see Zinc ZnServer subclasses implement something like that. But I'm not sure that it is good idea to

Re: [Pharo-dev] [Vm-dev] VM Maker: VMMaker.oscog-eem.1609.mcz

2015-12-17 Thread Thierry Goubier
This is great news! Thierry Le 17/12/2015 20:12, Eliot Miranda a écrit : Hi All, the real Cog 64-bit Spur x64 VM just evaluated 3+4 correctly on Mac OS X: ​ Early days yet. This is a debug VM. The optimised VM does not yet display the prompt. But we can be confident that a 64-bit

Re: [Pharo-dev] [Vm-dev] VM Maker: VMMaker.oscog-eem.1609.mcz

2015-12-17 Thread Sven Van Caekenberghe
Can't wait esp for the 64-bit address space ;-) > On 18 Dec 2015, at 06:46, Thierry Goubier wrote: > > This is great news! > > Thierry > > Le 17/12/2015 20:12, Eliot Miranda a écrit : >> Hi All, >> >>the real Cog 64-bit Spur x64 VM just evaluated 3+4 correctly

Re: [Pharo-dev] Adapting the launcher to Spur VM

2015-12-17 Thread Damien Cassou
Guillermo Polito writes: > Hmm, usually an image file has a header that describes some meta data about > the image: version, some VM options, size of the image… > > If you load: > > Gofer it > squeaksource3: 'ImageWriter'; > package: ‘ImageWriter-Core'; >

Re: [Pharo-dev] MacroRecorder updates (+ another demo)

2015-12-17 Thread Gustavo Santos
Once you created the superclass, yes. Otherwise, there will be an error when you execute the transformation, because the superclass you indicated does not exist. On Thu, Dec 17, 2015 at 12:59 PM, Damien Cassou wrote: > Gustavo Santos writes: > > >

Re: [Pharo-dev] Adapting the launcher to Spur VM

2015-12-17 Thread Stephan Eggermont
On 17-12-15 12:53, Guillermo Polito wrote: Hmm, usually an image file has a header that describes some meta data about the image: version, some VM options, size of the image… byteStream := FileStream fileNamed: '/home/stephan/.local/share/Pharo/images/50305/50305.image'. byteStream binary.

Re: [Pharo-dev] Adapting the launcher to Spur VM

2015-12-17 Thread Guillermo Polito
I’d prefer the new API that does not use MultiByteFileStream and friends :) version := nil. (File named: 'Pharo.image') readStreamDo: [ :stream | version := (stream next: 4) longAt: 1 bigEndian: false ]. version > On 17 dic 2015, at 1:20 p.m., Stephan Eggermont wrote:

[Pharo-dev] Monkey restored: Spur migration "mostly" finished!

2015-12-17 Thread Esteban Lorenzano
Hi, So… monkey is running again! Which means you can restart send your bug reports (and bug fixes)… we are back to business! Now, time to fix the remaining problems… but you all can help! cheers, Esteban

[Pharo-dev] Adapting the launcher to Spur VM

2015-12-17 Thread Damien Cassou
Hi, from a Pharo image, can I detect if another image needs the Spur VM or not? Best -- Damien Cassou http://damiencassou.seasidehosting.st "Success is the ability to go from one failure to another without losing enthusiasm." --Winston Churchill

Re: [Pharo-dev] Adapting the launcher to Spur VM

2015-12-17 Thread Guillermo Polito
Hmm, usually an image file has a header that describes some meta data about the image: version, some VM options, size of the image… If you load: Gofer it squeaksource3: 'ImageWriter'; package: ‘ImageWriter-Core'; load. You’ll get HzCogImageFormat that describes the header. Check

Re: [Pharo-dev] MacroRecorder updates (+ another demo)

2015-12-17 Thread Damien Cassou
Gustavo Santos writes: > Hello guys, > > thanks for the support so far. I've been working on your suggestions. > > Some of them concerned that the example in the first demo video was too > "magic". :-P > So I made another video showing how the developer can manually

Re: [Pharo-dev] Fuel materialization on spur

2015-12-17 Thread Robert Withers
Phil, I just posted a new diagram that starts to show the 8th and 9th layers. The specs for events, producers and consumers, bound to named type-structure definitions ("types"), are stored at the meta and injects apps (7) into cloud execution container (8) and into type decoders in layer 5.

Re: [Pharo-dev] [Vm-dev] OT: Convince me github is a wise choice

2015-12-17 Thread Peter Uhnák
> well, googlecode closed didn't it? > and it was not a small affair either And all you needed was to click on a button and magically it was on github. But this is very different scenario to what the worry is about. When GitHub one day closes GoogleCode style, then there is nothing to worry