Re: [Pharo-users] tonel how to

2017-11-30 Thread Juraj Kubelka
Hi Hilaire, I have been playing with it recently. There is my exercise: myClass := MyDemo. myClassName := MyDemo name. snapshot := (MCPackage new name: myClass package name) snapshot. memory := FileSystem memory. writer := TonelWriter on: memory root. writer writeSnapshot: snapshot. "Remove pack

Re: [Pharo-users] How to write a little REPL

2017-11-30 Thread Todd Blanchard
Ian Piumarta wrote an XTerm in Squeak a long time ago. No idea if it is still viable. > On Nov 30, 2017, at 10:41 AM, Alistair Grant wrote: > > On 29 November 2017 at 21:14, Stephane Ducasse > wrote: >> On Tue, Nov 28, 2017 at 9:35 AM, Alistair Grant >> wrote: >>> On 28 November 2017 at 08:

Re: [Pharo-users] How to write a little REPL

2017-11-30 Thread Alistair Grant
On 29 November 2017 at 21:14, Stephane Ducasse wrote: > On Tue, Nov 28, 2017 at 9:35 AM, Alistair Grant wrote: >> On 28 November 2017 at 08:18, Stephane Ducasse >> wrote: >>> Sorry I wanted to have it in pharo :) >> >> Are you talking about having a terminal inside Pharo? > > Yes I'm having fun

[Pharo-users] tonel how to

2017-11-30 Thread Hilaire
Hi, How can I use tonel to load code located in the host filesystem? Thanks Hilaire -- Dr. Geo http://drgeo.eu

[Pharo-users] The Advent Of Code 2017

2017-11-30 Thread Julien
Hello, Tomorrow starts the Advent Of Code 2017 [1] which consists in 2x programming puzzles per day from the 1st December to the 25th. I created a GitHub repository [2] to collect code snippets around the solutions of the Pharo community (more details in the README). I think these programming

Re: [Pharo-users] I love the launcher!!!!

2017-11-30 Thread Dimitris Chloupis
Unless we talk about a diffident launcher I am not aware of. Pharo launcher is both a GUI last time I checked and loadable inside any image. So technically speaking you don’t need neither the GUI nor the command line. You can fully integrate it and automate it with your own project and then publish

Re: [Pharo-users] ZIPArchive usage + FileSystem memory

2017-11-30 Thread Juraj Kubelka
Thank you Guillermo. I see that you already assigned the case https://pharo.fogbugz.com/f/cases/20253/MemoryFileSysteFile-shuold-return-a-MultiByteFileStream-as-readStream Cheers, Juraj > On Nov 30, 2017, at 06:10, Guillermo Polito wrote: > > Hi Juraj, > > The file streams opened in a memor

Re: [Pharo-users] [Pharo-dev] [ANN] files.pharo.org server move tomorrow, Nov 30

2017-11-30 Thread Marcus Denker
Ok, it seems that was temporary. > On 30 Nov 2017, at 11:53, Marcus Denker wrote: > > And now we have the problem that the hosting backend stopped working > > Error 503: Backend unavailable > > We are checking what the reason is. > >> On 30 Nov 2017, at 11:34, Marcus Denker wrote: >> >> Ok

Re: [Pharo-users] [Pharo-dev] [ANN] files.pharo.org server move tomorrow, Nov 30

2017-11-30 Thread Marcus Denker
And now we have the problem that the hosting backend stopped working Error 503: Backend unavailable We are checking what the reason is. > On 30 Nov 2017, at 11:34, Marcus Denker wrote: > > Ok, and the last one: > > http://udpates.pharo.org > > The next step is to fix all the uploaders. > >

Re: [Pharo-users] [Pharo-dev] [ANN] files.pharo.org server move tomorrow, Nov 30

2017-11-30 Thread Marcus Denker
Ok, and the last one: http://udpates.pharo.org The next step is to fix all the uploaders. This is, I think: -> Pharo6 build updates: https://ci.inria.fr/pharo/job/Pharo-6.0-Update-Step-4-Release/configure images: https://ci.inria.fr/pharo/job/Pharo-6

Re: [Pharo-users] [Pharo-dev] [ANN] files.pharo.org server move tomorrow, Nov 30

2017-11-30 Thread Marcus Denker
> On 30 Nov 2017, at 10:52, Marcus Denker wrote: > > … report: > > Move done: > > > http://books.pharo.org > http://lectures.pharo.org > http://mooc.pharo.org > > https certificates are in creation, too. > > Ongoing: > > get > files > updates > > get: here the problem is that the files g

Re: [Pharo-users] [Pharo-dev] [ANN] files.pharo.org server move tomorrow, Nov 30

2017-11-30 Thread Marcus Denker
… report: Move done: http://books.pharo.org http://lectures.pharo.org http://mooc.pharo.org https certificates are in creation, too. Ongoing: get files updates get: here the problem is that the files get-files on files.pharo.org uses lots o

Re: [Pharo-users] [ANN] files.pharo.org server move tomorrow, Nov 30

2017-11-30 Thread Marcus Denker
We are doing the switch now. > On 29 Nov 2017, at 16:28, Marcus Denker wrote: > > Hi, > > We will do the switch to the new server tomorrow, Nov 30. > > -> for people downloading, there should be no service intererruption > -> For *uploaders* (mostly CI jobs), you need new SSH credentials. >

Re: [Pharo-users] ZIPArchive usage + FileSystem memory

2017-11-30 Thread Cyril Ferlicot
On Thu, Nov 30, 2017 at 10:10 AM, Guillermo Polito < guillermopol...@gmail.com> wrote: > Hi Juraj, > > The file streams opened in a memory file system are not polymorphic with > the ones in a disk file system :(. > > Can you open an issue and assing it to me? I'll work soon on making all of > them

Re: [Pharo-users] ZIPArchive usage + FileSystem memory

2017-11-30 Thread Guillermo Polito
Hi Juraj, The file streams opened in a memory file system are not polymorphic with the ones in a disk file system :(. Can you open an issue and assing it to me? I'll work soon on making all of them work and yield binary streams. On Wed, Nov 29, 2017 at 9:06 PM, Juraj Kubelka wrote: > Hi, > > I