00:02:18 what does (require 'arrays) stand for, it imports some kind of srfi ? 00:02:34 *(require 'array) 00:03:00 I guess 00:03:12 well, it's SLIB, but that's about all I know 00:03:13 I barely know any more about it than you do. It's like six years old. 00:03:24 ijp: good point. If it's SLIB, then the implementation was probably SCM 00:03:40 although it shouldn't matter; any R5RS-conforming implementation that also works with SLIB should work. 00:03:44 Which basically means SCM :) 00:03:47 maybe guile 00:03:53 scm isn't r5rs conforming, is it? 00:04:02 pumpkin360: hint: nobody uses SCM any more, as far as I know. 00:04:24 Certainly it's not mentioned here much 00:04:25 (at all?) 00:04:40 offby1: You mean I should use Racket ? :( 00:04:47 hmm 00:04:55 racycle [~racycle@75-25-129-128.lightspeed.sjcpca.sbcglobal.net] has joined #scheme 00:05:08 >I've never heard of scm 00:05:09 pumpkin360: you can use whatever you want, but your choice dictates the help you can recieve 00:05:10 pumpkin360: I didn't say that 00:05:25 see, that ijp is a sharp fellow 00:05:36 Oh right, SCM 00:06:56 I wasn't aware that SCM was ported to anything recent 00:07:08 but now that I look... it's actively maintained??? 00:07:10 me neither 00:08:14 looks that way 00:10:43 ok, I missunderstood a bit. That helps much. 00:22:06 ehaliewicz [~user@50-0-51-11.dsl.static.sonic.net] has joined #scheme 00:30:21 bay 00:30:25 -!- pumpkin360 [~main@aggm182.neoplus.adsl.tpnet.pl] has quit [Quit: WeeChat 0.4.1] 00:31:19 *offby1* howls 00:31:23 hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has joined #scheme 00:59:55 Hello, I apologize for interrupting with such a simple question, but I'm stuck with one problem, for over an hour. Tried solving it, googled it also, with no success. The question is, how to create a number, from list of numbers, using only foldr/foldl function. ie: (2 3 4) -> 234? 01:01:26 (define (list->num lon) foldr/foldl 3) 01:01:31 that will always return 3. 01:01:37 thus fulfilling your requirements. 01:02:02 less snarkily: 01:02:11 if the list were empty, your function should probably return 0. 01:02:21 if the list contains just one number, your function should probably just return it. 01:02:45 if the list has more than one number, it should probably ... ? 01:02:48 fill in the blank 01:02:59 I suspect there's gonna be some multiplyin' by 10 and some addin' goin' on 01:03:04 *shrug* 01:03:27 just can't help myself but when a question sounds like homework I get all crazy 01:04:36 tiksa: have you tried writing a version with explicit recursion first? 01:05:10 ijp, Yes. it works fine. 01:05:17 have you tried paying a grad student? 01:05:23 oops, did I say that out loud? 01:05:29 tiksa: okay then, and you know what the definitions of foldl and foldr are? 01:06:13 try placing them beside the recursive version of your function, and meditating a while :) 01:06:37 I tried that but they keep chasing each other around. 01:08:29 -!- tenq|away is now known as tenq 01:08:57 ijp, I did as you suggested, just seems i did not meditate long enough, will meditate more. 01:09:25 in this case, I'll give you a hint and say it's foldl you want 01:10:24 foldr is doable, but it will be a lot more unpleasant 01:10:28 um 01:10:29 (apply conc (map (lambda (x) (integer->char (+ (char->integer #\0) x))) '(1 2 3))) 01:11:11 defanor_: which doesn't meet the specification given 01:11:59 yep 01:12:23 "specification"? 01:13:07 offby1: "using foldl/foldr" 01:13:13 oh, thought that i've just forgot about fold, but there's a number required 01:19:18 if there's no free variables in a lisp-like language with applicative order, what bad could happen if i'll insert arguments to their places (not to env/frames) at application time? 01:22:06 er, what? 01:23:54 for example, ((lambda (lambda 2)) (lambda 1)) evaluates to (lambda 2) and (lambda 1) in env, but i want to make it (lambda (lambda 1)), skipping the env 01:24:08 *with de bruijn indicies 01:24:14 -!- zacts [~zacts@unaffiliated/zacts] has quit [Read error: Connection reset by peer] 01:24:48 but not sure how it'll work in some more complex cases 01:25:24 ((buffalo (buffalo 2)) (buffalo 1)) evaluates to (buffalo 2) and (buffalo 1) in env, but i want to make it (buffalo (buffalo 1)), skipping the env 01:25:38 s/buffalo/ginger/ 01:25:40 etc 01:26:07 um, sorry, i'll rewrite it now 01:27:03 defanor_: so what you want to know is how you implement an evaluator that uses debruijn indices? 01:27:04 ((lambda (x) (lambda (y) x)) (lambda (z) z)) evaluates to (lambda (y) x) and x = (lambda (z) z) in env 01:27:42 -!- hashcat [~chatzilla@27.242.178.241] has quit [Ping timeout: 264 seconds] 01:27:54 no, i'm trying to ask about application 01:28:26 wait a sec, will try to rewrite a question 01:33:03 defanor_: an environment is not really necessary 01:33:22 it is, if you like, a cheatsheet, telling you which substitutions you still need to perform 01:33:47 but you can just perform those substitions 01:34:09 and with debruijn indices there is no variable capture, so this is fine to do 01:34:30 oh, thanks. rewriting the question was hard, but that's the answer for that question 01:34:50 just had a doubt 01:36:08 -!- RageOfThou [~RageOfTho@77.221.25.95] has quit [Ping timeout: 256 seconds] 01:36:25 for my next psychic trick, I will predict a future week's lottery numbers: 3 15 16 24 46 47, and the bonus ball 11 01:37:30 so make sure to buy that lottery ticket in the appropriate week 01:37:49 lol 01:41:54 hashcat [~chatzilla@27.243.21.241] has joined #scheme 01:46:44 rudybot: (foldl (lambda (x y) (+ (* y 10) x)) 0 '(1 2 3)) 01:46:45 tiksa: your sandbox is ready 01:46:45 tiksa: ; Value: 123 01:47:04 -!- yzd is now known as microcode 01:47:17 there you are :) 01:47:26 ijp, thank you :) 01:47:29 Ripp__ [~textual@reccev-wism-wlan-189-40.AirBears.Berkeley.EDU] has joined #scheme 01:47:36 I don't think it's quite as true for foldl, but for foldr, you can do it pretty mechanically 01:48:10 I'll whip up and paste a quick example 01:49:38 *offby1* always names the args "accumulator" and "element" 01:52:56 SrPx [~SrPx@177.133.128.167] has joined #scheme 01:56:05 -!- Ripp__ [~textual@reccev-wism-wlan-189-40.AirBears.Berkeley.EDU] has quit [Quit: Ripp__] 02:00:10 tiksa: https://gist.github.com/ijp/6408630 02:00:13 -!- mrowe is now known as mrowe_away 02:00:55 A similar procedure works for foldl 02:01:46 In some cases, that procedure is a bit complicated, but the named reference shows how to do it for more complicated examples 02:04:28 -!- mrowe_away is now known as mrowe 02:08:13 hold on, I'll add your function as a more complex example of how to do foldr 02:10:42 ddp [~ddp@wsip-68-110-169-4.ph.ph.cox.net] has joined #scheme 02:11:52 -!- ddp [~ddp@wsip-68-110-169-4.ph.ph.cox.net] has quit [Client Quit] 02:14:55 tiksa: okay, that gist now shows how you can do list->number as a fold-right 02:15:15 -!- weie [~eie@softbank221078042071.bbtec.net] has quit [Quit: Leaving...] 02:16:20 the idea is that you need to take the varying loop data, and make it invariant, by turning the return value into a first class function 02:19:43 ijp, Thank you, you are very kind, helped me a lot. I will go and meditate more on this, and also try to use it on other problems. :) 02:23:23 -!- bjz_ [~brendanza@125.253.99.68] has quit [Read error: Connection reset by peer] 02:23:28 bjz [~brendanza@125.253.99.68] has joined #scheme 02:32:21 tiksa: this might amuse you -- https://gist.github.com/6408758 -- it's me figuring out how to do it a couple of hours ago 02:32:27 that's pretty much how I work :) 02:37:32 rudybot: (foldl (lambda args (cons 'f args)) 'base '(1 2 3 4 5)) 02:37:33 ijp: your sandbox is ready 02:37:33 ijp: ; Value: '(f 5 (f 4 (f 3 (f 2 (f 1 base))))) 02:37:37 rudybot: (foldr (lambda args (cons 'f args)) 'base '(1 2 3 4 5)) 02:37:37 ijp: ; Value: '(f 1 (f 2 (f 3 (f 4 (f 5 base))))) 02:37:43 offby1: you tried that before ^^ 02:38:05 -!- pnkfelix [~Adium@bas75-2-88-170-201-21.fbx.proxad.net] has quit [Quit: Leaving.] 02:38:52 the bot on #haskell has something similar for letting you do dummy applications 02:41:22 offby1, ok, same here. 02:42:21 ijp: I don't think I've done that actually 02:42:34 of course, that one only actually works because fold isn't using the results of the function calls internally 02:43:05 it wouldn't work for, say, filter 02:43:07 Hi, "The montreal scheme/lisp user group" link on the front page schemers.org is dead :( 02:43:18 rudybot: (filter (lambda args (cons 'f args)) '(a b c d e f g)) 02:43:18 ijp: ; Value: '(a b c d e f g) 02:43:24 anyone knows ? 02:44:11 but it's a clever trick when it does work 02:44:45 Ripp__ [~textual@reccev-wism-wlan-190-236.AirBears.Berkeley.EDU] has joined #scheme 02:45:25 zacts [~zacts@unaffiliated/zacts] has joined #scheme 02:45:25 is there any scheme implementation(s) with interactive profiling? i want to see at runtime how much time every function consumes 02:45:28 fridim_: I have no idea who maintains that page. 02:45:38 I wouldn't be surprised if they're never here. 02:45:50 defanor_: I assume most good ones do 02:46:04 in guile, you can use the ,profile command at the repl 02:46:10 Oh! Shiriram. 02:46:15 thanks 02:46:21 as long as the function runs long enough for it to actually sample it 02:47:25 racket has a new "optimisation coach" which I have somehow managed not to use yet 02:47:30 if your implementation targets the JVM there are nice profilers for java 02:48:24 githogori [~githogori@c-50-156-57-127.hsd1.ca.comcast.net] has joined #scheme 02:49:01 what I actually needed last time I had performance trouble would have been memory access info 02:49:37 because I was paging like a madman in a library 02:51:28 -!- hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has quit [Ping timeout: 246 seconds] 02:51:41 or perhaps a bed-bound hypochondriac with morphine resistance 02:51:57 rudybot: metaphors are hard! 02:51:58 ijp: that scientists oppress thought with their facts and theories, of course. dominating the cognitive landscape with metaphors that deny divergent ways of thinking, etc. etc. 02:52:17 *offby1* was a library page lo many years ago 02:52:37 I must not have been too nerdy, because I don't remember once joking about "page faults" 02:52:50 or perhaps my brain has graciously elided those memories 02:53:08 maybe this was so long ago you didn't have virtual memory? 02:54:09 could be! 02:54:13 rudybot: t8 ja en  02:54:13 offby1: Seiko Holdings Corporation 02:54:18 *offby1* makes a note 02:55:07 hmm, I think the  means it's a public company 02:56:09 przl_ [~przlrkt@p5B298D8B.dip0.t-ipconnect.de] has joined #scheme 02:56:41 offby1: is rudybot just scraping google translate? 02:58:25 of course :) 02:58:29 duggiefresh [~duggiefre@c-71-192-255-114.hsd1.ma.comcast.net] has joined #scheme 02:58:31 well, not scraping; it uses the API as God intended 02:58:38 -!- przl [~przlrkt@p5B29804E.dip0.t-ipconnect.de] has quit [Ping timeout: 241 seconds] 02:58:46 I think fsbot still scrapes. Once in a while they yield slightly different results. 02:59:25 I thought the API was removed 02:59:41 *offby1* checks 02:59:59 maybe it's just for new users 03:00:17 guess not -- https://gist.github.com/6408865 03:01:14 https://developers.google.com/translate/v2/faq 03:01:20 ah, I see, it moved to a paid service 03:32:47 -!- preflex [~preflex@unaffiliated/mauke/bot/preflex] has quit [Read error: Operation timed out] 03:33:58 -!- duggiefresh [~duggiefre@c-71-192-255-114.hsd1.ma.comcast.net] has quit [Remote host closed the connection] 03:34:18 -!- dRbiG [drbig@unhallowed.pl] has quit [Ping timeout: 264 seconds] 03:34:24 preflex [~preflex@unaffiliated/mauke/bot/preflex] has joined #scheme 03:35:49 dRbiG [drbig@unhallowed.pl] has joined #scheme 03:40:28 -!- ijp [~user@host31-50-107-143.range31-50.btcentralplus.com] has quit [Quit: The garbage collector got me] 03:41:41 -!- MichaelRaskin [~MichaelRa@195.91.224.161] has quit [Quit: MichaelRaskin] 03:41:52 -!- tiksa [~tiksa@93-87-107-94.dynamic.isp.telekom.rs] has quit [Quit: Pozdrav] 03:48:08 gravicappa [~gravicapp@ppp91-77-174-24.pppoe.mtu-net.ru] has joined #scheme 03:56:03 -!- Ripp__ [~textual@reccev-wism-wlan-190-236.AirBears.Berkeley.EDU] has quit [Quit: Ripp__] 04:18:59 -!- fogus|gone [~fogus@freedom.d-a-s.com] has quit [Ping timeout: 260 seconds] 04:23:52 -!- przl_ [~przlrkt@p5B298D8B.dip0.t-ipconnect.de] has quit [Ping timeout: 246 seconds] 04:25:33 MichaelRaskin [~MichaelRa@195.178.216.22] has joined #scheme 04:27:30 -!- ericmathison [~ericmathi@172-15-249-133.lightspeed.irvnca.sbcglobal.net] has quit [Ping timeout: 264 seconds] 04:33:39 znode [~znode@61.143.60.83] has joined #scheme 04:34:04 ericmathison [~ericmathi@172-15-249-133.lightspeed.irvnca.sbcglobal.net] has joined #scheme 04:46:45 fridim_: Shriram says he's removed that dead link. 04:50:56 przl [~przlrkt@p5B298D8B.dip0.t-ipconnect.de] has joined #scheme 05:01:02 -!- ericmathison [~ericmathi@172-15-249-133.lightspeed.irvnca.sbcglobal.net] has quit [Ping timeout: 240 seconds] 05:10:19 -!- karswell [~user@87.112.183.62] has quit [Ping timeout: 256 seconds] 05:11:49 -!- yacks [~py@103.6.159.99] has quit [Read error: Operation timed out] 05:13:25 yacks [~py@103.6.159.99] has joined #scheme 05:18:28 -!- asumu [~at@2001:470:b:b7:1e6f:65ff:fe23:c3d4] has quit [Ping timeout: 246 seconds] 05:22:12 -!- Necrosporus [~Necrospor@unaffiliated/necrosporus] has quit [Ping timeout: 245 seconds] 05:23:25 -!- davexunit [~user@c-71-232-35-199.hsd1.ma.comcast.net] has quit [Quit: Later] 05:26:28 pcarrier [uid12046@gateway/web/irccloud.com/x-recqntjsumfglplq] has joined #scheme 05:27:30 ijp [~user@host31-50-107-143.range31-50.btcentralplus.com] has joined #scheme 05:28:31 kslqs [6570abb6@gateway/web/freenode/ip.101.112.171.182] has joined #scheme 05:28:36 Here is a challenge: http://pastebin.com/pBJByC75 05:34:47 is that from matasano's crypto thing? 05:34:49 you're asking us to solve a discrete logarithm? 05:34:57 aren't those more or less unsolvable? 05:35:16 offby1: well, it says "a very bad value" so it probably isn't as bad as it seems 05:35:27 ijp: nope 05:35:49 offby1: then again, we all know how comments lie 05:36:13 kslqs: ibm's ponder this? 05:36:40 ijp: no, my friend made it 05:37:14 smooth DLP exponent 05:39:57 My brother is a hairy exponent, but I am a smooth exponent. 05:40:14 -!- githogori [~githogori@c-50-156-57-127.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 05:40:46 bah, geiser keeps dropping me into a super-nested repl 05:41:01 -!- yacks [~py@103.6.159.99] has quit [Quit: Leaving] 05:41:48 basically unusable :( 05:41:51 you mean like in one of those decorating magazines? 05:42:35 offby1: if you get an error in guile, you get put into a subrepl, with commands for debugging, if you then error again, you'll be in a sub-sub-repl 05:43:25 and so on 05:44:23 ah 05:44:29 I can sort of imagine. 05:44:38 I bet it's fun to watch while it's happening 05:45:13 it was working fine earlier, so there must have been some changes on master it doesn't like 05:45:42 -!- offby1 [~user@pdpc/supporter/monthlybyte/offby1] has quit [Quit: switching emacsen] 05:46:17 offby1 [~user@pdpc/supporter/monthlybyte/offby1] has joined #scheme 05:46:46 Anyone? 05:47:22 nobody here but us zombie processes. 05:47:29 hard as it may be to believe, most people don't drop everything to work on a random drive-by discrete logarithm 05:47:47 unlike back in the '70s 05:47:53 lol 05:49:15 on the other hand, it did give me an idea for code I'd really enjoy writing 05:51:26 ijp: code relating to it? 05:52:05 not particularly, just happened to spark the connection 05:52:56 lol 05:52:58 weie [~eie@softbank221078042071.bbtec.net] has joined #scheme 05:57:33 ericmathison [~ericmathi@172-15-249-133.lightspeed.irvnca.sbcglobal.net] has joined #scheme 06:00:45 karswell [~user@87.112.183.62] has joined #scheme 06:10:58 -!- ehaliewicz [~user@50-0-51-11.dsl.static.sonic.net] has quit [Ping timeout: 245 seconds] 06:12:41 rudybot: ping 06:12:42 ijp: pong 06:14:45 rudybot: ping 06:14:45 kslqs: pong 06:14:49 :) 06:15:10 rudybot: how r u 06:15:11 kslqs: every time I try to run it again, it stops as the breakpoint. i don't want it to C-x X u doesn't clear it either 06:15:20 :( 06:19:26 -!- racycle [~racycle@75-25-129-128.lightspeed.sjcpca.sbcglobal.net] has quit [Remote host closed the connection] 06:19:30 jewel [~jewel@105-236-146-135.access.mtnbusiness.co.za] has joined #scheme 06:21:05 -!- znode [~znode@61.143.60.83] has quit [Remote host closed the connection] 06:29:45 vishesh [~vishesh@122.177.41.16] has joined #scheme 06:41:28 -!- SrPx [~SrPx@177.133.128.167] has quit [Quit: SrPx] 06:55:51 -!- LAMMJohn1on [~ja@user-5af43df5.broadband.tesco.net] has quit [Remote host closed the connection] 06:57:10 wingo [~wingo@cha74-2-88-160-190-192.fbx.proxad.net] has joined #scheme 06:57:29 Ripp__ [~textual@c-76-21-7-143.hsd1.ca.comcast.net] has joined #scheme 07:10:22 zett_zelett [~zett_zele@p5DE79149.dip0.t-ipconnect.de] has joined #scheme 07:12:06 -!- przl [~przlrkt@p5B298D8B.dip0.t-ipconnect.de] has quit [Ping timeout: 264 seconds] 07:13:34 przl [~przlrkt@p5B298D8B.dip0.t-ipconnect.de] has joined #scheme 07:17:30 -!- hashcat [~chatzilla@27.243.21.241] has quit [Ping timeout: 264 seconds] 07:23:56 hkBst [~marijn@80.120.175.18] has joined #scheme 07:23:56 -!- hkBst [~marijn@80.120.175.18] has quit [Changing host] 07:23:56 hkBst [~marijn@gentoo/developer/hkbst] has joined #scheme 07:35:53 -!- kslqs [6570abb6@gateway/web/freenode/ip.101.112.171.182] has quit [Ping timeout: 250 seconds] 07:38:38 Necrosporus [~Necrospor@unaffiliated/necrosporus] has joined #scheme 07:41:18 -!- Kabaka_ is now known as Kabaka 07:58:56 peterhil [~peterhil@158.127.31.162] has joined #scheme 08:01:26 ogamita [~t@77.104.4.54] has joined #scheme 08:07:26 -!- przl [~przlrkt@p5B298D8B.dip0.t-ipconnect.de] has quit [Ping timeout: 264 seconds] 08:07:49 lamefun [~lamefun3@82.209.86.221] has joined #scheme 08:08:03 is there an implementation with good OpenGL-capable GUI library? 08:09:06 lamefun: Guile has direct OpenGL bindings. I bet Racket does, too. Dunno about others, maybe Chicken .. 08:10:18 I mean, with widgets 08:10:32 pnkfelix [~Adium@bas75-2-88-170-201-21.fbx.proxad.net] has joined #scheme 08:10:58 No idea then. Can GTK and Qt render to OpenGL perhaps ? 08:13:03 stepnem [~stepnem@internet2.cznet.cz] has joined #scheme 08:14:56 -!- lamefun [~lamefun3@82.209.86.221] has quit [Quit: Leaving] 08:15:41 teleScope [~cong@111.222.112.61] has joined #scheme 08:23:09 taylanub: Qt has an OpenGL module 08:23:55 vraid: Does it embed an OpenGL rendered section as a widget, or does it use OpenGL as the back-end for all Qt rendering ? 08:25:54 -!- _5kg [~zifeitong@60.191.2.238] has quit [Ping timeout: 264 seconds] 08:26:38 _5kg [~zifeitong@60.191.2.238] has joined #scheme 08:26:47 taylanub: it's a widget 08:29:36 gleag [~gleag@71.175.broadband2.iol.cz] has joined #scheme 08:29:42 it's been a while since i used it, but as i recall you create a widget to act as the gl context and drawing surface 08:30:07 as for the back-end of all Qt rendering, i don't know what they use 08:47:56 -!- leppie [~lolcow@105-236-114-29.access.mtnbusiness.co.za] has quit [Ping timeout: 256 seconds] 08:52:12 leppie [~lolcow@105-236-193-179.access.mtnbusiness.co.za] has joined #scheme 08:52:36 palach [~palach@gw.kintech.ru] has joined #scheme 08:52:41 -!- Oejet [~Oejet@unaffiliated/oejet] has left #scheme 09:03:37 hashcat [~chatzilla@27.242.245.43] has joined #scheme 09:05:05 kladk [65708896@gateway/web/freenode/ip.101.112.136.150] has joined #scheme 09:05:11 Anyone here done the matasano crypto challenges? 09:06:05 two references in one day, what are the odds 09:06:47 kladk: I haven't, but do you have a more concrete question? 09:08:47 LAMMJohnson [~ja@user-5af43df5.broadband.tesco.net] has joined #scheme 09:09:47 przl [~przlrkt@62.217.45.197] has joined #scheme 09:21:11 -!- przl [~przlrkt@62.217.45.197] has quit [Quit: leaving] 09:21:31 przl [~przlrkt@62.217.45.197] has joined #scheme 09:22:38 -!- leppie [~lolcow@105-236-193-179.access.mtnbusiness.co.za] has quit [Ping timeout: 240 seconds] 09:23:33 hiroakip [~hiroaki@p54A6A380.dip0.t-ipconnect.de] has joined #scheme 09:27:04 leppie [~lolcow@105-236-68-146.access.mtnbusiness.co.za] has joined #scheme 09:29:57 -!- tenq is now known as tenq|away 09:38:11 -!- ivan\ [~ivan@unaffiliated/ivan/x-000001] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 09:44:47 -!- przl [~przlrkt@62.217.45.197] has quit [Read error: Operation timed out] 09:45:51 -!- leppie [~lolcow@105-236-68-146.access.mtnbusiness.co.za] has quit [Ping timeout: 245 seconds] 09:50:31 leppie [~lolcow@105-236-193-179.access.mtnbusiness.co.za] has joined #scheme 09:51:50 -!- peterhil [~peterhil@158.127.31.162] has quit [Ping timeout: 264 seconds] 09:52:43 Agent-P [~fk5oxid3@ce3.net.hrz.tu-darmstadt.de] has joined #scheme 09:55:37 LAMMJohn1on [~ja@user-5af43382.broadband.tesco.net] has joined #scheme 09:58:54 -!- LAMMJohnson [~ja@user-5af43df5.broadband.tesco.net] has quit [Ping timeout: 264 seconds] 10:04:19 -!- Ripp__ [~textual@c-76-21-7-143.hsd1.ca.comcast.net] has quit [Quit: Ripp__] 10:04:37 ivan\ [~ivan@unaffiliated/ivan/x-000001] has joined #scheme 10:05:57 Okasu [~1@94.25.229.98] has joined #scheme 10:05:57 -!- Okasu [~1@94.25.229.98] has quit [Changing host] 10:05:57 Okasu [~1@unaffiliated/okasu] has joined #scheme 10:13:35 przl [~przlrkt@62.217.45.197] has joined #scheme 10:15:59 -!- leppie [~lolcow@105-236-193-179.access.mtnbusiness.co.za] has quit [Ping timeout: 260 seconds] 10:20:08 leppie [~lolcow@105-236-68-146.access.mtnbusiness.co.za] has joined #scheme 10:21:12 -!- przl [~przlrkt@62.217.45.197] has quit [Read error: Connection reset by peer] 10:26:06 peterhil [~peterhil@158.127.31.162] has joined #scheme 10:46:29 dkordic [~danilo@93-87-124-217.dynamic.isp.telekom.rs] has joined #scheme 10:46:56 -!- joneshf-laptop [~joneshf@c-98-208-36-36.hsd1.ca.comcast.net] has quit [Ping timeout: 256 seconds] 10:47:16 yacks [~py@103.6.159.99] has joined #scheme 10:51:27 pnkfelix1 [~Adium@bas75-2-88-170-201-21.fbx.proxad.net] has joined #scheme 10:51:30 -!- pnkfelix [~Adium@bas75-2-88-170-201-21.fbx.proxad.net] has quit [Read error: No route to host] 11:06:03 joneshf-laptop [~joneshf@c-98-208-36-36.hsd1.ca.comcast.net] has joined #scheme 11:13:02 -!- wingo [~wingo@cha74-2-88-160-190-192.fbx.proxad.net] has quit [Remote host closed the connection] 11:14:55 wingo [~wingo@cha74-2-88-160-190-192.fbx.proxad.net] has joined #scheme 11:23:50 eff_ [~quassel@123.122.71.85] has joined #scheme 11:31:37 -!- kladk [65708896@gateway/web/freenode/ip.101.112.136.150] has quit [Ping timeout: 250 seconds] 11:33:58 civodul [~user@193.50.110.106] has joined #scheme 11:37:50 pumpkin360 [~main@aggm182.neoplus.adsl.tpnet.pl] has joined #scheme 11:38:35 Hi. Is "find" bound it scheme? lisp syntaxt in vim highlights it but I can't find info about it on the net 11:39:57 it is not in the r5rs report, it is in the r6rs report, and it's also in srfi 1 11:40:14 -!- MichaelRaskin [~MichaelRa@195.178.216.22] has quit [Ping timeout: 240 seconds] 11:40:31 ok, thanks 11:44:14 ASau` [~user@p4FF96E41.dip0.t-ipconnect.de] has joined #scheme 11:44:44 -!- civodul [~user@193.50.110.106] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 11:45:09 civodul [~user@gateway/tor-sasl/civodul] has joined #scheme 11:47:23 -!- ASau [~user@p4FF969B1.dip0.t-ipconnect.de] has quit [Read error: Operation timed out] 11:55:51 -!- hiroakip [~hiroaki@p54A6A380.dip0.t-ipconnect.de] has quit [Ping timeout: 245 seconds] 11:56:08 steveccc [~steveccc@77.107.120.106] has joined #scheme 12:00:20 przl [~przlrkt@62.217.45.197] has joined #scheme 12:01:02 -!- gleag [~gleag@71.175.broadband2.iol.cz] has quit [Ping timeout: 240 seconds] 12:01:58 tiksa [~tiksa@77-46-233-197.dynamic.isp.telekom.rs] has joined #scheme 12:02:06 -!- dRbiG [drbig@unhallowed.pl] has quit [Ping timeout: 245 seconds] 12:04:32 gleag [~gleag@71.175.broadband2.iol.cz] has joined #scheme 12:05:29 dRbiG [drbig@unhallowed.pl] has joined #scheme 12:06:34 -!- defanor_ [~d@ppp91-77-122-130.pppoe.mtu-net.ru] has quit [Ping timeout: 246 seconds] 12:07:06 defanor_ [~d@ppp91-77-185-124.pppoe.mtu-net.ru] has joined #scheme 12:16:07 hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has joined #scheme 12:21:06 -!- LAMMJohn1on [~ja@user-5af43382.broadband.tesco.net] has quit [Ping timeout: 264 seconds] 12:23:25 lspws [65708896@gateway/web/freenode/ip.101.112.136.150] has joined #scheme 12:23:29 Here is a challenge: http://pastebin.com/PFN9pkzp 12:24:08 yes, you posted it already, mr random string of five letters 12:33:32 RageOfThou [~RageOfTho@77.221.25.95] has joined #scheme 12:39:50 -!- przl [~przlrkt@62.217.45.197] has quit [Ping timeout: 264 seconds] 12:43:31 davexunit [~user@c-71-232-35-199.hsd1.ma.comcast.net] has joined #scheme 12:45:27 przl [~przlrkt@62.217.45.197] has joined #scheme 12:51:06 -!- przl [~przlrkt@62.217.45.197] has quit [Ping timeout: 264 seconds] 12:51:15 -!- nmeum [~nmeum@2a00:12c0:1015:123::] has quit [Ping timeout: 245 seconds] 12:51:58 przl [~przlrkt@62.217.45.197] has joined #scheme 12:59:55 kobain [~kobian@unaffiliated/kobain] has joined #scheme 13:04:40 LAMMJohnson [~ja@user-5af43875.broadband.tesco.net] has joined #scheme 13:04:42 xwl [~user@182.48.101.22] has joined #scheme 13:06:03 -!- pnkfelix1 [~Adium@bas75-2-88-170-201-21.fbx.proxad.net] has quit [Quit: Leaving.] 13:11:12 nmeum [~nmeum@2a00:12c0:1015:123::] has joined #scheme 13:16:13 Riastradh [~riastradh@fsf/member/riastradh] has joined #scheme 13:22:09 -!- Riastradh [~riastradh@fsf/member/riastradh] has quit [Ping timeout: 240 seconds] 13:24:10 -!- nmeum [~nmeum@2a00:12c0:1015:123::] has quit [Ping timeout: 245 seconds] 13:25:15 b4283 [~b4283@118.150.139.66] has joined #scheme 13:29:29 -!- lspws [65708896@gateway/web/freenode/ip.101.112.136.150] has quit [Ping timeout: 250 seconds] 13:31:18 -!- LAMMJohnson [~ja@user-5af43875.broadband.tesco.net] has quit [Ping timeout: 264 seconds] 13:35:32 -!- davexunit [~user@c-71-232-35-199.hsd1.ma.comcast.net] has quit [Quit: Later] 13:38:08 hiroakip [~hiroaki@p54A6A380.dip0.t-ipconnect.de] has joined #scheme 13:40:26 -!- pumpkin360 [~main@aggm182.neoplus.adsl.tpnet.pl] has quit [Ping timeout: 264 seconds] 13:41:20 nmeum [~nmeum@2a00:12c0:1015:123::] has joined #scheme 13:51:02 -!- RageOfThou [~RageOfTho@77.221.25.95] has quit [Quit: Leaving] 13:53:46 pumpkin360 [~main@agea209.neoplus.adsl.tpnet.pl] has joined #scheme 13:59:56 pnkfelix [~Adium@89.202.203.51] has joined #scheme 14:00:22 Riastradh [~riastradh@fsf/member/riastradh] has joined #scheme 14:03:02 -!- teleScope [~cong@111.222.112.61] has quit [Quit: Konversation terminated!] 14:03:12 teleScope [~cong@111.222.112.61] has joined #scheme 14:08:02 -!- nmeum [~nmeum@2a00:12c0:1015:123::] has quit [Ping timeout: 264 seconds] 14:14:30 -!- hashcat [~chatzilla@27.242.245.43] has quit [Ping timeout: 264 seconds] 14:15:33 -!- vishesh [~vishesh@122.177.41.16] has quit [Ping timeout: 245 seconds] 14:17:05 gleag_ [~gleag@71.175.broadband2.iol.cz] has joined #scheme 14:18:22 -!- teleScope [~cong@111.222.112.61] has quit [Quit: Konversation terminated!] 14:19:16 -!- gleag [~gleag@71.175.broadband2.iol.cz] has quit [Ping timeout: 256 seconds] 14:23:35 hashcat [~chatzilla@218-166-239-132.dynamic.hinet.net] has joined #scheme 14:24:33 nmeum [~nmeum@2a00:12c0:1015:123::] has joined #scheme 14:27:57 -!- gleag_ is now known as gleag 14:32:40 -!- yacks [~py@103.6.159.99] has quit [Ping timeout: 260 seconds] 14:33:39 fgudin [fgudin@odin.sdf-eu.org] has joined #scheme 14:34:10 racycle [~racycle@75-25-129-128.lightspeed.sjcpca.sbcglobal.net] has joined #scheme 14:35:35 -!- peterhil [~peterhil@158.127.31.162] has quit [Quit: Must not waste too much time here...] 14:35:48 -!- Nisstyre [~yours@oftn/member/Nisstyre] has quit [Read error: Connection reset by peer] 14:45:11 oleo [~oleo@xdsl-84-44-209-29.netcologne.de] has joined #scheme 14:45:50 -!- nmeum [~nmeum@2a00:12c0:1015:123::] has quit [Ping timeout: 264 seconds] 14:46:06 -!- hkBst [~marijn@gentoo/developer/hkbst] has quit [Quit: Konversation terminated!] 14:47:20 nmeum [~nmeum@2a00:12c0:1015:123::] has joined #scheme 14:51:32 yacks [~py@103.6.159.99] has joined #scheme 14:59:40 blz37 [~minsa@c-24-130-180-195.hsd1.ca.comcast.net] has joined #scheme 15:07:30 -!- nmeum [~nmeum@2a00:12c0:1015:123::] has quit [Ping timeout: 245 seconds] 15:09:19 kilon [~kilon@unaffiliated/thekilon] has joined #scheme 15:09:33 nmeum [~nmeum@2a00:12c0:1015:123::] has joined #scheme 15:28:20 -!- nmeum [~nmeum@2a00:12c0:1015:123::] has quit [Ping timeout: 245 seconds] 15:28:20 boycottg00gle [~user@stgt-5f719a3c.pool.mediaWays.net] has joined #scheme 15:28:32 edw [~edw@cpe-67-250-41-96.nyc.res.rr.com] has joined #scheme 15:29:35 -!- gleag [~gleag@71.175.broadband2.iol.cz] has quit [Quit: Odcházím] 15:29:58 nmeum [~nmeum@2a00:12c0:1015:123::] has joined #scheme 15:32:11 I've solved lspws' challenge, but I've encrypted my answer using a 460-byte one-time pad! 15:39:42 -!- hashcat [~chatzilla@218-166-239-132.dynamic.hinet.net] has quit [Ping timeout: 264 seconds] 15:41:53 -!- kilon [~kilon@unaffiliated/thekilon] has quit [Read error: Operation timed out] 15:43:15 kilon [~kilon@unaffiliated/thekilon] has joined #scheme 15:46:08 hashcat [~chatzilla@27.246.113.231] has joined #scheme 15:47:05 -!- zett_zelett [~zett_zele@p5DE79149.dip0.t-ipconnect.de] has quit [Ping timeout: 245 seconds] 15:48:14 -!- hiroakip [~hiroaki@p54A6A380.dip0.t-ipconnect.de] has quit [Ping timeout: 264 seconds] 15:50:02 -!- nmeum [~nmeum@2a00:12c0:1015:123::] has quit [Ping timeout: 264 seconds] 15:51:39 nmeum [~nmeum@2a00:12c0:1015:123::] has joined #scheme 15:56:26 -!- steveccc [~steveccc@77.107.120.106] has quit [Quit: Leaving] 15:57:47 theseb [~cs@74.194.237.26] has joined #scheme 16:01:26 -!- przl [~przlrkt@62.217.45.197] has quit [Ping timeout: 264 seconds] 16:03:25 -!- civodul [~user@gateway/tor-sasl/civodul] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 16:03:34 kuribas [~user@d54C430B0.access.telenet.be] has joined #scheme 16:05:38 -!- nmeum [~nmeum@2a00:12c0:1015:123::] has quit [Ping timeout: 264 seconds] 16:07:14 nmeum [~nmeum@2a00:12c0:1015:123::] has joined #scheme 16:10:13 teleScope [~cong@111.222.112.61] has joined #scheme 16:13:26 gcartier [~gcartier@24.201.136.10] has joined #scheme 16:19:11 davexunit [~user@pool-72-74-98-80.bstnma.east.verizon.net] has joined #scheme 16:20:21 gleag [~gleag@71.175.broadband2.iol.cz] has joined #scheme 16:22:33 -!- palach [~palach@gw.kintech.ru] has quit [Read error: Connection reset by peer] 16:38:48 -!- yacks [~py@103.6.159.99] has quit [Read error: Connection reset by peer] 16:38:56 yacks [~py@103.6.159.99] has joined #scheme 16:39:18 kilon_alios [~kilon@130.43.28.205.dsl.dyn.forthnet.gr] has joined #scheme 16:40:14 -!- kilon [~kilon@unaffiliated/thekilon] has quit [Ping timeout: 240 seconds] 16:41:15 -!- ogamita [~t@77.104.4.54] has quit [Ping timeout: 245 seconds] 16:43:21 asumu [~at@2001:470:b:b7:1e6f:65ff:fe23:c3d4] has joined #scheme 16:43:33 -!- pumpkin360 [~main@agea209.neoplus.adsl.tpnet.pl] has quit [Quit: WeeChat 0.4.1] 16:44:23 -!- kilon_alios is now known as kilon 16:44:23 -!- kilon [~kilon@130.43.28.205.dsl.dyn.forthnet.gr] has quit [Changing host] 16:44:23 kilon [~kilon@unaffiliated/thekilon] has joined #scheme 16:47:50 -!- Okasu [~1@unaffiliated/okasu] has quit [Quit: leaving] 16:49:26 -!- boycottg00gle [~user@stgt-5f719a3c.pool.mediaWays.net] has quit [Remote host closed the connection] 16:52:26 -!- b4283 [~b4283@118.150.139.66] has quit [Ping timeout: 264 seconds] 16:54:30 -!- dsmith [~dsmith@cpe-184-56-129-232.neo.res.rr.com] has quit [Ping timeout: 264 seconds] 16:56:00 przl [~przlrkt@p5B298D8B.dip0.t-ipconnect.de] has joined #scheme 16:56:34 [19:15] Free Coq book -> http://www.cis.upenn.edu/~bcpierce/sf/ 16:56:35 [19:15] does it come with free hours in which to read it? 16:56:36 it's more like days, but the book is really nice 16:58:08 *days needed to read it, not free days 16:59:03 Okasu [~1@unaffiliated/okasu] has joined #scheme 17:02:09 -!- Riastradh [~riastradh@fsf/member/riastradh] has quit [Ping timeout: 240 seconds] 17:02:21 -!- pnkfelix [~Adium@89.202.203.51] has quit [Quit: Leaving.] 17:09:35 dsmith [~dsmith@cpe-184-56-129-232.neo.res.rr.com] has joined #scheme 17:10:30 -!- leppie [~lolcow@105-236-68-146.access.mtnbusiness.co.za] has quit [Read error: Connection reset by peer] 17:11:03 leppie [~lolcow@105-236-68-146.access.mtnbusiness.co.za] has joined #scheme 17:11:36 -!- przl [~przlrkt@p5B298D8B.dip0.t-ipconnect.de] has quit [Quit: leaving] 17:14:45 -!- ASau` is now known as ASau 17:16:42 Ripp__ [~textual@c-76-21-7-143.hsd1.ca.comcast.net] has joined #scheme 17:23:55 palach [~palach@95-26-67-183.broadband.corbina.ru] has joined #scheme 17:29:18 -!- yacks [~py@103.6.159.99] has quit [Ping timeout: 245 seconds] 17:30:45 zett_zelett [~zett_zele@p5DE79149.dip0.t-ipconnect.de] has joined #scheme 17:32:37 -!- gcartier [~gcartier@24.201.136.10] has quit [Remote host closed the connection] 17:37:33 yacks [~py@103.6.159.99] has joined #scheme 17:42:04 LAMMJohnson [~ja@user-5af43d28.broadband.tesco.net] has joined #scheme 17:42:11 fantazo [~fantazo@213.129.230.10] has joined #scheme 17:43:02 -!- oleo [~oleo@xdsl-84-44-209-29.netcologne.de] has quit [Ping timeout: 240 seconds] 17:43:53 oleo [~oleo@xdsl-78-35-143-154.netcologne.de] has joined #scheme 17:45:55 -!- teleScope [~cong@111.222.112.61] has quit [Quit: Konversation terminated!] 17:46:58 -!- tiksa [~tiksa@77-46-233-197.dynamic.isp.telekom.rs] has quit [Remote host closed the connection] 17:53:30 tiksa [~tiksa@77-46-233-197.dynamic.isp.telekom.rs] has joined #scheme 17:55:33 -!- gravicappa [~gravicapp@ppp91-77-174-24.pppoe.mtu-net.ru] has quit [Read error: Connection reset by peer] 17:57:26 ehaliewicz [~user@50-0-51-11.dsl.static.sonic.net] has joined #scheme 18:07:15 gravicappa [~gravicapp@ppp91-77-187-226.pppoe.mtu-net.ru] has joined #scheme 18:08:45 -!- yacks [~py@103.6.159.99] has quit [Ping timeout: 245 seconds] 18:11:44 yacks [~py@103.6.159.99] has joined #scheme 18:12:06 peterhil [~peterhil@dsl-hkibrasgw3-58c02b-45.dhcp.inet.fi] has joined #scheme 18:14:40 -!- palach [~palach@95-26-67-183.broadband.corbina.ru] has quit [Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org] 18:17:06 -!- peterhil [~peterhil@dsl-hkibrasgw3-58c02b-45.dhcp.inet.fi] has quit [Ping timeout: 245 seconds] 18:20:07 peterhil [~peterhil@dsl-hkibrasgw3-58c02b-45.dhcp.inet.fi] has joined #scheme 18:22:31 -!- yacks [~py@103.6.159.99] has quit [Ping timeout: 245 seconds] 18:25:12 -!- jewel [~jewel@105-236-146-135.access.mtnbusiness.co.za] has quit [Ping timeout: 256 seconds] 18:26:58 yacks [~py@103.6.159.99] has joined #scheme 18:29:48 -!- fantazo [~fantazo@213.129.230.10] has quit [Remote host closed the connection] 18:31:43 miloshadzic [~miloshadz@213.137.123.235] has joined #scheme 18:38:32 -!- peterhil [~peterhil@dsl-hkibrasgw3-58c02b-45.dhcp.inet.fi] has quit [Quit: Must not waste too much time here...] 18:40:27 -!- wingo [~wingo@cha74-2-88-160-190-192.fbx.proxad.net] has quit [Ping timeout: 260 seconds] 18:43:15 -!- zett_zelett [~zett_zele@p5DE79149.dip0.t-ipconnect.de] has quit [Ping timeout: 260 seconds] 18:52:44 -!- taylanub [tub@p4FD9128E.dip0.t-ipconnect.de] has quit [Disconnected by services] 18:52:49 -!- Kabaka [~Kabaka@botters/kabaka] has quit [Ping timeout: 240 seconds] 18:53:17 taylanub [tub@p4FD921F4.dip0.t-ipconnect.de] has joined #scheme 18:57:27 wingo [~wingo@cha74-2-88-160-190-192.fbx.proxad.net] has joined #scheme 18:59:00 -!- kuribas [~user@d54C430B0.access.telenet.be] has quit [Read error: No route to host] 18:59:51 carleastlund [~carleastl@209-6-40-238.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com] has joined #scheme 19:02:20 jewel [~jewel@105-236-146-135.access.mtnbusiness.co.za] has joined #scheme 19:03:05 Kabaka [~Kabaka@botters/kabaka] has joined #scheme 19:04:11 palach [~palach@95-26-67-183.broadband.corbina.ru] has joined #scheme 19:04:41 -!- yacks [~py@103.6.159.99] has quit [Read error: Operation timed out] 19:05:43 yacks [~py@103.6.159.99] has joined #scheme 19:09:57 -!- tiksa [~tiksa@77-46-233-197.dynamic.isp.telekom.rs] has quit [Quit: Pozdrav] 19:12:52 -!- Agent-P [~fk5oxid3@ce3.net.hrz.tu-darmstadt.de] has quit [Remote host closed the connection] 19:13:26 -!- wingo [~wingo@cha74-2-88-160-190-192.fbx.proxad.net] has quit [Ping timeout: 264 seconds] 19:16:40 -!- sttau [~sttau@unaffiliated/sttau] has quit [Ping timeout: 245 seconds] 19:21:51 sttau [~sttau@unaffiliated/sttau] has joined #scheme 19:23:12 pnkfelix [~Adium@bas75-2-88-170-201-21.fbx.proxad.net] has joined #scheme 19:23:14 -!- theseb [~cs@74.194.237.26] has quit [Quit: Leaving] 19:27:14 -!- sttau [~sttau@unaffiliated/sttau] has quit [Ping timeout: 264 seconds] 19:27:46 duggiefresh [~duggiefre@c-66-30-11-90.hsd1.ma.comcast.net] has joined #scheme 19:31:51 sttau [~sttau@unaffiliated/sttau] has joined #scheme 19:35:35 ijp` [~user@host86-182-215-79.range86-182.btcentralplus.com] has joined #scheme 19:36:43 tupi [~user@189.60.12.51] has joined #scheme 19:37:09 -!- ijp [~user@host31-50-107-143.range31-50.btcentralplus.com] has quit [Disconnected by services] 19:37:13 -!- ijp` is now known as ijp 19:41:02 -!- sttau [~sttau@unaffiliated/sttau] has quit [Ping timeout: 264 seconds] 19:41:27 -!- taylanub is now known as taylonub 19:45:51 sttau [~sttau@unaffiliated/sttau] has joined #scheme 19:47:58 theseb [~cs@74.194.237.26] has joined #scheme 19:49:56 civodul [~user@gateway/tor-sasl/civodul] has joined #scheme 19:50:59 -!- taylonub is now known as taylanub 19:52:19 wingo [~wingo@cha74-2-88-160-190-192.fbx.proxad.net] has joined #scheme 19:57:05 -!- gravicappa [~gravicapp@ppp91-77-187-226.pppoe.mtu-net.ru] has quit [Ping timeout: 245 seconds] 19:58:43 githogori [~githogori@c-50-156-57-127.hsd1.ca.comcast.net] has joined #scheme 20:11:33 walter|r [~walter@c-24-218-217-69.hsd1.ma.comcast.net] has joined #scheme 20:12:26 tiksa [~tiksa@77-46-233-197.dynamic.isp.telekom.rs] has joined #scheme 20:14:21 MichaelRaskin [~MichaelRa@195.91.224.161] has joined #scheme 20:17:17 hiroakip [~hiroaki@p54A69B52.dip0.t-ipconnect.de] has joined #scheme 20:18:03 Riastradh [~riastradh@fsf/member/riastradh] has joined #scheme 20:19:18 rndnick8383 [~user@stgt-5f719a3c.pool.mediaWays.net] has joined #scheme 20:24:03 -!- wingo [~wingo@cha74-2-88-160-190-192.fbx.proxad.net] has quit [Ping timeout: 260 seconds] 20:25:01 -!- jewel [~jewel@105-236-146-135.access.mtnbusiness.co.za] has quit [Ping timeout: 245 seconds] 20:52:48 MrFahrenheit [~RageOfTho@77.221.25.95] has joined #scheme 21:11:18 -!- rndnick8383 [~user@stgt-5f719a3c.pool.mediaWays.net] has quit [Remote host closed the connection] 21:11:20 ijp` [~user@host86-141-177-187.range86-141.btcentralplus.com] has joined #scheme 21:14:27 -!- ijp [~user@host86-182-215-79.range86-182.btcentralplus.com] has quit [Ping timeout: 260 seconds] 21:15:27 -!- hiroakip [~hiroaki@p54A69B52.dip0.t-ipconnect.de] has quit [Quit: Ex-Chat] 21:20:21 -!- edw [~edw@cpe-67-250-41-96.nyc.res.rr.com] has quit [Quit: Computer has gone to sleep.] 21:23:04 -!- tiksa [~tiksa@77-46-233-197.dynamic.isp.telekom.rs] has quit [Ping timeout: 246 seconds] 21:27:19 -!- ijp` is now known as ijp 21:27:24 -!- theseb [~cs@74.194.237.26] has quit [Quit: Leaving] 21:28:55 -!- ijp is now known as ijp`` 21:29:08 -!- ijp`` is now known as ijp 21:34:03 adu [~ajr@pool-108-18-159-207.washdc.fios.verizon.net] has joined #scheme 21:35:23 -!- adu [~ajr@pool-108-18-159-207.washdc.fios.verizon.net] has quit [Client Quit] 21:35:32 tiksa [~tiksa@212-200-212-78.dynamic.isp.telekom.rs] has joined #scheme 21:38:34 theseb [~cs@74.194.237.26] has joined #scheme 21:48:43 jao [~jao@55.Red-79-148-157.dynamicIP.rima-tde.net] has joined #scheme 21:48:46 -!- jao [~jao@55.Red-79-148-157.dynamicIP.rima-tde.net] has quit [Changing host] 21:48:47 jao [~jao@pdpc/supporter/professional/jao] has joined #scheme 21:51:22 -!- kilon [~kilon@unaffiliated/thekilon] has quit [Remote host closed the connection] 21:51:26 arcfide [~arcfide@c-50-172-105-68.hsd1.in.comcast.net] has joined #scheme 22:06:37 -!- palach [~palach@95-26-67-183.broadband.corbina.ru] has quit [Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org] 22:08:22 -!- LAMMJohnson [~ja@user-5af43d28.broadband.tesco.net] has quit [Remote host closed the connection] 22:10:07 -!- arcfide [~arcfide@c-50-172-105-68.hsd1.in.comcast.net] has quit [Read error: Connection reset by peer] 22:11:36 -!- civodul [~user@gateway/tor-sasl/civodul] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 22:17:01 Agent-P [~fk5oxid3@ce1.net.hrz.tu-darmstadt.de] has joined #scheme 22:31:44 -!- joneshf-laptop [~joneshf@c-98-208-36-36.hsd1.ca.comcast.net] has quit [Read error: Operation timed out] 22:37:37 edw [~edw@cpe-67-250-41-96.nyc.res.rr.com] has joined #scheme 22:46:03 -!- tiksa [~tiksa@212-200-212-78.dynamic.isp.telekom.rs] has quit [Quit: Pozdrav] 22:52:40 -!- blz37 [~minsa@c-24-130-180-195.hsd1.ca.comcast.net] has quit [Ping timeout: 246 seconds] 22:53:40 -!- walter|r [~walter@c-24-218-217-69.hsd1.ma.comcast.net] has quit [Read error: Connection reset by peer] 22:54:31 walter|r [~walter@c-24-218-217-69.hsd1.ma.comcast.net] has joined #scheme 22:55:17 -!- walter|r [~walter@c-24-218-217-69.hsd1.ma.comcast.net] has quit [Read error: Connection reset by peer] 23:08:21 -!- duggiefresh [~duggiefre@c-66-30-11-90.hsd1.ma.comcast.net] has quit [Remote host closed the connection] 23:08:36 -!- theseb [~cs@74.194.237.26] has quit [Quit: Leaving] 23:09:28 blz37 [~minsa@c-24-130-180-195.hsd1.ca.comcast.net] has joined #scheme 23:10:09 zett_zelett [~zett_zele@p5DE79149.dip0.t-ipconnect.de] has joined #scheme 23:14:38 -!- tupi [~user@189.60.12.51] has quit [Ping timeout: 264 seconds] 23:22:10 Nisstyre-laptop [~yours@oftn/member/Nisstyre] has joined #scheme 23:22:42 -!- Nisstyre-laptop is now known as Nisstyre 23:22:44 -!- davexunit [~user@pool-72-74-98-80.bstnma.east.verizon.net] has quit [Quit: Later] 23:25:20 bjz_ [~brendanza@125.253.99.68] has joined #scheme 23:25:56 -!- bjz [~brendanza@125.253.99.68] has quit [Read error: Connection reset by peer] 23:55:36 -!- carleastlund [~carleastl@209-6-40-238.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com] has quit [Quit: carleastlund]