[Pharo-users] Pharo refactoring rewrite tool?

2019-03-17 Thread Tim Mackinnon
I recall there was a refactoring rewrite tool - but where is it in Pharo? Is it something you have to load separately? Or do you just copy some of the deprecated examples and do it manually? I thought there was something with a window where you typed in a rule and then it showed you what it

Re: [Pharo-users] Test skip isn't working?

2019-03-17 Thread Vitor Medina Cruz
Skip only works when I run tests from class. If I click the test button from the method skipped it don't work, maybe an error in calypso? On Sun, Mar 17, 2019 at 3:13 PM Vitor Medina Cruz wrote: > Hello, > > someTest > self skip: 'some message'. > > rest of the test > > Rest of the test

Re: [Pharo-users] 7.0.2 and the font glitch - seems far worse than 7.0.1

2019-03-17 Thread Pierce Ng
On Sun, Mar 17, 2019 at 02:44:25PM +, Tim Mackinnon wrote: > Hey Pierce - what font did you use - are you talking about the Bitmap > fonts, or did you pick something else? I use the platform fonts to show Chinese and Japanese content correctly. On Mac, PingFang SC. On Ubuntu I have been using

Re: [Pharo-users] rdf and/or json-ld

2019-03-17 Thread Ben Coman
On Mon, 18 Mar 2019 at 04:09, Tudor Girba wrote: > Hi, > > Is anyone aware of RDF or JSON-LD support in Pharo? > Not yet in Pharo, but maybe supporting Christian to port his RDF library ( https://wiki.pdftalk.de/doku.php?id=rdf) could be an option... > I did a tool for porting PDFtalk from VW

[Pharo-users] Pharo MOOC

2019-03-17 Thread Richard Kenneth Eng
Will there be another run in 2019? I have friends who are interested.

Re: [Pharo-users] [Moose-dev] Re: [Pharo-dev] Re: [ANN] Lan.d.s Alpha: All Along the Language Tower

2019-03-17 Thread Nick Papoylias
On Sun, Mar 17, 2019 at 9:24 PM Stéphane Ducasse wrote: > I know what is it to write book. > I sent you some support and I want to be a reviewer. > Would be my pleasure Stef ! Today was a wonderful start ! Thank you, Nick > > Stef > > On 17 Mar 2019, at 20:35, Nick Papoylias wrote: > >

[Pharo-users] rdf and/or json-ld

2019-03-17 Thread Tudor Girba
Hi, Is anyone aware of RDF or JSON-LD support in Pharo? Cheers, Doru -- www.feenk.com "Innovation comes in the least expected form. That is, if it is expected, it already happened."

Re: [Pharo-users] [Moose-dev] Re: [ANN] Lan.d.s Alpha: All Along the Language Tower

2019-03-17 Thread Nick Papoylias
That was good to know. I updated the site with* one-click direct* *(non-recurring) alternative*: *PayPal.Me for Lands* https://npapoylias.gitlab.io/lands-project/Support/ *"Alternatively you can make a direct (non-recurrent) contribution * *through paypal.me

[Pharo-users] Test skip isn't working?

2019-03-17 Thread Vitor Medina Cruz
Hello, someTest self skip: 'some message'. rest of the test Rest of the test is being executed. There is a different woy of skipping tests? Thanks, Vitor.

Re: [Pharo-users] [Moose-dev] Re: [ANN] Lan.d.s Alpha: All Along the Language Tower

2019-03-17 Thread Nick Papoylias
On Sun, Mar 17, 2019 at 2:18 PM Stéphane Ducasse wrote: > Hi nick > > I wanted to support your chapters via paypal but it asked me about my visa > and I would like > to pay via my paypal account. Do you know if this is possible? > Thanx Stef ! *Through patreon, this seems to be required for

Re: [Pharo-users] 7.0.2 and the font glitch - seems far worse than 7.0.1

2019-03-17 Thread Tim Mackinnon
Hey Pierce - what font did you use - are you talking about the Bitmap fonts, or did you pick something else? This tip, also reveals a usability annoyance on that font setting panel - the Force All button not only copies the font to all the sub settings - but also the size (making it slightly

Re: [Pharo-users] 7.0.2 and the font glitch - seems far worse than 7.0.1

2019-03-17 Thread Tim Mackinnon
Ah - I didn’t know about using “native fonts” - is that in settings? I’ll check it out. That said - if the image default is not to have that setting - we really need to understand and fix this as it’s mega confusing for new users when you don’t see what you typed or code suddenly changes in

Re: [Pharo-users] 7.0.2 and the font glitch - seems far worse than 7.0.1

2019-03-17 Thread Pierce Ng
On Fri, Mar 15, 2019 at 11:04:35PM +, Tim Mackinnon wrote: > In 7.0.1 (osx - high Sierra - launcher), I was seeing the odd font > glitch (where characters suddenly start glyphing in code and menus - > see photos) and it seemed to be fixable by saving your image the first > time (e.g. after 30+

Re: [Pharo-users] Why doesn't collection have #excludes (the mirror of includes)?

2019-03-17 Thread Sven Van Caekenberghe
> On 17 Mar 2019, at 07:56, Richard O'Keefe wrote: > > (1) As it happens, my Smalltalk library *does* have "my mystery Smalltalk" ;-) > #excludes: and #identityExcludes: > (2) The definitions are trivial. > excludes: item > ^(self includes: item) not > identityExcludes:

Re: [Pharo-users] Why doesn't collection have #excludes (the mirror of includes)?

2019-03-17 Thread Richard O'Keefe
(1) As it happens, my Smalltalk library *does* have #excludes: and #identityExcludes: (2) The definitions are trivial. excludes: item ^(self includes: item) not identityExcludes: item ^(self identityIncludes: item) not If you want to execute aBlock when aString is not all