00:09 (join) jeapostrophe 00:14 (quit) yoklov: Quit: computer sleeping 00:18 (quit) jeapostrophe: Ping timeout: 260 seconds 00:31 (join) cdidd 00:34 (join) yoklov 00:36 (join) lebro 00:36 (part) lebro: "Leaving" 01:20 (quit) jonrafkind: Ping timeout: 245 seconds 01:24 (join) dzhus 01:30 (quit) dnolen: Quit: ERC Version 5.3 (IRC client for Emacs) 01:35 (join) MarkSoric 01:36 MarkSoric: Hello friendly Racket-Gurus! Wondering if I could get some assistance. It's for an assignment that'd due in oooh, about 8 hours :D 01:36 MarkSoric: http://ideone.com/zOo0l 01:36 MarkSoric: Having trouble with this question. I am supposed to write a function iappend_destructive that executes in O(1) time. Rather challenging and I'm not quite sure where I'm running astray. Any input? 01:39 (quit) yoklov: Quit: computer sleeping 01:40 mithos28: MarkSoric: what is it supposed to do? 01:40 MarkSoric: It's supposed to append two "ilists" in constant time. 01:41 MarkSoric: My current course is working in c and racket and they make us do most of the assignments in both, I guess to highlight the differences between the two languages (?). In any case, I can get everything but iappend_destroy to work properly. 01:42 mithos28: Do you know how the algorithm is supposed to work? 01:44 MarkSoric: In c, yes. 01:44 MarkSoric: Well, actually, no, I don;t. I'm told to write it, so I guess figuring it out is up to me. 01:45 mithos28: Have you written the c version yet? 01:46 MarkSoric: What I was thinking of was to keep a "pointer" to the final element in each list as it's being consed together. When I want to append the two, I mutate that final element in the first list to the second list. Only problem is that I can't figure out how to update the lengths properly. No, I am starting the with Racket version because quite frankly, I will probably turn to seppuku if I have to work in c more tonig 01:47 mithos28: What goes wrong with the lengths? 01:48 MarkSoric: Well, when I only figured out how to find the total length of the appended lists. Which is ok until I ask for the length of the rest of an appended list. 01:49 mithos28: What run time does length have to have? 01:49 MarkSoric: The length function needs to also be O(1), which means I have to store the position as a field in the structure. I can't see how to mutate the structures without looping. 01:49 MarkSoric: Everything with the exception of copy has to be O(1) 01:51 MarkSoric: queues ? 01:51 mithos28: What is your invariant on the length field 01:52 MarkSoric: Sorry, not sure what you mean by invariant? 01:54 mithos28: What properties do you need to maintain about the value in the length field? 01:55 MarkSoric: The position field is the order in which the elements were consed onto the list 01:55 MarkSoric: Does that answer your question? 01:56 mithos28: It was more meant to make you think about it. 01:56 MarkSoric: Ah. I just can't see how to update those values without looping through the elements of the appended list 01:56 mithos28: Why do you need to update them? 02:01 MarkSoric: Because when the testing server tests my functions, it will test (length (rest (append list1 list2))) 02:01 MarkSoric: In which case, it won't give me the correct value. 02:03 mithos28: How many length fields does your list representation have? 02:04 MarkSoric: I've represented the list as a structure that has 4 field, head, tail, position, final. As each new "element" is consed to my "list", the value in the position field is incremented by one. 02:04 MarkSoric: So for a list of n elements, there are n position fields 02:04 mithos28: Why do you need so many? 02:06 MarkSoric: Because length has to run in O(1) - how else can I do it? 02:06 mithos28: How many of those fields does length check? 02:08 MarkSoric: only the most recent 02:08 mithos28: So why do you need the other ones? 02:09 MarkSoric: Because what happens if length is called on the rest of the list? They need to be there so length always taken O(1). 02:10 mithos28: If the length of list L is x, what is the length of the list (rest L) 02:11 MarkSoric: x - 1 02:11 mithos28: ok, so why do you need the other length field? You just computed the length for the rest of the list 02:12 MarkSoric: I follow what you're saying but how do I store that information? 02:12 MarkSoric: If not in a field 02:12 mithos28: look at your rest implementation 02:13 MarkSoric: Ok 02:14 mithos28: how do you calculate the length of the rest of the list? 02:14 MarkSoric: I don't - I pull it from the position field of the first element of the rest of the list 02:15 mithos28: which is different from what you did in your head when I asked you 02:15 MarkSoric: True. 02:15 mithos28: do you see how that helps with the append? 02:15 MarkSoric: I do! 02:16 MarkSoric: Except for now when I run (length (irest_destroy (iappend_destroy test1 test2))) I'm getting 11 :P 02:18 mithos28: are those the same lists as in the paste? 02:19 MarkSoric: They are, yes 02:19 (nick) LeNsTR|off -> LeNsTR 02:20 mithos28: Is the length of each of them 4? 02:20 mithos28: according to your implementation of length that is? 02:20 MarkSoric: Yep 02:21 MarkSoric: Whoa… wait a minute… that changed too now 02:22 MarkSoric: Oh, I think it's ok. Forgot to rerun so I was appended list2 on the result of spending list2 to list1. 02:22 MarkSoric: Seems ok 02:22 mithos28: ah, that is why mutation is bad 02:23 MarkSoric: I see that :P 02:26 MarkSoric: Alrighty! Well thanks a ton for the help mithos - I gotta get to bed! 02:26 MarkSoric: Have a good night! 02:27 mithos28: no problem 02:27 (quit) MarkSoric: Quit: MarkSoric 02:49 (join) Patterngazer_ 03:12 (quit) realitygrill: Quit: realitygrill 03:26 (join) bluezenix 03:37 (join) Skola 03:45 (quit) noam: Read error: Connection reset by peer 03:46 (join) noam 04:05 (join) Blkt 04:26 (quit) dous: Ping timeout: 276 seconds 04:45 (quit) Patterngazer_: Quit: We be chillin - IceChat style 05:06 (join) MayDaniel 05:06 (quit) MayDaniel: Client Quit 05:22 (join) dsp1 05:25 (quit) EmmanuelOga: Quit: WeeChat 0.3.7-dev 05:35 (quit) mithos28: Quit: mithos28 05:37 (quit) Kaylin: Quit: Leaving. 05:47 offby1: rudybot: how ya feelin 05:47 rudybot: offby1: It's like if the nuclear power industry had chosen the ☢ symbol, it'd be a big blue smily face with the caption "Feelin' Fine" 05:47 offby1: rudybot: good to know; thanks 05:47 rudybot: offby1: Everyone thinks they have good reasons; doesn't mean you'll agree with them. 05:48 (join) sindoc 05:53 (join) ahinki 06:03 (quit) dzhus: Remote host closed the connection 06:04 (quit) noam: Read error: Connection reset by peer 06:04 (join) mceier 06:04 (join) noam 06:04 (quit) sindoc: Quit: Leaving. 06:11 (quit) noam: Read error: Connection reset by peer 06:11 (join) noam 06:12 (join) aidy 06:13 aidy: is there a way to allow redifinitions of initial bindings from source? 06:16 (join) hkBst 06:16 (quit) hkBst: Changing host 06:16 (join) hkBst 06:18 (join) vkz 06:26 Diarmid: aidy: I may be too noob to help you, but if you're asking if there's mutable variables, yes. You might be asking something about macros, though, and I probably can't help you there yet. 06:27 Diarmid: aidy: I think the people that know things are asleep at the moment. 06:28 aidy: Diarmid: that's not really what I'm asking :) 06:28 Diarmid: aidy: Okay. I just didn't want you to think you were ignored. 06:29 aidy: I'm used to this channel being silent during US night, no worries! 06:30 (join) masm 06:33 noelw: aidy: I don't understand the question 06:33 noelw: Do you mean redefinition of module bindings? 06:37 noelw: If so, the answer is yes. There is a parameter you can set to allow this 06:39 aidy: yes 06:39 aidy: can I set it from source using a #lang directive or something? 07:01 (join) geofridh 07:04 (quit) geofridh: Client Quit 07:06 (join) djcb 07:08 (join) stvn_ 07:18 (join) gciolli 07:19 (quit) vkz: Quit: vkz 07:52 (quit) djcb: Remote host closed the connection 07:53 (join) djcb 08:02 (quit) ahinki: Quit: ChatZilla 0.9.88 [Firefox 11.0/20120215222917] 08:23 (join) Patterngazer_ 08:27 (join) Shvillr_ 08:28 (quit) Shviller: Disconnected by services 08:28 (join) Shviller 08:29 (quit) Shvillr: Ping timeout: 260 seconds 08:30 (join) Aune 08:31 Aune: Hello, how can I do something like (let ((A (cons 1 B)) (B (cons 2 A))) to get A -> '(1 2 1 2 ....). The structure I'm after is A = [1 | B], B = [2 | A]. 08:33 (join) RacketCommitBot 08:33 RacketCommitBot: [racket] plt pushed 1 new commit to master: http://git.io/_aQDxA 08:33 RacketCommitBot: [racket/master] fixed docs for quotient; Closes PR 12593 - Matthias Felleisen 08:33 (part) RacketCommitBot 08:38 (quit) gciolli: Ping timeout: 240 seconds 08:40 (join) sindoc 08:52 (quit) noelw: Ping timeout: 255 seconds 08:54 (join) RacketCommitBot 08:54 RacketCommitBot: [racket] plt pushed 2 new commits to master: http://git.io/QW3cUw 08:54 RacketCommitBot: [racket/master] fix a problem with the interaction of Pango and AppKit - Matthew Flatt 08:54 RacketCommitBot: [racket/master] fix bug in bytecode optimizer - Matthew Flatt 08:54 (part) RacketCommitBot 08:55 (join) noelw 08:56 (join) dnolen 08:58 (join) shadgreg` 08:58 (join) jeapostrophe 08:59 (quit) shadgregory: Remote host closed the connection 09:04 (quit) sindoc: Quit: Leaving. 09:08 (quit) masm: Quit: Leaving. 09:08 (join) masm 09:08 (quit) masm: Client Quit 09:12 (join) dme 09:12 (quit) dme: Read error: Connection reset by peer 09:41 (join) sindoc 09:47 (join) realitygrill 09:48 (join) dous 09:49 chandler: Aune: what you're looking for is called "shared" 09:50 chandler: rudybot: eval (shared ((A (cons 1 B)) (B (cons 2 A))) A) 09:50 rudybot: chandler: ; Value: #0=(1 2 . #0#) 09:50 Aune: Thanks 09:58 (quit) dnolen: Quit: ERC Version 5.3 (IRC client for Emacs) 10:09 (quit) dspt: Ping timeout: 272 seconds 10:09 (join) dspt 10:16 (join) shadgregory 10:33 (quit) Demosthenes: Quit: Lost terminal 10:38 (quit) jrslepak: Quit: This computer has gone to sleep 10:45 (join) dme 10:55 (quit) realitygrill: Quit: realitygrill 10:57 (join) Shvillr 10:58 (join) yoklov 11:00 (quit) Shviller: Ping timeout: 240 seconds 11:01 Diarmid: I've found the 'ports' section of the manual (seems to correspond to Common Lisp 'streams'?) and it looks like the various 'input-file' and 'output-file' procedures are the recommended way to read and write files. 11:01 Diarmid: I also see a 'teachpack' with some directory handling procedures. 11:01 (quit) yoklov: Client Quit 11:01 Diarmid: What is the recommended way to do things like find subdirectories, or crawl a directory hierarchy? 11:02 (join) dnolen 11:03 samth: Diarmid: for non-teaching purposes, don't use the teachpacks 11:03 samth: Diarmid: this might be useful: http://pre.racket-lang.org/docs/html/reference/Filesystem.html?q=find-files#%28def._%28%28lib._racket/file..rkt%29._find-files%29%29 11:03 rudybot: http://tinyurl.com/7qod7no 11:04 Diarmid: samth: I figured that was the case. I just wondered how Racket 'normally' exposed directories, and if there were any utility functions, like the hierarchy walking thing (Python comes with that and it's quite useful). 11:04 samth: Diarmid: `find-files' (what i linked to) is exactly that 11:04 samth: there's also `fold-files' 11:04 samth: rudybot: doc fold-files 11:04 rudybot: samth: your sandbox is ready 11:04 rudybot: samth: http://docs.racket-lang.org/reference/Filesystem.html#(def._((lib._racket%2Ffile..rkt)._fold-files)) 11:04 Diarmid: Oh I see it. I feel dumb now. 11:05 Diarmid: The stupidity should pass in a few weeks (I hope). I just need to get oriented to the basic stuff. :P 11:07 samth: Diarmid: no worries 11:10 (quit) Skola: Remote host closed the connection 11:27 (quit) eMBee: Ping timeout: 244 seconds 11:27 (quit) bluephoenix47: Ping timeout: 252 seconds 11:28 (join) bluephoenix47 11:29 (join) gciolli 11:30 (join) eMBee 11:30 (join) jonrafkind 11:30 (quit) jeapostrophe: Ping timeout: 255 seconds 11:33 (quit) djcb: Remote host closed the connection 11:35 (join) vkz 11:38 (join) cmk91 11:39 cmk91: hi everybody 11:40 (join) Tyr42 11:40 cmk91: can someone help me? 11:42 cmk91: plssss help meeeeéééééé!!!!! 11:44 (quit) hkBst: Quit: Konversation terminated! 11:46 noelw: If you ask a question, you might get help 11:46 noelw: …. or, you might be beyond help 11:46 noelw: who knows 11:47 (quit) gciolli: Ping timeout: 240 seconds 11:50 cmk91: do you know stack and queue in drracket 11:50 cmk91: ??? 11:51 rapacity: wat 11:53 cmk91: stack and queue you know this structer? 11:53 cmk91: can you give me some examples about that? 11:55 (join) noam_ 11:55 rapacity: there's a queue example in the guide have you checked that? 11:56 rapacity: http://docs.racket-lang.org/guide/contracts-examples.html there's a stack and queue implementation 11:58 (quit) noam: Ping timeout: 240 seconds 12:00 (join) jeapostrophe 12:08 (quit) Shvillr_: Read error: Connection reset by peer 12:08 cmk91: thank you for helping 12:08 (join) MayDaniel 12:10 (quit) bluezenix: Ping timeout: 240 seconds 12:11 (quit) Blkt: Remote host closed the connection 12:14 (join) Shviller 12:20 cmk91: how can we give value? 12:21 cmk91: I canT give any value 12:22 rapacity: you can just put any/c for value? 12:22 rapacity: to allow any kind of value 12:23 (quit) Tyr42: Quit: Leaving. 12:24 cmk91: Noo in Drracket I can SAY 12:27 (join) bluezenix 12:30 cmk91: can you same example about volue 12:31 cmk91: value 12:34 (join) Tyr42 12:34 (join) mithos28 12:34 rapacity: cmk91: check http://docs.racket-lang.org/data/Imperative_Queues.html?q=queue there's another queue implementation with examples 12:36 (join) dzhus 12:36 (join) Demosthenes 12:37 (quit) cmk91: Ping timeout: 245 seconds 12:38 (join) cmk91 12:38 (join) gciolli 12:39 cmk91: i think i understand thank you 12:39 (quit) bluezenix: Quit: Leaving. 12:40 (join) noam__ 12:44 (quit) noam_: Ping timeout: 260 seconds 12:56 (quit) gciolli: Ping timeout: 240 seconds 12:58 (nick) LeNsTR -> LeNsTR|off 12:58 (quit) dme: Ping timeout: 240 seconds 13:00 (quit) cmk91: Quit: Page closed 13:06 (nick) LeNsTR|off -> LeNsTR 13:13 (join) bluezenix 13:14 (join) mut 13:14 mut: hi everyonE 13:14 mut: stack anD queue with pop head push empty do you knOW HOW THİS CODE? 13:15 (join) noam 13:16 (join) dnolen_ 13:16 (join) mam 13:18 mam: do you know about the stack anD queue with drracket its too importenT FOR ME pls help someonE ME!!!!!!!!!!!!!!!!!!!!!!!, 13:18 (quit) noam__: Ping timeout: 240 seconds 13:18 (join) anRch 13:18 (quit) dnolen: Ping timeout: 245 seconds 13:19 (quit) mut: Ping timeout: 245 seconds 13:20 mam: in stack and queue it has pop head push empty codes I never seen Before in drracket 13:20 mam: heyyy guyyys help me 13:23 mam: guyyyys its too importenT for me how can I finD THİS code? 13:24 (quit) bluezenix: Quit: Leaving. 13:24 jonrafkind: why don't you ask your teacher 13:28 mam: because my teacher didnNt teach me 13:29 mam: so I'm askinG YOU 13:29 mam: if I KNOw I have Not ask you 13:29 (quit) Tyr42: Quit: Leaving. 13:30 rapacity: YEah lOL 13:30 mam: hey guys help me 13:30 mam: rapacity pls help me 13:31 Diarmid: mam: Adopt a less irritating conversational method, and try to do some work on your own, and you'll have more success. People have pointed you to the documentation for queues. Just read what it says. 13:33 (join) Kaylin 13:35 mam: ı understanD What you say bUT I canT RUN 13:35 mam: how can I write this code 13:37 (quit) MayDaniel: Read error: Connection reset by peer 13:38 mam: why donT you help me ı do noT understanD 13:39 mam: noone use drracket in my araunD 13:39 mam: ı CAN help in MY ARAOUN 13:39 mam: my last chanGE İS HEAR 13:41 Kaylin isn't sure what that meant. 13:41 jonrafkind: 'my last chance is here' 13:42 jonrafkind: don't you ever decipher drunk text messages? 13:44 (join) bluezenix 13:44 (join) MayDaniel 13:45 Diarmid: mam: Can WrIte coD bye PreSs keYs. 13:47 mam: (define (eq/c x) (lambda (y) (eq? x y))) (define-struct stack (list p? eq)) (define (initialize p? eq) (make-stack '() p? eq)) (define (push s x) (make-stack (cons x (stack-list s)) (stack-p? s) (stack-eq s))) 13:48 (quit) MayDaniel: Read error: Connection reset by peer 13:53 (quit) anRch: Read error: Connection reset by peer 13:54 (join) anRch 13:57 (part) sindoc 14:08 (quit) Patterngazer_: Quit: Life without danger is a waste of oxygen 14:29 (join) Sicp 14:29 (quit) Sicp: Changing host 14:29 (join) Sicp 14:40 (quit) noam: Read error: Connection reset by peer 14:41 (join) noam 14:51 (quit) anRch: Read error: Connection reset by peer 14:51 (join) anRch 14:52 (quit) rvaiya: Remote host closed the connection 14:59 (quit) dsantiago: Ping timeout: 276 seconds 15:12 (quit) anRch: Quit: anRch 15:18 (join) dsantiago 15:21 (quit) dzhus: Remote host closed the connection 15:25 (join) Tyr42 15:32 (quit) Aune: Quit: Hath Deprated 15:33 (quit) Kaylin: Quit: Leaving. 15:34 (quit) gf3: Excess Flood 15:34 (quit) jonrafkind: Ping timeout: 245 seconds 15:35 (join) gf3 15:49 (quit) Shviller: Ping timeout: 244 seconds 15:50 (join) Shviller 16:25 (join) djcb 16:26 (quit) dnolen_: Ping timeout: 245 seconds 16:32 (join) masm 16:53 (join) gciolli 16:56 (join) jonrafkind 17:01 (quit) gciolli: Ping timeout: 240 seconds 17:02 (quit) Sicp: Quit: Leaving 17:12 (quit) stvn_: Quit: Leaving 17:25 (join) dronf 17:40 (quit) Tyr42: Quit: Leaving. 17:41 (join) Tyr42 17:47 (quit) Tyr42: Quit: Leaving. 17:52 (quit) vkz: Quit: vkz 18:01 (nick) LeNsTR -> LeNsTR|off 18:01 (join) RacketCommitBot 18:01 RacketCommitBot: [racket] plt pushed 2 new commits to master: http://git.io/OU_eLw 18:01 RacketCommitBot: [racket/master] lighten some check syntax arrow colors in white-on-black mode - Robby Findler 18:01 RacketCommitBot: [racket/master] fix a bug I thought I'd fixed a while back...? - Robby Findler 18:01 (part) RacketCommitBot 18:03 Diarmid: Is RSound the preferred way to play sounds using Racket? 18:05 samth: Diarmid: probably 18:05 Diarmid: Thanks. 18:08 (nick) shadgreg` -> shadgregory` 18:10 (nick) shadgregory -> Guest81046 18:10 (quit) shadgregory`: Quit: ERC Version 5.3 (IRC client for Emacs) 18:11 (join) realitygrill 18:11 (join) shadgreg` 18:11 (quit) shadgreg`: Client Quit 18:11 (quit) Guest81046: Remote host closed the connection 18:12 (nick) LeNsTR|off -> LeNsTR 18:15 (join) stvn_ 18:16 (quit) stvn_: Client Quit 18:16 (join) kvda 18:20 (nick) LeNsTR -> LeNsTR|off 18:20 (quit) realitygrill: Quit: realitygrill 18:24 (quit) Demosthenes: Quit: leaving 18:25 (join) shadgregory 18:26 (quit) jeapostrophe: Ping timeout: 272 seconds 18:27 (join) Kaylin 18:46 (quit) hyko: Read error: Connection reset by peer 18:46 (quit) LeNsTR|off: Ping timeout: 252 seconds 18:49 (quit) rmrfchik: Ping timeout: 252 seconds 18:49 (quit) m4burns: Ping timeout: 252 seconds 18:50 (quit) zerokarmaleft: Ping timeout: 252 seconds 18:54 (join) LeNsTRg 18:54 (join) sindoc 18:54 (join) rmrfchik_ 18:54 (join) m4burns_ 18:54 (join) zerokarm1left 18:54 (join) hyko- 18:59 (join) jeapostrophe 19:05 (quit) bluezenix: Quit: Leaving. 19:11 (quit) Kaylin: Quit: the space bovines are invading, I must warn the villagers! 19:19 (quit) Enoria: Ping timeout: 272 seconds 19:19 (join) Enoria 19:21 (join) vkz 19:22 (quit) eMBee: *.net *.split 19:22 (quit) dspt: *.net *.split 19:22 (quit) noelw: *.net *.split 19:22 (quit) asumu: *.net *.split 19:22 (quit) Fulax: *.net *.split 19:22 (quit) abbe: *.net *.split 19:22 (quit) kanak: *.net *.split 19:22 (quit) rudybot: *.net *.split 19:22 (quit) tewk: *.net *.split 19:22 (quit) ivan`: *.net *.split 19:22 (quit) ec: *.net *.split 19:24 (join) ivan` 19:25 (join) bmp 19:28 (join) eMBee 19:28 (join) dspt 19:28 (join) noelw 19:28 (join) asumu 19:28 (join) Fulax 19:28 (join) abbe 19:28 (join) kanak 19:28 (join) rudybot 19:28 (join) tewk 19:28 (join) ec 19:34 (quit) mceier: Quit: leaving 19:45 (quit) vkz: Quit: vkz 19:54 (quit) bluephoenix47: Ping timeout: 252 seconds 20:01 (quit) PfhorSlayer: 20:03 (join) Demosthenes 20:14 (quit) noam: Read error: Connection reset by peer 20:15 (join) noam 20:23 (nick) samth -> samth_away 20:24 (join) jrslepak 20:40 (quit) jonrafkind: Ping timeout: 252 seconds 20:43 (quit) jeapostrophe: Ping timeout: 240 seconds 20:43 (join) jeapostrophe 21:31 (join) Tyr42 21:33 (quit) masm: Quit: Leaving. 21:45 (quit) kvda: Read error: Operation timed out 21:53 (quit) jeapostrophe: Ping timeout: 260 seconds 21:58 (quit) Demosthenes: Ping timeout: 252 seconds 22:34 (quit) cdidd: Remote host closed the connection 22:35 (join) sindoc1 22:35 (quit) sindoc: Read error: Connection reset by peer 22:35 (join) sindoc 22:35 (quit) sindoc1: Read error: Connection reset by peer 22:36 (join) sindoc1 22:36 (quit) sindoc: Read error: Connection reset by peer 22:38 (join) sindoc 22:38 (quit) sindoc1: Read error: Connection reset by peer 22:39 (join) sindoc1 22:39 (quit) sindoc: Read error: Connection reset by peer 22:40 (join) sindoc 22:40 (quit) sindoc1: Read error: Connection reset by peer 22:42 (join) realitygrill 22:42 (join) sindoc1 22:42 (quit) sindoc: Read error: Connection reset by peer 22:43 (join) sindoc 22:43 (quit) sindoc1: Read error: Connection reset by peer 22:45 (join) sindoc1 22:45 (quit) sindoc: Read error: Connection reset by peer 22:46 (quit) bmp: Remote host closed the connection 22:46 (quit) sindoc1: Read error: Connection reset by peer 22:46 (join) sindoc 22:46 (join) bmp 22:47 (join) sindoc1 22:47 (quit) sindoc: Read error: Connection reset by peer 22:47 (join) sindoc 22:48 (quit) sindoc1: Read error: Connection reset by peer 22:48 (join) sindoc1 22:48 (quit) sindoc: Read error: Connection reset by peer 22:49 (join) sindoc 22:49 (quit) sindoc1: Read error: Connection reset by peer 22:54 (join) sindoc1 22:54 (quit) sindoc: Read error: Connection reset by peer 22:55 (join) sindoc 22:55 (quit) sindoc1: Read error: Connection reset by peer 22:56 (join) sindoc1 22:56 (quit) sindoc: Read error: Connection reset by peer 22:57 (join) sindoc 22:57 (quit) sindoc1: Read error: Connection reset by peer 22:58 (join) sindoc1 22:58 (quit) sindoc: Read error: Connection reset by peer 22:59 (join) sindoc 22:59 (quit) sindoc1: Read error: Connection reset by peer 22:59 (join) sindoc1 22:59 (quit) sindoc: Read error: Connection reset by peer 23:02 (quit) Tyr42: Quit: Leaving. 23:21 (join) kvda 23:35 (quit) dronf: Ping timeout: 240 seconds 23:36 (join) Kaylin 23:41 (join) jonrafkind