00:04:24 homie [~levgue@xdsl-78-35-146-213.netcologne.de] has joined #scheme 00:04:57 -!- ASau [~user@95-27-175-175.broadband.corbina.ru] has quit [Remote host closed the connection] 00:06:18 ASau [~user@95-27-175-175.broadband.corbina.ru] has joined #scheme 00:10:23 Enoria [~Enoria@jte.kidradd.org] has joined #scheme 00:14:24 -!- mmc1 [~michal@178-85-131-65.dynamic.upc.nl] has quit [Ping timeout: 272 seconds] 00:20:05 -!- bleakgadfly [~bleakgadf@168.81-166-171.customer.lyse.net] has quit [Ping timeout: 248 seconds] 00:20:50 -!- dzhus [~sphinx@95-25-98-203.broadband.corbina.ru] has quit [Remote host closed the connection] 00:29:41 -!- samth is now known as samth_away 00:33:43 -!- jonrafkind [~jon@crystalis.cs.utah.edu] has quit [Ping timeout: 276 seconds] 00:38:03 bfgun [~b_fin_g@r186-48-226-180.dialup.adsl.anteldata.net.uy] has joined #scheme 00:42:01 -!- bfig [~b_fin_g@r186-48-240-32.dialup.adsl.anteldata.net.uy] has quit [Ping timeout: 260 seconds] 00:49:35 peterhil [~peterhil@xdsl-77-86-196-131.nebulazone.fi] has joined #scheme 01:00:22 -!- gf3 [~gf3@unaffiliated/gf3] has quit [Excess Flood] 01:01:15 gf3 [~gf3@unaffiliated/gf3] has joined #scheme 01:02:36 X-Scale [email@sgi-ultra64.broker.freenet6.net] has joined #scheme 01:05:51 whh [~wh@112.91.81.82] has joined #scheme 01:12:52 leo2007 [~leo@119.255.41.67] has joined #scheme 01:13:30 -!- githogori [~githogori@60-251-45-163.HINET-IP.hinet.net] has quit [Remote host closed the connection] 01:18:19 -!- cdidd [~cdidd@93-80-238-239.broadband.corbina.ru] has quit [Remote host closed the connection] 01:35:33 -!- rostayob [~rostayob@02d99acf.bb.sky.com] has quit [Quit: WeeChat 0.3.5] 01:37:51 eli [~eli@winooski.ccs.neu.edu] has joined #scheme 01:43:55 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Ping timeout: 240 seconds] 01:49:55 drwho [~drwho@216-122-174-206.gci.net] has joined #scheme 01:55:47 -!- kk` [~kk@unaffiliated/kk/x-5380134] has quit [Quit: Leaving] 01:59:30 -!- homie [~levgue@xdsl-78-35-146-213.netcologne.de] has quit [Remote host closed the connection] 01:59:38 -!- bytbox [~s@129.2.129.227] has quit [Quit: Lost terminal] 02:00:50 homie [~levgue@xdsl-78-35-146-213.netcologne.de] has joined #scheme 02:01:40 soveran [~soveran@186.19.214.247] has joined #scheme 02:08:24 how do i test if something is a 'definition'? 02:08:55 (define f 5); (magic-func f) => #t, (magic-func 5) => #f 02:13:31 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 02:13:32 fbs: why do you need to do this, btw? 02:13:38 fbs: firstly it would have to be a macro 02:14:07 was trying to make the c postincrement operator 02:14:15 -!- leo2007 [~leo@119.255.41.67] has quit [Quit: rcirc on GNU Emacs 23.4.1] 02:15:02 RomyRomy [~stickycak@cpe-69-203-115-155.nyc.res.rr.com] has joined #scheme 02:15:32 that's easy enough, but scheme's evaluation rules prevent it from being a function 02:16:32 fbs: you can do that without knowing it's a definition per se 02:16:40 how? 02:16:49 fbs: well, i can show you my version... 02:16:49 qu1j0t3: indeed, such a macro should work on any arbitrary lexical binding 02:16:58 whether introduced by define, let, lambda or otherwise 02:17:39 yeah true 02:18:01 -!- chromaticwt [~user@71-222-151-95.albq.qwest.net] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 02:18:43 -!- homie [~levgue@xdsl-78-35-146-213.netcologne.de] has quit [Remote host closed the connection] 02:18:57 fbs: here's my version (spoiler) http://www.telegraphics.com.au/svn/puzzles/trunk/skills/macro-inc.scm 02:19:32 fbs: this happens to be pre-increment 02:19:43 well, post increment means, we want the old value, to increment it, and then return the original value 02:19:59 well 02:20:02 ijp: yes. easy change. 02:20:05 homie [~levgue@xdsl-78-35-146-213.netcologne.de] has joined #scheme 02:20:07 in scheme this is (let ((temp var)) (set! var (+ tmp 1)) temp) 02:20:14 what i ment was that ++ 5 gives an error 02:20:18 from there the macro is trivial 02:20:43 with syntax-rules, you can't really check that 02:20:44 fbs: oh, it errors alright:) #;1> (++ 5) 02:20:46 Error: (get) bad argument type - not a symbol: 5 02:20:51 with syntax case, you just use a fender 02:20:54 that was my problem 02:21:25 http://pastie.org/3424355 02:21:27 was my version 02:21:54 fbs: have you used syntax-case before? 02:22:04 one of my first macros 02:22:40 but ive read about it 02:23:56 https://www.gnu.org/software/guile/manual/html_node/Syntax-Case.html#Syntax-Case 02:23:58 http://tinyurl.com/7q62hld 02:24:08 _schulte_ [~eschulte@c-174-56-50-60.hsd1.nm.comcast.net] has joined #scheme 02:24:08 for simple uses, the two are very similar 02:25:22 however it allows a guard expression, and you can test for an identifier there 02:26:07 hmm 02:26:23 or alternatively test in the body and throw a more appropriate error message yourself 02:26:49 rudybot: eval (define-syntax post-inc (lambda (stx) (syntax-case stx () [(_ num) (identifier? #'num) #'(let ([ret num]) (set! num (+ num 1)) ret)]))) 02:26:49 ijp: error: #:1:25: compile: unbound identifier in the transformer environment (and no #%app syntax transformer is bound) at: lambda in: (lambda (stx) (syntax-case stx () ((_ num) (identifier? (syntax num)) (syntax (let ((ret num)) (set! num (+ num 1)) ret))))) 02:27:14 rudybot: init racket 02:27:14 ijp: your sandbox is ready 02:27:19 rudybot: eval (define-syntax post-inc (lambda (stx) (syntax-case stx () [(_ num) (identifier? #'num) #'(let ([ret num]) (set! num (+ num 1)) ret)]))) 02:27:19 ijp: Done. 02:27:30 rudybot: eval (define a-variable 10) 02:27:31 ijp: Done. 02:27:40 rudybot: eval (post-inc a-variable) 02:27:40 ijp: ; Value: 10 02:27:48 rudybot: eval a-variable 02:27:49 ijp: ; Value: 11 02:27:59 chromaticwt [~user@71-222-151-95.albq.qwest.net] has joined #scheme 02:27:59 rudybot: eval (post-inc 3) 02:28:00 ijp: error: #:1:0: post-inc: bad syntax in: (post-inc 3) 02:28:27 yeah 02:28:31 using guards gives you sucky error messages though 02:29:11 ill take a good look tomorrow :) 02:29:30 time for some sleep 02:29:40 thanks ijp & qu1j0t3 02:30:44 qu1j0t3: what set of puzzles are you doing? 02:32:26 ijp: sicp, some SML stuff, and challenges from Quadrescence 02:32:47 replore [~replore@203.152.213.161.static.zoot.jp] has joined #scheme 02:32:48 ijp: ages ago i began project euler, but that got superseded by learning scheme and reading sicp. 02:34:20 ah right, just saw the url and was curious 02:34:33 ijp: just a random collection of stuff, there. 02:34:58 ijp: just finished CH.1 of sicp yesterday 02:35:13 -!- preflex [~preflex@unaffiliated/mauke/bot/preflex] has quit [Read error: Operation timed out] 02:35:53 -!- masm [~masm@bl17-195-24.dsl.telepac.pt] has quit [Quit: Leaving.] 02:37:31 preflex [~preflex@unaffiliated/mauke/bot/preflex] has joined #scheme 02:44:30 -!- X-Scale [email@sgi-ultra64.broker.freenet6.net] has quit [Ping timeout: 272 seconds] 02:44:46 X-Scale [email@sgi-ultra64.broker.freenet6.net] has joined #scheme 02:45:05 -!- X-Scale is now known as Guest34661 02:48:03 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Ping timeout: 260 seconds] 02:50:51 -!- Guest34661 is now known as X-Scale 03:06:08 leo2007 [~leo@119.255.41.67] has joined #scheme 03:06:56 bytbox [~s@129.2.129.229] has joined #scheme 03:07:11 -!- RomyRomy [~stickycak@cpe-69-203-115-155.nyc.res.rr.com] has quit [Quit: RomyRomy] 03:07:24 -!- leo2007 [~leo@119.255.41.67] has quit [Client Quit] 03:08:07 RomyRomy [~stickycak@cpe-69-203-115-155.nyc.res.rr.com] has joined #scheme 03:08:31 qu1j0t3: i'm on chapter 2 of Sicp :) 03:08:44 one of my favorite books of all time 03:11:26 RomyRomy: :) 03:11:32 RomyRomy: well we're both on Ch.2 now. 03:11:48 uh oh you're going to get ahead of me 03:12:13 RomyRomy: doubtful. my progress is very slow. 03:12:26 qu1j0t3: mine is even slower 03:12:30 i started last fall 03:13:03 RomyRomy: i started not later than August 2010 03:13:47 hee heeee hee 03:14:31 -!- RomyRomy [~stickycak@cpe-69-203-115-155.nyc.res.rr.com] has quit [Quit: RomyRomy] 03:16:43 attila_lendvai [~attila_le@87.247.49.150] has joined #scheme 03:16:43 -!- attila_lendvai [~attila_le@87.247.49.150] has quit [Changing host] 03:16:43 attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has joined #scheme 03:24:01 -!- arbscht [~arbscht@fsf/member/arbscht] has quit [Ping timeout: 276 seconds] 03:29:49 -!- kvda [~kvda@124-171-36-73.dyn.iinet.net.au] has quit [Quit: x___x] 03:31:09 sousousou [~bcarmer@host-72-174-54-175.msl-mt.client.bresnan.net] has joined #scheme 03:35:35 -!- GoKhlaYeh [~GoKhlaYeh@135.51.68.86.rev.sfr.net] has quit [Ping timeout: 240 seconds] 03:37:22 -!- replore [~replore@203.152.213.161.static.zoot.jp] has quit [Remote host closed the connection] 03:37:41 arbscht [~arbscht@fsf/member/arbscht] has joined #scheme 03:42:37 jcowan [~John@cpe-66-108-19-185.nyc.res.rr.com] has joined #scheme 03:47:43 -!- airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has quit [] 03:49:50 -!- copumpkin [~copumpkin@unaffiliated/copumpkin] has quit [Ping timeout: 244 seconds] 03:50:12 copumpkin [~copumpkin@unaffiliated/copumpkin] has joined #scheme 03:50:36 prototrout [40ff81aa@gateway/web/freenode/ip.64.255.129.170] has joined #scheme 03:51:50 Is there a (semi)standard function that's the inverse of list-ref? 03:53:17 you mean like srfi 1's list-index or something? 03:54:18 ijp: Exactly that, thanks. 04:01:23 -!- copumpkin [~copumpkin@unaffiliated/copumpkin] has quit [Ping timeout: 240 seconds] 04:01:48 copumpkin [~copumpkin@unaffiliated/copumpkin] has joined #scheme 04:03:21 jonrafkind [~jon@jonr5.dsl.xmission.com] has joined #scheme 04:07:34 MichaelRaskin [~MichaelRa@195.178.216.22] has joined #scheme 04:11:22 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 04:15:47 i'm trying to start working with vector libraries atlas-lapack (atlas, blas) what i'm not sure is where are the definitions and operations over Fxxvector 04:15:51 soveran [~soveran@186.19.214.247] has joined #scheme 04:16:24 mm apparently srfi-4 04:17:05 cool :) 04:23:48 bzzbzz_ [~franco@modemcable151.155-57-74.mc.videotron.ca] has joined #scheme 04:27:01 -!- bzzbzz [~franco@modemcable023.13-56-74.mc.videotron.ca] has quit [Ping timeout: 248 seconds] 04:31:31 realitygrill [~realitygr@76.226.193.124] has joined #scheme 04:39:36 what's wrong with this? (define t1 #f64(1)) 04:42:48 -!- stepnem [~stepnem@176.119.broadband10.iol.cz] has quit [Quit: ZNC - http://znc.sourceforge.net] 04:44:18 stepnem [~stepnem@176.119.broadband10.iol.cz] has joined #scheme 04:48:41 bfgun: What appears wrong with it? Wild guess: the example in srfi-4 quotes the vector (so it would be (define t1 '#f64(1))). 04:50:55 -!- kniu [~kniu@pool-71-182-247-16.pitbpa.east.verizon.net] has quit [Ping timeout: 240 seconds] 05:00:23 dnolen [~user@cpe-98-14-92-234.nyc.res.rr.com] has joined #scheme 05:08:52 riverswain [~avery@67-41-229-111.slkc.qwest.net] has joined #scheme 05:10:54 prototrout, excellent :) 05:11:41 -!- prototrout [40ff81aa@gateway/web/freenode/ip.64.255.129.170] has quit [Ping timeout: 245 seconds] 05:14:31 adu [~ajr@pool-72-83-26-98.washdc.fios.verizon.net] has joined #scheme 05:18:14 is there a native xor? 05:18:41 how do you compare two boolean values? = doesn't do it 05:19:18 eqv? compares boolean values, so (not (eqv? a b)) is xor. 05:19:52 cool :) 05:20:24 In R6RS implementations you can use boolean=?. 05:21:22 wait... what's the latest r? 05:21:35 i've just read r5rs from start to finish... gotta read more? :| 05:22:12 The latest is R6RS, but only some implementations implement it. 05:22:42 It has a lot more stuff in the standard and under much tighter implementation restrictions, which is why many existing implementations did not upgrade to it. 05:22:53 to be fair the same applies to most Schemes when it comes to r5rs 05:23:00 Oh yes. 05:23:02 er, some schemes 05:23:18 what are the most important things that change? 05:23:57 Not too many actual changes. R5RS, or for that matter R4RS, is still pretty much correct as far as it goes. 05:24:45 For example, R6RS has an exception-catching system that all R6RS implementations provide. Most R5RS systems can also catch exceptions, but not necessarily all in the same way. 05:25:09 bfgun: the most pervasive change is the module system 05:25:42 what's up with those? 05:26:19 bfgun: there's also r6rs and r7rs-draft-6 05:26:24 Same basic story. Most Schemes have a module system: R6RS implementations all have the same module system. 05:27:03 ok. should i care about all this in general? 05:27:07 bfgun: most people would tell you to ignore r6rs 05:27:20 ok 05:27:22 most people also haven't read it 05:27:25 r5rs is amazing, r7rs will be amazing 05:27:41 bfgun: Scheme code isn't all that portable between Scheme implementations; fortunately, Scheme implementations are fairly portable. 05:27:50 I love r6rs, I'm just trying to reflect the community 05:28:07 So people who are writing Scheme *programs* can just pick their implementation on whatever grounds: convenience, performance, available libraries. 05:28:25 But what the current situation makes difficult is writing a portable library that will work on lots of Schemes. 05:28:33 yeah, there are many dozens of scheme implementations 05:28:43 77 on the "fairly complete list", 40 in my test suite. 05:28:48 it also leads to annoying proselytising 05:29:11 I wrote a scheme yesterday 05:29:17 jcowan: fancy checking something for me? I want to know how portable 2+ arguments to eq? eqv? and equal? is 05:29:53 My test rig is down right now, unfortunately; I can't figure out how to mount a 2nd (virtual) disk on the system. 05:30:03 ah, never mind then 05:30:11 -!- dnolen [~user@cpe-98-14-92-234.nyc.res.rr.com] has quit [Remote host closed the connection] 05:30:42 I hadn't realised until a conversation on #emacs the other day, that it was nonstandard 05:31:45 Definitely an extension. 05:31:52 R5RS allows extensions like that, R6RS doesn't. 05:31:53 ijp: I always assumed that as well, just never used more than 2 05:32:11 cdidd [~cdidd@95-26-94-12.broadband.corbina.ru] has joined #scheme 05:33:33 but I personally assume (when using a function) that it has fixed arity 05:34:02 R7RS is going to mandate that char and string comparison functions accept multiple arguments, which has always been optional before. 05:36:34 -!- confab [~confab@c-71-193-9-153.hsd1.ca.comcast.net] has quit [Ping timeout: 252 seconds] 05:36:36 I don't know if I have any code that relies on it, but it seems convenient for examples 05:37:05 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 05:37:40 gravicappa [~gravicapp@ppp91-77-174-195.pppoe.mtu-net.ru] has joined #scheme 05:38:48 confab [~confab@c-71-193-9-153.hsd1.ca.comcast.net] has joined #scheme 05:41:22 -!- MrFahrenheit [~RageOfTho@users-38-111.vinet.ba] has quit [Ping timeout: 240 seconds] 05:42:10 -!- bfgun is now known as bfig 05:42:42 http://hpaste.org/64088 <- what's the problem with the unit tests line? it seems the quote is not capturing the vector the right way 05:46:07 bfig: What are the symptoms? 05:46:44 jcowan, the error gives the game away i believe: Error: during expansion of (let ...) - in `let' - unexpected object: (let ((t1 (quote #f) 32 (1 1)) (t2 (quote #f) 32 (2 3)) (t3 (quote #f) 32 (0 0)) (t4 (quote #f) 32 (0 50))) (run-test (eqv? (2d-side? t1 t2 t3 (quote right)) #t))) 05:47:16 seems like i need to manually quote and make sure i capture the things? 05:47:19 seems like a bug in the parser 05:47:47 bfig == bfgun? 05:48:45 jcowan: are you John Cowan? 05:48:51 Yes. 05:48:58 jcowan: I'm Andrew Robbins 05:49:02 So I see! 05:49:09 thank you for responding you my typos 05:49:18 s/you/to/ 05:49:20 Thank you for finding them. 05:49:23 :) 05:54:09 adu, yes 05:54:55 bfig is my nickserv nick but it ghosts it slowly... and i don't remember the three lines i had to script to make it wait the ghosting... 05:55:46 ok 05:58:29 -!- jonrafkind [~jon@jonr5.dsl.xmission.com] has quit [Ping timeout: 244 seconds] 06:13:27 dammit it is not working! 06:14:00 http://hpaste.org/64088 <- i annotated the paste and the new one doesn't even give me an error 06:14:07 it simply won't do anything! 06:14:45 it will lock down the interpreter 06:16:33 do you know where? 06:16:53 not a clue. the interpreter doesn't give me an error 06:17:15 can you ^C? 06:17:56 it interrupts and leaves the interpreter (i'm using csi from emacs) 06:18:10 oh 06:18:24 so have you tried each function separately? 06:18:41 the first part works... it's the unit test part that cries 06:18:55 the problem is i can't even *define* them 06:19:01 (the last one of them at least) 06:19:33 well, if I were you 06:19:45 I would (define (run-unit-tests) ... 06:20:33 *bfig* tries 06:20:51 and then in the thing running it, (use my-geo) and (run-unit-tests) be the only thing in the file 06:22:01 something like that 06:22:02 or 06:22:17 put (run-unit-tests) at the bottom 06:23:37 bfig: I would expect that line 46 would take some time to define 06:23:57 because it's actually executing that 06:23:57 adu, why? 06:24:10 (define x y) evaluates both x and y 06:24:20 (define (f x) y) doesn't 06:24:24 er 06:24:28 just y not x 06:25:00 but the operations are trivial 06:25:13 see, it is just a bunch of sums and access to vector data 06:25:17 so run-test should return immediately? 06:25:19 should be able to compute all that in less than a microsecond 06:25:31 it's just a determinant, see the code above 06:26:08 ohh well run-tests should be something else than a function 06:27:18 bfig: also, you're using which-side wrong 06:27:33 wait, maybe not 06:29:29 -!- sharkbird [~sharkbird@67-220-6-139.usiwireless.com] has quit [Ping timeout: 244 seconds] 06:29:33 -!- jcowan [~John@cpe-66-108-19-185.nyc.res.rr.com] has quit [Quit: Leaving] 06:30:01 bfig: you should use map instead of car/cdr 06:30:59 where? 06:31:05 bfig: replace "(begin (assert (car tests)) (run-test (cdr tests)))" with "(map assert tests)" 06:31:35 because map knows when it reaches the end of a list 06:31:43 you don't 06:31:56 tom_i [~thomasing@ingserv.demon.co.uk] has joined #scheme 06:33:22 jewel [~jewel@196-209-248-121.dynamic.isadsl.co.za] has joined #scheme 06:33:45 what's probably happening is you reach the end of the list, and it keeps displaying "TEST ERROR" and never flushes the output buffer 06:34:46 ok, now it kinda worked :) 06:34:51 kvda [~kvda@124-171-36-73.dyn.iinet.net.au] has joined #scheme 06:35:06 yey 06:35:15 bfig: are you new to scheme? 06:35:19 yes :) 06:35:32 you should really learn 'map' 06:35:35 and 'for-each' 06:36:00 map is useful in many many languages 06:36:15 i know haskell pretty well 06:36:26 this is a mix of map and zipWith 06:36:36 -!- EmmanuelOga [~emmanuel@190.244.3.40] has quit [Ping timeout: 244 seconds] 06:36:38 bfig: yes, it is, I know haskell too 06:36:56 for-each is the same as mapM_ or similar 06:37:02 it's actually map, zipWith, zipWith3, zipWith4, zipWith5, ... 06:37:06 yes i know 06:37:13 it's impossible to type that in haskell :) 06:37:17 :) 06:38:51 also, do you use JS much? 06:40:47 not at all 06:41:03 *bfig* 's gonna do unit testing with srfi-78 06:41:42 gabot [~eli@winooski.ccs.neu.edu] has joined #scheme 06:44:19 virl [~virl__@85-127-83-75.dynamic.xdsl-line.inode.at] has joined #scheme 06:55:30 thanks for everything! gonna sleep 06:56:15 -!- jewel [~jewel@196-209-248-121.dynamic.isadsl.co.za] has quit [Ping timeout: 240 seconds] 06:59:28 yw 06:59:58 see ya around 07:10:35 -!- realitygrill [~realitygr@76.226.193.124] has quit [Quit: realitygrill] 07:11:41 -!- asumu [~at@2001:470:b:b7:1e6f:65ff:fe23:c3d4] has quit [Ping timeout: 260 seconds] 07:12:15 -!- gravicappa [~gravicapp@ppp91-77-174-195.pppoe.mtu-net.ru] has quit [Ping timeout: 240 seconds] 07:12:17 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 07:13:07 djcb [djcb@nat/nokia/x-gtpwstqrbeceiset] has joined #scheme 07:16:41 dzhus [~sphinx@95-25-98-203.broadband.corbina.ru] has joined #scheme 07:24:25 gravicappa [~gravicapp@ppp91-77-163-169.pppoe.mtu-net.ru] has joined #scheme 07:26:12 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Ping timeout: 244 seconds] 07:39:55 asumu [~at@2001:470:b:b7:1e6f:65ff:fe23:c3d4] has joined #scheme 07:48:46 -!- tom_i [~thomasing@ingserv.demon.co.uk] has quit [Ping timeout: 265 seconds] 07:50:17 -!- Enoria [~Enoria@jte.kidradd.org] has quit [Remote host closed the connection] 07:52:01 hkBst [~marijn@gentoo/developer/hkbst] has joined #scheme 07:52:40 Enoria [~Enoria@jte.kidradd.org] has joined #scheme 07:54:14 -!- Enoria [~Enoria@jte.kidradd.org] has quit [Remote host closed the connection] 07:56:25 Enoria [~Enoria@jte.kidradd.org] has joined #scheme 08:00:28 -!- homie [~levgue@xdsl-78-35-146-213.netcologne.de] has quit [Remote host closed the connection] 08:01:47 homie [~levgue@xdsl-78-35-146-213.netcologne.de] has joined #scheme 08:08:23 -!- virl [~virl__@85-127-83-75.dynamic.xdsl-line.inode.at] has quit [Remote host closed the connection] 08:14:15 -!- preflex [~preflex@unaffiliated/mauke/bot/preflex] has quit [Ping timeout: 240 seconds] 08:14:54 preflex [~preflex@unaffiliated/mauke/bot/preflex] has joined #scheme 08:18:52 -!- copumpkin [~copumpkin@unaffiliated/copumpkin] has quit [Read error: Connection reset by peer] 08:19:27 copumpkin [~copumpkin@unaffiliated/copumpkin] has joined #scheme 08:31:40 -!- homie [~levgue@xdsl-78-35-146-213.netcologne.de] has quit [Remote host closed the connection] 08:33:03 homie [~levgue@xdsl-78-35-146-213.netcologne.de] has joined #scheme 08:35:33 -!- djcb [djcb@nat/nokia/x-gtpwstqrbeceiset] has quit [Remote host closed the connection] 08:41:53 -!- aehrisch [~aehrisch@vhost.knauel.org] has quit [Quit: ZNC - http://znc.sourceforge.net] 08:47:47 tom_i [~thomasing@cmc.beaming.biz] has joined #scheme 08:52:25 ahinki [~chatzilla@212.99.10.150] has joined #scheme 09:07:24 wingo [~wingo@90.164.198.39] has joined #scheme 09:25:05 djcb [djcb@nat/nokia/x-kmthbkoufhwkvmab] has joined #scheme 09:28:56 -!- homie [~levgue@xdsl-78-35-146-213.netcologne.de] has quit [Remote host closed the connection] 09:30:18 homie [~levgue@xdsl-78-35-146-213.netcologne.de] has joined #scheme 09:40:24 -!- eMBee [~eMBee@foresight/developer/pike/programmer] has quit [Remote host closed the connection] 09:42:32 -!- adu [~ajr@pool-72-83-26-98.washdc.fios.verizon.net] has quit [Quit: adu] 09:48:15 -!- tuubow_ [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has quit [Ping timeout: 240 seconds] 09:52:39 kpal [~kpal@janus-nat-128-240-225-120.ncl.ac.uk] has joined #scheme 09:53:08 eMBee [~eMBee@foresight/developer/pike/programmer] has joined #scheme 10:06:06 masm [~masm@bl17-206-188.dsl.telepac.pt] has joined #scheme 10:31:24 -!- homie [~levgue@xdsl-78-35-146-213.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 10:34:25 levi` [~user@c-174-52-219-147.hsd1.ut.comcast.net] has joined #scheme 10:36:12 -!- Intensity [qDjxirL6J8@unaffiliated/intensity] has quit [Quit: Quit] 10:36:55 -!- confab [~confab@c-71-193-9-153.hsd1.ca.comcast.net] has quit [Ping timeout: 240 seconds] 10:36:56 -!- levi [~user@c-174-52-219-147.hsd1.ut.comcast.net] has quit [Remote host closed the connection] 10:37:26 homie [~levgue@xdsl-78-35-146-213.netcologne.de] has joined #scheme 10:37:53 confab [~confab@c-71-193-9-153.hsd1.ca.comcast.net] has joined #scheme 10:37:58 -!- amoe_ is now known as amoe 10:40:27 Intensity [gqiClL7OSn@unaffiliated/intensity] has joined #scheme 10:42:08 -!- noam__ [~noam@46.120.51.147] has quit [Ping timeout: 245 seconds] 10:42:56 -!- masm [~masm@bl17-206-188.dsl.telepac.pt] has quit [Quit: Leaving.] 10:47:44 noam [~noam@46.120.51.147] has joined #scheme 10:55:13 -!- kvda [~kvda@124-171-36-73.dyn.iinet.net.au] has quit [Quit: x___x] 11:00:48 -!- whh [~wh@112.91.81.82] has quit [Quit: ] 11:04:48 -!- homie [~levgue@xdsl-78-35-146-213.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 11:06:10 -!- tom_i [~thomasing@cmc.beaming.biz] has quit [Ping timeout: 276 seconds] 11:17:09 -!- cdidd [~cdidd@95-26-94-12.broadband.corbina.ru] has quit [Ping timeout: 248 seconds] 11:33:23 cdidd [~cdidd@93-80-122-87.broadband.corbina.ru] has joined #scheme 11:43:55 tom_i [~thomasing@cmc.beaming.biz] has joined #scheme 11:50:38 -!- noam [~noam@46.120.51.147] has quit [Read error: Connection reset by peer] 11:51:23 noam [~noam@46.120.51.147] has joined #scheme 11:53:32 homie [~levgue@xdsl-78-35-146-213.netcologne.de] has joined #scheme 11:54:53 -!- homie [~levgue@xdsl-78-35-146-213.netcologne.de] has quit [Remote host closed the connection] 12:02:22 homie` [~levgue@xdsl-78-35-153-172.netcologne.de] has joined #scheme 12:03:06 -!- homie` [~levgue@xdsl-78-35-153-172.netcologne.de] has quit [Remote host closed the connection] 12:05:52 -!- noam [~noam@46.120.51.147] has quit [Read error: Connection reset by peer] 12:05:55 homie [~levgue@xdsl-78-35-153-172.netcologne.de] has joined #scheme 12:06:08 noam [~noam@46.120.51.147] has joined #scheme 12:07:05 wbooze [~levgue@xdsl-78-35-153-172.netcologne.de] has joined #scheme 12:15:49 -!- tom_i [~thomasing@cmc.beaming.biz] has quit [Ping timeout: 248 seconds] 12:17:10 -!- Inode [~inode@time.uk.chromedpork.net] has quit [Quit: leaving] 12:23:18 -!- xwl_ [user@nat/nokia/x-tjunmjszxrphweyx] has quit [Read error: Connection reset by peer] 12:29:11 DEATH TO CALL/CC ;p j/k 12:33:32 rostayob [~rostayob@dyn1204-196.wlan.ic.ac.uk] has joined #scheme 12:33:52 keenbug [~daniel@p4FDB724F.dip.t-dialin.net] has joined #scheme 12:37:58 bfgun [~b_fin_g@r186-48-192-178.dialup.adsl.anteldata.net.uy] has joined #scheme 12:41:43 -!- bfig [~b_fin_g@r186-48-226-180.dialup.adsl.anteldata.net.uy] has quit [Ping timeout: 245 seconds] 12:47:25 -!- homie [~levgue@xdsl-78-35-153-172.netcologne.de] has quit [Remote host closed the connection] 12:49:04 homie [~levgue@xdsl-78-35-153-172.netcologne.de] has joined #scheme 12:56:23 tom_i [~thomasing@cmc.beaming.biz] has joined #scheme 12:57:16 soveran [~soveran@186.19.214.247] has joined #scheme 12:59:24 -!- jrslepak [~jrslepak@c-71-233-151-135.hsd1.ma.comcast.net] has quit [Quit: This computer has gone to sleep] 13:03:51 GoKhlaYeh [~GoKhlaYeh@135.51.68.86.rev.sfr.net] has joined #scheme 13:04:42 -!- leppie [~lolcow@196-215-4-254.dynamic.isadsl.co.za] has quit [Read error: Connection reset by peer] 13:12:34 leppie [~lolcow@196-215-4-254.dynamic.isadsl.co.za] has joined #scheme 13:27:21 attila_lendvai1 [~attila_le@87.247.49.150] has joined #scheme 13:27:35 -!- attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has quit [Disconnected by services] 13:27:57 -!- attila_lendvai1 is now known as attila_lendvai 13:28:07 -!- attila_lendvai [~attila_le@87.247.49.150] has quit [Changing host] 13:28:07 attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has joined #scheme 13:30:52 -!- homie [~levgue@xdsl-78-35-153-172.netcologne.de] has quit [Remote host closed the connection] 13:31:31 leo2007 [~leo@123.114.34.224] has joined #scheme 13:32:17 homie [~levgue@xdsl-78-35-153-172.netcologne.de] has joined #scheme 13:33:52 MrFahrenheit [~RageOfTho@users-38-111.vinet.ba] has joined #scheme 13:34:19 -!- gravicappa [~gravicapp@ppp91-77-163-169.pppoe.mtu-net.ru] has quit [Remote host closed the connection] 13:39:17 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 13:41:26 sharkbird [~sharkbird@67-220-6-139.usiwireless.com] has joined #scheme 13:41:58 -!- _schulte_ [~eschulte@c-174-56-50-60.hsd1.nm.comcast.net] has quit [Ping timeout: 260 seconds] 13:44:56 jrslepak [~jrslepak@129.10.229.140] has joined #scheme 13:47:03 ecraven [~nex@www.nexoid.at] has joined #scheme 13:47:35 -!- homie [~levgue@xdsl-78-35-153-172.netcologne.de] has quit [Remote host closed the connection] 13:49:05 homie [~levgue@xdsl-78-35-153-172.netcologne.de] has joined #scheme 13:50:41 -!- stepnem [~stepnem@176.119.broadband10.iol.cz] has quit [Ping timeout: 260 seconds] 13:56:21 stepnem [~stepnem@176.119.broadband10.iol.cz] has joined #scheme 13:58:32 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 13:59:17 -!- aoh [~aki@adsl-99-115.netplaza.fi] has quit [Ping timeout: 252 seconds] 14:01:23 -!- homie [~levgue@xdsl-78-35-153-172.netcologne.de] has quit [Remote host closed the connection] 14:03:00 homie [~levgue@xdsl-78-35-153-172.netcologne.de] has joined #scheme 14:05:09 -!- stepnem [~stepnem@176.119.broadband10.iol.cz] has quit [Ping timeout: 245 seconds] 14:09:12 -!- jrslepak [~jrslepak@129.10.229.140] has quit [Quit: This computer has gone to sleep] 14:12:10 aoh [~aki@adsl-99-115.netplaza.fi] has joined #scheme 14:14:01 -!- asumu [~at@2001:470:b:b7:1e6f:65ff:fe23:c3d4] has quit [Ping timeout: 260 seconds] 14:14:44 asumu [~at@2001:470:b:b7:1e6f:65ff:fe23:c3d4] has joined #scheme 14:25:15 githogori_ [~githogori@61-222-134-211.HINET-IP.hinet.net] has joined #scheme 14:25:15 -!- githogori_ [~githogori@61-222-134-211.HINET-IP.hinet.net] has quit [Client Quit] 14:25:45 githogori [~githogori@61-222-134-211.HINET-IP.hinet.net] has joined #scheme 14:27:23 -!- confab [~confab@c-71-193-9-153.hsd1.ca.comcast.net] has quit [Quit: Lost terminal] 14:28:21 stepnem [~stepnem@176.119.broadband10.iol.cz] has joined #scheme 14:30:12 langmartin [~user@host-68-169-155-216.WISOLT2.epbfi.com] has joined #scheme 14:40:57 -!- leppie [~lolcow@196-215-4-254.dynamic.isadsl.co.za] has quit [Read error: Connection reset by peer] 14:45:15 leppie [~lolcow@196-215-4-254.dynamic.isadsl.co.za] has joined #scheme 14:48:58 -!- wbooze [~levgue@xdsl-78-35-153-172.netcologne.de] has quit [Remote host closed the connection] 14:50:10 wbooze [~levgue@xdsl-78-35-153-172.netcologne.de] has joined #scheme 14:57:20 -!- tom_i [~thomasing@cmc.beaming.biz] has quit [Ping timeout: 240 seconds] 14:57:23 tuubow_ [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has joined #scheme 15:14:48 hypercube32 [~hypercube@246.111.188.72.cfl.res.rr.com] has joined #scheme 15:16:51 -!- attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has quit [Quit: Leaving.] 15:18:49 -!- noam [~noam@46.120.51.147] has quit [Read error: Connection reset by peer] 15:19:05 noam [~noam@46.120.51.147] has joined #scheme 15:19:40 -!- samth_away is now known as samth 15:22:32 -!- wingo [~wingo@90.164.198.39] has quit [Remote host closed the connection] 15:25:14 -!- wbooze [~levgue@xdsl-78-35-153-172.netcologne.de] has quit [Read error: Connection reset by peer] 15:26:16 wbooze [~levgue@xdsl-78-35-153-172.netcologne.de] has joined #scheme 15:30:44 realitygrill [~realitygr@76.226.202.193] has joined #scheme 15:31:58 -!- copumpkin [~copumpkin@unaffiliated/copumpkin] has quit [Quit: Computer has gone to sleep.] 15:35:43 wingo [~wingo@90.164.198.39] has joined #scheme 15:39:40 -!- keenbug [~daniel@p4FDB724F.dip.t-dialin.net] has quit [Read error: Connection reset by peer] 15:41:26 -!- realitygrill [~realitygr@76.226.202.193] has quit [Quit: realitygrill] 15:41:38 -!- ahinki [~chatzilla@212.99.10.150] has quit [Quit: ChatZilla 0.9.88 [Firefox 11.0/20120215222917]] 15:45:36 jlongster [~user@pool-98-117-65-239.rcmdva.fios.verizon.net] has joined #scheme 15:45:38 jonrafkind [~jon@67.139.146.6] has joined #scheme 15:45:54 masm [~masm@bl17-206-188.dsl.telepac.pt] has joined #scheme 15:47:30 snizzo [~quassel@iglu.cc.uniud.it] has joined #scheme 15:47:48 -!- hkBst [~marijn@gentoo/developer/hkbst] has quit [Quit: Konversation terminated!] 15:48:06 -!- homie [~levgue@xdsl-78-35-153-172.netcologne.de] has quit [Read error: Connection reset by peer] 15:49:34 homie [~levgue@xdsl-78-35-153-172.netcologne.de] has joined #scheme 15:50:11 soveran [~soveran@186.19.214.247] has joined #scheme 15:50:42 -!- djcb [djcb@nat/nokia/x-kmthbkoufhwkvmab] has quit [Remote host closed the connection] 15:52:05 -!- rostayob [~rostayob@dyn1204-196.wlan.ic.ac.uk] has quit [Quit: WeeChat 0.3.5] 15:56:03 choas [~lars@p4FDC5BEB.dip.t-dialin.net] has joined #scheme 15:56:06 copumpkin [~copumpkin@unaffiliated/copumpkin] has joined #scheme 16:00:02 kniu [~kniu@pool-71-182-247-16.pitbpa.east.verizon.net] has joined #scheme 16:01:10 tom_i [~thomasing@cmc.beaming.biz] has joined #scheme 16:09:50 shurane [~mortimer@65-86-91-130.client.dsl.net] has joined #scheme 16:12:00 -!- shurane [~mortimer@65-86-91-130.client.dsl.net] has quit [Client Quit] 16:16:23 kk` [~kk@unaffiliated/kk/x-5380134] has joined #scheme 16:17:09 shurane [~mortimer@65-86-91-130.client.dsl.net] has joined #scheme 16:18:29 -!- leppie [~lolcow@196-215-4-254.dynamic.isadsl.co.za] has quit [Ping timeout: 248 seconds] 16:19:02 jewel [~jewel@196-215-88-43.dynamic.isadsl.co.za] has joined #scheme 16:21:35 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Ping timeout: 244 seconds] 16:22:17 -!- shurane [~mortimer@65-86-91-130.client.dsl.net] has left #scheme 16:23:55 -!- githogori [~githogori@61-222-134-211.HINET-IP.hinet.net] has quit [Ping timeout: 240 seconds] 16:24:40 HG` [~HG@dsbg-4db59b3b.pool.mediaWays.net] has joined #scheme 16:26:06 leppie [~lolcow@196-215-4-254.dynamic.isadsl.co.za] has joined #scheme 16:26:25 woonie [~woonie@137.132.43.240] has joined #scheme 16:30:15 -!- snizzo [~quassel@iglu.cc.uniud.it] has quit [Remote host closed the connection] 16:32:35 -!- jewel [~jewel@196-215-88-43.dynamic.isadsl.co.za] has quit [Ping timeout: 240 seconds] 16:38:42 gravicappa [~gravicapp@ppp91-77-163-169.pppoe.mtu-net.ru] has joined #scheme 16:40:43 stis [~stis@1-1-1-39a.veo.vs.bostream.se] has joined #scheme 16:41:37 -!- drwho [~drwho@216-122-174-206.gci.net] has quit [Ping timeout: 244 seconds] 16:42:37 jeapostrophe [~jay@lallab.cs.byu.edu] has joined #scheme 16:56:34 rostayob [~rostayob@dyn1204-196.wlan.ic.ac.uk] has joined #scheme 16:59:01 -!- jonrafkind [~jon@67.139.146.6] has quit [Ping timeout: 248 seconds] 17:00:27 homie` [~levgue@xdsl-78-35-153-172.netcologne.de] has joined #scheme 17:01:33 daedric_ [~daedric@2a01:e0b:1000:21:baac:6fff:fe99:7ada] has joined #scheme 17:02:17 shaunxcode [~chatzilla@c-98-202-35-176.hsd1.ut.comcast.net] has joined #scheme 17:02:33 -!- brendyn [brendyn@2a01:7e00::f03c:91ff:fedf:65b4] has quit [Ping timeout: 245 seconds] 17:02:33 -!- daedric [~daedric@2a01:e0b:1000:21:baac:6fff:fe99:7ada] has quit [Ping timeout: 245 seconds] 17:02:34 -!- ASau [~user@95-27-175-175.broadband.corbina.ru] has quit [Ping timeout: 245 seconds] 17:02:34 -!- Enoria [~Enoria@jte.kidradd.org] has quit [Ping timeout: 245 seconds] 17:02:35 -!- twem2 [~tristan@puma-mxisp.mxtelecom.com] has quit [Ping timeout: 245 seconds] 17:02:39 twem2__ [~tristan@puma-mxisp.mxtelecom.com] has joined #scheme 17:03:12 -!- homie [~levgue@xdsl-78-35-153-172.netcologne.de] has quit [Remote host closed the connection] 17:05:15 attila_lendvai [~attila_le@87.247.35.157] has joined #scheme 17:05:16 -!- attila_lendvai [~attila_le@87.247.35.157] has quit [Changing host] 17:05:16 attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has joined #scheme 17:06:18 -!- ft [efftee@shell.chaostreff-dortmund.de] has quit [Ping timeout: 245 seconds] 17:06:45 ft [efftee@shell.chaostreff-dortmund.de] has joined #scheme 17:06:59 -!- soveran [~soveran@186.19.214.247] has quit [Read error: Connection reset by peer] 17:07:47 Enoria [~Enoria@jte.kidradd.org] has joined #scheme 17:10:40 -!- choas [~lars@p4FDC5BEB.dip.t-dialin.net] has quit [Ping timeout: 244 seconds] 17:11:10 -!- attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has quit [Quit: Leaving.] 17:17:34 brendyn [brendyn@2a01:7e00::f03c:91ff:fedf:65b4] has joined #scheme 17:19:13 jonrafkind [~jon@crystalis.cs.utah.edu] has joined #scheme 17:20:34 -!- tom_i [~thomasing@cmc.beaming.biz] has quit [Ping timeout: 276 seconds] 17:21:43 -!- brendyn [brendyn@2a01:7e00::f03c:91ff:fedf:65b4] has quit [Ping timeout: 245 seconds] 17:21:55 virl [~virl__@85-127-83-75.dynamic.xdsl-line.inode.at] has joined #scheme 17:22:38 -!- MichaelRaskin [~MichaelRa@195.178.216.22] has left #scheme 17:29:25 -!- karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [Read error: Connection reset by peer] 17:29:52 karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 17:34:09 sstrickl [~sstrickl@dublin.ccs.neu.edu] has joined #scheme 17:43:43 -!- rostayob [~rostayob@dyn1204-196.wlan.ic.ac.uk] has quit [Quit: WeeChat 0.3.5] 17:44:21 -!- kpal [~kpal@janus-nat-128-240-225-120.ncl.ac.uk] has quit [Ping timeout: 252 seconds] 17:44:35 brendyn [brendyn@2a01:7e00::f03c:91ff:fedf:65b4] has joined #scheme 17:48:48 -!- brendyn [brendyn@2a01:7e00::f03c:91ff:fedf:65b4] has quit [Ping timeout: 245 seconds] 17:49:44 -!- HG` [~HG@dsbg-4db59b3b.pool.mediaWays.net] has quit [Quit: Leaving.] 17:54:10 brendyn [brendyn@2a01:7e00::f03c:91ff:fedf:65b4] has joined #scheme 17:55:33 phao [phao@177.27.27.164] has joined #scheme 17:58:23 -!- brendyn [brendyn@2a01:7e00::f03c:91ff:fedf:65b4] has quit [Ping timeout: 245 seconds] 17:58:51 jewel [~jewel@196-215-88-43.dynamic.isadsl.co.za] has joined #scheme 18:02:07 brendyn [brendyn@2a01:7e00::f03c:91ff:fedf:65b4] has joined #scheme 18:03:14 mmc1 [~michal@178-85-131-65.dynamic.upc.nl] has joined #scheme 18:04:21 ASau [~user@95-27-175-175.broadband.corbina.ru] has joined #scheme 18:06:56 -!- gf3 [~gf3@unaffiliated/gf3] has quit [Excess Flood] 18:07:40 gf3 [~gf3@unaffiliated/gf3] has joined #scheme 18:11:54 drwho [~drwho@137.229.78.0] has joined #scheme 18:12:08 -!- ada2358 [~ada2358@login.ccs.neu.edu] has quit [Ping timeout: 240 seconds] 18:12:40 -!- eli [~eli@winooski.ccs.neu.edu] has quit [Ping timeout: 244 seconds] 18:13:25 -!- drwho [~drwho@137.229.78.0] has quit [Client Quit] 18:14:06 ada2358 [~ada2358@login.ccs.neu.edu] has joined #scheme 18:15:01 -!- ASau [~user@95-27-175-175.broadband.corbina.ru] has quit [Remote host closed the connection] 18:16:05 ASau [~user@95-27-175-175.broadband.corbina.ru] has joined #scheme 18:18:57 eli [~eli@winooski.ccs.neu.edu] has joined #scheme 18:20:38 EmmanuelOga [~emmanuel@190.244.3.40] has joined #scheme 18:27:08 choas [~lars@p4FDC5BEB.dip.t-dialin.net] has joined #scheme 18:35:35 HG` [~HG@dsbg-4db59b3b.pool.mediaWays.net] has joined #scheme 18:36:06 turbofail [~user@c-107-3-149-149.hsd1.ca.comcast.net] has joined #scheme 18:36:09 _schulte_ [~eschulte@adaptive.cs.unm.edu] has joined #scheme 18:39:19 -!- dzhus [~sphinx@95-25-98-203.broadband.corbina.ru] has quit [Ping timeout: 245 seconds] 18:43:29 -!- shaunxcode [~chatzilla@c-98-202-35-176.hsd1.ut.comcast.net] has quit [Ping timeout: 245 seconds] 18:44:02 -!- PfhorSlayer [~PfhatWork@sceapdsd43-15.989studios.com] has quit [] 18:50:25 -!- virl [~virl__@85-127-83-75.dynamic.xdsl-line.inode.at] has quit [Remote host closed the connection] 19:02:09 MichaelRaskin [~MichaelRa@3ad50e34.broker.freenet6.net] has joined #scheme 19:03:35 -!- bfgun [~b_fin_g@r186-48-192-178.dialup.adsl.anteldata.net.uy] has quit [Remote host closed the connection] 19:05:24 bfig [~b_fin_g@r186-48-192-178.dialup.adsl.anteldata.net.uy] has joined #scheme 19:07:59 snizzo [~quassel@host243-237-dynamic.50-79-r.retail.telecomitalia.it] has joined #scheme 19:31:40 -!- dronf [~user@host-46-186-32-201.dynamic.mm.pl] has quit [Read error: Connection reset by peer] 19:32:11 -!- homie` [~levgue@xdsl-78-35-153-172.netcologne.de] has quit [Remote host closed the connection] 19:33:23 dronf [~user@host-46-186-32-201.dynamic.mm.pl] has joined #scheme 19:33:41 homie` [~levgue@xdsl-78-35-153-172.netcologne.de] has joined #scheme 19:42:15 cool. guile has regexps. 19:43:05 Real regexps or "I can't be bothered I'll just link libpcre" regexps? 19:49:26 the fact that it even has support for regexps at all is cool 19:51:00 I'd say "regexps are trivial", but then my engine is hosted on top of Perl so I can trivially implement them anyway ;) 19:53:29 what scheme do you use? 19:55:43 chromaticwt: http://synthcode.com/scheme/irregex 19:57:16 regexps are trivial maybe, implementing the matching for them in a fast way however is not 19:58:13 cool 20:05:45 -!- hypercube32 [~hypercube@246.111.188.72.cfl.res.rr.com] has quit [Quit: Leaving] 20:07:20 what language doesn't have regexes? 20:07:46 brainfuck 20:08:08 guess i'll have to avoid it, then 20:08:20 ah you are missing out! 20:08:55 hypnocat, by default, C doesn't. 20:09:07 by default scheme does not either 20:09:13 Yes. 20:09:22 I think Go has, by default. 20:10:10 most languages have regex libraries, however 20:10:22 it's rare for a serious language not to, afaik 20:10:31 I am not aware of a language that doesn't. 20:11:08 forth in general, but some dialects like factor do 20:11:58 http://www.qlikz.org/forth/regex/regex.html 20:12:06 hypnocat, text parsing and processing in general, since it's so portable, is normally available to all languages 20:12:55 As libraries... 20:13:00 Regex is only one of the things... HTML parsing, XML parsing are everywhere too. 20:14:14 kuribas [~user@d54C43316.access.telenet.be] has joined #scheme 20:17:55 hypnocat: thank you 20:17:59 -!- leo2007 [~leo@123.114.34.224] has quit [Ping timeout: 252 seconds] 20:18:27 -!- sawjig [~sawjig@gateway/tor-sasl/sawjig] has quit [Remote host closed the connection] 20:21:55 -!- jewel [~jewel@196-215-88-43.dynamic.isadsl.co.za] has quit [Ping timeout: 240 seconds] 20:24:21 -!- snizzo [~quassel@host243-237-dynamic.50-79-r.retail.telecomitalia.it] has quit [Remote host closed the connection] 20:24:25 sawjig [~sawjig@gateway/tor-sasl/sawjig] has joined #scheme 20:25:45 -!- gravicappa [~gravicapp@ppp91-77-163-169.pppoe.mtu-net.ru] has quit [Remote host closed the connection] 20:26:18 -!- woonie [~woonie@137.132.43.240] has quit [Ping timeout: 252 seconds] 20:34:32 elrzn [~elrzn@129.218.217.87.dynamic.jazztel.es] has joined #scheme 20:43:15 -!- elrzn [~elrzn@129.218.217.87.dynamic.jazztel.es] has quit [Ping timeout: 240 seconds] 20:45:03 elrzn [~elrzn@129.218.217.87.dynamic.jazztel.es] has joined #scheme 20:53:00 -!- cyphase [~cyphase@unaffiliated/cyphase] has quit [Quit: http://www.cyphase.com/] 20:56:57 -!- elrzn [~elrzn@129.218.217.87.dynamic.jazztel.es] has quit [Remote host closed the connection] 21:04:48 kvda [~kvda@124-171-36-73.dyn.iinet.net.au] has joined #scheme 21:06:39 cyphase [~cyphase@unaffiliated/cyphase] has joined #scheme 21:07:45 Lajjla [~Lajla@2001:0:5ef5:79fd:206a:294e:ae33:eb94] has joined #scheme 21:07:55 -!- tuubow_ [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has quit [Ping timeout: 240 seconds] 21:08:32 Lajla- [~Lajla@2001:0:5ef5:79fd:206a:294e:ae33:eb94] has joined #scheme 21:09:35 -!- Lajla- [~Lajla@2001:0:5ef5:79fd:206a:294e:ae33:eb94] has quit [Read error: Connection reset by peer] 21:11:18 -!- stis [~stis@1-1-1-39a.veo.vs.bostream.se] has left #scheme 21:22:42 -!- chromaticwt [~user@71-222-151-95.albq.qwest.net] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 21:25:32 shaunxcode [~chatzilla@c-98-202-35-176.hsd1.ut.comcast.net] has joined #scheme 21:28:05 EdwardIII [~EdwardIII@unaffiliated/edward123] has joined #scheme 21:31:01 -!- bfig [~b_fin_g@r186-48-192-178.dialup.adsl.anteldata.net.uy] has quit [Quit: Leaving] 21:32:35 bfig [~b_fin_g@r186-48-192-178.dialup.adsl.anteldata.net.uy] has joined #scheme 21:33:52 rostayob [~rostayob@host86-137-9-21.range86-137.btcentralplus.com] has joined #scheme 21:34:32 chromaticwt [~user@71-222-151-95.albq.qwest.net] has joined #scheme 21:34:47 -!- rostayob [~rostayob@host86-137-9-21.range86-137.btcentralplus.com] has quit [Client Quit] 21:41:50 rostayob [~rostayob@host86-137-9-21.range86-137.btcentralplus.com] has joined #scheme 21:43:40 -!- Lajjla is now known as Lajla 21:44:12 rostayob1 [~rostayob@host217-42-33-219.range217-42.btcentralplus.com] has joined #scheme 21:45:55 -!- rostayob [~rostayob@host86-137-9-21.range86-137.btcentralplus.com] has quit [Ping timeout: 240 seconds] 21:48:52 bagratte [bagratte@95.75.228.195] has joined #scheme 21:49:15 -!- rostayob1 [~rostayob@host217-42-33-219.range217-42.btcentralplus.com] has quit [Ping timeout: 240 seconds] 21:53:24 -!- langmartin [~user@host-68-169-155-216.WISOLT2.epbfi.com] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 21:54:49 virl [~virl__@85-127-83-75.dynamic.xdsl-line.inode.at] has joined #scheme 21:54:55 -!- kuribas [~user@d54C43316.access.telenet.be] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 21:56:38 jcowan [~John@cpe-66-108-19-185.nyc.res.rr.com] has joined #scheme 21:57:13 -!- phao [phao@177.27.27.164] has quit [Quit: Not Here] 22:07:50 -!- ijp [~user@host86-177-156-199.range86-177.btcentralplus.com] has quit [Read error: Connection reset by peer] 22:20:08 soveran [~soveran@186.19.214.247] has joined #scheme 22:20:56 ijp [~user@host86-177-156-199.range86-177.btcentralplus.com] has joined #scheme 22:22:10 Lajjla [~Lajla@2001:0:5ef5:79fd:1002:294e:ae33:eb94] has joined #scheme 22:23:16 RomyRomy [~stickycak@dyn-209-2-227-184.dyn.columbia.edu] has joined #scheme 22:24:03 -!- RomyRomy [~stickycak@dyn-209-2-227-184.dyn.columbia.edu] has quit [Client Quit] 22:24:38 -!- Lajla [~Lajla@2001:0:5ef5:79fd:206a:294e:ae33:eb94] has quit [Ping timeout: 245 seconds] 22:28:02 -!- bagratte [bagratte@95.75.228.195] has left #scheme 22:41:58 posix provides regex to C - that's close enough 22:49:17 -!- chromaticwt [~user@71-222-151-95.albq.qwest.net] has quit [Remote host closed the connection] 22:50:48 -!- copumpkin is now known as ClayDavis 22:50:53 -!- ClayDavis is now known as copumpkin 22:56:50 -!- wingo [~wingo@90.164.198.39] has quit [Ping timeout: 244 seconds] 23:05:07 tuubow_ [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has joined #scheme 23:07:17 -!- jeapostrophe [~jay@lallab.cs.byu.edu] has quit [Ping timeout: 240 seconds] 23:15:37 -!- virl [~virl__@85-127-83-75.dynamic.xdsl-line.inode.at] has quit [Remote host closed the connection] 23:19:22 -!- peterhil [~peterhil@xdsl-77-86-196-131.nebulazone.fi] has quit [Ping timeout: 252 seconds] 23:21:13 jrslepak [~jrslepak@c-71-233-151-135.hsd1.ma.comcast.net] has joined #scheme 23:21:59 peterhil [~peterhil@xdsl-77-86-196-131.nebulazone.fi] has joined #scheme 23:26:17 -!- shaunxcode [~chatzilla@c-98-202-35-176.hsd1.ut.comcast.net] has quit [Ping timeout: 244 seconds] 23:35:04 confab [~confab@public-nat2.arc.losrios.edu] has joined #scheme 23:37:23 Lajla [~Lajla@2001:0:5ef5:79fd:3c8f:294e:ae33:eb94] has joined #scheme 23:39:45 -!- Lajjla [~Lajla@2001:0:5ef5:79fd:1002:294e:ae33:eb94] has quit [Read error: Operation timed out] 23:49:29 -!- GoKhlaYeh [~GoKhlaYeh@135.51.68.86.rev.sfr.net] has quit [Remote host closed the connection] 23:49:45 GoKhlaYeh [~GoKhlaYeh@117.31.80.79.rev.sfr.net] has joined #scheme 23:50:36 -!- fizzie [fis@unaffiliated/fizzie] has quit [Ping timeout: 265 seconds] 23:53:28 -!- amoe [~amoe@host-92-24-170-243.ppp.as43234.net] has quit [Ping timeout: 252 seconds] 23:55:16 amoe [~amoe@host-78-147-162-32.as13285.net] has joined #scheme