2015-03-24T00:08:58Z oleo_ joined #sbcl 2015-03-24T00:08:58Z oleo is now known as Guest87707 2015-03-24T00:12:21Z Guest87707 quit (Ping timeout: 256 seconds) 2015-03-24T01:01:29Z LiamH joined #sbcl 2015-03-24T01:16:02Z slyrus joined #sbcl 2015-03-24T01:17:08Z gabriel_laddel joined #sbcl 2015-03-24T01:24:22Z Bicyclidine quit (Quit: nitya-samsarins) 2015-03-24T01:41:34Z slyrus quit (Ping timeout: 272 seconds) 2015-03-24T01:46:14Z gabriel_laddel quit (Remote host closed the connection) 2015-03-24T01:50:42Z edgar-rft quit (Quit: edgar-rft) 2015-03-24T02:15:49Z echo-area joined #sbcl 2015-03-24T02:33:30Z stassats: this backwards compatibility thing is devolving into bike shedding 2015-03-24T02:34:18Z nyef: As in, please take it out behind the bike shed and put a bullet through its skull? 2015-03-24T02:34:39Z stassats: sounds like a great option 2015-03-24T02:35:22Z stassats: search and replace for QUIT to EXIT would take seconds, just need to find the maintainers 2015-03-24T02:35:53Z stassats: and people say x86 has a crummy old instruction set, damned if you do, damned if you don't 2015-03-24T02:35:58Z nyef: For those who want to maintain compatibility with older SBCL, write a feature conditional to check for a public symbol named EXIT in the appropriate package and MOVE ON. 2015-03-24T02:36:05Z stassats: note to self: don't write software which has users 2015-03-24T02:36:20Z nyef: Hell, I got burned by a change to how FDEFNs are found in the globaldb. 2015-03-24T02:36:40Z Bike: people are arguing about this? 2015-03-24T02:36:50Z nyef: The interfaces that I was using simply went away without warning. 2015-03-24T02:37:12Z stassats: nyef: which is a good feature 2015-03-24T02:37:15Z nyef: Did I bitch about it? No. I worked out the change that I needed, the two feature conditionals required, and moved on. 2015-03-24T02:37:55Z nyef: Of course, I earned the silent breakage, because it's not a feature exposed in a public package, but it's also Not A Big Deal To Fix. 2015-03-24T02:38:08Z nyef: I also have the feature conditional handy for the QUIT vs. EXIT thing. 2015-03-24T02:38:54Z stassats: slime has WITH-SYMBOL 2015-03-24T02:39:20Z stassats: (defimplementation quit-lisp () 2015-03-24T02:39:20Z stassats: #+#.(swank/backend:with-symbol 'exit 'sb-ext) 2015-03-24T02:39:20Z stassats: (sb-ext:exit) 2015-03-24T02:39:20Z stassats: #-#.(swank/backend:with-symbol 'exit 'sb-ext) 2015-03-24T02:39:23Z stassats: (progn 2015-03-24T02:39:26Z stassats: #+sb-thread 2015-03-24T02:39:31Z stassats: (dolist (thread (remove (current-thread) (all-threads))) 2015-03-24T02:39:33Z stassats: (ignore-errors (sb-thread:terminate-thread thread))) 2015-03-24T02:39:36Z stassats: oh bloody terminal emacs, i hate it 2015-03-24T02:41:46Z loke: stassats: ++ 2015-03-24T02:42:42Z stassats: too bad my chromebook can't run emacs well 2015-03-24T02:43:13Z loke: stassats: Apparently it will soon enough. 2015-03-24T02:43:35Z loke: stassats: Did you see the recent Google contributions on the emacs-dev list? They did a NaCl port of Emacs. 2015-03-24T02:44:35Z stassats: i also like the "it doesn't disconnect from IRC when it goes to sleep" bit 2015-03-24T02:44:54Z loke: stassats: What do you use to IRC on chromebook? 2015-03-24T02:45:07Z stassats: emacs over ssh, duh 2015-03-24T02:46:39Z stassats: so, nacl sbcl? 2015-03-24T02:47:10Z stassats: well, i have it rooted, so i have no problem running sbcl 2015-03-24T02:47:33Z nyef: ... But does it run with threads? 2015-03-24T02:47:52Z stassats: sure, it's an atom chromebook 2015-03-24T02:48:33Z stassats: don't even need crouton or other tricks 2015-03-24T02:48:50Z stassats: but i still end up using it for Qt 2015-03-24T02:49:19Z stassats: i guess if i rewrote my UI into web, i could run it from sbcl + hunchentoot and access it in chrome 2015-03-24T02:49:24Z stassats: but i also hate web 2015-03-24T02:55:42Z ASau` joined #sbcl 2015-03-24T02:58:58Z ASau quit (Ping timeout: 252 seconds) 2015-03-24T02:59:01Z Quadrescence joined #sbcl 2015-03-24T03:00:15Z loke: stassats: My problem with the terminal in chromeos was that I found no way of setting it to use white background 2015-03-24T03:00:24Z loke: Made it instantly useless for me 2015-03-24T03:03:27Z stassats: yeah, i actually prefer the white background as well 2015-03-24T03:04:15Z loke: white background is scientifically better to reduce eye strain. Anyway, there must be a way to get a better terminal on chromeos 2015-03-24T03:04:44Z stassats: but surely there must be a way to make it white, i haven't tried yet 2015-03-24T03:04:51Z loke: Can it be done with the crouton? (I never tried it, because our chromebook is mainly used by my daugfher) 2015-03-24T03:07:01Z stassats: ok, i just made it white 2015-03-24T03:07:06Z loke: How? 2015-03-24T03:07:19Z stassats: http://git.chromium.org/gitweb/?p=chromiumos/platform/assets.git;a=blob;f=chromeapps/nassh/doc/faq.txt#l288 2015-03-24T03:08:01Z loke: Here's the NaCl thread by the way: https://lists.gnu.org/archive/html/emacs-devel/2015-03/msg00312.html 2015-03-24T03:08:30Z loke: Oh neat. Thanks for the link stassats 2015-03-24T03:08:33Z stassats: what i would love: emacs shortcuts in the input fields 2015-03-24T03:09:00Z loke: In the browser? 2015-03-24T03:09:44Z stassats: right 2015-03-24T03:10:17Z stassats: or modifying any shortcuts, for that matter 2015-03-24T03:11:13Z salva quit (Ping timeout: 264 seconds) 2015-03-24T03:18:43Z LiamH quit (Ping timeout: 244 seconds) 2015-03-24T03:24:53Z psy_ joined #sbcl 2015-03-24T03:30:45Z ASau` is now known as ASau 2015-03-24T03:47:22Z scymtym quit (Ping timeout: 252 seconds) 2015-03-24T03:53:46Z gabriel_laddel joined #sbcl 2015-03-24T04:27:13Z gabriel_laddel quit (Remote host closed the connection) 2015-03-24T05:06:43Z nyef quit (Quit: G'night all) 2015-03-24T05:27:41Z gingerale joined #sbcl 2015-03-24T05:36:22Z pranavrc joined #sbcl 2015-03-24T06:11:07Z flip214: stassats: vimperator? ;) 2015-03-24T06:14:19Z edgar-rft joined #sbcl 2015-03-24T06:17:17Z oleo_ quit (Quit: Leaving) 2015-03-24T06:18:39Z attila_lendvai joined #sbcl 2015-03-24T06:38:58Z attila_lendvai quit (Ping timeout: 252 seconds) 2015-03-24T06:44:41Z gingerale quit (Ping timeout: 246 seconds) 2015-03-24T07:03:09Z Quadrescence: stassats, have you added closure inlining to SBCL yet? 2015-03-24T07:30:46Z angavrilov joined #sbcl 2015-03-24T07:41:25Z milosn_ joined #sbcl 2015-03-24T07:41:43Z milosn quit (Read error: Connection reset by peer) 2015-03-24T07:43:10Z milosn_ is now known as milosn 2015-03-24T08:32:15Z Quadrescence quit (Quit: This computer has gone to sleep) 2015-03-24T08:49:01Z Shinmera joined #sbcl 2015-03-24T09:00:56Z Cymew joined #sbcl 2015-03-24T09:08:51Z scymtym joined #sbcl 2015-03-24T09:39:15Z Shinmera quit (Quit: しつれいしなければならないんです。) 2015-03-24T09:42:25Z momo-reina joined #sbcl 2015-03-24T10:12:30Z momo-reina quit (Remote host closed the connection) 2015-03-24T11:33:22Z Cymew quit (Quit: Konversation terminated!) 2015-03-24T11:41:54Z stassats: they are already inlined 2015-03-24T11:52:57Z Cymew joined #sbcl 2015-03-24T11:57:18Z echo-area quit (Remote host closed the connection) 2015-03-24T12:11:55Z stassats quit (Ping timeout: 244 seconds) 2015-03-24T12:31:35Z pranavrc quit 2015-03-24T12:38:43Z Shinmera joined #sbcl 2015-03-24T12:40:42Z stassats joined #sbcl 2015-03-24T12:48:25Z circ-user-wNZO3_ quit (Ping timeout: 264 seconds) 2015-03-24T13:23:49Z selat joined #sbcl 2015-03-24T13:51:15Z Shinmera quit (Quit: しつれいしなければならないんです。) 2015-03-24T13:55:53Z psy_ quit (Ping timeout: 246 seconds) 2015-03-24T14:00:42Z circ-user-wNZO3 joined #sbcl 2015-03-24T14:03:48Z circ-user-wNZO3_ joined #sbcl 2015-03-24T14:05:12Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T14:07:45Z circ-user-wNZO3 joined #sbcl 2015-03-24T14:08:02Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T14:10:49Z circ-user-wNZO3_ joined #sbcl 2015-03-24T14:12:27Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T14:13:50Z circ-user-wNZO3 joined #sbcl 2015-03-24T14:15:21Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T14:16:50Z circ-user-wNZO3_ joined #sbcl 2015-03-24T14:18:14Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T14:18:23Z stassats` joined #sbcl 2015-03-24T14:18:31Z stassats` quit (Changing host) 2015-03-24T14:18:31Z stassats` joined #sbcl 2015-03-24T14:19:55Z circ-user-wNZO3 joined #sbcl 2015-03-24T14:20:05Z stassats quit (Ping timeout: 256 seconds) 2015-03-24T14:21:04Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T14:23:00Z circ-user-wNZO3_ joined #sbcl 2015-03-24T14:24:28Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T14:26:07Z circ-user-wNZO3 joined #sbcl 2015-03-24T14:26:23Z oleo joined #sbcl 2015-03-24T14:27:18Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T14:28:37Z Shinmera joined #sbcl 2015-03-24T14:29:13Z circ-user-wNZO3_ joined #sbcl 2015-03-24T14:30:42Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T14:32:09Z circ-user-wNZO3 joined #sbcl 2015-03-24T14:33:32Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T14:35:09Z circ-user-wNZO3_ joined #sbcl 2015-03-24T14:36:37Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T14:39:31Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T14:39:53Z circ-user-wNZO3 joined #sbcl 2015-03-24T14:43:10Z circ-user-wNZO3_ joined #sbcl 2015-03-24T14:44:21Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T14:45:00Z nyef joined #sbcl 2015-03-24T14:46:35Z circ-user-wNZO3 joined #sbcl 2015-03-24T14:47:44Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T14:49:29Z circ-user-wNZO3_ joined #sbcl 2015-03-24T14:51:07Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T14:52:38Z circ-user-wNZO3 joined #sbcl 2015-03-24T14:53:56Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T14:57:20Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T14:57:33Z circ-user-wNZO3 joined #sbcl 2015-03-24T15:00:28Z circ-user-wNZO3_ joined #sbcl 2015-03-24T15:01:52Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T15:03:53Z circ-user-wNZO3 joined #sbcl 2015-03-24T15:04:42Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T15:07:55Z circ-user-wNZO3_ joined #sbcl 2015-03-24T15:08:31Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T15:10:59Z echo-area joined #sbcl 2015-03-24T15:11:36Z Posterdati quit (Ping timeout: 272 seconds) 2015-03-24T15:11:47Z circ-user-wNZO3 joined #sbcl 2015-03-24T15:12:23Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T15:15:14Z circ-user-wNZO3_ joined #sbcl 2015-03-24T15:16:15Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T15:18:21Z circ-user-wNZO3 joined #sbcl 2015-03-24T15:19:38Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T15:21:17Z circ-user-wNZO3_ joined #sbcl 2015-03-24T15:23:01Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T15:25:17Z circ-user-wNZO3 joined #sbcl 2015-03-24T15:25:55Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T15:26:40Z stassats` quit (Ping timeout: 255 seconds) 2015-03-24T15:29:08Z circ-user-wNZO3_ joined #sbcl 2015-03-24T15:29:38Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T15:32:46Z circ-user-wNZO3 joined #sbcl 2015-03-24T15:33:36Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T15:36:46Z circ-user-wNZO3_ joined #sbcl 2015-03-24T15:37:00Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T15:39:00Z Posterdati joined #sbcl 2015-03-24T15:40:09Z circ-user-wNZO3 joined #sbcl 2015-03-24T15:40:58Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T15:43:58Z circ-user-wNZO3_ joined #sbcl 2015-03-24T15:44:46Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T15:47:47Z circ-user-wNZO3 joined #sbcl 2015-03-24T15:48:38Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T15:51:33Z circ-user-wNZO3_ joined #sbcl 2015-03-24T15:52:18Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T15:55:15Z circ-user-wNZO3 joined #sbcl 2015-03-24T15:56:16Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T15:58:26Z circ-user-wNZO3_ joined #sbcl 2015-03-24T15:59:40Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T16:01:33Z circ-user-wNZO3 joined #sbcl 2015-03-24T16:03:04Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T16:04:32Z circ-user-wNZO3_ joined #sbcl 2015-03-24T16:05:54Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T16:07:33Z circ-user-wNZO3 joined #sbcl 2015-03-24T16:08:44Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T16:11:08Z Cymew quit (Ping timeout: 272 seconds) 2015-03-24T16:11:29Z circ-user-wNZO3_ joined #sbcl 2015-03-24T16:12:08Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T16:15:13Z circ-user-wNZO3 joined #sbcl 2015-03-24T16:16:06Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T16:16:22Z Bicyclidine joined #sbcl 2015-03-24T16:19:08Z circ-user-wNZO3_ joined #sbcl 2015-03-24T16:19:30Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T16:22:29Z circ-user-wNZO3 joined #sbcl 2015-03-24T16:23:28Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T16:26:26Z circ-user-wNZO3_ joined #sbcl 2015-03-24T16:26:52Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T16:29:51Z selat quit (Quit: Lost terminal) 2015-03-24T16:29:56Z circ-user-wNZO3 joined #sbcl 2015-03-24T16:30:50Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T16:33:46Z circ-user-wNZO3_ joined #sbcl 2015-03-24T16:34:33Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T16:37:33Z circ-user-wNZO3 joined #sbcl 2015-03-24T16:38:12Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T16:41:09Z circ-user-wNZO3_ joined #sbcl 2015-03-24T16:42:10Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T16:44:08Z circ-user-wNZO3 joined #sbcl 2015-03-24T16:45:40Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T16:47:06Z circ-user-wNZO3_ joined #sbcl 2015-03-24T16:48:34Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T16:50:01Z circ-user-wNZO3 joined #sbcl 2015-03-24T16:50:05Z Bicyclidine quit (Read error: Connection reset by peer) 2015-03-24T16:51:28Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T16:52:54Z circ-user-wNZO3_ joined #sbcl 2015-03-24T16:53:12Z Bicyclidine joined #sbcl 2015-03-24T16:54:22Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T16:56:09Z circ-user-wNZO3 joined #sbcl 2015-03-24T16:57:28Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T16:59:14Z circ-user-wNZO3_ joined #sbcl 2015-03-24T17:00:52Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T17:02:19Z circ-user-wNZO3 joined #sbcl 2015-03-24T17:04:02Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T17:05:19Z circ-user-wNZO3_ joined #sbcl 2015-03-24T17:06:56Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T17:08:24Z circ-user-wNZO3 joined #sbcl 2015-03-24T17:09:56Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T17:11:24Z circ-user-wNZO3_ joined #sbcl 2015-03-24T17:12:46Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T17:14:26Z circ-user-wNZO3 joined #sbcl 2015-03-24T17:15:36Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T17:17:03Z stassats` joined #sbcl 2015-03-24T17:17:31Z circ-user-wNZO3_ joined #sbcl 2015-03-24T17:19:00Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T17:20:30Z circ-user-wNZO3 joined #sbcl 2015-03-24T17:21:50Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T17:23:31Z circ-user-wNZO3_ joined #sbcl 2015-03-24T17:25:14Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T17:26:31Z circ-user-wNZO3 joined #sbcl 2015-03-24T17:28:04Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T17:29:30Z circ-user-wNZO3_ joined #sbcl 2015-03-24T17:31:06Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T17:33:10Z circ-user-wNZO3 joined #sbcl 2015-03-24T17:34:00Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T17:36:51Z circ-user-wNZO3_ joined #sbcl 2015-03-24T17:37:42Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T17:40:45Z circ-user-wNZO3 joined #sbcl 2015-03-24T17:41:06Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T17:43:55Z circ-user-wNZO3_ joined #sbcl 2015-03-24T17:45:07Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T17:46:53Z circ-user-wNZO3 joined #sbcl 2015-03-24T17:48:30Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T17:49:51Z circ-user-wNZO3_ joined #sbcl 2015-03-24T17:50:39Z les quit (Quit: leaving) 2015-03-24T17:50:52Z les joined #sbcl 2015-03-24T17:51:24Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T17:52:20Z les quit (Client Quit) 2015-03-24T17:52:37Z les joined #sbcl 2015-03-24T17:53:29Z circ-user-wNZO3 joined #sbcl 2015-03-24T17:54:18Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T17:57:06Z circ-user-wNZO3_ joined #sbcl 2015-03-24T17:58:10Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T18:00:10Z circ-user-wNZO3 joined #sbcl 2015-03-24T18:01:33Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T18:03:06Z circ-user-wNZO3_ joined #sbcl 2015-03-24T18:03:26Z rpg joined #sbcl 2015-03-24T18:04:56Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T18:06:25Z circ-user-wNZO3 joined #sbcl 2015-03-24T18:07:10Z gingerale joined #sbcl 2015-03-24T18:07:50Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T18:09:55Z circ-user-wNZO3_ joined #sbcl 2015-03-24T18:11:13Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T18:12:48Z circ-user-wNZO3 joined #sbcl 2015-03-24T18:14:36Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T18:15:58Z circ-user-wNZO3_ joined #sbcl 2015-03-24T18:17:22Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T18:19:06Z circ-user-wNZO3 joined #sbcl 2015-03-24T18:20:12Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T18:21:57Z circ-user-wNZO3_ joined #sbcl 2015-03-24T18:23:47Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T18:24:52Z circ-user-wNZO3 joined #sbcl 2015-03-24T18:26:41Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T18:27:58Z circ-user-wNZO3_ joined #sbcl 2015-03-24T18:29:16Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T18:30:54Z circ-user-wNZO3 joined #sbcl 2015-03-24T18:32:40Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T18:33:18Z Bicyclidine quit (Read error: Connection reset by peer) 2015-03-24T18:33:49Z Bicyclidine joined #sbcl 2015-03-24T18:33:56Z circ-user-wNZO3_ joined #sbcl 2015-03-24T18:35:30Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T18:37:00Z circ-user-wNZO3 joined #sbcl 2015-03-24T18:38:20Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T18:39:56Z circ-user-wNZO3_ joined #sbcl 2015-03-24T18:41:40Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T18:42:55Z circ-user-wNZO3 joined #sbcl 2015-03-24T18:44:34Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T18:45:52Z circ-user-wNZO3_ joined #sbcl 2015-03-24T18:47:28Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T18:48:53Z circ-user-wNZO3 joined #sbcl 2015-03-24T18:50:22Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T18:52:00Z circ-user-wNZO3_ joined #sbcl 2015-03-24T18:53:16Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T18:54:25Z Bicyclidine quit (Ping timeout: 250 seconds) 2015-03-24T18:54:55Z circ-user-wNZO3 joined #sbcl 2015-03-24T18:56:39Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T18:57:56Z circ-user-wNZO3_ joined #sbcl 2015-03-24T18:59:18Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T18:59:39Z psy_ joined #sbcl 2015-03-24T19:01:01Z circ-user-wNZO3 joined #sbcl 2015-03-24T19:01:18Z Bicyclidine joined #sbcl 2015-03-24T19:02:08Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T19:04:09Z circ-user-wNZO3_ joined #sbcl 2015-03-24T19:05:21Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T19:06:15Z Bicyclidine quit (Ping timeout: 256 seconds) 2015-03-24T19:07:09Z circ-user-wNZO3 joined #sbcl 2015-03-24T19:08:44Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T19:11:04Z circ-user-wNZO3_ joined #sbcl 2015-03-24T19:11:46Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T19:15:44Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T19:15:47Z circ-user-wNZO3 joined #sbcl 2015-03-24T19:17:34Z Bicyclidine joined #sbcl 2015-03-24T19:18:49Z circ-user-wNZO3_ joined #sbcl 2015-03-24T19:20:16Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T19:21:39Z circ-user-wNZO3 joined #sbcl 2015-03-24T19:23:06Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T19:24:35Z circ-user-wNZO3_ joined #sbcl 2015-03-24T19:25:56Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T19:27:29Z circ-user-wNZO3 joined #sbcl 2015-03-24T19:29:02Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T19:29:50Z rpg_ joined #sbcl 2015-03-24T19:30:01Z rpg_ quit (Client Quit) 2015-03-24T19:30:29Z circ-user-wNZO3_ joined #sbcl 2015-03-24T19:30:54Z rpg_ joined #sbcl 2015-03-24T19:31:16Z Bicyclidine quit (Ping timeout: 272 seconds) 2015-03-24T19:31:56Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T19:32:57Z Bicyclidine joined #sbcl 2015-03-24T19:33:35Z rpg quit (Ping timeout: 252 seconds) 2015-03-24T19:34:09Z circ-user-wNZO3 joined #sbcl 2015-03-24T19:35:00Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T19:38:17Z circ-user-wNZO3_ joined #sbcl 2015-03-24T19:38:24Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T19:41:58Z circ-user-wNZO3 joined #sbcl 2015-03-24T19:43:03Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T19:46:26Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T19:46:49Z circ-user-wNZO3 joined #sbcl 2015-03-24T19:49:41Z circ-user-wNZO3_ joined #sbcl 2015-03-24T19:51:16Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T19:52:45Z circ-user-wNZO3 joined #sbcl 2015-03-24T19:54:10Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T19:55:48Z circ-user-wNZO3_ joined #sbcl 2015-03-24T19:57:33Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T19:58:46Z circ-user-wNZO3 joined #sbcl 2015-03-24T20:00:27Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T20:01:46Z circ-user-wNZO3_ joined #sbcl 2015-03-24T20:03:20Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T20:04:52Z circ-user-wNZO3 joined #sbcl 2015-03-24T20:06:10Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T20:08:25Z circ-user-wNZO3_ joined #sbcl 2015-03-24T20:09:38Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T20:11:27Z circ-user-wNZO3 joined #sbcl 2015-03-24T20:13:01Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T20:14:28Z circ-user-wNZO3_ joined #sbcl 2015-03-24T20:15:48Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T20:17:29Z circ-user-wNZO3 joined #sbcl 2015-03-24T20:19:12Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T20:20:28Z circ-user-wNZO3_ joined #sbcl 2015-03-24T20:22:02Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T20:23:28Z rpg_ quit (Quit: rpg_) 2015-03-24T20:23:32Z circ-user-wNZO3 joined #sbcl 2015-03-24T20:24:52Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T20:26:27Z circ-user-wNZO3_ joined #sbcl 2015-03-24T20:27:02Z gingerale quit (Ping timeout: 265 seconds) 2015-03-24T20:28:00Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T20:29:28Z rpg joined #sbcl 2015-03-24T20:29:29Z rpg quit (Remote host closed the connection) 2015-03-24T20:29:51Z circ-user-wNZO3 joined #sbcl 2015-03-24T20:30:54Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T20:33:02Z circ-user-wNZO3_ joined #sbcl 2015-03-24T20:34:30Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T20:36:46Z circ-user-wNZO3 joined #sbcl 2015-03-24T20:37:20Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T20:40:16Z circ-user-wNZO3_ joined #sbcl 2015-03-24T20:41:32Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T20:43:08Z circ-user-wNZO3 joined #sbcl 2015-03-24T20:44:55Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T20:45:55Z circ-user-wNZO3_ joined #sbcl 2015-03-24T20:47:49Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T20:48:50Z circ-user-wNZO3 joined #sbcl 2015-03-24T20:50:43Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T20:51:44Z circ-user-wNZO3_ joined #sbcl 2015-03-24T20:52:42Z LiamH joined #sbcl 2015-03-24T20:53:37Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T20:53:57Z rszeno joined #sbcl 2015-03-24T20:54:45Z slyrus joined #sbcl 2015-03-24T20:55:37Z circ-user-wNZO3 joined #sbcl 2015-03-24T20:56:31Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T20:59:23Z circ-user-wNZO3_ joined #sbcl 2015-03-24T21:00:23Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T21:03:26Z circ-user-wNZO3 joined #sbcl 2015-03-24T21:03:46Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T21:06:39Z circ-user-wNZO3_ joined #sbcl 2015-03-24T21:08:07Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T21:08:13Z Adlai quit (Ping timeout: 264 seconds) 2015-03-24T21:09:39Z circ-user-wNZO3 joined #sbcl 2015-03-24T21:10:46Z slyrus quit (Ping timeout: 256 seconds) 2015-03-24T21:11:20Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T21:12:34Z circ-user-wNZO3_ joined #sbcl 2015-03-24T21:12:59Z stassats` quit (Ping timeout: 264 seconds) 2015-03-24T21:14:24Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T21:15:54Z circ-user-wNZO3 joined #sbcl 2015-03-24T21:16:04Z rszeno quit (Ping timeout: 245 seconds) 2015-03-24T21:17:18Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T21:18:59Z circ-user-wNZO3_ joined #sbcl 2015-03-24T21:20:24Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T21:22:05Z circ-user-wNZO3 joined #sbcl 2015-03-24T21:23:14Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T21:25:08Z circ-user-wNZO3_ joined #sbcl 2015-03-24T21:26:24Z rszeno joined #sbcl 2015-03-24T21:26:38Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T21:28:03Z circ-user-wNZO3 joined #sbcl 2015-03-24T21:29:28Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T21:31:03Z circ-user-wNZO3_ joined #sbcl 2015-03-24T21:32:18Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T21:34:09Z circ-user-wNZO3 joined #sbcl 2015-03-24T21:35:01Z Adlai joined #sbcl 2015-03-24T21:35:42Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T21:37:53Z circ-user-wNZO3_ joined #sbcl 2015-03-24T21:38:34Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T21:41:26Z circ-user-wNZO3 joined #sbcl 2015-03-24T21:42:26Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T21:44:34Z circ-user-wNZO3_ joined #sbcl 2015-03-24T21:45:54Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T21:47:44Z circ-user-wNZO3 joined #sbcl 2015-03-24T21:48:24Z snafuchs quit (*.net *.split) 2015-03-24T21:48:24Z abbe quit (*.net *.split) 2015-03-24T21:48:24Z flip214 quit (*.net *.split) 2015-03-24T21:49:18Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T21:49:52Z abbe joined #sbcl 2015-03-24T21:49:52Z snafuchs joined #sbcl 2015-03-24T21:49:52Z flip214 joined #sbcl 2015-03-24T21:51:08Z circ-user-wNZO3_ joined #sbcl 2015-03-24T21:52:06Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T21:55:21Z circ-user-wNZO3 joined #sbcl 2015-03-24T21:55:29Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T21:58:23Z circ-user-wNZO3_ joined #sbcl 2015-03-24T21:59:50Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T22:01:01Z Bike quit (Ping timeout: 264 seconds) 2015-03-24T22:01:14Z circ-user-wNZO3 joined #sbcl 2015-03-24T22:01:17Z rszeno quit (Ping timeout: 265 seconds) 2015-03-24T22:01:29Z Bike joined #sbcl 2015-03-24T22:02:26Z pkhuong: minion: memo for quadrescence: if you want to inline literal closures, you can probably hack something with common-cold's serialisable closures. 2015-03-24T22:02:26Z minion: Remembered. I'll tell quadrescence when he/she/it next speaks. 2015-03-24T22:02:44Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T22:04:26Z circ-user-wNZO3_ joined #sbcl 2015-03-24T22:05:37Z angavrilov quit (Remote host closed the connection) 2015-03-24T22:05:44Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T22:07:29Z circ-user-wNZO3 joined #sbcl 2015-03-24T22:09:08Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T22:10:26Z circ-user-wNZO3_ joined #sbcl 2015-03-24T22:11:58Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T22:13:28Z circ-user-wNZO3 joined #sbcl 2015-03-24T22:14:48Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T22:16:28Z circ-user-wNZO3_ joined #sbcl 2015-03-24T22:18:12Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T22:19:30Z circ-user-wNZO3 joined #sbcl 2015-03-24T22:21:02Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T22:22:30Z circ-user-wNZO3_ joined #sbcl 2015-03-24T22:22:33Z rszeno joined #sbcl 2015-03-24T22:23:52Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T22:25:30Z circ-user-wNZO3 joined #sbcl 2015-03-24T22:26:42Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T22:28:31Z circ-user-wNZO3_ joined #sbcl 2015-03-24T22:30:06Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T22:32:56Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T22:33:12Z circ-user-wNZO3 joined #sbcl 2015-03-24T22:35:54Z Shinmera quit (Quit: しつれいしなければならないんです。) 2015-03-24T22:36:11Z circ-user-wNZO3_ joined #sbcl 2015-03-24T22:37:32Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T22:39:08Z circ-user-wNZO3 joined #sbcl 2015-03-24T22:40:55Z circ-user-wNZO3_ quit (Ping timeout: 265 seconds) 2015-03-24T22:42:10Z circ-user-wNZO3_ joined #sbcl 2015-03-24T22:43:42Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T22:45:11Z circ-user-wNZO3 joined #sbcl 2015-03-24T22:46:32Z circ-user-wNZO3_ quit (Ping timeout: 256 seconds) 2015-03-24T22:49:37Z circ-user-wNZO3 quit (Ping timeout: 265 seconds) 2015-03-24T23:22:22Z circ-user-wNZO3 joined #sbcl 2015-03-24T23:34:36Z Bicyclidine quit (Quit: leaving) 2015-03-24T23:53:24Z circ-user-wNZO3 quit (Ping timeout: 256 seconds) 2015-03-24T23:54:00Z circ-user-wNZO3 joined #sbcl