2015-12-26T00:01:02Z kobain joined #lisp 2015-12-26T00:06:54Z zotherstupidguy quit (Ping timeout: 255 seconds) 2015-12-26T00:08:11Z hppavilion[1] quit (Ping timeout: 246 seconds) 2015-12-26T00:10:16Z mau joined #lisp 2015-12-26T00:14:19Z nonopposition quit (Ping timeout: 245 seconds) 2015-12-26T00:16:46Z mishoo__ quit (Ping timeout: 240 seconds) 2015-12-26T00:23:24Z voidengineer quit (Quit: Leaving) 2015-12-26T00:26:12Z sjl joined #lisp 2015-12-26T00:29:15Z adhoc quit (Ping timeout: 240 seconds) 2015-12-26T00:30:35Z sjl quit (Ping timeout: 240 seconds) 2015-12-26T00:31:17Z adhoc joined #lisp 2015-12-26T00:31:26Z mau quit (Ping timeout: 240 seconds) 2015-12-26T00:34:15Z Guest20174 quit (Ping timeout: 260 seconds) 2015-12-26T00:35:28Z TMM joined #lisp 2015-12-26T00:36:42Z Guest20174 joined #lisp 2015-12-26T00:37:48Z ACE_Recliner joined #lisp 2015-12-26T00:43:40Z eudoxia quit (Quit: Leaving) 2015-12-26T01:00:00Z smokeink joined #lisp 2015-12-26T01:02:18Z Karl_Dscc quit (Remote host closed the connection) 2015-12-26T01:02:46Z hppavilion[1] joined #lisp 2015-12-26T01:03:16Z anderoonies joined #lisp 2015-12-26T01:07:41Z fantazo quit (Ping timeout: 246 seconds) 2015-12-26T01:20:03Z Denommus joined #lisp 2015-12-26T01:20:59Z hppavilion[1] quit (Ping timeout: 246 seconds) 2015-12-26T01:23:43Z phoe_krk: (just so everyone knows, it's more or less safe to come back to #lispcafe now, it seems we've scared snv off for the time being.) 2015-12-26T01:24:06Z anderoonies quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-12-26T01:24:43Z cmack joined #lisp 2015-12-26T01:29:20Z cmack quit (Ping timeout: 260 seconds) 2015-12-26T01:30:33Z zotherstupidguy joined #lisp 2015-12-26T01:33:21Z muyinliu joined #lisp 2015-12-26T01:33:40Z oleo_ joined #lisp 2015-12-26T01:34:28Z yvm: How can I convert string to symbol (for example "foo" to foo) without interning it? 2015-12-26T01:34:35Z Bicyclid1ne: find-symbol. 2015-12-26T01:34:51Z Bicyclid1ne: Or do you mean you want a symbol that's not in any package? 2015-12-26T01:35:09Z Bicyclid1ne: if so, use make-symbol. 2015-12-26T01:35:43Z phoe_krk: Bicyclid1ne: it will make me a #:symbol? 2015-12-26T01:36:03Z Bicyclid1ne: that is what make-symbol does, yes. 2015-12-26T01:36:06Z yvm: Yes, make-symbol does what I want. Thank you. 2015-12-26T01:36:08Z Bicyclid1ne is now known as Bicyclidine 2015-12-26T01:36:09Z phoe_krk: got it. 2015-12-26T01:36:41Z Bicyclidine: which of course means that (eq (make-symbol "foo") (make-symbol "foo")) => NIL. 2015-12-26T01:36:47Z oleo quit (Ping timeout: 264 seconds) 2015-12-26T01:37:30Z ACE_Recliner quit (Ping timeout: 256 seconds) 2015-12-26T01:41:37Z ACE_Recliner joined #lisp 2015-12-26T01:43:16Z segmond quit (Ping timeout: 240 seconds) 2015-12-26T01:47:18Z ACE_Recliner quit (Ping timeout: 250 seconds) 2015-12-26T01:50:37Z ACE_Recliner joined #lisp 2015-12-26T01:53:45Z muyinliu: How to wrap output type LPTSTR(from Windows API) in cffi? `DWORD WINAPI GetLogicalDriveStrings( _In_ DWORD nBufferLength, _Out_ LPTSTR lpBuffer);` 2015-12-26T01:55:36Z Bicyclidine: muyinliu: LPTSTR is defined on this page https://msdn.microsoft.com/en-us/library/windows/desktop/aa383751%28v=vs.85%29.aspx depending on whether UNICODE is defined. 2015-12-26T01:56:08Z Bicyclidine: so a char* or a wchar_t*, depending. 2015-12-26T01:56:20Z Bicyclidine: either way a pointer. so you could just use cffi :pointer i suppose. 2015-12-26T01:57:08Z EvW quit (Ping timeout: 255 seconds) 2015-12-26T01:57:12Z segmond joined #lisp 2015-12-26T01:57:44Z muyinliu: Bicyclidine: Bicyclidine: Yes. I have seen that page. I writed some code but it seems that now paste.lisp.org is 503 so it's there other paste website that I can paste my code? 2015-12-26T01:58:07Z Bicyclidine: Um. How about lpaste.net? 2015-12-26T01:58:29Z muyinliu: iPaste.net is fine. wait a second. 2015-12-26T01:58:50Z Fare joined #lisp 2015-12-26T02:01:00Z muyinliu: Here is my code: http://lpaste.net/147849 2015-12-26T02:02:29Z Bicyclidine: Hm... the windows function returns a bunch of null terminated strings in one buffer. foreign-string-to-lisp might stop at the first. 2015-12-26T02:03:31Z muyinliu: OK, how to get the correct string? 2015-12-26T02:04:22Z Bicyclidine: yeah. looks like i was right. 2015-12-26T02:05:19Z Bicyclidine: I think you'll have to write your own parser (in lisp). I'm not sure of the best way to do it. 2015-12-26T02:05:29Z Nikotiini quit (Remote host closed the connection) 2015-12-26T02:06:05Z Bicyclidine: First you'll have to decide if it's utf-16 or some 8 bit encoding. then you can run through the bytes looking for nulls, and call foreign-string-to-lisp on the correct sections. 2015-12-26T02:06:54Z muyinliu: Looks difficult... 2015-12-26T02:07:40Z Bicyclidine: a pain in the ass, for sure 2015-12-26T02:08:04Z Bicyclidine: but not so hard. 2015-12-26T02:08:15Z grouzen joined #lisp 2015-12-26T02:08:39Z sjl__ joined #lisp 2015-12-26T02:11:52Z muyinliu: I'm not sure whether this is helpful: http://lpaste.net/147850 2015-12-26T02:12:37Z Bicyclidine: that's an array of strings. different. 2015-12-26T02:13:05Z aap_ joined #lisp 2015-12-26T02:13:56Z jilingju joined #lisp 2015-12-26T02:15:05Z NeverDie_ is now known as NeverDie 2015-12-26T02:16:06Z aap quit (Ping timeout: 240 seconds) 2015-12-26T02:17:09Z |3b| joined #lisp 2015-12-26T02:21:58Z Fare quit (Ping timeout: 250 seconds) 2015-12-26T02:23:43Z Fare joined #lisp 2015-12-26T02:24:09Z sid_cypher joined #lisp 2015-12-26T02:24:29Z earl-ducaine joined #lisp 2015-12-26T02:26:49Z muyinliu: http://lpaste.net/147851 2015-12-26T02:27:04Z muyinliu: How to get data as vector with pointer here? 2015-12-26T02:28:25Z arescorpio joined #lisp 2015-12-26T02:28:43Z jilingju quit (Quit: Bye) 2015-12-26T02:29:24Z jyuan` joined #lisp 2015-12-26T02:31:20Z jyuan quit (Ping timeout: 255 seconds) 2015-12-26T02:31:51Z ryan1 joined #lisp 2015-12-26T02:36:16Z karswell` joined #lisp 2015-12-26T02:36:35Z karswell quit (Remote host closed the connection) 2015-12-26T02:37:38Z ryan1: Is there anyway to pipe the output from a shell command (ext:shell "myscript") into a stream? I've had luck redirecting print into a string stream, but not when an external script calls echo it seems 2015-12-26T02:40:22Z prxq_ joined #lisp 2015-12-26T02:44:15Z prxq quit (Ping timeout: 265 seconds) 2015-12-26T02:49:59Z Bicyclidine: ryan1: should be, which ext: is this? clisp? 2015-12-26T02:50:03Z sjl__ quit (Ping timeout: 260 seconds) 2015-12-26T02:51:47Z mac_ified joined #lisp 2015-12-26T02:55:15Z ryan1: Yup 2015-12-26T02:55:41Z ryan1: I'm trying to write a custom script for i3blocks 2015-12-26T02:55:46Z ACE_Recliner quit (Ping timeout: 272 seconds) 2015-12-26T02:56:11Z jyuan` quit (Ping timeout: 246 seconds) 2015-12-26T02:56:50Z ACE_Recliner joined #lisp 2015-12-26T02:56:57Z ryan1: What's not working is "pulseaudio-ctl full-status | volume.lisp" Whenever I try to print *args*, I just get NIL 2015-12-26T02:57:40Z Bicyclidine: from the docs, it looks like you'd use ext:run-shell-command with :output :stream. 2015-12-26T03:00:34Z ryan1: Ah, so I can just have :output set to a string stream then all should be good 2015-12-26T03:00:38Z ryan1: Thanks a lot! 2015-12-26T03:07:20Z whiteline quit (Ping timeout: 255 seconds) 2015-12-26T03:10:26Z attila_lendvai quit (Ping timeout: 240 seconds) 2015-12-26T03:11:27Z Fare: ryan1: use uiop:run-program 2015-12-26T03:11:43Z muyinliu: Bicyclidine: I write a trick to solve the problem that null-terminated in C string buffer can NOT parse to lisp string correctly, here is the code: http://lpaste.net/147852. Thanks a lot! 2015-12-26T03:11:48Z Fare: it's portable, and it will do what you want. 2015-12-26T03:12:21Z FreeBirdLjj joined #lisp 2015-12-26T03:12:35Z Fare: and if you want a stream, use :output #'some-function-that-processes-the-stream 2015-12-26T03:13:22Z Bicyclidine: muyinliu: won't work for wstrings, just so you know. 2015-12-26T03:13:39Z ACE_Recliner quit (Ping timeout: 255 seconds) 2015-12-26T03:14:30Z ACE_Recliner joined #lisp 2015-12-26T03:14:34Z Bicyclidine: muyinliu: actually, since the buffer past the null termination is garbage, you might run into problems if you do that 2015-12-26T03:14:44Z NeverDie quit (Quit: http://radiux.io/) 2015-12-26T03:14:46Z blub joined #lisp 2015-12-26T03:15:07Z Bicyclidine: unless with-foreign-string clears memory... 2015-12-26T03:15:29Z Fare: ryan1, if you want to do scripting in CL, try cl-launch, and use it to dump multicall binary images http://fare.livejournal.com/184127.html 2015-12-26T03:17:04Z muyinliu: Bicyclidine: Yes. I know it's just a trick fit GetLogicalDriveStrings. This trick will NOT be used in other situations. Thanks. 2015-12-26T03:17:22Z NeverDie joined #lisp 2015-12-26T03:18:04Z Bicyclidine: muyinliu: it wouldn't take much more adjustment to check for two null bytes in a row and just stop there 2015-12-26T03:20:16Z muyinliu: Bicyclidine: yes. 2015-12-26T03:20:32Z Bicyclidine: (loop with last-null = nil for i from 0 below buffer-size do (when (zerop (mem-ref buffer i)) (if last-null (return i) (setf (mem-ref buf i) #x20 last-null t))) i think would do it 2015-12-26T03:21:09Z muyinliu: Bicyclidine: Thanks 2015-12-26T03:21:26Z Bicyclidine: my concern is that if with-foreign-string doesn't actually zero the whole buffer before you start, your solution could get you trash in the string 2015-12-26T03:21:45Z kobain quit (Quit: KVIrc 4.1.3 Equilibrium http://www.kvirc.net/) 2015-12-26T03:25:24Z Fare quit (Quit: Leaving) 2015-12-26T03:25:35Z cmack joined #lisp 2015-12-26T03:27:45Z muyinliu: Bicyclidine: code here: http://lpaste.net/147853. 2015-12-26T03:28:14Z jyuan` joined #lisp 2015-12-26T03:29:30Z Bicyclidine: yeah, i think that works for single-byte characters, coolio 2015-12-26T03:30:40Z cmack quit (Ping timeout: 260 seconds) 2015-12-26T03:35:02Z Bahman joined #lisp 2015-12-26T03:38:00Z jyuan` quit (Ping timeout: 264 seconds) 2015-12-26T03:39:18Z beach joined #lisp 2015-12-26T03:39:26Z beach: Good morning everyone! 2015-12-26T03:39:37Z blub: hi beach 2015-12-26T03:40:00Z yeticry_ joined #lisp 2015-12-26T03:43:13Z yeticry quit (Ping timeout: 265 seconds) 2015-12-26T03:45:12Z ACE_Recliner quit (Ping timeout: 264 seconds) 2015-12-26T03:45:48Z brucem quit (Changing host) 2015-12-26T03:45:49Z brucem joined #lisp 2015-12-26T03:47:01Z ACE_Recliner joined #lisp 2015-12-26T03:47:26Z sjl joined #lisp 2015-12-26T03:52:06Z nyef: Hello beach. 2015-12-26T03:52:22Z sjl quit (Ping timeout: 256 seconds) 2015-12-26T03:53:36Z ACE_Recliner quit (Ping timeout: 264 seconds) 2015-12-26T03:56:13Z ACE_Recliner joined #lisp 2015-12-26T03:56:20Z Guest20174 quit (Ping timeout: 260 seconds) 2015-12-26T04:00:14Z Guest20174 joined #lisp 2015-12-26T04:02:17Z nicdev joined #lisp 2015-12-26T04:11:10Z karswell` quit (Remote host closed the connection) 2015-12-26T04:11:15Z LiamH quit (Ping timeout: 265 seconds) 2015-12-26T04:26:50Z antonv joined #lisp 2015-12-26T04:35:35Z ACE_Recliner quit (Ping timeout: 264 seconds) 2015-12-26T04:36:17Z ACE_Recliner joined #lisp 2015-12-26T04:37:15Z fsmunoz quit (Ping timeout: 240 seconds) 2015-12-26T04:40:09Z cyphase_ joined #lisp 2015-12-26T04:40:35Z cyphase_ quit (Read error: Connection reset by peer) 2015-12-26T04:46:48Z muyinliu quit (Quit: Textual IRC Client: www.textualapp.com) 2015-12-26T04:47:28Z BitPuffin|osx quit (Remote host closed the connection) 2015-12-26T05:01:47Z synergistics quit (Remote host closed the connection) 2015-12-26T05:04:54Z araujo quit (Ping timeout: 265 seconds) 2015-12-26T05:05:51Z araujo joined #lisp 2015-12-26T05:06:15Z badkins joined #lisp 2015-12-26T05:08:20Z Meow-J joined #lisp 2015-12-26T05:08:54Z Petit_Dejeuner joined #lisp 2015-12-26T05:09:40Z namra joined #lisp 2015-12-26T05:11:08Z badkins quit (Ping timeout: 256 seconds) 2015-12-26T05:19:55Z dandersen joined #lisp 2015-12-26T05:21:06Z ACE_Recliner quit (Ping timeout: 240 seconds) 2015-12-26T05:21:36Z pwnie joined #lisp 2015-12-26T05:22:03Z pwnie quit (Changing host) 2015-12-26T05:22:04Z pwnie joined #lisp 2015-12-26T05:26:23Z cmack joined #lisp 2015-12-26T05:26:36Z FreeBirdLjj quit (Remote host closed the connection) 2015-12-26T05:27:35Z PlasmaStar quit (Ping timeout: 240 seconds) 2015-12-26T05:30:55Z cmack quit (Ping timeout: 240 seconds) 2015-12-26T05:32:12Z PlasmaStar joined #lisp 2015-12-26T05:39:01Z pwnie quit (Quit: = "") 2015-12-26T05:41:45Z arescorpio quit (Quit: Leaving.) 2015-12-26T05:48:30Z sjl joined #lisp 2015-12-26T05:54:02Z sjl quit (Ping timeout: 276 seconds) 2015-12-26T05:58:15Z ACE_Recliner joined #lisp 2015-12-26T05:58:17Z cmhobbs joined #lisp 2015-12-26T05:58:32Z cmhobbs left #lisp 2015-12-26T06:12:13Z wglb quit (Remote host closed the connection) 2015-12-26T06:12:22Z wglb joined #lisp 2015-12-26T06:13:28Z Petit_Dejeuner quit (Ping timeout: 256 seconds) 2015-12-26T06:16:34Z namra quit (Quit: WeeChat 1.3) 2015-12-26T06:16:47Z ryan1 quit (Ping timeout: 276 seconds) 2015-12-26T06:25:57Z sgt_baker joined #lisp 2015-12-26T06:39:50Z pwnie joined #lisp 2015-12-26T06:42:51Z Kazlock joined #lisp 2015-12-26T06:49:09Z sjl joined #lisp 2015-12-26T06:52:22Z k-stz quit (Remote host closed the connection) 2015-12-26T06:54:12Z sjl quit (Ping timeout: 264 seconds) 2015-12-26T06:55:01Z namra joined #lisp 2015-12-26T06:55:59Z edgar-rft quit (Quit: edgar-rft) 2015-12-26T06:58:37Z resttime quit (Read error: Connection timed out) 2015-12-26T07:03:56Z resttime joined #lisp 2015-12-26T07:06:14Z DANtheBEASTman quit (Quit: I hate quit messages.) 2015-12-26T07:09:26Z moore33 joined #lisp 2015-12-26T07:10:08Z moore33: beach: I managed to tag version 0.0.0 of https://github.com/timoore/lpsg last night... 2015-12-26T07:11:11Z beach: Great! 2015-12-26T07:12:05Z DANtheBEASTman joined #lisp 2015-12-26T07:12:27Z beach: Not huge. 2015-12-26T07:13:35Z moore33: It doesn't do much yet, but I wanted to get my ideas out there at least. I need to do a couple of more days hacking so that I can 1) create multiple shapes and 2) delete them from the renderer. 2015-12-26T07:14:17Z beach: Sounds good. I will definitely have a look at the code and try the example. 2015-12-26T07:14:23Z Meow-J quit (Quit: Connection closed for inactivity) 2015-12-26T07:17:09Z beach: Where does one get "mathkit"? 2015-12-26T07:17:35Z beach: The other dependencies are available in Quicklisp. 2015-12-26T07:18:06Z DANtheBEASTman left #lisp 2015-12-26T07:18:29Z moore33: I thought I got it from Quicklisp, but otherwise https://github.com/lispgames/mathkit 2015-12-26T07:19:29Z pwnie quit (Quit: = "") 2015-12-26T07:19:38Z moore33: Yeah, quicklisp. 2015-12-26T07:19:47Z beach: Hmm. 2015-12-26T07:20:16Z beach: OK, worked. :mathkit didn't work, but "mathkit" did. 2015-12-26T07:21:28Z beach: In lpsg.asd, you should put something like (cl:in-package #:asdf-user) 2015-12-26T07:21:51Z moore33: I need to get used to Xach's wonderful invention. Whoops, you are correct. 2015-12-26T07:22:42Z beach: I get some warnings that you might want to fix: undefined function lpsg::ensure-description. 2015-12-26T07:22:51Z beach: And a bunch of style warnings. 2015-12-26T07:22:58Z moore33: "In my day, we didn't have no Quicklisp..." 2015-12-26T07:23:13Z moore33: beach: Yeah, WIP :) 2015-12-26T07:23:40Z beach: Manly unused variables. You may want to stick a (declare (ignore ...)) for those. 2015-12-26T07:24:35Z beach: Same in-package for lpsg-examples.asd 2015-12-26T07:25:57Z moore33: One thing I need to fix is that the declaration of usets, which is the means by which one sets variables in OpenGL shader programs, are done at compile/load time via forms that are similar to DEFCLASS, but that's not helpful if one creates a shader program at runtime (loads an example from the Internet :), which is a reasonable thing to want to do. 2015-12-26T07:27:08Z beach: Definitely. 2015-12-26T07:27:12Z cmack joined #lisp 2015-12-26T07:27:23Z wildlander quit (Quit: Saliendo) 2015-12-26T07:28:27Z beach: HEY IT WORKS!!!! 2015-12-26T07:28:46Z moore33: beach: But I do want usets to be CLOS objects, so I think I will need to depend on Closer-to-Mop or something to define new classes at runtime. 2015-12-26T07:28:54Z moore33: Congrats! My first user :) 2015-12-26T07:29:02Z beach: Thanks! :) 2015-12-26T07:29:07Z moore33: What hardware, by the way? 2015-12-26T07:29:17Z beach: I have no idea. 2015-12-26T07:29:20Z beach: How do I find out? 2015-12-26T07:29:29Z moore33: glxinfo 2015-12-26T07:29:51Z moore33: grep for "renderer string" 2015-12-26T07:30:10Z beach: Hold on, I need to install mesa-utils first. 2015-12-26T07:30:18Z moore33: Also "core profile version" would be good to know. 2015-12-26T07:30:25Z moore33: Yeah, you do :) 2015-12-26T07:30:41Z beach: OpenGL renderer string: GeForce GTS 450/PCIe/SSE2 2015-12-26T07:31:18Z beach: OpenGL core profile version string: 4.3.0 NVIDIA 340.96 2015-12-26T07:31:23Z moore33: Ah, ok, not to surprising that it works. 2015-12-26T07:31:27Z moore33: s/to/too 2015-12-26T07:31:35Z beach: How so? 2015-12-26T07:31:40Z beach: Is this good or bad? 2015-12-26T07:31:59Z beach: My hardware, that is. 2015-12-26T07:32:10Z cmack quit (Ping timeout: 260 seconds) 2015-12-26T07:32:18Z moore33: beach: Good from your point of view :) The hardware is more than capable, and I'm using the same driver, more or less. 2015-12-26T07:32:34Z moore33: You used to have some funky matrox thing :) 2015-12-26T07:32:35Z beach: OK, great. 2015-12-26T07:33:00Z beach: I guess I don't keep track. :( 2015-12-26T07:33:26Z moore33: Also, I could imagine that you would use the open-source driver, which is coming along but... 2015-12-26T07:34:11Z moore33: At one time I had this code working with CCL on Windows; need to check that again at some point. 2015-12-26T07:35:46Z beach: I want a PC with two 4K monitors, but nobody wants to build one for me. 2015-12-26T07:35:55Z beach: They say it can't be done. 2015-12-26T07:36:58Z moore33: That's odd. 2015-12-26T07:37:37Z beach: Well, that was a year or so ago. Maybe now it is possible. 2015-12-26T07:37:45Z moore33: beach: At all, or working with Linux? 2015-12-26T07:37:55Z beach: At all apparently. 2015-12-26T07:38:06Z moore33: I will need to ask Isaac about that :) 2015-12-26T07:38:11Z beach: Heh! 2015-12-26T07:38:21Z beach: They said no graphics card was able to do it. 2015-12-26T07:38:27Z beach: ... again at the time. 2015-12-26T07:38:35Z beach: But yes, please try to find out. 2015-12-26T07:39:01Z moore33: I can believe that, but you can put 2 cards in a machine. 2015-12-26T07:39:13Z beach: Do you want help setting up a Makefile etc, for LaTeX? It looked like you were planning to use it for the documentation. 2015-12-26T07:39:19Z moore33: But you might need to run them as two X screens. 2015-12-26T07:39:26Z beach: Yes, I don't want that. 2015-12-26T07:39:37Z beach: But I guess it would not be too bad. 2015-12-26T07:40:03Z beach: I rarely move a window from one monitor to another. Even less so with 2 4K monitors. :) 2015-12-26T07:40:08Z Bahman quit (Read error: Connection reset by peer) 2015-12-26T07:40:20Z moore33: beach: That is very much in flux. I am still undecided about whether to put all the docs in a README.md, generate docs from markdown, do the same thing from latex, or what. 2015-12-26T07:40:40Z Bahman joined #lisp 2015-12-26T07:40:57Z beach: OK. I have a pretty good pdflatex setup in case you decide on that. 2015-12-26T07:41:24Z beach: You will probably need something where you can include pictures etc. 2015-12-26T07:41:25Z moore33: I have really found it useful to be able to quickly google around for the docs of all the packages I'm using -- says the caveman as he emerges frozen from the glacier... 2015-12-26T07:41:56Z Guest59198 quit (Ping timeout: 276 seconds) 2015-12-26T07:43:48Z moore33: For example, Shinmera wrote the whole manual for qtools in the README: https://github.com/Shinmera/qtools. And that seems convenient for users. 2015-12-26T07:44:06Z beach: Sure, I see what you mean. 2015-12-26T07:44:52Z beach: moore33: I don't think it is useful for me to explore lpsg further at this point, right? But I will definitely follow what happens and give you feedback. 2015-12-26T07:45:30Z beach: Oh, and you should probably include installation instructions, like what Quicklisp stuff needs to be installed, and how to run the example. 2015-12-26T07:45:31Z moore33: beach: Probably not, unless you want to write the manual :) Just kidding, I will be improving the docs. 2015-12-26T07:46:05Z moore33: beach: Yes, will do. 2015-12-26T07:46:07Z beach: OK. This is very exciting! I am looking forward to improvements in code and documentation. 2015-12-26T07:47:04Z pwnie joined #lisp 2015-12-26T07:47:22Z moore33: beach: My vision for Climatis is to do all the rendering using lpsg shapes. The text would all be textures rendered on rectangles. 2015-12-26T07:47:41Z beach: That sounds great to me. 2015-12-26T07:49:52Z beach: Maybe even do the same thing for McCLIM one day. 2015-12-26T07:50:25Z vlatkoB joined #lisp 2015-12-26T07:52:06Z ssake quit (Ping timeout: 240 seconds) 2015-12-26T07:52:30Z beach senses the lack of enthusiasm. 2015-12-26T07:53:52Z Kazlock quit (Read error: Connection reset by peer) 2015-12-26T07:54:26Z ACE_Recliner quit (Ping timeout: 240 seconds) 2015-12-26T07:57:28Z moore33: Sorry, was getting dressed :) 2015-12-26T07:57:40Z jegaxd26 quit (Ping timeout: 245 seconds) 2015-12-26T07:57:52Z moore33: Do you think there's a point to that? 2015-12-26T07:58:10Z beach: Maybe. You don't? 2015-12-26T07:58:55Z kazlock joined #lisp 2015-12-26T08:00:05Z beach: Anyway, maybe not important at this point in time. 2015-12-26T08:00:39Z moore33: First, I think it would be a lot more work, though it has been a while since I looked at McClim and Climatis. 2015-12-26T08:01:38Z beach: Maybe so. Though I am planning to modify McCLIM so that it uses a single top-level window. 2015-12-26T08:01:57Z beach: That way, it will be easier to port to backends other than X11. 2015-12-26T08:03:08Z moore33: Second, I think it's more interesting to bring the good parts of McClim into Climatis. As far as compatibility with CLIM2 goes, in practice it's hard to achieve that compatibility with real applications; too many dependencies on stuff that's not well documented in the "standard." 2015-12-26T08:03:46Z beach: Yeah, you are probably right. 2015-12-26T08:08:28Z aap_ is now known as aap 2015-12-26T08:09:00Z moore33: off to eat breakfast; bbl 2015-12-26T08:15:23Z dandersen is now known as dkcl 2015-12-26T08:16:13Z mishoo__ joined #lisp 2015-12-26T08:16:45Z whiteline joined #lisp 2015-12-26T08:18:27Z clique joined #lisp 2015-12-26T08:24:31Z Warlock[29A] joined #lisp 2015-12-26T08:24:53Z clique quit (Quit: Page closed) 2015-12-26T08:26:56Z jchmrt quit (Ping timeout: 246 seconds) 2015-12-26T08:28:16Z prxq_ is now known as prxq 2015-12-26T08:29:45Z fantazo joined #lisp 2015-12-26T08:31:01Z jchmrt joined #lisp 2015-12-26T08:33:32Z prxq quit (Remote host closed the connection) 2015-12-26T08:42:12Z prxq joined #lisp 2015-12-26T08:42:15Z jchmrt quit (Ping timeout: 245 seconds) 2015-12-26T08:43:23Z jchmrt joined #lisp 2015-12-26T08:49:57Z sjl joined #lisp 2015-12-26T08:53:58Z jegaxd26 joined #lisp 2015-12-26T08:54:34Z sjl quit (Ping timeout: 250 seconds) 2015-12-26T08:54:59Z tcr joined #lisp 2015-12-26T08:58:48Z jegaxd26 quit (Ping timeout: 255 seconds) 2015-12-26T08:59:02Z Bahman quit (Read error: Connection reset by peer) 2015-12-26T09:07:12Z cadadar joined #lisp 2015-12-26T09:08:20Z Bahman joined #lisp 2015-12-26T09:09:26Z manuel_ joined #lisp 2015-12-26T09:10:27Z oleo_ quit (Remote host closed the connection) 2015-12-26T09:11:32Z ajf- joined #lisp 2015-12-26T09:15:22Z oleo joined #lisp 2015-12-26T09:15:22Z oleo quit (Changing host) 2015-12-26T09:15:22Z oleo joined #lisp 2015-12-26T09:28:02Z cmack joined #lisp 2015-12-26T09:30:07Z manuel_ quit (Quit: manuel_) 2015-12-26T09:31:43Z Bahman quit (Quit: Ave atque vale) 2015-12-26T09:32:42Z cmack quit (Ping timeout: 250 seconds) 2015-12-26T09:36:22Z namra quit (Read error: Connection reset by peer) 2015-12-26T09:37:48Z manuel_ joined #lisp 2015-12-26T09:40:14Z cadadar quit (Ping timeout: 276 seconds) 2015-12-26T09:44:08Z Xach_ joined #lisp 2015-12-26T09:45:35Z Xach quit (Ping timeout: 240 seconds) 2015-12-26T09:52:06Z resttime quit (Quit: Leaving) 2015-12-26T09:52:36Z fantazo quit (Quit: Verlassend) 2015-12-26T09:53:44Z mishoo__ quit (Ping timeout: 246 seconds) 2015-12-26T09:54:57Z jegaxd26 joined #lisp 2015-12-26T09:57:28Z manuel_ quit (Quit: manuel_) 2015-12-26T09:59:44Z jegaxd26 quit (Ping timeout: 265 seconds) 2015-12-26T10:00:31Z cadadar joined #lisp 2015-12-26T10:00:45Z malbertife joined #lisp 2015-12-26T10:03:04Z jegaxd26 joined #lisp 2015-12-26T10:10:13Z namra joined #lisp 2015-12-26T10:13:29Z pwnie quit (Ping timeout: 255 seconds) 2015-12-26T10:16:00Z Mon_Ouie joined #lisp 2015-12-26T10:17:03Z Karl_Dscc joined #lisp 2015-12-26T10:19:29Z vydd quit (Remote host closed the connection) 2015-12-26T10:22:07Z vydd joined #lisp 2015-12-26T10:27:22Z ajf- quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-12-26T10:31:00Z cadadar quit (Quit: Leaving.) 2015-12-26T10:36:47Z lurker joined #lisp 2015-12-26T10:36:47Z pwnie joined #lisp 2015-12-26T10:41:20Z cadadar joined #lisp 2015-12-26T10:44:13Z defaultxr quit (Quit: defaultxr) 2015-12-26T10:46:35Z gravicappa joined #lisp 2015-12-26T10:50:45Z sjl joined #lisp 2015-12-26T10:55:28Z sjl quit (Ping timeout: 250 seconds) 2015-12-26T10:57:47Z phoe_krk: morning 2015-12-26T10:58:15Z lurker: morning 2015-12-26T10:58:35Z zacharias joined #lisp 2015-12-26T11:00:46Z beach: Hello phoe_krk. 2015-12-26T11:00:47Z beach: Hello lurker. 2015-12-26T11:01:07Z lurker: Hie beach. 2015-12-26T11:01:48Z moei quit (Quit: Leaving...) 2015-12-26T11:02:27Z beach: I wrote the following CLIM demo just for kicks: https://github.com/robert-strandh/CLIM-demo-adventure 2015-12-26T11:02:53Z beach: I will add more GUIs to it, each one with more CLIM features being used. 2015-12-26T11:03:11Z beach: With version 1 of the GUI, the entire application is 170 lines long. 2015-12-26T11:03:18Z vydd: hello 2015-12-26T11:03:27Z beach: Hello vydd. 2015-12-26T11:05:13Z beach: I also intend to write full documentation, and lots of comments, explaining exactly what features of CLIM are used and what the effect is. 2015-12-26T11:05:28Z vydd: beach: neat! I keep postponing studying CLIM, short examples like that are welcome 2015-12-26T11:06:25Z beach: Thanks. Yes, they can't hurt. 2015-12-26T11:09:12Z beach: I picked an application that I hope most people will recognize as an ancient computer game. That way, I don't need to explain what the application does. 2015-12-26T11:09:20Z sgt_baker quit (Ping timeout: 250 seconds) 2015-12-26T11:10:14Z beach: I am wiped out and I need a break. I'll be back later. 2015-12-26T11:10:29Z vydd: later! 2015-12-26T11:14:56Z sid_cypher: ooh, more OpenGL stuff. 2015-12-26T11:16:00Z sid_cypher: moore33: i've tried "lpsg", had to pull in "glop" dependency manually for the cube.lisp example :) 2015-12-26T11:16:45Z sid_cypher: unfortunally, windows contents were not drawn, got # 2015-12-26T11:19:04Z jtza8 joined #lisp 2015-12-26T11:21:33Z FreeBirdLjj joined #lisp 2015-12-26T11:25:35Z attila_lendvai joined #lisp 2015-12-26T11:25:35Z attila_lendvai quit (Changing host) 2015-12-26T11:25:35Z attila_lendvai joined #lisp 2015-12-26T11:25:43Z sid_cypher: oh, shader compile errors, i'm using Mesa's "OpenGL ES GLSL ES 3.00" and thats probably different from nVidia's 2015-12-26T11:27:42Z chrpape joined #lisp 2015-12-26T11:28:55Z cmack joined #lisp 2015-12-26T11:31:34Z chrpape quit (Client Quit) 2015-12-26T11:31:47Z cpape joined #lisp 2015-12-26T11:33:36Z cmack quit (Ping timeout: 240 seconds) 2015-12-26T11:38:59Z antonv quit (Ping timeout: 255 seconds) 2015-12-26T11:39:23Z cadadar quit (Quit: Leaving.) 2015-12-26T11:39:44Z puchacz joined #lisp 2015-12-26T11:39:47Z Bicyclidine quit (Ping timeout: 265 seconds) 2015-12-26T11:50:16Z kazlock quit (Remote host closed the connection) 2015-12-26T11:51:24Z synchromesh: moore33: Have you seen Chris Bagley's Varjo (https://github.com/cbaggers/varjo)? 2015-12-26T11:52:12Z hiroakip joined #lisp 2015-12-26T11:53:19Z puchacz quit (Quit: Konversation terminated!) 2015-12-26T11:54:11Z puchacz joined #lisp 2015-12-26T11:56:47Z futpib joined #lisp 2015-12-26T11:57:07Z cpape quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-12-26T11:59:55Z jtza8 quit (Ping timeout: 240 seconds) 2015-12-26T12:00:21Z mac_ified quit 2015-12-26T12:05:30Z smokeink quit (Ping timeout: 272 seconds) 2015-12-26T12:06:23Z dandersen joined #lisp 2015-12-26T12:06:24Z Bicyclidine joined #lisp 2015-12-26T12:07:04Z dkcl quit (Ping timeout: 256 seconds) 2015-12-26T12:08:16Z cadadar joined #lisp 2015-12-26T12:08:44Z dandersen is now known as dkcl 2015-12-26T12:08:45Z AlphaAtom joined #lisp 2015-12-26T12:09:26Z cadadar quit (Client Quit) 2015-12-26T12:12:40Z smokeink joined #lisp 2015-12-26T12:23:15Z pwnie quit (Ping timeout: 260 seconds) 2015-12-26T12:23:28Z Nikotiini joined #lisp 2015-12-26T12:24:47Z atgreen joined #lisp 2015-12-26T12:37:04Z Trioxin joined #lisp 2015-12-26T12:37:47Z Trioxin: is LispWorks a competently managed and useful up to date product? 2015-12-26T12:40:46Z synchromesh: Trioxin: Yes. 2015-12-26T12:41:22Z Tyrius joined #lisp 2015-12-26T12:41:30Z synchromesh: Trioxin: And I say that as someone who pays for an annual maintenance contract with LispWorks. 2015-12-26T12:41:38Z Tyrius: hi 2015-12-26T12:42:00Z Tyrius: how can I input something into a list 2015-12-26T12:42:17Z phoe_krk: Tyrius: define input. 2015-12-26T12:42:33Z phoe_krk: What does your list look like before you input, and after you input? 2015-12-26T12:42:35Z Tyrius: (push bf (read)) doesn't work and I don't want text so I can't use read-line 2015-12-26T12:43:16Z Tyrius: bf is nil -> (defvar bf ()) 2015-12-26T12:43:45Z Tyrius: i'm just beginning with lisp sorry if this sounds stupid 2015-12-26T12:44:34Z ajf- joined #lisp 2015-12-26T12:44:39Z Tyrius: or is there a function to convert a string to a name ? 2015-12-26T12:45:11Z phoe_krk: Tyrius: don't worry about being a beginner, everyone was there at some point. 2015-12-26T12:45:34Z phoe_krk: there are, but I don't have the time to answer you right now; I need to pay some attention to real life. 2015-12-26T12:46:06Z ajf- quit (Client Quit) 2015-12-26T12:47:06Z synchromesh: Tyrius: If you haven't yet, you should check out Peter Siebel's book (http://www.gigamonkeys.com/book/). It explains the basics pretty well. 2015-12-26T12:47:17Z phoe_krk: oh yes! Practical Common Lisp. 2015-12-26T12:49:52Z zotherstupidguy quit (Ping timeout: 265 seconds) 2015-12-26T12:50:40Z synchromesh: "Every #lisp answer to a newbie question contains an ad-hoc, incomplete, bug-ridden account of material from PCL" - me paraphrasing Greenspun's 10th Rule (http://philip.greenspun.com/bboard/q-and-a-fetch-msg?msg_id=000tgU) 2015-12-26T12:51:30Z ggole joined #lisp 2015-12-26T12:51:32Z sjl joined #lisp 2015-12-26T12:51:36Z zotherstupidguy joined #lisp 2015-12-26T12:54:38Z puchacz quit (Quit: Konversation terminated!) 2015-12-26T12:55:20Z kobain joined #lisp 2015-12-26T12:56:12Z ajf- joined #lisp 2015-12-26T12:56:24Z sjl quit (Ping timeout: 255 seconds) 2015-12-26T12:56:37Z p_l: Tyrius: also, when it comes to symbolic manipulation, I really recommend Simple Introduction to Symbolic Computation, purely because of the informative illustrations 2015-12-26T12:57:03Z Einwq joined #lisp 2015-12-26T12:57:51Z p_l: slightly related: https://twitter.com/RainerJoswig/status/680697735272611840 2015-12-26T12:58:05Z puchacz joined #lisp 2015-12-26T12:58:28Z p_l: I bet source of that Hypadapter is lost, but a new application like that would be awesome 2015-12-26T12:59:36Z synchromesh: Yes, internalising those cons cell diagrams is an important milestone in the path to grokking Lisp. 2015-12-26T13:02:14Z atgreen quit (Ping timeout: 255 seconds) 2015-12-26T13:03:13Z anderoonies joined #lisp 2015-12-26T13:06:48Z atgreen joined #lisp 2015-12-26T13:07:52Z EvW joined #lisp 2015-12-26T13:11:49Z zotherstupidguy: [-] 2015-12-26T13:13:03Z warweasle joined #lisp 2015-12-26T13:20:23Z anderoonies quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-12-26T13:23:14Z pwnie joined #lisp 2015-12-26T13:26:26Z mau joined #lisp 2015-12-26T13:26:33Z beach: Tyrius: Try (push (read) bf) 2015-12-26T13:26:38Z LiamH joined #lisp 2015-12-26T13:26:39Z beach: clhs push 2015-12-26T13:26:39Z specbot: http://www.lispworks.com/reference/HyperSpec/Body/m_push.htm 2015-12-26T13:27:16Z beach: Tyrius: As you can see on that ↑ page, the item to push is the first argument. 2015-12-26T13:27:51Z Aiwass joined #lisp 2015-12-26T13:29:42Z cmack joined #lisp 2015-12-26T13:34:30Z cmack quit (Ping timeout: 250 seconds) 2015-12-26T13:36:06Z Yuuhi quit (Remote host closed the connection) 2015-12-26T13:36:55Z hiroakip quit (Ping timeout: 240 seconds) 2015-12-26T13:40:38Z zupoman joined #lisp 2015-12-26T13:50:05Z Aiwass quit (Remote host closed the connection) 2015-12-26T13:52:14Z sjl joined #lisp 2015-12-26T13:52:26Z smokeink quit (Quit: leaving) 2015-12-26T13:57:36Z sjl quit (Ping timeout: 272 seconds) 2015-12-26T14:00:24Z smokeink joined #lisp 2015-12-26T14:02:49Z Joreji joined #lisp 2015-12-26T14:04:10Z josemanuel joined #lisp 2015-12-26T14:08:55Z FreeBirdLjj quit (Ping timeout: 245 seconds) 2015-12-26T14:08:57Z sz0 quit (Quit: Bye.) 2015-12-26T14:09:24Z sz0 joined #lisp 2015-12-26T14:09:50Z FreeBirdLjj joined #lisp 2015-12-26T14:11:13Z mau quit (Read error: Connection reset by peer) 2015-12-26T14:11:24Z Joreji quit (Ping timeout: 245 seconds) 2015-12-26T14:12:10Z mau joined #lisp 2015-12-26T14:12:40Z hydan joined #lisp 2015-12-26T14:17:29Z mau quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-12-26T14:24:07Z hardenedapple joined #lisp 2015-12-26T14:24:21Z Tyrius: beach: thanks it worked, so it was just a stupid mistake from me :p 2015-12-26T14:25:21Z hydan quit (Remote host closed the connection) 2015-12-26T14:26:41Z rememberYou joined #lisp 2015-12-26T14:26:49Z warweasle is now known as warweasle_doing_ 2015-12-26T14:27:01Z rememberYou: Hello, I don't really understand this command in LISP, maybe someone can exlain me it ? https://bpaste.net/show/c0ce24ea7d4a 2015-12-26T14:29:04Z beach: Is it Emacs Lisp? 2015-12-26T14:29:11Z beach: This channel is dedicated to Common Lisp. 2015-12-26T14:29:30Z beach: You are better off asking in a channel for Emacs. 2015-12-26T14:30:22Z rememberYou: Thank you for the advice and sorry for the disturb then. Merry Christmas. 2015-12-26T14:30:24Z rememberYou left #lisp 2015-12-26T14:32:18Z mishoo joined #lisp 2015-12-26T14:33:26Z warweasle_doing_ is now known as warweasle_gocart 2015-12-26T14:39:24Z Bicyclidine quit (Ping timeout: 272 seconds) 2015-12-26T14:40:30Z josemanuel quit (Quit: Saliendo) 2015-12-26T14:41:24Z cyraxjoe_ joined #lisp 2015-12-26T14:42:34Z cyraxjoe quit (Ping timeout: 272 seconds) 2015-12-26T14:44:46Z namra quit (Quit: WeeChat 1.3) 2015-12-26T14:51:58Z jegaxd26 quit (Ping timeout: 256 seconds) 2015-12-26T14:54:18Z EvW quit (Ping timeout: 255 seconds) 2015-12-26T14:56:06Z moore33: sid_cypher: OpenGL ES is definitely not supported, though I am interested in that in the future. What platform are you running on? 2015-12-26T14:57:16Z moore33: Also, apologies for not managing all the quicklisp stuff better. 2015-12-26T14:59:48Z phax joined #lisp 2015-12-26T15:02:27Z nyef: G'morning all. 2015-12-26T15:03:57Z nyef: beach: You're doing a text adventure game in CLIM? 2015-12-26T15:04:03Z beach: Hello nyef. 2015-12-26T15:04:20Z beach: nyef: Yes, but not for the game itself. As a demo of CLIM features. 2015-12-26T15:04:36Z nyef: Neat. 2015-12-26T15:04:53Z beach: I was looking for some application that most people would understand so that I didn't have to explain it. 2015-12-26T15:05:01Z nyef: I'm reminded of http://lisphacker.com/projects/pretzil/ (which is almost ten years old now, how time flies!) 2015-12-26T15:05:34Z nyef: I think I ended up finding an McCLIM bug with PRETZIL. 2015-12-26T15:05:47Z Joreji joined #lisp 2015-12-26T15:05:50Z beach: Interesting. 2015-12-26T15:06:18Z warweasle_gocart is now known as warweasle 2015-12-26T15:07:34Z beach: nyef: Yes, I am very well aware of how time flies, and that is part of the reason I am trying to turn whatever code I have into usable chunks with tests and documentation. 2015-12-26T15:08:06Z atgreen quit (Ping timeout: 265 seconds) 2015-12-26T15:12:38Z skali joined #lisp 2015-12-26T15:14:36Z skali quit (Client Quit) 2015-12-26T15:16:17Z tcr quit (Quit: Leaving.) 2015-12-26T15:17:06Z sid_cypher: moore33: I ran your code on linux 4.3.0, x86_64, free "radeon" drivers with Gallium Mesa 2015-12-26T15:17:11Z skali joined #lisp 2015-12-26T15:17:42Z shka joined #lisp 2015-12-26T15:19:43Z moore33: sid_cypher: Good data point. Did you get that string out of glxinfo? I would be interested to see if you are really getting an ES context; in any event, the demo shaders require OpenGL 3.3. You might get it to work by bumping the version numbers down. 2015-12-26T15:20:06Z moore33: synchromesh: Thanks for the pointer. I've seen 3b's efforts in the same direction. 2015-12-26T15:20:09Z atgreen joined #lisp 2015-12-26T15:20:50Z sid_cypher: moore33: glxinfo says "OpenGL renderer string: Gallium 0.4 on AMD CEDAR (DRM 2.43.0, LLVM 3.7.0)", more info in PM :) 2015-12-26T15:22:56Z synchromesh: moore33: No problem. I don't know how much Chris's CEPL overlaps with your intentions (https://github.com/cbaggers/cepl). 2015-12-26T15:23:00Z sjl joined #lisp 2015-12-26T15:23:15Z Wojciech_K joined #lisp 2015-12-26T15:24:03Z synchromesh: But he was at ELS '15 and seemed like a nice chap. 2015-12-26T15:24:27Z pwnie quit (Read error: Connection reset by peer) 2015-12-26T15:25:00Z pwnie joined #lisp 2015-12-26T15:26:03Z phax quit (Quit: phax) 2015-12-26T15:27:10Z skali quit (Quit: WeeChat 1.3) 2015-12-26T15:27:35Z sjl quit (Ping timeout: 240 seconds) 2015-12-26T15:28:10Z AlphaAtom quit (Ping timeout: 260 seconds) 2015-12-26T15:28:37Z moore33: synchromesh: I have seen videos of that, I think; lpsg has a somewhat different emphasis. 2015-12-26T15:28:59Z skali joined #lisp 2015-12-26T15:29:49Z moei joined #lisp 2015-12-26T15:30:31Z cmack joined #lisp 2015-12-26T15:32:26Z skali quit (Client Quit) 2015-12-26T15:32:46Z puchacz quit (Quit: Konversation terminated!) 2015-12-26T15:32:56Z skali joined #lisp 2015-12-26T15:34:38Z puchacz joined #lisp 2015-12-26T15:35:10Z cmack quit (Ping timeout: 260 seconds) 2015-12-26T15:37:33Z lurker: Can you share videos of the last ELS? i don't find them on youtube; maybe are they shared on the more free platform... 2015-12-26T15:37:46Z grouzen quit (Ping timeout: 240 seconds) 2015-12-26T15:38:24Z beach: They may not be out there yet. 2015-12-26T15:38:35Z lurker: ok thanks. 2015-12-26T15:40:58Z Bicyclidine joined #lisp 2015-12-26T15:41:12Z zacharias_ joined #lisp 2015-12-26T15:41:27Z sjl joined #lisp 2015-12-26T15:41:33Z tcr joined #lisp 2015-12-26T15:43:10Z EvW joined #lisp 2015-12-26T15:44:38Z zacharias quit (Ping timeout: 272 seconds) 2015-12-26T15:45:16Z pwnie quit (Quit: = "") 2015-12-26T15:46:29Z Joreji quit (Ping timeout: 255 seconds) 2015-12-26T15:47:46Z pwnie joined #lisp 2015-12-26T15:48:20Z ajf- quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-12-26T15:48:24Z gravicappa quit (Remote host closed the connection) 2015-12-26T15:55:17Z badkins joined #lisp 2015-12-26T15:57:39Z znpy joined #lisp 2015-12-26T16:06:57Z k-stz joined #lisp 2015-12-26T16:08:16Z grouzen joined #lisp 2015-12-26T16:08:26Z sjl quit (Ping timeout: 240 seconds) 2015-12-26T16:08:53Z Karl_Dscc quit (Remote host closed the connection) 2015-12-26T16:09:01Z attila_lendvai quit (Read error: Connection reset by peer) 2015-12-26T16:09:38Z yuankode joined #lisp 2015-12-26T16:11:45Z attila_lendvai joined #lisp 2015-12-26T16:11:45Z attila_lendvai quit (Changing host) 2015-12-26T16:11:45Z attila_lendvai joined #lisp 2015-12-26T16:13:43Z phax joined #lisp 2015-12-26T16:14:40Z phax quit (Client Quit) 2015-12-26T16:16:51Z voidengineer joined #lisp 2015-12-26T16:17:34Z hardenedapple quit (Quit: WeeChat 1.3) 2015-12-26T16:19:42Z AntiSpamMeta quit (Quit: going down for database migration) 2015-12-26T16:23:42Z schaueho joined #lisp 2015-12-26T16:24:39Z varjagg joined #lisp 2015-12-26T16:24:44Z znpy quit (Ping timeout: 245 seconds) 2015-12-26T16:28:07Z maxxcan joined #lisp 2015-12-26T16:28:15Z maxxcan left #lisp 2015-12-26T16:30:07Z smokeink quit (Remote host closed the connection) 2015-12-26T16:30:55Z s00pcan_ quit (Remote host closed the connection) 2015-12-26T16:31:07Z s00pcan_ joined #lisp 2015-12-26T16:34:56Z happy-dude joined #lisp 2015-12-26T16:38:51Z tcr quit (Quit: Leaving.) 2015-12-26T16:39:26Z Demosthenex quit (Quit: leaving) 2015-12-26T16:41:10Z Mon_Ouie quit (Quit: WeeChat 1.3) 2015-12-26T16:42:15Z constantinexvi quit (Ping timeout: 260 seconds) 2015-12-26T16:42:50Z brucem quit (Ping timeout: 260 seconds) 2015-12-26T16:43:35Z |3b| quit (Ping timeout: 240 seconds) 2015-12-26T16:43:36Z zymurgy quit (Ping timeout: 240 seconds) 2015-12-26T16:43:39Z GGMethos quit (Ping timeout: 255 seconds) 2015-12-26T16:43:59Z trn quit (Ping timeout: 260 seconds) 2015-12-26T16:45:10Z badkins quit (Remote host closed the connection) 2015-12-26T16:49:30Z sjl joined #lisp 2015-12-26T16:51:28Z |3b| joined #lisp 2015-12-26T16:52:55Z constantinexvi joined #lisp 2015-12-26T16:53:11Z brucem joined #lisp 2015-12-26T16:53:38Z attila_lendvai: LiamH: hi! is it ok for this to return nil? (libffi-type-pointer (parse-type return-type)) 2015-12-26T16:54:11Z LiamH: attila_lendvai: Hi. Not sure, let me look 2015-12-26T16:54:14Z sjl__ joined #lisp 2015-12-26T16:54:15Z trn joined #lisp 2015-12-26T16:54:16Z attila_lendvai: LiamH: if it is, then the nil needs to be translated to NULL. if not, then I'm lost 2015-12-26T16:54:50Z attila_lendvai: LiamH: this is the type, which parses properly: (cffi::parse-type '(:POINTER HU.DWIM.SDL.FFI::|SDL_Surface|)) 2015-12-26T16:55:03Z attila_lendvai: i.e. it's a pointer type already 2015-12-26T16:55:38Z attila_lendvai tries to reproduce it in the cffi tests 2015-12-26T16:55:42Z LiamH: I think probably not 2015-12-26T16:55:44Z Meek: https://usercontent.irccloud-cdn.com/file/1KGvjfGC/IMG_0061.JPG 2015-12-26T16:55:55Z badkins joined #lisp 2015-12-26T16:55:56Z LiamH: I think it should always return a pointer. 2015-12-26T16:56:16Z LiamH: It is a pointer that points to a libffi type. 2015-12-26T16:57:12Z sjl quit (Ping timeout: 264 seconds) 2015-12-26T16:58:39Z phax joined #lisp 2015-12-26T16:58:47Z phax quit (Remote host closed the connection) 2015-12-26T16:58:54Z LiamH: attila_lendvai: So maybe the (T) method of libffi-type-pointer should check the return from gethash and signal an error if it's nil. 2015-12-26T17:00:09Z LiamH: In some cases, like the foreign-struct-type method, it will call set-libffi-type-pointer if it isn't in the hash table, so you shouldn't get a nil return from that. 2015-12-26T17:00:51Z dandersen joined #lisp 2015-12-26T17:01:02Z LiamH: :pointer should definitely be in the hash table, that's a built-in 2015-12-26T17:01:50Z madalu joined #lisp 2015-12-26T17:01:54Z badkins quit (Remote host closed the connection) 2015-12-26T17:03:01Z dandersen quit (Remote host closed the connection) 2015-12-26T17:03:01Z dkcl quit (Remote host closed the connection) 2015-12-26T17:03:53Z |3b|` joined #lisp 2015-12-26T17:04:08Z ajf- joined #lisp 2015-12-26T17:04:08Z LiamH: The libffi library has a bunch of defined symbols for e.g. int, float, etc. The libffi-type-pointer gets the pointer into that library for all those types, or for those of the user-defined structures. So nil doesn't make any sense as a return value. 2015-12-26T17:04:09Z |3b| quit (Remote host closed the connection) 2015-12-26T17:04:09Z attila_lendvai: LiamH: I have a test in cffi, will look into a fix now. probably the type needs to be simplified somewhere to a simple :pointer 2015-12-26T17:04:44Z LiamH: Yeah, the return value should be identical to what :pointer returns. The type of pointer doesn't matter. 2015-12-26T17:05:20Z dkcl joined #lisp 2015-12-26T17:05:47Z LiamH: I should say, the thing type of the thing the pointer points to doesn't matter. 2015-12-26T17:07:47Z sbryant quit (Ping timeout: 260 seconds) 2015-12-26T17:07:47Z sshirokov quit (Ping timeout: 260 seconds) 2015-12-26T17:08:26Z mordocai quit (Ping timeout: 240 seconds) 2015-12-26T17:09:05Z zbigniew quit (Ping timeout: 260 seconds) 2015-12-26T17:10:32Z sgt_baker joined #lisp 2015-12-26T17:11:56Z z80 joined #lisp 2015-12-26T17:12:32Z warweasle quit (Quit: Christmas party to get ready for!) 2015-12-26T17:12:42Z GGMethos joined #lisp 2015-12-26T17:13:06Z badkins joined #lisp 2015-12-26T17:13:07Z z80 is now known as BWV989 2015-12-26T17:13:44Z mordocai joined #lisp 2015-12-26T17:13:46Z sbryant joined #lisp 2015-12-26T17:13:59Z sshirokov joined #lisp 2015-12-26T17:14:11Z pwnie quit (Quit: = "") 2015-12-26T17:14:49Z k4rtik quit (Quit: Leaving) 2015-12-26T17:16:03Z zbigniew joined #lisp 2015-12-26T17:16:08Z BWV989 is now known as BWV565 2015-12-26T17:16:22Z Tyrius quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-12-26T17:17:24Z nidhogg joined #lisp 2015-12-26T17:17:55Z nidhogg quit (Client Quit) 2015-12-26T17:18:26Z skali quit (Quit: WeeChat 1.3) 2015-12-26T17:19:00Z j0ni quit (Ping timeout: 272 seconds) 2015-12-26T17:19:46Z nidhogg joined #lisp 2015-12-26T17:19:57Z nidhogg: \quit 2015-12-26T17:19:57Z nidhogg left #lisp 2015-12-26T17:20:23Z attila_lendvai: LiamH: using pointers in that hashtable only works because of ";; A bit of premature optimization here." applied to void* :) 2015-12-26T17:20:40Z attila_lendvai: LiamH: I'll push the fix in a moment, just record some comments 2015-12-26T17:21:53Z attila_lendvai: I think I'll actually skip parse-type there and just put :pointer into the cache 2015-12-26T17:21:56Z shka quit (Quit: Konversation terminated!) 2015-12-26T17:21:57Z Guest69973 joined #lisp 2015-12-26T17:24:10Z BWV565 is now known as RV522 2015-12-26T17:25:44Z shka_ joined #lisp 2015-12-26T17:26:06Z Guest69973 quit (Ping timeout: 240 seconds) 2015-12-26T17:26:36Z sjl__ quit (Ping timeout: 272 seconds) 2015-12-26T17:27:16Z j0ni joined #lisp 2015-12-26T17:28:49Z RV522 quit (Ping timeout: 252 seconds) 2015-12-26T17:29:33Z LiamH: attila_lendvai: Oh phew, I didn't write those words :-) 2015-12-26T17:29:49Z jtza8 joined #lisp 2015-12-26T17:30:10Z attila_lendvai: LiamH: I know :) I'll just use :pointer as key in the cache to be on the safe side 2015-12-26T17:30:41Z LiamH: I was worried it was a hack I had put in. 2015-12-26T17:30:45Z shka_ quit (Remote host closed the connection) 2015-12-26T17:31:15Z FreeBirdLjj quit (Ping timeout: 240 seconds) 2015-12-26T17:31:21Z cmack joined #lisp 2015-12-26T17:34:18Z shka_ joined #lisp 2015-12-26T17:35:55Z cmack quit (Ping timeout: 240 seconds) 2015-12-26T17:38:20Z shka_ quit (Remote host closed the connection) 2015-12-26T17:40:13Z attila_lendvai: LiamH: you mean the whole fsvb? nah! at least you did it while everyone else didn't do it... :) 2015-12-26T17:40:24Z emma quit (Ping timeout: 264 seconds) 2015-12-26T17:40:28Z shka_ joined #lisp 2015-12-26T17:40:49Z attila_lendvai: and if I had to so this from zero, I'd... probably just not do it. 2015-12-26T17:42:59Z attila_lendvai: LiamH: isn't that whole cache non-threadsafe? those are malloc'd libffi struct's used for talking to libffi, right? 2015-12-26T17:45:52Z attila_lendvai: LiamH: ah, nm, I guess those are constants and as such doesn't matter 2015-12-26T17:46:16Z attila_lendvai: the only issue left then is that hashtable's are not threadsafe as-is 2015-12-26T17:48:23Z sz0 quit (Quit: Bye.) 2015-12-26T17:48:41Z sjl joined #lisp 2015-12-26T17:49:26Z phax joined #lisp 2015-12-26T17:50:23Z LiamH: No, I mean the specific comment you cited. 2015-12-26T17:51:34Z LiamH: There was some concern about threadsafety a while ago. 2015-12-26T17:51:54Z attila_lendvai: I hope you don't mind I'm messing around in it. I'm also recording comments at these places... 2015-12-26T17:51:58Z LiamH: I think 3b might have mentioned it, maybe even made an issue. 2015-12-26T17:52:34Z schaueho quit (Ping timeout: 272 seconds) 2015-12-26T17:53:03Z LiamH: My view is that it's not really important, the hash table is just used to cache definitions and if one is not there, it makes it and inserts it. So competing threads might end up trying to insert identical entries in the hash table, but so what? 2015-12-26T17:53:22Z LiamH: And keep in mind this is at compile time. 2015-12-26T17:53:51Z vydd quit (Ping timeout: 255 seconds) 2015-12-26T17:57:41Z dandersen joined #lisp 2015-12-26T17:58:05Z dkcl quit (Ping timeout: 245 seconds) 2015-12-26T17:58:37Z dandersen is now known as dkcl 2015-12-26T17:59:40Z dkcl quit (Read error: Connection reset by peer) 2015-12-26T17:59:56Z dkcl joined #lisp 2015-12-26T18:00:25Z sjl quit (Ping timeout: 260 seconds) 2015-12-26T18:01:02Z k-stz quit (Remote host closed the connection) 2015-12-26T18:02:06Z attila_lendvai: LiamH: concurrent access can corrupt the hashtable. but the fact that it's at compile time is a reasonable argument 2015-12-26T18:02:45Z k-stz joined #lisp 2015-12-26T18:02:46Z jself quit (Ping timeout: 240 seconds) 2015-12-26T18:06:10Z ajf- quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-12-26T18:08:37Z LiamH: There was some discussion about how to work around the problem, but I didn't find any convincing. 2015-12-26T18:10:30Z ggole quit 2015-12-26T18:11:23Z jself joined #lisp 2015-12-26T18:12:14Z ajf- joined #lisp 2015-12-26T18:12:56Z FreeBirdLjj joined #lisp 2015-12-26T18:13:18Z badkins quit (Remote host closed the connection) 2015-12-26T18:15:54Z fourier quit (Ping timeout: 255 seconds) 2015-12-26T18:16:37Z phax quit (Quit: phax) 2015-12-26T18:18:09Z EvW quit (Ping timeout: 255 seconds) 2015-12-26T18:21:50Z rtoym quit (Remote host closed the connection) 2015-12-26T18:23:36Z rtoym joined #lisp 2015-12-26T18:24:32Z shka_ quit (Remote host closed the connection) 2015-12-26T18:25:47Z shka_ joined #lisp 2015-12-26T18:25:58Z wildlander joined #lisp 2015-12-26T18:29:47Z shka_ quit (Remote host closed the connection) 2015-12-26T18:30:49Z shka_ joined #lisp 2015-12-26T18:32:28Z badkins joined #lisp 2015-12-26T18:37:32Z fourier joined #lisp 2015-12-26T18:39:07Z edgar-rft joined #lisp 2015-12-26T18:39:09Z MikeSeth: is weblocks dead? 2015-12-26T18:40:03Z mac_ified joined #lisp 2015-12-26T18:40:22Z jasom: MikeSeth: it's complicated 2015-12-26T18:40:44Z jasom: MikeSeth: people are using it still, but the documentation is hopelessly out-of-date 2015-12-26T18:41:00Z varjagg: probably not the best choice for a new project these days 2015-12-26T18:42:08Z jasom: varjagg: it depends on what you want. IMO it is still really good for doing simple CRUD apps, particularly if you want graceful fallback 2015-12-26T18:42:28Z jasom: it's very web 1.5 though 2015-12-26T18:44:19Z varjagg: well, i mean it has substantial learning curve, with dated docs and yes dated looks 2015-12-26T18:44:33Z AntiSpamMeta joined #lisp 2015-12-26T18:44:38Z varjagg: but if you are attracted to the concept of it, don't let me stop you by any means 2015-12-26T18:44:41Z Karl_Dscc joined #lisp 2015-12-26T18:45:02Z jasom: indeed. I like the concept of it, but ended up switching to a fairly simple clack-based backend and a react frontend 2015-12-26T18:45:32Z jasom: the sheer number of people using react means there's a lot more stuff available for it, and it's easy to use from parenscript 2015-12-26T18:46:46Z attila_lendvai: LiamH: pushed two fixes 2015-12-26T18:47:08Z nonopposition joined #lisp 2015-12-26T18:48:00Z dlowe quit (Remote host closed the connection) 2015-12-26T18:48:11Z dlowe joined #lisp 2015-12-26T18:50:00Z jself quit (Ping timeout: 264 seconds) 2015-12-26T18:50:11Z vydd joined #lisp 2015-12-26T18:51:17Z lurker left #lisp 2015-12-26T18:52:54Z zymurgy joined #lisp 2015-12-26T18:53:10Z attila_lendvai of course notices a small aesthetic after pushing... 2015-12-26T18:53:59Z jself joined #lisp 2015-12-26T18:54:58Z badkins quit (Remote host closed the connection) 2015-12-26T18:57:17Z vydd quit (Ping timeout: 276 seconds) 2015-12-26T18:59:44Z Denommus quit (Ping timeout: 246 seconds) 2015-12-26T19:00:22Z fourier quit (Ping timeout: 250 seconds) 2015-12-26T19:01:44Z MikeSeth: hrm 2015-12-26T19:01:53Z MikeSeth: yeah I am going to have trouble with weblocks 2015-12-26T19:02:14Z OrangeShark joined #lisp 2015-12-26T19:02:32Z EvW joined #lisp 2015-12-26T19:05:26Z francogrex joined #lisp 2015-12-26T19:14:07Z gravicappa joined #lisp 2015-12-26T19:17:04Z francogrex quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-12-26T19:19:35Z FreeBirdLjj quit (Ping timeout: 240 seconds) 2015-12-26T19:26:20Z Denommus joined #lisp 2015-12-26T19:26:26Z Denommus quit (Max SendQ exceeded) 2015-12-26T19:27:04Z Denommus joined #lisp 2015-12-26T19:27:10Z Denommus quit (Max SendQ exceeded) 2015-12-26T19:27:58Z Denommus joined #lisp 2015-12-26T19:32:12Z cmack joined #lisp 2015-12-26T19:33:41Z mikaelj_ quit (Remote host closed the connection) 2015-12-26T19:34:14Z cadadar joined #lisp 2015-12-26T19:34:15Z Wojciech_K quit (Read error: Connection reset by peer) 2015-12-26T19:35:11Z k-stz quit (Remote host closed the connection) 2015-12-26T19:35:35Z Denommus` joined #lisp 2015-12-26T19:37:12Z cmack quit (Ping timeout: 250 seconds) 2015-12-26T19:37:15Z Warlock[29A] quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2015-12-26T19:37:18Z k-stz joined #lisp 2015-12-26T19:37:53Z Denommus quit (Ping timeout: 246 seconds) 2015-12-26T19:45:47Z Denommus joined #lisp 2015-12-26T19:45:56Z vlatkoB_ joined #lisp 2015-12-26T19:48:02Z LiamH: attila_lendvai: Just got back and looking over your changes now 2015-12-26T19:48:55Z Denommus` quit (Ping timeout: 240 seconds) 2015-12-26T19:49:56Z vlatkoB quit (Ping timeout: 276 seconds) 2015-12-26T19:50:37Z manuel_ joined #lisp 2015-12-26T19:51:22Z emma joined #lisp 2015-12-26T19:51:22Z emma quit (Changing host) 2015-12-26T19:51:22Z emma joined #lisp 2015-12-26T19:51:27Z manuel_ quit (Client Quit) 2015-12-26T19:52:53Z FreeBirdLjj joined #lisp 2015-12-26T19:53:14Z PinealGlandOptic quit (Ping timeout: 250 seconds) 2015-12-26T19:56:39Z fourier joined #lisp 2015-12-26T20:01:06Z fourier quit (Ping timeout: 240 seconds) 2015-12-26T20:04:20Z EvW quit (Ping timeout: 255 seconds) 2015-12-26T20:06:15Z FreeBirdLjj quit (Ping timeout: 240 seconds) 2015-12-26T20:07:14Z ajf- quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-12-26T20:08:20Z defaultxr joined #lisp 2015-12-26T20:14:34Z Tyrius joined #lisp 2015-12-26T20:14:36Z Khisanth quit (Ping timeout: 264 seconds) 2015-12-26T20:18:29Z zacharias_ quit (Ping timeout: 245 seconds) 2015-12-26T20:21:41Z scymtym joined #lisp 2015-12-26T20:22:13Z cadadar left #lisp 2015-12-26T20:22:32Z heddwch is now known as Win98_laptop 2015-12-26T20:22:41Z Win98_laptop is now known as heddwch 2015-12-26T20:23:07Z tcr joined #lisp 2015-12-26T20:23:39Z |3b|` is now known as |3b| 2015-12-26T20:26:43Z antonv joined #lisp 2015-12-26T20:29:45Z Tyrius quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-12-26T20:31:56Z sz0 joined #lisp 2015-12-26T20:33:05Z zacharias_ joined #lisp 2015-12-26T20:33:59Z fantazo joined #lisp 2015-12-26T20:34:45Z Jonsky joined #lisp 2015-12-26T20:37:27Z Denommus quit (Remote host closed the connection) 2015-12-26T20:40:58Z EvW joined #lisp 2015-12-26T20:42:18Z Khisanth joined #lisp 2015-12-26T20:45:45Z fourier joined #lisp 2015-12-26T20:46:37Z Denommus joined #lisp 2015-12-26T20:46:46Z banjiewen quit (Ping timeout: 240 seconds) 2015-12-26T20:47:35Z bogdanm quit (Ping timeout: 260 seconds) 2015-12-26T20:48:06Z profess quit (Ping timeout: 240 seconds) 2015-12-26T20:48:47Z banjiewen joined #lisp 2015-12-26T20:49:15Z gravicappa quit (Ping timeout: 240 seconds) 2015-12-26T20:49:58Z profess joined #lisp 2015-12-26T20:50:03Z bogdanm joined #lisp 2015-12-26T20:51:46Z Meek quit (Ping timeout: 240 seconds) 2015-12-26T20:52:08Z Meek joined #lisp 2015-12-26T20:52:12Z Karl_Dscc quit (Remote host closed the connection) 2015-12-26T20:52:46Z k4rtik joined #lisp 2015-12-26T20:57:06Z Denommus quit (Remote host closed the connection) 2015-12-26T21:01:10Z raphaelss joined #lisp 2015-12-26T21:04:03Z Denommus joined #lisp 2015-12-26T21:04:04Z badkins joined #lisp 2015-12-26T21:06:18Z ajf- joined #lisp 2015-12-26T21:08:38Z LiamH: |3b| did you have a launchpad issue with threadsafety in cffi-libffi? 2015-12-26T21:08:42Z ajf- quit (Max SendQ exceeded) 2015-12-26T21:09:49Z |3b|: hmm, don't remember one 2015-12-26T21:10:31Z badkins quit (Remote host closed the connection) 2015-12-26T21:10:51Z LiamH: OK whoops, not you 2015-12-26T21:11:16Z LiamH: attila_lendvai: https://bugs.launchpad.net/cffi/+bug/1474211 2015-12-26T21:12:11Z raphaelss quit (Remote host closed the connection) 2015-12-26T21:20:09Z attila_lendvai: LiamH: I knew that it must be somewhere, but I looked at the wrong place... :) thanks, I'll keep that in mind. some of this should be moved to compile time. 2015-12-26T21:22:35Z moore33: |3b|: hey there. You might be interested in https://github.com/timoore/lpsg. It makes heavy use of cl-opengl. 2015-12-26T21:22:53Z phax joined #lisp 2015-12-26T21:23:03Z phax quit (Client Quit) 2015-12-26T21:24:20Z EvW quit (Remote host closed the connection) 2015-12-26T21:24:31Z EvW joined #lisp 2015-12-26T21:26:27Z |3b|: moore33: yeah, saw that, will have to look into it more at some point 2015-12-26T21:26:35Z Jonsky quit (Ping timeout: 264 seconds) 2015-12-26T21:27:25Z |3b|: from a quick look earlier, it looks like it is still using a bit older GL than i'm currently targetting though :) 2015-12-26T21:27:46Z |3b|: or at least than i would be if i was doing any coding at the moment :/ 2015-12-26T21:29:48Z araujo quit (Ping timeout: 272 seconds) 2015-12-26T21:30:15Z \var quit (Ping timeout: 240 seconds) 2015-12-26T21:30:29Z oleo quit (Remote host closed the connection) 2015-12-26T21:31:22Z \var joined #lisp 2015-12-26T21:32:37Z araujo joined #lisp 2015-12-26T21:33:02Z cmack joined #lisp 2015-12-26T21:33:16Z Denommus quit (Remote host closed the connection) 2015-12-26T21:33:31Z ACE_Recliner joined #lisp 2015-12-26T21:33:47Z oleo joined #lisp 2015-12-26T21:35:59Z sz0 quit (Quit: Bye.) 2015-12-26T21:36:06Z moore33: |3b|: Hmmm, core profile only. It does uniforms instead of ubos or something more exotic, but that's cuz they are the easiest to get working... and quite fast too. 2015-12-26T21:36:17Z moore33: does use uniforms, that is. 2015-12-26T21:37:28Z |3b|: yeah, i'd be using persistent mapped UBOs or something, along with the nvidia command list extension, stfuf like that in preparation for vulkan 2015-12-26T21:38:00Z cmack quit (Ping timeout: 260 seconds) 2015-12-26T21:38:38Z |3b| also likes compute shaders, so would target 4.3+ at minimum 2015-12-26T21:38:55Z jtza8 quit (Ping timeout: 240 seconds) 2015-12-26T21:39:44Z moore33: I'm thinking about vulkan, but also have an eye on ES 3.0... so we'll see. I am definitely planning on using the fast variants of indirect drawing, but probably won't mess with the command list extension. 2015-12-26T21:40:09Z jtza8 joined #lisp 2015-12-26T21:41:32Z moore33: biab 2015-12-26T21:41:52Z badkins joined #lisp 2015-12-26T21:45:12Z badkins quit (Remote host closed the connection) 2015-12-26T21:48:10Z badkins joined #lisp 2015-12-26T21:49:10Z BitPuffin|osx joined #lisp 2015-12-26T21:49:40Z Jonsky joined #lisp 2015-12-26T21:53:46Z kobain quit (Ping timeout: 240 seconds) 2015-12-26T21:56:25Z Xach joined #lisp 2015-12-26T21:57:27Z fsmunoz joined #lisp 2015-12-26T21:58:56Z Xach_ quit (Ping timeout: 265 seconds) 2015-12-26T22:00:42Z attila_lendvai1 joined #lisp 2015-12-26T22:00:42Z attila_lendvai quit (Disconnected by services) 2015-12-26T22:00:42Z attila_lendvai1 quit (Changing host) 2015-12-26T22:00:42Z attila_lendvai1 joined #lisp 2015-12-26T22:02:03Z Denommus joined #lisp 2015-12-26T22:04:09Z treaki joined #lisp 2015-12-26T22:04:21Z tcr1 joined #lisp 2015-12-26T22:04:58Z tcr quit (Read error: Connection reset by peer) 2015-12-26T22:06:08Z shka_ quit (Quit: Konversation terminated!) 2015-12-26T22:07:41Z cadadar joined #lisp 2015-12-26T22:07:52Z badkins quit (Remote host closed the connection) 2015-12-26T22:18:00Z Denommus quit (Quit: Bye) 2015-12-26T22:18:15Z heurist quit (Ping timeout: 260 seconds) 2015-12-26T22:20:13Z attila_lendvai1 is now known as attila_lendvai 2015-12-26T22:20:45Z prxq quit (Remote host closed the connection) 2015-12-26T22:21:09Z tcr1 quit (Quit: Leaving.) 2015-12-26T22:21:29Z malice joined #lisp 2015-12-26T22:21:42Z vlatkoB_ quit (Remote host closed the connection) 2015-12-26T22:23:27Z cadadar quit (Quit: Leaving.) 2015-12-26T22:28:48Z EvW quit (Ping timeout: 255 seconds) 2015-12-26T22:34:44Z EvW joined #lisp 2015-12-26T22:37:56Z vydd joined #lisp 2015-12-26T22:41:38Z resttime joined #lisp 2015-12-26T22:42:10Z badkins joined #lisp 2015-12-26T22:43:16Z vydd left #lisp 2015-12-26T22:45:20Z heurist joined #lisp 2015-12-26T22:47:00Z dkcl quit (Ping timeout: 250 seconds) 2015-12-26T22:47:41Z EvW quit (Ping timeout: 255 seconds) 2015-12-26T22:51:29Z zotherstupidguy quit (Quit: WeeChat 1.3) 2015-12-26T22:53:05Z malice quit (Remote host closed the connection) 2015-12-26T22:53:30Z fsmunoz quit (Ping timeout: 245 seconds) 2015-12-26T22:55:13Z moore33 quit (Quit: Leaving) 2015-12-26T22:58:39Z zupoman quit (Remote host closed the connection) 2015-12-26T23:02:02Z zupoman joined #lisp 2015-12-26T23:05:05Z futpib quit (Ping timeout: 246 seconds) 2015-12-26T23:07:05Z mishoo quit (Ping timeout: 265 seconds) 2015-12-26T23:09:43Z Jonsky quit (Quit: rcirc on GNU Emacs 24.5.1) 2015-12-26T23:11:31Z phoe_krk: hey, what's a list of bigger Lisp (Lisp as in a language family) projects that I can show someone? 2015-12-26T23:17:18Z pjb: http://franz.com/success/ 2015-12-26T23:33:18Z malbertife quit (Ping timeout: 256 seconds) 2015-12-26T23:33:54Z cmack joined #lisp 2015-12-26T23:38:35Z cmack quit (Ping timeout: 240 seconds) 2015-12-26T23:40:02Z manuel_ joined #lisp 2015-12-26T23:40:06Z attila_lendvai quit (Ping timeout: 240 seconds) 2015-12-26T23:40:07Z jtza8 quit (Remote host closed the connection) 2015-12-26T23:47:39Z zupoman quit (Ping timeout: 245 seconds) 2015-12-26T23:57:19Z badkins quit 2015-12-26T23:57:43Z Tyrius joined #lisp 2015-12-26T23:59:41Z ajf- joined #lisp