00:01:19 copumpkin [~pumpkin@17.101.89.204] has joined #scheme 00:01:19 -!- copumpkin [~pumpkin@17.101.89.204] has quit [Changing host] 00:01:20 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 00:01:51 elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has joined #scheme 00:03:22 -!- pumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Ping timeout: 250 seconds] 00:05:49 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Ping timeout: 246 seconds] 00:14:18 ysph [~user@adsl-89-11-71.mgm.bellsouth.net] has joined #scheme 00:15:42 -!- bweaver [~user@host-68-169-175-225.WISOLT2.epbfi.com] has quit [Ping timeout: 240 seconds] 00:18:30 Adamant [~Adamant@97-83-97-117.dhcp.trcy.mi.charter.com] has joined #scheme 00:18:30 -!- Adamant [~Adamant@97-83-97-117.dhcp.trcy.mi.charter.com] has quit [Changing host] 00:18:30 Adamant [~Adamant@unaffiliated/adamant] has joined #scheme 00:44:35 -!- myu2 [~myu2@v078198.dynamic.ppp.asahi-net.or.jp] has quit [Ping timeout: 255 seconds] 00:45:20 -!- Kleif [~Kleif@202.Red-81-37-78.dynamicIP.rima-tde.net] has quit [Ping timeout: 276 seconds] 01:03:06 -!- ckrailo [~ckrailo@208.86.167.249] has quit [Quit: Computer has gone to sleep.] 01:25:45 copumpkin [~pumpkin@209-6-232-56.c3-0.sbo-ubr1.sbo.ma.cable.rcn.com] has joined #scheme 01:25:45 -!- copumpkin [~pumpkin@209-6-232-56.c3-0.sbo-ubr1.sbo.ma.cable.rcn.com] has quit [Changing host] 01:25:45 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 01:27:37 xwl_ [~user@nat/nokia/x-levgwluvbowhlwgk] has joined #scheme 01:32:17 what do you think of this critique of lexical closures? http://www.jsoftware.com/jwiki/Guides/Lexical%20Closure#dissent 01:33:35 this was in response to paul graham's accumulator-generator problem (), apparently; by some J cats. 01:33:44 Clueless looney with a strawman. 01:35:25 jcowan [~John@cpe-74-68-112-189.nyc.res.rr.com] has joined #scheme 01:35:28 Riastradh: He's making a virtue of necessity, then; i.e. necessarily doing without closures? 01:36:34 Clueless: `Lexical closure is incompatible with the functional programming model.' False, according to any common definition of functional programming. 01:36:59 Looney: `A function whose output is not determined wholly by its input -- a function with ``hidden inputs'' -- is anathema to functional programming.' By that logic, f(x) = x + 1 is not a mathematical function, because `1' is a hidden input (and so is `+', and the application operator). 01:37:18 Strawman: Paul Graham's supposed `logic'. 01:37:22 Next? 01:37:47 -!- bgs100 [~ian@unaffiliated/bgs100] has quit [Quit: Leaving] 01:38:21 Excuse me, s/not a mathematical function/anathema to functional programming/1, to be precise. 01:40:16 Alternatively, perhaps just confused; perhaps he's mixing up the mutation of Graham's example with closures. 01:42:44 Well, 1 and + are constants. 02:01:40 Amazing: I never conceived of the implicit application operator in arithmetic; but maybe that's because I never fully internalized Church encoding. 02:08:43 -!- pygospa [~TheRealPy@kiel-d9bfddf1.pool.mediaWays.net] has quit [Ping timeout: 252 seconds] 02:10:50 pygospa [~TheRealPy@kiel-5f77b084.pool.mediaWays.net] has joined #scheme 02:13:25 -!- Adamant [~Adamant@unaffiliated/adamant] has quit [Read error: Operation timed out] 02:19:29 ebzzry [~aoeu@203.213.202.186] has joined #scheme 02:24:11 Adamant [~Adamant@97-83-97-117.dhcp.trcy.mi.charter.com] has joined #scheme 02:24:11 -!- Adamant [~Adamant@97-83-97-117.dhcp.trcy.mi.charter.com] has quit [Changing host] 02:24:11 Adamant [~Adamant@unaffiliated/adamant] has joined #scheme 02:25:11 Hi! In r5, how can I coerce an integer to a float (or double float)? 02:25:45 exact->inexact 02:28:14 jcowan: In my scheme (Scsh), I get this: (exact->inexact 4) => 4. 02:28:26 jcowan: (with a decimal point) 02:28:30 Yes. 02:28:38 That makes it a float. 02:28:44 Almost all Schemes support only double. 02:29:17 jcowan: How can I make it print with zeros? 02:29:29 Or how do I coerce a number (integer or float) to a float/doublefloat 02:29:51 exact->inexact will do that job; if the number is already inexact, it'll be left alone. 02:30:09 Formatting is not in R5RS, so you need to use your Scheme's local facilities. 02:30:35 Hmm 02:31:05 If I had a list of integers, I can do a: (map exact->inexact list-of-integers) 02:31:14 Rigt. 02:31:16 Right, even 02:31:59 "4." is a perfectly Schemish way to write a floating-point 4 02:39:40 OK 02:40:24 Scsh, uses Scheme48. By any chance, do you know how to make it have 0 when a number is printed for example 4. 02:40:25 saccade [~saccade@74-95-7-186-SFBA.hfc.comcastbusiness.net] has joined #scheme 02:44:30 ebzzry: scsh doesn't just "use Scheme48"; it uses a particularly ancient version thereof. 02:44:39 I don't; unfortunately scheme48 is rather underdocumented. But you could look at the manual 02:44:41 http://groups.csail.mit.edu/mac/projects/s48/snapshot/0.57/manual/s48manual.html 02:44:41 http://tinyurl.com/4cnxm78 02:45:43 cky: OK. The most popular incarnation of Scsh, that is. 02:47:35 (let ((s (number->string x))) (if (integer? x) (string-append s "0") s))... 02:47:59 Works, nevertheless. 02:48:34 ebzzry: scheme48 has a simple version of format (), but it doesn't seem to allow you to specify the width of floats; alas. 02:49:04 klutometis: Yeah. I was looking at that page earlier. Bummer. Thanks, anyway. :) 02:49:16 -!- masm [~masm@bl15-133-149.dsl.telepac.pt] has quit [Quit: Leaving.] 02:49:32 Hmm, what is the suggested way of controlling the precision of floats? 02:50:36 I think I'll just pad it, just like what Riastradh suggested. 02:51:11 The actual, as opposed to displayed precision? There is none; essentially all Schemes provide only doubles. 02:52:02 OK 02:54:47 So I think to myself, "what the hell? I'll learn J: it's like APL-lite." Then I come across things like this: . 02:55:14 Really? There's a primitive operator for "double"; and the same operator means "not-or"? Jesus. 02:55:33 -!- elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has quit [Ping timeout: 264 seconds] 02:58:09 elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has joined #scheme 03:00:29 ebzzry: :-) 03:12:17 -!- saccade [~saccade@74-95-7-186-SFBA.hfc.comcastbusiness.net] has quit [Read error: Operation timed out] 03:16:07 So I says to Mabel, I says ... 03:17:30 Duffy's Tavern, Archie speaking, Duffy ain't here! 03:38:03 -!- tauntaun [~icarus@ool-457c37c3.dyn.optonline.net] has quit [Quit: Ex-Chat] 03:38:17 tauntaun [~icarus@ool-457c37c3.dyn.optonline.net] has joined #scheme 03:40:26 -!- tauntaun [~icarus@ool-457c37c3.dyn.optonline.net] has quit [Client Quit] 03:47:13 -!- erjiang [~erjiang@c-67-167-96-135.hsd1.in.comcast.net] has quit [Quit: ttfn] 03:48:38 Is there anyway to split a float? For example 1.2 to 1 and 2. 03:49:50 rationalize is your friend, though it won't quite do what you ask. 03:51:18 ebzzry: CL's truncate will do it. Sadly Scheme's one won't. 03:51:27 Aw 03:51:54 That's precisely what I'm looking for -- a Scheme truncate. 03:52:11 ebzzry: Scheme has truncate, but it returns the integral part only, not the fractional part. 03:52:16 ebzzry: CL's version returns both. 03:52:37 My bad: *a Scheme truncate that works like CL's. 03:52:38 OK 03:52:43 :-D 03:53:56 ebzzry: It's hard to make a Scheme equivalent without being a pain in the neck to use. :-( 03:54:21 Hmm. I was beginning to do that, when I came to ask. :) 03:54:23 ebzzry: In CL, if you use a multiple-valued thingy in a single-value context, all subsequent values are ignored. 03:54:33 duncan_bayne [ca7e62a2@gateway/web/freenode/ip.202.126.98.162] has joined #scheme 03:54:51 yes 03:54:53 ebzzry: However, in Scheme, if you use a multipled-valued thingy in a single-value context, that's an error condition, and different Scheme implementations handle it different ways. 03:55:21 Ah, this is one of the disadvantages of having a very small language core. 03:55:51 -!- duncan_bayne [ca7e62a2@gateway/web/freenode/ip.202.126.98.162] has left #scheme 03:56:32 cky, I've always wondered why, it can be useful. 03:57:05 DT``: I wonder too. It seems that Chicken has CL's behaviour in that regard, though (handling MV in single-valued contexts). 03:57:13 incubot: (+ (values 1 2) 3) 03:57:13 4 03:57:25 incubot is chicken-powered? 03:57:35 rudybot, (+ (values 1 2) 3) ; fail, rudybot, fail! 03:57:35 DT``: but (?rel ?c ?b) will fail fast 03:57:41 rudybot, (+ (values 1 2) 3) 03:57:41 DT``: error: context expected 1 value, received 2 values: 1 2 03:58:01 In Chibi, multiple values are represented by a list with a unique car 03:58:23 > (values 1 2 3) 03:58:24 ((values) 1 2 3) 03:58:28 (list (list values ...))? 03:58:39 isn't that a tagged list? 03:58:55 It uses a specific cons that's stashed away as the tag. 03:59:43 jcowan: I don't have Chibi installed, but what happens if you do: (set-car! (caar (values)) 'foo) or the like? 03:59:53 *jcowan* shrugs 04:00:19 Um, I meant (car (values)), not caar. 04:00:32 You break it, but there's nothing you can portably do with multiple values except pass them to the second argument of call-with-values anyway. 04:00:45 Pretty much. *nods* 04:01:10 Chibi takes a bunch of shortcuts like that. For example, reverse! in its SRFI-1 implementation is implemented as reverse. 04:01:14 too bad, they could be useful. 04:01:31 DT``: How so? 04:02:22 jcowan: For starters, you can have CL-style rounding functions, without making them a pain to use in the common case (where you don't care about the residue). 04:02:29 jcowan, if they were like CL's, truncate could return the integral and fractional part. 04:02:36 That. 04:02:50 Ah, you're complaining about Scheme. I thought you were complaining about Chibi. 04:02:51 it doesn't because you need call-with-values to make it portable. 04:03:12 I never used Chibi. 04:03:30 It's easy to write let-values as a wrapper, though. The only thing Scheme absolutely can't do is invoke multiple m-v producers at once, like MULTIPLE-VALUE-CALL. 04:03:37 I tried to get that into R7RS, but no luck. 04:04:12 let-values is not enough imho. 04:04:34 it's *three* nested parentheses. 04:07:11 On Chicken, where everything is CPSed, multiple values are just the dual of multiple arguments, except that when you call a procedure with multiple arguments, you can check if the number of arguments are right at compile time, whereas there's no way to determine at compile time how many values a procedure returns. 04:08:09 You'd need a lambda expression like (lambda x y z #:fence a b c) and have the code assign to a, b, and c. 04:08:22 So multiple values are slightly more expensive because of the run-time check. 04:10:04 Speaking of #:fence, is WG1 going to have keywords? Is WG2? 04:10:26 -!- Euthydemus` [~euthydemu@vaxjo7.80.cust.blixtvik.net] has quit [Read error: Connection reset by peer] 04:10:43 Euthydemus [~euthydemu@vaxjo7.80.cust.blixtvik.net] has joined #scheme 04:14:58 -!- elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has quit [Ping timeout: 240 seconds] 04:15:37 elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has joined #scheme 04:15:53 Searching in /report/9 for "keyword", "optional", or "SRFI 88" (or "SRFI-88") didn't turn up anything. So I guess the answer is no. 04:18:59 -!- ijp [~user@host109-154-211-216.range109-154.btcentralplus.com] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 14:37:29 ccl-logbot [~ccl-logbo@setf.clozure.com] has joined #scheme 14:37:29 14:37:29 -!- names: ccl-logbot elderman blueadept nteon masm kilimanjaro tupi vilsonvieira tauntaun Adamant bharath_g drdo hiyuh tr3x_ gravicappa copumpkin aoeu_ Harrold_ f8l Caleb-- nilg alaricsp skeptical_p arbscht hkBst pnkfelix augiedoggie Mango-chan eut Euthydemus pygospa evhan pchrist leppie tarpsocks pothos qebab githogori DT`` bzzbzz ToxicFrog Pepe_ mario-goulart aidalgol peterhil` elly ski cmatei C-Keen Hal9k rasterbar docgnome yosafbridge incandenza klutometis 14:37:29 -!- names: tizoc rmrfchik_ Kovensky bremner_ _p4bl0 pjb Jafet metasyntax Nshag MapMan Khisanth pantsd askhader stamourv specbot weinholt poucet osoleve zilt cpach duncanm kanru levi Obfuscate aoh DerGuteMoritz ray ASau` rotty ve Leonidas dfeuer Nisstyre incubot gnomon muks kniu oivindbi acarrico offby1 rudybot lechon minsa LN^^ snorble_ araujo nowhereman amoe minion lisppaste rien clog joast zbigniew sigue nome peddie eno ineiros twem2 inimino dRbiG shardz tessier 14:37:29 -!- names: jeapostrophe snarkyboojum felipe preflex samth aking timchen1` foof tonyg jeff___ alexgordon cataska borism mmc certaint1 ecraven qsun Adrinael sjamaan fds mornfall elf danking cky simontwo_ rrm3 ozzloy Gertm chrissbx antoszka Zol em sloyd_ ada2358 tmi micro 14:37:36 tronador_ [~guille@190.145.89.146] has joined #scheme 14:40:37 MichaelRaskin [~MichaelRa@195.178.216.22] has joined #scheme 14:45:31 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 14:48:30 -!- kniu [~kniu@DOHOHO.RES.CMU.EDU] has quit [Read error: Operation timed out] 14:49:17 kniu [~kniu@DOHOHO.RES.CMU.EDU] has joined #scheme 14:50:45 -!- elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has quit [Ping timeout: 264 seconds] 14:51:30 elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has joined #scheme 15:03:12 -!- Nisstyre [~nisstyre@infocalypse-net.info] has quit [Disconnected by services] 15:03:42 wes__ [~nisstyre@infocalypse-net.info] has joined #scheme 15:09:45 femtoo [~femto@95-89-249-242-dynip.superkabel.de] has joined #scheme 15:10:05 pdelgallego [~pdelgalle@1385159852.dhcp.dbnet.dk] has joined #scheme 15:15:06 -!- elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has quit [Ping timeout: 250 seconds] 15:25:10 bweaver [~user@host-68-169-175-225.WISOLT2.epbfi.com] has joined #scheme 15:27:27 carleastlund [~cce@gotham.ccs.neu.edu] has joined #scheme 15:27:57 elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has joined #scheme 15:30:46 -!- Harrold_ [~quassel@70.50.219.248] has quit [Ping timeout: 240 seconds] 15:35:36 -!- elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has quit [Ping timeout: 260 seconds] 15:41:45 elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has joined #scheme 15:45:36 DrDuck [~duck@216.186.151.63] has joined #scheme 15:46:30 -!- femtoo [~femto@95-89-249-242-dynip.superkabel.de] has quit [Read error: Connection reset by peer] 15:51:02 pdlogan [~patrick@174-25-37-137.ptld.qwest.net] has joined #scheme 16:03:17 z0d [~z0d@artifact.hu] has joined #scheme 16:03:17 -!- z0d [~z0d@artifact.hu] has quit [Changing host] 16:03:17 z0d [~z0d@unaffiliated/z0d] has joined #scheme 16:20:55 -!- tauntaun [~icarus@64.134.66.60] has quit [Quit: Ex-Chat] 16:22:04 -!- mmc [~michal@85.90.76.130] has quit [Quit: Leaving.] 16:33:14 -!- hkBst [~quassel@gentoo/developer/hkbst] has quit [Remote host closed the connection] 16:37:21 -!- DrDuck [~duck@216.186.151.63] has quit [Ping timeout: 246 seconds] 16:38:15 stassats pasted "hrhrhr" at http://paste.lisp.org/display/120628 16:48:14 -!- kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has quit [Quit: Leaving] 17:01:15 -!- MichaelRaskin [~MichaelRa@195.178.216.22] has left #scheme 17:03:02 ckrailo [~ckrailo@208.86.167.249] has joined #scheme 17:07:47 DrDuck [~duck@146.229.119.106] has joined #scheme 17:12:21 HG` [~HG@dslb-188-109-169-172.pools.arcor-ip.net] has joined #scheme 17:16:02 jewel [~jewel@196-210-187-123.dynamic.isadsl.co.za] has joined #scheme 17:16:16 myu2 [~myu2@s199057.dynamic.ppp.asahi-net.or.jp] has joined #scheme 17:18:16 -!- DrDuck [~duck@146.229.119.106] has quit [Ping timeout: 260 seconds] 17:22:39 -!- tronador_ [~guille@190.145.89.146] has quit [Quit: tronador_] 17:23:11 tronador_ [~guille@190.145.89.146] has joined #scheme 17:24:58 femtoo [~femto@95-89-249-242-dynip.superkabel.de] has joined #scheme 17:32:02 ysph [~user@75-143-85-15.dhcp.aubn.al.charter.com] has joined #scheme 17:34:21 -!- f8l [~f8l@87-205-239-131.adsl.inetia.pl] has quit [Quit: WeeChat 0.3.4] 17:43:42 lbc [~quassel@0909ds1-sdb.0.fullrate.dk] has joined #scheme 17:51:14 kephas [pierre@AStrasbourg-551-1-112-16.w90-13.abo.wanadoo.fr] has joined #scheme 17:54:11 In Oleg's IterateeIO, why did he make the iteratee as a passive actor, waiting for the next chunk from the enumerator? Couldn't he pass a handle to get more chunk to the iterator, so that the iteratee can pull as necessary? 17:54:56 -!- nowhereman [pierre@AStrasbourg-551-1-25-123.w83-196.abo.wanadoo.fr] has quit [Ping timeout: 276 seconds] 17:55:33 -!- elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has quit [Ping timeout: 264 seconds] 17:55:41 -!- tronador_ [~guille@190.145.89.146] has quit [Quit: tronador_] 17:55:53 That is, the iteratee's job is to get to the DONE state, returning a final value. Why not give it control so it can do what is necessary to get there? 17:56:12 elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has joined #scheme 17:56:48 tronador_ [~guille@190.145.89.146] has joined #scheme 17:56:53 -!- alaricsp [~alaric@geniedb.hotdesktop.biz] has quit [Ping timeout: 276 seconds] 18:01:21 -!- HG` [~HG@dslb-188-109-169-172.pools.arcor-ip.net] has quit [Quit: Leaving.] 18:01:23 -!- hiyuh [~hiyuh@KD124214245222.ppp-bb.dion.ne.jp] has left #scheme 18:08:16 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 18:08:21 -!- Adamant [~Adamant@unaffiliated/adamant] has quit [Ping timeout: 246 seconds] 18:15:45 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has left #scheme 18:16:27 -!- wes__ [~nisstyre@infocalypse-net.info] has quit [Quit: Leaving] 18:16:51 Nisstyre [~nisstyre@infocalypse-net.info] has joined #scheme 18:20:11 -!- elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has quit [Ping timeout: 248 seconds] 18:26:36 elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has joined #scheme 18:33:57 -!- em [~em@unaffiliated/emma] has quit [Ping timeout: 264 seconds] 18:36:46 emma [~em@unaffiliated/emma] has joined #scheme 18:40:32 -!- emma is now known as em 18:42:41 -!- nilg [~user@77.70.2.229] has quit [Remote host closed the connection] 18:43:59 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 18:44:47 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has left #scheme 18:45:56 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 18:47:06 tauntaun [~icarus@64.134.66.60] has joined #scheme 18:48:21 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has quit [Remote host closed the connection] 18:48:38 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 18:54:19 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has quit [Remote host closed the connection] 18:54:40 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 19:04:33 copumpkin [~pumpkin@17.101.89.204] has joined #scheme 19:04:34 -!- copumpkin [~pumpkin@17.101.89.204] has quit [Changing host] 19:04:34 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 19:14:25 nilg [~user@77.70.2.229] has joined #scheme 19:14:57 MrFahrenheit [~RageOfTho@users-144-148.vinet.ba] has joined #scheme 19:21:47 grettke [~grettke@cpe-65-30-30-255.wi.res.rr.com] has joined #scheme 19:27:20 -!- pnkfelix [~Adium@c-68-82-87-23.hsd1.pa.comcast.net] has quit [Ping timeout: 255 seconds] 19:27:38 bgs100 [~ian@unaffiliated/bgs100] has joined #scheme 19:28:22 pnkfelix [~Adium@c-68-82-87-23.hsd1.pa.comcast.net] has joined #scheme 19:45:37 -!- LN^^ is now known as LN^off 19:51:56 -!- tauntaun [~icarus@64.134.66.60] has quit [Quit: Ex-Chat] 19:54:46 -!- kniu [~kniu@DOHOHO.RES.CMU.EDU] has quit [Quit: Leaving] 19:56:29 DrDuck [~duck@216.186.151.63] has joined #scheme 19:59:16 roadt [~roadt@60.168.91.255] has joined #scheme 20:00:42 choas [~lars@p5792CAB5.dip.t-dialin.net] has joined #scheme 20:04:32 -!- roadt [~roadt@60.168.91.255] has quit [Ping timeout: 246 seconds] 20:12:05 ijp [~user@host109-154-211-216.range109-154.btcentralplus.com] has joined #scheme 20:12:47 -!- jewel [~jewel@196-210-187-123.dynamic.isadsl.co.za] has quit [Ping timeout: 255 seconds] 20:12:54 tauntaun [~icarus@ool-457c37c3.dyn.optonline.net] has joined #scheme 20:25:33 -!- elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has quit [Ping timeout: 264 seconds] 20:27:40 elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has joined #scheme 20:34:09 homie [~levgue@xdsl-84-44-152-166.netcologne.de] has joined #scheme 20:36:45 wbooze [~levgue@xdsl-84-44-152-166.netcologne.de] has joined #scheme 20:44:23 -!- LN^off is now known as LN^^ 20:49:44 -!- bharath_g [~bharath10@117.211.88.150] has quit [Remote host closed the connection] 20:49:47 -!- femtoo [~femto@95-89-249-242-dynip.superkabel.de] has quit [Read error: Connection reset by peer] 20:54:08 -!- homie [~levgue@xdsl-84-44-152-166.netcologne.de] has quit [Read error: Operation timed out] 20:54:40 homie` [~levgue@xdsl-84-44-211-8.netcologne.de] has joined #scheme 20:55:16 wbooze` [~levgue@xdsl-84-44-211-8.netcologne.de] has joined #scheme 20:55:26 -!- homie` [~levgue@xdsl-84-44-211-8.netcologne.de] has quit [Remote host closed the connection] 20:55:49 -!- wbooze` [~levgue@xdsl-84-44-211-8.netcologne.de] has quit [Remote host closed the connection] 20:57:00 -!- wbooze [~levgue@xdsl-84-44-152-166.netcologne.de] has quit [Ping timeout: 250 seconds] 20:58:26 homie [~levgue@xdsl-84-44-211-8.netcologne.de] has joined #scheme 20:58:30 wbooze [~levgue@xdsl-84-44-211-8.netcologne.de] has joined #scheme 21:11:36 How many software engineers does it take to screw in a light bulb? 21:11:36 None. It's a hardware problem. 21:14:15 -!- vilsonvieira [~vilson@h08100.ifsc.usp.br] has quit [Quit: Saindo] 21:14:53 -!- elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has quit [Ping timeout: 240 seconds] 21:15:44 elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has joined #scheme 21:20:34 -!- carleastlund [~cce@gotham.ccs.neu.edu] has quit [Quit: carleastlund] 21:27:58 -!- bweaver [~user@host-68-169-175-225.WISOLT2.epbfi.com] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 21:28:16 Caleb--: http://my.opera.com/SerbianFighter/blog/show.dml/59193  here's my favourite. 21:28:43 yeah, i lol'd hard at that one 21:29:02 more here: http://www.reddit.com/r/AskReddit/comments/g6ip2/whats_your_favorite_how_many_x_does_it_take_to 21:29:03 http://tinyurl.com/49h2t2d 21:29:25 :) 21:39:55 -!- pchrist [~spirit@gentoo/developer/pchrist] has quit [Quit: leaving] 21:40:11 -!- elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has quit [Ping timeout: 260 seconds] 21:40:31 pchrist [~spirit@gentoo/developer/pchrist] has joined #scheme 21:44:00 elderman [~elderman@AMarseille-152-1-34-246.w81-251.abo.wanadoo.fr] has joined #scheme 21:46:27 HG` [~HG@dslb-188-109-169-172.pools.arcor-ip.net] has joined #scheme 21:58:00 -!- pdelgallego [~pdelgalle@1385159852.dhcp.dbnet.dk] has quit [Read error: Operation timed out] 22:15:41 -!- grettke [~grettke@cpe-65-30-30-255.wi.res.rr.com] has quit [] 22:16:04 pdelgallego [~pdelgalle@1385159931.dhcp.dbnet.dk] has joined #scheme 22:55:21 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 22:56:53 -!- tronador_ [~guille@190.145.89.146] has quit [Quit: tronador_] 23:02:08 -!- tauntaun [~icarus@ool-457c37c3.dyn.optonline.net] has quit [Quit: Ex-Chat] 23:06:22 -!- pdlogan [~patrick@174-25-37-137.ptld.qwest.net] has quit [Quit: Leaving.] 23:11:12 meanfish [~bill@76.73.221.195] has joined #scheme 23:14:03 -!- ijp [~user@host109-154-211-216.range109-154.btcentralplus.com] has quit [Ping timeout: 248 seconds] 23:20:47 -!- masm [~masm@bl15-133-149.dsl.telepac.pt] has quit [Quit: Leaving.] 23:21:02 dnolen [~davidnole@184.152.69.75] has joined #scheme 23:21:03 -!- dnolen [~davidnole@184.152.69.75] has quit [Excess Flood] 23:24:06 dnolen [~davidnole@184.152.69.75] has joined #scheme 23:24:56 -!- choas [~lars@p5792CAB5.dip.t-dialin.net] has quit [Quit: leaving] 23:33:24 tauntaun [~icarus@64.134.66.60] has joined #scheme 23:34:54 Senjai [~Senjai@unaffiliated/senjai] has joined #scheme 23:39:32 -!- lbc [~quassel@0909ds1-sdb.0.fullrate.dk] has quit [Remote host closed the connection] 23:40:50 Hey all 23:58:48 -!- gravicappa [~gravicapp@ppp91-77-182-113.pppoe.mtu-net.ru] has quit [Remote host closed the connection]