2017-05-08T00:10:17Z attila_lendvai1 joined #sbcl 2017-05-08T00:10:17Z attila_lendvai quit (Disconnected by services) 2017-05-08T00:10:18Z attila_lendvai1 quit (Changing host) 2017-05-08T00:10:18Z attila_lendvai1 joined #sbcl 2017-05-08T00:23:55Z attila_lendvai1 quit (Ping timeout: 246 seconds) 2017-05-08T00:33:24Z jack_rabbit quit (Ping timeout: 260 seconds) 2017-05-08T01:07:42Z rumbler31 joined #sbcl 2017-05-08T03:22:48Z reinuseslisp joined #sbcl 2017-05-08T03:53:09Z X-Scale quit (Quit: HydraIRC -> http://www.hydrairc.com <- It'll be on slashdot one day...) 2017-05-08T03:53:19Z reinuseslisp quit (Ping timeout: 260 seconds) 2017-05-08T03:59:38Z stassats joined #sbcl 2017-05-08T04:04:13Z stassats quit (Ping timeout: 258 seconds) 2017-05-08T04:14:20Z rumbler31 quit (Remote host closed the connection) 2017-05-08T04:24:58Z rumbler31 joined #sbcl 2017-05-08T04:29:29Z rumbler31 quit (Ping timeout: 260 seconds) 2017-05-08T05:16:06Z beach: Good morning everyone! 2017-05-08T05:28:01Z reinuseslisp joined #sbcl 2017-05-08T05:53:39Z shka_ joined #sbcl 2017-05-08T05:59:33Z angavrilov joined #sbcl 2017-05-08T05:59:54Z reinuseslisp quit (Ping timeout: 260 seconds) 2017-05-08T05:59:59Z stassats joined #sbcl 2017-05-08T06:04:03Z stassats quit (Ping timeout: 240 seconds) 2017-05-08T06:07:50Z scymtym quit (Ping timeout: 240 seconds) 2017-05-08T06:09:09Z rszeno joined #sbcl 2017-05-08T06:18:27Z shka_ quit (Ping timeout: 240 seconds) 2017-05-08T06:19:05Z rszeno left #sbcl 2017-05-08T06:23:53Z milanj quit (Quit: This computer has gone to sleep) 2017-05-08T06:26:54Z oleo quit (Quit: irc client terminated!) 2017-05-08T07:00:09Z jdz_ is now known as jdz 2017-05-08T07:39:05Z Bike quit (Quit: leaving) 2017-05-08T07:43:58Z scymtym joined #sbcl 2017-05-08T08:00:02Z stassats joined #sbcl 2017-05-08T08:04:34Z stassats quit (Ping timeout: 258 seconds) 2017-05-08T08:06:07Z milanj joined #sbcl 2017-05-08T08:42:01Z stassats joined #sbcl 2017-05-08T08:56:27Z gingerale joined #sbcl 2017-05-08T10:14:33Z drmeister quit 2017-05-08T10:14:58Z drmeister joined #sbcl 2017-05-08T10:29:31Z professore joined #sbcl 2017-05-08T10:29:35Z professore: hi 2017-05-08T10:30:36Z professore: please I need help using sbcl as script tool, I did #!/usr/local/bin/sbcl --noinform --quit --script but it never quits the script itself 2017-05-08T10:30:38Z professore: thanks 2017-05-08T10:31:20Z stassats: you can't use more than one argument for the shebang 2017-05-08T10:32:57Z professore: ok 2017-05-08T10:38:19Z professore: #: the octet sequence #(195 64) cannot be decoded. 2017-05-08T10:38:25Z professore: I used --script 2017-05-08T10:38:37Z professore: and it worked, but I've got this error... 2017-05-08T10:38:47Z professore: now the script was written for clisp 2017-05-08T10:39:39Z flip214: professore: save it as UTF8 2017-05-08T10:39:57Z stassats: save /usr/local/bin/sbcl as UTF8? 2017-05-08T10:40:08Z stassats: an odd thing to do 2017-05-08T10:40:29Z professore: yes, clisp has got a -.E switch to do so, what about sbcl? 2017-05-08T10:40:59Z professore: http://stackoverflow.com/questions/22822793/running-utf-8-encoded-scripts-with-steel-bank-common-lisp 2017-05-08T10:41:27Z stassats: /usr/local/bin/sbcl is your script? 2017-05-08T10:41:47Z professore: * sb-impl::*default-external-format* :UTF-8 2017-05-08T10:41:54Z professore: stassats: ? 2017-05-08T10:41:57Z professore: stassats: no 2017-05-08T10:42:11Z stassats: professore: so, then why are you loading it? 2017-05-08T10:42:54Z professore: I used that on my script file #!/usr/local/bin/sbcl --script 2017-05-08T10:43:45Z professore: I used that on my script file --> #!/usr/local/bin/sbcl --script 2017-05-08T10:44:01Z professore: then I had the error running the script 2017-05-08T10:44:04Z stassats: did you, though? 2017-05-08T10:44:11Z professore: #: the octet sequence #(195 64) cannot be decoded. 2017-05-08T10:45:35Z stassats: don't open /usr/local/bin/sbcl... 2017-05-08T10:45:58Z stassats: and don't read from it... 2017-05-08T10:46:41Z professore: ok 2017-05-08T10:46:49Z professore: but I did not want to open it! 2017-05-08T10:47:15Z stassats: i never want to have bugs in my code, yet they do appear 2017-05-08T10:47:17Z stassats: weird stuff 2017-05-08T10:47:53Z stassats: what's your script? are you just misusing sb-ext:*posix-argv*? 2017-05-08T10:48:03Z professore: yes 2017-05-08T10:48:14Z professore: shall I strip the first memebr? 2017-05-08T10:48:23Z stassats: that's what POSIX means, so, yes 2017-05-08T10:49:37Z professore: (rest sb-ext:*posix-argv*) 2017-05-08T10:52:44Z fiveop joined #sbcl 2017-05-08T11:03:20Z professore: thank you people! It worked!รน 2017-05-08T11:17:35Z rumbler31 joined #sbcl 2017-05-08T11:22:41Z rumbler31 quit (Ping timeout: 272 seconds) 2017-05-08T12:18:36Z rumbler31 joined #sbcl 2017-05-08T12:22:43Z rumbler31 quit (Ping timeout: 246 seconds) 2017-05-08T13:19:29Z rumbler3_ joined #sbcl 2017-05-08T13:23:52Z rumbler3_ quit (Ping timeout: 260 seconds) 2017-05-08T13:34:38Z cromachina quit (Quit: Leaving) 2017-05-08T14:02:39Z Bike joined #sbcl 2017-05-08T14:16:47Z phoe: stassats: can you make a release for 1.3.17 on Windows? 2017-05-08T14:16:57Z stassats: no 2017-05-08T14:19:24Z phoe: stassats: please? 2017-05-08T14:29:55Z burtons joined #sbcl 2017-05-08T14:38:39Z milanj quit (Quit: This computer has gone to sleep) 2017-05-08T14:39:09Z milanj joined #sbcl 2017-05-08T14:44:57Z milanj quit (Quit: Leaving) 2017-05-08T15:04:32Z foom joined #sbcl 2017-05-08T15:11:40Z stassats quit (Ping timeout: 240 seconds) 2017-05-08T15:20:12Z rumbler3_ joined #sbcl 2017-05-08T15:24:38Z rumbler3_ quit (Ping timeout: 258 seconds) 2017-05-08T15:43:06Z pipping quit (Remote host closed the connection) 2017-05-08T15:46:13Z pipping joined #sbcl 2017-05-08T16:07:15Z stassats joined #sbcl 2017-05-08T16:21:07Z rumbler3_ joined #sbcl 2017-05-08T16:26:03Z rumbler3_ quit (Ping timeout: 272 seconds) 2017-05-08T16:39:00Z shka_ joined #sbcl 2017-05-08T16:40:26Z oleo joined #sbcl 2017-05-08T16:54:01Z fiveop quit 2017-05-08T17:21:43Z rumbler3_ joined #sbcl 2017-05-08T17:25:57Z rumbler3_ quit (Ping timeout: 240 seconds) 2017-05-08T17:54:30Z oleo quit (Quit: irc client terminated!) 2017-05-08T17:58:12Z oleo joined #sbcl 2017-05-08T19:09:56Z chatter29 joined #sbcl 2017-05-08T19:10:19Z chatter29: hey guys 2017-05-08T19:10:22Z chatter29: allah is doing 2017-05-08T19:10:26Z chatter29: sun is not doing allah is doing 2017-05-08T19:10:28Z chatter29: to accept Islam say that i bear witness that there is no deity worthy of worship except Allah and Muhammad peace be upon him is his slave and messenger 2017-05-08T19:10:52Z White_Flame: chatter29 is not doing 2017-05-08T19:10:53Z flip214: thank you for this contribution. how about sending a patch to the ML? 2017-05-08T19:11:17Z stassats: a halal patch? 2017-05-08T19:12:12Z flip214: I don't know whether that or vegan or whatever... I keep mixing them up 2017-05-08T19:12:30Z jackdaniel: we have one implementation with menora, why not one with crescent? :-) 2017-05-08T19:13:26Z chatter29 quit (Client Quit) 2017-05-08T19:35:43Z scymtym quit (Ping timeout: 258 seconds) 2017-05-08T19:36:48Z stassats quit (Ping timeout: 240 seconds) 2017-05-08T19:42:32Z stassats joined #sbcl 2017-05-08T19:51:31Z phoe: Is there a way for SBCL not to handle win32 exceptions? 2017-05-08T19:52:20Z phoe: I want to propagate it upwards - I hope that this way I will be able to read the string that is stored inside that exception 2017-05-08T19:56:49Z stassats: phoe: it's supposed to do something with win32 exceptions 2017-05-08T19:57:32Z phoe: stassats: okay - there's a win32 exception, and it has a string inside it - I want to be able to catch it and display this string. 2017-05-08T19:57:36Z phoe: how do I do it in SBCL? 2017-05-08T19:58:38Z phoe: if it does not do anything with the exception, I can recover the dump file and then analyze it with Widbg, but I don't know how to do it if the exception doesn't actually kill the process. 2017-05-08T19:59:55Z stassats: i don't have a windows machine nearby, but take a look at code/target-exception.lisp 2017-05-08T20:00:44Z phoe: if it does, I get two pointers and an integer that states the type of the exception, https://cdn.discordapp.com/attachments/217951240741584896/311155083935219754/unknown.png 2017-05-08T20:00:57Z phoe: and then I get a segmentation fault. 2017-05-08T20:01:05Z phoe: stassats: okay, I'll look at it 2017-05-08T20:08:40Z attila_lendvai joined #sbcl 2017-05-08T20:08:41Z attila_lendvai quit (Changing host) 2017-05-08T20:08:41Z attila_lendvai joined #sbcl 2017-05-08T20:10:09Z flip214: the 2nd fault is at -1? 2017-05-08T20:14:46Z gingerale quit (Remote host closed the connection) 2017-05-08T20:31:41Z scymtym joined #sbcl 2017-05-08T20:58:02Z angavrilov quit (Remote host closed the connection) 2017-05-08T21:18:55Z shka_ quit (Ping timeout: 246 seconds) 2017-05-08T21:22:39Z phoe: flip214: I know, right 2017-05-08T21:22:56Z phoe: it's some sort of wrong pointer dereference happening in Qt 2017-05-08T21:23:11Z phoe: but which (I think) is rooted in the first fault up there 2017-05-08T21:23:39Z phoe: since it sometimes is at -1, sometimes at 456, and sometimes does not happen but the window hangs instead and the process goes into a loop. 2017-05-08T21:41:20Z flip214: hmmm 2017-05-08T21:57:10Z burtons_ joined #sbcl 2017-05-08T21:57:48Z burtons_ quit (Client Quit) 2017-05-08T22:01:05Z burtons quit (Ping timeout: 272 seconds) 2017-05-08T22:45:08Z stassats quit (Ping timeout: 240 seconds) 2017-05-08T22:46:55Z stassats joined #sbcl 2017-05-08T23:38:19Z stassats quit (Ping timeout: 240 seconds)