[Pharo-users] Re: where are the nills come from and how do I get rid of them

2020-09-21 Thread Roelof Wobben via Pharo-users
Thanks, I will look further then how to make the tests green Roelof Op 21-9-2020 om 08:24 schreef jtuc...@objektfabrik.de: Roelof, I guess your are taking about what you see in the inspector... There is nothing to worry about. Try inspecting wordBag asOrderedCollection and see if there

[Pharo-users] Re: How to save a playground content in a local file ?

2020-09-21 Thread hogoww
Hi, It is saved by default (on cmd + s? I'm still unsure) in Pharo/image/yourImage/pharo-local/play-cache :) Pierre On 21/09/2020 18:30, Rene Paul Mages (ramix) wrote: Hello, To save the content of my playground (in my local hard disk) my procedure is really ~rustic~ { selection , copy ,

[Pharo-users] exercism bowling challenge

2020-09-21 Thread Roelof Wobben via Pharo-users
hello, I need now to make code that calculates the full score of a bowling game like one of the tests shown. test09_ConsecutiveStrikesEachGetTheTwoRollBonus     | result |     result := bowlingCalculator         scoreAfterRolling: #(10 10 10 5 3 0 0 0

[Pharo-users] How to save a playground content in a local file ?

2020-09-21 Thread Rene Paul Mages (ramix)
Hello, To save the content of my playground (in my local hard disk) my procedure is really ~rustic~ { selection , copy , paste }. Is there an adhoc menu dedicated to this backup-action ? Nota Bene : I am working with Pharo 8.0.0 -- Thanks for your help. Rene Paul Mages ( GnuPG_key

[Pharo-users] Re: Telegram Bots with Pharo

2020-09-21 Thread Pablo Navarro
Hi Guille, Thanks for the feedback. It's an excellent idea. I'm going to add the link in the bot in \help or \start. Saludos, Pablo. El 21 de sep. de 2020 09:41 -0300, Guillermo Polito , escribió: > Hi Pablo! > > Really nice! > > I tested it the other day. It would be nice if the bot had a link

[Pharo-users] Re: Telegram Bots with Pharo

2020-09-21 Thread Guillermo Polito
Hi Pablo! Really nice! I tested it the other day. It would be nice if the bot had a link to its github repository and the framework’s repo so people could follow from there ;) Cheers, Guille > El 18 sept 2020, a las 22:55, Pablo Navarro escribió: > > Hi everyone, I share a tool for creating

[Pharo-users] [ANN] P3 version 1.3

2020-09-21 Thread Sven Van Caekenberghe
Hi, There is a new release of P3, the modern, lean and mean PostgreSQL client for Pharo. https://github.com/svenvc/P3 Version 1.3 contains the following changes: - Add object logging, see the P3LogEvent hierarchy - Added P3ConnectionPool with tests - Better management of prepared statements -

[Pharo-users] Re: where are the nills come from and how do I get rid of them

2020-09-21 Thread jtuc...@objektfabrik.de
Roelof, I guess your are taking about what you see in the inspector... There is nothing to worry about. Try inspecting wordBag asOrderedCollection and see if there are still nils. Or ask the Bad for occurencesOf: nil. It is completely normal to see nils in an Inspector on a Set or Bag. Has

[Pharo-users] where are the nills come from and how do I get rid of them

2020-09-21 Thread Roelof Wobben via Pharo-users
Hello, I have to make a word count from a sentence so I did this : countWordsSentence: aString     | splitted result |     splitted := aString splitOn: [ :each | ', ' includes: each ].     result := splitted         inject: Bag new         into: [ :wordBag :word |             wordBag