2015-12-28T01:28:04Z lnostdal_ quit (Ping timeout: 265 seconds) 2015-12-28T01:43:50Z lnostdal_ joined #sbcl 2015-12-28T02:01:17Z Quadrescence quit (Quit: Leaving) 2015-12-28T02:12:59Z Quadrescence joined #sbcl 2015-12-28T02:15:03Z Quadrescence quit (Client Quit) 2015-12-28T02:16:54Z Quadrescence joined #sbcl 2015-12-28T02:16:56Z Quadrescence quit (Changing host) 2015-12-28T02:16:56Z Quadrescence joined #sbcl 2015-12-28T02:17:34Z scymtym quit (Ping timeout: 250 seconds) 2015-12-28T02:42:15Z Xof quit (Ping timeout: 240 seconds) 2015-12-28T02:50:40Z lnostdal__ joined #sbcl 2015-12-28T02:53:35Z lnostdal_ quit (Ping timeout: 240 seconds) 2015-12-28T03:06:30Z lnostdal_ joined #sbcl 2015-12-28T03:10:23Z lnostdal__ quit (Ping timeout: 276 seconds) 2015-12-28T05:10:12Z dto joined #sbcl 2015-12-28T05:10:55Z dto: hi. how do i get the length of the incoming TCP packet on a stream made with USOCKET:SOCKET-SERVER? 2015-12-28T05:11:44Z dto: on the server i want to transmit about 1000 bytes at 60 times per second, 2015-12-28T05:11:53Z dto: maybe i'm doing this wrong 2015-12-28T05:21:11Z dto: hmm. 2015-12-28T06:49:05Z flip214: dto: a "stream" is defined as having no "packets". only a stream of bytes. 2015-12-28T06:49:27Z flip214: you can fetch the available data via READ 2015-12-28T06:49:44Z flip214: and possible ask for the TCP buffer size via some getsockopt() C call. 2015-12-28T06:58:08Z dto: hmm 2015-12-28T07:04:23Z dto quit (Ping timeout: 276 seconds) 2015-12-28T07:06:48Z flip214: for "packet" communication you need a packet socket, like UDP. 2015-12-28T07:26:23Z dto joined #sbcl 2015-12-28T07:27:14Z dto: so, it seems i have the correct stream now... but how do i read/write the bytes to these USOCKET-STREAMS http://pastebin.com/raw/JU1uyjvT 2015-12-28T07:27:30Z dto: it doesn't seem to want to write an array of unsigned byte 2015-12-28T07:27:43Z dto: oh wait. 2015-12-28T07:36:27Z dto: never mind that's fixed. 2015-12-28T07:40:53Z dto: ok so now i need to figure out what's causing the connection to drop. 2015-12-28T07:43:26Z brucem quit (Ping timeout: 250 seconds) 2015-12-28T07:43:45Z |3b| quit (Ping timeout: 260 seconds) 2015-12-28T07:44:39Z edgar-rft quit (Quit: edgar-rft) 2015-12-28T07:47:11Z Xof joined #sbcl 2015-12-28T07:48:07Z ChanServ has set mode +o Xof 2015-12-28T07:48:48Z PuercoPop joined #sbcl 2015-12-28T07:52:26Z dto quit (Remote host closed the connection) 2015-12-28T08:01:27Z brucem joined #sbcl 2015-12-28T08:01:28Z |3b| joined #sbcl 2015-12-28T09:13:06Z Bicyclidine quit (Ping timeout: 240 seconds) 2015-12-28T09:20:15Z whiteline quit (Ping timeout: 240 seconds) 2015-12-28T09:36:25Z stassats joined #sbcl 2015-12-28T09:40:05Z Bicyclidine joined #sbcl 2015-12-28T09:40:35Z stassats quit (Ping timeout: 245 seconds) 2015-12-28T09:41:18Z stassats joined #sbcl 2015-12-28T09:45:25Z lnostdal_ quit (Ping timeout: 265 seconds) 2015-12-28T09:45:56Z stassats quit (Ping timeout: 272 seconds) 2015-12-28T09:46:46Z stassats joined #sbcl 2015-12-28T09:49:16Z lnostdal_ joined #sbcl 2015-12-28T09:51:16Z stassats quit (Ping timeout: 250 seconds) 2015-12-28T09:52:16Z stassats joined #sbcl 2015-12-28T10:12:09Z whiteline joined #sbcl 2015-12-28T10:17:58Z attila_lendvai joined #sbcl 2015-12-28T10:17:58Z attila_lendvai quit (Changing host) 2015-12-28T10:17:58Z attila_lendvai joined #sbcl 2015-12-28T11:14:44Z whiteline quit (Ping timeout: 246 seconds) 2015-12-28T11:38:14Z scymtym joined #sbcl 2015-12-28T11:51:27Z myrkraverk joined #sbcl 2015-12-28T11:52:30Z whiteline joined #sbcl 2015-12-28T11:53:23Z myrkraverk: When I use WITH-OPEN-FILE and :EXTERNAL-FORMAT :SJIS ; I get a different error than when I read the file as binary and use SB-EXT:OCTETS-TO-STRING with :EXTERNAL-FORMAT :SJIS ; upon encountering invalid byte sequences. 2015-12-28T11:53:28Z myrkraverk: Why is that? Is it intentional? 2015-12-28T11:54:08Z myrkraverk: The former gives SB-INT:STREAM-DECODING-ERROR, while the latter causes SB-IMPL::INVALID-SHIFT_JIS-CONTINUATION-BYTE 2015-12-28T11:56:06Z stassats quit (Ping timeout: 256 seconds) 2015-12-28T11:57:48Z stassats joined #sbcl 2015-12-28T12:38:29Z Xof: the invalid-foo-continuation-byte is a subclass of octet-decoding-error 2015-12-28T12:38:37Z Xof: which is a subclass of decoding-error, I hope 2015-12-28T12:53:07Z prxq joined #sbcl 2015-12-28T12:56:38Z myrkraverk: Hmm, ok. 2015-12-28T13:00:26Z attila_lendvai quit (Ping timeout: 240 seconds) 2015-12-28T13:08:39Z flip214: nyef: is NFS performance still an open issue? 2015-12-28T13:09:45Z nyef: Not currently., no. 2015-12-28T13:09:58Z nyef: But thank you. 2015-12-28T13:10:25Z nyef: I ended up installing git on my target machine. 2015-12-28T13:10:28Z stassats: NFS is an issue 2015-12-28T13:10:40Z stassats: as a whole 2015-12-28T13:12:14Z myrkraverk: Is SBCL 1.2.9 really old by now? 2015-12-28T13:12:37Z myrkraverk: I don't seem to find INVALID-SHIFT_JIS-CONTINUATION-BYTE in the current git. 2015-12-28T13:13:10Z nyef: Are you looking in the built system, or in source? 2015-12-28T13:13:33Z stassats: it's there alright 2015-12-28T13:14:18Z myrkraverk: In the source. 2015-12-28T13:14:33Z myrkraverk: Maybe it gets generated, ok. 2015-12-28T13:17:54Z flip214: stassats: what would you recommend instead, and for which design considerations? 2015-12-28T13:18:28Z flip214: ie. for a simple unix/unix file sharing (cross-compilation for sbcl ;) it looks like the simplest way to me. 2015-12-28T13:19:56Z stassats: rsync 2015-12-28T13:20:17Z flip214: ouch ;) 2015-12-28T13:30:00Z eudoxia joined #sbcl 2015-12-28T13:30:56Z nyef: In my case, I'm not even cross-compiling. Tramp is mostly fine for editing files, and I have self-hosted builds, but git doesn't seem to be part of a default install for several things, and on at least one of my machines simply can't securely connect to a remote repository for some reason. 2015-12-28T13:35:52Z nimiux quit (Remote host closed the connection) 2015-12-28T14:28:34Z myrkraverk: A hander for OCTET-DECODING-ERROR is not able to modify the array being decoded, right? It can only USE-VALUE or maybe throw a different kind of error, right? 2015-12-28T14:31:46Z gko: Hi: does SBCL run-program + :output :steam work on Windows? 2015-12-28T14:43:20Z Bicyclidine quit (Ping timeout: 246 seconds) 2015-12-28T14:43:47Z eudoxia quit (Quit: Leaving) 2015-12-28T14:45:24Z brucem quit (Changing host) 2015-12-28T14:45:24Z brucem joined #sbcl 2015-12-28T15:05:52Z les quit (Ping timeout: 265 seconds) 2015-12-28T15:06:07Z les joined #sbcl 2015-12-28T15:07:55Z PuercoPop: scymtym: I saw you added a comment on ir1tran-lambda.lisp asking where compiler-overview.tex was. The answer is in cmucl's source code. (See: https://github.com/rtoy/cmucl/blob/master/src/docs/internals/compiler-overview.tex and https://common-lisp.net/project/cmucl/doc/CMUCL-design.pdf ) 2015-12-28T15:10:05Z Bicyclidine joined #sbcl 2015-12-28T15:32:00Z stassats: after fifty different iterations, zeroed in on a solution for the check-bound deletion note 2015-12-28T15:32:48Z stassats: delaying the warning until ir2 conversion was clear from the start, but couldn't quite get it right 2015-12-28T15:33:04Z stassats: finally, defoptimizer ir2-convert on %bound-check does the job 2015-12-28T15:34:19Z stassats: still, the general problem of missed dead code elimination and type mismatches persists 2015-12-28T15:34:56Z stassats: e.g. a check is done in another function, hard to reason about that 2015-12-28T15:35:12Z stassats: maybe seeing if the value is somehow related to a function argument 2015-12-28T15:43:06Z lnostdal_ quit (Ping timeout: 240 seconds) 2015-12-28T15:43:53Z Bicyclidine quit (Ping timeout: 246 seconds) 2015-12-28T16:02:19Z attila_lendvai joined #sbcl 2015-12-28T16:02:19Z attila_lendvai quit (Changing host) 2015-12-28T16:02:19Z attila_lendvai joined #sbcl 2015-12-28T16:07:10Z attila_lendvai quit (Read error: Connection reset by peer) 2015-12-28T16:07:52Z lnostdal joined #sbcl 2015-12-28T16:09:14Z attila_lendvai joined #sbcl 2015-12-28T16:09:14Z attila_lendvai quit (Changing host) 2015-12-28T16:09:14Z attila_lendvai joined #sbcl 2015-12-28T17:10:42Z Bicyclidine joined #sbcl 2015-12-28T17:46:15Z luis` is now known as luis 2015-12-28T17:50:48Z eudoxia joined #sbcl 2015-12-28T18:18:52Z attila_lendvai quit (Read error: Connection reset by peer) 2015-12-28T18:21:02Z attila_lendvai joined #sbcl 2015-12-28T18:21:02Z attila_lendvai quit (Changing host) 2015-12-28T18:21:02Z attila_lendvai joined #sbcl 2015-12-28T18:31:17Z stassats quit (Ping timeout: 265 seconds) 2015-12-28T18:34:07Z stassats joined #sbcl 2015-12-28T19:16:59Z stassats quit (Ping timeout: 264 seconds) 2015-12-28T19:18:09Z stassats joined #sbcl 2015-12-28T19:51:43Z edgar-rft joined #sbcl 2015-12-28T20:05:52Z eudoxia quit (Quit: Leaving) 2015-12-28T21:53:55Z stassats quit (Ping timeout: 240 seconds) 2015-12-28T22:06:44Z yuankode joined #sbcl 2015-12-28T23:15:27Z specbot quit (Disconnected by services) 2015-12-28T23:15:28Z minion quit (Disconnected by services) 2015-12-28T23:15:30Z specbot joined #sbcl 2015-12-28T23:15:33Z minion joined #sbcl 2015-12-28T23:18:39Z pkhuong quit (Ping timeout: 250 seconds) 2015-12-28T23:20:34Z pkhuong joined #sbcl 2015-12-28T23:20:58Z pkhuong is now known as Guest22456 2015-12-28T23:34:21Z prxq quit (Remote host closed the connection) 2015-12-28T23:34:30Z DeadTrickster quit (Ping timeout: 255 seconds) 2015-12-28T23:34:48Z DeadTrickster joined #sbcl 2015-12-28T23:44:06Z attila_lendvai quit (Ping timeout: 240 seconds)