Re: [Pharo-users] Pharo 7 under Linux

2018-12-13 Thread John Kimber via Pharo-users
--- Begin Message --- Hi, I recently installed 70 build 1384 under Mint 19. Seems to be working fine. HTH, john -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html --- End Message ---

Re: [Pharo-users] how to rewrite this to use a stream

2018-12-13 Thread Richard Sargent
On Thu, Dec 13, 2018 at 12:44 PM Roelof Wobben wrote: > there is a method but then I ran into another warning > > FindAndDeleteWordsWithForbiddenParts > "deletes all the words that contain forbidden parts" > > | result | > result := words > select: [ :word | > [ (f

Re: [Pharo-users] Agile Artificial Intelligence book

2018-12-13 Thread mldavis99
Hi, the Book so far is great, I am looking forward to more. However, when I try to load the code with: Metacello new package: 'NeuralNetwork'; repository: 'github://AgileArtificialIntelligence/PharoSourceCode/src' ; load. Both Pharo 6.1 stable and 7 Development Version do not understand: p

Re: [Pharo-users] how to rewrite this to use a stream

2018-12-13 Thread Roelof Wobben
there is a method but then I ran into another warning FindAndDeleteWordsWithForbiddenParts     "deletes all the words that contain forbidden parts"     | result |     result := words         select: [ :word |             [ (forbidd

Re: [Pharo-users] how to rewrite this to use a stream

2018-12-13 Thread Richard Sargent
It's bad advice in this case, but correctly indicates there is a problem with your code. See below. On Thu, Dec 13, 2018 at 8:13 AM Roelof Wobben wrote: > Hello, > > I have this code : > > FindAndDeleteWordsWithForbiddenParts > "deletes all the words that contain forbidden parts" > > |

[Pharo-users] how to rewrite this to use a stream

2018-12-13 Thread Roelof Wobben
Hello, I have this code :  FindAndDeleteWordsWithForbiddenParts "deletes all the words that contain forbidden parts" | result | result := words select: [ :word | [ (forbiddenWords reject: [ :forbidden | '*' , forbidden , '*' match: word ]) isNotEmpt

Re: [Pharo-users] Pharo 7 under Linux

2018-12-13 Thread Konrad Hinsen
Hi Esteban, > While it should not crash (just disable iceberg), it will be useful to > know which kind of linux are you using. It's Ubuntu 18.10. And it doesn't crash in the sense of crashing the VM, there's just an error message that pops up when I start the image. I didn't try to use that image

Re: [Pharo-users] [ANN] Pharo Newsletter December 2018

2018-12-13 Thread Marcus Denker
> On 13 Dec 2018, at 01:39, Sean P. DeNigris wrote: > > Marcus Denker-4 wrote >> Last we the Pharo Newsletter December 2018 was send. > > Wow, RMapViewer looks really cool :) Is the Units framework mentioned the > same one from SqS? > I guess? It was on smalltalkhub and I moved it to GitHub