2017-05-29T00:03:30Z manuel__ joined #lisp 2017-05-29T00:03:45Z mrottenkolber quit (Ping timeout: 245 seconds) 2017-05-29T00:03:50Z manuel__ quit (Client Quit) 2017-05-29T00:10:15Z JuanDaugherty joined #lisp 2017-05-29T00:23:31Z antonv joined #lisp 2017-05-29T00:24:58Z antonv: in SLIME, how to go "Back" 2017-05-29T00:25:12Z antonv: the sortcut was "something L" 2017-05-29T00:25:24Z antonv: I can't remember how to do that 2017-05-29T00:26:52Z rumbler31 joined #lisp 2017-05-29T00:27:30Z rk[ghost] quit (Ping timeout: 245 seconds) 2017-05-29T00:28:35Z kobain quit (Ping timeout: 246 seconds) 2017-05-29T00:28:51Z switchy quit (Quit: Bye!) 2017-05-29T00:29:23Z parjanya: the previous command, you mean? 2017-05-29T00:29:26Z kobain joined #lisp 2017-05-29T00:29:31Z kobain quit (Excess Flood) 2017-05-29T00:29:36Z akkad joined #lisp 2017-05-29T00:29:37Z switchy joined #lisp 2017-05-29T00:29:44Z switchy quit (Remote host closed the connection) 2017-05-29T00:29:48Z kobain joined #lisp 2017-05-29T00:30:16Z switchy joined #lisp 2017-05-29T00:30:49Z antonv: parjanya: for example I did "go to definition" natigated to some source code. After reading the definition I want to return where I was before that. 2017-05-29T00:32:01Z parjanya: uh, that I don’t know... q? C-? 2017-05-29T00:32:25Z manuel__ joined #lisp 2017-05-29T00:33:04Z Bicyclidine: that's C-, 2017-05-29T00:33:16Z wpcarro joined #lisp 2017-05-29T00:33:35Z rk[ghost] joined #lisp 2017-05-29T00:47:02Z onehrxn joined #lisp 2017-05-29T00:47:04Z antonv: Bicyclidine: thanks 2017-05-29T00:47:07Z antonv: work 2017-05-29T00:47:09Z antonv: works 2017-05-29T00:47:19Z antonv: But I used another shortcut..., something with L 2017-05-29T00:47:44Z Bicyclidine: If you do C-h k C-, you'll get the help for the function, which will list the keys it's bound to 2017-05-29T00:47:49Z Bicyclidine: (and of course you can change those if you want) 2017-05-29T00:48:02Z onehrxn_ joined #lisp 2017-05-29T00:49:21Z pjb: antonv: use C-h m to see all the bindings in the current mode. 2017-05-29T00:50:24Z antonv: Bicyclidine: pjb: thanks 2017-05-29T00:50:41Z antonv: C-, turns out to be "return from definition" 2017-05-29T00:50:46Z antonv: My command was more generic 2017-05-29T00:50:59Z antonv: not only for definition navigation 2017-05-29T00:51:05Z antonv: just returned to previous buffer and line 2017-05-29T00:51:43Z Bicyclidine: oh, i wouldn't know that then. probably in emacs help somewhere if it's not obvious from the list of bindings. 2017-05-29T00:52:04Z onehrxn quit (Ping timeout: 260 seconds) 2017-05-29T00:52:46Z onehrxn_ quit (Ping timeout: 268 seconds) 2017-05-29T00:54:47Z antonv: not obvious... Ok, maybe I will remember it next time 2017-05-29T00:54:52Z antonv: Another question, about CFFI 2017-05-29T00:55:00Z pacha` joined #lisp 2017-05-29T00:55:10Z antonv: I want to have binding for a foreignt function which was renamed 2017-05-29T00:55:47Z eSVG joined #lisp 2017-05-29T00:56:26Z antonv: Previous this OpenSSL function was called SSLeay and now it is called OpenSSL_version_num 2017-05-29T00:57:16Z Bicyclidine: renamed as in between versions, not some magical DLthing? 2017-05-29T00:57:22Z pacha` left #lisp 2017-05-29T00:57:22Z antonv: How to correctly do CFFI declaration to dynamically check what symbol exists and use it? 2017-05-29T00:57:30Z Bicyclidine: agh. 2017-05-29T00:57:34Z antonv: Bicyclidine: renamed between versions 2017-05-29T00:58:17Z antonv: The irony is that this function returns library version. 2017-05-29T00:58:20Z pacha quit (Ping timeout: 246 seconds) 2017-05-29T00:58:26Z antonv: OpenSSL version. 2017-05-29T00:58:49Z pjb: declare both and try both. The one that doesn't signal an error is the good one. 2017-05-29T01:00:00Z antonv: pjb: is it correct to wrap (cffi:defcfun ...) into an exception handler? 2017-05-29T01:00:22Z pjb: it is correct to wrap anything in a condition handler. 2017-05-29T01:00:32Z antonv: I don't know when (cffi:defcfun ...) does actual work: at compile time, load time 2017-05-29T01:00:36Z pjb: There are no exception in lisp: every behavior is normal! 2017-05-29T01:01:43Z Bicyclidine: antonv: i think it depends on the implementation actually. 2017-05-29T01:01:52Z antonv: Bicyclidine: exactly 2017-05-29T01:02:53Z Bicyclidine: but i don't think cffi has enough to query whether a symbol has a function. hell i don't know if C does off the top of my head 2017-05-29T01:03:13Z Bicyclidine: i guess dlsym can tell you whether there's a memory location for it. 2017-05-29T01:03:54Z antonv: Bicyclidine: CFFI has such feature, but it's not guaranteed to work on any impl (all impls have it except for Corman) 2017-05-29T01:04:45Z antonv: pjb: on some implementations (cffi:defcfun ...) doesn't fail whaterver foreign name you use, event non-existing 2017-05-29T01:04:48Z Bicyclidine: oh. well... do that then? 2017-05-29T01:04:56Z onehrxn joined #lisp 2017-05-29T01:05:05Z pjb: and try both 2017-05-29T01:05:11Z antonv: Bicyclidine: I want portable thing, 100 correct 2017-05-29T01:05:27Z pjb: then use dlopen yourself. 2017-05-29T01:05:34Z Bicyclidine: you're not gonna get it from cffi 2017-05-29T01:05:45Z Bicyclidine: nobody uses corman anyway 2017-05-29T01:05:47Z antonv: pjb: dlopen doesn't work on Windows, I want portable 2017-05-29T01:06:01Z pjb: then install linux on your windows box! 2017-05-29T01:06:04Z Bicyclidine: actually half of cffi doesn't work on corman as i remember. doesn't it not have defcfun? 2017-05-29T01:08:04Z antonv: defcfum maybe work 2017-05-29T01:08:20Z antonv: BTW, this thing is called foreign-funcall in CFFI 2017-05-29T01:08:23Z antonv: https://common-lisp.net/project/cffi/manual/cffi-manual.html#Functions 2017-05-29T01:09:26Z onehrxn quit (Ping timeout: 255 seconds) 2017-05-29T01:09:58Z antonv: pjb: the box is not mine :) 2017-05-29T01:11:57Z quazimodo joined #lisp 2017-05-29T01:12:49Z zRecursive joined #lisp 2017-05-29T01:14:01Z Bicyclidine: so i got it backwards. 2017-05-29T01:16:00Z zRecursive quit (Remote host closed the connection) 2017-05-29T01:18:11Z quazimodo quit (Ping timeout: 260 seconds) 2017-05-29T01:19:06Z rumbler31 quit (Remote host closed the connection) 2017-05-29T01:19:19Z zRecursive joined #lisp 2017-05-29T01:22:00Z manuel__ quit (Quit: manuel__) 2017-05-29T01:22:26Z antonv: Bicyclidine: what backwards? 2017-05-29T01:24:32Z pillton joined #lisp 2017-05-29T01:25:33Z Bicyclidine: corman supports defcfun but not foreign-funcall, not foreign-funcall but not defcfun 2017-05-29T01:26:15Z Sheilong joined #lisp 2017-05-29T01:27:16Z JuanDaugherty: there's no sb-flavors or sb-clos someplace is there? 2017-05-29T01:27:27Z JuanDaugherty: (analogous to sb-pcl) 2017-05-29T01:31:18Z Bicyclidine: there's an sb-pcl? 2017-05-29T01:31:36Z Bicyclidine: oh, wait, the internals yeah. 2017-05-29T01:32:06Z Bicyclidine: well there's no flavors on account of sbcl is newer than when flavors stopped, and sb-clos would be sb-pcl. 2017-05-29T01:33:47Z antonv: I'm thinking to use cffi:foreign-funcall and rule-out corman, but first want to ensure the problem is impossible to solve with cffi:defcfun 2017-05-29T01:34:30Z antonv: pjb: can you help writing error handler so I will catch error a compile, load or call-time? 2017-05-29T01:35:08Z quazimodo joined #lisp 2017-05-29T01:35:41Z antonv: (handler-case (cffi:defcfun ("SSLeay" ssleay) :long) (.....)) 2017-05-29T01:39:11Z sondr3 joined #lisp 2017-05-29T01:46:33Z manuel__ joined #lisp 2017-05-29T01:49:51Z zRecursive quit (Remote host closed the connection) 2017-05-29T01:57:21Z whoman joined #lisp 2017-05-29T02:07:27Z nowhere_man quit (Read error: Connection reset by peer) 2017-05-29T02:07:54Z nowhere_man joined #lisp 2017-05-29T02:11:22Z ryanwatk` joined #lisp 2017-05-29T02:12:52Z ryanwatkins quit (Ping timeout: 240 seconds) 2017-05-29T02:15:25Z dpg quit (Ping timeout: 245 seconds) 2017-05-29T02:23:25Z manuel__ quit (Quit: manuel__) 2017-05-29T02:23:44Z onehrxn joined #lisp 2017-05-29T02:23:53Z manuel__ joined #lisp 2017-05-29T02:26:32Z Tex_Nick quit (Quit: In Linux, We Trust) 2017-05-29T02:26:49Z JuanDaugherty quit (Quit: Hibernate, reboot, exeunt, etc.) 2017-05-29T02:35:30Z X-Scale quit (Quit: HydraIRC -> http://www.hydrairc.com <- Nine out of ten l33t h4x0rz prefer it) 2017-05-29T02:35:37Z teggi joined #lisp 2017-05-29T02:35:38Z teggi quit (Remote host closed the connection) 2017-05-29T02:37:30Z onehrxn quit (Ping timeout: 245 seconds) 2017-05-29T02:39:02Z onehrxn joined #lisp 2017-05-29T02:40:58Z arescorpio joined #lisp 2017-05-29T02:47:50Z rk[ghost] quit (Remote host closed the connection) 2017-05-29T02:49:23Z turquoise joined #lisp 2017-05-29T02:57:36Z loke` joined #lisp 2017-05-29T02:57:42Z kobain quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2017-05-29T03:00:01Z phinxy quit (Quit: Leaving) 2017-05-29T03:03:29Z Blank_ joined #lisp 2017-05-29T03:04:55Z Blank_ left #lisp 2017-05-29T03:07:35Z sz0 quit (Quit: Connection closed for inactivity) 2017-05-29T03:07:39Z raphaelss joined #lisp 2017-05-29T03:08:51Z azzamsa joined #lisp 2017-05-29T03:17:17Z pjb quit (Ping timeout: 246 seconds) 2017-05-29T03:17:29Z gko_ joined #lisp 2017-05-29T03:18:16Z turquoise quit (Quit: Page closed) 2017-05-29T03:19:37Z rumbler31 joined #lisp 2017-05-29T03:20:50Z manuel__ quit (Ping timeout: 245 seconds) 2017-05-29T03:23:45Z rumbler31 quit (Ping timeout: 245 seconds) 2017-05-29T03:25:16Z test1600 joined #lisp 2017-05-29T03:30:34Z onehrxn quit (Remote host closed the connection) 2017-05-29T03:32:41Z hyperreal joined #lisp 2017-05-29T03:33:05Z antonv quit (Ping timeout: 240 seconds) 2017-05-29T03:34:26Z stardiviner joined #lisp 2017-05-29T03:34:48Z jameser joined #lisp 2017-05-29T03:35:15Z onehrxn joined #lisp 2017-05-29T03:41:27Z slyrus quit (Ping timeout: 240 seconds) 2017-05-29T03:42:30Z shifty joined #lisp 2017-05-29T03:42:48Z Sheilong quit (Remote host closed the connection) 2017-05-29T03:48:06Z pierpa quit (Read error: Connection reset by peer) 2017-05-29T03:51:07Z jameser quit (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-05-29T03:58:02Z dingusman joined #lisp 2017-05-29T03:59:24Z jameser joined #lisp 2017-05-29T04:03:18Z schoppenhauer quit (Ping timeout: 260 seconds) 2017-05-29T04:05:13Z schoppenhauer joined #lisp 2017-05-29T04:06:03Z jameser quit (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-05-29T04:06:24Z beach: Good morning everyone! 2017-05-29T04:07:59Z dingusman quit (Ping timeout: 272 seconds) 2017-05-29T04:10:51Z azzamsa: beach: have a great fun days. happy hacking!. 2017-05-29T04:11:08Z azzamsa quit (Quit: Leaving) 2017-05-29T04:14:21Z pjb joined #lisp 2017-05-29T04:16:08Z sondr3 quit (Ping timeout: 260 seconds) 2017-05-29T04:16:18Z jleija quit (Quit: leaving) 2017-05-29T04:20:00Z LiamH quit (Ping timeout: 245 seconds) 2017-05-29T04:20:10Z svgDelux joined #lisp 2017-05-29T04:24:08Z pjb quit (Ping timeout: 240 seconds) 2017-05-29T04:24:10Z eSVG quit (Ping timeout: 245 seconds) 2017-05-29T04:26:27Z DataLinkDroid quit (Quit: ERC (IRC client for Emacs 24.5.1)) 2017-05-29T04:31:27Z Bicyclidine quit (Quit: sleep) 2017-05-29T04:34:11Z jack_rabbit joined #lisp 2017-05-29T04:41:31Z araujo quit (Quit: Leaving) 2017-05-29T04:43:07Z groovy2shoes quit (Quit: Leaving) 2017-05-29T04:44:44Z holycow quit (Quit: Lost terminal) 2017-05-29T04:52:03Z Karl_Dscc joined #lisp 2017-05-29T04:54:01Z onehrxn quit (Read error: Connection reset by peer) 2017-05-29T04:54:41Z groovy2shoes joined #lisp 2017-05-29T05:02:49Z raphaelss quit (Remote host closed the connection) 2017-05-29T05:05:04Z rk[ghost] joined #lisp 2017-05-29T05:06:25Z mhd joined #lisp 2017-05-29T05:07:55Z oleo quit (Quit: irc client terminated!) 2017-05-29T05:09:20Z shka joined #lisp 2017-05-29T05:10:25Z rk[ghost] quit (Ping timeout: 245 seconds) 2017-05-29T05:10:32Z dec0n joined #lisp 2017-05-29T05:12:15Z vlatkoB joined #lisp 2017-05-29T05:16:12Z onehrxn joined #lisp 2017-05-29T05:20:50Z onehrxn quit (Ping timeout: 245 seconds) 2017-05-29T05:21:02Z yangby joined #lisp 2017-05-29T05:21:24Z rk[ghost] joined #lisp 2017-05-29T05:23:20Z wpcarro quit (Ping timeout: 245 seconds) 2017-05-29T05:26:40Z gko_ quit (Ping timeout: 245 seconds) 2017-05-29T05:39:39Z safe quit (Read error: Connection reset by peer) 2017-05-29T05:42:12Z Karl_Dscc quit (Remote host closed the connection) 2017-05-29T05:45:50Z orivej quit (Ping timeout: 245 seconds) 2017-05-29T05:45:59Z mishoo joined #lisp 2017-05-29T05:49:41Z onehrxn joined #lisp 2017-05-29T05:54:03Z angavrilov joined #lisp 2017-05-29T05:54:39Z DataLinkDroid joined #lisp 2017-05-29T05:59:23Z shka quit (Ping timeout: 260 seconds) 2017-05-29T06:12:17Z orivej joined #lisp 2017-05-29T06:14:07Z Kaisyu joined #lisp 2017-05-29T06:17:20Z knobo joined #lisp 2017-05-29T06:17:48Z scymtym quit (Ping timeout: 240 seconds) 2017-05-29T06:17:48Z MONODA joined #lisp 2017-05-29T06:18:12Z MONODA: anyone know of a pdf viewer written in cl? 2017-05-29T06:31:07Z orivej quit (Ping timeout: 272 seconds) 2017-05-29T06:31:47Z MONODA quit (Read error: Connection reset by peer) 2017-05-29T06:32:47Z MONODA joined #lisp 2017-05-29T06:33:26Z stardiviner quit (Ping timeout: 240 seconds) 2017-05-29T06:35:17Z dtornabene joined #lisp 2017-05-29T06:43:06Z MONODA: ah. well i didn't know about the pdf-tools package for emacs. I think that'll be sufficient for my use case! 2017-05-29T06:43:48Z tapioco quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2017-05-29T06:44:15Z MONODA quit (Remote host closed the connection) 2017-05-29T06:44:45Z MONODA joined #lisp 2017-05-29T06:45:40Z tapioco joined #lisp 2017-05-29T06:54:54Z Harag joined #lisp 2017-05-29T06:55:37Z stardiviner joined #lisp 2017-05-29T07:00:35Z schoppenhauer quit (Ping timeout: 246 seconds) 2017-05-29T07:01:26Z sellout- joined #lisp 2017-05-29T07:01:40Z sellout-1 quit (Ping timeout: 245 seconds) 2017-05-29T07:01:42Z jameser joined #lisp 2017-05-29T07:02:13Z jameser quit (Client Quit) 2017-05-29T07:02:34Z moei quit (Quit: Leaving...) 2017-05-29T07:03:33Z arescorpio quit (Quit: Leaving.) 2017-05-29T07:05:18Z onehrxn quit (Ping timeout: 260 seconds) 2017-05-29T07:06:02Z onehrxn joined #lisp 2017-05-29T07:09:35Z shka joined #lisp 2017-05-29T07:16:48Z vlatkoB_ joined #lisp 2017-05-29T07:17:23Z schoppenhauer joined #lisp 2017-05-29T07:18:50Z varjag joined #lisp 2017-05-29T07:19:20Z terpri joined #lisp 2017-05-29T07:20:11Z vlatkoB quit (Ping timeout: 246 seconds) 2017-05-29T07:21:01Z _cosmonaut_ joined #lisp 2017-05-29T07:22:27Z schoppenhauer quit (Ping timeout: 240 seconds) 2017-05-29T07:25:18Z schoppenhauer joined #lisp 2017-05-29T07:30:41Z onehrxn quit (Remote host closed the connection) 2017-05-29T07:31:27Z onehrxn joined #lisp 2017-05-29T07:31:49Z onehrxn quit (Remote host closed the connection) 2017-05-29T07:32:23Z nirved joined #lisp 2017-05-29T07:33:30Z adolf_stalin quit (Remote host closed the connection) 2017-05-29T07:34:27Z schoppenhauer quit (Ping timeout: 240 seconds) 2017-05-29T07:39:08Z schoppenhauer joined #lisp 2017-05-29T07:43:46Z scymtym joined #lisp 2017-05-29T07:50:24Z moei joined #lisp 2017-05-29T07:50:24Z moei quit (Client Quit) 2017-05-29T07:50:44Z moei joined #lisp 2017-05-29T07:53:26Z schoppenhauer quit (Ping timeout: 246 seconds) 2017-05-29T07:55:41Z schoppenhauer joined #lisp 2017-05-29T07:59:28Z terpri quit (Ping timeout: 255 seconds) 2017-05-29T08:01:56Z schoppenhauer quit (Ping timeout: 240 seconds) 2017-05-29T08:02:47Z onehrxn joined #lisp 2017-05-29T08:06:28Z fragMental left #lisp 2017-05-29T08:08:53Z scymtym_ joined #lisp 2017-05-29T08:11:16Z onehrxn quit (Read error: Connection reset by peer) 2017-05-29T08:13:29Z schoppenhauer joined #lisp 2017-05-29T08:13:43Z scymtym quit (Ping timeout: 272 seconds) 2017-05-29T08:13:54Z onehrxn joined #lisp 2017-05-29T08:20:32Z arduo joined #lisp 2017-05-29T08:21:37Z neoncontrails joined #lisp 2017-05-29T08:23:39Z onehrxn_ joined #lisp 2017-05-29T08:23:58Z onehrxn_ quit (Remote host closed the connection) 2017-05-29T08:26:38Z onehrxn quit (Ping timeout: 268 seconds) 2017-05-29T08:42:08Z arduo quit (Remote host closed the connection) 2017-05-29T08:50:59Z sz0 joined #lisp 2017-05-29T08:54:48Z attila_lendvai joined #lisp 2017-05-29T08:56:37Z Sauvin quit (Read error: Connection reset by peer) 2017-05-29T08:57:09Z onehrxn joined #lisp 2017-05-29T08:57:14Z terpri joined #lisp 2017-05-29T08:57:27Z Bock joined #lisp 2017-05-29T08:58:02Z rgrau joined #lisp 2017-05-29T08:59:16Z onehrxn_ joined #lisp 2017-05-29T08:59:56Z MONODA quit (Ping timeout: 240 seconds) 2017-05-29T09:02:23Z krrrcks quit (Ping timeout: 255 seconds) 2017-05-29T09:03:00Z onehrxn_ quit (Remote host closed the connection) 2017-05-29T09:03:17Z onehrxn quit (Ping timeout: 255 seconds) 2017-05-29T09:03:52Z onehrxn joined #lisp 2017-05-29T09:05:20Z krrrcks joined #lisp 2017-05-29T09:06:35Z damke joined #lisp 2017-05-29T09:07:57Z stardiviner quit (Ping timeout: 268 seconds) 2017-05-29T09:08:21Z damke quit (Client Quit) 2017-05-29T09:08:33Z damke joined #lisp 2017-05-29T09:10:28Z mishoo quit (Ping timeout: 240 seconds) 2017-05-29T09:13:36Z yangby quit (Quit: Go out for a walk and buy a drink.) 2017-05-29T09:14:46Z svgDelux quit (Ping timeout: 246 seconds) 2017-05-29T09:16:35Z defaultxr quit (Ping timeout: 240 seconds) 2017-05-29T09:23:09Z Lowl3v3l quit (Remote host closed the connection) 2017-05-29T09:24:25Z Lowl3v3l joined #lisp 2017-05-29T09:29:56Z attila_lendvai quit (Quit: Leaving.) 2017-05-29T09:29:59Z attila_lendvai1 joined #lisp 2017-05-29T09:29:59Z attila_lendvai1 is now known as attila_lendvai 2017-05-29T09:29:59Z attila_lendvai quit (Changing host) 2017-05-29T09:29:59Z attila_lendvai joined #lisp 2017-05-29T09:31:00Z quazimodo quit (Ping timeout: 260 seconds) 2017-05-29T09:31:00Z jameser joined #lisp 2017-05-29T09:34:01Z adolf_stalin joined #lisp 2017-05-29T09:38:27Z adolf_stalin quit (Ping timeout: 240 seconds) 2017-05-29T09:46:12Z p9s joined #lisp 2017-05-29T09:53:54Z dec0n quit (Read error: Connection reset by peer) 2017-05-29T09:55:18Z dec0n joined #lisp 2017-05-29T10:00:09Z DataLinkDroid quit (Quit: ERC (IRC client for Emacs 24.5.1)) 2017-05-29T10:09:00Z _cosmonaut_ quit (Ping timeout: 268 seconds) 2017-05-29T10:09:07Z quazimodo joined #lisp 2017-05-29T10:09:56Z BusFactor1 quit (Ping timeout: 240 seconds) 2017-05-29T10:11:11Z test1600 quit (Quit: Leaving) 2017-05-29T10:12:20Z arquebus joined #lisp 2017-05-29T10:14:02Z damke_ joined #lisp 2017-05-29T10:16:24Z damke quit (Ping timeout: 268 seconds) 2017-05-29T10:19:01Z pjb joined #lisp 2017-05-29T10:20:12Z mishoo joined #lisp 2017-05-29T10:21:22Z mrottenkolber joined #lisp 2017-05-29T10:21:41Z dec0n quit (Read error: Connection reset by peer) 2017-05-29T10:24:17Z dec0n joined #lisp 2017-05-29T10:26:36Z damke joined #lisp 2017-05-29T10:27:12Z _cosmonaut_ joined #lisp 2017-05-29T10:28:44Z damke_ quit (Ping timeout: 268 seconds) 2017-05-29T10:29:13Z quazimodo quit (Read error: Connection reset by peer) 2017-05-29T10:35:02Z adolf_stalin joined #lisp 2017-05-29T10:37:03Z tephra_ is now known as tephra 2017-05-29T10:39:35Z adolf_stalin quit (Ping timeout: 245 seconds) 2017-05-29T10:46:34Z quazimodo joined #lisp 2017-05-29T10:51:09Z pve joined #lisp 2017-05-29T10:53:17Z arquebus quit (Quit: Leaving) 2017-05-29T10:58:19Z jameser quit (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-05-29T11:02:24Z EvW joined #lisp 2017-05-29T11:14:14Z EvW quit (Ping timeout: 255 seconds) 2017-05-29T11:21:08Z EvW joined #lisp 2017-05-29T11:26:15Z terpri quit (Remote host closed the connection) 2017-05-29T11:26:34Z terpri joined #lisp 2017-05-29T11:28:20Z attila_lendvai quit (Ping timeout: 246 seconds) 2017-05-29T11:28:36Z gko_ joined #lisp 2017-05-29T11:35:44Z ttt72 joined #lisp 2017-05-29T11:35:47Z gingerale joined #lisp 2017-05-29T11:35:48Z EvW quit (Ping timeout: 258 seconds) 2017-05-29T11:35:51Z adolf_stalin joined #lisp 2017-05-29T11:37:31Z EvW1 joined #lisp 2017-05-29T11:40:09Z adolf_stalin quit (Ping timeout: 240 seconds) 2017-05-29T11:47:27Z terpri quit (Ping timeout: 240 seconds) 2017-05-29T11:51:16Z opencw joined #lisp 2017-05-29T11:53:02Z atgreen joined #lisp 2017-05-29T11:54:27Z mishoo quit (Ping timeout: 268 seconds) 2017-05-29T11:54:57Z jameser joined #lisp 2017-05-29T11:56:12Z raynold quit (Quit: Connection closed for inactivity) 2017-05-29T11:58:41Z jameser quit (Read error: Connection reset by peer) 2017-05-29T12:00:28Z quazimodo quit (Ping timeout: 240 seconds) 2017-05-29T12:01:53Z jameser joined #lisp 2017-05-29T12:03:41Z arjenve left #lisp 2017-05-29T12:07:02Z gigetoo quit (Read error: No route to host) 2017-05-29T12:07:27Z gigetoo joined #lisp 2017-05-29T12:09:07Z p9s quit (Remote host closed the connection) 2017-05-29T12:09:35Z p9s joined #lisp 2017-05-29T12:11:32Z p9s_ joined #lisp 2017-05-29T12:13:31Z p9s_ quit (Remote host closed the connection) 2017-05-29T12:13:57Z p9s quit (Ping timeout: 240 seconds) 2017-05-29T12:13:59Z p9s_ joined #lisp 2017-05-29T12:15:09Z vibs29 quit (Ping timeout: 240 seconds) 2017-05-29T12:16:08Z p9s_ quit (Read error: Connection reset by peer) 2017-05-29T12:16:09Z orivej joined #lisp 2017-05-29T12:16:28Z p9s joined #lisp 2017-05-29T12:17:55Z arbv quit (Ping timeout: 245 seconds) 2017-05-29T12:18:04Z vibs29 joined #lisp 2017-05-29T12:18:26Z p9s quit (Remote host closed the connection) 2017-05-29T12:28:56Z vydd joined #lisp 2017-05-29T12:30:46Z ebrasca joined #lisp 2017-05-29T12:30:53Z shrdlu68 joined #lisp 2017-05-29T12:33:00Z vydd quit (Remote host closed the connection) 2017-05-29T12:33:20Z p9s joined #lisp 2017-05-29T12:35:08Z p9s_ joined #lisp 2017-05-29T12:35:09Z _cosmonaut_ quit (Ping timeout: 268 seconds) 2017-05-29T12:35:47Z EvW1 quit (Ping timeout: 260 seconds) 2017-05-29T12:35:57Z dpg joined #lisp 2017-05-29T12:36:53Z adolf_stalin joined #lisp 2017-05-29T12:37:45Z terpri joined #lisp 2017-05-29T12:38:58Z p9s quit (Ping timeout: 260 seconds) 2017-05-29T12:40:21Z p9s_ quit (Remote host closed the connection) 2017-05-29T12:40:49Z p9s joined #lisp 2017-05-29T12:41:29Z stardiviner joined #lisp 2017-05-29T12:41:32Z adolf_stalin quit (Ping timeout: 255 seconds) 2017-05-29T12:45:35Z p9s quit (Ping timeout: 260 seconds) 2017-05-29T12:49:37Z FreeBirdLjj joined #lisp 2017-05-29T12:52:35Z onehrxn quit (Ping timeout: 260 seconds) 2017-05-29T12:52:39Z _cosmonaut_ joined #lisp 2017-05-29T12:54:38Z onehrxn joined #lisp 2017-05-29T13:00:12Z vydd joined #lisp 2017-05-29T13:00:12Z vydd quit (Changing host) 2017-05-29T13:00:12Z vydd joined #lisp 2017-05-29T13:01:40Z stardiviner quit (Ping timeout: 268 seconds) 2017-05-29T13:01:45Z damke_ joined #lisp 2017-05-29T13:04:08Z damke quit (Ping timeout: 268 seconds) 2017-05-29T13:06:08Z mishoo joined #lisp 2017-05-29T13:09:23Z p9s joined #lisp 2017-05-29T13:14:05Z Bicyclidine joined #lisp 2017-05-29T13:16:49Z adolf_stalin joined #lisp 2017-05-29T13:20:11Z otjura joined #lisp 2017-05-29T13:20:28Z rumbler31 joined #lisp 2017-05-29T13:24:06Z p9s quit (Remote host closed the connection) 2017-05-29T13:24:34Z p9s joined #lisp 2017-05-29T13:24:48Z rumbler31 quit (Ping timeout: 240 seconds) 2017-05-29T13:25:49Z Lowl3v3l quit (Ping timeout: 258 seconds) 2017-05-29T13:27:07Z _cosmonaut_ quit (Ping timeout: 260 seconds) 2017-05-29T13:28:44Z svgDelux joined #lisp 2017-05-29T13:29:25Z p9s quit (Ping timeout: 268 seconds) 2017-05-29T13:36:07Z paule32 quit (Remote host closed the connection) 2017-05-29T13:36:31Z paule32 joined #lisp 2017-05-29T13:36:39Z cromachina quit (Read error: Connection reset by peer) 2017-05-29T13:38:37Z onehrxn quit (Ping timeout: 272 seconds) 2017-05-29T13:44:30Z _cosmonaut_ joined #lisp 2017-05-29T13:53:06Z oleo joined #lisp 2017-05-29T13:55:32Z JuanDaugherty joined #lisp 2017-05-29T13:56:33Z LiamH joined #lisp 2017-05-29T13:59:47Z Blukunfando quit (Ping timeout: 260 seconds) 2017-05-29T14:04:59Z adolf_stalin quit (Remote host closed the connection) 2017-05-29T14:05:16Z samarthwiz joined #lisp 2017-05-29T14:06:17Z loke___ joined #lisp 2017-05-29T14:10:45Z dec0n quit (Read error: Connection reset by peer) 2017-05-29T14:10:59Z _cosmonaut_ quit (Ping timeout: 260 seconds) 2017-05-29T14:12:32Z onehrxn joined #lisp 2017-05-29T14:20:21Z oleo quit (Quit: irc client terminated!) 2017-05-29T14:24:31Z otjura quit (Ping timeout: 246 seconds) 2017-05-29T14:25:49Z onehrxn_ joined #lisp 2017-05-29T14:26:10Z mgood7123 joined #lisp 2017-05-29T14:26:42Z _cosmonaut_ joined #lisp 2017-05-29T14:26:48Z onehrxn quit (Ping timeout: 240 seconds) 2017-05-29T14:29:30Z samarthwiz quit (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-05-29T14:41:34Z knobo quit (Ping timeout: 268 seconds) 2017-05-29T14:41:47Z wpcarro joined #lisp 2017-05-29T14:43:15Z suzume joined #lisp 2017-05-29T14:47:53Z vydd quit (Ping timeout: 260 seconds) 2017-05-29T14:48:08Z varjag quit (Quit: ERC (IRC client for Emacs 24.5.1)) 2017-05-29T14:55:32Z ttt72_ joined #lisp 2017-05-29T14:56:56Z ttt72 quit (Ping timeout: 240 seconds) 2017-05-29T15:00:25Z _cosmonaut_ quit (Ping timeout: 245 seconds) 2017-05-29T15:02:08Z rippa joined #lisp 2017-05-29T15:02:30Z jack_rabbit quit (Ping timeout: 245 seconds) 2017-05-29T15:02:53Z ttt72_ quit (Quit: ttt72_) 2017-05-29T15:04:28Z samarthwiz joined #lisp 2017-05-29T15:08:44Z eSVG joined #lisp 2017-05-29T15:10:42Z samarthwiz quit (Quit: By.) 2017-05-29T15:12:30Z svgDelux quit (Ping timeout: 245 seconds) 2017-05-29T15:13:25Z svgDelux joined #lisp 2017-05-29T15:16:31Z EvW joined #lisp 2017-05-29T15:16:32Z grublet quit (Ping timeout: 246 seconds) 2017-05-29T15:16:59Z eSVG quit (Ping timeout: 258 seconds) 2017-05-29T15:17:24Z _cosmonaut_ joined #lisp 2017-05-29T15:18:13Z jleija joined #lisp 2017-05-29T15:18:58Z jleija quit (Client Quit) 2017-05-29T15:19:13Z jleija joined #lisp 2017-05-29T15:20:25Z schoppenhauer quit (Ping timeout: 268 seconds) 2017-05-29T15:21:56Z schoppenhauer joined #lisp 2017-05-29T15:26:06Z eSVG joined #lisp 2017-05-29T15:30:00Z svgDelux quit (Ping timeout: 245 seconds) 2017-05-29T15:32:00Z beach: Soon to appear: A more modern-looking version of my HTML-ized AMOP site, i.e. http://metamodular.com/CLOS-MOP/ (not my work) 2017-05-29T15:32:02Z beach: For more, information, see: https://github.com/robert-strandh/CLOS-MOP-HTML/issues/2 2017-05-29T15:33:48Z mrottenkolber quit (Ping timeout: 240 seconds) 2017-05-29T15:34:05Z ym quit (Ping timeout: 240 seconds) 2017-05-29T15:36:37Z mabynogy joined #lisp 2017-05-29T15:42:30Z knobo joined #lisp 2017-05-29T15:44:47Z shka_ joined #lisp 2017-05-29T15:46:15Z tapioco quit (Ping timeout: 245 seconds) 2017-05-29T15:47:38Z tapioco joined #lisp 2017-05-29T15:49:38Z suzume quit (Quit: This computer has gone to sleep) 2017-05-29T15:53:08Z Bicyclidine quit (Ping timeout: 240 seconds) 2017-05-29T16:02:18Z jameser quit (Quit: My MacBook has gone to sleep. ZZZzzz…) 2017-05-29T16:03:08Z onehrxn_ quit (Ping timeout: 240 seconds) 2017-05-29T16:05:20Z onehrxn joined #lisp 2017-05-29T16:09:20Z matthew__ joined #lisp 2017-05-29T16:09:43Z matthew__ is now known as Guest23309 2017-05-29T16:10:50Z loke___ quit (Ping timeout: 245 seconds) 2017-05-29T16:11:16Z mgood7123 quit (Ping timeout: 246 seconds) 2017-05-29T16:12:55Z attila_lendvai joined #lisp 2017-05-29T16:12:55Z attila_lendvai quit (Changing host) 2017-05-29T16:12:55Z attila_lendvai joined #lisp 2017-05-29T16:13:06Z oleo joined #lisp 2017-05-29T16:14:05Z BlueRavenGT joined #lisp 2017-05-29T16:15:03Z Guest23309 quit (Quit: Leaving) 2017-05-29T16:16:56Z mgood7123 joined #lisp 2017-05-29T16:17:11Z oleo quit (Remote host closed the connection) 2017-05-29T16:17:34Z oleo joined #lisp 2017-05-29T16:18:28Z svgDelux joined #lisp 2017-05-29T16:19:10Z EvW quit (Ping timeout: 245 seconds) 2017-05-29T16:20:02Z oleo quit (Excess Flood) 2017-05-29T16:20:26Z oleo joined #lisp 2017-05-29T16:21:15Z eSVG quit (Ping timeout: 245 seconds) 2017-05-29T16:23:35Z eSVG joined #lisp 2017-05-29T16:26:35Z svgDelux quit (Ping timeout: 240 seconds) 2017-05-29T16:26:40Z wpcarro quit (Ping timeout: 245 seconds) 2017-05-29T16:29:18Z sondr3 joined #lisp 2017-05-29T16:30:46Z mishoo quit (Remote host closed the connection) 2017-05-29T16:30:58Z mishoo joined #lisp 2017-05-29T16:32:56Z onehrxn quit (Ping timeout: 240 seconds) 2017-05-29T16:33:27Z Kaisyu quit (Quit: Connection closed for inactivity) 2017-05-29T16:33:28Z knobo quit (Ping timeout: 260 seconds) 2017-05-29T16:33:48Z sondr3 quit (Ping timeout: 240 seconds) 2017-05-29T16:33:57Z onehrxn joined #lisp 2017-05-29T16:38:31Z varjag joined #lisp 2017-05-29T16:42:44Z oleo quit (Quit: irc client terminated!) 2017-05-29T16:43:30Z yangby joined #lisp 2017-05-29T16:44:44Z pjb is now known as theOneIWant 2017-05-29T16:44:56Z theOneIWant is now known as pjb 2017-05-29T16:52:06Z AJavaIdiot joined #lisp 2017-05-29T16:52:57Z AJavaIdiot quit (Client Quit) 2017-05-29T16:54:56Z knobo joined #lisp 2017-05-29T16:55:33Z defaultxr joined #lisp 2017-05-29T16:56:13Z _cosmonaut_ quit (Ping timeout: 260 seconds) 2017-05-29T16:57:06Z Baggers joined #lisp 2017-05-29T16:57:13Z svgDelux joined #lisp 2017-05-29T17:01:17Z eSVG quit (Ping timeout: 272 seconds) 2017-05-29T17:04:20Z tapioco quit (Ping timeout: 246 seconds) 2017-05-29T17:05:47Z wpcarro joined #lisp 2017-05-29T17:06:47Z eSVG joined #lisp 2017-05-29T17:10:09Z adolf_stalin joined #lisp 2017-05-29T17:10:25Z svgDelux quit (Ping timeout: 245 seconds) 2017-05-29T17:10:33Z phinxy joined #lisp 2017-05-29T17:14:30Z grublet joined #lisp 2017-05-29T17:22:08Z madmalik quit (Quit: Connection closed for inactivity) 2017-05-29T17:22:32Z attila_lendvai quit (Ping timeout: 246 seconds) 2017-05-29T17:22:36Z attila_lendvai1 joined #lisp 2017-05-29T17:22:36Z attila_lendvai1 is now known as attila_lendvai 2017-05-29T17:22:36Z attila_lendvai quit (Changing host) 2017-05-29T17:22:36Z attila_lendvai joined #lisp 2017-05-29T17:28:20Z shifty quit (Ping timeout: 245 seconds) 2017-05-29T17:33:33Z flip214: beach: pretty pretty PLEASE, please have that included with phoe's CLUS... 2017-05-29T17:33:51Z flip214: a.k.a. "oh no, another fragmented CL document" ;) 2017-05-29T17:34:10Z beach: It is out of my hands. 2017-05-29T17:34:43Z jamie_p joined #lisp 2017-05-29T17:35:05Z jamie_p left #lisp 2017-05-29T17:37:57Z oleo joined #lisp 2017-05-29T17:38:28Z matthew__ joined #lisp 2017-05-29T17:38:51Z matthew__ is now known as Guest59479 2017-05-29T17:40:33Z mgood7123 quit (Ping timeout: 272 seconds) 2017-05-29T17:41:54Z enzuru joined #lisp 2017-05-29T17:44:14Z attila_lendvai quit (Ping timeout: 246 seconds) 2017-05-29T17:49:48Z attila_lendvai joined #lisp 2017-05-29T17:49:48Z attila_lendvai quit (Changing host) 2017-05-29T17:49:48Z attila_lendvai joined #lisp 2017-05-29T17:53:28Z gko_ quit (Ping timeout: 255 seconds) 2017-05-29T17:56:39Z X-Scale joined #lisp 2017-05-29T17:57:04Z paule32: hello my friends 2017-05-29T17:57:28Z unbalancedparen joined #lisp 2017-05-29T17:57:57Z paule32: is it possible, to inject code into lisp, so e.g. i can create strange projects 2017-05-29T17:58:02Z paule32: let me explain 2017-05-29T17:58:15Z paule32: i give the user the possible to work with 0 and 1 2017-05-29T17:58:47Z karvus joined #lisp 2017-05-29T17:58:49Z paule32: the user can now use this bits, and create a component 2017-05-29T17:58:59Z paule32: like and, xor ... 2017-05-29T17:59:09Z paule32: and a parity bit 2017-05-29T17:59:19Z paule32: for calculations 2017-05-29T17:59:45Z paule32: the result is, the computer emulate him self 2017-05-29T17:59:57Z paule32: ok, ver utopical, but possible? 2017-05-29T18:00:36Z unbalancedparen quit (Client Quit) 2017-05-29T18:02:37Z ebrasca quit (Remote host closed the connection) 2017-05-29T18:04:34Z shka_ quit (Read error: No route to host) 2017-05-29T18:04:57Z safe joined #lisp 2017-05-29T18:05:18Z shka_ joined #lisp 2017-05-29T18:05:29Z whoman: yes. 2017-05-29T18:06:55Z paule32: cool 2017-05-29T18:07:20Z paule32: how does it shown in a smart console program? 2017-05-29T18:07:34Z whoman: ? 2017-05-29T18:07:35Z karvus quit (Ping timeout: 240 seconds) 2017-05-29T18:07:56Z paule32: the operation A and B 2017-05-29T18:07:58Z whoman: macros from top to bottom. its how lisp is built anyway, so just remake it ? 2017-05-29T18:08:45Z Guest59479 quit (Remote host closed the connection) 2017-05-29T18:09:44Z Guest59479 joined #lisp 2017-05-29T18:11:17Z Blukunfando joined #lisp 2017-05-29T18:12:44Z whoman quit (Remote host closed the connection) 2017-05-29T18:13:17Z ebrasca joined #lisp 2017-05-29T18:13:26Z Baggers quit (Remote host closed the connection) 2017-05-29T18:14:27Z lilu39 joined #lisp 2017-05-29T18:17:09Z DeadTrickster quit (Ping timeout: 258 seconds) 2017-05-29T18:20:35Z mabynogy quit (Quit: Leaving) 2017-05-29T18:23:03Z rjid joined #lisp 2017-05-29T18:27:17Z attila_lendvai quit (Ping timeout: 246 seconds) 2017-05-29T18:29:12Z Karl_Dscc joined #lisp 2017-05-29T18:33:50Z atlas-66 joined #lisp 2017-05-29T18:34:35Z rjid quit (Ping timeout: 260 seconds) 2017-05-29T18:36:32Z terpri quit (Ping timeout: 260 seconds) 2017-05-29T18:47:35Z DeadTrickster joined #lisp 2017-05-29T18:51:42Z rgrau` joined #lisp 2017-05-29T18:52:01Z damke_ quit (Quit: quit) 2017-05-29T18:52:54Z vydd joined #lisp 2017-05-29T18:52:54Z vydd quit (Changing host) 2017-05-29T18:52:54Z vydd joined #lisp 2017-05-29T18:54:06Z epipping joined #lisp 2017-05-29T18:54:28Z knobo quit (Ping timeout: 240 seconds) 2017-05-29T18:59:41Z pjb: paule32: check reader macros. 2017-05-29T19:00:06Z pjb: paule32: try: #.(progn (print 'hi) 42) 2017-05-29T19:00:50Z pjb: paule32: try: (progn (write-string "Enter an integer: ") (force-output) (read)) RET #.(progn (print 'hi) 42) RET 2017-05-29T19:01:09Z knobo joined #lisp 2017-05-29T19:05:23Z scymtym_ quit (Ping timeout: 255 seconds) 2017-05-29T19:08:27Z orivej quit (Quit: No Ping reply in 180 seconds.) 2017-05-29T19:09:10Z wpcarro quit (Ping timeout: 245 seconds) 2017-05-29T19:09:35Z paule32: pjb: ? 2017-05-29T19:09:48Z paule32: HI Enter integer: 21 2017-05-29T19:09:51Z paule32: HI 2017-05-29T19:09:53Z FreeBirdLjj quit (Remote host closed the connection) 2017-05-29T19:09:53Z orivej joined #lisp 2017-05-29T19:10:29Z FreeBirdLjj joined #lisp 2017-05-29T19:10:34Z raphaelss joined #lisp 2017-05-29T19:12:16Z atrus7 joined #lisp 2017-05-29T19:12:38Z wpcarro joined #lisp 2017-05-29T19:15:03Z FreeBirdLjj quit (Ping timeout: 260 seconds) 2017-05-29T19:15:30Z andrzejku joined #lisp 2017-05-29T19:16:56Z rgrau` quit (Ping timeout: 240 seconds) 2017-05-29T19:17:05Z vtomole joined #lisp 2017-05-29T19:19:44Z ebrasca quit (Remote host closed the connection) 2017-05-29T19:20:01Z mhd: meta: do we have a common lisp eval bot? 2017-05-29T19:21:42Z mhd: on this channel, ala clojurebot on #clojure? 2017-05-29T19:23:51Z paule32: no, im not a robot :-) 2017-05-29T19:25:13Z paule32: the only thing here i can see, that the progn command execute the list - or better sayed: the commands in the list 2017-05-29T19:26:08Z mhd: example? 2017-05-29T19:26:27Z MONODA joined #lisp 2017-05-29T19:26:31Z paule32: or would this apply to "read" a textfile with commands, that stream is then exec 2017-05-29T19:27:34Z paule32: so, the scope is like you start a bash in a bash 2017-05-29T19:27:47Z paule32: each derivate from the parent 2017-05-29T19:28:12Z paule32: this intend to the second line 2017-05-29T19:28:14Z atrus7 quit (Remote host closed the connection) 2017-05-29T19:28:27Z atrus7 joined #lisp 2017-05-29T19:28:41Z paule32: write string, then flush strem buffer, read 2017-05-29T19:29:02Z paule32: and then exit the scope to execute scope 3 2017-05-29T19:29:17Z paule32: no nonsens 2017-05-29T19:29:26Z paule32: first line has 1 scope 2017-05-29T19:29:36Z paule32: second line 3 2017-05-29T19:29:42Z paule32: third 1 2017-05-29T19:29:54Z paule32: in context of commands 2017-05-29T19:34:53Z mejja joined #lisp 2017-05-29T19:35:07Z attila_lendvai joined #lisp 2017-05-29T19:35:15Z ebrasca joined #lisp 2017-05-29T19:38:50Z vlatkoB_ quit (Remote host closed the connection) 2017-05-29T19:40:06Z gingerale quit (Remote host closed the connection) 2017-05-29T19:40:13Z paule32: or do i not understand it? 2017-05-29T19:43:35Z attila_lendvai quit (Ping timeout: 246 seconds) 2017-05-29T19:46:15Z attila_lendvai joined #lisp 2017-05-29T19:54:41Z ryanwatkins joined #lisp 2017-05-29T19:55:37Z ryanwatk` quit (Ping timeout: 246 seconds) 2017-05-29T19:55:50Z attila_lendvai quit (Ping timeout: 246 seconds) 2017-05-29T19:56:04Z thomas joined #lisp 2017-05-29T19:56:30Z thomas is now known as Guest97405 2017-05-29T19:56:52Z Guest97405 is now known as karvus 2017-05-29T20:00:01Z minion quit (Disconnected by services) 2017-05-29T20:00:03Z minion joined #lisp 2017-05-29T20:00:08Z attila_lendvai joined #lisp 2017-05-29T20:00:08Z attila_lendvai quit (Changing host) 2017-05-29T20:00:08Z attila_lendvai joined #lisp 2017-05-29T20:02:54Z paule32 quit (Remote host closed the connection) 2017-05-29T20:03:02Z paule33 joined #lisp 2017-05-29T20:03:51Z ebrasca quit (Remote host closed the connection) 2017-05-29T20:05:22Z paule33 is now known as paule32 2017-05-29T20:07:49Z Bicyclidine joined #lisp 2017-05-29T20:08:02Z paule32: have i miss something? 2017-05-29T20:09:06Z ebrasca joined #lisp 2017-05-29T20:11:59Z opencw quit (Quit: Leaving) 2017-05-29T20:13:20Z Harag quit (Ping timeout: 268 seconds) 2017-05-29T20:16:32Z vtomole quit (Quit: Page closed) 2017-05-29T20:20:25Z nowhere_man quit (Remote host closed the connection) 2017-05-29T20:22:24Z atlas-66 left #lisp 2017-05-29T20:25:09Z ebrasca quit (Remote host closed the connection) 2017-05-29T20:27:59Z nowhere_man joined #lisp 2017-05-29T20:29:47Z rippa quit (Quit: {#`%${%&`+'${`%&NO CARRIER) 2017-05-29T20:30:53Z nirved quit (Quit: Leaving) 2017-05-29T20:35:04Z atrus7 quit (Ping timeout: 260 seconds) 2017-05-29T20:38:07Z vydd_ joined #lisp 2017-05-29T20:38:23Z ebrasca joined #lisp 2017-05-29T20:38:43Z MONODA` joined #lisp 2017-05-29T20:40:38Z vydd quit (Ping timeout: 246 seconds) 2017-05-29T20:40:40Z MONODA quit (Ping timeout: 260 seconds) 2017-05-29T20:43:58Z Baggers joined #lisp 2017-05-29T20:46:56Z ryanwatkins quit (Ping timeout: 240 seconds) 2017-05-29T20:48:20Z scymtym joined #lisp 2017-05-29T20:48:46Z vydd_ quit (Remote host closed the connection) 2017-05-29T20:49:18Z scymtym quit (Read error: Connection reset by peer) 2017-05-29T20:51:12Z vydd_ joined #lisp 2017-05-29T20:51:31Z scymtym joined #lisp 2017-05-29T20:51:50Z shka_ quit (Ping timeout: 246 seconds) 2017-05-29T20:53:30Z scymtym quit (Read error: Connection reset by peer) 2017-05-29T20:54:02Z Posterdati quit (Read error: Connection reset by peer) 2017-05-29T20:55:46Z scymtym joined #lisp 2017-05-29T20:56:07Z mrottenkolber joined #lisp 2017-05-29T20:59:31Z Posterdati joined #lisp 2017-05-29T21:01:59Z knobo quit (Ping timeout: 246 seconds) 2017-05-29T21:03:22Z pjb: paule32: RET = RETURN Obviously, you had to enter the two forms separately! 2017-05-29T21:03:28Z pjb: Try again. 2017-05-29T21:03:45Z scymtym quit (Read error: Connection reset by peer) 2017-05-29T21:03:45Z Posterdati quit (Client Quit) 2017-05-29T21:04:27Z prxq joined #lisp 2017-05-29T21:06:01Z scymtym joined #lisp 2017-05-29T21:06:21Z MONODA` quit (Remote host closed the connection) 2017-05-29T21:08:04Z MONODA joined #lisp 2017-05-29T21:08:07Z Posterdati joined #lisp 2017-05-29T21:08:13Z EvW1 joined #lisp 2017-05-29T21:09:37Z MONODA quit (Read error: Connection reset by peer) 2017-05-29T21:11:39Z paule32: yes 2017-05-29T21:11:51Z paule32: without RET 2017-05-29T21:12:40Z paule32: #!/usr/local/bin/clisp 2017-05-29T21:12:40Z paule32: (progn (print 'hi) 42) 2017-05-29T21:12:40Z paule32: (progn (write-string "Enter integer: ") (force-output)(read)) 2017-05-29T21:12:40Z paule32: (progn (print 'hi) 42) 2017-05-29T21:14:00Z scymtym quit (Read error: Connection reset by peer) 2017-05-29T21:14:58Z bigos joined #lisp 2017-05-29T21:15:20Z dim: damn I know have a rosettacode account :) 2017-05-29T21:15:58Z dim: let's stop the computer for the day before I get drawned too much into that thing... 2017-05-29T21:17:42Z angavrilov quit (Remote host closed the connection) 2017-05-29T21:21:55Z plo_ joined #lisp 2017-05-29T21:22:24Z plo_ left #lisp 2017-05-29T21:22:34Z matthew__ joined #lisp 2017-05-29T21:22:57Z matthew__ is now known as Guest37290 2017-05-29T21:23:26Z svgDelux joined #lisp 2017-05-29T21:24:35Z Guest59479 quit (Ping timeout: 245 seconds) 2017-05-29T21:24:44Z attila_lendvai quit (Ping timeout: 246 seconds) 2017-05-29T21:26:41Z attila_lendvai joined #lisp 2017-05-29T21:26:41Z attila_lendvai quit (Changing host) 2017-05-29T21:26:41Z attila_lendvai joined #lisp 2017-05-29T21:27:08Z eSVG quit (Ping timeout: 255 seconds) 2017-05-29T21:27:20Z pve quit (Ping timeout: 268 seconds) 2017-05-29T21:28:38Z razzy quit (Ping timeout: 260 seconds) 2017-05-29T21:31:44Z yangby quit (Ping timeout: 246 seconds) 2017-05-29T21:32:56Z sellout- quit (Quit: Leaving.) 2017-05-29T21:34:03Z pierpa joined #lisp 2017-05-29T21:40:49Z andrzejku quit (Quit: Textual IRC Client: www.textualapp.com) 2017-05-29T21:41:02Z cromachina joined #lisp 2017-05-29T21:41:53Z scymtym joined #lisp 2017-05-29T21:42:56Z attila_lendvai quit (Ping timeout: 246 seconds) 2017-05-29T21:45:22Z scymtym quit (Read error: Connection reset by peer) 2017-05-29T21:47:37Z scymtym joined #lisp 2017-05-29T21:49:44Z razzy joined #lisp 2017-05-29T21:52:30Z svgDelux quit (Ping timeout: 245 seconds) 2017-05-29T21:52:45Z phinxy quit (Quit: Leaving) 2017-05-29T21:54:26Z vydd_ quit (Ping timeout: 240 seconds) 2017-05-29T22:00:39Z Karl_Dscc quit (Remote host closed the connection) 2017-05-29T22:03:45Z ARM7 joined #lisp 2017-05-29T22:04:39Z mishoo quit (Ping timeout: 272 seconds) 2017-05-29T22:11:19Z jasom quit (Ping timeout: 255 seconds) 2017-05-29T22:13:09Z pjb: paule32: the problem seems to be that you are not working with a REPL. This is highly inhabitual. You won't be benefiting to the fullest from lisp, if you go on like that. 2017-05-29T22:13:42Z jasom joined #lisp 2017-05-29T22:13:45Z ym joined #lisp 2017-05-29T22:14:09Z pjb: paule32: type exactly, at a shell: clisp -q -ansi -norc RET (progn (write-string "Enter an integer: ") (force-output) (read)) RET #.(progn (print 'hi) 42) RET 2017-05-29T22:14:49Z nowhere_man quit (Ping timeout: 268 seconds) 2017-05-29T22:19:11Z phinxy joined #lisp 2017-05-29T22:26:21Z ebrasca is now known as ebrasca-searchin 2017-05-29T22:27:07Z ebrasca-searchin is now known as ebrasca-find 2017-05-29T22:27:21Z ebrasca-find is now known as ebrasca-finding 2017-05-29T22:27:25Z DalekBaldwin joined #lisp 2017-05-29T22:28:35Z Guest37290 quit (Quit: Leaving) 2017-05-29T22:29:43Z mgood7123 joined #lisp 2017-05-29T22:29:56Z d4ryus4 joined #lisp 2017-05-29T22:31:51Z nowhere_man joined #lisp 2017-05-29T22:32:09Z ebrasca-finding is now known as ebrasca 2017-05-29T22:33:08Z d4ryus3 quit (Ping timeout: 260 seconds) 2017-05-29T22:33:12Z suzume joined #lisp 2017-05-29T22:33:20Z varjag quit (Ping timeout: 246 seconds) 2017-05-29T22:35:02Z Lowl3v3l joined #lisp 2017-05-29T22:45:43Z matthew__ joined #lisp 2017-05-29T22:46:07Z matthew__ is now known as Guest94028 2017-05-29T22:48:05Z Guest94028 quit (Client Quit) 2017-05-29T22:48:21Z mgood7123 quit (Ping timeout: 272 seconds) 2017-05-29T22:49:03Z Pixel_Outlaw joined #lisp 2017-05-29T22:50:18Z mgood7123 joined #lisp 2017-05-29T22:50:42Z mgood7123 quit (Remote host closed the connection) 2017-05-29T22:51:13Z rumbler31 joined #lisp 2017-05-29T22:51:35Z mgood7123 joined #lisp 2017-05-29T23:00:26Z terpri joined #lisp 2017-05-29T23:01:38Z Jesin quit (Quit: Leaving) 2017-05-29T23:05:28Z Jesin joined #lisp 2017-05-29T23:05:44Z Baggers quit (Remote host closed the connection) 2017-05-29T23:15:19Z DalekBaldwin quit (Quit: Page closed) 2017-05-29T23:20:00Z Kaisyu joined #lisp 2017-05-29T23:25:37Z orivej quit (Quit: No Ping reply in 180 seconds.) 2017-05-29T23:26:15Z MrWoohoo quit (Ping timeout: 245 seconds) 2017-05-29T23:26:49Z ARM7 quit (Quit: Leaving) 2017-05-29T23:27:01Z orivej joined #lisp 2017-05-29T23:31:40Z bigos quit (Remote host closed the connection) 2017-05-29T23:32:23Z EvW1 quit (Ping timeout: 260 seconds) 2017-05-29T23:39:20Z suzume quit (Quit: This computer has gone to sleep) 2017-05-29T23:41:40Z terpri quit (Ping timeout: 245 seconds) 2017-05-29T23:42:11Z terpri joined #lisp 2017-05-29T23:42:17Z terpri quit (Remote host closed the connection) 2017-05-29T23:45:45Z neoncont_ joined #lisp 2017-05-29T23:46:57Z p9s joined #lisp 2017-05-29T23:48:04Z neoncontrails quit (Ping timeout: 255 seconds) 2017-05-29T23:54:07Z pierpa quit (Remote host closed the connection)