[Pharo-users] Resolving DNS in-image

2019-03-27 Thread Holger Freyther
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

Re: [Pharo-users] how to -- buffered read / write to stdio

2019-03-27 Thread Alistair Grant
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

Re: [Pharo-users] More info & examples on MAAdaptiveModel ?

2019-03-27 Thread Sean P. DeNigris
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

[Pharo-users] how to -- buffered read / write to stdio

2019-03-27 Thread Isaac Gouy via Pharo-users
--- 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

Re: [Pharo-users] Smalltalk CI - anyone have any luck excluding tests?

2019-03-27 Thread Guillermo Polito
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:

Re: [Pharo-users] how to convert this with a stream

2019-03-27 Thread Roelof Wobben
@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

Re: [Pharo-users] how to convert this with a stream

2019-03-27 Thread Richard O'Keefe
"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

[Pharo-users] More info & examples on MAAdaptiveModel ?

2019-03-27 Thread Albrecht Baur via Pharo-users
--- 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