--- Begin Message ---
Hi all,
I am looking for more info or usage examples of MAAdaptiveModel.
So far I found the following good resources:
* The masters thesis of Lukas Renggli and the impl. of Pier:
http://sdmeta.gforge.inria.fr/Teaching/Lille/0910-MetaModelisation/Magritte/Reng06a.pdf
"I have a SortedCollection of Teams. Now I need to convert *it*
to a line like ...".
Well, no. You need to convert *each team* separately to such a
line. So something like
aStream nextPutAll: '...header line...'; cr.
mySortedTeams do: [:eachTeam |
-write a formatted line describing eac
@Richard , thanks a lot
I was already using that way and finnaly I solved it
here is my code : https://github.com/RoelofWobben/Tournament-
Someone who can give feedback to the way I solved it
Roelof
Op
Hi Tim,
I got something like what you describe that working for pillar and
OSSubprocess, but putting different tests in different packages, not tags.
https://github.com/pillar-markup/pillar
https://github.com/pharo-contributions/OSSubprocess
On Tue, Mar 12, 2019 at 6:00 PM Tim Mackinnon wrote:
--- Begin Message ---
>From — "Pharo 7 file streams guideline"
https://github.com/pavel-krivanek/pharoMaterials/blob/master/Filestreams.MD
I have some ideas like —
in := ZnFastLineReader on: (ZnCharacterReadStream on: Stdio stdin).
out := ZnBufferedWriteStream on:
(ZnCharacte
Pharo Smalltalk Users mailing list wrote
> I am looking for more info or usage examples of MAAdaptiveModel.
The Nabble mirror site provides convenient search across many Smalltalk MLs.
I don't know if any of these help, but there are several hits:
http://forum.world.st/template/NamlServlet.jtp?mac
Hi Isaac,
On Wed, 27 Mar 2019 at 17:18, Isaac Gouy via Pharo-users
wrote:
>
> From — "Pharo 7 file streams guideline"
>
> https://github.com/pavel-krivanek/pharoMaterials/blob/master/Filestreams.MD
>
>
> I have some ideas like —
>
>in := ZnFastLineReader on: (ZnCharacterReadStream on: S
Norbert and me looked at using DNS for service discovery and ran into some of
the limitations of the NetNameResolver[1]. In the end I created an initial DNS
implementation in Pharo called Paleo-DNS[2] to overcome these.
DNS is a protocol we use every day but rarely think of. There is an active I