2014-12-11T00:00:24Z munksgaard joined #lisp 2014-12-11T00:01:23Z Xach left #lisp 2014-12-11T00:04:25Z genii quit (Read error: Connection reset by peer) 2014-12-11T00:07:47Z eudoxia quit (Ping timeout: 245 seconds) 2014-12-11T00:07:56Z JuanitoJons quit (Ping timeout: 258 seconds) 2014-12-11T00:08:00Z murftown_ joined #lisp 2014-12-11T00:08:06Z Guest36999 quit (Quit: leaving) 2014-12-11T00:08:49Z fragamus_ joined #lisp 2014-12-11T00:09:58Z murftown quit (Ping timeout: 250 seconds) 2014-12-11T00:09:58Z murftown_ is now known as murftown 2014-12-11T00:12:52Z mrSpec quit (Remote host closed the connection) 2014-12-11T00:15:13Z murftown_ joined #lisp 2014-12-11T00:16:19Z murftown_ quit (Client Quit) 2014-12-11T00:16:26Z murftown quit (Ping timeout: 244 seconds) 2014-12-11T00:16:39Z zRecursive joined #lisp 2014-12-11T00:18:37Z murftown joined #lisp 2014-12-11T00:20:12Z murftown quit (Client Quit) 2014-12-11T00:21:14Z _zxq9_ quit (Quit: Konversation terminated!) 2014-12-11T00:21:22Z Karl_Dscc quit (Remote host closed the connection) 2014-12-11T00:24:15Z zygentoma quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2014-12-11T00:24:39Z petrutrimbitas quit (Quit: petrutrimbitas) 2014-12-11T00:25:35Z robot-beethoven joined #lisp 2014-12-11T00:25:51Z Kanae joined #lisp 2014-12-11T00:26:07Z Devon quit (Ping timeout: 245 seconds) 2014-12-11T00:29:48Z munksgaard quit (Ping timeout: 265 seconds) 2014-12-11T00:29:54Z fikusz quit (Ping timeout: 250 seconds) 2014-12-11T00:34:42Z fragamus_ quit (Quit: Computer has gone to sleep.) 2014-12-11T00:34:54Z k-dawg joined #lisp 2014-12-11T00:44:49Z defaultxr joined #lisp 2014-12-11T00:44:53Z isis_ quit (Read error: Connection reset by peer) 2014-12-11T00:45:41Z isis_ joined #lisp 2014-12-11T00:53:04Z pjb: - 2014-12-11T00:53:17Z jasom: okay, my idea for implementing an incremental GC was done at DEC in the late 80s, that makes me think that it's not too insane. 2014-12-11T00:54:20Z jasom: also, it would have taken me a lot longer (if I even managed it) to figure this fact out before google existed 2014-12-11T00:55:15Z jasom: they also managed to do it as a "mostly copying" collector, which was the piece I was missing for not having to change sbcl too much on x86oids 2014-12-11T00:55:54Z murftown joined #lisp 2014-12-11T00:56:01Z pjb: But nowadays, you want to take into account multicores, therefore you want to update the GC algorithms to work in parallel with themselves or with the allocator. 2014-12-11T00:56:32Z jasom: though it does mean keeping some per-page metadata; with only a from-space and to-space I could use solely the address to determine which space it is in 2014-12-11T00:56:42Z murftown quit (Client Quit) 2014-12-11T00:56:46Z jasom: pjb: I don't use threads, so it doesn't matter for me :) 2014-12-11T00:57:21Z jasom: anyway, I have to run 2014-12-11T00:58:49Z murftown joined #lisp 2014-12-11T01:03:36Z murftown quit (Client Quit) 2014-12-11T01:03:49Z jusss joined #lisp 2014-12-11T01:05:05Z yenda quit (Ping timeout: 265 seconds) 2014-12-11T01:11:15Z jasom: also the paper specifically mentions that it's limited to uniprocessor systems, but mentions how it could theoretically be extended to multiprocessor systems. 2014-12-11T01:12:26Z jasom: Finally much of the changes needed to get a working incremental gc are potentially useful for a concurrent gc as well. 2014-12-11T01:12:45Z oleo is now known as Guest31229 2014-12-11T01:14:15Z z0d quit (Remote host closed the connection) 2014-12-11T01:14:27Z oleo__ joined #lisp 2014-12-11T01:14:57Z z0d joined #lisp 2014-12-11T01:14:57Z z0d quit (Changing host) 2014-12-11T01:14:57Z z0d joined #lisp 2014-12-11T01:15:49Z Guest31229 quit (Ping timeout: 252 seconds) 2014-12-11T01:20:37Z urandom__ quit (Quit: Konversation terminated!) 2014-12-11T01:26:40Z k-dawg quit (Quit: This computer has gone to sleep) 2014-12-11T01:27:49Z murftown joined #lisp 2014-12-11T01:28:03Z isis_ quit (Ping timeout: 258 seconds) 2014-12-11T01:29:26Z murftown quit (Client Quit) 2014-12-11T01:36:13Z hugod quit (Ping timeout: 244 seconds) 2014-12-11T01:39:06Z klltkr quit (Read error: Connection reset by peer) 2014-12-11T01:41:25Z klltkr joined #lisp 2014-12-11T01:41:27Z codeburg quit (Remote host closed the connection) 2014-12-11T01:41:51Z emaczen joined #lisp 2014-12-11T01:42:04Z codeburg joined #lisp 2014-12-11T01:42:46Z emaczen: Is it possible to do a case statement on a pair of values? 2014-12-11T01:46:04Z pillton: emaczen: Have a look at ALEXANDRIA:SWITCH. 2014-12-11T01:49:50Z hiyosi quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2014-12-11T01:51:37Z hugod joined #lisp 2014-12-11T01:56:48Z jlarocco quit (Quit: Leaving) 2014-12-11T01:57:57Z emaczen quit (Ping timeout: 258 seconds) 2014-12-11T01:58:07Z juanlas joined #lisp 2014-12-11T02:03:26Z White_Flame: jasom: Even if you don't use threads, the system backend and FFI really brings threading concerns to implementations 2014-12-11T02:03:44Z White_Flame: (unless you're talking about a much more raw implementation, I forget whose project is whose :) ) 2014-12-11T02:04:09Z fikusz joined #lisp 2014-12-11T02:05:07Z Longlius joined #lisp 2014-12-11T02:06:43Z yaewa joined #lisp 2014-12-11T02:08:01Z moei quit (Ping timeout: 260 seconds) 2014-12-11T02:08:22Z nate_c quit 2014-12-11T02:09:02Z Ethan- quit (Ping timeout: 245 seconds) 2014-12-11T02:09:40Z moei joined #lisp 2014-12-11T02:09:50Z jusss quit (Read error: Connection reset by peer) 2014-12-11T02:10:26Z troydm quit (Ping timeout: 250 seconds) 2014-12-11T02:10:58Z Ethan- joined #lisp 2014-12-11T02:13:02Z yaewa quit (Ping timeout: 250 seconds) 2014-12-11T02:15:25Z mejja joined #lisp 2014-12-11T02:16:28Z mejja quit (Quit: ChatZilla 0.9.91 [Firefox 34.0.5/20141126041045]) 2014-12-11T02:19:41Z juanlas quit (Quit: juanlas) 2014-12-11T02:22:35Z mearnsh quit (Ping timeout: 272 seconds) 2014-12-11T02:22:51Z Quadresce joined #lisp 2014-12-11T02:23:12Z mearnsh joined #lisp 2014-12-11T02:25:52Z tristero joined #lisp 2014-12-11T02:28:16Z MrWoohoo quit (Quit: ["Textual IRC Client: www.textualapp.com"]) 2014-12-11T02:30:49Z mearnsh quit (Ping timeout: 272 seconds) 2014-12-11T02:31:05Z towodo joined #lisp 2014-12-11T02:32:43Z mearnsh joined #lisp 2014-12-11T02:34:09Z Bicyclidine quit (Ping timeout: 260 seconds) 2014-12-11T02:35:28Z Quadresce quit (Ping timeout: 265 seconds) 2014-12-11T02:37:31Z frkout joined #lisp 2014-12-11T02:38:03Z troydm joined #lisp 2014-12-11T02:40:31Z frkout_ quit (Ping timeout: 252 seconds) 2014-12-11T02:41:55Z jlongster joined #lisp 2014-12-11T02:45:06Z towodo quit (Quit: towodo) 2014-12-11T02:45:28Z MrWoohoo joined #lisp 2014-12-11T02:59:19Z z0d quit (*.net *.split) 2014-12-11T03:00:37Z Bicyclidine joined #lisp 2014-12-11T03:02:19Z Bicyclidine quit (Client Quit) 2014-12-11T03:03:34Z khisanth_ is now known as Khisanth 2014-12-11T03:04:55Z z0d joined #lisp 2014-12-11T03:06:21Z araujo joined #lisp 2014-12-11T03:06:21Z araujo quit (Changing host) 2014-12-11T03:06:21Z araujo joined #lisp 2014-12-11T03:08:59Z beach joined #lisp 2014-12-11T03:09:08Z beach: Good morning everyone! 2014-12-11T03:09:29Z Bike: evening beach. 2014-12-11T03:09:41Z zRecursive: noon 2014-12-11T03:09:51Z goldenlight joined #lisp 2014-12-11T03:10:01Z araujo quit (Max SendQ exceeded) 2014-12-11T03:10:49Z araujo joined #lisp 2014-12-11T03:16:09Z jlongster quit (Ping timeout: 260 seconds) 2014-12-11T03:16:55Z araujo quit (Max SendQ exceeded) 2014-12-11T03:17:40Z araujo joined #lisp 2014-12-11T03:18:36Z ahungry: hi 2014-12-11T03:20:44Z z0d quit (Remote host closed the connection) 2014-12-11T03:20:51Z z0d joined #lisp 2014-12-11T03:24:09Z jlongster joined #lisp 2014-12-11T03:25:09Z madalu joined #lisp 2014-12-11T03:31:36Z innertracks quit (Remote host closed the connection) 2014-12-11T03:41:24Z pillton: G'day beach. 2014-12-11T03:41:43Z bgs100 quit (Quit: bgs100) 2014-12-11T03:43:42Z madalu quit (Remote host closed the connection) 2014-12-11T03:44:21Z c53100 quit (Ping timeout: 244 seconds) 2014-12-11T03:44:28Z drewc quit (Read error: Connection reset by peer) 2014-12-11T03:44:41Z beach: Hmm, I can't decide what to work on today. 2014-12-11T03:45:31Z beach: I am on the roll with SICL LOOP, but on the other hand, I should work on HIR->MIR translation so that drmeister can make progress with his compiler. 2014-12-11T03:46:43Z drmeister: beach: I know what's it's like to be on a roll. 2014-12-11T03:46:49Z drewc joined #lisp 2014-12-11T03:47:20Z beach: Yeah, it is a pity to stop in the middle of something. 2014-12-11T03:47:35Z |3b| knows what it is like to be on a roll on the wrong thing :/ 2014-12-11T03:47:42Z goldenlight quit (Quit: Lost terminal) 2014-12-11T03:48:21Z Bike: is sicl loop extensible in a way nobody uses, like xerox 2014-12-11T03:48:32Z BlueRavenGT joined #lisp 2014-12-11T03:48:39Z |3b|: oh well, at least the most recent bit of 'wrong thing' motivated some improvements to stuff that is a bit closer to things i should be working on 2014-12-11T03:48:53Z beach: Bike: It is meant to be, but I am not sure anybody will use that feature. 2014-12-11T03:49:29Z beach: |3b|: Care to tell us what those "thing"s are? 2014-12-11T03:50:13Z beach: Bike: I use combinatory parsing for the clauses, and combinatory parsing is inherently modular. It is therefore easy to "plug in" another parser. 2014-12-11T03:50:14Z |3b| is optimizing FFTs for no good reason, which motivated me to make my glsl compiler smart enough that (mod x y) can compile to (x%y) if x is integral, or mod(x,y) if it is floating point 2014-12-11T03:50:52Z beach: Bike: And I use CLOS to represent clauses, and there are generic functions for generating the bindings, preamble, body, etc. 2014-12-11T03:51:16Z beach: |3b|: I like optimizing FFTs. 2014-12-11T03:51:36Z |3b|: yeah, it has lots of fun puzzles involved :) 2014-12-11T03:52:25Z Bike: i wonder if something like shiver's loop thing could be remotely applicable 2014-12-11T03:52:48Z beach: Bike: Do you have a link? 2014-12-11T03:52:54Z rme left #lisp 2014-12-11T03:53:09Z |3b| is currently trying to reduce the number of sets of global memory accesses from 3 (1 per dimension) to 2 (1.5 dimensions per access) for the specific size i am using, which shouldn't be too hard 2014-12-11T03:53:29Z beach: Although I am on a roll with LOOP, when I picked up the work on it again after months, it took me only a few hours to get up to speed again, so the "swapping" overhead is not too bad. 2014-12-11T03:53:33Z Bike: http://www.ccs.neu.edu/home/shivers/papers/loop.pdf 2014-12-11T03:53:35Z |3b|: only problem is that to avoid inefficient use of the local memory on my GPU, i needed % operator working 2014-12-11T03:54:00Z beach: Bike: Thanks! 2014-12-11T03:54:54Z |3b|: doesn't seem to be helping as much as i'd hoped though :( 2014-12-11T03:55:05Z fragamus quit (Ping timeout: 264 seconds) 2014-12-11T03:55:59Z beach: Bike: Interesting paper, though perhaps not directly relevant to what I am currently doing. 2014-12-11T03:56:48Z beach: I wonder whether SICL LOOP is the only one that uses CLOS for extensions. 2014-12-11T03:56:54Z beach: I haven't looked at the others. 2014-12-11T03:57:17Z Bike: xerox uses defstruct since it's ancient, and xerox is sbcl and i think ccl. 2014-12-11T03:57:51Z |3b| thought it was MIT loop? 2014-12-11T03:58:38Z Bike: hm, looks like it, i could have sworn it was a parc thing 2014-12-11T03:58:45Z beach: Yes, I see. I knew that LOOP is old and I also knew that most implementations use old versions of LOOP, but I wasn't sure whether some implementations have made improvements to it. 2014-12-11T03:59:16Z |3b|: thinking of the CLOS implementation "portable common loops"? that looks like xerox 2014-12-11T03:59:41Z Bike: might be 2014-12-11T04:00:01Z Bike: beach: sbcl's been extended to work with the sequences extension, at least 2014-12-11T04:00:33Z beach: Oh, what is the "sequences extension"? 2014-12-11T04:00:39Z |3b|: yeah, there seem to have been lots of changes to SBCL's LOOP 2014-12-11T04:00:55Z |3b|: you can define your own subtypes of SEQUENCE in sbcl 2014-12-11T04:01:00Z Bike: http://dl.acm.org/citation.cfm?id=1622138 2014-12-11T04:01:01Z |3b|: (or subclass or whatever it is) 2014-12-11T04:01:10Z Bike: SBCL has it and abcl uses it for some java whateverness 2014-12-11T04:01:12Z beach: Right I knew about that. 2014-12-11T04:01:44Z beach: So are there new clauses defined for LOOP? 2014-12-11T04:02:01Z beach: ... for that extension? 2014-12-11T04:02:33Z Bike: yeah, "element" and "elements" 2014-12-11T04:02:44Z beach: OK. I'll have a look at that. 2014-12-11T04:02:55Z beach: It will be interesting to see how they did it. 2014-12-11T04:03:03Z Bike: figure 6 in the paper has source 2014-12-11T04:03:16Z Bike: it's, well, it's no clos. 2014-12-11T04:03:31Z beach: Sure. 2014-12-11T04:05:32Z beach: Bike: It looks like once I finish SICL LOOP I should write a paper on how to extend it, and then use Figure 6 as "previous work". 2014-12-11T04:05:40Z Bike: heh. 2014-12-11T04:05:58Z jusss joined #lisp 2014-12-11T04:06:15Z beach: I thought I had read that paper, but I must have forgotten about the LOOP extension discussed in it. 2014-12-11T04:06:24Z |3b|: looks like my attempt at using local memory more efficiently was completely pointless and i should have just done it the simple way in the first place :p 2014-12-11T04:06:46Z Bike: hooray, programming! 2014-12-11T04:07:05Z drmeister: Is there an emacs command to jump the point to a specific offset from the start of the file? 2014-12-11T04:07:31Z |3b|: M-g M-g is goto line if that is what you want 2014-12-11T04:08:16Z beach: drmeister: You can always go to the beginning and then forward-char. 2014-12-11T04:08:19Z |3b|: or M-123 C-f to go forwards 123 characters 2014-12-11T04:08:28Z Bike: "M-g c Read a number n and move point to buffer position n. Position 1 is the beginning of the buffer. " 2014-12-11T04:08:36Z Bike: (apparently) 2014-12-11T04:08:45Z jlongster quit (Remote host closed the connection) 2014-12-11T04:08:57Z |3b|: oh yeah, should have thought to check other M-g things since they made it a prefix :p 2014-12-11T04:10:44Z Jubb quit (Read error: Connection reset by peer) 2014-12-11T04:14:10Z beach: Bike: Thanks for (indirectly) reminding me that the LOOP implementation can be the subject of a paper. 2014-12-11T04:14:26Z drmeister: beach: Thanks - I also asked in #emacs and was given "goto-char" 2014-12-11T04:16:17Z Bike: no problem, i guess 2014-12-11T04:16:48Z drmeister: Thanks M-g c works. I'm testing my source code info. I added filePos as well as lineno/column 2014-12-11T04:17:22Z z0d quit (Ping timeout: 256 seconds) 2014-12-11T04:17:38Z Denommus quit (Quit: ZNC - http://znc.in) 2014-12-11T04:18:09Z z0d joined #lisp 2014-12-11T04:18:09Z z0d quit (Changing host) 2014-12-11T04:18:09Z z0d joined #lisp 2014-12-11T04:19:25Z |3b|: looks like i might be able to get down to ~23ms from ~30 if it works at least, though still probably need to break it up to keep processing per frame down 2014-12-11T04:28:11Z Denommus joined #lisp 2014-12-11T04:29:50Z Denommus quit (Client Quit) 2014-12-11T04:32:44Z goldenlight joined #lisp 2014-12-11T04:33:42Z pillton quit (Remote host closed the connection) 2014-12-11T04:36:23Z stepnem quit (Ping timeout: 252 seconds) 2014-12-11T04:41:29Z ThePhoeron quit (Remote host closed the connection) 2014-12-11T04:41:41Z ThePhoeron joined #lisp 2014-12-11T04:42:35Z mishoo joined #lisp 2014-12-11T04:42:43Z fragamus joined #lisp 2014-12-11T04:45:09Z nikki93 joined #lisp 2014-12-11T04:45:22Z nikki93 quit (Remote host closed the connection) 2014-12-11T04:48:13Z psy_ quit (Remote host closed the connection) 2014-12-11T04:49:03Z gingerale joined #lisp 2014-12-11T04:55:05Z frkout quit (Remote host closed the connection) 2014-12-11T04:55:31Z frkout joined #lisp 2014-12-11T04:56:06Z beach: Now, the question is: should I turn the combinatory parsing framework into a separate paper, or should it be part of the LOOP paper? 2014-12-11T04:56:17Z nonumbra left #lisp 2014-12-11T04:57:19Z beach: I guess I would have to improve the combinatory parsing framework so that it can works with streams of tokens rather than just list of tokens as is now the case. That should not be too hard though. 2014-12-11T04:57:31Z beach: s/s// 2014-12-11T04:58:15Z beach: To early in the morning. Typing skills are substandard. 2014-12-11T05:05:43Z scymtym_ quit (Ping timeout: 252 seconds) 2014-12-11T05:13:45Z innertracks joined #lisp 2014-12-11T05:14:49Z theseb joined #lisp 2014-12-11T05:15:13Z karswell` quit (Read error: Connection reset by peer) 2014-12-11T05:15:48Z Saigut joined #lisp 2014-12-11T05:18:37Z seg joined #lisp 2014-12-11T05:18:58Z innertracks quit (Quit: innertracks) 2014-12-11T05:24:01Z jusss quit (Ping timeout: 260 seconds) 2014-12-11T05:24:28Z murftown joined #lisp 2014-12-11T05:26:00Z Harag joined #lisp 2014-12-11T05:30:16Z Harag quit (Ping timeout: 244 seconds) 2014-12-11T05:35:06Z murftown quit (Quit: murftown) 2014-12-11T05:35:14Z JuanDaugherty quit (Ping timeout: 245 seconds) 2014-12-11T05:35:41Z JuanDaugherty joined #lisp 2014-12-11T05:35:45Z dxtr quit (Ping timeout: 265 seconds) 2014-12-11T05:39:41Z dxtr joined #lisp 2014-12-11T05:40:13Z Saigut quit (Remote host closed the connection) 2014-12-11T05:40:17Z stacksmith quit (Ping timeout: 258 seconds) 2014-12-11T05:40:32Z Saigut joined #lisp 2014-12-11T05:40:44Z stacksmith joined #lisp 2014-12-11T05:41:27Z pranavrc joined #lisp 2014-12-11T05:41:27Z pranavrc quit (Changing host) 2014-12-11T05:41:27Z pranavrc joined #lisp 2014-12-11T05:45:12Z Saigut quit (Remote host closed the connection) 2014-12-11T05:45:27Z Saigut joined #lisp 2014-12-11T05:46:25Z gingerale quit (Ping timeout: 252 seconds) 2014-12-11T05:46:49Z drmeister: Does anyone know what this emacs/slime error is? Error in process filter: Wrong number of arguments: nil, 3 2014-12-11T05:48:33Z seg quit (Quit: Bye.) 2014-12-11T05:49:45Z loz1 joined #lisp 2014-12-11T05:50:12Z Saigut quit (Remote host closed the connection) 2014-12-11T05:50:27Z Saigut joined #lisp 2014-12-11T05:54:09Z seg joined #lisp 2014-12-11T05:54:12Z seg quit (Remote host closed the connection) 2014-12-11T05:55:13Z Saigut quit (Remote host closed the connection) 2014-12-11T05:55:27Z Saigut joined #lisp 2014-12-11T05:57:22Z drewc: drmeister: I have experienced that when trying to print something via a slime evalualtion (in org mode)... it was something trying to print what was outputted but two things were outputted rather than the usual one and it was APPLY 2014-12-11T05:57:52Z drewc: 'ing the result list to print it, or something 2014-12-11T05:59:05Z jusss joined #lisp 2014-12-11T05:59:17Z drewc: that was a while ago, so I cannot say anything helpful about it anymore it seems :| 2014-12-11T05:59:22Z drmeister: Do you have any way to debug it? 2014-12-11T05:59:56Z drmeister: Thanks 2014-12-11T06:00:12Z Saigut quit (Remote host closed the connection) 2014-12-11T06:00:28Z Qudit314159 quit (Read error: Connection reset by peer) 2014-12-11T06:00:29Z Saigut joined #lisp 2014-12-11T06:00:32Z seg joined #lisp 2014-12-11T06:03:06Z drewc: just tried it and it seems to be fixed... so it works, which is not what we wanted. But, the *slime-events* buffer was where I was looking/would look. 2014-12-11T06:05:12Z Saigut quit (Remote host closed the connection) 2014-12-11T06:05:26Z Saigut joined #lisp 2014-12-11T06:07:17Z loz1 quit (Quit: Leaving.) 2014-12-11T06:07:40Z theseb quit (Quit: Leaving) 2014-12-11T06:07:54Z theseb joined #lisp 2014-12-11T06:09:03Z theseb quit (Client Quit) 2014-12-11T06:09:20Z theseb joined #lisp 2014-12-11T06:10:12Z Saigut quit (Remote host closed the connection) 2014-12-11T06:10:26Z Saigut joined #lisp 2014-12-11T06:10:57Z theseb quit (Client Quit) 2014-12-11T06:11:34Z drmeister: I figured it out. I hacked my list printer to print the address of each cons after the closing parenthesis as in (xx yy)@3544346. For low level debugging. It was confusing slime 2014-12-11T06:12:24Z seg quit (Quit: Bye.) 2014-12-11T06:12:38Z oleo__ quit (Quit: Verlassend) 2014-12-11T06:12:56Z BlueRavenGT quit (Ping timeout: 244 seconds) 2014-12-11T06:13:01Z nikki___ joined #lisp 2014-12-11T06:13:36Z murftown joined #lisp 2014-12-11T06:14:49Z White_Flame quit (Remote host closed the connection) 2014-12-11T06:15:06Z beach` joined #lisp 2014-12-11T06:15:07Z White_Flame joined #lisp 2014-12-11T06:15:13Z Saigut quit (Remote host closed the connection) 2014-12-11T06:15:23Z murftown quit (Client Quit) 2014-12-11T06:15:26Z Saigut joined #lisp 2014-12-11T06:16:03Z murftown joined #lisp 2014-12-11T06:16:09Z ggole joined #lisp 2014-12-11T06:16:19Z nikki93_ quit (Ping timeout: 258 seconds) 2014-12-11T06:16:55Z beach quit (Ping timeout: 250 seconds) 2014-12-11T06:18:28Z murftown quit (Client Quit) 2014-12-11T06:19:09Z jusss quit (Remote host closed the connection) 2014-12-11T06:19:54Z jusss joined #lisp 2014-12-11T06:20:13Z Saigut quit (Remote host closed the connection) 2014-12-11T06:20:28Z Saigut joined #lisp 2014-12-11T06:20:32Z seg joined #lisp 2014-12-11T06:23:30Z beach` is now known as beach 2014-12-11T06:24:47Z kushal quit (Quit: Leaving) 2014-12-11T06:25:13Z Saigut quit (Remote host closed the connection) 2014-12-11T06:25:27Z Saigut joined #lisp 2014-12-11T06:30:12Z Saigut quit (Remote host closed the connection) 2014-12-11T06:30:26Z Saigut joined #lisp 2014-12-11T06:35:13Z Saigut quit (Remote host closed the connection) 2014-12-11T06:35:26Z Saigut joined #lisp 2014-12-11T06:35:39Z zRecursive left #lisp 2014-12-11T06:37:35Z leo2007 quit (Quit: rcirc on GNU Emacs 25.0.50.1) 2014-12-11T06:40:13Z Saigut quit (Remote host closed the connection) 2014-12-11T06:40:28Z Saigut joined #lisp 2014-12-11T06:44:58Z Harag joined #lisp 2014-12-11T06:45:13Z Saigut quit (Remote host closed the connection) 2014-12-11T06:45:26Z Saigut joined #lisp 2014-12-11T06:46:19Z pt1 joined #lisp 2014-12-11T06:49:17Z pt1 quit (Remote host closed the connection) 2014-12-11T06:50:12Z Saigut quit (Remote host closed the connection) 2014-12-11T06:50:26Z Saigut joined #lisp 2014-12-11T06:50:40Z chu quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2014-12-11T06:55:12Z Saigut quit (Remote host closed the connection) 2014-12-11T06:55:23Z scottj quit (Quit: leaving) 2014-12-11T06:55:26Z Saigut joined #lisp 2014-12-11T06:58:10Z Harag quit (Remote host closed the connection) 2014-12-11T06:58:32Z beach left #lisp 2014-12-11T07:00:12Z Saigut quit (Remote host closed the connection) 2014-12-11T07:00:27Z Saigut joined #lisp 2014-12-11T07:00:46Z zRecursive joined #lisp 2014-12-11T07:02:55Z z0d quit (*.net *.split) 2014-12-11T07:04:22Z mrSpec joined #lisp 2014-12-11T07:05:13Z Saigut quit (Remote host closed the connection) 2014-12-11T07:05:26Z Saigut joined #lisp 2014-12-11T07:05:37Z zRecursive quit (Remote host closed the connection) 2014-12-11T07:08:07Z z0d joined #lisp 2014-12-11T07:08:57Z jusss quit (Read error: Connection reset by peer) 2014-12-11T07:09:19Z kcj joined #lisp 2014-12-11T07:09:37Z jusss joined #lisp 2014-12-11T07:10:13Z Saigut quit (Remote host closed the connection) 2014-12-11T07:10:27Z Saigut joined #lisp 2014-12-11T07:14:15Z stassats joined #lisp 2014-12-11T07:14:51Z wg1024 joined #lisp 2014-12-11T07:15:12Z Saigut quit (Remote host closed the connection) 2014-12-11T07:15:25Z Saigut joined #lisp 2014-12-11T07:15:38Z OTS joined #lisp 2014-12-11T07:16:46Z spacebat joined #lisp 2014-12-11T07:17:28Z DrCode joined #lisp 2014-12-11T07:19:17Z jusss quit (Ping timeout: 260 seconds) 2014-12-11T07:20:12Z Saigut quit (Remote host closed the connection) 2014-12-11T07:20:28Z Saigut joined #lisp 2014-12-11T07:20:38Z arenz joined #lisp 2014-12-11T07:20:44Z wg1024 quit (Quit: wg1024) 2014-12-11T07:22:04Z isis_ joined #lisp 2014-12-11T07:22:51Z yenda joined #lisp 2014-12-11T07:25:13Z Saigut quit (Remote host closed the connection) 2014-12-11T07:25:26Z Saigut joined #lisp 2014-12-11T07:30:13Z Saigut quit (Remote host closed the connection) 2014-12-11T07:30:27Z Saigut joined #lisp 2014-12-11T07:31:19Z OTS quit (Remote host closed the connection) 2014-12-11T07:33:41Z sdemarre joined #lisp 2014-12-11T07:34:15Z pt1 joined #lisp 2014-12-11T07:34:59Z edgar-rft joined #lisp 2014-12-11T07:35:12Z Saigut quit (Remote host closed the connection) 2014-12-11T07:35:26Z Saigut joined #lisp 2014-12-11T07:37:21Z mvilleneuve joined #lisp 2014-12-11T07:37:57Z Harag joined #lisp 2014-12-11T07:40:12Z Saigut quit (Remote host closed the connection) 2014-12-11T07:40:28Z Saigut joined #lisp 2014-12-11T07:45:12Z Saigut quit (Remote host closed the connection) 2014-12-11T07:45:26Z Saigut joined #lisp 2014-12-11T07:47:37Z ThePhoeron quit (Ping timeout: 240 seconds) 2014-12-11T07:50:05Z codeburg quit (Ping timeout: 250 seconds) 2014-12-11T07:50:13Z Saigut quit (Remote host closed the connection) 2014-12-11T07:50:27Z Saigut joined #lisp 2014-12-11T07:50:36Z spacebat quit (Ping timeout: 250 seconds) 2014-12-11T07:50:57Z DrCode quit (Ping timeout: 250 seconds) 2014-12-11T07:52:10Z goldenlight quit (Quit: Lost terminal) 2014-12-11T07:52:46Z ThePhoeron joined #lisp 2014-12-11T07:53:39Z finnrobi quit (Ping timeout: 252 seconds) 2014-12-11T07:55:13Z Saigut quit (Remote host closed the connection) 2014-12-11T07:55:22Z finnrobi joined #lisp 2014-12-11T07:55:26Z Saigut joined #lisp 2014-12-11T07:58:16Z OTS joined #lisp 2014-12-11T07:58:48Z resttime quit (Quit: resttime) 2014-12-11T08:00:13Z Saigut quit (Remote host closed the connection) 2014-12-11T08:00:23Z munksgaard joined #lisp 2014-12-11T08:00:28Z Saigut joined #lisp 2014-12-11T08:03:19Z przl joined #lisp 2014-12-11T08:05:12Z Saigut quit (Remote host closed the connection) 2014-12-11T08:05:26Z Saigut joined #lisp 2014-12-11T08:05:59Z seg quit (Quit: Bye.) 2014-12-11T08:06:01Z DrCode joined #lisp 2014-12-11T08:07:47Z OTS quit (Remote host closed the connection) 2014-12-11T08:08:06Z OTS joined #lisp 2014-12-11T08:08:14Z shka joined #lisp 2014-12-11T08:08:25Z shka: good morning gentelmans 2014-12-11T08:09:13Z theos quit (Disconnected by services) 2014-12-11T08:09:38Z theos joined #lisp 2014-12-11T08:10:12Z Saigut quit (Remote host closed the connection) 2014-12-11T08:10:26Z Saigut joined #lisp 2014-12-11T08:10:31Z seg joined #lisp 2014-12-11T08:15:13Z Saigut quit (Remote host closed the connection) 2014-12-11T08:15:26Z Saigut joined #lisp 2014-12-11T08:16:32Z Beetny joined #lisp 2014-12-11T08:18:55Z gmcastil joined #lisp 2014-12-11T08:19:28Z H4ns: you may consider that not everyone is a gentleman in this channel and adjust your greeting accordingly. 2014-12-11T08:20:13Z Saigut quit (Remote host closed the connection) 2014-12-11T08:20:28Z Saigut joined #lisp 2014-12-11T08:23:49Z ghard quit (Quit: Leaving) 2014-12-11T08:25:12Z Saigut quit (Remote host closed the connection) 2014-12-11T08:25:26Z Saigut joined #lisp 2014-12-11T08:25:29Z shka: H4ns: vaild point 2014-12-11T08:25:43Z shka: so: good morning fellow lispers :-) 2014-12-11T08:26:14Z H4ns: good morning! 2014-12-11T08:27:17Z OTS quit (Remote host closed the connection) 2014-12-11T08:27:33Z codeburg joined #lisp 2014-12-11T08:27:34Z OTS joined #lisp 2014-12-11T08:28:02Z przl quit (Ping timeout: 256 seconds) 2014-12-11T08:28:15Z vinleod joined #lisp 2014-12-11T08:28:41Z pinupgeek joined #lisp 2014-12-11T08:30:03Z ghard joined #lisp 2014-12-11T08:30:12Z Saigut quit (Remote host closed the connection) 2014-12-11T08:30:20Z kapil__ joined #lisp 2014-12-11T08:30:25Z Saigut joined #lisp 2014-12-11T08:31:09Z OTS quit (Remote host closed the connection) 2014-12-11T08:31:18Z pranavrc quit (Remote host closed the connection) 2014-12-11T08:32:24Z pranavrc joined #lisp 2014-12-11T08:34:18Z Karl_Dscc joined #lisp 2014-12-11T08:35:12Z Saigut quit (Remote host closed the connection) 2014-12-11T08:35:20Z loke: hello 2014-12-11T08:35:23Z defaultxr quit (Quit: gnight) 2014-12-11T08:35:26Z Saigut joined #lisp 2014-12-11T08:37:00Z pranavrc quit (Ping timeout: 265 seconds) 2014-12-11T08:37:17Z munksgaard quit (Ping timeout: 252 seconds) 2014-12-11T08:38:21Z moei quit (Quit: Leaving...) 2014-12-11T08:38:37Z ASau` joined #lisp 2014-12-11T08:40:12Z Saigut quit (Remote host closed the connection) 2014-12-11T08:40:27Z Saigut joined #lisp 2014-12-11T08:40:29Z kushal joined #lisp 2014-12-11T08:41:44Z ASau quit (Ping timeout: 244 seconds) 2014-12-11T08:41:50Z schjetne: ferada: https://github.clom/gschjetne/eclastic 2014-12-11T08:42:09Z schjetne: I'm still experimenting, so nothing has been decided yet 2014-12-11T08:43:12Z psy_ joined #lisp 2014-12-11T08:44:10Z Lowl3v3l joined #lisp 2014-12-11T08:45:13Z Saigut quit (Remote host closed the connection) 2014-12-11T08:45:27Z Saigut joined #lisp 2014-12-11T08:45:28Z petrutrimbitas joined #lisp 2014-12-11T08:48:19Z znode joined #lisp 2014-12-11T08:48:58Z milosn quit (Ping timeout: 244 seconds) 2014-12-11T08:50:13Z Saigut quit (Remote host closed the connection) 2014-12-11T08:50:27Z Saigut joined #lisp 2014-12-11T08:50:47Z Karl_Dscc quit (Remote host closed the connection) 2014-12-11T08:53:21Z zacharias quit (Ping timeout: 272 seconds) 2014-12-11T08:55:13Z Saigut quit (Remote host closed the connection) 2014-12-11T08:55:26Z Saigut joined #lisp 2014-12-11T08:58:12Z jdz: nice name 2014-12-11T08:58:40Z loke: .clom 2014-12-11T08:59:06Z loke: esastic search? 2014-12-11T08:59:08Z loke: What is that? 2014-12-11T08:59:21Z OTS joined #lisp 2014-12-11T08:59:57Z loke: Is it related to Solr in any way? 2014-12-11T09:00:00Z loke: I did this: https://github.com/lokedhs/cl-solr 2014-12-11T09:00:12Z Saigut quit (Remote host closed the connection) 2014-12-11T09:00:30Z Saigut joined #lisp 2014-12-11T09:04:45Z milosn joined #lisp 2014-12-11T09:05:13Z Saigut quit (Remote host closed the connection) 2014-12-11T09:05:27Z Saigut joined #lisp 2014-12-11T09:05:32Z angavrilov joined #lisp 2014-12-11T09:06:04Z yenda quit (Ping timeout: 245 seconds) 2014-12-11T09:06:29Z munksgaard joined #lisp 2014-12-11T09:08:49Z OTS quit (Remote host closed the connection) 2014-12-11T09:09:29Z Cymew joined #lisp 2014-12-11T09:10:13Z Saigut quit (Remote host closed the connection) 2014-12-11T09:10:15Z Mon_Ouie quit (Quit: WeeChat 1.0.1) 2014-12-11T09:10:27Z Saigut joined #lisp 2014-12-11T09:10:41Z redeemed joined #lisp 2014-12-11T09:13:16Z kcj quit (Read error: Connection reset by peer) 2014-12-11T09:14:04Z frkout_ joined #lisp 2014-12-11T09:15:10Z schjetne: loke: Solr and Elasticsearch both use Apache Lucene 2014-12-11T09:15:13Z Saigut quit (Remote host closed the connection) 2014-12-11T09:15:27Z Saigut joined #lisp 2014-12-11T09:17:53Z frkout_ quit (Remote host closed the connection) 2014-12-11T09:18:01Z frkout quit (Ping timeout: 258 seconds) 2014-12-11T09:18:19Z frkout joined #lisp 2014-12-11T09:18:55Z DrCode quit (Ping timeout: 250 seconds) 2014-12-11T09:19:54Z wg1024 joined #lisp 2014-12-11T09:20:12Z Saigut quit (Remote host closed the connection) 2014-12-11T09:20:28Z Saigut joined #lisp 2014-12-11T09:20:49Z DrCode joined #lisp 2014-12-11T09:24:52Z yenda joined #lisp 2014-12-11T09:25:13Z Saigut quit (Remote host closed the connection) 2014-12-11T09:25:27Z Saigut joined #lisp 2014-12-11T09:25:29Z gavilancomun joined #lisp 2014-12-11T09:25:44Z shortCircuit__ joined #lisp 2014-12-11T09:25:45Z wg1024 quit (Quit: wg1024) 2014-12-11T09:30:10Z billstclair quit (Ping timeout: 265 seconds) 2014-12-11T09:30:13Z Saigut quit (Remote host closed the connection) 2014-12-11T09:30:27Z Saigut joined #lisp 2014-12-11T09:32:11Z petrutrimbitas quit (Quit: petrutrimbitas) 2014-12-11T09:33:02Z pranavrc joined #lisp 2014-12-11T09:34:11Z Saigut_ joined #lisp 2014-12-11T09:34:31Z DrCode quit (Ping timeout: 250 seconds) 2014-12-11T09:34:42Z Karl_Dscc joined #lisp 2014-12-11T09:35:13Z stassats quit (Ping timeout: 255 seconds) 2014-12-11T09:35:13Z Saigut quit (Remote host closed the connection) 2014-12-11T09:35:13Z Saigut_ quit (Remote host closed the connection) 2014-12-11T09:35:27Z Saigut joined #lisp 2014-12-11T09:35:36Z ASau` is now known as ASau 2014-12-11T09:37:38Z pranavrc quit (Ping timeout: 250 seconds) 2014-12-11T09:38:26Z Saigut_ joined #lisp 2014-12-11T09:38:33Z DrCode joined #lisp 2014-12-11T09:40:12Z Saigut_ quit (Remote host closed the connection) 2014-12-11T09:40:12Z Saigut quit (Remote host closed the connection) 2014-12-11T09:40:26Z Saigut joined #lisp 2014-12-11T09:41:09Z pppp2 joined #lisp 2014-12-11T09:41:32Z fridim_ joined #lisp 2014-12-11T09:43:34Z pranavrc joined #lisp 2014-12-11T09:45:12Z Saigut quit (Remote host closed the connection) 2014-12-11T09:45:26Z Saigut joined #lisp 2014-12-11T09:48:32Z orivej joined #lisp 2014-12-11T09:50:13Z Saigut quit (Remote host closed the connection) 2014-12-11T09:50:26Z Saigut joined #lisp 2014-12-11T09:51:12Z przl joined #lisp 2014-12-11T09:55:13Z Saigut quit (Remote host closed the connection) 2014-12-11T09:55:29Z Saigut joined #lisp 2014-12-11T09:57:22Z zacharias joined #lisp 2014-12-11T09:58:11Z _zxq9_ joined #lisp 2014-12-11T10:00:13Z Saigut quit (Remote host closed the connection) 2014-12-11T10:00:27Z Saigut joined #lisp 2014-12-11T10:02:50Z wg1024 joined #lisp 2014-12-11T10:03:49Z lifenoodles quit (Ping timeout: 252 seconds) 2014-12-11T10:04:20Z moei joined #lisp 2014-12-11T10:05:12Z Saigut quit (Remote host closed the connection) 2014-12-11T10:05:17Z cmatei quit (Ping timeout: 252 seconds) 2014-12-11T10:05:32Z Saigut joined #lisp 2014-12-11T10:08:03Z corni joined #lisp 2014-12-11T10:08:42Z cmatei joined #lisp 2014-12-11T10:10:11Z lifenoodles joined #lisp 2014-12-11T10:10:12Z Saigut quit (Remote host closed the connection) 2014-12-11T10:10:28Z Saigut joined #lisp 2014-12-11T10:12:29Z orivej quit (Ping timeout: 264 seconds) 2014-12-11T10:13:14Z Saigut_ joined #lisp 2014-12-11T10:14:26Z wg1024 quit (Quit: wg1024) 2014-12-11T10:14:52Z Saigut quit (Ping timeout: 245 seconds) 2014-12-11T10:15:12Z Saigut_ quit (Remote host closed the connection) 2014-12-11T10:15:35Z Saigut joined #lisp 2014-12-11T10:16:59Z Harag quit (Ping timeout: 250 seconds) 2014-12-11T10:19:07Z Harag joined #lisp 2014-12-11T10:20:12Z Saigut quit (Remote host closed the connection) 2014-12-11T10:20:35Z Saigut joined #lisp 2014-12-11T10:23:34Z Harag quit (Ping timeout: 250 seconds) 2014-12-11T10:25:01Z moei quit (Read error: Connection reset by peer) 2014-12-11T10:25:13Z Saigut quit (Remote host closed the connection) 2014-12-11T10:25:27Z pinupgeek quit (Quit: pinupgeek) 2014-12-11T10:25:34Z Saigut joined #lisp 2014-12-11T10:25:36Z moei joined #lisp 2014-12-11T10:29:58Z nee joined #lisp 2014-12-11T10:30:13Z Saigut quit (Remote host closed the connection) 2014-12-11T10:30:46Z Saigut joined #lisp 2014-12-11T10:31:19Z _5kg quit (Ping timeout: 252 seconds) 2014-12-11T10:32:31Z Kabaka quit (Ping timeout: 244 seconds) 2014-12-11T10:34:30Z spacebat joined #lisp 2014-12-11T10:35:13Z Saigut quit (Remote host closed the connection) 2014-12-11T10:35:16Z znode quit (Ping timeout: 250 seconds) 2014-12-11T10:35:19Z _zxq9_ quit (Quit: Konversation terminated!) 2014-12-11T10:35:31Z Saigut joined #lisp 2014-12-11T10:39:29Z corni quit (Ping timeout: 260 seconds) 2014-12-11T10:40:12Z Saigut quit (Remote host closed the connection) 2014-12-11T10:40:24Z yenda quit (Quit: WeeChat 1.0.1) 2014-12-11T10:40:26Z Saigut joined #lisp 2014-12-11T10:40:38Z yenda joined #lisp 2014-12-11T10:40:48Z przl_ joined #lisp 2014-12-11T10:40:56Z przl_ quit (Client Quit) 2014-12-11T10:41:51Z przl quit (Quit: leaving) 2014-12-11T10:42:30Z przl joined #lisp 2014-12-11T10:45:12Z Saigut quit (Remote host closed the connection) 2014-12-11T10:45:30Z Saigut joined #lisp 2014-12-11T10:48:01Z krrrcks quit (Ping timeout: 244 seconds) 2014-12-11T10:49:41Z Kabaka joined #lisp 2014-12-11T10:50:12Z Saigut quit (Remote host closed the connection) 2014-12-11T10:50:18Z robot-beethoven quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2014-12-11T10:50:19Z krrrcks joined #lisp 2014-12-11T10:50:40Z Saigut joined #lisp 2014-12-11T10:51:29Z urandom__ joined #lisp 2014-12-11T10:53:07Z Vutral quit (Ping timeout: 264 seconds) 2014-12-11T10:55:09Z mingvs quit (Quit: leaving) 2014-12-11T10:55:12Z Saigut quit (Remote host closed the connection) 2014-12-11T10:55:39Z Saigut joined #lisp 2014-12-11T10:56:00Z yenda: is anyone using Movitz ? 2014-12-11T10:58:33Z pranavrc quit (Remote host closed the connection) 2014-12-11T11:00:13Z Saigut quit (Remote host closed the connection) 2014-12-11T11:00:17Z spacebat quit (Ping timeout: 252 seconds) 2014-12-11T11:00:27Z Saigut joined #lisp 2014-12-11T11:01:11Z DrCode quit (Ping timeout: 250 seconds) 2014-12-11T11:02:26Z pranavrc joined #lisp 2014-12-11T11:02:29Z mingvs joined #lisp 2014-12-11T11:02:37Z hiroakip joined #lisp 2014-12-11T11:04:01Z DrCode joined #lisp 2014-12-11T11:05:05Z Kabaka quit (Ping timeout: 250 seconds) 2014-12-11T11:05:11Z Saigut_ joined #lisp 2014-12-11T11:05:13Z Saigut_ quit (Remote host closed the connection) 2014-12-11T11:05:13Z Saigut quit (Remote host closed the connection) 2014-12-11T11:05:38Z Vutral joined #lisp 2014-12-11T11:05:43Z Saigut joined #lisp 2014-12-11T11:06:33Z lifenoodles quit (Ping timeout: 260 seconds) 2014-12-11T11:10:12Z Saigut quit (Remote host closed the connection) 2014-12-11T11:10:27Z Saigut joined #lisp 2014-12-11T11:12:46Z lifenoodles joined #lisp 2014-12-11T11:15:12Z Saigut quit (Remote host closed the connection) 2014-12-11T11:15:32Z Saigut joined #lisp 2014-12-11T11:16:44Z _5kg joined #lisp 2014-12-11T11:17:17Z isis_ quit (Ping timeout: 264 seconds) 2014-12-11T11:17:50Z Kabaka joined #lisp 2014-12-11T11:18:17Z adlai: drmeister: how about puttng the address in a #|comment|# ? 2014-12-11T11:18:31Z adlai: although depending on the part of slime getting confused, that might not help 2014-12-11T11:20:13Z Saigut quit (Remote host closed the connection) 2014-12-11T11:20:27Z Saigut joined #lisp 2014-12-11T11:22:51Z Lowl3v3l quit (Read error: Connection reset by peer) 2014-12-11T11:25:12Z Saigut quit (Remote host closed the connection) 2014-12-11T11:25:29Z Saigut joined #lisp 2014-12-11T11:25:58Z hitecnologys_ joined #lisp 2014-12-11T11:27:37Z hitecnologys quit (Ping timeout: 240 seconds) 2014-12-11T11:27:37Z hitecnologys_ is now known as hitecnologys 2014-12-11T11:27:53Z leo2007 joined #lisp 2014-12-11T11:28:17Z pppp2 quit (Read error: Connection reset by peer) 2014-12-11T11:30:12Z Saigut quit (Remote host closed the connection) 2014-12-11T11:30:27Z Saigut joined #lisp 2014-12-11T11:35:12Z Saigut quit (Remote host closed the connection) 2014-12-11T11:35:32Z Saigut joined #lisp 2014-12-11T11:37:07Z Shinmera joined #lisp 2014-12-11T11:40:12Z Saigut quit (Remote host closed the connection) 2014-12-11T11:40:29Z jusss` joined #lisp 2014-12-11T11:40:32Z Saigut joined #lisp 2014-12-11T11:41:47Z isis_ joined #lisp 2014-12-11T11:43:36Z przl quit (Ping timeout: 244 seconds) 2014-12-11T11:45:12Z Saigut quit (Remote host closed the connection) 2014-12-11T11:45:26Z Saigut joined #lisp 2014-12-11T11:46:55Z quazimodo quit (Ping timeout: 244 seconds) 2014-12-11T11:50:12Z Saigut quit (Remote host closed the connection) 2014-12-11T11:50:34Z Saigut joined #lisp 2014-12-11T11:50:38Z spacebat joined #lisp 2014-12-11T11:55:13Z Saigut quit (Remote host closed the connection) 2014-12-11T11:55:37Z Saigut joined #lisp 2014-12-11T11:57:50Z atgreen quit (Remote host closed the connection) 2014-12-11T11:58:23Z petrutrimbitas joined #lisp 2014-12-11T12:00:13Z Saigut quit (Remote host closed the connection) 2014-12-11T12:00:34Z Saigut joined #lisp 2014-12-11T12:02:41Z gravicappa joined #lisp 2014-12-11T12:05:06Z atgreen joined #lisp 2014-12-11T12:05:12Z Saigut quit (Remote host closed the connection) 2014-12-11T12:05:27Z Saigut joined #lisp 2014-12-11T12:07:37Z spacebat quit (Ping timeout: 240 seconds) 2014-12-11T12:07:47Z ehu joined #lisp 2014-12-11T12:09:34Z juanlas joined #lisp 2014-12-11T12:10:12Z Saigut quit (Remote host closed the connection) 2014-12-11T12:10:32Z Saigut joined #lisp 2014-12-11T12:12:23Z gregburd__ joined #lisp 2014-12-11T12:12:37Z |3b| quit (Read error: Connection reset by peer) 2014-12-11T12:12:37Z gregburd_ quit (Ping timeout: 258 seconds) 2014-12-11T12:12:42Z gregburd__ is now known as gregburd_ 2014-12-11T12:13:22Z |3b| joined #lisp 2014-12-11T12:13:58Z yeticry quit (Ping timeout: 258 seconds) 2014-12-11T12:14:17Z ehu quit (Ping timeout: 240 seconds) 2014-12-11T12:14:58Z yeticry joined #lisp 2014-12-11T12:15:12Z Saigut quit (Remote host closed the connection) 2014-12-11T12:15:26Z ehu joined #lisp 2014-12-11T12:15:34Z Saigut joined #lisp 2014-12-11T12:15:40Z eMBee is now known as no-one 2014-12-11T12:15:58Z no-one is now known as eMBee 2014-12-11T12:19:37Z ehu quit (Ping timeout: 240 seconds) 2014-12-11T12:19:55Z c53100 joined #lisp 2014-12-11T12:20:13Z Saigut quit (Remote host closed the connection) 2014-12-11T12:20:40Z Saigut joined #lisp 2014-12-11T12:24:15Z gmcastil quit (Ping timeout: 252 seconds) 2014-12-11T12:24:15Z cyphase_ joined #lisp 2014-12-11T12:24:23Z cyphase quit (Ping timeout: 250 seconds) 2014-12-11T12:25:12Z Saigut quit (Remote host closed the connection) 2014-12-11T12:25:46Z Saigut joined #lisp 2014-12-11T12:26:45Z egp_ joined #lisp 2014-12-11T12:26:55Z egp_ quit (Remote host closed the connection) 2014-12-11T12:29:21Z Cymew: yenda: Define use 2014-12-11T12:30:13Z Saigut quit (Remote host closed the connection) 2014-12-11T12:30:28Z Saigut joined #lisp 2014-12-11T12:33:28Z eudoxia joined #lisp 2014-12-11T12:34:27Z juanlas quit (Quit: juanlas) 2014-12-11T12:35:13Z Saigut quit (Remote host closed the connection) 2014-12-11T12:35:34Z Saigut joined #lisp 2014-12-11T12:35:50Z quazimodo joined #lisp 2014-12-11T12:40:07Z przl joined #lisp 2014-12-11T12:40:13Z Saigut quit (Remote host closed the connection) 2014-12-11T12:40:30Z Saigut joined #lisp 2014-12-11T12:41:17Z psy_ quit (Ping timeout: 260 seconds) 2014-12-11T12:44:35Z pranavrc_ joined #lisp 2014-12-11T12:44:45Z przl quit (Ping timeout: 250 seconds) 2014-12-11T12:44:51Z psy_ joined #lisp 2014-12-11T12:45:13Z Saigut quit (Remote host closed the connection) 2014-12-11T12:45:34Z Saigut joined #lisp 2014-12-11T12:46:50Z przl joined #lisp 2014-12-11T12:47:02Z kcj joined #lisp 2014-12-11T12:48:49Z edgar-rft quit (Ping timeout: 265 seconds) 2014-12-11T12:48:57Z pranavrc quit (Ping timeout: 272 seconds) 2014-12-11T12:50:13Z Saigut quit (Remote host closed the connection) 2014-12-11T12:50:27Z Saigut joined #lisp 2014-12-11T12:50:40Z spacebat joined #lisp 2014-12-11T12:52:07Z przl quit (Ping timeout: 272 seconds) 2014-12-11T12:52:32Z c53100 quit (Ping timeout: 244 seconds) 2014-12-11T12:52:59Z edgar-rft joined #lisp 2014-12-11T12:53:39Z rtra quit (Ping timeout: 265 seconds) 2014-12-11T12:53:53Z justinmcp_ quit (Read error: Connection reset by peer) 2014-12-11T12:54:17Z stepnem joined #lisp 2014-12-11T12:54:21Z justinmcp joined #lisp 2014-12-11T12:54:37Z Beetny quit (Ping timeout: 265 seconds) 2014-12-11T12:55:13Z Saigut quit (Remote host closed the connection) 2014-12-11T12:55:41Z Saigut joined #lisp 2014-12-11T12:56:59Z stassats joined #lisp 2014-12-11T13:00:13Z Saigut quit (Remote host closed the connection) 2014-12-11T13:00:39Z Saigut joined #lisp 2014-12-11T13:01:17Z kcj quit (Ping timeout: 240 seconds) 2014-12-11T13:01:19Z rtra joined #lisp 2014-12-11T13:02:39Z hiyosi joined #lisp 2014-12-11T13:04:57Z spacebat quit (Ping timeout: 240 seconds) 2014-12-11T13:05:12Z Saigut quit (Remote host closed the connection) 2014-12-11T13:05:28Z petrutrimbitas quit (Quit: petrutrimbitas) 2014-12-11T13:05:34Z Saigut joined #lisp 2014-12-11T13:07:22Z atgreen quit (Ping timeout: 250 seconds) 2014-12-11T13:08:09Z rtra quit (Ping timeout: 265 seconds) 2014-12-11T13:09:08Z thawes joined #lisp 2014-12-11T13:09:35Z stassats quit (Remote host closed the connection) 2014-12-11T13:09:40Z TDog quit (Ping timeout: 256 seconds) 2014-12-11T13:10:13Z Saigut quit (Remote host closed the connection) 2014-12-11T13:10:40Z Saigut joined #lisp 2014-12-11T13:11:12Z isis__ joined #lisp 2014-12-11T13:11:58Z przl joined #lisp 2014-12-11T13:13:19Z rtra joined #lisp 2014-12-11T13:13:36Z petrutrimbitas joined #lisp 2014-12-11T13:13:44Z Longlius quit (Remote host closed the connection) 2014-12-11T13:13:46Z isis_ quit (Ping timeout: 258 seconds) 2014-12-11T13:13:57Z pranavrc_ quit 2014-12-11T13:15:13Z Saigut quit (Remote host closed the connection) 2014-12-11T13:15:33Z Saigut joined #lisp 2014-12-11T13:16:55Z thawes quit (Remote host closed the connection) 2014-12-11T13:18:09Z hiroakip quit (Ping timeout: 244 seconds) 2014-12-11T13:18:56Z thawes joined #lisp 2014-12-11T13:19:56Z stassats joined #lisp 2014-12-11T13:20:13Z Saigut quit (Remote host closed the connection) 2014-12-11T13:20:27Z Saigut joined #lisp 2014-12-11T13:21:54Z przl_ joined #lisp 2014-12-11T13:24:30Z przl quit (Ping timeout: 258 seconds) 2014-12-11T13:25:13Z Saigut quit (Remote host closed the connection) 2014-12-11T13:25:35Z Saigut joined #lisp 2014-12-11T13:28:59Z drl joined #lisp 2014-12-11T13:30:13Z Saigut quit (Remote host closed the connection) 2014-12-11T13:30:23Z isis__ quit (Ping timeout: 265 seconds) 2014-12-11T13:30:30Z Saigut joined #lisp 2014-12-11T13:31:11Z BitPuffin joined #lisp 2014-12-11T13:31:28Z ferada: schjetne: nice; the system and package name should be the same though, why not eclastic for the package as well? 2014-12-11T13:31:55Z przl_ quit (Ping timeout: 255 seconds) 2014-12-11T13:32:00Z JuanDaugherty quit (Remote host closed the connection) 2014-12-11T13:32:36Z schjetne: ferada: yeah, I'll change that, it occured to me that it would be a bit confusing. 2014-12-11T13:33:11Z hiroakip joined #lisp 2014-12-11T13:34:25Z isis_ joined #lisp 2014-12-11T13:35:13Z Saigut quit (Remote host closed the connection) 2014-12-11T13:35:33Z Saigut joined #lisp 2014-12-11T13:36:32Z schjetne: ferada: for the time being it will grow in features as I need them, but I plan to set up a to do list for the various DSLs 2014-12-11T13:36:51Z petrutrimbitas quit (Quit: petrutrimbitas) 2014-12-11T13:38:05Z theos quit (Excess Flood) 2014-12-11T13:39:12Z theos joined #lisp 2014-12-11T13:40:13Z Saigut quit (Remote host closed the connection) 2014-12-11T13:40:32Z Saigut joined #lisp 2014-12-11T13:40:35Z sheilong joined #lisp 2014-12-11T13:44:01Z ferada: schjetne: cool, just tested the connection, worked on first try 2014-12-11T13:44:34Z ferada: schjetne: the with-object-element* in encode-slots for need a (query this) argument as well though 2014-12-11T13:44:48Z octophore joined #lisp 2014-12-11T13:45:07Z ferada: i'll switch to query if i have anything more 2014-12-11T13:45:13Z Saigut quit (Remote host closed the connection) 2014-12-11T13:45:35Z Saigut joined #lisp 2014-12-11T13:50:03Z petrutrimbitas joined #lisp 2014-12-11T13:50:12Z Saigut quit (Remote host closed the connection) 2014-12-11T13:50:31Z Saigut joined #lisp 2014-12-11T13:52:00Z schjetne: ferada: I noticed that when I recompiled after changing names. I'll push that shortly 2014-12-11T13:52:58Z Saigut_ joined #lisp 2014-12-11T13:55:03Z Saigut quit (Ping timeout: 244 seconds) 2014-12-11T13:55:04Z petrutrimbitas quit (Quit: petrutrimbitas) 2014-12-11T13:55:13Z Saigut_ quit (Remote host closed the connection) 2014-12-11T13:55:31Z kushal quit (Quit: Leaving) 2014-12-11T13:55:41Z Saigut joined #lisp 2014-12-11T13:57:15Z Saigut_ joined #lisp 2014-12-11T13:57:59Z Denommus joined #lisp 2014-12-11T13:58:06Z tadni quit (Remote host closed the connection) 2014-12-11T13:58:48Z tadni joined #lisp 2014-12-11T14:00:13Z Saigut_ quit (Remote host closed the connection) 2014-12-11T14:00:13Z Saigut quit (Remote host closed the connection) 2014-12-11T14:00:40Z Saigut joined #lisp 2014-12-11T14:03:45Z oleo joined #lisp 2014-12-11T14:03:53Z Saigut quit (Remote host closed the connection) 2014-12-11T14:04:07Z murftown joined #lisp 2014-12-11T14:04:17Z Saigut joined #lisp 2014-12-11T14:05:56Z murftown quit (Client Quit) 2014-12-11T14:06:26Z ack006 joined #lisp 2014-12-11T14:07:51Z vaporatorius joined #lisp 2014-12-11T14:10:35Z H4ns: did the behavior of fill-paragraph in slime change somehow? it seems not to work for me anymore 2014-12-11T14:10:51Z yenda quit (Ping timeout: 244 seconds) 2014-12-11T14:11:55Z towodo joined #lisp 2014-12-11T14:13:15Z EvW joined #lisp 2014-12-11T14:14:08Z yenda joined #lisp 2014-12-11T14:14:32Z murftown joined #lisp 2014-12-11T14:14:39Z stassats: fill-paragraph is not a part of slime 2014-12-11T14:14:57Z H4ns: ok 2014-12-11T14:15:13Z petrutrimbitas joined #lisp 2014-12-11T14:15:19Z stassats: did you update to emacs 24.4 or something? 2014-12-11T14:15:28Z H4ns: 24.3.1 2014-12-11T14:15:40Z petrutrimbitas quit (Client Quit) 2014-12-11T14:16:22Z stassats: ah, you did start using paredit, didn't you? it binds M-q for its own purposes 2014-12-11T14:16:38Z attila_lendvai joined #lisp 2014-12-11T14:16:38Z attila_lendvai quit (Changing host) 2014-12-11T14:16:38Z attila_lendvai joined #lisp 2014-12-11T14:16:56Z dim: M-q runs the command paredit-reindent-defun 2014-12-11T14:16:58Z juanlas joined #lisp 2014-12-11T14:17:09Z H4ns: stassats: i don´t have paredit in that buffer, and M-q tries to run fill-paragraph here 2014-12-11T14:17:25Z H4ns: thanks anyway, i'll try to update emacs 2014-12-11T14:17:37Z stassats: that wasn't my suggestion 2014-12-11T14:17:43Z Xach joined #lisp 2014-12-11T14:17:54Z stassats: 24.4 just broke a lot of things for me 2014-12-11T14:17:55Z H4ns: i did not blame you. but do you have a suggestion? 2014-12-11T14:24:49Z k-dawg joined #lisp 2014-12-11T14:28:23Z Cymew quit (Ping timeout: 265 seconds) 2014-12-11T14:28:36Z shka quit (Read error: Connection reset by peer) 2014-12-11T14:32:36Z shortCircuit__ quit (Remote host closed the connection) 2014-12-11T14:33:47Z jusss` quit (Read error: Connection reset by peer) 2014-12-11T14:38:52Z Ethan- quit (Ping timeout: 258 seconds) 2014-12-11T14:40:46Z pjb: yenda: Oh, I see a hacker over there who's booted Movitz. He's typing (+ 1 2)! It works! He's typing (defun … no, wait, wait, aw! He shat it down and he's reverting to his javascript job. :-( 2014-12-11T14:41:45Z fragamus quit (Ping timeout: 250 seconds) 2014-12-11T14:42:56Z przl joined #lisp 2014-12-11T14:44:45Z gigetoo joined #lisp 2014-12-11T14:44:48Z Xach: loke: my latest blog post is inspired in part by you! 2014-12-11T14:45:42Z pjb: Blog inspiration! 2014-12-11T14:51:16Z yenda: I have been reading things on lisp for a day now and I think my head is close to explosion 2014-12-11T14:51:17Z thawes quit (Ping timeout: 252 seconds) 2014-12-11T14:51:47Z Xach: yenda: a cheap styrofoam cooler filled with ice or simply cold water can help 2014-12-11T14:51:53Z Shinmera: Less reading, more coding. 2014-12-11T14:52:33Z Shinmera: Writing stuff tends to empty my mind 2014-12-11T14:52:52Z thawes joined #lisp 2014-12-11T14:53:13Z Xach: It helps cure me of the notion of "Yeah, I understood everything I just read" 2014-12-11T14:53:21Z Shinmera: That too 2014-12-11T14:53:45Z yenda: I have no idea what to code in lisp :D 2014-12-11T14:54:08Z Shinmera: Whatever your imagination brings you. ~☆ 2014-12-11T14:55:05Z yenda: but it is far more interesting to do so than doing the oracle db labwork I am suppose to do 2014-12-11T14:55:37Z Xach: Maybe you can write a lisp program to do your oracle lab work. 2014-12-11T14:55:54Z yenda: that's what I said to the other students 2014-12-11T14:56:20Z yenda: that I was feeling that lisp was powerfull enough to do it for me so why bother 2014-12-11T14:56:48Z Xach: Well, you have to actually do it, too. 2014-12-11T14:57:13Z pjb: yenda: start with a hangman game. 2014-12-11T14:57:27Z pjb: then write a hangman player. 2014-12-11T14:58:55Z yenda: pjb: good idea, I will check a little syntax and start it 2014-12-11T14:59:05Z Shinmera: Or go through PCL if you haven't yet. 2014-12-11T14:59:32Z dim: do your next code in CL, whatever that is 2014-12-11T14:59:43Z pjb: yenda: Read the word list from /usr/share/dict/words so you get to do file I/O ;-) 2014-12-11T15:00:35Z atgreen joined #lisp 2014-12-11T15:01:49Z gravicappa quit (Remote host closed the connection) 2014-12-11T15:02:29Z yenda: pjb: I only have cracklib there, don't even know where it's coming from 2014-12-11T15:02:29Z yenda: but it'll do the trick it has words 2014-12-11T15:02:48Z pjb: But it also has non-legit words, for passwords. 2014-12-11T15:03:55Z pjb: It comes from dictionaries-common on debian. 2014-12-11T15:06:53Z gingerale joined #lisp 2014-12-11T15:10:18Z JuanDaugherty joined #lisp 2014-12-11T15:10:36Z eudoxia quit (Quit: Leaving) 2014-12-11T15:14:21Z billstclair joined #lisp 2014-12-11T15:15:14Z isis_ quit (Ping timeout: 245 seconds) 2014-12-11T15:15:57Z qbit quit (Quit: leaving) 2014-12-11T15:16:17Z thawes quit (Ping timeout: 240 seconds) 2014-12-11T15:17:13Z yenda quit (Read error: Connection reset by peer) 2014-12-11T15:18:36Z thawes joined #lisp 2014-12-11T15:18:50Z yenda joined #lisp 2014-12-11T15:19:05Z sol__ quit (Quit: Leaving) 2014-12-11T15:25:27Z fortitude joined #lisp 2014-12-11T15:26:55Z towodo_ joined #lisp 2014-12-11T15:28:17Z towodo quit (Ping timeout: 240 seconds) 2014-12-11T15:28:17Z towodo_ is now known as towodo 2014-12-11T15:30:33Z ananda quit (Remote host closed the connection) 2014-12-11T15:42:19Z przl quit (Ping timeout: 245 seconds) 2014-12-11T15:49:01Z rtra quit (Ping timeout: 244 seconds) 2014-12-11T15:50:15Z murftown quit (Quit: murftown) 2014-12-11T15:50:19Z usrj joined #lisp 2014-12-11T15:54:11Z rtra joined #lisp 2014-12-11T15:55:19Z yenda: what do you guys use to program in lisp ? 2014-12-11T15:55:43Z Xach: yenda: I use emacs and slime 2014-12-11T15:56:00Z Xach: I use sbcl as the implementation most of the time. Works great on Linux and good enough for me on OS X. 2014-12-11T15:56:05Z dim: same things I would have done with another tool before I dove into cl 2014-12-11T15:56:06Z Xach: I also use Clozure CL 2014-12-11T15:56:37Z dim: currently, pgloader (loading data into PostgreSQL + fully unattended data migration from SQLite, MySQL, MSSQL and more) 2014-12-11T15:56:48Z dim: oh read the wrong way 2014-12-11T15:56:58Z dim: I read the question as about what do we program in licp 2014-12-11T15:57:05Z dim: break time, I guess 2014-12-11T15:57:18Z dim: this week is programming in C anyway :( 2014-12-11T15:57:29Z yenda: dim: that was still intersting anyway :) 2014-12-11T15:57:39Z dim: thanks ;-) 2014-12-11T15:57:50Z dim: so I use SBCL and SLIME mostly 2014-12-11T15:58:03Z yenda: Xach: I read about slime, i actually installed the plugin for vim and realized I needed to install emacs to use it 2014-12-11T15:59:00Z hardenedapple joined #lisp 2014-12-11T15:59:08Z yenda: an other dilemn :D 2014-12-11T16:00:06Z Xach: People use vim, and other editors too 2014-12-11T16:00:30Z Xach: I think emacs is the easiest, if you can get used to emacs. 2014-12-11T16:00:36Z Xach: But I don't think it's mandatory. 2014-12-11T16:01:20Z qbit joined #lisp 2014-12-11T16:03:24Z splittist: yenda: there are ways to slimerize vim, and ways to vi-erize emacs. But as Xach says, while emacs was grown with lisp in mind, there are many excellent lisp programmers who have used other tools. 2014-12-11T16:03:46Z thawes quit (Remote host closed the connection) 2014-12-11T16:03:48Z fortitude: Xach: I'm having some issues with a system that triggers sbcl's defconstant thing in buildapp 2014-12-11T16:03:51Z splittist: yenda: even a vanilla vi and cutting-and-pasting to and from a terminal can be productive for some. 2014-12-11T16:04:11Z fortitude: Xach: is there a recommended way to invoke a continue restart when loading systems? 2014-12-11T16:04:59Z Xach: fortitude: i think there's a recipe in the manual 2014-12-11T16:05:50Z Xach checks 2014-12-11T16:06:43Z pt1 quit (Ping timeout: 255 seconds) 2014-12-11T16:08:48Z przl joined #lisp 2014-12-11T16:08:53Z fortitude: Xach: I didn't see anything, but I hacked up an eval statement to do the load with asdf:oos and a handler 2014-12-11T16:12:32Z EvW quit (Quit: EvW) 2014-12-11T16:13:12Z przl quit (Ping timeout: 245 seconds) 2014-12-11T16:13:26Z yenda: splittist: I'm gonna give a try to a vimerized emacs :D can't give up the hjkl keys now 2014-12-11T16:13:37Z yenda: my entire system configuration is based on it :D 2014-12-11T16:15:08Z shka joined #lisp 2014-12-11T16:15:17Z shka: good evening fellow lispers 2014-12-11T16:16:38Z Xach: fortitude: it's not spelled out explicitly, but it does tell you the condition to handle. i guess that's not as simple. 2014-12-11T16:17:07Z fortitude: Xach: sorry, that was probably just poor reading comprehension 2014-12-11T16:17:23Z przl joined #lisp 2014-12-11T16:17:26Z fortitude: Xach: I may have found an issue trying to load sxql, though 2014-12-11T16:17:51Z fortitude: buildapp generates an error about an invalid call to iterate, but the system quickloads just fine 2014-12-11T16:19:33Z Xach: fortitude: does it quickload with :verbose t? 2014-12-11T16:19:55Z Xach: fortitude: can you paste the error? i'm intrigued 2014-12-11T16:20:04Z isis_ joined #lisp 2014-12-11T16:20:06Z fragamus joined #lisp 2014-12-11T16:20:58Z nee quit (Quit: Verlassend) 2014-12-11T16:20:59Z cmack joined #lisp 2014-12-11T16:21:22Z innertracks joined #lisp 2014-12-11T16:21:41Z PuercoPop: yenda: A friend uses this configuration to vimerized emacs https://github.com/syl20bnr/spacemacs 2014-12-11T16:22:03Z theseb joined #lisp 2014-12-11T16:22:06Z k-dawg quit (Quit: This computer has gone to sleep) 2014-12-11T16:22:44Z fortitude: Xach: it does quickload with :verbose t, and the error is http://paste.lisp.org/display/144657 2014-12-11T16:22:51Z cmack` joined #lisp 2014-12-11T16:23:07Z loke_ joined #lisp 2014-12-11T16:24:31Z drdanmaku joined #lisp 2014-12-11T16:24:49Z oudeis joined #lisp 2014-12-11T16:25:23Z Quadrescence joined #lisp 2014-12-11T16:25:49Z cmack quit (Ping timeout: 258 seconds) 2014-12-11T16:25:55Z nell joined #lisp 2014-12-11T16:26:04Z przl quit (Ping timeout: 255 seconds) 2014-12-11T16:26:04Z gravicappa joined #lisp 2014-12-11T16:26:23Z yenda: thanks PuercoPop, I'm going to give it a try later 2014-12-11T16:26:27Z Xach: fortitude: hmmmmm 2014-12-11T16:26:58Z shka: does metamodular has rss? 2014-12-11T16:27:08Z shka: wrong grammar 2014-12-11T16:27:25Z fortitude: Xach: I've tried clearing the cache, and I'm attempting to build buildapp from source instead of quicklisp, just in case that helps 2014-12-11T16:28:10Z nha joined #lisp 2014-12-11T16:28:12Z przl joined #lisp 2014-12-11T16:29:57Z zacharias quit (Ping timeout: 260 seconds) 2014-12-11T16:30:29Z Denommus` joined #lisp 2014-12-11T16:30:43Z fortitude: Xach: building from source didn't help 2014-12-11T16:31:04Z cmack` is now known as cmack 2014-12-11T16:31:26Z gavilancomun quit (Quit: ChatZilla 0.9.91 [Firefox 34.0/20141125180439]) 2014-12-11T16:31:29Z Xach: fortitude: what is your buildapp command-line? are you getting libraries of distinct vintages? 2014-12-11T16:32:16Z fortitude: just something like "buildapp --asdf-tree ~/quicklisp/dists/quicklisp/software --load-system sxql --entry (defun main ...) --output foo.exe 2014-12-11T16:32:33Z fortitude: the entry function is trivial, for testing purposes 2014-12-11T16:33:19Z Xach: fortitude: hmm!! i think you may want to try making a manifest file 2014-12-11T16:33:58Z Xach: fortitude: that is, fire up ql and (ql:write-asdf-manifest-file "manifest.txt") and buildapp --manifest-file manifest.txt 2014-12-11T16:34:09Z fortitude: Xach: I'll give that a try 2014-12-11T16:34:24Z Xach: fortitude: i think you are getting an old iterate 2014-12-11T16:34:35Z attila_lendvai quit (Quit: Leaving.) 2014-12-11T16:36:05Z fortitude: Xach: I definitely am, because the error says it's version 20130128, which is the oldest one I have 2014-12-11T16:36:21Z Xach: and a new everything-else 2014-12-11T16:36:39Z fortitude: Xach: yep, it load ok with the manifest 2014-12-11T16:36:42Z Xach: you might also have better results with (ql-dist:clean (ql-dist:dist "quicklisp")), which deletes all the old directories. 2014-12-11T16:36:56Z fortitude: Xach: although if you supply --manifest-file late in the args list, it won't use it 2014-12-11T16:37:01Z fortitude: which is a little surprising 2014-12-11T16:37:56Z towodo_ joined #lisp 2014-12-11T16:37:58Z Xach: fortitude: priority is determined by command-line order 2014-12-11T16:38:09Z cmack quit (Ping timeout: 245 seconds) 2014-12-11T16:38:20Z Xach: fortitude: so if you have asdf-tree, that tree takes precedence over what's found in the manifest 2014-12-11T16:38:27Z Xach: ...if the manifest comes later 2014-12-11T16:38:36Z fortitude: Xach: I hadn't considered precedence 2014-12-11T16:39:02Z innertracks quit (Remote host closed the connection) 2014-12-11T16:39:08Z cmack joined #lisp 2014-12-11T16:40:08Z towodo quit (Ping timeout: 250 seconds) 2014-12-11T16:40:08Z towodo_ is now known as towodo 2014-12-11T16:40:57Z murftown joined #lisp 2014-12-11T16:41:36Z Denommus quit (Ping timeout: 256 seconds) 2014-12-11T16:42:20Z qbit quit (Quit: leaving) 2014-12-11T16:42:29Z loke_ quit (Remote host closed the connection) 2014-12-11T16:43:16Z Denommus` quit (Quit: rebooting) 2014-12-11T16:43:25Z towodo quit (Quit: towodo) 2014-12-11T16:44:39Z qbit joined #lisp 2014-12-11T16:45:21Z redeemed quit (Quit: q) 2014-12-11T16:45:33Z linux_dream joined #lisp 2014-12-11T16:46:54Z innertracks joined #lisp 2014-12-11T16:48:26Z yeticry quit (Ping timeout: 258 seconds) 2014-12-11T16:49:49Z thawes joined #lisp 2014-12-11T16:50:26Z yeticry joined #lisp 2014-12-11T17:02:24Z EvW joined #lisp 2014-12-11T17:02:40Z hiroakip quit (Ping timeout: 250 seconds) 2014-12-11T17:03:42Z towodo joined #lisp 2014-12-11T17:10:30Z JokerDoom joined #lisp 2014-12-11T17:11:25Z Quadrescence quit (Quit: This computer has gone to sleep) 2014-12-11T17:11:27Z kapil__ quit (Quit: Connection closed for inactivity) 2014-12-11T17:12:58Z _JokerDoom quit (Ping timeout: 258 seconds) 2014-12-11T17:14:44Z BitPuffin quit (Remote host closed the connection) 2014-12-11T17:21:09Z bb010g quit (Quit: Connection closed for inactivity) 2014-12-11T17:22:18Z vinleod quit (Quit: ["Textual IRC Client: www.textualapp.com"]) 2014-12-11T17:24:40Z thawes quit (Ping timeout: 256 seconds) 2014-12-11T17:24:59Z thawes joined #lisp 2014-12-11T17:25:05Z przl quit (Ping timeout: 264 seconds) 2014-12-11T17:25:18Z milosn quit (Quit: Lost terminal) 2014-12-11T17:28:16Z BitPuffin joined #lisp 2014-12-11T17:29:57Z Karl_Dscc quit (Remote host closed the connection) 2014-12-11T17:29:58Z tharugrim quit (Ping timeout: 250 seconds) 2014-12-11T17:32:09Z tharugrim joined #lisp 2014-12-11T17:37:20Z juanlas quit (Quit: juanlas) 2014-12-11T17:39:50Z hiyosi quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2014-12-11T17:41:52Z linux_dream quit (Quit: Leaving) 2014-12-11T17:43:13Z goldenlight joined #lisp 2014-12-11T17:44:07Z Denommus joined #lisp 2014-12-11T17:46:26Z munksgaard quit (Ping timeout: 250 seconds) 2014-12-11T17:46:37Z usrj quit (Ping timeout: 272 seconds) 2014-12-11T17:47:04Z goldenlight: wow, did gigamonkeys go down with pyritb^y ? 2014-12-11T17:47:31Z goldenlight: take to the hills boys 2014-12-11T17:48:34Z goldenlight: oh... it came up, looks different now 2014-12-11T17:49:00Z goldenlight: but.... it might be compromised.. 2014-12-11T17:50:03Z stassats: compromised? 2014-12-11T17:50:54Z drewc: look different to what/when? 2014-12-11T17:51:39Z shka: what? 2014-12-11T17:51:41Z shka: pink? 2014-12-11T17:52:55Z goldenlight: yes pink, i have no recall really if it ever looked different 2014-12-11T17:53:26Z goldenlight: but.. that lack of knowledge might be significant 2014-12-11T17:53:34Z drewc: it has been pink for roughly 10 years 2014-12-11T17:54:01Z goldenlight: my bookmarks must have not included the ome page 2014-12-11T17:54:04Z stassats: gigamonkey must be a communist sympathizer 2014-12-11T17:54:07Z goldenlight: home page 2014-12-11T17:54:23Z milosn joined #lisp 2014-12-11T18:00:19Z goldenlight: milosn: hi 2014-12-11T18:00:27Z goldenlight: glad you are here 2014-12-11T18:00:57Z Denommus` joined #lisp 2014-12-11T18:01:14Z goldenlight: i'm just being talkative, waiting for lunch to arrive 2014-12-11T18:02:08Z pjb: goldenlight: talkative shall go to #lispcafe, which is made for that. 2014-12-11T18:02:30Z attila_lendvai joined #lisp 2014-12-11T18:02:32Z Denommus quit (Ping timeout: 244 seconds) 2014-12-11T18:02:35Z goldenlight: rock on !!! tnx ! 2014-12-11T18:02:45Z attila_lendvai quit (Changing host) 2014-12-11T18:02:45Z attila_lendvai joined #lisp 2014-12-11T18:04:54Z zacharias joined #lisp 2014-12-11T18:05:44Z Denommus` is now known as Denommus 2014-12-11T18:05:55Z attila_lendvai quit (Client Quit) 2014-12-11T18:07:01Z Karl_Dscc joined #lisp 2014-12-11T18:12:51Z petrutrimbitas joined #lisp 2014-12-11T18:13:17Z hellome quit (Read error: Connection reset by peer) 2014-12-11T18:13:18Z pnpuff joined #lisp 2014-12-11T18:13:48Z loz1 joined #lisp 2014-12-11T18:14:37Z BlueRavenGT joined #lisp 2014-12-11T18:14:52Z hellome joined #lisp 2014-12-11T18:15:12Z MoALTz joined #lisp 2014-12-11T18:18:29Z jlarocco joined #lisp 2014-12-11T18:24:56Z BitPuffin quit (Ping timeout: 264 seconds) 2014-12-11T18:25:19Z nell quit (Ping timeout: 255 seconds) 2014-12-11T18:25:23Z juanlas joined #lisp 2014-12-11T18:27:25Z JuanitoJons joined #lisp 2014-12-11T18:31:30Z isis_ quit (Read error: Connection reset by peer) 2014-12-11T18:32:14Z isis_ joined #lisp 2014-12-11T18:32:25Z isis_ left #lisp 2014-12-11T18:32:31Z isis_ joined #lisp 2014-12-11T18:32:33Z isis_ is now known as theirk 2014-12-11T18:35:02Z goldenlight quit (Quit: Lost terminal) 2014-12-11T18:40:14Z Denommus` joined #lisp 2014-12-11T18:40:15Z pt1 joined #lisp 2014-12-11T18:41:23Z pt1_ joined #lisp 2014-12-11T18:41:54Z Denommus quit (Ping timeout: 245 seconds) 2014-12-11T18:42:51Z Denommus` is now known as Denommus 2014-12-11T18:44:37Z pt1 quit (Ping timeout: 240 seconds) 2014-12-11T18:47:03Z resttime joined #lisp 2014-12-11T18:47:26Z nell joined #lisp 2014-12-11T18:49:24Z pnpuff quit (Quit: Lost terminal) 2014-12-11T18:49:46Z Denommus` joined #lisp 2014-12-11T18:50:02Z pt1 joined #lisp 2014-12-11T18:50:21Z Petit_Dejeuner__ joined #lisp 2014-12-11T18:50:43Z pt1_ quit (Ping timeout: 258 seconds) 2014-12-11T18:51:30Z Denommus quit (Ping timeout: 264 seconds) 2014-12-11T18:53:47Z petrutrimbitas quit (Quit: petrutrimbitas) 2014-12-11T18:53:47Z Petit_Dejeuner_ quit (Ping timeout: 258 seconds) 2014-12-11T18:55:19Z yenda quit (Ping timeout: 245 seconds) 2014-12-11T18:58:09Z d4gg4d______ is now known as d4gg4d 2014-12-11T19:00:42Z Denommus joined #lisp 2014-12-11T19:01:09Z Denommus` quit (Ping timeout: 260 seconds) 2014-12-11T19:03:59Z Quadrescence joined #lisp 2014-12-11T19:08:50Z nand1 quit (Read error: Connection reset by peer) 2014-12-11T19:09:26Z nand1 joined #lisp 2014-12-11T19:10:10Z nand1 quit (Read error: Connection reset by peer) 2014-12-11T19:10:31Z nand1 joined #lisp 2014-12-11T19:14:01Z Denommus` joined #lisp 2014-12-11T19:16:05Z Denommus quit (Ping timeout: 264 seconds) 2014-12-11T19:16:52Z pt1 quit (Read error: Connection reset by peer) 2014-12-11T19:17:12Z goglosh joined #lisp 2014-12-11T19:17:33Z pt1 joined #lisp 2014-12-11T19:19:54Z genii joined #lisp 2014-12-11T19:20:12Z sunwukong joined #lisp 2014-12-11T19:22:39Z pt1_ joined #lisp 2014-12-11T19:23:17Z pt1 quit (Read error: Connection reset by peer) 2014-12-11T19:23:44Z ejbs joined #lisp 2014-12-11T19:24:15Z pt1_ quit (Read error: Connection reset by peer) 2014-12-11T19:24:40Z pt1 joined #lisp 2014-12-11T19:26:31Z lavokad joined #lisp 2014-12-11T19:27:39Z Denommus` is now known as Denommus 2014-12-11T19:28:49Z CrazyWoods joined #lisp 2014-12-11T19:32:21Z Denommus` joined #lisp 2014-12-11T19:33:37Z Denommus quit (Ping timeout: 240 seconds) 2014-12-11T19:34:17Z theirk quit (Ping timeout: 260 seconds) 2014-12-11T19:39:50Z Quadrescence quit (Quit: This computer has gone to sleep) 2014-12-11T19:41:58Z LiamH joined #lisp 2014-12-11T19:45:51Z pt1 quit (Read error: Connection reset by peer) 2014-12-11T19:49:02Z goglosh quit (Quit: leaving) 2014-12-11T19:49:52Z pt1 joined #lisp 2014-12-11T19:50:57Z pt1 quit (Remote host closed the connection) 2014-12-11T19:52:22Z corni joined #lisp 2014-12-11T19:52:31Z _JokerDoom joined #lisp 2014-12-11T19:54:27Z pt1 joined #lisp 2014-12-11T19:54:42Z JokerDoom quit (Ping timeout: 250 seconds) 2014-12-11T19:55:07Z Joreji joined #lisp 2014-12-11T19:57:36Z TDog joined #lisp 2014-12-11T19:58:50Z minion quit (Remote host closed the connection) 2014-12-11T19:58:50Z specbot quit (Remote host closed the connection) 2014-12-11T19:58:53Z easye quit (Read error: Connection reset by peer) 2014-12-11T20:01:25Z innertracks quit (Quit: innertracks) 2014-12-11T20:02:55Z slyrus joined #lisp 2014-12-11T20:05:06Z ehu joined #lisp 2014-12-11T20:07:46Z juanlas quit (Quit: juanlas) 2014-12-11T20:09:07Z minion joined #lisp 2014-12-11T20:09:07Z specbot joined #lisp 2014-12-11T20:16:27Z pt1 quit (Read error: Connection reset by peer) 2014-12-11T20:17:03Z pt1 joined #lisp 2014-12-11T20:18:19Z pt1 quit (Read error: Connection reset by peer) 2014-12-11T20:19:43Z pt1 joined #lisp 2014-12-11T20:20:31Z juanlas joined #lisp 2014-12-11T20:20:41Z drmeister: stassats: Slime seems to need the lambda list of functions on the backtrace. Do I read this correctly? 2014-12-11T20:21:45Z drmeister: I mean, I know I can fail to implement features but for the best debugging experience I should provide the lambda list for every compiled function? 2014-12-11T20:22:03Z stassats: it doesn't need a lambda list for the backtrace 2014-12-11T20:22:05Z rhllor joined #lisp 2014-12-11T20:22:59Z rhllor: does anyone know of a library for generating images like the Perl Imager Module? 2014-12-11T20:24:11Z drmeister: Right but it needs the lambda list for something. (DEFINTERFACE arglist (name) ? I'll have to do some work to support that. 2014-12-11T20:24:18Z drmeister: What's it used for? 2014-12-11T20:24:33Z stassats: for displaying the arglists, duh 2014-12-11T20:26:16Z drmeister: Just for display? Oh - I thought it might be used for something magical. 2014-12-11T20:26:44Z drmeister is disappoint 2014-12-11T20:27:01Z Shinmera: I have a couple of projects that base a lot of convenience around being able to automatically determine the lambda-list of a function. So it is definitely something that I'd want to see available in a CL implementation. 2014-12-11T20:28:11Z Xach: rhllor: what does that module do? 2014-12-11T20:28:27Z patric joined #lisp 2014-12-11T20:29:37Z Shinmera would welcome being able to add a clasp section to https://github.com/Shinmera/trivial-arguments 2014-12-11T20:29:58Z stassats: trivial arguments, that happens in #lisp a lot 2014-12-11T20:30:16Z Shinmera: heh 2014-12-11T20:31:36Z stassats quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2014-12-11T20:31:51Z sdemarre quit (Ping timeout: 244 seconds) 2014-12-11T20:32:08Z munksgaard joined #lisp 2014-12-11T20:32:42Z atgreen quit (Remote host closed the connection) 2014-12-11T20:33:56Z murftown quit (Quit: murftown) 2014-12-11T20:36:29Z Kanae quit (Ping timeout: 264 seconds) 2014-12-11T20:36:51Z TDog quit (Quit: ChatZilla 0.9.91 [Firefox 33.1/20141106120505]) 2014-12-11T20:37:56Z Colleen quit (Quit: See you, space cowboy...) 2014-12-11T20:38:50Z pt1_ joined #lisp 2014-12-11T20:39:05Z REPLeffect joined #lisp 2014-12-11T20:40:49Z pt1_ quit (Read error: Connection reset by peer) 2014-12-11T20:41:15Z pt1_ joined #lisp 2014-12-11T20:41:56Z pt1 quit (Ping timeout: 250 seconds) 2014-12-11T20:43:28Z Denommus` quit (Ping timeout: 255 seconds) 2014-12-11T20:44:49Z Kabaka quit (Ping timeout: 245 seconds) 2014-12-11T20:46:57Z slyrus quit (Ping timeout: 252 seconds) 2014-12-11T20:47:34Z rhllor: Xach: sorry, I was doing something. But basically, it's used to create images. You define a size and what and you can draw polygons and stuff and save in a lot of different image formats 2014-12-11T20:48:34Z Xach: rhllor: there's nothing that general, as far as i know. 2014-12-11T20:48:38Z mu12 joined #lisp 2014-12-11T20:48:43Z Grue`: vecto? 2014-12-11T20:49:14Z slyrus joined #lisp 2014-12-11T20:50:41Z rhllor: okay then 2014-12-11T20:51:28Z juanlas quit (Quit: juanlas) 2014-12-11T20:51:48Z mu12 left #lisp 2014-12-11T20:52:47Z yenda joined #lisp 2014-12-11T20:55:49Z Kanae joined #lisp 2014-12-11T20:58:18Z ggole quit (Ping timeout: 256 seconds) 2014-12-11T20:58:45Z pt1_ quit (Ping timeout: 258 seconds) 2014-12-11T21:00:18Z loz1 quit (Quit: Leaving.) 2014-12-11T21:00:33Z nikki93 joined #lisp 2014-12-11T21:01:08Z JuanDaugherty quit (Remote host closed the connection) 2014-12-11T21:01:24Z pt1 joined #lisp 2014-12-11T21:01:44Z Kabaka joined #lisp 2014-12-11T21:01:57Z innertracks joined #lisp 2014-12-11T21:02:12Z nikki93 quit (Remote host closed the connection) 2014-12-11T21:05:13Z zacharias quit (Ping timeout: 244 seconds) 2014-12-11T21:05:13Z pt1 quit (Read error: Connection reset by peer) 2014-12-11T21:05:26Z zacharias joined #lisp 2014-12-11T21:05:59Z juanlas joined #lisp 2014-12-11T21:07:00Z pt1 joined #lisp 2014-12-11T21:10:29Z pt1 quit (Read error: Connection reset by peer) 2014-12-11T21:11:55Z pt1 joined #lisp 2014-12-11T21:13:01Z pt1 quit (Read error: Connection reset by peer) 2014-12-11T21:14:44Z Denommus joined #lisp 2014-12-11T21:15:38Z pt1 joined #lisp 2014-12-11T21:16:40Z nand1 quit (Remote host closed the connection) 2014-12-11T21:17:03Z pt1 quit (Read error: Connection reset by peer) 2014-12-11T21:17:22Z hardenedapple quit (Quit: WeeChat 1.0.1) 2014-12-11T21:17:42Z shka quit (Quit: WeeChat 1.0.1) 2014-12-11T21:17:57Z Denommus` joined #lisp 2014-12-11T21:18:19Z rhllor: Shinmera: you have an image drawing program, right? 2014-12-11T21:18:30Z Shinmera: Define "have" 2014-12-11T21:18:44Z rhllor: I mean you made one 2014-12-11T21:18:54Z Shinmera: It's not done yet 2014-12-11T21:19:01Z Shinmera: But it is in progress, yes 2014-12-11T21:19:42Z Denommus quit (Ping timeout: 264 seconds) 2014-12-11T21:19:56Z rhllor: is it able to save files in formats like bmp or png or something 2014-12-11T21:20:14Z Shinmera: Not yet, no 2014-12-11T21:20:20Z Shinmera: The old version did 2014-12-11T21:21:08Z Denommus` is now known as Denommus 2014-12-11T21:21:23Z rhllor: because I was wondering how do you convert something into png or whatever format. Did you use a library or something you write yourself? 2014-12-11T21:21:55Z rhllor: I basically just want to know how you make images 2014-12-11T21:22:18Z innertracks quit (Quit: innertracks) 2014-12-11T21:22:22Z Shinmera: Qt handles png, jpg and bmp for me. Other than those I only intend to support ORA, which uses pngs. 2014-12-11T21:22:52Z innertracks joined #lisp 2014-12-11T21:22:58Z Colleen joined #lisp 2014-12-11T21:22:58Z Grue`: rhllor: have you tried http://www.xach.com/lisp/vecto/ 2014-12-11T21:23:08Z rhllor: oh okay 2014-12-11T21:23:17Z pjb quit (Ping timeout: 258 seconds) 2014-12-11T21:23:47Z Shinmera: Ofc people might add support for other stuff by handling it themselves, but I won't bother. 2014-12-11T21:24:15Z Shinmera: Blast, the getaddrinfo error showed up again already 2014-12-11T21:24:18Z pt1 joined #lisp 2014-12-11T21:24:20Z yenda quit (Ping timeout: 244 seconds) 2014-12-11T21:26:40Z juanlas quit (Quit: juanlas) 2014-12-11T21:26:44Z pjb joined #lisp 2014-12-11T21:27:14Z angavrilov quit (Remote host closed the connection) 2014-12-11T21:27:53Z pt1 quit (Read error: Connection reset by peer) 2014-12-11T21:31:47Z murftown joined #lisp 2014-12-11T21:34:21Z pt1 joined #lisp 2014-12-11T21:34:21Z gravicappa quit (Remote host closed the connection) 2014-12-11T21:36:26Z nand1 joined #lisp 2014-12-11T21:38:04Z nand1 quit (Remote host closed the connection) 2014-12-11T21:40:10Z pt1 quit (Read error: Connection reset by peer) 2014-12-11T21:40:30Z pinupgeek joined #lisp 2014-12-11T21:40:52Z pt1 joined #lisp 2014-12-11T21:41:11Z pt1 quit (Read error: Connection reset by peer) 2014-12-11T21:41:22Z juanlas joined #lisp 2014-12-11T21:41:39Z gf3 quit (Quit: LOLeaving) 2014-12-11T21:41:43Z nand1 joined #lisp 2014-12-11T21:42:02Z pt1 joined #lisp 2014-12-11T21:44:46Z thawes quit (Quit: No Ping reply in 180 seconds.) 2014-12-11T21:44:57Z pinupgeek quit (Read error: Connection reset by peer) 2014-12-11T21:45:40Z pinupgeek joined #lisp 2014-12-11T21:46:31Z thawes joined #lisp 2014-12-11T21:46:37Z pinupgeek quit (Read error: Connection reset by peer) 2014-12-11T21:47:22Z pt1 quit (Ping timeout: 250 seconds) 2014-12-11T21:48:22Z usrj joined #lisp 2014-12-11T21:48:35Z pinupgeek joined #lisp 2014-12-11T21:49:33Z bgs100 joined #lisp 2014-12-11T21:51:53Z jasom: Did fare rewrite history in fare-mop fare-quasiquote and fare-utils? 2014-12-11T21:52:26Z jasom ran into a case of commits not existing anymore in an asdf fork 2014-12-11T21:53:17Z antonv joined #lisp 2014-12-11T21:53:40Z normanrichards joined #lisp 2014-12-11T21:54:04Z fridim_ quit (Ping timeout: 245 seconds) 2014-12-11T21:54:54Z hiroakip joined #lisp 2014-12-11T21:56:33Z Denommus` joined #lisp 2014-12-11T21:56:50Z nikki93 joined #lisp 2014-12-11T21:57:50Z Denommus` quit (Client Quit) 2014-12-11T21:58:42Z petrutrimbitas joined #lisp 2014-12-11T22:03:03Z rhllor quit (Quit: Page closed) 2014-12-11T22:03:07Z Patzy quit (Ping timeout: 255 seconds) 2014-12-11T22:04:33Z juanlas quit (Quit: juanlas) 2014-12-11T22:05:14Z ehu quit (Ping timeout: 245 seconds) 2014-12-11T22:07:14Z ehu joined #lisp 2014-12-11T22:09:52Z Patzy joined #lisp 2014-12-11T22:09:56Z innertracks quit (Ping timeout: 264 seconds) 2014-12-11T22:10:12Z juanlas joined #lisp 2014-12-11T22:12:51Z innertracks joined #lisp 2014-12-11T22:12:56Z slyrus quit (Ping timeout: 250 seconds) 2014-12-11T22:13:50Z Denommus` joined #lisp 2014-12-11T22:15:43Z slyrus joined #lisp 2014-12-11T22:16:09Z thawes quit (Quit: No Ping reply in 180 seconds.) 2014-12-11T22:16:47Z arenz quit (Ping timeout: 252 seconds) 2014-12-11T22:16:53Z theseb: is there any import to critic's notion that macros are hard to define?....if someone developed a DSL with massive macros....is there any more danger of getting drowning in a black hole of complexity compared to say Java and OOP? 2014-12-11T22:17:14Z theseb: sorry...i mean...any relavance to notion macros are hard to DEBUG 2014-12-11T22:17:16Z theseb: DeBUG 2014-12-11T22:17:18Z theseb: debug 2014-12-11T22:17:37Z thawes joined #lisp 2014-12-11T22:17:37Z theseb: ? 2014-12-11T22:17:47Z mishoo quit (Ping timeout: 245 seconds) 2014-12-11T22:18:19Z c53100 joined #lisp 2014-12-11T22:18:23Z Shinmera quit (Quit: しつれいしなければならないんです。) 2014-12-11T22:18:40Z EvW quit (Ping timeout: 265 seconds) 2014-12-11T22:18:47Z Joreji quit (Read error: Connection reset by peer) 2014-12-11T22:19:42Z |3b|: theseb: any feature can be misused, and powerful features can amplify misuse as much as they amplify good use 2014-12-11T22:19:45Z jasom: theseb: macros are harder to debug than not macros 2014-12-11T22:20:27Z theseb: |3b|: so basically lisp is more powerful/better but programmer must be more powerful/better to use it...makes sense 2014-12-11T22:20:33Z jasom: theseb: not a *lot* harder, but harder. Don't use them if the abstraction gain isn't worth it. Really simple macros are fairly safe just because the bugs will be obvious 2014-12-11T22:20:51Z theseb: or as they say..."With much power comes much responsibility" 2014-12-11T22:21:01Z |3b|: i wouldn't say the programmers need to be more powerful/better, just that they need to know when not to do things 2014-12-11T22:21:06Z dim: I find CL macros much easier to understand and use than C macros 2014-12-11T22:21:07Z nikki93 quit (Remote host closed the connection) 2014-12-11T22:21:16Z dim: but I'm only a one-comma programmer after all 2014-12-11T22:21:30Z dim: (ref. http://c2.com/cgi/wiki?ThreeStarProgrammer 2014-12-11T22:21:35Z Grue`: i dunno, macros are easier to debug if anything, because all possible inputs are known at read time 2014-12-11T22:21:38Z dim: (and a missing paren)) 2014-12-11T22:21:50Z Grue`: (unless somebody else uses your macros) 2014-12-11T22:21:53Z jasom: Grue`: once you know the bug is in the macro 2014-12-11T22:22:08Z theseb: |3b|: every since Paul Graham's writings...i'm dreaming of writing an insane app with massive levels of macros and feeling the power 2014-12-11T22:22:32Z jasom: Abnormal behavior that is due to a buggy macro is slightly harder to track down, but becomes fairly easy once you localize it to the macro 2014-12-11T22:22:51Z dim: IME the more you try to use macro the more you fail at writing code that is easy to maintain 2014-12-11T22:23:12Z Petit_Dejeuner__: theseb, and then retire and write video games for the rest of your life? get in line 2014-12-11T22:23:31Z jasom: IMO you should never *try* to use a macro in production code; you should realize that you can't do it cleanly without a macro and then use it. 2014-12-11T22:23:32Z theseb: jasom: oh..and speaking of macro debugging....i love the defmacro/gensym way....but all the hygience fans got me paranoid that a subtle bug will sneak in without scheme's insane macro system 2014-12-11T22:23:37Z |3b| wants to use the insane power to write video games to start with :p 2014-12-11T22:24:08Z theseb: Petit_Dejeuner__: lol 2014-12-11T22:24:11Z jasom: theseb: the hygiene fans are wrong. Don't rely on the definitions of exported symbols from your package and you will be safe 2014-12-11T22:24:12Z |3b|: packages + multiple namespaces + rules forbidding redefining CL symbols make hygiene less of a problem in CL 2014-12-11T22:24:12Z Grue`: (powerful-macro :video-game-1) => done 2014-12-11T22:24:30Z patric quit (Quit: leaving) 2014-12-11T22:24:35Z jasom: theseb: scheme doesn't do symbols the same way as common lisp which makes the hygienic macros more necessary there 2014-12-11T22:25:31Z jasom: the part of macro hygiene that is solved by gensym is the uninteresting part of macro hygiene 2014-12-11T22:25:51Z jasom: (uninteresting as just having gensym is enough to make it soluble) 2014-12-11T22:26:19Z Denommus` quit (Ping timeout: 252 seconds) 2014-12-11T22:26:44Z thawes quit (Remote host closed the connection) 2014-12-11T22:27:00Z Petit_Dejeuner__: Grue`, Now you just have to write the macro. 2014-12-11T22:27:24Z theseb: jasom: yea...iirc the gensym way is fine for a newb like me as long as you don't try to do something hardcore like redefine car, defmacro, etc. 2014-12-11T22:27:38Z theseb: basically...make up new vars instead of changing old ones 2014-12-11T22:28:10Z |3b|: theseb: you aren't allowed to redefine anything in the CL package 2014-12-11T22:28:18Z jasom: theseb: the real issue is if you export a function named "foo" and a package which uses your package does (flet ((foo ...)) (macro-that-calls-foo )) 2014-12-11T22:29:03Z |3b|: more reason to not :use things :) 2014-12-11T22:29:04Z jasom: not exporting really simple function names helps a lot there; if you don't rely on any exported functions at all, then you're completely safe from that issue. 2014-12-11T22:29:15Z juanlas quit (Quit: juanlas) 2014-12-11T22:29:16Z drewc uses (funcall 'foo) for that reason! 2014-12-11T22:29:18Z hiroakip quit (Ping timeout: 265 seconds) 2014-12-11T22:29:36Z theseb: jasom: your foo example would fall under my banned list because in my world i wouldn't let myself modify foo 2014-12-11T22:29:43Z usrj quit (Ping timeout: 272 seconds) 2014-12-11T22:30:00Z theseb: jasom: i.e. it all boils down to stop messing with existing vars 2014-12-11T22:30:12Z |3b|: theseb: if you blindly :use packages, you might not know it is exported (particularly if the export list changes in new version) 2014-12-11T22:30:55Z theseb: |3b|: does CL have a switch to not let you modify exported vars automagically? 2014-12-11T22:31:12Z jasom: theseb: how do you know that foo exists? 2014-12-11T22:31:26Z jasom: theseb: redefining a defun will warn, but not using flet 2014-12-11T22:31:29Z |3b|: no, but i think sbcl does and possibly other implementations might 2014-12-11T22:31:33Z theseb: jasom: let CL figure it out....the REPL can prevent user from doing something dumb 2014-12-11T22:32:18Z theseb: jasom: somewhere in the bowels there can be a command that does "if user tries to modify exported var...print a warning" 2014-12-11T22:32:25Z |3b|: and this is about functions, assigning/rebinding exported variables is normal operation, since they are usually global/special vars 2014-12-11T22:32:40Z towodo quit (Quit: towodo) 2014-12-11T22:32:50Z jasom: theseb: flet doesn't modify it; it just lexically binds it 2014-12-11T22:32:51Z drewc: theseb: symbols are not "vars", and FLET does not modify the symbol in any way. 2014-12-11T22:33:01Z |3b|: http://www.sbcl.org/1.0/manual/Package-Locks.html 2014-12-11T22:33:06Z theseb: sorry..i'm not so good with proper use of the lingo 2014-12-11T22:33:18Z munksgaard quit (Ping timeout: 250 seconds) 2014-12-11T22:33:45Z mrSpec quit (Quit: mrSpec) 2014-12-11T22:35:39Z drewc: theseb: If you do not learn what things are, then you will have issues when trying to understand them. The table of contents is a good place to learn what the names refer to : http://www.lispworks.com/documentation/HyperSpec/Front/Contents.htm 2014-12-11T22:35:56Z gf3 joined #lisp 2014-12-11T22:36:34Z hiroakip joined #lisp 2014-12-11T22:36:59Z Ethan- joined #lisp 2014-12-11T22:37:14Z fragamus quit (Quit: My iMac has gone to sleep. ZZZzzz…) 2014-12-11T22:37:14Z Beetny joined #lisp 2014-12-11T22:37:52Z theseb: drewc: i agree...reason i was squeamish about learning lingo for one language is other languages are different... 2014-12-11T22:37:55Z ejbs quit (Ping timeout: 244 seconds) 2014-12-11T22:38:17Z theseb: drewc: so i can learn diff between symbol vs. variable but then if i do Java...doesn't transfer :/ 2014-12-11T22:38:24Z drewc: theseb: Well, ignore "lingo" and just use english 2014-12-11T22:39:15Z drewc: theseb: it might ... a symbol is a datatype. a variable is an abstract concept. 2014-12-11T22:39:20Z innertracks quit (Ping timeout: 264 seconds) 2014-12-11T22:39:32Z edgar-rft quit (Quit: conversation finished by permanent activity) 2014-12-11T22:39:49Z innertracks joined #lisp 2014-12-11T22:39:58Z drewc: theseb: imagine a class named symbol 2014-12-11T22:40:05Z theseb: ok 2014-12-11T22:40:15Z drewc: and an instance of that class is a symbol 2014-12-11T22:40:16Z attila_lendvai joined #lisp 2014-12-11T22:40:16Z attila_lendvai quit (Changing host) 2014-12-11T22:40:16Z attila_lendvai joined #lisp 2014-12-11T22:40:56Z theseb: drewc: see that is helpful....someone should build bridges between the jargon of different language communities..that would be awesome 2014-12-11T22:41:02Z drewc: does the language we are referring to not have classes? Then it is a struct. 2014-12-11T22:41:11Z theseb: drewc: sort of a "travelers' dictionary" if you will 2014-12-11T22:43:09Z drewc: There is no jargon or lingo involved here, these are basic concepts that ... wait ... there is ... "The Jargon File" .. which became "The Hacker's Dictionary" 2014-12-11T22:43:22Z Denommus` joined #lisp 2014-12-11T22:43:25Z drewc: Which became "The New Hacker's Dictionary" 2014-12-11T22:43:34Z slyrus quit (Ping timeout: 245 seconds) 2014-12-11T22:43:54Z Grue` quit (Ping timeout: 244 seconds) 2014-12-11T22:44:31Z theseb: drewc: oh but there are jargon dialects.....e.g.. In C++ I had member variables and member functions,,,,,In Java I had instance variables and "methods"....then in Python I had just "attributes" !!!! 2014-12-11T22:44:48Z theseb: ahhhhhh! 2014-12-11T22:46:23Z drewc: theseb: If you think that the name given to anything that somehow relates to something else is called "jargon", I may not be able to help you there. Different strokes for different folks after all :P 2014-12-11T22:48:09Z resttime quit (Quit: resttime) 2014-12-11T22:48:53Z Grue`` joined #lisp 2014-12-11T22:49:38Z slyrus joined #lisp 2014-12-11T22:50:51Z murftown quit (Quit: murftown) 2014-12-11T22:51:37Z Denommus` quit (Ping timeout: 240 seconds) 2014-12-11T22:54:48Z juanlas joined #lisp 2014-12-11T22:56:16Z Denommus` joined #lisp 2014-12-11T22:57:08Z ehu quit (Ping timeout: 250 seconds) 2014-12-11T22:57:51Z Denommus quit (Ping timeout: 252 seconds) 2014-12-11T22:58:23Z Denommus joined #lisp 2014-12-11T22:58:35Z Jesin quit (Quit: Leaving) 2014-12-11T23:05:36Z Denommus quit (Ping timeout: 244 seconds) 2014-12-11T23:05:43Z Denommus` quit (Ping timeout: 250 seconds) 2014-12-11T23:09:27Z wooden quit (Ping timeout: 245 seconds) 2014-12-11T23:10:44Z jasom: drewc: that seems like jargon to me; jargon is "A technical terminology unique to a particular subject" 2014-12-11T23:10:44Z Kanae quit (Read error: Connection reset by peer) 2014-12-11T23:11:19Z codeburg quit (Remote host closed the connection) 2014-12-11T23:11:45Z codeburg joined #lisp 2014-12-11T23:12:12Z Kanae joined #lisp 2014-12-11T23:12:14Z juanlas quit (Quit: juanlas) 2014-12-11T23:12:15Z jasom: theseb: what common lisp refers to as a symbol is fairly peculiar to lisps; what a symbol is in scheme even is different 2014-12-11T23:12:37Z theseb: jasom: ug...even different lisp flavors do it different.....not good 2014-12-11T23:12:38Z drewc: jasom: Yes, but what are the other definitions of jargon? 2014-12-11T23:12:39Z theseb: jasom: thanks 2014-12-11T23:12:47Z theseb: drewc: who cares? 2014-12-11T23:13:37Z jasom: theseb: assume that scheme and common lisp do X differently and you will be right more often than wrong for a randomly chosen X 2014-12-11T23:14:14Z jasom: theseb: they are about as similar as C++ and java; superficially similar to the point that someone who knew neither couldn't tell them apart, but not at all alike if you know either one of them very well 2014-12-11T23:14:24Z Denommus joined #lisp 2014-12-11T23:15:38Z drewc: jasom: the dictionary types... to me, jargon is, unless you are a part of the trade, "unintelligible or meaningless talk or writing; gibberish.". I do not think of C++ programming as a trade, per se. 2014-12-11T23:15:39Z theseb: jasom: wait..besides hygiene...is there anything scheme gets right that we wish CL had? 2014-12-11T23:15:48Z drewc: errrr 2014-12-11T23:15:53Z jasom: theseb: most lispers don't wish that CL had hygiene 2014-12-11T23:15:59Z drewc: theseb: I meant that for you :) 2014-12-11T23:16:03Z theseb: jasom: i don't like hygiene 2014-12-11T23:16:18Z jasom: so hygiene isn't something that scheme gets right that we wish CL had 2014-12-11T23:16:36Z theseb: jasom: SICP MIT profs spent years mediating on perfect ideal lisp...certainly they must have done some improvements to CL no? 2014-12-11T23:16:50Z whartung: lexical closures, but CL took those already 2014-12-11T23:17:20Z jasom: I would like some form of continuations, but shift and reset is probably a better fit than call/cc 2014-12-11T23:17:21Z drewc: theseb: yes, like integrated parts of scheme :) 2014-12-11T23:17:26Z whartung: But, CL isn't perfect nor ideal. It's practical. There's a difference 2014-12-11T23:17:41Z CrazyWoods quit (Quit: leaving) 2014-12-11T23:18:35Z theseb: drewc: oh i think i see the impedance mismatch....you think jargon = gibberish.....i was thinking jargon = audible DSLs used by various communities :) 2014-12-11T23:19:02Z shifty778 quit (Ping timeout: 245 seconds) 2014-12-11T23:19:04Z theseb: drewc: glad to know CL took the best parts of scheme 2014-12-11T23:19:29Z wooden joined #lisp 2014-12-11T23:19:29Z wooden quit (Changing host) 2014-12-11T23:19:30Z wooden joined #lisp 2014-12-11T23:19:30Z theseb: drewc: e.g. eskimos have several words for snow..n' all that 2014-12-11T23:19:55Z shifty778 joined #lisp 2014-12-11T23:20:43Z drewc: theseb: I usually think of those as 'slang', though the definitions are not slang ... and I use slush and sleet and powder myself, and I am not Inuit! :) 2014-12-11T23:21:18Z theseb: drewc: are you in USA? i'm wondering if this is a European vs. USA thing 2014-12-11T23:21:27Z theseb: that'd be interesting 2014-12-11T23:21:32Z Denommus quit (Ping timeout: 245 seconds) 2014-12-11T23:21:54Z drewc: Nope. USA is a daysail south. 2014-12-11T23:22:05Z theseb: drewc: canada! 2014-12-11T23:22:49Z theseb: drewc: well in the states jargon are legitimate words....e.g Hacker's Dictionary is from US iirc....the stuff in there is not gibberish...they have well defined meanings for some withing hacker community 2014-12-11T23:23:46Z zyaku joined #lisp 2014-12-11T23:23:49Z drewc: anadians have a bunch of odd definitions and use of words... so I would apologize for that, only apparently our apologies are not recognized as true a lot of the time, and we pronounce "sorry" oddly... :P 2014-12-11T23:25:29Z drewc: theseb: yeah, my bad 2014-12-11T23:26:25Z Denommus joined #lisp 2014-12-11T23:26:40Z theseb: :) 2014-12-11T23:27:02Z drewc: my definitions of terms (my personal jargon or slang) needs redefinition. 2014-12-11T23:27:41Z theseb: drewc: err...well....wait 2014-12-11T23:28:11Z theseb: drewc: if you upgraded your mental defs then you might be good to go for USA but then you'd be debilitated in Canada! oh no! 2014-12-11T23:28:21Z drewc: Ok, so a symbol is Common Lisp jargon for "symbol n. an object of type symbol" 2014-12-11T23:28:25Z theseb: unless you were sooo slick you could hot swap dictionaries as needed 2014-12-11T23:29:23Z drewc: theseb: well, strangely enough I have worked in the USA for about 10% of the last 7 years, and my clients are often from there ... which is part of the reason /why/ my mind gets all confused. 2014-12-11T23:30:10Z sword` quit (Ping timeout: 258 seconds) 2014-12-11T23:32:17Z corni quit (Ping timeout: 260 seconds) 2014-12-11T23:36:58Z Denommus quit (Ping timeout: 256 seconds) 2014-12-11T23:43:26Z Denommus joined #lisp 2014-12-11T23:48:15Z Denommus quit (Ping timeout: 272 seconds) 2014-12-11T23:52:29Z Jesin joined #lisp 2014-12-11T23:52:57Z pjb: theseb: in lisp, macros are mere functions. They're not harder to define or to debug than other functions. 2014-12-11T23:53:39Z pjb: theseb: actually, I would even go so far as to say that macros are easier to define and debug than other functions, if only because they only process sexps, producing sexps. Other functions often have to work with more complex data types. 2014-12-11T23:56:52Z theseb: pjb: thanks..that's encouraging....now if i could only find myself on some sexy CL project with massive macros