Re: [Pharo-users] Github pharo-* organizations

2019-02-04 Thread Esteban Lorenzano
Hi, Naming the teams “pharo-something” was kind of my idea to improve visibility of pharo. This has been followed by others which means we do not know all organisations nor all pharo contributions are made under a pharo-something team (in fact the less of them). We have in our TODO a new

Re: [Pharo-users] Non-greedy RegEx?

2019-02-04 Thread Thierry Goubier
The Regex engine inside SmaCC allows for non-greedy REs. But it's integrated as a parser first stage, not as an independent RE engine. Regards, Thierry Le mar. 5 févr. 2019 à 08:34, Esteban Lorenzano a écrit : > > Hi, > > Yes, Pharo regex implementation is very naive. > We will be moving to a

Re: [Pharo-users] Non-greedy RegEx?

2019-02-04 Thread Esteban Lorenzano
Hi, Yes, Pharo regex implementation is very naive. We will be moving to a PCRE binding to match outside world standards but we have not had the time to work on it :( Esteban > On 5 Feb 2019, at 00:27, Manuel Leuenberger wrote: > > Hi, > > I just noticed that the Pharo regexes do not

Re: [Pharo-users] Learn Pharo - Not Working

2019-02-04 Thread magicspeller
Ben Coman wrote > On Mon, 4 Feb 2019 at 01:58, magicspeller > pharo@ > wrote: > >> I just discovered the window tabs >> at the bottom as well, which would have helped if I'd thought to look >> there. >> >> Hope I didn't cause anyone a lot of frustration. >> >> In a way, I am glad I posed the

Re: [Pharo-users] Github pharo-* organizations

2019-02-04 Thread Hernán Morales Durand
Hi Pierce, I am currently writing a command-line tool which queries pharo repositories using the GitHub API, and based on the repository tag. Maybe not exactly what you asked for but it's a start. You can find the tool at: https://github.com/hernanmd/pi Cheers, Hernán El lun., 4 feb. 2019 a

Re: [Pharo-users] Github pharo-* organizations

2019-02-04 Thread Esteban Maringolo
+1 to this question The "Pharoverse" is expanding faster every day. Esteban A. Maringolo El lun., 4 feb. 2019 a las 22:43, Pierce Ng () escribió: > > Hi all, > > Is there a definitive list of all the pharo-* organizations on GH? Like > pharo-rdbms, pharo-nosql, pharo-vcs, ... Or, a way to

[Pharo-users] Github pharo-* organizations

2019-02-04 Thread Pierce Ng
Hi all, Is there a definitive list of all the pharo-* organizations on GH? Like pharo-rdbms, pharo-nosql, pharo-vcs, ... Or, a way to query GH to find out? Pierce

[Pharo-users] Non-greedy RegEx?

2019-02-04 Thread Manuel Leuenberger
Hi, I just noticed that the Pharo regexes do not understand non-greedy matches. A regex engine to be PCRE is kind of essential, not having '.*?' to be a parseable and working regex is a bummer. Are there any more powerful regex engines around for Pharo? I could not find any. Cheers, Manuel

Re: [Pharo-users] Running test

2019-02-04 Thread Hernán Morales Durand
Windows 8.1 is ok Cheers, Hernán El lun., 4 feb. 2019 a las 18:46, Hilaire () escribió: > Hi, > > I need some testing on Mac OS and Windows, Linux should be fine, of a > new bundle for drgeo. > > It is there > https://www.dropbox.com/s/z2acnw1yi77q4ps/DrGeo.app-19.03a.zip?dl=0 > > I just need

[Pharo-users] Running test

2019-02-04 Thread Hilaire
Hi, I need some testing on Mac OS and Windows, Linux should be fine, of a new bundle for drgeo. It is there https://www.dropbox.com/s/z2acnw1yi77q4ps/DrGeo.app-19.03a.zip?dl=0 I just need to know if it running or not. Thanks Hilaire -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] Slots doc

2019-02-04 Thread webwarrior
Vitor Medina Cruz wrote > Thanks, I had already read this paper, which got me interested in the > concept of slots :) . Is it a prototype in Pharo or is ready to use? it > will become as an official part of it? > > > On Sun, Feb 3, 2019 at 10:13 AM Ben Coman > btc@ > wrote: > >> >> >> On

Re: [Pharo-users] Slots doc

2019-02-04 Thread Esteban Lorenzano
> On 4 Feb 2019, at 20:11, Vitor Medina Cruz wrote: > > Thanks, I had already read this paper, which got me interested in the concept > of slots :) . Is it a prototype in Pharo or is ready to use? it will become > as an official part of it? Is ready, is official, is there :) Esteban > >

Re: [Pharo-users] Slots doc

2019-02-04 Thread Vitor Medina Cruz
Thanks, I had already read this paper, which got me interested in the concept of slots :) . Is it a prototype in Pharo or is ready to use? it will become as an official part of it? On Sun, Feb 3, 2019 at 10:13 AM Ben Coman wrote: > > > On Sun, 3 Feb 2019 at 17:50, Todd Blanchard via

Re: [Pharo-users] why doesn't this baseline load any package when included in another baseline?

2019-02-04 Thread Paul DeBruicker
There's already an issue on GH. So thats good. https://github.com/Metacello/metacello/issues/400 Paul DeBruicker wrote > Thanks Pierce > > Turns out my problem seems to have been from using a #cacheRepository: > send > in the Metacello load instruction. -- Sent from:

Re: [Pharo-users] Pharo 7 - how to see method author/timestamp n Calypso?

2019-02-04 Thread Esteban Lorenzano
> On 4 Feb 2019, at 16:02, Paul DeBruicker wrote: > > Hi > > > > > EstebanLM wrote >> >>> Without >>> having to do anything by hand when a package is loaded, I mean. And >>> also a >>> way to see that info right next to the code pane without having to click >>> anything? Also

Re: [Pharo-users] Pharo 7 - how to see method author/timestamp n Calypso?

2019-02-04 Thread Paul DeBruicker
Hi EstebanLM wrote > >> Without >> having to do anything by hand when a package is loaded, I mean. And >> also a >> way to see that info right next to the code pane without having to click >> anything? Also hopefully senders/implementors count? > > Uhm? > I do not understand this… but

Re: [Pharo-users] why doesn't this baseline load any package when included in another baseline?

2019-02-04 Thread Paul DeBruicker
Thanks Pierce Turns out my problem seems to have been from using a #cacheRepository: send in the Metacello load instruction. e.g. when I do a Metacello new baseline:'MyProject'; repository:'/my/path/'; cacheRepository: '/my/cache'; load Then the packages aren't loaded but

Re: [Pharo-users] Pharo MOOC 7.0 image

2019-02-04 Thread eftomi
OK, I successfully loaded Seaside, Bootstrap and Magritte into Pharo 7.0.1 (32 and 64 bit) on Win10. If anybody needs the 'how-to', here's what I did: - Install stable version of Magritte3 from Catalog Browser (marked as Pharo 7.0 compatible) - Install stable version of Bootstrap from Catalog

Re: [Pharo-users] Slots docs?

2019-02-04 Thread Marcus Denker
> On 1 Feb 2019, at 14:16, Vitor Medina Cruz wrote: > > Hello, > > Where I can find documentation for slots? > Sadly not… It is on the todo for far too long. I will put it on higher priority and hope to have some documentation soon. Marcus

Re: [Pharo-users] Learn Pharo - Not Working

2019-02-04 Thread Ben Coman
On Mon, 4 Feb 2019 at 01:58, magicspeller wrote: > Ben Coman wrote > > On Sun, 3 Feb 2019 at 19:54, Sven Van Caekenberghe > > > sven@ > > > wrote: > >> > >> You are on Windows, are there any other Windows users that can confirm > >> this either way ? > >> > > > > On Win 10 and this works for