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
kr1shnak has joined #ponylang
<SeanTAllen> Hi everyone, we are considering dropping prebuilt Linux binaries. Info is available here: https://pony.groups.io/g/user/topic/we_re_considering_dropping/4993866?p=,,,20,0,0,0::recentpostdate%2Fsticky,,,20,2,0,4993866
chemist69_ has quit [Ping timeout: 260 seconds]
Candle has quit [Remote host closed the connection]
chemist69 has joined #ponylang
smoon has joined #ponylang
smoon has quit [Quit: smoon]
smoon has joined #ponylang
smoon has quit [Quit: smoon]
_whitelogger has joined #ponylang
graaff has joined #ponylang
chemist69 has quit [Ping timeout: 260 seconds]
chemist69 has joined #ponylang
gmcabrita has quit [Quit: Connection closed for inactivity]
FunkyBob has joined #ponylang
<FunkyBob> so, I'm toying about writing a simple UDP server... following the example
<FunkyBob> just wondering how my UPNotify instance gets access to, well, anything
<FunkyBob> am struggling with scoping, basically
<FunkyBob> I suppose I could sub-class UDPSocket...
<FunkyBob> or not
<endformationage> FunkyBob: I assume you are using this example?: https://stdlib.ponylang.org/net-UDPSocket/
endformationage has quit [Quit: WeeChat 1.7]
Candle has joined #ponylang
kr1shnak has quit [Ping timeout: 240 seconds]
chemist69 has quit [Ping timeout: 240 seconds]
gmcabrita has joined #ponylang
chemist69 has joined #ponylang
kempe has quit [Quit: WeeChat 1.3]
smoon has joined #ponylang
Matthias247 has joined #ponylang
kempe has joined #ponylang
_whitelogger has joined #ponylang
kempe has quit [Quit: WeeChat 1.7.1]
kempe has joined #ponylang
graaff has quit [Ping timeout: 255 seconds]
graaff has joined #ponylang
Candle has quit [Remote host closed the connection]
Candle has joined #ponylang
<SeanTAllen> A new "Last Week in Pony" is out. Catch up on your Pony new and info: Catch up on your Pony news and information from last week: https://www.ponylang.org/blog/2017/04/last-week-in-pony---april-30-2017/
<SeanTAllen> FunkyBob: you still around?
smoon has quit [Quit: smoon]
<SeanTAllen> FunkyBob: the echo server example is a good start to how you do network programming in Pony. Its for TCP but the same patterns apply to UDP: https://github.com/ponylang/ponyc/blob/master/examples/echo/echo.pony. Additionally, the code is somewhat out of date, but when I wrote the original version of that echo server, I also did a blog post to go along with
<SeanTAllen> FunkyBob: there's no subclassing in Pony. if you have time, I'd love if you could email me and we could talk about how you've gone about learning so far. It helps give me ideas on how we can improve the experience for folks who are learning.
Matthias247 has quit [Read error: Connection reset by peer]
<FunkyBob> back
<FunkyBob> SeanTAllen: so far my learning has been reading the tutorial a couple of times, and starting to play
<FunkyBob> however, looking at some samples it seems the language has evolved somewhat since I last read the tutorial
<FunkyBob> sleep time
jonrh has quit [Remote host closed the connection]
<SeanTAllen> FunkyBob: when did you last read the tutorial?
jonrh has joined #ponylang
smoon has joined #ponylang
endformationage has joined #ponylang
chemist69 has quit [Ping timeout: 260 seconds]
chemist69 has joined #ponylang
chemist69 has quit [Ping timeout: 260 seconds]
chemist69 has joined #ponylang
aav has joined #ponylang
Matthias247 has joined #ponylang
inara has quit [Quit: Leaving]
inara has joined #ponylang
aav has quit []
graaff has quit [Quit: Leaving]
_whitelogger has joined #ponylang
papey_lap has joined #ponylang
smoon has quit [Quit: smoon]
Matthias247 has quit [Read error: Connection reset by peer]
papey_lap has quit [Quit: WeeChat 1.7.1]
<FunkyBob> SeanTAllen: few months ago... a refresh wouldn't hurt
chemist69 has quit [Ping timeout: 255 seconds]
endformationage has quit [Remote host closed the connection]
chemist69 has joined #ponylang
<SeanTAllen> did you read it front to back? jump around? it's pretty dense. i'm always curious how folks approach it.
<FunkyBob> SeanTAllen: I originally read it from the start, in order
<FunkyBob> ok, so I can't use inheritance... and composition is the thing... so, how do I give my connection handler access to shared state?