jemc changed the topic of #ponylang to: Welcome! Please check out our Code of Conduct => https://github.com/ponylang/ponyc/blob/master/CODE_OF_CONDUCT.md | Public IRC logs are available => http://irclog.whitequark.org/ponylang | Please consider participating in our mailing lists => https://pony.groups.io/g/pony
jemc has quit [Ping timeout: 268 seconds]
Matthias247 has quit [Read error: Connection reset by peer]
amclain has quit [Quit: Leaving]
Praetonus has quit [Quit: Leaving]
jemc has joined #ponylang
jemc has quit [Ping timeout: 255 seconds]
jemc has joined #ponylang
jemc has quit [Ping timeout: 248 seconds]
aceluck has quit [Remote host closed the connection]
aceluck has joined #ponylang
aceluck has quit [Ping timeout: 268 seconds]
endformationage has quit [Quit: WeeChat 1.7]
dyreshark has quit [Quit: WeeChat 1.4]
JustVic has quit [Ping timeout: 260 seconds]
_whitelogger has joined #ponylang
aceluck has joined #ponylang
aceluck has quit [Ping timeout: 240 seconds]
aceluck has joined #ponylang
aceluck has quit []
_whitelogger has joined #ponylang
aceluck has joined #ponylang
papey_lap has quit [Quit: WeeChat 1.9]
Matthias247 has joined #ponylang
TheNet has joined #ponylang
TheNet has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
TheNet has joined #ponylang
Praetonus has joined #ponylang
jmiven has quit [Quit: co'o]
jmiven has joined #ponylang
jmiven has quit [Quit: co'o]
Alex____ has joined #ponylang
jmiven has joined #ponylang
Alex____ has quit [Ping timeout: 260 seconds]
Matthias247 has quit [Read error: Connection reset by peer]
TheNet has quit [Quit: Textual IRC Client: www.textualapp.com]
aceluck has quit [Remote host closed the connection]
aceluck has joined #ponylang
aceluck has quit [Ping timeout: 240 seconds]
plietar has joined #ponylang
plietar has quit [Remote host closed the connection]
plietar has joined #ponylang
plietar has quit [Ping timeout: 255 seconds]
Matthias247 has joined #ponylang
aceluck has joined #ponylang
aceluck has quit [Ping timeout: 268 seconds]
aceluck has joined #ponylang
aceluck has quit [Ping timeout: 260 seconds]
aceluck has joined #ponylang
Matthias247 has quit [Read error: Connection reset by peer]
endformationage has joined #ponylang
<SimonJF> hi! i've just started playing around with pony. i think i may have found a bug in the documentation; the example in https://stdlib.ponylang.org/net-TCPListener/ seems to be missing the "times: USize" argument. is there somewhere i could submit a PR? thanks!
oldmanmike has joined #ponylang
deep-book-gk_ has joined #ponylang
deep-book-gk_ has left #ponylang [#ponylang]
autodidaddict has joined #ponylang
<autodidaddict> promises and actors q: If I have an actor that is maintaining an array of actors, and I want to "ask" each actor their name and then send that array of names to a final actor... what's the best approach?
<autodidaddict> I like the idea of sending an actor a promise that, when fulfilled, contains some internal state (e.g. a name)
<autodidaddict> the trick is, how do I effectively map/reduce this so I can ask 6 actors for their names, gather the results with ".next" calls on the promises, and then send the final collection to another behavior
<autodidaddict> as an analogy, in Akka/Scala ..I would make use of a pattern where I could create an array of promises and then convert that into a promise of an array and then when I "awaited" fulfillment, I'd have an array of answers that I got from my supervised actors
<autodidaddict> I used this pattern DAILY in Scala
jemc has joined #ponylang
<autodidaddict> psuedocode of what I'm thinking:
<autodidaddict> for player in _players.values() do ... player.fulfillname(namepromise) ... end // ??? and then "collect" all of my namepromises, convert into an array, and send to a last actor