Re: [Pharo-users] Recommended stable Pharo 5.0 VM for Linux users?

2017-04-04 Thread Luke Gorrie
Thanks for the fast response! Can you also recommend the best pharo-launcher image version to package? The stable one looks stale (lists Pharo 5.0 as "beta" for me) On Tue, 4 Apr 2017 at 08:45, Esteban Lorenzano wrote: > in fact, I will promote a new stable soon, so I’d recommend for now take >

Re: [Pharo-users] Recommended stable Pharo 5.0 VM for Linux users?

2017-04-04 Thread Luke Gorrie
Hi again Esteban, On 4 April 2017 at 08:44, Esteban Lorenzano wrote: > in fact, I will promote a new stable soon, so I’d recommend for now take > the master branch of https://github.com/pharo-project/pharo-vm > Could you possibly spin a (alpha) release that I could use? The problem with build

[Pharo-users] j...@mediagenix.tv

2017-04-04 Thread Stephane Ducasse
Mediagenix (managing 1700+ channels for 65+ Media networks and 10K users) developed in Smalltalk is looking for people: j...@mediagenix.tv http://www.mediagenix.tv/en/jobs Stef

Re: [Pharo-users] Recommended stable Pharo 5.0 VM for Linux users?

2017-04-04 Thread Esteban Lorenzano
> On 4 Apr 2017, at 10:55, Luke Gorrie wrote: > > Hi again Esteban, > > On 4 April 2017 at 08:44, Esteban Lorenzano > wrote: > in fact, I will promote a new stable soon, so I’d recommend for now take the > master branch of https://github.com/pharo-project/pharo-vm

Re: [Pharo-users] Recommended stable Pharo 5.0 VM for Linux users?

2017-04-04 Thread Luke Gorrie
On 4 April 2017 at 12:01, Esteban Lorenzano wrote: > well, I’m working on commit also generated sources as an amend… but you > will need to wait a couple of days for that :) > Sounds great, thanks in advance!

[Pharo-users] Smacc how to test scanner

2017-04-04 Thread Stephane Ducasse
Hi When writing grammar I would like to test the scanner. And I would like to this without having to define a special rule (in addition to the one of the language). Is it possible to get access to the scanner and ask it to scan the stream? Stef

Re: [Pharo-users] FileReference / and parent

2017-04-04 Thread Stephane Ducasse
Hi alistair We should target Pharo 70. Now it is great that you help improving the file frameworks. Could you open a bug entry? Do you have tests? Stef On Mon, Apr 3, 2017 at 2:04 PM, Alistair Grant wrote: > Hi All, > > I previously suggested a change to Path>>/ which actually covered two > is

Re: [Pharo-users] Smacc how to test scanner

2017-04-04 Thread Thierry Goubier
Hi Stef, I think it is possible. After compiling your parser and scanner classes, take your scanner class and create it on a stream stefScanner := StefScanner on: (ReadStream on: 'My test string for my parser'). Then each token will be retrieved with SmaCCScanner>>#next stefScanner next

Re: [Pharo-users] FileReference / and parent

2017-04-04 Thread Alistair Grant
Hi Stef, On Tue, Apr 04, 2017 at 04:33:56PM +0200, Stephane Ducasse wrote: > Hi alistair > > We should target Pharo 70. Yep, I saw Esteban's message saying he hopes 6.0 is only a week away, so this can definitely wait. > Now it is great that you help improving the file frameworks. > Could you

[Pharo-users] Neural Networks in Pharo

2017-04-04 Thread Oleksandr Zaytsev
Hello! Several weeks ago I've announced my NeuralNetworks project. Thank you very much for your ideas and feedback. As suggested, I wrote examples for every class and tested my perceptron on linearly-separable logical functions. I have just completed a post about my implementation of a single-lay