Re: [Pharo-users] Iceberg for files other than code?

2019-04-06 Thread Tim Mackinnon
My understanding is that at the moment commits are restricted to what’s I the designated src directory, so you need to use an external way to commit non code files into your branch. These can be 1. Git cmd line 2. Another tool like IntelliJ 3. The github web bowser If you do, you need to pull

Re: [Pharo-users] Iceberg for files other than code?

2019-04-06 Thread Christopher Fuhrman
Hi Konrad, On Sat, 6 Apr 2019 at 15:46, Konrad Hinsen wrote: > Hi everyone, > > Is it possible to read and modify files not containing Pharo code in a > repository managed by Iceberg? I am thinking of reading the repository's > README file, for example, or storing data files read by my code >

Re: [Pharo-users] difference between double dispatch and the method explains here

2019-04-06 Thread Roelof Wobben
oke, so I need a single Object here that contains this in a initialize function : north = Direction( 0, -1) east = Direction( 1, 0) south = Direction( 0, 1) west = Direction(-1, 0) oke, then time to figure out how to change my functions because

[Pharo-users] Iceberg for files other than code?

2019-04-06 Thread Konrad Hinsen
Hi everyone, Is it possible to read and modify files not containing Pharo code in a repository managed by Iceberg? I am thinking of reading the repository's README file, for example, or storing data files read by my code alongside the code itself. Konrad.

Re: [Pharo-users] difference between double dispatch and the method explains here

2019-04-06 Thread K K Subbu
On 06/04/19 4:49 PM, Roelof Wobben wrote: Hello, I just learned double dispatch. And now for the Robot challenge of exercism Tim has pointed me to this article(https://blog.metaobject.com/2019/04/accessors-have-message-obsession.html) but I fail to see how the move method looks like in that

[Pharo-users] difference between double dispatch and the method explains here

2019-04-06 Thread Roelof Wobben
Hello, I just learned double dispatch. And now for the Robot challenge of exercism Tim has pointed me to this article(https://blog.metaobject.com/2019/04/accessors-have-message-obsession.html) but I fail to see how the move method looks like in that article. I had a conversation with Tim

[Pharo-users] can I do something like this with Double Dispatch

2019-04-06 Thread Roelof Wobben
Hello, Just thinking how to solve the bowling challenge from exercism. but I wonder if I can do something like this in the method that checks if I have the right object I was thinking about this : Result -- Strike -- Spare -- allOther then In  Strike something like this checkForBonus: