00:10 (quit) ctgpi: Quit: ctgpi 00:52 (quit) offby1: Remote host closed the connection 01:06 mattmight: Whenever I search the help desk, my browser hangs for a few seconds. Is this a standard problem? 01:42 jonrafkind: does it happen on docs.racket-lang.org too? 02:30 (quit) rbarraud_: Remote host closed the connection 02:31 (join) rbarraud_ 02:33 (quit) Yann3: Ping timeout: 252 seconds 02:35 (quit) jonrafkind: Ping timeout: 240 seconds 02:35 (quit) rbarraud_: Remote host closed the connection 02:35 (join) rbarraud_ 02:39 (quit) rbarraud_: Remote host closed the connection 02:40 (join) rbarraud_ 02:52 (join) Yann 02:52 (nick) Yann -> Guest40585 04:57 (join) spidermario 04:58 (part) spidermario 05:06 (join) MayDaniel 05:08 (join) masm 05:19 (quit) rbarraud_: Read error: Connection reset by peer 05:20 (join) rbarraud_ 05:24 (quit) rbarraud_: Remote host closed the connection 05:24 (join) rbarraud_ 05:38 (quit) rbarraud_: Remote host closed the connection 05:39 (join) rbarraud_ 06:12 (quit) rbarraud_: Read error: Connection reset by peer 07:16 (quit) hanDerPeder: Read error: Operation timed out 07:22 (join) hanDerPeder 08:54 (quit) MayDaniel: 09:00 (join) MayDaniel 09:01 (join) ctgpi 09:01 (quit) ctgpi: Client Quit 09:18 (join) samth 09:43 (join) Yann 09:43 (quit) Guest40585: Ping timeout: 252 seconds 09:43 (nick) Yann -> Guest31917 10:50 (join) offby1 11:05 (join) rmitt 11:18 (join) anRch 12:06 tewk: tewk@tan:~/racketNAS/CG$ rktl -ltm errortrace cg.rkt SERIAL CLASS=S 12:06 tewk: match: expected at least one expression on the right-hand side in: (((CG _ 0 _))) 12:06 tewk: === context === 12:07 tewk: /home/tewk/srcs/mplt/collects/racket/match/gen-match.rkt:37:15: for-loop 12:07 tewk: /home/tewk/srcs/mplt/collects/racket/match/gen-match.rkt:19:0: core 12:07 tewk: /home/tewk/srcs/mplt/collects/errortrace/errortrace-lib.rkt:398:2: errortrace-annotate 12:07 tewk: /home/tewk/srcs/mplt/collects/errortrace/errortrace-lib.rkt:441:4 12:07 tewk: standard-module-name-resolver 12:07 tewk: samth: Could match give me a syntax location for (((CG _ 0 _)))? 12:14 (join) jonrafkind 12:22 (quit) anRch: Quit: anRch 12:22 (quit) rmitt: Quit: Page closed 12:31 (join) anRch 12:53 (quit) anRch: Quit: anRch 12:58 (part) Guest31917 13:16 (quit) martinhex: Read error: Operation timed out 13:17 jonrafkind: does this seem like good behavior? (append '() 1) => 1 13:18 jonrafkind: as oposed to append throwing an error that 1 is not a list 13:18 (join) martinhex 13:19 offby1: _I_ like the idea, but I suspect wiser minds than I have a good reason for the way it is 13:19 offby1: although ... 13:19 offby1: maybe I'd have expected (append '() 1) => '(1) 13:21 jonrafkind: yes I would prefer either an error or '(1) 13:21 jonrafkind: basically I was doing (map ... (append ..)) and got an error because the result of append was not a list 13:21 jonrafkind: so it threw me for a loop 13:46 stamourv: jonrafkind: wow, that looks like a misfeature 13:47 stamourv: had no idea it existed 13:47 jonrafkind: the docs claim its supposd to be that way.. 13:47 jonrafkind: i would prefer append-improper to accept a non-list as the last element or something 13:47 stamourv: (append '(1 2) 3) => '(1 2 . 3) 13:47 jonrafkind: but i guess that would break a lot of code 13:47 stamourv: bleh 13:47 jonrafkind: i could have `append-only-lists' but then i would have to remember to use it 13:48 stamourv: I've seen this behavior (weird append) named "snoc" 13:48 stamourv: sounds more appropriate 13:48 jonrafkind: dneppa 13:51 samth: that error requires increasing complexity 13:51 samth: right now, append can easily share structure 13:52 stamourv: checking pair? on the args would already be an improvement 13:53 jonrafkind: share what structure 13:53 jonrafkind: the implemenation for append? 13:53 samth: share the tail of the list 13:54 jonrafkind: thats good.. who uses that? 13:54 samth: as in (eq? x (cdr (append (list 1) x))) 13:54 samth: you use it, by having finite memory 13:55 jonrafkind: i dont get it 13:56 jonrafkind: why is having improper lists important 13:57 (join) anRch 14:03 jonrafkind: anyway, anyone want this macro? (list-match ((_ _ a _ ...) _ ...) '((7 6 5 4 3 2 1) 8 9)) => 5 14:03 jonrafkind: seems like an improvement over cadddadddddr 14:06 stamourv: I think you got the name backward 14:07 jonrafkind: match-list? 14:07 stamourv: no the caaddaadr 14:08 stamourv: match-list sounds like it would pattern match, then create a list 14:08 jonrafkind: whats backwards about acdadadradadrdr 14:09 stamourv: that one should have started with an a 14:09 stamourv: but then I realized that the name you gave didn't have anything to do with your macro 14:09 jonrafkind: seems like an improvement over cr 14:09 jonrafkind: ha yea 14:10 jonrafkind: english.. the most efficient medium evar! 14:39 clklein: Is there an easy way to see all the commits PLT commits made on the main branch after 5.0.1 was branched and before 5.0.2 was branched? 14:42 tewk: git log 5.0.1SHA1...5.0.2SHA1 14:43 clklein: Yep, pretty easy :) 14:51 (quit) MayDaniel: 14:56 clklein: Maybe I spoke too soon. I'm having trouble finding those SHA1s. 14:59 clklein: These look promising, but they're an invalid revision range: http://tinyurl.com/363dhon and http://tinyurl.com/39a9kjj 15:07 tewk: clklein: git log v5.0.1..origin/release 15:08 clklein: tewk: Ah, are those names called "tags?" 15:09 tewk: v5.0.1 is a tag 15:09 tewk: git tag -l 15:10 tewk: origin/release is the release branch 15:11 clklein: got it 15:11 clklein: thanks! 15:22 (join) jeapostrophe 15:45 (quit) anRch: Quit: anRch 15:52 (join) carleastlund 16:12 samth: jeapostrophe, http://www.iro.umontreal.ca/~gambit/repo/.cgit.cgi/Gambit/tree/lib/_io.scm#n11064 16:12 (notice) rudybot: http://tinyurl.com/2uabkaz 16:12 samth: although vincent says to beware 16:12 jeapostrophe: why does he say that? 16:12 jeapostrophe: the docs contain a bnf that might be easier to grab 16:12 samth: he says that the implementation is pretty tied up in implementation details 16:12 samth: of gambit's reader 16:12 jeapostrophe: and the bnf encodes the precedence rules 16:25 stamourv: jeapostrophe: I hacked on that code a bit, and it's fairly convoluted 17:01 (join) MayDaniel 17:22 tewk: Is there a racket function to get flonums to print in a fixed size i.e. 0.2747031545134E-01 17:24 samth: tewk, look at format in `srfi/48' 17:25 tewk: samth: thanks 17:55 (quit) MayDaniel: 20:02 (quit) carleastlund: Quit: carleastlund 20:04 (quit) rudybot: Ping timeout: 276 seconds 20:05 (join) rudybot 20:33 (quit) jonrafkind: Ping timeout: 272 seconds 21:19 (quit) Lajla: Ping timeout: 272 seconds 21:46 (join) Lajla 21:47 (join) b-man_ 21:57 (quit) jao: Read error: Connection reset by peer 22:24 (join) offby2 22:31 (quit) masm: Quit: Leaving. 22:38 (quit) offby2: Quit: Colloquy for iPad - http://colloquy.mobi 22:46 (quit) Lajla: Ping timeout: 240 seconds 22:58 (join) Lajla 23:12 (quit) b-man_: Ping timeout: 276 seconds 23:44 (join) dnolen 23:50 (join) jonrafkind