2014-11-01T00:01:57Z jkaye quit (Ping timeout: 245 seconds) 2014-11-01T00:04:20Z loz joined #lisp 2014-11-01T00:09:54Z Ryan_Burnside quit (Quit: Leaving) 2014-11-01T00:10:08Z ack006 joined #lisp 2014-11-01T00:17:54Z pjb quit (Ping timeout: 256 seconds) 2014-11-01T00:18:00Z zeitue joined #lisp 2014-11-01T00:18:06Z miql joined #lisp 2014-11-01T00:19:24Z attila_lendvai quit (Quit: Leaving.) 2014-11-01T00:20:54Z loz quit (Quit: Leaving.) 2014-11-01T00:23:14Z miql quit (Ping timeout: 265 seconds) 2014-11-01T00:23:32Z Nizumzen quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2014-11-01T00:24:13Z pjb joined #lisp 2014-11-01T00:24:37Z pjb is now known as Guest23843 2014-11-01T00:25:44Z Vivitron quit (Remote host closed the connection) 2014-11-01T00:26:12Z Vivitron joined #lisp 2014-11-01T00:29:02Z jreynoso_ joined #lisp 2014-11-01T00:30:55Z vaporatorius quit (Remote host closed the connection) 2014-11-01T00:31:07Z JuanitoJons quit (Ping timeout: 245 seconds) 2014-11-01T00:34:05Z xrash joined #lisp 2014-11-01T00:42:30Z xrash quit (Ping timeout: 265 seconds) 2014-11-01T00:44:18Z JuanitoJons joined #lisp 2014-11-01T00:44:52Z jreynoso_ quit (Ping timeout: 245 seconds) 2014-11-01T00:45:13Z JuanitoJons quit (Client Quit) 2014-11-01T00:45:16Z miql joined #lisp 2014-11-01T00:48:19Z zRecursive joined #lisp 2014-11-01T00:48:49Z zRecursive quit (Remote host closed the connection) 2014-11-01T00:49:03Z zRecursive joined #lisp 2014-11-01T00:50:17Z miql quit (Ping timeout: 264 seconds) 2014-11-01T00:56:47Z ack006 wonders why (+ (cis pi) 1) isn't closer to 0... 2014-11-01T00:57:33Z zRecursive: clhs cis 2014-11-01T00:57:33Z specbot: http://www.lispworks.com/reference/HyperSpec/Body/f_cis.htm 2014-11-01T00:58:29Z jkaye joined #lisp 2014-11-01T01:00:51Z Bike: ack006: welcome to floats? it's on the order of 10^-16 here, pretty small 2014-11-01T01:01:52Z ack006: Bike: I know, but things go wacky pretty fast if using multiples of 2*pi. 2014-11-01T01:02:12Z ack006: of course you can do modulus, but anyways, thanks :-) 2014-11-01T01:02:17Z Bike: https://randomascii.wordpress.com/2014/10/09/intel-underestimates-error-bounds-by-1-3-quintillion/ it could always be worse 2014-11-01T01:02:30Z ack006: Bike: :-) 2014-11-01T01:02:59Z Vivitron quit (Remote host closed the connection) 2014-11-01T01:04:05Z jusss joined #lisp 2014-11-01T01:04:41Z Rptx joined #lisp 2014-11-01T01:12:26Z miql joined #lisp 2014-11-01T01:12:54Z jkaye quit (Ping timeout: 244 seconds) 2014-11-01T01:16:39Z cpt_othello quit (Quit: Leaving) 2014-11-01T01:17:40Z miql quit (Ping timeout: 258 seconds) 2014-11-01T01:19:37Z Grue` quit (Ping timeout: 244 seconds) 2014-11-01T01:20:26Z leo2007 quit (Quit: rcirc on GNU Emacs 25.0.50.9) 2014-11-01T01:23:43Z Vivitron joined #lisp 2014-11-01T01:25:33Z Petit_Dejeuner: Can I export a macro that uses a function I don't export? 2014-11-01T01:28:25Z Grue` joined #lisp 2014-11-01T01:33:27Z iced_dragon joined #lisp 2014-11-01T01:35:59Z ahungry joined #lisp 2014-11-01T01:38:42Z ack006: Bike: very interesting article, slightly worrying, too. 2014-11-01T01:39:43Z miql joined #lisp 2014-11-01T01:44:27Z miql quit (Ping timeout: 245 seconds) 2014-11-01T01:48:06Z Bike: Petit_Dejeuner: yes 2014-11-01T01:48:34Z edgar-rft joined #lisp 2014-11-01T01:48:44Z Petit_Dejeuner: Bike, How does that work? 2014-11-01T01:49:15Z Bike: Petit_Dejeuner: the macro body is already read (in your package, probably) by the time it's expanded 2014-11-01T01:49:38Z Petit_Dejeuner: So when it looks up the symbols it uses the package the macro was defined inside? 2014-11-01T01:50:54Z Bike: Petit_Dejeuner: information about packages is tied to the symbols, and the symbols are produced at read-time 2014-11-01T01:52:05Z svetlyak40wt quit (Remote host closed the connection) 2014-11-01T01:55:22Z ack006: Bike: (- (* (atan 1) 4) pi) => 6.283185394602366d0 2014-11-01T01:55:27Z ack006: ..ouch! 2014-11-01T01:56:16Z Bike: i get 10^-8 ish here. 2014-11-01T01:56:23Z ack006: => 8.742278012618931d-8 2014-11-01T01:56:37Z Bike: yes. 2014-11-01T01:56:53Z ack006: c&p 2014-11-01T01:56:55Z mncoder quit (Quit: mncoder) 2014-11-01T01:57:02Z Bike: so what's the 6 thing. 2014-11-01T01:57:27Z ack006: copied the wrong line 2014-11-01T01:57:29Z Bike: i mean, it looks like 2pi, but that would definitely be wrong. 2014-11-01T01:58:07Z ack006: was part of another sexp, i was looking at the cancelling effect of predefined pi vs computed pi, as in the article 2014-11-01T01:58:46Z Bike: using doubles i get something that displays as zero. 2014-11-01T02:00:43Z ack006: interesting 2014-11-01T02:01:29Z ack006: like you said, welcome to the harsh reality of the floats :-) 2014-11-01T02:01:53Z ack006: as lispers, many of us are used to doing symbolic computations. 2014-11-01T02:02:43Z Bike: comparing symbolic mathematical expressions is uncomputable in general. floats are easier for a lot of things. one part in a hundred million isn't bad. 2014-11-01T02:02:54Z ack006: :-) 2014-11-01T02:03:51Z Petit_Dejeuner: Couldn't the compiler optimize that? 2014-11-01T02:04:48Z Bike: optimize what 2014-11-01T02:05:24Z Petit_Dejeuner: (- (* (atan 1) 4) pi) 2014-11-01T02:05:47Z linux_dream joined #lisp 2014-11-01T02:06:00Z Bike: maybe. i don't remember how specifically implementations have to follow floating point math. 2014-11-01T02:06:49Z miql joined #lisp 2014-11-01T02:07:26Z Petit_Dejeuner: Symbolic constant optimization would be neat. 2014-11-01T02:11:55Z miql quit (Ping timeout: 265 seconds) 2014-11-01T02:15:06Z ltbarcly joined #lisp 2014-11-01T02:21:40Z svetlyak40wt joined #lisp 2014-11-01T02:24:47Z HOS_nerv quit (Remote host closed the connection) 2014-11-01T02:27:42Z ack006: Petit_Dejeuner: maxima does that: 2014-11-01T02:27:58Z ack006: (%i1) 4*atan(1)-%pi; 2014-11-01T02:28:07Z ack006: (%o1) 0 2014-11-01T02:31:43Z karswell quit (Read error: Connection reset by peer) 2014-11-01T02:32:54Z zRecursive: CCL returns 8.742278012618954D-8 2014-11-01T02:33:26Z zRecursive: How can maxima return 0 ? 2014-11-01T02:33:39Z Bike: maxima is a symbolic computation program. of course it returns zero. 2014-11-01T02:33:59Z miql joined #lisp 2014-11-01T02:34:01Z karswell joined #lisp 2014-11-01T02:34:20Z Bike: it probably reduces "atan(1)" to something equivalent to "pi/4", which is of course distinct from a float. 2014-11-01T02:34:45Z ack006: Bike: and it's built on common lisp :-) 2014-11-01T02:35:16Z zRecursive: neat Symbolic Computation ! 2014-11-01T02:35:30Z ack006: so it fulfills Petit_Dejeuner's wish in a sense :-) 2014-11-01T02:36:10Z zRecursive: I just know moderm computer cannot present Float accurately 2014-11-01T02:36:41Z Bike: they can. it's just kind of weird to take a base-2 fraction and present it in base-10. 2014-11-01T02:36:57Z ltbarcly quit (Quit: Computer has gone to sleep.) 2014-11-01T02:37:08Z zRecursive: oh, yeah 2014-11-01T02:37:13Z ack006: i used to work a work with maple, manipulating equations entirely symbolically, then rendering them into c (it has functions to do that. 2014-11-01T02:37:26Z ack006: ) 2014-11-01T02:37:39Z Bike: http://en.wikipedia.org/wiki/Richardson%27s_theorem also relevant 2014-11-01T02:38:47Z karswell quit (Read error: Connection reset by peer) 2014-11-01T02:39:04Z miql quit (Ping timeout: 250 seconds) 2014-11-01T02:39:42Z ack006: Bike: yup, that's why there's always human involved, if only to decide where to stop factoring or simplifying the equations, or forcibly break the computer out of an endless computation :-) 2014-11-01T02:40:11Z karswell joined #lisp 2014-11-01T02:43:33Z svetlyak40wt quit (Remote host closed the connection) 2014-11-01T02:43:52Z defaultxr joined #lisp 2014-11-01T02:44:04Z svetlyak40wt joined #lisp 2014-11-01T02:44:24Z svetlyak40wt quit (Read error: Connection reset by peer) 2014-11-01T02:44:24Z chu joined #lisp 2014-11-01T02:44:44Z resttime: sweet, my CFFI github issue was resolved :D 2014-11-01T02:44:52Z svetlyak40wt joined #lisp 2014-11-01T02:46:09Z resttime: passing structures by values works again 2014-11-01T02:46:25Z resttime: time to patiently wait for the CFFI-libffi windows fix to get merged 2014-11-01T02:48:06Z cpc26_ joined #lisp 2014-11-01T02:49:26Z svetlyak40wt quit (Ping timeout: 264 seconds) 2014-11-01T02:50:03Z cpc26 quit (Ping timeout: 272 seconds) 2014-11-01T02:54:05Z theos quit (Disconnected by services) 2014-11-01T02:54:24Z theos joined #lisp 2014-11-01T02:57:10Z ack006: :-) 2014-11-01T02:57:28Z jkaye joined #lisp 2014-11-01T02:59:16Z linux_dream quit (Quit: Leaving) 2014-11-01T03:01:11Z miql joined #lisp 2014-11-01T03:02:53Z jkaye quit (Ping timeout: 255 seconds) 2014-11-01T03:05:32Z vaporatorius joined #lisp 2014-11-01T03:05:52Z miql quit (Ping timeout: 240 seconds) 2014-11-01T03:14:13Z dion joined #lisp 2014-11-01T03:14:23Z dion left #lisp 2014-11-01T03:20:10Z iced_dragon quit (Ping timeout: 256 seconds) 2014-11-01T03:22:07Z iced_dragon joined #lisp 2014-11-01T03:23:00Z jewel joined #lisp 2014-11-01T03:24:26Z BlueRavenGT joined #lisp 2014-11-01T03:27:20Z McMAGIC--Copy quit (Ping timeout: 246 seconds) 2014-11-01T03:28:25Z miql joined #lisp 2014-11-01T03:29:26Z jusss quit (Remote host closed the connection) 2014-11-01T03:29:55Z McMAGIC--Copy joined #lisp 2014-11-01T03:33:50Z miql quit (Ping timeout: 264 seconds) 2014-11-01T03:34:14Z zRecursive quit (Remote host closed the connection) 2014-11-01T03:40:10Z iced_dragon quit (Ping timeout: 255 seconds) 2014-11-01T03:43:59Z iced_dragon joined #lisp 2014-11-01T03:48:26Z araujo joined #lisp 2014-11-01T03:49:23Z rtra quit (Ping timeout: 240 seconds) 2014-11-01T03:50:25Z ack006 quit (Quit: Has anyone seen my closing parenthesis? I seem to have misplaced it...) 2014-11-01T03:52:59Z Karl_Dscc joined #lisp 2014-11-01T03:53:01Z iced_dragon quit (Ping timeout: 256 seconds) 2014-11-01T03:55:01Z iced_dragon joined #lisp 2014-11-01T03:55:32Z miql joined #lisp 2014-11-01T03:58:41Z farhaven quit (Ping timeout: 255 seconds) 2014-11-01T03:58:55Z Karl_Dscc quit (Remote host closed the connection) 2014-11-01T04:00:59Z miql quit (Ping timeout: 272 seconds) 2014-11-01T04:01:02Z rtra joined #lisp 2014-11-01T04:04:31Z Longlius joined #lisp 2014-11-01T04:06:53Z MouldyOldBones quit (Ping timeout: 246 seconds) 2014-11-01T04:07:05Z iced_dragon quit (Ping timeout: 264 seconds) 2014-11-01T04:11:49Z chu quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2014-11-01T04:14:27Z iced_dragon joined #lisp 2014-11-01T04:15:04Z svetlyak40wt joined #lisp 2014-11-01T04:19:52Z svetlyak40wt quit (Ping timeout: 256 seconds) 2014-11-01T04:21:53Z asedeno quit (Ping timeout: 272 seconds) 2014-11-01T04:22:32Z MouldyOldBones joined #lisp 2014-11-01T04:22:50Z miql joined #lisp 2014-11-01T04:23:26Z asedeno joined #lisp 2014-11-01T04:27:50Z miql quit (Ping timeout: 264 seconds) 2014-11-01T04:29:52Z nydel joined #lisp 2014-11-01T04:30:52Z LiamH quit (Quit: Leaving.) 2014-11-01T04:37:59Z Rptx quit (Quit: gonna sleep) 2014-11-01T04:39:14Z innertracks joined #lisp 2014-11-01T04:45:40Z innertracks quit (Quit: innertracks) 2014-11-01T04:47:15Z jkaye joined #lisp 2014-11-01T04:49:58Z miql joined #lisp 2014-11-01T04:50:00Z innertracks joined #lisp 2014-11-01T04:51:47Z jkaye quit (Ping timeout: 255 seconds) 2014-11-01T04:52:08Z rszeno joined #lisp 2014-11-01T04:52:12Z gabriel_laddel joined #lisp 2014-11-01T04:54:53Z miql quit (Ping timeout: 260 seconds) 2014-11-01T04:55:46Z jewel quit (Ping timeout: 265 seconds) 2014-11-01T04:55:56Z rszeno quit (Client Quit) 2014-11-01T04:58:02Z chu joined #lisp 2014-11-01T04:58:29Z innertracks quit (Quit: innertracks) 2014-11-01T05:02:01Z pranavrc joined #lisp 2014-11-01T05:02:01Z pranavrc quit (Changing host) 2014-11-01T05:02:01Z pranavrc joined #lisp 2014-11-01T05:02:09Z beach joined #lisp 2014-11-01T05:02:18Z beach: Good morning everyone! 2014-11-01T05:04:15Z samebchase: 'morning beach 2014-11-01T05:05:26Z henesy quit (Ping timeout: 265 seconds) 2014-11-01T05:09:52Z asedeno quit (Ping timeout: 250 seconds) 2014-11-01T05:10:10Z asedeno joined #lisp 2014-11-01T05:12:53Z phao left #lisp 2014-11-01T05:16:07Z svetlyak40wt joined #lisp 2014-11-01T05:17:08Z miql joined #lisp 2014-11-01T05:17:38Z xyjprc quit (Ping timeout: 258 seconds) 2014-11-01T05:19:41Z yeticry quit (Ping timeout: 264 seconds) 2014-11-01T05:20:23Z jusss joined #lisp 2014-11-01T05:20:38Z svetlyak40wt quit (Ping timeout: 264 seconds) 2014-11-01T05:20:56Z yeticry joined #lisp 2014-11-01T05:21:56Z miql quit (Ping timeout: 244 seconds) 2014-11-01T05:25:26Z drewc quit (Quit: Leaving.) 2014-11-01T05:28:44Z Ryan_Burnside joined #lisp 2014-11-01T05:35:08Z dagnachew quit (Quit: WeeChat 1.0.1) 2014-11-01T05:43:09Z Guest23843: Petit_Dejeuner: you cannot export functions or macros! Look at clhs export! You can only export _symbols_! 2014-11-01T05:44:18Z miql joined #lisp 2014-11-01T05:48:46Z Guest23843: Petit_Dejeuner: a compiler could optimize: (cl:- (cl:* (cl:atan 1) 4) cl:pi); you could (your-package:- (your-package:* (your-package:atan 1) 4) your-package:pi), assuming those symbols don't come from CL, by writing compiler macros on the functions denoted by your symbols. 2014-11-01T05:49:29Z miql quit (Ping timeout: 260 seconds) 2014-11-01T05:51:56Z beach: Guest23843: How am I supposed to grep for you in the logs if you use that nick? 2014-11-01T05:53:01Z Guest23843: :-) 2014-11-01T05:53:02Z Guest23843 is now known as pjb 2014-11-01T05:53:09Z beach: Thanks! 2014-11-01T06:03:32Z JuanDaugherty joined #lisp 2014-11-01T06:03:42Z Ryan_Burnside quit (Quit: Leaving) 2014-11-01T06:04:25Z jusss quit (Ping timeout: 260 seconds) 2014-11-01T06:06:49Z gingerale joined #lisp 2014-11-01T06:11:27Z miql joined #lisp 2014-11-01T06:14:47Z jtza8 joined #lisp 2014-11-01T06:15:40Z iced_dragon quit (Quit: Relax, its only ONES and ZEROS!) 2014-11-01T06:16:23Z miql quit (Ping timeout: 255 seconds) 2014-11-01T06:20:07Z tesuji joined #lisp 2014-11-01T06:21:08Z _5kg quit (Ping timeout: 244 seconds) 2014-11-01T06:24:03Z ofosos joined #lisp 2014-11-01T06:24:17Z CrazyWoods joined #lisp 2014-11-01T06:30:01Z svetlyak40wt joined #lisp 2014-11-01T06:31:09Z mrSpec joined #lisp 2014-11-01T06:32:48Z Intensity quit (Remote host closed the connection) 2014-11-01T06:33:30Z nhanH: I got "Symbol "CODE-TRACE-TABLE-OFFSET-SLOT" not found in the SB-VM package." when I start slime (but the repl still open and work). And when I try to compile some thing (C-c C-c), it says "Not connected" - despite the repl is running and open. How should I go about to figure out what's wrong? I'm on SBCL 1.2.5 and Emacs 24. 2014-11-01T06:34:47Z jewel joined #lisp 2014-11-01T06:35:59Z jkaye joined #lisp 2014-11-01T06:38:39Z miql joined #lisp 2014-11-01T06:40:37Z jkaye quit (Ping timeout: 255 seconds) 2014-11-01T06:40:53Z bgs100 quit (Quit: bgs100) 2014-11-01T06:41:09Z pjb: nhanH: either wait a few days for quicklisp updates, or fetch the latest version of slime (which was issued a few days after the last quicklisp snapshot last month). 2014-11-01T06:42:51Z kushal joined #lisp 2014-11-01T06:43:45Z PuercoPop quit (Ping timeout: 272 seconds) 2014-11-01T06:44:02Z miql quit (Ping timeout: 264 seconds) 2014-11-01T06:44:24Z svetlyak40wt quit (Remote host closed the connection) 2014-11-01T06:47:14Z PuercoPop joined #lisp 2014-11-01T07:03:12Z pranavrc quit (Remote host closed the connection) 2014-11-01T07:05:47Z BlueRavenGT quit (Ping timeout: 244 seconds) 2014-11-01T07:05:50Z miql joined #lisp 2014-11-01T07:07:33Z BlueRavenGT joined #lisp 2014-11-01T07:10:43Z miql quit (Ping timeout: 258 seconds) 2014-11-01T07:13:01Z jtza8 quit (Ping timeout: 244 seconds) 2014-11-01T07:16:35Z MoALTz joined #lisp 2014-11-01T07:20:02Z sheep` quit (Ping timeout: 244 seconds) 2014-11-01T07:20:06Z ehu joined #lisp 2014-11-01T07:23:25Z Shinmera joined #lisp 2014-11-01T07:24:13Z effy quit (Ping timeout: 260 seconds) 2014-11-01T07:25:51Z chu quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2014-11-01T07:30:43Z wilfredh quit (Quit: Connection closed for inactivity) 2014-11-01T07:30:52Z _5kg joined #lisp 2014-11-01T07:33:01Z miql joined #lisp 2014-11-01T07:34:06Z pranavrc joined #lisp 2014-11-01T07:34:06Z pranavrc quit (Changing host) 2014-11-01T07:34:06Z pranavrc joined #lisp 2014-11-01T07:35:58Z pranavrc_ joined #lisp 2014-11-01T07:35:59Z pranavrc quit (Read error: Connection reset by peer) 2014-11-01T07:38:10Z miql quit (Ping timeout: 265 seconds) 2014-11-01T07:39:33Z gabriel_laddel quit (Remote host closed the connection) 2014-11-01T07:40:22Z psy_ quit (Ping timeout: 240 seconds) 2014-11-01T07:40:32Z pranavrc_ quit (Ping timeout: 255 seconds) 2014-11-01T07:41:02Z farhaven joined #lisp 2014-11-01T07:45:00Z vlnx quit (Ping timeout: 250 seconds) 2014-11-01T07:46:20Z svetlyak40wt joined #lisp 2014-11-01T07:47:36Z vlnx joined #lisp 2014-11-01T07:50:44Z stepnem joined #lisp 2014-11-01T07:51:14Z svetlyak40wt quit (Ping timeout: 264 seconds) 2014-11-01T07:55:05Z Guest3334 joined #lisp 2014-11-01T07:56:43Z jewel quit (Ping timeout: 258 seconds) 2014-11-01T07:57:08Z Beetny quit (Ping timeout: 250 seconds) 2014-11-01T07:57:52Z Guest3334 quit (Quit: Lost terminal) 2014-11-01T08:00:14Z miql joined #lisp 2014-11-01T08:02:38Z lind_martin joined #lisp 2014-11-01T08:04:52Z miql quit (Ping timeout: 245 seconds) 2014-11-01T08:05:22Z madmalik joined #lisp 2014-11-01T08:09:14Z pavelpenev joined #lisp 2014-11-01T08:09:34Z protist joined #lisp 2014-11-01T08:15:24Z zickzackv joined #lisp 2014-11-01T08:19:31Z pt1 joined #lisp 2014-11-01T08:23:19Z ndrei joined #lisp 2014-11-01T08:24:45Z jkaye joined #lisp 2014-11-01T08:27:04Z svetlyak40wt joined #lisp 2014-11-01T08:27:24Z miql joined #lisp 2014-11-01T08:27:38Z psy_ joined #lisp 2014-11-01T08:29:16Z jkaye quit (Ping timeout: 244 seconds) 2014-11-01T08:32:23Z miql quit (Ping timeout: 240 seconds) 2014-11-01T08:34:31Z theos quit (Disconnected by services) 2014-11-01T08:35:23Z ozzloy quit (Ping timeout: 240 seconds) 2014-11-01T08:35:41Z McMAGIC--Copy quit (Ping timeout: 246 seconds) 2014-11-01T08:36:32Z pranavrc joined #lisp 2014-11-01T08:36:32Z pranavrc quit (Changing host) 2014-11-01T08:36:32Z pranavrc joined #lisp 2014-11-01T08:37:18Z McMAGIC--Copy joined #lisp 2014-11-01T08:39:10Z zickzackv quit (Ping timeout: 250 seconds) 2014-11-01T08:39:13Z beach left #lisp 2014-11-01T08:40:09Z theos joined #lisp 2014-11-01T08:40:45Z pinupgeek joined #lisp 2014-11-01T08:40:45Z pinupgeek quit (Client Quit) 2014-11-01T08:41:05Z pinupgeek joined #lisp 2014-11-01T08:41:17Z pranavrc quit (Ping timeout: 255 seconds) 2014-11-01T08:43:05Z psy_ quit (Ping timeout: 255 seconds) 2014-11-01T08:45:50Z McMAGIC--Copy quit (Ping timeout: 246 seconds) 2014-11-01T08:46:05Z pt1 quit (Remote host closed the connection) 2014-11-01T08:47:19Z pt1 joined #lisp 2014-11-01T08:49:08Z pavelpenev quit (Remote host closed the connection) 2014-11-01T08:49:31Z McMAGIC--Copy joined #lisp 2014-11-01T08:51:19Z ozzloy joined #lisp 2014-11-01T08:54:34Z miql joined #lisp 2014-11-01T08:59:53Z miql quit (Ping timeout: 264 seconds) 2014-11-01T08:59:58Z __prefect joined #lisp 2014-11-01T09:01:04Z DGASAU quit (Ping timeout: 245 seconds) 2014-11-01T09:02:38Z zickzackv joined #lisp 2014-11-01T09:06:54Z zickzackv quit (Ping timeout: 250 seconds) 2014-11-01T09:07:45Z munksgaard joined #lisp 2014-11-01T09:10:32Z attila_lendvai joined #lisp 2014-11-01T09:10:32Z attila_lendvai quit (Changing host) 2014-11-01T09:10:32Z attila_lendvai joined #lisp 2014-11-01T09:11:20Z pyon quit (Ping timeout: 244 seconds) 2014-11-01T09:14:57Z lind_martin quit 2014-11-01T09:15:05Z defaultxr quit (Quit: gnight) 2014-11-01T09:16:58Z gabriel_laddel joined #lisp 2014-11-01T09:17:06Z gabriel_laddel quit (Remote host closed the connection) 2014-11-01T09:19:10Z pyon joined #lisp 2014-11-01T09:20:26Z DGASAU joined #lisp 2014-11-01T09:21:08Z loz joined #lisp 2014-11-01T09:21:51Z miql joined #lisp 2014-11-01T09:22:51Z gabriel_laddel joined #lisp 2014-11-01T09:26:54Z khisanth_ joined #lisp 2014-11-01T09:26:57Z miql quit (Ping timeout: 260 seconds) 2014-11-01T09:28:32Z mishoo joined #lisp 2014-11-01T09:28:51Z Khisanth quit (Ping timeout: 265 seconds) 2014-11-01T09:31:24Z selat joined #lisp 2014-11-01T09:34:50Z selat quit (Remote host closed the connection) 2014-11-01T09:37:23Z sheep` joined #lisp 2014-11-01T09:37:23Z pranavrc joined #lisp 2014-11-01T09:37:38Z sheep` left #lisp 2014-11-01T09:37:47Z harish_ quit (Ping timeout: 245 seconds) 2014-11-01T09:41:49Z mvilleneuve joined #lisp 2014-11-01T09:41:57Z pranavrc quit (Ping timeout: 245 seconds) 2014-11-01T09:44:04Z jtza8 joined #lisp 2014-11-01T09:46:37Z Panicky joined #lisp 2014-11-01T09:48:22Z svetlyak40wt quit (Remote host closed the connection) 2014-11-01T09:48:58Z miql joined #lisp 2014-11-01T09:54:00Z miql quit (Ping timeout: 244 seconds) 2014-11-01T09:54:27Z Panicky left #lisp 2014-11-01T09:55:06Z LoicLisp joined #lisp 2014-11-01T09:56:09Z ovenpasta joined #lisp 2014-11-01T09:56:29Z DGASAU quit (Ping timeout: 245 seconds) 2014-11-01T09:57:40Z DGASAU joined #lisp 2014-11-01T09:58:59Z attila_lendvai quit (Ping timeout: 245 seconds) 2014-11-01T09:59:38Z jtza8 quit (Ping timeout: 264 seconds) 2014-11-01T10:04:03Z psy_ joined #lisp 2014-11-01T10:05:01Z pranavrc joined #lisp 2014-11-01T10:05:38Z nalkri quit (Ping timeout: 264 seconds) 2014-11-01T10:06:45Z gniourf quit (Quit: Leaving) 2014-11-01T10:07:27Z robot-beethoven quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2014-11-01T10:07:43Z nalkri joined #lisp 2014-11-01T10:08:45Z gniourf joined #lisp 2014-11-01T10:08:52Z munksgaard quit (Ping timeout: 240 seconds) 2014-11-01T10:13:29Z jkaye joined #lisp 2014-11-01T10:16:10Z miql joined #lisp 2014-11-01T10:18:25Z jkaye quit (Ping timeout: 255 seconds) 2014-11-01T10:18:58Z svetlyak40wt joined #lisp 2014-11-01T10:20:24Z ggole joined #lisp 2014-11-01T10:20:35Z jewel joined #lisp 2014-11-01T10:20:51Z svetlyak40wt quit (Remote host closed the connection) 2014-11-01T10:20:59Z svetlyak40wt joined #lisp 2014-11-01T10:21:07Z miql quit (Ping timeout: 245 seconds) 2014-11-01T10:21:13Z svetlyak40wt quit (Remote host closed the connection) 2014-11-01T10:21:41Z wat_aro joined #lisp 2014-11-01T10:21:49Z svetlyak40wt joined #lisp 2014-11-01T10:24:02Z wat_aro quit (Remote host closed the connection) 2014-11-01T10:25:52Z svetlyak40wt quit (Ping timeout: 240 seconds) 2014-11-01T10:26:26Z BlueRavenGT quit (Ping timeout: 265 seconds) 2014-11-01T10:29:52Z ni291187 joined #lisp 2014-11-01T10:30:38Z jewel quit (Ping timeout: 255 seconds) 2014-11-01T10:36:50Z ovenpasta left #lisp 2014-11-01T10:40:53Z ellis-a joined #lisp 2014-11-01T10:41:36Z ni291187 left #lisp 2014-11-01T10:43:25Z miql joined #lisp 2014-11-01T10:43:46Z Kohryu joined #lisp 2014-11-01T10:45:04Z urandom__ joined #lisp 2014-11-01T10:46:08Z attila_lendvai joined #lisp 2014-11-01T10:47:41Z k-stz joined #lisp 2014-11-01T10:48:40Z miql quit (Ping timeout: 265 seconds) 2014-11-01T10:51:13Z mvilleneuve quit (Quit: This computer has gone to sleep) 2014-11-01T11:02:36Z pyon quit (Ping timeout: 250 seconds) 2014-11-01T11:06:04Z cbryan joined #lisp 2014-11-01T11:07:35Z loke_ joined #lisp 2014-11-01T11:10:35Z miql joined #lisp 2014-11-01T11:11:23Z pranavrc quit (Remote host closed the connection) 2014-11-01T11:11:32Z pranavrc joined #lisp 2014-11-01T11:13:57Z pt1 quit (Remote host closed the connection) 2014-11-01T11:14:47Z pyon joined #lisp 2014-11-01T11:15:44Z miql quit (Ping timeout: 265 seconds) 2014-11-01T11:24:06Z mrSpec quit (Remote host closed the connection) 2014-11-01T11:26:54Z mishoo quit (Ping timeout: 245 seconds) 2014-11-01T11:34:57Z fikusz quit (Remote host closed the connection) 2014-11-01T11:35:35Z McMAGIC--Copy quit (Ping timeout: 246 seconds) 2014-11-01T11:36:38Z McMAGIC--Copy joined #lisp 2014-11-01T11:37:39Z bbg889 joined #lisp 2014-11-01T11:37:42Z miql joined #lisp 2014-11-01T11:38:25Z fikusz joined #lisp 2014-11-01T11:38:46Z bbg889: hello. what is the name of a function that takes a list and gives you a list of natural numbers from 0 to (1- (length lst))? 2014-11-01T11:39:06Z bbg889: in Common Lisp 2014-11-01T11:39:20Z pt1 joined #lisp 2014-11-01T11:41:21Z antoszka: bbg889: alexandria:iota 2014-11-01T11:41:32Z antoszka: bbg889: it's not in the ANSI standard 2014-11-01T11:41:42Z antoszka: otherwise just use LOOP 2014-11-01T11:42:00Z corni joined #lisp 2014-11-01T11:42:07Z kushal quit (Ping timeout: 255 seconds) 2014-11-01T11:42:27Z bbg889: yes, (loop ...) will do it 2014-11-01T11:42:34Z miql quit (Ping timeout: 255 seconds) 2014-11-01T11:47:11Z pt1 quit (Remote host closed the connection) 2014-11-01T11:51:11Z bbg889 quit 2014-11-01T11:52:36Z CrazyWoods quit (Quit: leaving) 2014-11-01T11:55:11Z mhd_ quit (Quit: Textual IRC Client: www.textualapp.com) 2014-11-01T11:58:41Z McMAGIC--Copy quit (Ping timeout: 246 seconds) 2014-11-01T11:59:59Z McMAGIC--Copy joined #lisp 2014-11-01T12:02:17Z MoALTz quit (Quit: Leaving) 2014-11-01T12:02:17Z jkaye joined #lisp 2014-11-01T12:04:53Z miql joined #lisp 2014-11-01T12:06:56Z jkaye quit (Ping timeout: 255 seconds) 2014-11-01T12:09:22Z Grue` quit (Ping timeout: 244 seconds) 2014-11-01T12:09:46Z miql quit (Ping timeout: 250 seconds) 2014-11-01T12:09:53Z oleo is now known as Guest78695 2014-11-01T12:10:55Z wbooze quit (Ping timeout: 244 seconds) 2014-11-01T12:11:37Z oleo__ joined #lisp 2014-11-01T12:13:15Z Guest78695 quit (Ping timeout: 265 seconds) 2014-11-01T12:15:17Z Karl_Dscc joined #lisp 2014-11-01T12:17:06Z Grue` joined #lisp 2014-11-01T12:18:10Z Haskellfant quit (Ping timeout: 272 seconds) 2014-11-01T12:22:19Z ndrei quit (Ping timeout: 245 seconds) 2014-11-01T12:22:24Z matko joined #lisp 2014-11-01T12:24:21Z ndrei joined #lisp 2014-11-01T12:30:12Z Haskellfant joined #lisp 2014-11-01T12:30:29Z Subfusc quit (Remote host closed the connection) 2014-11-01T12:31:43Z LiamH joined #lisp 2014-11-01T12:32:05Z miql joined #lisp 2014-11-01T12:37:21Z miql quit (Ping timeout: 260 seconds) 2014-11-01T12:43:22Z Wojciech_K joined #lisp 2014-11-01T12:47:47Z wasamasa quit (Quit: ZNC - http://znc.in) 2014-11-01T12:48:46Z wasamasa joined #lisp 2014-11-01T12:51:18Z huza joined #lisp 2014-11-01T12:55:06Z jewel joined #lisp 2014-11-01T12:57:38Z Kohryu quit (Quit: ChatZilla 0.9.90.1 [SeaMonkey 2.30/20141013232806]) 2014-11-01T12:58:16Z ovenpasta joined #lisp 2014-11-01T12:59:21Z miql joined #lisp 2014-11-01T12:59:50Z beach joined #lisp 2014-11-01T13:00:10Z beach: Good afternoon everyone! 2014-11-01T13:01:36Z Shinmera: Ech, stassats isn't here and I don't suppose anyone else here can tell me why QThread isn't available from CommonQt (but QRunnable is?) 2014-11-01T13:02:11Z ellis-a quit (Quit: WeeChat 1.0.1) 2014-11-01T13:03:13Z kcj quit (Read error: Connection reset by peer) 2014-11-01T13:04:21Z miql quit (Ping timeout: 244 seconds) 2014-11-01T13:04:57Z EvW joined #lisp 2014-11-01T13:08:06Z jusss joined #lisp 2014-11-01T13:12:34Z ndrei quit (Ping timeout: 255 seconds) 2014-11-01T13:13:58Z jusss: why the function in set-macro-character needs two parameters at least ? 2014-11-01T13:14:18Z beach: So that you can share the same function between several characters. 2014-11-01T13:14:25Z Shinmera: Hm, seems like smokeqt doesn't include the class for some reason (even though it should be able to parse the header?) 2014-11-01T13:14:54Z jusss: and set-macro-character can handle special character like ( ? 2014-11-01T13:15:14Z beach: It does. That's how lists are read. 2014-11-01T13:16:21Z jusss: can I change ( and ) to [ and ] ? and how 2014-11-01T13:16:27Z Rptx joined #lisp 2014-11-01T13:16:46Z beach: clhs s-s-f-c 2014-11-01T13:16:46Z specbot: set-syntax-from-char: http://www.lispworks.com/reference/HyperSpec/Body/f_set_sy.htm 2014-11-01T13:17:42Z jewel quit (Ping timeout: 272 seconds) 2014-11-01T13:17:45Z jusss: er,that's not I want 2014-11-01T13:17:52Z _death: jusss: https://groups.google.com/forum/#!msg/comp.lang.lisp/Nvdio3taI0Q/bn_VqLTaxG4J 2014-11-01T13:18:30Z jusss: (set-dispatching-macro-character #\p #\r #\i #\n #\t #\f #\( '#(lambda ...))) this will be error 2014-11-01T13:18:56Z ofosos_ joined #lisp 2014-11-01T13:19:06Z beach: jusss: The reader was not meant for that level of customization. 2014-11-01T13:19:25Z beach: jusss: It is better to use a real parser. 2014-11-01T13:21:46Z jusss: beach: so the reader cann't handle ( ? 2014-11-01T13:21:57Z ofosos quit (Ping timeout: 245 seconds) 2014-11-01T13:22:09Z beach: It can and it does. 2014-11-01T13:22:47Z beach: The left parenthesis is a macro character that will read what follows as a Common Lisp list. 2014-11-01T13:23:32Z Subfusc joined #lisp 2014-11-01T13:26:21Z huza quit (Ping timeout: 244 seconds) 2014-11-01T13:26:30Z miql joined #lisp 2014-11-01T13:27:18Z beach: jusss: Your call to set-dispatch-macro-character will not work, because that function takes 3 or 4 arguments. 2014-11-01T13:27:19Z jusss: (set-dispatching-macro-character #\i #\( #'(lambda (stream char) (declare (ignore char)) (+ 1 (read stream t nil t)))) 2014-11-01T13:28:44Z beach: jusss: If you do something like that, then the letter i will always be a dispatch macro character. It doesn't sound like what you would want. 2014-11-01T13:28:45Z cpc26_ quit (Remote host closed the connection) 2014-11-01T13:29:48Z cpc26 joined #lisp 2014-11-01T13:29:58Z beach: jusss: I repeat, the reader is not meant for that level of customization. It is best to use a real parser. 2014-11-01T13:31:26Z jusss: If I want this level of customization ,so what I shoule need ? 2014-11-01T13:31:46Z beach: A real parser. 2014-11-01T13:32:03Z miql quit (Ping timeout: 264 seconds) 2014-11-01T13:32:49Z jusss: how to write a real parser with lisp ? 2014-11-01T13:32:59Z jusss: eg 2014-11-01T13:33:32Z _death: http://cliki.net/Text 2014-11-01T13:33:42Z beach: jusss: http://www.cliki.net/parser%20generator 2014-11-01T13:33:53Z beach: jusss: Do you know about the Google search engine? 2014-11-01T13:34:17Z beach: You can type things like "Common Lisp parser" to it, and you get some information on where you can find things like that. 2014-11-01T13:37:27Z jewel joined #lisp 2014-11-01T13:39:29Z McMAGIC--Copy quit (Ping timeout: 246 seconds) 2014-11-01T13:42:45Z McMAGIC--Copy joined #lisp 2014-11-01T13:44:09Z gabriel_laddel quit (Remote host closed the connection) 2014-11-01T13:44:17Z jewel quit (Ping timeout: 272 seconds) 2014-11-01T13:45:18Z Xach: luis: when is the next slime update? 2014-11-01T13:45:24Z cmack` joined #lisp 2014-11-01T13:46:12Z Grue` quit (Ping timeout: 244 seconds) 2014-11-01T13:46:57Z cmack quit (Ping timeout: 265 seconds) 2014-11-01T13:47:32Z McMAGIC--Copy quit (Ping timeout: 246 seconds) 2014-11-01T13:48:05Z chu joined #lisp 2014-11-01T13:49:48Z otjura joined #lisp 2014-11-01T13:50:12Z otjura: hello, what would be the best implementation for Lisp on Linux? 2014-11-01T13:50:31Z Adeon: sbcl 2014-11-01T13:50:34Z beach: otjura: Most people here would recommend SBCL. 2014-11-01T13:50:57Z Adeon: many implementations work on linux, choose the one that suits your needs best 2014-11-01T13:51:00Z jkaye joined #lisp 2014-11-01T13:51:10Z otjura: I tried SBCL and the prompt doesn't allow moving around with arrow keys.. 2014-11-01T13:51:14Z Xach: otjura: Clozure Common Lisp and SBCL are both very good. 2014-11-01T13:51:25Z beach: otjura: You would use SLIME for that. 2014-11-01T13:51:27Z Xach: otjura: Don't work directly in the prompt, then. 2014-11-01T13:51:27Z jusss: sbcl doesn't support indent 2014-11-01T13:51:27Z Adeon: you can use linedit from quicklisp to make the prompt more pleasant 2014-11-01T13:51:34Z Adeon: if you don't want slime, that is 2014-11-01T13:51:44Z DrCode quit (Ping timeout: 246 seconds) 2014-11-01T13:51:55Z beach: jusss: What are you talking about? 2014-11-01T13:52:21Z beach: otjura: Again, most people here would recommend Emacs + SLIME as the development environment. 2014-11-01T13:52:56Z Adeon: the only lisp implementation that I know where the raw prompt supports fancy arrow and tab completion functionality is clisp 2014-11-01T13:53:19Z otjura: okay 2014-11-01T13:53:41Z miql joined #lisp 2014-11-01T13:53:55Z otjura: clisp is sadly out of question due to its political-religious connotations 2014-11-01T13:54:09Z otjura: I'll use SBCL then, thanks for input 2014-11-01T13:54:30Z Adeon: install linedit for fancy arrow and tab completion 2014-11-01T13:54:35Z Adeon: actually I don't remember if it had tab completion 2014-11-01T13:54:37Z Adeon: or use SLIME 2014-11-01T13:55:30Z jkaye quit (Ping timeout: 244 seconds) 2014-11-01T13:55:57Z Grue` joined #lisp 2014-11-01T13:57:38Z DrCode joined #lisp 2014-11-01T13:58:13Z Patzy quit (Ping timeout: 272 seconds) 2014-11-01T13:58:30Z jusss: beach: win7,sbcl repl, in a line write (xxxx ,press enter to next line is what I except,but it will be evaluated and report error 2014-11-01T13:58:35Z Patzy joined #lisp 2014-11-01T13:59:01Z miql quit (Ping timeout: 260 seconds) 2014-11-01T14:02:16Z jewel joined #lisp 2014-11-01T14:02:24Z Grue`: jusss: it's not evaluated for me 2014-11-01T14:02:26Z Amaan joined #lisp 2014-11-01T14:02:59Z Grue`: I can input multiline code just fine 2014-11-01T14:03:01Z marchdown joined #lisp 2014-11-01T14:04:41Z jusss: Grue`: it's in win7 ? 2014-11-01T14:04:57Z EvW1 joined #lisp 2014-11-01T14:05:00Z urandom__ quit (Quit: Konversation terminated!) 2014-11-01T14:05:20Z wasamasa: otjura: `rlwrap sbcl` 2014-11-01T14:05:31Z wasamasa: otjura: generally, `rlwrap` is very useful to have 2014-11-01T14:06:39Z EvW quit (Remote host closed the connection) 2014-11-01T14:07:00Z BitPuffin joined #lisp 2014-11-01T14:08:21Z McMAGIC--Copy joined #lisp 2014-11-01T14:08:57Z Grue`: jusss: yes, though I have a custom console installed 2014-11-01T14:09:42Z wbooze joined #lisp 2014-11-01T14:11:11Z Haskellfant left #lisp 2014-11-01T14:12:46Z mncoder joined #lisp 2014-11-01T14:14:05Z wingsquish joined #lisp 2014-11-01T14:18:37Z xyjprc joined #lisp 2014-11-01T14:19:08Z ovenpasta left #lisp 2014-11-01T14:20:33Z marchdown quit (Quit: marchdown) 2014-11-01T14:20:52Z miql joined #lisp 2014-11-01T14:23:30Z Karl_Dscc quit (Remote host closed the connection) 2014-11-01T14:24:12Z jewel quit (Ping timeout: 260 seconds) 2014-11-01T14:24:25Z pjb: jusss: http://paste.lisp.org/+33AS but as I told you, you should rather define a reader macro on #\{, not on #\p! 2014-11-01T14:25:42Z miql quit (Ping timeout: 245 seconds) 2014-11-01T14:26:40Z ndrei joined #lisp 2014-11-01T14:27:37Z pjb: otjura: you can always run clisp -q ; put alias clisp='clisp -q' in your ~/.bashrc 2014-11-01T14:37:10Z acieroid quit (Ping timeout: 255 seconds) 2014-11-01T14:37:13Z jusss: pjb: why not #\p #\r #\i #\n #\t ? 2014-11-01T14:38:55Z xyjprc quit (Remote host closed the connection) 2014-11-01T14:40:51Z pjb: clhs set-macro-character 2014-11-01T14:40:51Z specbot: http://www.lispworks.com/reference/HyperSpec/Body/f_set_ma.htm 2014-11-01T14:40:57Z pjb: clhs set-dispatching-macro-character 2014-11-01T14:40:57Z specbot: Couldn't find anything for set-dispatching-macro-character. 2014-11-01T14:41:07Z pjb: clhs set-dispatch-macro-character 2014-11-01T14:41:07Z specbot: http://www.lispworks.com/reference/HyperSpec/Body/f_set__1.htm 2014-11-01T14:41:16Z pjb: jusss: because read those CLHS pages! 2014-11-01T14:43:14Z pjb: jusss: fundamentally, because it has been decided that lisp shall be a LL(1) language, not a LL(6) one. 2014-11-01T14:47:08Z jusss: pjb: set-dispatch-macro-character just handle two macro character? why 2014-11-01T14:47:17Z pjb: because. 2014-11-01T14:47:38Z jusss: If I need more macro character 2014-11-01T14:47:57Z pjb: I've shown you how to do it. Read the paste above! 2014-11-01T14:48:06Z miql joined #lisp 2014-11-01T14:48:23Z pjb: jusss: and notice that set-dispatch-macro-character is implemented with set-macro-character, and that it reads more than two characters, since you can have digits between both characters. 2014-11-01T14:48:42Z pjb: And also, the second character is processed case insensitively. 2014-11-01T14:50:12Z pjb: (only a letter is possible as second character). 2014-11-01T14:51:56Z acieroid joined #lisp 2014-11-01T14:53:09Z miql quit (Ping timeout: 260 seconds) 2014-11-01T14:53:09Z EvW1 quit (Ping timeout: 244 seconds) 2014-11-01T15:03:19Z marchdown joined #lisp 2014-11-01T15:04:35Z jusss quit (Read error: Connection reset by peer) 2014-11-01T15:06:11Z pranavrc quit 2014-11-01T15:09:08Z marchdown quit (Quit: marchdown) 2014-11-01T15:10:12Z chu quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2014-11-01T15:11:10Z jewel joined #lisp 2014-11-01T15:15:12Z miql joined #lisp 2014-11-01T15:19:19Z keen_________ joined #lisp 2014-11-01T15:20:14Z keen________ quit (Ping timeout: 245 seconds) 2014-11-01T15:20:36Z miql quit (Ping timeout: 256 seconds) 2014-11-01T15:20:45Z Ethan- quit (Ping timeout: 244 seconds) 2014-11-01T15:21:16Z ofosos_ quit (Ping timeout: 255 seconds) 2014-11-01T15:27:13Z resttime quit (Quit: resttime) 2014-11-01T15:28:24Z svetlyak40wt joined #lisp 2014-11-01T15:29:46Z selat joined #lisp 2014-11-01T15:32:58Z haz___ joined #lisp 2014-11-01T15:33:21Z haz_ quit (Ping timeout: 265 seconds) 2014-11-01T15:38:05Z effy joined #lisp 2014-11-01T15:38:12Z Shinmera: Interesting. I was able to modify smokeqt to compile with QThread included. When I try to define a QThread class from lisp out with overriding the run() method, SBCL segfaults immediately as soon as I try to start the thread. If I instead use slots and signals it seems to dispatch fine. http://shinmera.tymoon.eu/public/screenshot-2014.11.01-16:38:10.png 2014-11-01T15:39:45Z jkaye joined #lisp 2014-11-01T15:42:28Z miql joined #lisp 2014-11-01T15:43:26Z rak[1] quit (Ping timeout: 265 seconds) 2014-11-01T15:44:03Z Shinmera: Ah, no, I made a mistake and it still crashes fully when trying to call back into lisp. 2014-11-01T15:44:29Z jkaye quit (Ping timeout: 260 seconds) 2014-11-01T15:44:33Z rak[1] joined #lisp 2014-11-01T15:46:41Z Grue` quit (Ping timeout: 264 seconds) 2014-11-01T15:47:22Z miql quit (Ping timeout: 240 seconds) 2014-11-01T15:47:42Z Grue` joined #lisp 2014-11-01T15:48:17Z Shinmera: Looks like CCL wins. http://shinmera.tymoon.eu/public/screenshot-2014.11.01-16:48:01.png 2014-11-01T15:48:37Z ndrei quit (Ping timeout: 245 seconds) 2014-11-01T15:50:21Z adlai: library #1 defines a bunch of classes, each with a name slot, and a reader #'name which works on any such class. library #2 also uses this pattern, but they don't share the symbol in common. ideas on how to cleanly resolve this in library #3, which uses both, and wants to have a single #'name working on all named objects? 2014-11-01T15:51:46Z adlai: my initial idea is to import the packages but shadow 'name in library #3, and have lib3:name dispatch to the appropriate lib1:name or lib2:name, but that's horrible, and needs to be updated if classes are added or removed 2014-11-01T15:51:56Z nydel quit (Quit: WeeChat 0.4.2) 2014-11-01T15:53:24Z nydel joined #lisp 2014-11-01T15:58:07Z igor joined #lisp 2014-11-01T15:59:24Z ndrei joined #lisp 2014-11-01T16:03:33Z BitPuffin quit (Ping timeout: 258 seconds) 2014-11-01T16:04:45Z linux_dream joined #lisp 2014-11-01T16:04:46Z pt1 joined #lisp 2014-11-01T16:06:43Z Ryan_Burnside joined #lisp 2014-11-01T16:06:58Z xebd``` is now known as xebd` 2014-11-01T16:07:52Z pnpuff joined #lisp 2014-11-01T16:08:03Z EvW joined #lisp 2014-11-01T16:09:11Z djangojames joined #lisp 2014-11-01T16:09:25Z pjb: adlai: depends on whether it's the same thing or not. 2014-11-01T16:09:34Z miql joined #lisp 2014-11-01T16:09:55Z pjb: For example, chinese:name vs. french:name or animal:name vs. person:name. 2014-11-01T16:09:59Z Grue`: adlai: you can probably "patch" one of these libraries to use the symbol from the other library 2014-11-01T16:11:35Z adlai: it's the same thing in the sense that in both cases, the "name" is a human-friendly name for a system object which otherwise doesn't affect it 2014-11-01T16:11:59Z pjb: then you can use the same symbol and have a single slot for each object. 2014-11-01T16:13:08Z Amaan quit (Quit: Connection closed for inactivity) 2014-11-01T16:14:26Z miql quit (Ping timeout: 255 seconds) 2014-11-01T16:17:56Z Grue`: adlai: also, assuming one of these generic functions lib1:name doesn't work on every object, create a defmethod lib1:name that catches all objects and calls lib2:name 2014-11-01T16:18:33Z ndrei quit (Read error: Connection reset by peer) 2014-11-01T16:18:52Z ndrei joined #lisp 2014-11-01T16:19:24Z Grue`: though this depends on whether lib1 uses call-next-method... 2014-11-01T16:20:06Z BlueRavenGT joined #lisp 2014-11-01T16:20:10Z adlai: pjb: then both libraries need to import from the same package. what if they're developed separately? should they both depend upon a "named object mixin" library? 2014-11-01T16:20:37Z pjb: You have the sources. That'd be the cleanest way, yes. 2014-11-01T16:21:25Z zickzackv joined #lisp 2014-11-01T16:27:28Z ndrei quit (Ping timeout: 256 seconds) 2014-11-01T16:27:34Z Grue`: oh wait, lib1 can't land on this method with call-next-method because otherwise this would've been an error 2014-11-01T16:28:20Z Grue`: so this solution should work 2014-11-01T16:29:09Z ndrei joined #lisp 2014-11-01T16:31:14Z djangojames quit (Ping timeout: 256 seconds) 2014-11-01T16:31:22Z rtra quit (Remote host closed the connection) 2014-11-01T16:34:41Z linux_dream quit (Quit: Leaving) 2014-11-01T16:36:20Z pnpuff quit (Ping timeout: 256 seconds) 2014-11-01T16:36:42Z zickzackv quit (Ping timeout: 250 seconds) 2014-11-01T16:36:48Z miql joined #lisp 2014-11-01T16:37:14Z edgar-rft quit (Quit: the consequences are unspecified) 2014-11-01T16:38:41Z svetlyak40wt quit (Remote host closed the connection) 2014-11-01T16:38:48Z igor quit (Ping timeout: 256 seconds) 2014-11-01T16:39:12Z svetlyak40wt joined #lisp 2014-11-01T16:41:32Z miql quit (Ping timeout: 245 seconds) 2014-11-01T16:43:42Z svetlyak40wt quit (Ping timeout: 256 seconds) 2014-11-01T16:48:52Z Grue` quit (Ping timeout: 240 seconds) 2014-11-01T16:50:34Z Petit_Dejeuner_ joined #lisp 2014-11-01T16:50:48Z Grue` joined #lisp 2014-11-01T16:51:41Z schaueho joined #lisp 2014-11-01T16:54:00Z Petit_Dejeuner quit (Ping timeout: 265 seconds) 2014-11-01T16:54:29Z pt1 quit (Remote host closed the connection) 2014-11-01T16:56:01Z selat quit (Quit: Lost terminal) 2014-11-01T16:56:01Z ltbarcly joined #lisp 2014-11-01T16:57:06Z jackdaniel: hmm, i have emacs+slime, and when i write, there are function definitions on minibuffer - but they disappear, when i press space. It's irracional, because when i press space twice and once backspace, hint appears again - have anyone met similar behaviour? 2014-11-01T16:57:14Z Longlius quit (Quit: Leaving) 2014-11-01T16:58:28Z svetlyak40wt joined #lisp 2014-11-01T17:01:49Z harish_ joined #lisp 2014-11-01T17:02:01Z harish_ quit (Client Quit) 2014-11-01T17:03:08Z wbooze quit (Ping timeout: 250 seconds) 2014-11-01T17:03:11Z svetlyak40wt quit (Ping timeout: 265 seconds) 2014-11-01T17:04:00Z miql joined #lisp 2014-11-01T17:04:59Z pt1 joined #lisp 2014-11-01T17:05:15Z ltbarcly quit (Quit: Computer has gone to sleep.) 2014-11-01T17:06:53Z svetlyak40wt joined #lisp 2014-11-01T17:08:14Z wasamasa: simple, they are displayed once again when point is at a function 2014-11-01T17:08:22Z wasamasa: anything can print to the echo area 2014-11-01T17:08:35Z wasamasa: what you probably see is eldoc 2014-11-01T17:08:52Z miql quit (Ping timeout: 240 seconds) 2014-11-01T17:09:51Z jackdaniel: putting any character after space redisplays function definition as well, it looks like minibuffer gets cleared on pressing space 2014-11-01T17:09:53Z ndrei quit (Ping timeout: 240 seconds) 2014-11-01T17:15:51Z jewel quit (Ping timeout: 264 seconds) 2014-11-01T17:19:22Z bgs100 joined #lisp 2014-11-01T17:19:28Z jewel joined #lisp 2014-11-01T17:19:32Z bgs100 quit (Changing host) 2014-11-01T17:19:32Z bgs100 joined #lisp 2014-11-01T17:24:44Z marchdown joined #lisp 2014-11-01T17:28:37Z beach left #lisp 2014-11-01T17:28:52Z jewel quit (Ping timeout: 265 seconds) 2014-11-01T17:31:10Z miql joined #lisp 2014-11-01T17:36:29Z miql quit (Ping timeout: 264 seconds) 2014-11-01T17:40:21Z jewel joined #lisp 2014-11-01T17:42:44Z jkaye joined #lisp 2014-11-01T17:43:38Z defaultxr joined #lisp 2014-11-01T17:47:04Z jkaye quit (Ping timeout: 255 seconds) 2014-11-01T17:48:06Z Jesin quit (Quit: Leaving) 2014-11-01T17:54:10Z haz___ quit (Ping timeout: 256 seconds) 2014-11-01T17:58:05Z Ven joined #lisp 2014-11-01T17:58:07Z svetlyak40wt quit (Remote host closed the connection) 2014-11-01T17:58:20Z miql joined #lisp 2014-11-01T18:01:15Z loke_ quit (Ping timeout: 265 seconds) 2014-11-01T18:01:50Z Jesin joined #lisp 2014-11-01T18:02:48Z svetlyak40wt joined #lisp 2014-11-01T18:02:53Z miql quit (Ping timeout: 240 seconds) 2014-11-01T18:04:05Z EvW quit (Ping timeout: 265 seconds) 2014-11-01T18:05:15Z protist quit (Quit: Konversation terminated!) 2014-11-01T18:05:34Z Karl_Dscc joined #lisp 2014-11-01T18:05:50Z haz_ joined #lisp 2014-11-01T18:10:42Z Patzy quit (Ping timeout: 245 seconds) 2014-11-01T18:11:44Z Patzy joined #lisp 2014-11-01T18:13:43Z loke_ joined #lisp 2014-11-01T18:13:54Z jtza8 joined #lisp 2014-11-01T18:15:44Z jjkola quit (Remote host closed the connection) 2014-11-01T18:18:00Z jewel quit (Ping timeout: 260 seconds) 2014-11-01T18:19:55Z ndrei joined #lisp 2014-11-01T18:20:00Z attila_lendvai quit (Quit: Leaving.) 2014-11-01T18:23:55Z marchdown quit (Quit: marchdown) 2014-11-01T18:24:25Z Grue` quit (Ping timeout: 255 seconds) 2014-11-01T18:24:59Z Grue` joined #lisp 2014-11-01T18:25:31Z miql joined #lisp 2014-11-01T18:29:11Z jewel joined #lisp 2014-11-01T18:30:22Z miql quit (Ping timeout: 240 seconds) 2014-11-01T18:31:27Z svetlyak40wt quit (Remote host closed the connection) 2014-11-01T18:31:53Z svetlyak40wt joined #lisp 2014-11-01T18:33:09Z __prefect quit (Ping timeout: 245 seconds) 2014-11-01T18:34:23Z attila_lendvai joined #lisp 2014-11-01T18:34:33Z attila_lendvai quit (Changing host) 2014-11-01T18:34:33Z attila_lendvai joined #lisp 2014-11-01T18:36:07Z svetlyak40wt quit (Ping timeout: 245 seconds) 2014-11-01T18:40:03Z attila_lendvai quit (Disconnected by services) 2014-11-01T18:40:04Z attila_lendvai1 joined #lisp 2014-11-01T18:40:04Z attila_lendvai1 quit (Changing host) 2014-11-01T18:40:04Z attila_lendvai1 joined #lisp 2014-11-01T18:40:20Z pinupgeek quit (Quit: pinupgeek) 2014-11-01T18:42:15Z attila_lendvai joined #lisp 2014-11-01T18:42:47Z attila_lendvai quit (Client Quit) 2014-11-01T18:42:55Z attila_lendvai joined #lisp 2014-11-01T18:43:52Z attila_lendvai quit (Client Quit) 2014-11-01T18:44:00Z attila_lendvai joined #lisp 2014-11-01T18:45:32Z attila_lendvai1 quit (Ping timeout: 256 seconds) 2014-11-01T18:47:01Z svetlyak40wt joined #lisp 2014-11-01T18:48:37Z attila_lendvai quit (Ping timeout: 265 seconds) 2014-11-01T18:49:38Z attila_lendvai joined #lisp 2014-11-01T18:49:38Z attila_lendvai quit (Changing host) 2014-11-01T18:49:38Z attila_lendvai joined #lisp 2014-11-01T18:50:54Z EvW joined #lisp 2014-11-01T18:50:59Z neptune joined #lisp 2014-11-01T18:51:01Z neptune is now known as Guest26483 2014-11-01T18:51:13Z Guest26483 quit (Client Quit) 2014-11-01T18:52:42Z miql joined #lisp 2014-11-01T18:53:13Z Ven quit (Quit: My MacBook has gone to sleep. ZZZzzz…) 2014-11-01T18:56:49Z jtza8 quit (Ping timeout: 255 seconds) 2014-11-01T18:57:06Z attila_lendvai quit (Quit: Leaving.) 2014-11-01T18:57:22Z miql quit (Ping timeout: 240 seconds) 2014-11-01T18:57:35Z erikc joined #lisp 2014-11-01T18:57:49Z hardenedapple joined #lisp 2014-11-01T18:58:11Z allen joined #lisp 2014-11-01T18:58:21Z allen: On sbcl, I'm not able to (require :asdf-intall) 2014-11-01T18:58:28Z allen: (require :asdf) works fine 2014-11-01T19:00:38Z Grue`: the solution is to not use asdf-install :) 2014-11-01T19:01:02Z Grue`: http://www.quicklisp.org/beta/ 2014-11-01T19:01:12Z Xach: allen: asdf-install is obsolete and any documentation referencing it is probably obsolete or at least neglected 2014-11-01T19:01:55Z svetlyak40wt quit (Remote host closed the connection) 2014-11-01T19:02:10Z Zetetic joined #lisp 2014-11-01T19:02:32Z svetlyak40wt joined #lisp 2014-11-01T19:02:37Z allen: ah ok, makes sense 2014-11-01T19:04:04Z erikc: the cffi page has a dead link to a ‘Proposed Block Memory Interface’, did anything ever come of this? 2014-11-01T19:05:09Z nalkri quit (Ping timeout: 260 seconds) 2014-11-01T19:05:36Z Zetetic is now known as nalkri 2014-11-01T19:06:53Z svetlyak40wt quit (Ping timeout: 240 seconds) 2014-11-01T19:10:45Z pt1 quit (Remote host closed the connection) 2014-11-01T19:12:54Z nyef joined #lisp 2014-11-01T19:13:34Z nyef: Good afternoon, all. 2014-11-01T19:14:24Z otjura quit (Ping timeout: 245 seconds) 2014-11-01T19:15:46Z Ryan_Burnside: Hello nyef. 2014-11-01T19:16:17Z jegaxd26 joined #lisp 2014-11-01T19:19:24Z kcj joined #lisp 2014-11-01T19:19:26Z ehu quit (Ping timeout: 258 seconds) 2014-11-01T19:19:31Z kcj quit (Changing host) 2014-11-01T19:19:31Z kcj joined #lisp 2014-11-01T19:19:57Z miql joined #lisp 2014-11-01T19:25:12Z miql quit (Ping timeout: 256 seconds) 2014-11-01T19:25:40Z marchdown joined #lisp 2014-11-01T19:26:19Z innertracks joined #lisp 2014-11-01T19:26:48Z ggole quit 2014-11-01T19:29:19Z jjkola joined #lisp 2014-11-01T19:29:27Z hardenedapple: Hello, is there any way to use a vector as the input for sb-ext:run-program without creating a stream from it? 2014-11-01T19:29:35Z jjkola: hi 2014-11-01T19:31:33Z jkaye joined #lisp 2014-11-01T19:32:12Z malbertife joined #lisp 2014-11-01T19:33:16Z svetlyak40wt joined #lisp 2014-11-01T19:33:26Z svetlyak40wt quit (Remote host closed the connection) 2014-11-01T19:35:40Z svetlyak40wt joined #lisp 2014-11-01T19:35:57Z jkaye quit (Ping timeout: 256 seconds) 2014-11-01T19:40:14Z svetlyak40wt quit (Ping timeout: 272 seconds) 2014-11-01T19:44:33Z pinupgeek joined #lisp 2014-11-01T19:44:33Z pinupgeek quit (Changing host) 2014-11-01T19:44:33Z pinupgeek joined #lisp 2014-11-01T19:47:04Z miql joined #lisp 2014-11-01T19:47:45Z Wojciech_K quit (Quit: Leaving) 2014-11-01T19:47:47Z jewel quit (Ping timeout: 245 seconds) 2014-11-01T19:51:16Z attila_lendvai joined #lisp 2014-11-01T19:51:54Z miql quit (Ping timeout: 245 seconds) 2014-11-01T19:56:00Z Grue` quit (Ping timeout: 256 seconds) 2014-11-01T19:56:23Z MoALTz joined #lisp 2014-11-01T19:57:15Z attila_lendvai1 joined #lisp 2014-11-01T19:57:15Z attila_lendvai quit (Disconnected by services) 2014-11-01T19:57:15Z attila_lendvai1 quit (Changing host) 2014-11-01T19:57:15Z attila_lendvai1 joined #lisp 2014-11-01T19:57:30Z oleo__ is now known as oleo 2014-11-01T20:00:41Z Jesin quit (Quit: Leaving) 2014-11-01T20:00:43Z wbooze joined #lisp 2014-11-01T20:02:04Z jewel joined #lisp 2014-11-01T20:02:57Z Beetny joined #lisp 2014-11-01T20:04:27Z Grue` joined #lisp 2014-11-01T20:06:45Z corni quit (Ping timeout: 260 seconds) 2014-11-01T20:06:45Z Patzy quit (Read error: Connection reset by peer) 2014-11-01T20:07:22Z svetlyak40wt joined #lisp 2014-11-01T20:07:43Z Patzy joined #lisp 2014-11-01T20:10:26Z Ven joined #lisp 2014-11-01T20:12:21Z tesuji quit (Ping timeout: 260 seconds) 2014-11-01T20:13:19Z fragamus joined #lisp 2014-11-01T20:14:12Z Grue` quit (Remote host closed the connection) 2014-11-01T20:14:13Z erikc quit (Quit: erikc) 2014-11-01T20:14:14Z miql joined #lisp 2014-11-01T20:15:35Z ehu joined #lisp 2014-11-01T20:17:30Z Grue` joined #lisp 2014-11-01T20:19:14Z miql quit (Ping timeout: 256 seconds) 2014-11-01T20:23:20Z Nizumzen joined #lisp 2014-11-01T20:23:22Z MouldyOldBones quit (Quit: MouldyOldBones) 2014-11-01T20:24:27Z marvin-hh quit (Ping timeout: 245 seconds) 2014-11-01T20:24:53Z stassats joined #lisp 2014-11-01T20:26:23Z mncoder quit (Quit: mncoder) 2014-11-01T20:26:23Z marvin-hh joined #lisp 2014-11-01T20:27:42Z EvW quit (Ping timeout: 265 seconds) 2014-11-01T20:28:23Z innertracks quit (Ping timeout: 240 seconds) 2014-11-01T20:32:00Z jkaye joined #lisp 2014-11-01T20:35:39Z jewel quit (Ping timeout: 264 seconds) 2014-11-01T20:36:36Z schaueho quit (Quit: Leaving) 2014-11-01T20:36:44Z jkaye quit (Ping timeout: 244 seconds) 2014-11-01T20:36:47Z Ven quit (Quit: My MacBook has gone to sleep. ZZZzzz…) 2014-11-01T20:37:56Z Intensity joined #lisp 2014-11-01T20:38:04Z Ven joined #lisp 2014-11-01T20:40:38Z fragamus quit (Quit: Computer has gone to sleep.) 2014-11-01T20:41:31Z miql joined #lisp 2014-11-01T20:46:27Z miql quit (Ping timeout: 258 seconds) 2014-11-01T20:47:22Z LiamH quit (Quit: Leaving.) 2014-11-01T20:48:14Z marchdown quit (Quit: marchdown) 2014-11-01T20:52:56Z jtza8 joined #lisp 2014-11-01T20:54:06Z Shinmera quit (Quit: しつれいしなければならないんです。) 2014-11-01T20:54:38Z Shinmera joined #lisp 2014-11-01T20:54:43Z attila_lendvai1 quit (Ping timeout: 255 seconds) 2014-11-01T20:57:00Z jtza8 quit (Remote host closed the connection) 2014-11-01T20:58:45Z Karl_Dscc quit (Remote host closed the connection) 2014-11-01T21:02:09Z __prefect joined #lisp 2014-11-01T21:03:18Z axion_ joined #lisp 2014-11-01T21:03:22Z axion_ quit (Client Quit) 2014-11-01T21:03:34Z Longlius joined #lisp 2014-11-01T21:03:53Z heddwch quit (Ping timeout: 265 seconds) 2014-11-01T21:04:24Z mtar66 joined #lisp 2014-11-01T21:04:49Z heddwch joined #lisp 2014-11-01T21:05:08Z marchdown joined #lisp 2014-11-01T21:05:41Z mtar66 quit (Client Quit) 2014-11-01T21:06:35Z hardenedapple quit (Quit: WeeChat 1.0.1) 2014-11-01T21:07:33Z attila_lendvai joined #lisp 2014-11-01T21:08:00Z fragamus joined #lisp 2014-11-01T21:08:40Z miql joined #lisp 2014-11-01T21:10:11Z attila_lendvai quit (Disconnected by services) 2014-11-01T21:10:11Z attila_lendvai1 joined #lisp 2014-11-01T21:10:11Z attila_lendvai1 quit (Changing host) 2014-11-01T21:10:11Z attila_lendvai1 joined #lisp 2014-11-01T21:12:01Z Jesin joined #lisp 2014-11-01T21:12:21Z Nizumzen quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2014-11-01T21:12:45Z cy quit (Quit: :q!) 2014-11-01T21:13:22Z miql quit (Ping timeout: 240 seconds) 2014-11-01T21:15:10Z mncoder joined #lisp 2014-11-01T21:15:18Z adlai quit (Quit: WeeChat 1.0.1) 2014-11-01T21:18:54Z Adlai joined #lisp 2014-11-01T21:20:39Z attila_lendvai1 quit (Ping timeout: 244 seconds) 2014-11-01T21:23:34Z attila_lendvai joined #lisp 2014-11-01T21:23:34Z attila_lendvai quit (Changing host) 2014-11-01T21:23:34Z attila_lendvai joined #lisp 2014-11-01T21:25:21Z EvW joined #lisp 2014-11-01T21:26:31Z svetlyak40wt quit (Remote host closed the connection) 2014-11-01T21:28:30Z meiji11 joined #lisp 2014-11-01T21:29:12Z cy joined #lisp 2014-11-01T21:32:47Z attila_lendvai quit (Read error: No route to host) 2014-11-01T21:33:03Z Ryan_Burnside: How is On Common Lisp? 2014-11-01T21:33:09Z Ryan_Burnside: I know Seibel' 2014-11-01T21:33:15Z Ryan_Burnside: s book is the defacto book now. 2014-11-01T21:34:27Z Ryan_Burnside: The price for the On Lisp has gone through the roof. 2014-11-01T21:35:49Z miql joined #lisp 2014-11-01T21:36:45Z EvW quit (Ping timeout: 265 seconds) 2014-11-01T21:40:37Z miql quit (Ping timeout: 255 seconds) 2014-11-01T21:41:09Z prxq joined #lisp 2014-11-01T21:42:11Z Shinmera: I wouldn't really recommend it except as 'has some interesting ideas' 2014-11-01T21:42:19Z Shinmera: ymmv 2014-11-01T21:42:22Z stassats: on lisp is free 2014-11-01T21:43:11Z prxq: 'has some interesting ideas' seems valuable enough 2014-11-01T21:43:32Z stassats: interesting, but not useful 2014-11-01T21:45:53Z Ryan_Burnside: I've also been considering the book on the CLOS but fear it is too difficult. 2014-11-01T21:46:08Z Ryan_Burnside: Metaobject Protocol or something to that effect 2014-11-01T21:46:10Z stassats: the Keene one is pretty easy 2014-11-01T21:46:37Z prxq: indeed. and also interesting :-) 2014-11-01T21:46:53Z Ryan_Burnside: I heard it did not use the modern version of the CLOS. 2014-11-01T21:46:57Z Ryan_Burnside: Perhaps I'm mistaken. 2014-11-01T21:47:07Z prxq: especially since it makes reference to software systems you are almost guaranteed never to have seen 2014-11-01T21:47:12Z Bike: the differences are mostly pretty small 2014-11-01T21:47:22Z Bike: stuff like setf functions being new 2014-11-01T21:47:40Z prxq: Bike: what's a setf function? 2014-11-01T21:47:56Z Bike: a function with a name like (setf foo) 2014-11-01T21:48:17Z prxq: like in (defun (setf foo) ...)? 2014-11-01T21:48:32Z attila_lendvai joined #lisp 2014-11-01T21:48:33Z Bike: yeah 2014-11-01T21:48:38Z prxq: that is covered, I'm pretty sure 2014-11-01T21:49:25Z Bike: closette is written to work in an implementation without them 2014-11-01T21:50:05Z Ryan_Burnside: Oh, one other question. Is there any standards committee that might release another version of CL in the future? 2014-11-01T21:50:09Z prxq: what has been criticized is the recommendation to use (make-whatever-thing ...) instead of using make-instance. But keene definitively uses clos. 2014-11-01T21:50:17Z prxq: Ryan_Burnside: not currently 2014-11-01T21:50:41Z prxq: the future is a pretty big thing though 2014-11-01T21:51:54Z Ryan_Burnside: I guess, it does most things I need even has many modern features that are just now getting traction. 2014-11-01T21:52:17Z Ryan_Burnside: It is the implementations and libraries I worry most about. 2014-11-01T21:52:37Z Ryan_Burnside: That stuff has to be updated with each new OS. 2014-11-01T21:53:23Z prxq: having a standards commitee issuing regular standard updates is not necessarily a good thing. The languages that have it seem to have more trouble with it than it's worth. 2014-11-01T21:54:01Z prxq: Ryan_Burnside: that's happening. just not in the standard 2014-11-01T21:55:18Z Ryan_Burnside: Ideally they could unify things like socket handling. I think that is one of the things that is different between implementations. Perhaps it mostly just needs unification. 2014-11-01T21:55:24Z Ryan_Burnside: In a few small areas. 2014-11-01T21:55:44Z prxq: Ryan_Burnside: there are wrapper libs that do that fairly consistently and well 2014-11-01T21:56:58Z Ryan_Burnside: It is a good fix then. 2014-11-01T21:57:30Z EvW joined #lisp 2014-11-01T21:59:41Z ehu quit (Ping timeout: 260 seconds) 2014-11-01T21:59:41Z attila_lendvai quit (Read error: Connection reset by peer) 2014-11-01T22:00:03Z aap_ is now known as aap 2014-11-01T22:00:54Z attila_lendvai joined #lisp 2014-11-01T22:02:13Z attila_lendvai1 joined #lisp 2014-11-01T22:02:13Z attila_lendvai quit (Disconnected by services) 2014-11-01T22:02:13Z attila_lendvai1 quit (Changing host) 2014-11-01T22:02:13Z attila_lendvai1 joined #lisp 2014-11-01T22:03:14Z miql joined #lisp 2014-11-01T22:06:53Z nalkri quit (Ping timeout: 240 seconds) 2014-11-01T22:08:25Z miql quit (Ping timeout: 272 seconds) 2014-11-01T22:09:56Z zeitue quit (Ping timeout: 255 seconds) 2014-11-01T22:11:01Z zeitue joined #lisp 2014-11-01T22:12:01Z ndrei quit (Ping timeout: 244 seconds) 2014-11-01T22:14:11Z pt1 joined #lisp 2014-11-01T22:15:38Z malbertife quit (Ping timeout: 244 seconds) 2014-11-01T22:19:18Z cy quit (Quit: :q!) 2014-11-01T22:20:11Z cy joined #lisp 2014-11-01T22:20:43Z jkaye joined #lisp 2014-11-01T22:23:18Z marchdown quit (Quit: marchdown) 2014-11-01T22:23:20Z pt1 quit (Remote host closed the connection) 2014-11-01T22:25:37Z jkaye quit (Ping timeout: 255 seconds) 2014-11-01T22:30:11Z miql joined #lisp 2014-11-01T22:30:33Z k-stz: About the standard changing: https://soundcloud.com/zach-beane/peter-seibel-common-lisp, a talk by peter seibel, iirc, explaining the legal angle etc. and it won't probably happen 2014-11-01T22:34:36Z ack006 joined #lisp 2014-11-01T22:35:04Z miql quit (Ping timeout: 250 seconds) 2014-11-01T22:37:29Z ltbarcly joined #lisp 2014-11-01T22:39:52Z fragamus quit (Quit: Computer has gone to sleep.) 2014-11-01T22:43:15Z JokesOnYou77 quit (Quit: Ex-Chat) 2014-11-01T22:50:16Z pinupgeek quit (Quit: pinupgeek) 2014-11-01T22:51:38Z mindCrime joined #lisp 2014-11-01T22:53:40Z Ethan- joined #lisp 2014-11-01T22:57:25Z miql joined #lisp 2014-11-01T22:59:45Z resttime joined #lisp 2014-11-01T23:00:36Z baetheus joined #lisp 2014-11-01T23:02:08Z miql quit (Ping timeout: 244 seconds) 2014-11-01T23:05:08Z baetheus quit (Client Quit) 2014-11-01T23:07:37Z EvW quit (Ping timeout: 265 seconds) 2014-11-01T23:08:42Z Ryan_Burnside: This Zach Beane guy seems to pop up a lot when looking at Lisp stuff. :) 2014-11-01T23:08:51Z Ryan_Burnside: Watching a modeling video on Mirai and there he is. 2014-11-01T23:11:48Z Xach: i put up a lot of stuff by other people 2014-11-01T23:12:40Z Xach is not bay raitt or peter seibel 2014-11-01T23:13:05Z stassats: are you sure? 2014-11-01T23:13:38Z Nizumzen joined #lisp 2014-11-01T23:13:39Z Xach: solipsistically speaking, no 2014-11-01T23:21:10Z ltbarcly quit (Quit: Computer has gone to sleep.) 2014-11-01T23:23:48Z zolk3ri joined #lisp 2014-11-01T23:24:29Z ack006: Xach: i remember you had problems loading CLX, any luck with that? 2014-11-01T23:24:39Z miql joined #lisp 2014-11-01T23:24:45Z ack006: Xach: the compile error i mean 2014-11-01T23:25:00Z Xach: Yes, I updated CLX to not have multiply-defined WITHOUT-INTERRUPTS in the file. 2014-11-01T23:25:21Z LoicLisp quit (Remote host closed the connection) 2014-11-01T23:25:26Z ack006: Xach: ah. i see 2014-11-01T23:25:28Z stassats: clx just wanted to be tidy by not having style warnings 2014-11-01T23:25:32Z stassats: clx.. tidy.. haha 2014-11-01T23:25:49Z edgar-rft joined #lisp 2014-11-01T23:25:58Z ack006: Xach: i'm having problems loading it in cmucl (from quicklisp) 2014-11-01T23:26:14Z stassats: why are you using cmucl? 2014-11-01T23:26:22Z Xach: Virtue is its own punishment 2014-11-01T23:26:29Z heurist quit (Ping timeout: 260 seconds) 2014-11-01T23:26:30Z ack006: Xach: :-) 2014-11-01T23:26:44Z ack006: Xach: to test it for arch linux packaging 2014-11-01T23:26:45Z Xach: ack006: does the git version load? 2014-11-01T23:26:58Z ack006: Xach: i'll try 2014-11-01T23:27:14Z Ryan_Burnside: My mustache smells of pancakes. But I've not had pancakes. 2014-11-01T23:27:17Z heurist joined #lisp 2014-11-01T23:27:21Z Ryan_Burnside: whoops wrong window sorry 2014-11-01T23:28:10Z Petit_Dejeuner_: Ryan_Burnside, Xach shows up in the PCL blurbs page. http://www.gigamonkeys.com/book/blurbs.html 2014-11-01T23:28:49Z stassats: you mean on the cover? 2014-11-01T23:29:00Z Petit_Dejeuner_: Does he? 2014-11-01T23:29:04Z Petit_Dejeuner_: The back cover? 2014-11-01T23:29:10Z stassats: the front conver? 2014-11-01T23:29:25Z Petit_Dejeuner_: I had no idea. 2014-11-01T23:29:39Z miql quit (Ping timeout: 264 seconds) 2014-11-01T23:29:50Z Petit_Dejeuner_: Oh wow, it IS there. 2014-11-01T23:30:03Z Ryan_Burnside: For a while I confused him with "Xah" an emacs user. 2014-11-01T23:30:06Z ack006: Xach: i was having trouble digging the source files out of the output. 2014-11-01T23:30:18Z ack006: Xach: resorted to: (let ((*break-on-signals* 'error)) (asdf:load-system 'clx :force t)) 2014-11-01T23:30:26Z ack006: is there an easier way? 2014-11-01T23:30:49Z Xach: I don't know, sorry. The source files are fairly apparent on SBCL. I don't use CMUCL. 2014-11-01T23:31:04Z ack006: Xach: ok, thanks 2014-11-01T23:31:07Z Xach: Ryan_Burnside: that has happened to me many times. Xah and I are very different. 2014-11-01T23:31:29Z Ryan_Burnside: Only a 'c' apart. 2014-11-01T23:31:30Z Ryan_Burnside: :) 2014-11-01T23:31:58Z Ryan_Burnside: Probably doesn't help that many people who use CL also use Emacs. 2014-11-01T23:32:01Z Xach: there is another lispy hacker with a nickname of "axch" 2014-11-01T23:32:32Z Ryan_Burnside: https://github.com/axch 2014-11-01T23:32:42Z Petit_Dejeuner_: /nick Xash 2014-11-01T23:32:52Z Ryan_Burnside: Yes, he appears to have sprouted a beard from hacking exposure. 2014-11-01T23:33:07Z ack006: :-) 2014-11-01T23:33:15Z Xach: There is also someone in the same city as me, but no relation, named "Zachary Beane" 2014-11-01T23:33:27Z Xach: It causes no end of trouble at various offices and bureaus 2014-11-01T23:33:33Z innertracks joined #lisp 2014-11-01T23:35:19Z mood: ack006: Building StumpWM on Travis-CI also failed with CMUCL because of CLX: https://travis-ci.org/stumpwm/stumpwm/jobs/35806986 2014-11-01T23:36:48Z ack006: mood: aha 2014-11-01T23:37:00Z mood: The error there seems to be in dependent.lisp, in (defun fast-read-pixarray-24 ...) 2014-11-01T23:39:29Z stassats: is it kernel::%with-array-data, not kernel::with-array-data? 2014-11-01T23:40:57Z ack006: KERNEL::WITH-ARRAY-DATA 2014-11-01T23:41:02Z stassats: no, LISP::WITH-ARRAY-DATA 2014-11-01T23:41:26Z ack006: i pasted from the eror message 2014-11-01T23:46:24Z attila_lendvai1 quit (Quit: Leaving.) 2014-11-01T23:46:53Z psy_ quit (Ping timeout: 240 seconds) 2014-11-01T23:49:52Z stassats: well, cmucl has its own clx 2014-11-01T23:49:58Z stassats: that's why it was never noticed 2014-11-01T23:50:08Z LiamH joined #lisp 2014-11-01T23:51:19Z pyx joined #lisp 2014-11-01T23:51:39Z pyx quit (Client Quit) 2014-11-01T23:51:52Z ack006: how can i prevent cmucl from using the clx from quicklisp? 2014-11-01T23:52:15Z stassats: Xach: can you change kernel::with-array-data to lisp::with-array-data in with-underlying-simple-vector? 2014-11-01T23:52:21Z miql joined #lisp 2014-11-01T23:52:48Z pspace joined #lisp 2014-11-01T23:53:38Z mood: It also appears in COPY-BIT-RECT, twice 2014-11-01T23:53:56Z mindCrime quit (Ping timeout: 250 seconds) 2014-11-01T23:53:56Z Xach: I can't test. Can someone make all the needed changes and send me a patch? 2014-11-01T23:54:03Z Xach: or a pull request on github? 2014-11-01T23:54:18Z Xach: make the needed changes, and test 2014-11-01T23:54:30Z stassats: Xach: it's that way the cmucl version of clx 2014-11-01T23:54:38Z stassats: and it compiles, i'm not going to run it, though 2014-11-01T23:56:52Z miql quit (Ping timeout: 240 seconds) 2014-11-01T23:57:45Z pinupgeek joined #lisp 2014-11-01T23:57:45Z pinupgeek quit (Changing host) 2014-11-01T23:57:45Z pinupgeek joined #lisp 2014-11-01T23:57:53Z innertracks quit (Ping timeout: 265 seconds) 2014-11-01T23:58:12Z stepnem quit (Ping timeout: 245 seconds) 2014-11-01T23:58:23Z loz quit (Ping timeout: 240 seconds)