2014-11-12T00:04:52Z hiroakip quit (Ping timeout: 250 seconds) 2014-11-12T00:05:14Z tadni joined #scheme 2014-11-12T00:11:22Z githogori quit (Ping timeout: 250 seconds) 2014-11-12T00:14:18Z davexunit quit (Quit: Later) 2014-11-12T00:24:57Z amgarchIn9 quit (Ping timeout: 240 seconds) 2014-11-12T00:31:48Z githogori joined #scheme 2014-11-12T00:45:11Z daviid joined #scheme 2014-11-12T00:49:16Z rsf quit (Quit: Into crypts of rays!) 2014-11-12T00:53:45Z bjz quit (Ping timeout: 250 seconds) 2014-11-12T00:57:15Z tadni quit (Remote host closed the connection) 2014-11-12T00:57:53Z tadni joined #scheme 2014-11-12T00:59:30Z Niac joined #scheme 2014-11-12T01:04:05Z leppie quit (Ping timeout: 244 seconds) 2014-11-12T01:08:50Z leppie joined #scheme 2014-11-12T01:08:50Z githogori quit (Ping timeout: 264 seconds) 2014-11-12T01:09:25Z I3MNIX joined #scheme 2014-11-12T01:10:25Z leb quit (Quit: Computer has gone to sleep.) 2014-11-12T01:11:12Z _leb joined #scheme 2014-11-12T01:12:15Z kongtomorrow joined #scheme 2014-11-12T01:13:44Z jeapostrophe joined #scheme 2014-11-12T01:14:08Z jusss joined #scheme 2014-11-12T01:15:00Z I3MNIX left #scheme 2014-11-12T01:15:08Z vinleod joined #scheme 2014-11-12T01:17:02Z jusss quit (Read error: Connection reset by peer) 2014-11-12T01:20:47Z kongtomorrow quit 2014-11-12T01:21:11Z tadni quit (Remote host closed the connection) 2014-11-12T01:22:33Z Tbone139: I've got this function that gives correct values for low arguments but gives a wrong value when passed (expt 10 18). Is there a chance it would work if I avoiding fractional sub-loop arguments? 2014-11-12T01:22:44Z githogori joined #scheme 2014-11-12T01:24:47Z githogori_ joined #scheme 2014-11-12T01:24:59Z jcowan joined #scheme 2014-11-12T01:26:53Z githogori quit (Ping timeout: 240 seconds) 2014-11-12T01:30:08Z jcowan: hoi 2014-11-12T01:36:20Z mark_weaver: Tbone139: which scheme implementation are you using? it sounds like your scheme implementation doesn't support large integers. 2014-11-12T01:37:04Z Tbone139: getting the same erroneous value in mit-scheme and dr.racket 5.3.4 2014-11-12T01:38:02Z mark_weaver: well, it's probably a bug in your function then. 2014-11-12T01:38:32Z mark_weaver: you haven't given me enough information to say more. 2014-11-12T01:39:41Z mark_weaver: if your function uses inexact arithmetic, perhaps you're losing precision due to roundoff errors. 2014-11-12T01:41:07Z Tbone139: seems most likely, the problem asks for the last 9 digits of the sum, which expands past 10^53 without any modulos (project euler) 2014-11-12T01:42:06Z mark_weaver: which project euler problem is it? 2014-11-12T01:42:59Z Tbone139: 488 - my function gives expected values for 8 and 128, as well as 14 which I checked against manually 2014-11-12T01:45:10Z Tbone139: currently defining my own +, *, and - alternatives to truncate wherever I can 2014-11-12T01:45:59Z mark_weaver: if you show me the code, I can take a look. 2014-11-12T01:46:49Z Tbone139: https://bpaste.net/show/789c44b71d05 2014-11-12T01:48:47Z mark_weaver: Tbone139: I would try replacing the inexact numeric constants 1.5, 3.5, 5.5, and 0.5 with their exact counterparts: 3/2, 7/2, 11/2, and 1/2 2014-11-12T01:49:12Z Tbone139: ahh, changing now! 2014-11-12T01:49:22Z mark_weaver: I don't see any other sources of inexact arithmetic in there. 2014-11-12T01:49:58Z mark_weaver: alternatively, you can make them exact by simply putting "#e" in front, e.g. #e1.5 2014-11-12T01:51:51Z tadni joined #scheme 2014-11-12T01:58:48Z I3MNIX joined #scheme 2014-11-12T01:59:24Z mark_weaver: Tbone139: fwiw, when using exact arithmetic, you'll get better performance if you avoid non-integers. I haven't looked carefully at this code, but since I see multiples of 1/2, it might be possible to redefine those variables to be double their current values. 2014-11-12T01:59:53Z Tbone139: Yep, already rewriting as such. Thanks again! 2014-11-12T01:59:56Z mark_weaver: np! 2014-11-12T02:01:09Z taylanub quit (Ping timeout: 265 seconds) 2014-11-12T02:03:37Z I3MNIX quit (Remote host closed the connection) 2014-11-12T02:04:19Z jumblerg joined #scheme 2014-11-12T02:05:12Z jcowan: mark_weaver: Unfortunately, not all Schemes treat #e1.5 correctly: some of them treat it as equivalent to (inexact->exact 1.5). 2014-11-12T02:05:48Z mark_weaver: jcowan: ah, that's lame :-/ 2014-11-12T02:07:01Z I3MNIX joined #scheme 2014-11-12T02:07:48Z aranhoide joined #scheme 2014-11-12T02:07:52Z ijp quit (Quit: (if (flip-coin) (sleep (* 7 60 60)) (fetch (random-choose *caffeinated-beverages*)))) 2014-11-12T02:08:05Z jcowan: Alas. 2014-11-12T02:09:51Z mark_weaver: with small multiples of 1/2, it should be okay anyway, but I'd be curious to know which schemes say (eqv? 1/10 #e0.1) => #f 2014-11-12T02:11:31Z tadni quit (Remote host closed the connection) 2014-11-12T02:12:48Z copec quit (Quit: checkity check out.) 2014-11-12T02:17:21Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2014-11-12T02:19:52Z tadni joined #scheme 2014-11-12T02:21:29Z tobik quit (Ping timeout: 245 seconds) 2014-11-12T02:23:02Z tobik joined #scheme 2014-11-12T02:27:10Z vinleod quit (Quit: ["Textual IRC Client: www.textualapp.com"]) 2014-11-12T02:28:14Z aranhoide quit (Ping timeout: 255 seconds) 2014-11-12T02:30:57Z frkout_ joined #scheme 2014-11-12T02:32:05Z I3MNIX left #scheme 2014-11-12T02:32:15Z jcowan_ joined #scheme 2014-11-12T02:33:46Z frkout quit (Ping timeout: 244 seconds) 2014-11-12T02:34:11Z Tbone139: a hot shower and switching over to integers did it! 2014-11-12T02:35:35Z jcowan quit (Ping timeout: 258 seconds) 2014-11-12T02:35:45Z mark_weaver: Tbone139: that's good! 2014-11-12T02:38:01Z Vutral quit (Excess Flood) 2014-11-12T02:38:28Z stshine joined #scheme 2014-11-12T02:47:42Z klltkr_ joined #scheme 2014-11-12T02:48:20Z Vutral joined #scheme 2014-11-12T02:49:29Z klltkr quit (Ping timeout: 265 seconds) 2014-11-12T02:50:29Z tcsc joined #scheme 2014-11-12T02:57:20Z girrig quit (Ping timeout: 250 seconds) 2014-11-12T02:58:14Z girrig joined #scheme 2014-11-12T02:58:18Z jumblerg joined #scheme 2014-11-12T03:07:41Z theseb joined #scheme 2014-11-12T03:09:18Z Gyps quit (Quit: Gyps) 2014-11-12T03:13:02Z theseb quit (Quit: Leaving) 2014-11-12T03:14:43Z araujo quit (Quit: Leaving) 2014-11-12T03:29:16Z adu joined #scheme 2014-11-12T03:30:58Z rtra quit (Remote host closed the connection) 2014-11-12T03:31:46Z natarajs joined #scheme 2014-11-12T03:48:28Z effy quit (Read error: Connection reset by peer) 2014-11-12T03:56:43Z robot-beethoven joined #scheme 2014-11-12T03:59:37Z _leb quit (Quit: Computer has gone to sleep.) 2014-11-12T04:00:46Z leb joined #scheme 2014-11-12T04:09:12Z effy joined #scheme 2014-11-12T04:10:23Z jeapostrophe quit (Ping timeout: 240 seconds) 2014-11-12T04:26:01Z stshine quit (Remote host closed the connection) 2014-11-12T04:26:52Z tadni` joined #scheme 2014-11-12T04:27:57Z tadni quit (Ping timeout: 240 seconds) 2014-11-12T04:32:11Z phipes joined #scheme 2014-11-12T04:37:29Z phipes quit (Quit: Textual IRC Client: www.textualapp.com) 2014-11-12T04:40:26Z vanila: Is anyone familiar with haskell progamming language? esp. implementation 2014-11-12T04:40:53Z vanila: They tell me it does tail call elimination, but i don't think it does 2014-11-12T04:41:12Z vanila: what do you think ? 2014-11-12T04:43:36Z tcsc quit (Quit: computer sleeping) 2014-11-12T04:46:15Z BossKonaSegwaY quit (Ping timeout: 244 seconds) 2014-11-12T04:48:06Z tcsc joined #scheme 2014-11-12T04:48:07Z asumu: vanila: you may get more helpful answers in #haskell. Also the second Google result explains this in detail: http://stackoverflow.com/questions/13042353/does-haskell-have-tail-recursive-optimization 2014-11-12T04:48:07Z rudybot: http://tinyurl.com/ppdhu33 2014-11-12T04:48:51Z jaaqo joined #scheme 2014-11-12T04:51:15Z MichaelRaskin quit (Quit: MichaelRaskin) 2014-11-12T05:00:19Z kongtomorrow joined #scheme 2014-11-12T05:02:45Z BossKonaSegwaY joined #scheme 2014-11-12T05:14:46Z tcsc quit (Quit: bye!) 2014-11-12T05:19:24Z jaaqo quit (Ping timeout: 245 seconds) 2014-11-12T05:24:34Z alezost joined #scheme 2014-11-12T05:28:37Z phipes joined #scheme 2014-11-12T05:29:14Z MichaelRaskin joined #scheme 2014-11-12T05:31:33Z adu quit (Quit: adu) 2014-11-12T05:56:28Z vanila quit (Quit: Leaving) 2014-11-12T06:00:37Z Riastradh joined #scheme 2014-11-12T06:12:22Z copec joined #scheme 2014-11-12T06:12:22Z copec quit (Excess Flood) 2014-11-12T06:12:41Z copec joined #scheme 2014-11-12T06:22:47Z mrowe is now known as mrowe_away 2014-11-12T06:24:57Z daviid quit (Ping timeout: 240 seconds) 2014-11-12T06:26:53Z tadni` quit (Ping timeout: 264 seconds) 2014-11-12T06:31:38Z masm joined #scheme 2014-11-12T06:35:05Z oleo quit (Quit: Verlassend) 2014-11-12T06:37:41Z psy_ quit (Remote host closed the connection) 2014-11-12T06:37:44Z alexey joined #scheme 2014-11-12T06:44:52Z wingo joined #scheme 2014-11-12T06:55:48Z phipes quit (Quit: My MacBook has gone to sleep. ZZZzzz…) 2014-11-12T07:04:00Z hiroakip joined #scheme 2014-11-12T07:27:23Z stepnem joined #scheme 2014-11-12T07:31:20Z leb quit (Quit: Computer has gone to sleep.) 2014-11-12T07:36:25Z hiroakip quit (Ping timeout: 255 seconds) 2014-11-12T07:39:29Z BossKonaSegwaY quit (Ping timeout: 265 seconds) 2014-11-12T07:56:41Z alexey quit (Remote host closed the connection) 2014-11-12T08:04:16Z frkout_ quit (Read error: Connection reset by peer) 2014-11-12T08:04:24Z frkout joined #scheme 2014-11-12T08:09:27Z rtra joined #scheme 2014-11-12T08:16:51Z Isp-sec joined #scheme 2014-11-12T08:17:12Z psy_ joined #scheme 2014-11-12T08:19:08Z taylanub joined #scheme 2014-11-12T08:25:08Z srenatus joined #scheme 2014-11-12T08:27:29Z cmatei quit (Ping timeout: 264 seconds) 2014-11-12T08:29:14Z ventonegro joined #scheme 2014-11-12T08:31:29Z daviid joined #scheme 2014-11-12T08:32:35Z cmatei joined #scheme 2014-11-12T08:37:45Z mmc joined #scheme 2014-11-12T08:39:40Z jusss joined #scheme 2014-11-12T08:39:47Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2014-11-12T08:45:44Z clog quit (Ping timeout: 250 seconds) 2014-11-12T08:47:33Z clog joined #scheme 2014-11-12T08:51:47Z alexey joined #scheme 2014-11-12T08:52:16Z redeemed joined #scheme 2014-11-12T08:52:44Z daviid quit (Ping timeout: 245 seconds) 2014-11-12T09:00:12Z psy_ quit (Ping timeout: 265 seconds) 2014-11-12T09:01:34Z fgudin_ is now known as fgudin 2014-11-12T09:03:16Z _5kg quit (Ping timeout: 255 seconds) 2014-11-12T09:06:54Z clog quit (Ping timeout: 245 seconds) 2014-11-12T09:09:30Z fridim_ joined #scheme 2014-11-12T09:14:10Z clog joined #scheme 2014-11-12T09:17:21Z _5kg joined #scheme 2014-11-12T09:18:28Z jumblerg joined #scheme 2014-11-12T09:18:34Z clog quit (Ping timeout: 245 seconds) 2014-11-12T09:18:52Z Isp-sec quit (Ping timeout: 240 seconds) 2014-11-12T09:24:37Z xyh joined #scheme 2014-11-12T09:29:26Z natarajs quit (Ping timeout: 255 seconds) 2014-11-12T09:33:16Z Niac quit (Remote host closed the connection) 2014-11-12T09:42:47Z frkout quit (Remote host closed the connection) 2014-11-12T09:43:13Z frkout joined #scheme 2014-11-12T09:49:57Z jusss quit (Ping timeout: 240 seconds) 2014-11-12T09:50:37Z c74d quit (Remote host closed the connection) 2014-11-12T09:54:50Z c74d joined #scheme 2014-11-12T10:10:21Z gravicappa joined #scheme 2014-11-12T10:12:18Z frkout_ joined #scheme 2014-11-12T10:15:35Z frkout quit (Ping timeout: 258 seconds) 2014-11-12T10:33:58Z xyh quit (Read error: Connection reset by peer) 2014-11-12T10:36:27Z robot-beethoven quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2014-11-12T10:37:32Z Nizumzen joined #scheme 2014-11-12T10:47:51Z _5kg quit (Ping timeout: 264 seconds) 2014-11-12T10:48:05Z pnkfelix joined #scheme 2014-11-12T10:54:19Z bjz joined #scheme 2014-11-12T11:04:13Z przl joined #scheme 2014-11-12T11:05:30Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2014-11-12T11:11:53Z kongtomorrow quit 2014-11-12T11:18:01Z clog joined #scheme 2014-11-12T11:20:44Z jumblerg joined #scheme 2014-11-12T11:23:00Z natarajs joined #scheme 2014-11-12T11:23:52Z przl quit (Ping timeout: 240 seconds) 2014-11-12T11:25:56Z dmiles_afk quit (Quit: Read error: 110 (Connection timed out)) 2014-11-12T11:31:05Z _5kg joined #scheme 2014-11-12T11:37:02Z Riastradh quit (Remote host closed the connection) 2014-11-12T11:37:15Z Riastradh joined #scheme 2014-11-12T11:55:02Z Riastradh quit (Remote host closed the connection) 2014-11-12T11:55:15Z Riastradh joined #scheme 2014-11-12T11:56:52Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2014-11-12T12:00:20Z pjb` joined #scheme 2014-11-12T12:00:30Z jeapostrophe joined #scheme 2014-11-12T12:00:30Z jeapostrophe quit (Changing host) 2014-11-12T12:00:30Z jeapostrophe joined #scheme 2014-11-12T12:01:35Z pjb is now known as Guest34710 2014-11-12T12:01:36Z Cromulent joined #scheme 2014-11-12T12:01:41Z Cromulent quit (Client Quit) 2014-11-12T12:01:51Z pjb` is now known as pjb 2014-11-12T12:02:15Z Nizumzen quit (Ping timeout: 264 seconds) 2014-11-12T12:02:18Z Guest34710 quit (Ping timeout: 256 seconds) 2014-11-12T12:26:32Z frkout_ quit (Remote host closed the connection) 2014-11-12T12:26:59Z frkout joined #scheme 2014-11-12T12:27:15Z tadni joined #scheme 2014-11-12T12:29:09Z civodul joined #scheme 2014-11-12T12:33:16Z jusss joined #scheme 2014-11-12T12:38:24Z Nizumzen joined #scheme 2014-11-12T12:45:09Z psy_ joined #scheme 2014-11-12T12:46:46Z jcowan_ quit (Quit: Leaving) 2014-11-12T12:56:55Z alexey quit (Remote host closed the connection) 2014-11-12T12:58:49Z alexey joined #scheme 2014-11-12T13:01:58Z daviid joined #scheme 2014-11-12T13:02:50Z jusss quit (Remote host closed the connection) 2014-11-12T13:03:31Z jusss joined #scheme 2014-11-12T13:09:51Z jumblerg joined #scheme 2014-11-12T13:15:23Z joneshf-laptop quit (Ping timeout: 240 seconds) 2014-11-12T13:15:59Z joneshf quit (Ping timeout: 244 seconds) 2014-11-12T13:30:40Z henrytill joined #scheme 2014-11-12T13:36:29Z psy_ quit (Ping timeout: 264 seconds) 2014-11-12T13:37:05Z bb010g quit (Quit: Connection closed for inactivity) 2014-11-12T13:39:51Z Nizumzen quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2014-11-12T13:41:53Z civodul quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2014-11-12T13:43:21Z taylanub quit (Disconnected by services) 2014-11-12T13:44:09Z taylanub joined #scheme 2014-11-12T13:52:38Z daviid` joined #scheme 2014-11-12T13:52:47Z daviid quit (Read error: Connection reset by peer) 2014-11-12T13:57:27Z rtra quit (Ping timeout: 265 seconds) 2014-11-12T14:08:18Z ijp joined #scheme 2014-11-12T14:12:52Z jeapostrophe quit (Ping timeout: 258 seconds) 2014-11-12T14:19:32Z zeroish quit (Ping timeout: 244 seconds) 2014-11-12T14:21:25Z daviid` quit (Ping timeout: 255 seconds) 2014-11-12T14:27:43Z bjz quit (Ping timeout: 255 seconds) 2014-11-12T14:29:22Z oleo joined #scheme 2014-11-12T14:33:43Z bjz joined #scheme 2014-11-12T14:37:23Z jeapostrophe joined #scheme 2014-11-12T14:40:43Z cdidd quit (Ping timeout: 244 seconds) 2014-11-12T14:43:06Z psy_ joined #scheme 2014-11-12T14:43:54Z rtra joined #scheme 2014-11-12T14:53:22Z developernotes joined #scheme 2014-11-12T14:54:44Z xyh joined #scheme 2014-11-12T14:56:15Z wingo quit (Ping timeout: 264 seconds) 2014-11-12T14:56:28Z mmc quit (Quit: Leaving.) 2014-11-12T14:59:14Z davexunit joined #scheme 2014-11-12T14:59:45Z davexunit quit (Remote host closed the connection) 2014-11-12T15:00:29Z davexunit joined #scheme 2014-11-12T15:06:02Z ivan\ quit (Ping timeout: 255 seconds) 2014-11-12T15:07:24Z mmc joined #scheme 2014-11-12T15:08:29Z ivan\ joined #scheme 2014-11-12T15:11:07Z jusss quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2014-11-12T15:11:21Z swilr quit (Ping timeout: 272 seconds) 2014-11-12T15:11:22Z mmc quit (Read error: No route to host) 2014-11-12T15:11:39Z swilr joined #scheme 2014-11-12T15:16:31Z developernotes quit (Read error: Connection reset by peer) 2014-11-12T15:18:31Z alexey quit (Remote host closed the connection) 2014-11-12T15:25:14Z ivan\ quit (Ping timeout: 245 seconds) 2014-11-12T15:29:02Z ivan\ joined #scheme 2014-11-12T15:34:50Z ivan\ quit (Ping timeout: 255 seconds) 2014-11-12T15:38:53Z b4283 joined #scheme 2014-11-12T15:39:24Z araujo joined #scheme 2014-11-12T15:47:46Z developernotes joined #scheme 2014-11-12T15:48:46Z hiyosi quit (Read error: Connection reset by peer) 2014-11-12T15:49:54Z hiyosi joined #scheme 2014-11-12T15:50:56Z Nizumzen joined #scheme 2014-11-12T15:52:29Z przl joined #scheme 2014-11-12T15:52:56Z przl quit (Client Quit) 2014-11-12T15:53:53Z gravicappa quit (Ping timeout: 264 seconds) 2014-11-12T15:58:25Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2014-11-12T15:59:21Z jumblerg joined #scheme 2014-11-12T16:04:56Z rtra quit (Ping timeout: 244 seconds) 2014-11-12T16:07:02Z civodul joined #scheme 2014-11-12T16:07:24Z pnkfelix quit (Ping timeout: 265 seconds) 2014-11-12T16:07:41Z natarajs quit (Ping timeout: 255 seconds) 2014-11-12T16:09:24Z xyh quit (Ping timeout: 265 seconds) 2014-11-12T16:10:29Z Vutral quit (Excess Flood) 2014-11-12T16:12:03Z rtra joined #scheme 2014-11-12T16:14:55Z duggiefresh joined #scheme 2014-11-12T16:17:11Z Vutral joined #scheme 2014-11-12T16:18:23Z xyh joined #scheme 2014-11-12T16:20:15Z phipes joined #scheme 2014-11-12T16:20:33Z phipes quit (Max SendQ exceeded) 2014-11-12T16:27:13Z psy_ quit (Remote host closed the connection) 2014-11-12T16:33:21Z redeemed quit (Quit: q) 2014-11-12T16:41:53Z cmatei quit (Ping timeout: 240 seconds) 2014-11-12T16:41:53Z Riastradh quit (Ping timeout: 250 seconds) 2014-11-12T16:43:18Z b4283 quit (Read error: Connection reset by peer) 2014-11-12T16:45:09Z theseb joined #scheme 2014-11-12T16:47:21Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2014-11-12T16:51:39Z zacts joined #scheme 2014-11-12T16:51:49Z zacts quit (Quit: leaving) 2014-11-12T16:52:05Z ijp quit (Quit: This ijp has ended peacefully) 2014-11-12T16:54:51Z kongtomorrow joined #scheme 2014-11-12T16:56:51Z davexunit quit (Ping timeout: 264 seconds) 2014-11-12T16:57:11Z ananna quit (Read error: Connection reset by peer) 2014-11-12T17:00:57Z davexunit joined #scheme 2014-11-12T17:03:37Z fantazo joined #scheme 2014-11-12T17:08:00Z masm quit (Quit: Leaving.) 2014-11-12T17:09:16Z pnkfelix joined #scheme 2014-11-12T17:11:33Z Nizumzen quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2014-11-12T17:11:59Z duggiefresh quit (Remote host closed the connection) 2014-11-12T17:12:25Z duggiefresh joined #scheme 2014-11-12T17:16:58Z duggiefresh quit (Ping timeout: 244 seconds) 2014-11-12T17:19:10Z alexey joined #scheme 2014-11-12T17:22:27Z developernotes quit (Ping timeout: 272 seconds) 2014-11-12T17:22:43Z sheilong joined #scheme 2014-11-12T17:23:37Z alexey quit (Ping timeout: 245 seconds) 2014-11-12T17:27:47Z MichaelRaskin quit (Ping timeout: 245 seconds) 2014-11-12T17:33:42Z ventonegro quit (Remote host closed the connection) 2014-11-12T17:38:17Z girrig quit (Ping timeout: 264 seconds) 2014-11-12T17:38:58Z tadni quit (Remote host closed the connection) 2014-11-12T17:40:47Z girrig joined #scheme 2014-11-12T17:42:27Z Riastradh joined #scheme 2014-11-12T17:42:52Z Vutral quit (Excess Flood) 2014-11-12T17:45:06Z gravicappa joined #scheme 2014-11-12T17:49:29Z kongtomorrow quit 2014-11-12T17:50:11Z Vutral joined #scheme 2014-11-12T17:50:19Z amgarchIn9 joined #scheme 2014-11-12T17:51:34Z joneshf-laptop joined #scheme 2014-11-12T17:52:15Z aranhoide joined #scheme 2014-11-12T17:52:44Z tadni joined #scheme 2014-11-12T17:52:52Z sheilong quit (Quit: Konversation terminated!) 2014-11-12T17:55:30Z joneshf joined #scheme 2014-11-12T17:55:37Z joneshf-laptop quit (Ping timeout: 240 seconds) 2014-11-12T17:55:39Z developernotes joined #scheme 2014-11-12T18:01:53Z duggiefresh joined #scheme 2014-11-12T18:09:05Z hiroakip joined #scheme 2014-11-12T18:10:38Z boycottg00gle joined #scheme 2014-11-12T18:16:33Z ijp joined #scheme 2014-11-12T18:16:38Z ecraven: Riastradh: did you sqlite interface ever make it into mit/gnu scheme proper? I'd love to use it, but would prefer not to do my own custom version of scheme 2014-11-12T18:20:14Z kazimir42 joined #scheme 2014-11-12T18:20:28Z sheilong joined #scheme 2014-11-12T18:23:26Z jeapostr1phe joined #scheme 2014-11-12T18:26:04Z jeapostrophe quit (Ping timeout: 245 seconds) 2014-11-12T18:27:14Z hiyosi quit (Ping timeout: 244 seconds) 2014-11-12T18:33:10Z srenatus quit (Quit: Connection closed for inactivity) 2014-11-12T18:34:40Z tadni quit (Remote host closed the connection) 2014-11-12T18:35:16Z Riastradh: ecraven: Nope, not yet. 2014-11-12T18:38:02Z tadni joined #scheme 2014-11-12T18:39:17Z hiroakip quit (Ping timeout: 258 seconds) 2014-11-12T18:39:46Z developernotes quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2014-11-12T18:45:03Z Vutral quit (Excess Flood) 2014-11-12T18:45:56Z araujo quit (Ping timeout: 265 seconds) 2014-11-12T18:46:13Z ecraven: Riastradh: any plans to do it soon? 2014-11-12T18:46:25Z vanila joined #scheme 2014-11-12T18:46:32Z ecraven: right now I'm using my own ffi solution, but that's definitely inferior to yours :) 2014-11-12T18:47:52Z Riastradh: Been planning to make the microcode install header files necessary to build extensions out of tree. 2014-11-12T18:48:00Z Vutral joined #scheme 2014-11-12T18:48:46Z ecraven: is there a reason not to include this in-tree/ 2014-11-12T18:48:48Z ecraven: ? 2014-11-12T18:49:23Z fantazo quit (Quit: Verlassend) 2014-11-12T18:49:34Z Vutral quit (Excess Flood) 2014-11-12T18:51:46Z hiroakip joined #scheme 2014-11-12T18:51:59Z araujo joined #scheme 2014-11-12T18:52:18Z Riastradh: Silly to put everything into one tree. 2014-11-12T18:52:31Z Riastradh: Should be independently buildable. 2014-11-12T18:52:37Z ecraven: hehe, that is very true 2014-11-12T18:53:00Z Vutral joined #scheme 2014-11-12T18:53:46Z gravicappa quit (Remote host closed the connection) 2014-11-12T18:54:33Z araujo quit (Max SendQ exceeded) 2014-11-12T18:54:49Z natarajs joined #scheme 2014-11-12T18:55:04Z araujo joined #scheme 2014-11-12T18:55:04Z araujo quit (Changing host) 2014-11-12T18:55:04Z araujo joined #scheme 2014-11-12T18:55:35Z Riastradh: git.sv.gnu.org broken? 2014-11-12T18:56:39Z ecraven: it shows a simple page here 2014-11-12T18:56:41Z wingo joined #scheme 2014-11-12T18:57:13Z Vutral quit (Excess Flood) 2014-11-12T18:57:37Z ecraven: but doesn't do much :( 2014-11-12T18:59:20Z taylanub: Emacs is transitioning to git; might be under huge load. 2014-11-12T19:00:11Z davexunit: Riastradh: FSF sysadmin is aware of the issue 2014-11-12T19:00:19Z Riastradh: OK. 2014-11-12T19:01:27Z xyh quit (Remote host closed the connection) 2014-11-12T19:06:47Z hiroakip quit (Ping timeout: 265 seconds) 2014-11-12T19:16:04Z oldskirt_ joined #scheme 2014-11-12T19:16:04Z oldskirt_ quit (Changing host) 2014-11-12T19:16:04Z oldskirt_ joined #scheme 2014-11-12T19:19:17Z oldskirt quit (Ping timeout: 240 seconds) 2014-11-12T19:19:58Z cmatei joined #scheme 2014-11-12T19:20:13Z alexey joined #scheme 2014-11-12T19:22:37Z anannie joined #scheme 2014-11-12T19:22:37Z anannie quit (Changing host) 2014-11-12T19:22:37Z anannie joined #scheme 2014-11-12T19:23:15Z hiyosi joined #scheme 2014-11-12T19:25:05Z alexey quit (Ping timeout: 265 seconds) 2014-11-12T19:27:56Z hiyosi quit (Ping timeout: 250 seconds) 2014-11-12T19:32:59Z developernotes joined #scheme 2014-11-12T19:35:39Z ijp quit (Quit: juggling) 2014-11-12T19:37:21Z girrig quit (Ping timeout: 272 seconds) 2014-11-12T19:38:19Z girrig joined #scheme 2014-11-12T19:46:59Z theseb quit (Remote host closed the connection) 2014-11-12T19:48:39Z developernotes quit (Ping timeout: 244 seconds) 2014-11-12T19:51:42Z developernotes joined #scheme 2014-11-12T19:54:18Z Isp-sec joined #scheme 2014-11-12T20:08:09Z developernotes quit (Read error: Connection reset by peer) 2014-11-12T20:10:41Z mark_weaver quit (Ping timeout: 255 seconds) 2014-11-12T20:10:58Z fantazo joined #scheme 2014-11-12T20:18:48Z pnkfelix quit (Ping timeout: 265 seconds) 2014-11-12T20:26:37Z fridim_ quit (Ping timeout: 240 seconds) 2014-11-12T20:27:46Z boycottg00gle quit (Remote host closed the connection) 2014-11-12T20:35:02Z mark_weaver joined #scheme 2014-11-12T20:39:05Z hiyosi joined #scheme 2014-11-12T20:42:23Z wingo quit (Ping timeout: 240 seconds) 2014-11-12T20:44:12Z hiyosi quit (Ping timeout: 250 seconds) 2014-11-12T20:49:38Z sheilong quit (Quit: Konversation terminated!) 2014-11-12T20:52:32Z natarajs quit (Ping timeout: 255 seconds) 2014-11-12T20:52:47Z jeapostr1phe quit (Ping timeout: 250 seconds) 2014-11-12T20:57:59Z toxi joined #scheme 2014-11-12T21:11:25Z kazimir42 quit (Ping timeout: 250 seconds) 2014-11-12T21:12:33Z ijp joined #scheme 2014-11-12T21:12:48Z alezost quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2014-11-12T21:15:47Z mrowe_away is now known as mrowe 2014-11-12T21:17:36Z _leb joined #scheme 2014-11-12T21:20:09Z hiroakip joined #scheme 2014-11-12T21:21:01Z alexey joined #scheme 2014-11-12T21:25:02Z mrowe is now known as mrowe_away 2014-11-12T21:25:22Z alexey quit (Ping timeout: 250 seconds) 2014-11-12T21:26:03Z jeapostrophe joined #scheme 2014-11-12T21:30:35Z BW^- joined #scheme 2014-11-12T21:30:52Z BW^-: which are the matureScheme implementations that can be run on the JVM (and preferably have call/cc)? 2014-11-12T21:31:06Z BW^-: so, we got SISC, Kawa and Bigloo. 2014-11-12T21:31:35Z BW^-: any more? 2014-11-12T21:31:58Z ijp: I don't think kawa has call/cc 2014-11-12T21:32:58Z taylanub: didn't know Bigloo runs on the JVM... SISC seems unmaintained. Kawa is under development; would be my go-to JVM Scheme 2014-11-12T21:33:16Z DGASAU quit (Remote host closed the connection) 2014-11-12T21:33:17Z taylanub: ijp: how much is call/cc actually used in the wild? it's considered harmful anyway :P 2014-11-12T21:34:30Z ijp: taylanub: you should be asking the person who wants it 2014-11-12T21:34:32Z DGASAU joined #scheme 2014-11-12T21:35:08Z taylanub: TIL Bigloo is by INRIA 2014-11-12T21:35:57Z taylanub: and didn't know they were legitimately aiming at C++ levels of performance either .. that's neat 2014-11-12T21:45:57Z BW^-: taylanub: call/cc is *ESSENTIAL* 2014-11-12T21:46:09Z BW^-: taylanub: it's used whenever you need return points, in particular nontrivial return points 2014-11-12T21:46:14Z BW^-: ijp: me. 2014-11-12T21:46:54Z BW^-: taylanub: Bigloo has issues though, it's unsymmetric internally in several respects, for instance it prepends its non-fixnum numbers with a "Z" in the serialized form - Duh 2014-11-12T21:47:00Z _leb quit (Quit: Computer has gone to sleep.) 2014-11-12T21:47:06Z BW^-: and it's hardwired to a weird module systme. 2014-11-12T21:47:50Z taylanub: BW^-: hm, R7RS has `guard' at least which a system with no call/cc could still implement with some throw/catch system 2014-11-12T21:48:54Z BW^-: taylanub: yeah sure, that kind of stuff is of use in limited, non-holistic systems, for which of course there are an infinity of usecases, just like pure call/cc has an infinity of usecases too 2014-11-12T22:01:47Z toxi quit (Quit: Using Circe, the loveliest of all IRC clients) 2014-11-12T22:08:38Z leb joined #scheme 2014-11-12T22:11:39Z ijp quit (Quit: This ijp has ended peacefully) 2014-11-12T22:12:40Z mrowe_away is now known as mrowe 2014-11-12T22:13:41Z BossKonaSegwaY joined #scheme 2014-11-12T22:14:04Z goglosh joined #scheme 2014-11-12T22:15:39Z BW^-: wait 2014-11-12T22:15:48Z BW^-: MzScheme seems to have JIT output?! hmm 2014-11-12T22:16:15Z taylanub: BW^-: MzScheme is what became Racket, no? 2014-11-12T22:18:02Z BW^-: taylanub: yes. 2014-11-12T22:18:08Z BW^-: ah, JIT was not in the Java sense of the word 2014-11-12T22:18:12Z BW^-: as I got it 2014-11-12T22:19:17Z Isp-sec quit (Ping timeout: 240 seconds) 2014-11-12T22:21:21Z goglosh: I saw an underground scheme project at some MIT website 2014-11-12T22:21:34Z goglosh: had a broken link to a scheme shell project 2014-11-12T22:22:07Z goglosh: is that old-long-dead-forgotten-and-buried-in-a-dated-server project? 2014-11-12T22:22:50Z Riastradh: Called scsh, some folks are/were recently (past several years) working on bringing it up to date again, dunno details, might ask Olin Shivers at Northeastern. 2014-11-12T22:23:10Z taylanub: Guile has a port of it too AFAIK 2014-11-12T22:23:40Z goglosh: oh I see, I couldn't find a date on it so I didn't know 2014-11-12T22:23:44Z goglosh: was a cool idea though 2014-11-12T22:24:34Z BW^-: goglosh,Riastradh: and what did the project do? 2014-11-12T22:25:04Z Riastradh: http://scsh.net/ 2014-11-12T22:25:20Z goglosh: something about taking over the world 2014-11-12T22:28:38Z hiyosi joined #scheme 2014-11-12T22:29:22Z cdidd joined #scheme 2014-11-12T22:33:19Z hiyosi quit (Ping timeout: 250 seconds) 2014-11-12T22:44:10Z BitPuffin joined #scheme 2014-11-12T22:44:13Z fikusz quit (Remote host closed the connection) 2014-11-12T22:46:15Z fikusz joined #scheme 2014-11-12T22:57:27Z vanila quit (Remote host closed the connection) 2014-11-12T22:57:48Z civodul quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2014-11-12T23:02:37Z vanila joined #scheme 2014-11-12T23:03:57Z oleo__ joined #scheme 2014-11-12T23:04:41Z oleo is now known as Guest71941 2014-11-12T23:05:17Z Guest71941 quit (Ping timeout: 245 seconds) 2014-11-12T23:06:23Z ryan__ joined #scheme 2014-11-12T23:06:58Z ryan__ quit (Client Quit) 2014-11-12T23:09:29Z Sgeo_ quit (Ping timeout: 264 seconds) 2014-11-12T23:13:17Z Sgeo joined #scheme 2014-11-12T23:20:16Z aranhoide_ joined #scheme 2014-11-12T23:20:51Z aranhoide quit (Ping timeout: 264 seconds) 2014-11-12T23:21:55Z alexey joined #scheme 2014-11-12T23:26:07Z alexey quit (Ping timeout: 245 seconds) 2014-11-12T23:26:30Z Ryan_Burnside joined #scheme 2014-11-12T23:35:48Z leb quit (Quit: Computer has gone to sleep.) 2014-11-12T23:36:01Z hiyosi joined #scheme 2014-11-12T23:47:15Z stepnem quit (Ping timeout: 264 seconds) 2014-11-12T23:53:37Z BW^- quit (Quit: BW^-)