2016-06-02T00:01:19Z rpg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-06-02T00:02:02Z emaczen quit (Ping timeout: 260 seconds) 2016-06-02T00:06:03Z benwbooth quit (Ping timeout: 240 seconds) 2016-06-02T00:06:18Z pepton1 quit (Ping timeout: 276 seconds) 2016-06-02T00:06:26Z CEnnis91 quit (Quit: Connection closed for inactivity) 2016-06-02T00:07:40Z bullets joined #lisp 2016-06-02T00:08:13Z benwbooth joined #lisp 2016-06-02T00:10:24Z dreamaddict joined #lisp 2016-06-02T00:18:48Z wccoder quit (Remote host closed the connection) 2016-06-02T00:21:39Z jsmith_ joined #lisp 2016-06-02T00:25:51Z karswell quit (Read error: Connection reset by peer) 2016-06-02T00:32:12Z ryan_vw quit (Remote host closed the connection) 2016-06-02T00:37:24Z Khisanth quit (Ping timeout: 272 seconds) 2016-06-02T00:38:52Z bullets quit (Remote host closed the connection) 2016-06-02T00:39:19Z _sjs joined #lisp 2016-06-02T00:41:44Z smokeink joined #lisp 2016-06-02T00:42:10Z papachan joined #lisp 2016-06-02T00:42:43Z npatrick` joined #lisp 2016-06-02T00:47:09Z cmos: is there any way to substitute a new value into a plist non-destructively? ie i'd like to have (some-function :k 5 (:a 1 :b 2 :k 3)) evaluate to (:a 1 :b 2 :k 5) without changing the original list 2016-06-02T00:47:58Z quazimodo joined #lisp 2016-06-02T00:48:33Z varjag quit (Ping timeout: 276 seconds) 2016-06-02T00:50:36Z Khisanth joined #lisp 2016-06-02T00:53:00Z quazimod1 joined #lisp 2016-06-02T00:56:02Z cmos: it seems like there must be a more straightforward method than looping through manually 2016-06-02T00:57:26Z npatrick` left #lisp 2016-06-02T00:57:38Z npatrick` joined #lisp 2016-06-02T01:02:31Z dpg joined #lisp 2016-06-02T01:02:40Z AntiSpamMeta quit (Excess Flood) 2016-06-02T01:03:04Z AntiSpamMeta joined #lisp 2016-06-02T01:15:09Z quazimod1 quit (Ping timeout: 258 seconds) 2016-06-02T01:15:19Z quazimodo quit (Ping timeout: 252 seconds) 2016-06-02T01:17:41Z adolf_stalin quit (Remote host closed the connection) 2016-06-02T01:17:55Z happy-dude quit (Quit: Connection closed for inactivity) 2016-06-02T01:18:37Z katco quit (Quit: Coyote finally caught me) 2016-06-02T01:19:30Z wccoder joined #lisp 2016-06-02T01:21:57Z mfsa joined #lisp 2016-06-02T01:23:36Z wccoder quit (Ping timeout: 244 seconds) 2016-06-02T01:25:59Z Bike: you could copy it and modify the copy. but why bother? just put :k 5 on the front. 2016-06-02T01:26:09Z EvW quit (Ping timeout: 250 seconds) 2016-06-02T01:26:49Z mfsa: hey guys, how do you build lisp project created using (quickproject:make-project) with sbcl from the command line? 2016-06-02T01:28:07Z dpg quit (Quit: Leaving) 2016-06-02T01:32:01Z mfsa: I've tried this: sbcl --load "%HOME%\quicklisp\setup.lisp" --script "myproject.lisp"; also tried adding --load "myproject.asd" but it tells me that my project does not designate any package 2016-06-02T01:32:24Z mfsa: im trying to set it up as a build script in sublime text 2016-06-02T01:32:50Z TruePika: I'm back, still have no idea as to what is up with SBCL 2016-06-02T01:33:54Z XachX_: mfsa: asdf:load-system or ql:quickload 2016-06-02T01:34:04Z TruePika: mfsa: There is no such thing as %HOME% 2016-06-02T01:34:08Z akkad: TruePika: besides the antisocial devs like stas? 2016-06-02T01:34:51Z TruePika: mfsa: Where is the 'myproject.asd' located? 2016-06-02T01:35:07Z papachan: mfsa weird. i generally use make-project 2016-06-02T01:35:10Z papachan: and it work 2016-06-02T01:35:11Z mfsa: XachX_: I'm on windows :) it's on my hard drive - how do i provide a path? 2016-06-02T01:35:15Z papachan: i use this script http://paste.lisp.org/display/317269/raw 2016-06-02T01:35:16Z TruePika: akkad: I'm having a weird issue where my code crashes if I use --script 2016-06-02T01:36:37Z mfsa: im not sure I understand how working with packages work - should i be writing my code in repl? 2016-06-02T01:36:41Z TruePika: While I mainly run on Windows, I can't exactly experiment with SBCL on it since it causes my entire system to lock up <_< 2016-06-02T01:37:34Z TruePika: mfsa: Firstly, if you don't know, packages are not the same as systems 2016-06-02T01:38:18Z TruePika: Packages are just a way to give a different namespace 2016-06-02T01:38:43Z mfsa: ok, so let's say i wanna start a new project and play with lisp, how do i do that? 2016-06-02T01:38:45Z TruePika: systems are like libraries, and is what quicklisp (and asdf) deal with 2016-06-02T01:38:52Z mfsa: i use sublime text 2016-06-02T01:39:06Z _sjs quit (Remote host closed the connection) 2016-06-02T01:39:07Z mfsa: i dont know emacs - im learning it separately but dont wanna be blocked on that 2016-06-02T01:39:09Z TruePika: I don't have experience with sublime, but I'd write a .lisp file with code and load it 2016-06-02T01:39:20Z TruePika: no need to define a package or system 2016-06-02T01:40:15Z mfsa: ok, so that part works for me but I was planning to create the namespace for myself and play with that a little bit 2016-06-02T01:40:35Z mfsa: i want to learn how does that work 2016-06-02T01:40:38Z TruePika: mfsa: Just wondering, what is the output of (USER-HOMEDIR-PATHNAME)? 2016-06-02T01:40:50Z TruePika: (this is so I know how well SBCL works with Windows paths) 2016-06-02T01:40:52Z mfsa: #P"X:/home/" 2016-06-02T01:41:19Z TruePika: okay, you'd write your .lisp file and load it with (LOAD #P"X:/path/to/your/code.lisp") 2016-06-02T01:41:35Z mfsa: but how do i share that with someone on github? 2016-06-02T01:41:41Z TruePika: To make the namespace, you'd use DEFPACKAGE; see http://www.gigamonkeys.com/book/programming-in-the-large-packages-and-symbols.html 2016-06-02T01:42:01Z mfsa: ok, i got the generated project already :) 2016-06-02T01:42:11Z TruePika: You can share the actual .lisp file on GitHub 2016-06-02T01:42:46Z mfsa: i have 3 files from that project generator 2016-06-02T01:42:51Z TruePika: Is one a .asd? 2016-06-02T01:42:55Z TruePika: (which isn't being found) 2016-06-02T01:43:05Z mfsa: project.asd, project.lisp and package.lisp 2016-06-02T01:43:52Z TruePika: Are these located in a directory in X:\home\common-lisp ? 2016-06-02T01:44:19Z mfsa: nah, some random folder with github repo 2016-06-02T01:44:31Z mfsa: now i'd like to work on 2 files: project.lisp (im assuming that's my package code) and code.lisp which uses that package 2016-06-02T01:44:32Z TruePika: Well no wonder nothing can find them :P 2016-06-02T01:44:51Z mfsa: does it matter where in home folder it is? 2016-06-02T01:44:53Z TruePika: I think there's a way to add paths to ASDF or Quicklisp, but I never had luck with that 2016-06-02T01:44:57Z mfsa: or just anywhere under? 2016-06-02T01:45:06Z TruePika: Anywhere under %HOME%/common-lisp 2016-06-02T01:45:14Z TruePika: that is one of the system search paths 2016-06-02T01:45:14Z mfsa: ok let me try 2016-06-02T01:45:50Z TruePika: (ql:quickload :mysystem) or (require :mysystem) _should_ be able to find it 2016-06-02T01:47:02Z mfsa: nice! :) 2016-06-02T01:47:05Z mfsa: finally works! 2016-06-02T01:47:09Z mfsa: thank you!!!! 2016-06-02T01:49:19Z mfsa: that magic path under home wasn't so obvious :) glad it finally works :) 2016-06-02T01:51:31Z zRecursive quit (Remote host closed the connection) 2016-06-02T01:53:40Z papachan: http://blog.quicklisp.org/2016_06_01_archive.html?m=1 2016-06-02T01:54:36Z TruePika: back to testing, trying --noinform --lose-on-corruption --end-runtime-options --no-sysinit --no-userinit --quit --load to see if the implied --quit by --script does anything odd 2016-06-02T01:56:46Z TruePika: any ideas as to how to work around the lack of a --script to allow ignoring a shebang line? 2016-06-02T01:56:53Z zRecursive joined #lisp 2016-06-02T01:57:45Z shdeng joined #lisp 2016-06-02T01:58:04Z emaczen joined #lisp 2016-06-02T01:59:39Z jathd quit (Ping timeout: 260 seconds) 2016-06-02T02:01:24Z dreamaddict: is there a way in clack/lucerne to "register" localhost with a name that is accessible through my router? 2016-06-02T02:01:24Z minion: dreamaddict, memo from jasom: sorry, I went to bed before you asked your last question; here's a simple example: http://paste.lisp.org/display/317211#2 2016-06-02T02:01:35Z dreamaddict: (so that it just shows up in my wifi) 2016-06-02T02:03:09Z emaczen quit (Ping timeout: 260 seconds) 2016-06-02T02:03:58Z Bike: ...what? 2016-06-02T02:04:06Z Bike: like you want to be able to connect to your server as a wifi device? 2016-06-02T02:04:27Z TruePika: yeah, that question makes no sense 2016-06-02T02:04:41Z dreamaddict: so that my site is available locally only on my wifi network 2016-06-02T02:04:43Z IPmonger quit (Ping timeout: 250 seconds) 2016-06-02T02:04:50Z dreamaddict: under something other than the actual IP address 2016-06-02T02:05:00Z TruePika: you want a DNS server for that 2016-06-02T02:05:12Z dreamaddict: don't need much of one, I would think 2016-06-02T02:05:12Z Bike: that's not really something your web server would do. 2016-06-02T02:05:16Z dreamaddict: ok 2016-06-02T02:06:51Z mfsa: papachan: out of curiosity how do you know that sbcl takes switch --noinform - it's not being displayed with sbcl --help 2016-06-02T02:07:11Z dreamaddict: the other way would be to...go into my router and add a custom route something like "my-site -> xxx.xxx.xxx.xxx:port" 2016-06-02T02:07:12Z TruePika: mfsa: SBCL manual and man pages 2016-06-02T02:07:25Z TruePika: http://www.sbcl.org/manual/ 2016-06-02T02:07:37Z mfsa: did you actually read it? 2016-06-02T02:07:42Z TruePika: The manual? Yes. 2016-06-02T02:07:49Z TruePika: The man page? Yes. 2016-06-02T02:08:12Z Bike: it's in 3.3.1 of the manual and the options bit of the man page. 2016-06-02T02:08:41Z TruePika: One thing that is really useful with *nix is man 2016-06-02T02:09:16Z quazimodo joined #lisp 2016-06-02T02:09:20Z quazimod1 joined #lisp 2016-06-02T02:09:37Z adolf_stalin joined #lisp 2016-06-02T02:09:57Z TruePika: dreamaddict: assuming your router blindly would accept that as a custom route 2016-06-02T02:10:03Z mfsa: nice, thanks - I'm trying to learn this but amount of reading i have is way bigger than the amount of time i have 2016-06-02T02:10:33Z dreamaddict: right, the better way would be to find a small DNS server apparently 2016-06-02T02:10:41Z papachan: mfsa, dont understand ur question :p 2016-06-02T02:10:43Z FreeBirdLjj joined #lisp 2016-06-02T02:11:21Z FreeBirdLjj quit (Remote host closed the connection) 2016-06-02T02:11:53Z TruePika: Technically, that "custom route" method, if it would even work, would just be using your router as a DNS 2016-06-02T02:12:00Z FreeBirdLjj joined #lisp 2016-06-02T02:12:21Z mastokley quit (Ping timeout: 246 seconds) 2016-06-02T02:12:26Z TruePika: Unless you want to add the server to every /etc/hosts file, you need a DNS server of some description 2016-06-02T02:13:11Z Opodeldoc quit (Quit: Leaving) 2016-06-02T02:13:30Z TruePika: Is this a public or home wifi? 2016-06-02T02:13:37Z TruePika: well not public 2016-06-02T02:13:55Z TruePika: do you have a list of computers you expect to use the server? 2016-06-02T02:14:13Z TruePika: since the /etc/hosts route is a pretty feasable substitute, actually 2016-06-02T02:15:36Z TruePika: just add a line, "xxx.xxx.xxx.xxx myserver", to /etc/hosts (on *nix) and C:\Windows\System32\Drivers\etc\hosts (on Windows) on every system you want 2016-06-02T02:16:36Z TruePika: then the server is accessable as "myserver:port" 2016-06-02T02:17:04Z TruePika apparently got distracted, and failed to notice SBCL hasn't crashed 2016-06-02T02:17:25Z TruePika: meh, there is _something_ weird --script does 2016-06-02T02:17:39Z TruePika: something which breaks everything 2016-06-02T02:18:38Z TruePika: ... grep: unrecognized option '--script' 2016-06-02T02:19:03Z Bike: this saga gets more dramatic by the moment 2016-06-02T02:19:05Z TruePika: (with '--script' in single quotes on cmd line) 2016-06-02T02:20:29Z TruePika: well I just confirmed from source that --script (as runtime) doesn't do anything the other args don't either 2016-06-02T02:20:53Z papachan quit (Quit: Leaving) 2016-06-02T02:21:13Z TruePika: and everything else is Lisp code 2016-06-02T02:22:33Z papachan joined #lisp 2016-06-02T02:23:11Z Bike: well, it changes whether there's an exit restart during init, muffles a bunch of warnings and errors, and binds some streams differently 2016-06-02T02:23:12Z quazimod1 quit (Ping timeout: 246 seconds) 2016-06-02T02:23:31Z quazimodo quit (Ping timeout: 252 seconds) 2016-06-02T02:24:00Z TruePika: Bike: There's a suspicious-looking (RETURN) on line 384 of src/code/toplevel.lisp 2016-06-02T02:24:50Z Bike: that just returns from the option processing loop 2016-06-02T02:24:51Z TruePika: which means that --end-toplevel-options _might_ cause an issue...? 2016-06-02T02:25:12Z TruePika: I don't see a block named NIL in the function body 2016-06-02T02:25:20Z Bike: loop establishes a nil block 2016-06-02T02:25:35Z TruePika: or wait duh 2016-06-02T02:26:06Z TruePika: for some reason I thought LOOP with loop keywords only got a name when NAMED is supplied 2016-06-02T02:26:10Z Bike: but you're right, --script effectively ends toplevel options 2016-06-02T02:26:30Z Bike: so if you're passing "--script whatever --end-toplevel-options" your code will have --end-toplevel-options in argv 2016-06-02T02:26:52Z watersoul quit (Remote host closed the connection) 2016-06-02T02:26:53Z Bike: effectively -> this is mentioned in man 2016-06-02T02:28:45Z watersoul joined #lisp 2016-06-02T02:28:45Z watersoul quit (Max SendQ exceeded) 2016-06-02T02:28:53Z TruePika: meh my threading deadlocked <_< 2016-06-02T02:29:36Z emaczen joined #lisp 2016-06-02T02:31:46Z npatrick` quit (Ping timeout: 252 seconds) 2016-06-02T02:32:17Z watersoul joined #lisp 2016-06-02T02:33:52Z asc232 joined #lisp 2016-06-02T02:35:18Z rpg joined #lisp 2016-06-02T02:37:01Z TruePika: hm, am I understanding correctly that if STDIN/STDOUT/STDERR issue a stream-error, SBCL exits without a message? 2016-06-02T02:38:02Z Bike: you mean in process-script? seems so. 2016-06-02T02:40:57Z fiddlerwoaroof joined #lisp 2016-06-02T02:44:41Z dyelar quit (Quit: Leaving.) 2016-06-02T02:45:01Z Bike: exit code zero though. 2016-06-02T02:46:05Z karswell joined #lisp 2016-06-02T02:46:25Z TruePika: I'm wrapping a handler-bind on stream-error just in case, see if I catch anything odd 2016-06-02T02:47:42Z Bike: kind of odd that it's on stream-error and not just eof. 2016-06-02T02:48:22Z TruePika: well I'll INVOKE-DEBUGGER if I get a STREAM-ERROR, so I should get a backtrace if that is the cause 2016-06-02T02:48:46Z TruePika: assuming things operate the way I think they should 2016-06-02T02:50:59Z arescorpio joined #lisp 2016-06-02T02:53:03Z Bike: it should kill the script and dump a backtrace and all, if t hat's what you mean 2016-06-02T02:54:24Z TruePika: meh dang deadlocks 2016-06-02T02:55:09Z TruePika: I don't know why, but no matter how hard I try, I can't iron out these threading issues 2016-06-02T02:55:27Z TruePika: (threading issues should theoretically be unrelated to the main issue) 2016-06-02T02:56:04Z dreamaddict quit (Ping timeout: 250 seconds) 2016-06-02T02:57:57Z TruePika: inb4 this refuses to crash now 2016-06-02T02:58:14Z TruePika: even with --script 2016-06-02T03:02:07Z FreeBirdLjj quit (Remote host closed the connection) 2016-06-02T03:02:38Z benny joined #lisp 2016-06-02T03:02:44Z FreeBirdLjj joined #lisp 2016-06-02T03:03:02Z arescorpio quit (Quit: Leaving.) 2016-06-02T03:04:02Z cmos quit (Quit: ["Textual IRC Client: www.textualapp.com"]) 2016-06-02T03:09:48Z TruePika _did_ start it with --script, right? 2016-06-02T03:10:02Z TruePika: yeah 2016-06-02T03:10:11Z TruePika: I have no idea what the heck is going on 2016-06-02T03:10:51Z TruePika: all I did was add that stream-error handler 2016-06-02T03:11:05Z TruePika: oh nvm it just crashed... 2016-06-02T03:11:08Z TruePika: ...with no backtrace 2016-06-02T03:11:24Z |meta quit (Quit: Connection closed for inactivity) 2016-06-02T03:12:36Z zRecursive: TruePika: how about try CCL instead ? 2016-06-02T03:13:07Z TruePika: zRecursive: too slow and I have far too much SBCL-specific code 2016-06-02T03:13:47Z zRecursive: i wonder if it is SBCL specific issue 2016-06-02T03:13:50Z kolko quit (Ping timeout: 260 seconds) 2016-06-02T03:14:05Z TruePika: Probably, since --script is a SBCL parameter 2016-06-02T03:17:33Z JuanDaugherty quit (Quit: Hibernate, reboot, exeunt, etc.) 2016-06-02T03:17:58Z fiddlerwoaroof quit (Ping timeout: 244 seconds) 2016-06-02T03:18:39Z TruePika: I don't think *exit-hooks* are being run 2016-06-02T03:20:56Z wccoder joined #lisp 2016-06-02T03:21:07Z TruePika: so a (EXIT :ABORT T) is probably being issued somewhere 2016-06-02T03:22:22Z quazimodo joined #lisp 2016-06-02T03:22:25Z quazimod1 joined #lisp 2016-06-02T03:23:07Z edgar-rft joined #lisp 2016-06-02T03:24:09Z FreeBirdLjj quit (Remote host closed the connection) 2016-06-02T03:24:27Z FreeBirdLjj joined #lisp 2016-06-02T03:25:30Z wccoder quit (Ping timeout: 260 seconds) 2016-06-02T03:25:41Z nell joined #lisp 2016-06-02T03:26:03Z beach joined #lisp 2016-06-02T03:26:11Z beach: Good morning everyone! 2016-06-02T03:30:20Z tmtwd quit (Ping timeout: 240 seconds) 2016-06-02T03:31:41Z PuercoPop: jackdaniel: jscl is a compiler not an interpreter. What I think you were referring to is that is includes a runtime while one of parenscript's goals is to work w/o an extra runtime needed 2016-06-02T03:31:47Z walter|r quit (Remote host closed the connection) 2016-06-02T03:31:55Z walter|r joined #lisp 2016-06-02T03:31:56Z walter|r quit (Remote host closed the connection) 2016-06-02T03:32:54Z fiddlerwoaroof joined #lisp 2016-06-02T03:37:52Z TruePika: okay, so I just got a crash with --noinform --disable-ldb --lose-on-corruption --end-runtime-options --disable-debugger --no-userinit --no-sysinit --load 2016-06-02T03:37:57Z TruePika: note the lack of --script 2016-06-02T03:38:37Z Denommus quit (Quit: going to sleep) 2016-06-02T03:39:09Z TruePika: trying without --disable-debugger 2016-06-02T03:39:22Z TruePika: (keeping --disable-ldb on there for now) 2016-06-02T03:43:50Z aries_liuxueyang quit (Quit: No Ping reply in 180 seconds.) 2016-06-02T03:44:38Z asc232 quit (Remote host closed the connection) 2016-06-02T03:45:25Z aries_liuxueyang joined #lisp 2016-06-02T03:45:29Z IPmonger joined #lisp 2016-06-02T03:46:09Z TruePika: hm 2016-06-02T03:46:20Z TruePika: looking at debugger-disabled-hook 2016-06-02T03:46:55Z rpg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-06-02T03:47:07Z TruePika: FAILURE-QUIT with :ABORT T (like if a condition is thrown) can do that silentish exit 1 2016-06-02T03:47:24Z roscoe_tw joined #lisp 2016-06-02T03:48:36Z TruePika: though it seems like the hook should always output something to *error-output* 2016-06-02T03:48:55Z Bike: specifically, it's when a condition is thrown while trying to display a condition 2016-06-02T03:49:13Z Bike: so i guess if stdout is fucked it could happen 2016-06-02T03:49:30Z TruePika: stdout is perfectly fine though 2016-06-02T03:49:39Z TruePika: however... 2016-06-02T03:49:43Z asc232 joined #lisp 2016-06-02T03:49:52Z IPmonger quit (Ping timeout: 252 seconds) 2016-06-02T03:50:16Z TruePika: I've had some oddities happen when trying to display some Unicode-related conditions 2016-06-02T03:50:39Z TruePika: like getting into level 2 of the debugger directly from REPL 2016-06-02T03:51:08Z TruePika: in any case, the debugger should be getting invoked without --disable-debugger 2016-06-02T03:51:30Z TruePika: something which doesn't appear to happen for some reason 2016-06-02T03:51:45Z leo_song quit (Ping timeout: 260 seconds) 2016-06-02T03:52:04Z asc232 quit (Remote host closed the connection) 2016-06-02T03:52:28Z aries_liuxueyang quit (Ping timeout: 272 seconds) 2016-06-02T03:52:28Z zRecursive quit (Ping timeout: 272 seconds) 2016-06-02T03:52:34Z aries_liuxueyang joined #lisp 2016-06-02T03:53:09Z schoppenhauer quit (Ping timeout: 246 seconds) 2016-06-02T03:55:09Z schoppenhauer joined #lisp 2016-06-02T03:55:11Z jbakid quit (Quit: jbakid) 2016-06-02T03:58:52Z leo_song joined #lisp 2016-06-02T03:59:11Z jbakid joined #lisp 2016-06-02T04:00:18Z profess quit (Ping timeout: 276 seconds) 2016-06-02T04:01:47Z profess joined #lisp 2016-06-02T04:03:35Z FreeBirdLjj quit (Remote host closed the connection) 2016-06-02T04:04:16Z FreeBirdLjj joined #lisp 2016-06-02T04:08:03Z peey joined #lisp 2016-06-02T04:15:31Z m0li quit (Quit: q) 2016-06-02T04:20:18Z vmihai joined #lisp 2016-06-02T04:22:18Z CrazyEddy quit (Read error: Connection reset by peer) 2016-06-02T04:22:52Z kdas__ joined #lisp 2016-06-02T04:24:15Z mordocai quit (Ping timeout: 250 seconds) 2016-06-02T04:24:17Z brendyn joined #lisp 2016-06-02T04:24:24Z keix quit (Remote host closed the connection) 2016-06-02T04:24:39Z FreeBird_ joined #lisp 2016-06-02T04:25:00Z habs quit (Ping timeout: 260 seconds) 2016-06-02T04:25:56Z mathi_aihtam joined #lisp 2016-06-02T04:26:08Z mordocai joined #lisp 2016-06-02T04:26:27Z habs joined #lisp 2016-06-02T04:27:20Z FreeBirdLjj quit (Ping timeout: 260 seconds) 2016-06-02T04:28:02Z lipt joined #lisp 2016-06-02T04:28:13Z tax quit (Ping timeout: 244 seconds) 2016-06-02T04:31:57Z TruePika: debugger invoked on a SB-IMPL::END-OF-INPUT-IN-CHARACTER in thread (...) 2016-06-02T04:32:07Z TruePika: hm 2016-06-02T04:32:10Z Bike: it's a miracle! 2016-06-02T04:32:19Z TruePika: _might_ be related 2016-06-02T04:32:26Z Bike: what's that mean, like there's an eof halfway through a codepoint? 2016-06-02T04:32:31Z TruePika: there wasn't an actual crash 2016-06-02T04:32:34Z TruePika: yeah 2016-06-02T04:32:47Z walter|r joined #lisp 2016-06-02T04:32:50Z mastokley joined #lisp 2016-06-02T04:32:56Z TruePika: some of the input isn't actually valid utf8 for some strange reason 2016-06-02T04:32:58Z DavidGuru joined #lisp 2016-06-02T04:33:25Z DavidGuru quit (Client Quit) 2016-06-02T04:33:25Z kdas__ is now known as kushal 2016-06-02T04:33:34Z kushal quit (Changing host) 2016-06-02T04:33:34Z kushal joined #lisp 2016-06-02T04:33:44Z Bike: that seems pretty miserable to deal with 2016-06-02T04:34:17Z vlatkoB joined #lisp 2016-06-02T04:34:27Z TruePika: ah, I'm missing that one in my binds 2016-06-02T04:34:59Z TruePika: I know its cousins SB-IMPL::INVALID-UTF8-STARTER-BYTE and SB-IMPL::INVALID-UTF8-CONTINUATION-BYTE 2016-06-02T04:35:45Z TruePika: I just use-value them over to #\UFFFD, the replacement character 2016-06-02T04:36:12Z smokeink quit (Ping timeout: 260 seconds) 2016-06-02T04:37:50Z walter|r quit (Ping timeout: 260 seconds) 2016-06-02T04:38:01Z TruePika: Just added those binds, lets see what happens with --script now 2016-06-02T04:38:15Z TruePika: (two seperate locations) 2016-06-02T04:39:19Z TruePika: not that I have high hopes this fixes anything 2016-06-02T04:39:55Z TruePika: especially since that was issued by not the main thread 2016-06-02T04:43:40Z ramus quit (Ping timeout: 260 seconds) 2016-06-02T04:43:54Z ramus joined #lisp 2016-06-02T04:48:05Z TruePika: ...how the heck can SB-IMPL::END-OF-INPUT-IN-CHARACTER actually get issued when input ends with either or ? 2016-06-02T04:48:33Z TruePika: the data must have been truncuated 2016-06-02T04:48:59Z TruePika: (given the context, it would have been ) 2016-06-02T04:51:13Z TruePika: now I wonder what happens if libxml2 gets incomplete data... 2016-06-02T04:52:55Z TruePika: ...interesting... 2016-06-02T04:53:10Z TruePika: (html:with-parse-html (html "Foo</titl") (xpath:find-string html "/html/head/title")) -> "Foo" 2016-06-02T04:53:31Z TruePika: with two recoverable errors 2016-06-02T04:56:17Z qubitnerd joined #lisp 2016-06-02T04:56:20Z tax joined #lisp 2016-06-02T05:01:17Z TruePika: crash :( 2016-06-02T05:02:11Z TruePika: the annoying part is that the only reason I need --script is so I can shebang the script 2016-06-02T05:03:27Z Bike: could you do a workaround like having the script be a shell script that just calls sbcl? 2016-06-02T05:04:24Z zRecursive joined #lisp 2016-06-02T05:05:32Z eschatologist quit (Ping timeout: 258 seconds) 2016-06-02T05:08:26Z TruePika: "/usr/local/bin/sbcl --noinform --lose-on-corruption --end-runtime-options --no-userinit --no-sysinit --load script.lisp --end-toplevel-options $*" will probably work 2016-06-02T05:08:45Z TruePika: this will also give me the debugger 2016-06-02T05:09:37Z kushal quit (Ping timeout: 252 seconds) 2016-06-02T05:10:53Z smokeink joined #lisp 2016-06-02T05:12:43Z mishoo__ joined #lisp 2016-06-02T05:16:55Z peey quit (Quit: Page closed) 2016-06-02T05:17:44Z shka joined #lisp 2016-06-02T05:17:48Z fiddlerwoaroof quit (Quit: Gone.) 2016-06-02T05:22:04Z qubitnerd quit (Ping timeout: 264 seconds) 2016-06-02T05:24:21Z eschatologist joined #lisp 2016-06-02T05:24:33Z sauvin joined #lisp 2016-06-02T05:25:12Z fiddlerwoaroof joined #lisp 2016-06-02T05:25:16Z mathi_aihtam quit (Quit: mathi_aihtam) 2016-06-02T05:28:20Z DavidGuru joined #lisp 2016-06-02T05:29:11Z DavidGuru: Hi guys, is there a mature way to compile C source files during a compile operation within ASDF? 2016-06-02T05:29:15Z fiddlerwoaroof quit (Client Quit) 2016-06-02T05:30:34Z safe quit (Quit: Leaving) 2016-06-02T05:30:43Z mathi_aihtam joined #lisp 2016-06-02T05:33:27Z walter|r joined #lisp 2016-06-02T05:33:37Z IPmonger joined #lisp 2016-06-02T05:34:15Z test1600 joined #lisp 2016-06-02T05:35:51Z schaueho joined #lisp 2016-06-02T05:37:30Z beach left #lisp 2016-06-02T05:37:55Z IPmonger quit (Ping timeout: 250 seconds) 2016-06-02T05:38:50Z walter|r quit (Ping timeout: 244 seconds) 2016-06-02T05:39:13Z scymtym quit (Ping timeout: 250 seconds) 2016-06-02T05:45:20Z qubitnerd joined #lisp 2016-06-02T05:45:22Z adolf_stalin quit (Quit: Leaving...) 2016-06-02T05:48:33Z quasisane quit (Ping timeout: 240 seconds) 2016-06-02T05:51:39Z wccoder joined #lisp 2016-06-02T05:55:15Z DavidGuru quit (Ping timeout: 250 seconds) 2016-06-02T05:55:47Z DavidGuru joined #lisp 2016-06-02T05:56:08Z wccoder quit (Ping timeout: 258 seconds) 2016-06-02T05:57:41Z Cymew joined #lisp 2016-06-02T06:00:43Z benny quit (Ping timeout: 244 seconds) 2016-06-02T06:08:24Z mrcom: TruePike: cl-libxml2 may not be thread-safe. http://xmlsoft.org/threads.html says "xmlInitParser" has to be called in main thread before anything else, and I don't see an explicit call to that in cl-libxml2. 2016-06-02T06:09:11Z mrcom: TruePika: ^ 2016-06-02T06:12:04Z emaczen quit (Ping timeout: 240 seconds) 2016-06-02T06:13:31Z mrcom: minion: memo for TruePika: cl-libxml2 may not be thread-safe. http://xmlsoft.org/threads.html says "xmlInitParser" has to be called in main thread before anything else, and I don't see an explicit call to that in cl-libxml2. 2016-06-02T06:13:31Z minion: Remembered. I'll tell TruePika when he/she/it next speaks. 2016-06-02T06:14:16Z shka quit (Ping timeout: 264 seconds) 2016-06-02T06:15:05Z FreeBird_ quit (Remote host closed the connection) 2016-06-02T06:15:26Z FreeBirdLjj joined #lisp 2016-06-02T06:20:42Z Harag quit (Ping timeout: 276 seconds) 2016-06-02T06:21:00Z mishoo__ quit (Ping timeout: 240 seconds) 2016-06-02T06:22:25Z zRecursive quit (Remote host closed the connection) 2016-06-02T06:23:15Z mrcom quit (Read error: Connection reset by peer) 2016-06-02T06:25:35Z zRecursive joined #lisp 2016-06-02T06:28:07Z mrcom joined #lisp 2016-06-02T06:31:07Z mathrick quit (Ping timeout: 260 seconds) 2016-06-02T06:32:54Z sauvin quit (Read error: Connection reset by peer) 2016-06-02T06:36:48Z ramky joined #lisp 2016-06-02T06:37:15Z sauvin joined #lisp 2016-06-02T06:39:12Z mishoo__ joined #lisp 2016-06-02T06:41:49Z mathi_aihtam quit (Quit: mathi_aihtam) 2016-06-02T06:42:38Z mathi_aihtam joined #lisp 2016-06-02T06:43:19Z mrcom quit (Read error: Connection reset by peer) 2016-06-02T06:43:48Z CrazyEddy joined #lisp 2016-06-02T06:44:28Z mathrick joined #lisp 2016-06-02T06:45:13Z voidlily quit (Remote host closed the connection) 2016-06-02T06:46:15Z mrcom joined #lisp 2016-06-02T06:48:46Z holly2 quit (Ping timeout: 244 seconds) 2016-06-02T06:51:15Z mathi_aihtam quit (Quit: mathi_aihtam) 2016-06-02T06:53:24Z grouzen joined #lisp 2016-06-02T06:56:31Z holly2 joined #lisp 2016-06-02T07:01:39Z quasisane joined #lisp 2016-06-02T07:03:56Z voidlily joined #lisp 2016-06-02T07:06:41Z flamebeard joined #lisp 2016-06-02T07:08:26Z shka joined #lisp 2016-06-02T07:11:50Z Harag joined #lisp 2016-06-02T07:14:53Z FreeBirdLjj quit (Remote host closed the connection) 2016-06-02T07:15:32Z FreeBirdLjj joined #lisp 2016-06-02T07:17:50Z mvilleneuve joined #lisp 2016-06-02T07:21:50Z IPmonger joined #lisp 2016-06-02T07:25:15Z mastokley quit (Ping timeout: 260 seconds) 2016-06-02T07:26:13Z IPmonger quit (Ping timeout: 258 seconds) 2016-06-02T07:26:18Z mathi_aihtam joined #lisp 2016-06-02T07:29:58Z scymtym joined #lisp 2016-06-02T07:41:24Z lipt quit (Read error: Connection reset by peer) 2016-06-02T07:42:39Z FreeBirdLjj quit (Remote host closed the connection) 2016-06-02T07:42:39Z yixiaozi_ joined #lisp 2016-06-02T07:42:58Z FreeBirdLjj joined #lisp 2016-06-02T07:43:00Z yixiaozi_ left #lisp 2016-06-02T07:45:47Z dilated_dinosaur quit (Ping timeout: 260 seconds) 2016-06-02T07:45:56Z przl joined #lisp 2016-06-02T07:46:49Z Karl_Dscc joined #lisp 2016-06-02T07:46:55Z lipt joined #lisp 2016-06-02T07:46:56Z lipt quit (Max SendQ exceeded) 2016-06-02T07:48:22Z Karl_Dscc quit (Remote host closed the connection) 2016-06-02T07:48:53Z HeyFlash joined #lisp 2016-06-02T07:51:21Z lipt joined #lisp 2016-06-02T07:51:25Z lipt quit (Max SendQ exceeded) 2016-06-02T07:51:37Z FreeBirdLjj quit (Remote host closed the connection) 2016-06-02T07:51:55Z lipt joined #lisp 2016-06-02T07:51:56Z lipt quit (Max SendQ exceeded) 2016-06-02T07:52:22Z FreeBirdLjj joined #lisp 2016-06-02T07:52:40Z przl quit (Ping timeout: 264 seconds) 2016-06-02T07:55:20Z yixiaozi joined #lisp 2016-06-02T07:56:37Z lipt joined #lisp 2016-06-02T07:56:38Z lipt quit (Max SendQ exceeded) 2016-06-02T08:02:09Z FreeBirdLjj quit (Remote host closed the connection) 2016-06-02T08:02:29Z FreeBirdLjj joined #lisp 2016-06-02T08:04:40Z lipt joined #lisp 2016-06-02T08:04:40Z lipt quit (Max SendQ exceeded) 2016-06-02T08:08:08Z emaczen joined #lisp 2016-06-02T08:09:38Z jtza8 joined #lisp 2016-06-02T08:12:51Z emaczen quit (Ping timeout: 246 seconds) 2016-06-02T08:14:02Z yixiaozi quit (Quit: Page closed) 2016-06-02T08:15:55Z lipt joined #lisp 2016-06-02T08:15:56Z lipt quit (Max SendQ exceeded) 2016-06-02T08:17:24Z qubitnerd quit (Ping timeout: 246 seconds) 2016-06-02T08:19:19Z lipt joined #lisp 2016-06-02T08:19:20Z lipt quit (Max SendQ exceeded) 2016-06-02T08:19:51Z Bike quit (Quit: leaving) 2016-06-02T08:20:36Z lipt joined #lisp 2016-06-02T08:20:42Z lipt quit (Max SendQ exceeded) 2016-06-02T08:21:12Z lipt joined #lisp 2016-06-02T08:21:16Z lipt quit (Max SendQ exceeded) 2016-06-02T08:21:44Z mvilleneuve quit (Ping timeout: 244 seconds) 2016-06-02T08:22:11Z lipt joined #lisp 2016-06-02T08:22:15Z lipt quit (Max SendQ exceeded) 2016-06-02T08:22:21Z dilated_dinosaur joined #lisp 2016-06-02T08:25:43Z qubitnerd joined #lisp 2016-06-02T08:26:20Z varjag joined #lisp 2016-06-02T08:32:56Z mvilleneuve joined #lisp 2016-06-02T08:33:14Z Beetny joined #lisp 2016-06-02T08:33:31Z peterh_ joined #lisp 2016-06-02T08:34:17Z lipt joined #lisp 2016-06-02T08:34:22Z lipt quit (Max SendQ exceeded) 2016-06-02T08:34:51Z lipt joined #lisp 2016-06-02T08:34:57Z lipt quit (Max SendQ exceeded) 2016-06-02T08:36:40Z galiley quit (Read error: Connection reset by peer) 2016-06-02T08:37:36Z lipt joined #lisp 2016-06-02T08:37:37Z lipt quit (Max SendQ exceeded) 2016-06-02T08:41:00Z nell quit (Ping timeout: 240 seconds) 2016-06-02T08:43:09Z lipt joined #lisp 2016-06-02T08:43:14Z lipt quit (Max SendQ exceeded) 2016-06-02T08:43:57Z galiley joined #lisp 2016-06-02T08:44:14Z hhdave joined #lisp 2016-06-02T08:44:39Z lipt joined #lisp 2016-06-02T08:44:42Z lipt quit (Max SendQ exceeded) 2016-06-02T08:45:12Z lipt joined #lisp 2016-06-02T08:45:16Z lipt quit (Max SendQ exceeded) 2016-06-02T08:46:49Z jtza8 quit (Ping timeout: 260 seconds) 2016-06-02T08:50:16Z lipt joined #lisp 2016-06-02T08:50:20Z lipt quit (Max SendQ exceeded) 2016-06-02T08:52:30Z lipt joined #lisp 2016-06-02T08:52:34Z lipt quit (Max SendQ exceeded) 2016-06-02T08:53:12Z przl joined #lisp 2016-06-02T08:59:10Z lipt joined #lisp 2016-06-02T08:59:14Z lipt quit (Max SendQ exceeded) 2016-06-02T08:59:16Z davazp joined #lisp 2016-06-02T09:02:05Z lipt joined #lisp 2016-06-02T09:02:07Z lipt quit (Max SendQ exceeded) 2016-06-02T09:03:41Z DavidGuru quit (Quit: DavidGuru) 2016-06-02T09:04:38Z przl quit (Ping timeout: 244 seconds) 2016-06-02T09:04:42Z lipt joined #lisp 2016-06-02T09:04:44Z lipt quit (Max SendQ exceeded) 2016-06-02T09:05:00Z DavidGuru joined #lisp 2016-06-02T09:06:00Z davazp quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2016-06-02T09:06:48Z DavidGuru quit (Client Quit) 2016-06-02T09:07:52Z zRecursive quit (Remote host closed the connection) 2016-06-02T09:08:29Z SumoSudo joined #lisp 2016-06-02T09:08:32Z DavidGuru joined #lisp 2016-06-02T09:09:22Z lipt joined #lisp 2016-06-02T09:09:24Z lipt quit (Max SendQ exceeded) 2016-06-02T09:09:58Z przl joined #lisp 2016-06-02T09:10:02Z IPmonger joined #lisp 2016-06-02T09:14:50Z IPmonger quit (Ping timeout: 272 seconds) 2016-06-02T09:18:33Z przl quit (Ping timeout: 240 seconds) 2016-06-02T09:19:31Z przl joined #lisp 2016-06-02T09:19:36Z przl quit (Client Quit) 2016-06-02T09:19:59Z przl joined #lisp 2016-06-02T09:27:40Z qubitnerd quit (Ping timeout: 240 seconds) 2016-06-02T09:27:41Z smokeink quit (Read error: Connection reset by peer) 2016-06-02T09:38:51Z przl quit (Ping timeout: 250 seconds) 2016-06-02T09:44:19Z FreeBirdLjj quit (Remote host closed the connection) 2016-06-02T09:45:03Z FreeBirdLjj joined #lisp 2016-06-02T09:49:08Z klltkr joined #lisp 2016-06-02T09:49:21Z klltkr quit (Client Quit) 2016-06-02T09:53:07Z wccoder joined #lisp 2016-06-02T09:53:44Z jtza8 joined #lisp 2016-06-02T09:57:20Z wccoder quit (Ping timeout: 240 seconds) 2016-06-02T09:59:56Z SumoSudo: hi everyone 2016-06-02T10:00:09Z SumoSudo: I cant seem to get SLIMV or LIMP working on my vim 2016-06-02T10:00:18Z SumoSudo: I have nvim as well. nothing is working 2016-06-02T10:01:05Z SumoSudo: is there a quick and dirty key bindings to send visual code blocks to a buffer editor in nvim 2016-06-02T10:01:29Z SumoSudo: afk, bbl 2016-06-02T10:04:34Z _z joined #lisp 2016-06-02T10:04:44Z peey joined #lisp 2016-06-02T10:05:02Z DavidGuru quit (Quit: DavidGuru) 2016-06-02T10:08:32Z lisp918 joined #lisp 2016-06-02T10:09:17Z moore33 joined #lisp 2016-06-02T10:09:21Z emaczen joined #lisp 2016-06-02T10:11:05Z dreamaddict joined #lisp 2016-06-02T10:13:23Z qubitnerd joined #lisp 2016-06-02T10:14:25Z emaczen quit (Ping timeout: 260 seconds) 2016-06-02T10:16:22Z smokeink joined #lisp 2016-06-02T10:17:12Z lisp918 quit (Ping timeout: 250 seconds) 2016-06-02T10:20:44Z przl joined #lisp 2016-06-02T10:22:42Z pavelpenev quit (Ping timeout: 246 seconds) 2016-06-02T10:24:38Z FreeBirdLjj quit (Remote host closed the connection) 2016-06-02T10:25:26Z FreeBirdLjj joined #lisp 2016-06-02T10:27:33Z hhdave: hi everyone. CL’s type system is quite powerful and allows things like (typep 2 '(and (integer 1 10) (satisfies evenp))) for example... 2016-06-02T10:27:40Z Cymew quit (Ping timeout: 272 seconds) 2016-06-02T10:28:10Z hhdave: does anyone here know: is it possible to do something like (typep x ‘(list-of (and (integer 1 10) (satisfies evenp)))) to check for lists of some particular type? 2016-06-02T10:28:36Z jdz: hhdave: you have to use satisfies 2016-06-02T10:28:46Z hhdave: I’ve thought of one hackish way to do it by making a deftype and have it generate a predicate for its argument.. 2016-06-02T10:29:08Z hhdave: jdz: but you would have to provide a predicate for each type of thing that you wanted to check for there being lists of wouldn’t you? 2016-06-02T10:29:19Z jdz: yes 2016-06-02T10:31:03Z hhdave: is there any way around that apart from… 2016-06-02T10:31:05Z hhdave: (deftype list-of (x) 2016-06-02T10:31:05Z hhdave: (let ((name (intern (format nil "~S" x)))) 2016-06-02T10:31:07Z hhdave: (eval `(defun ,name (object) 2016-06-02T10:31:08Z hhdave: (typep object ,x))) 2016-06-02T10:31:08Z hhdave: `(satisifies ,name))) 2016-06-02T10:31:30Z hhdave: (which seems just a teensy bit hackish!) 2016-06-02T10:32:37Z hhdave: (sorry - that’s not quite right) 2016-06-02T10:33:12Z Orion3k quit (Ping timeout: 260 seconds) 2016-06-02T10:33:52Z hhdave: (deftype list-of (x) 2016-06-02T10:33:52Z hhdave: (let ((name (intern (format nil "list of ~S" x)))) 2016-06-02T10:33:54Z hhdave: (eval `(defun ,name (object) 2016-06-02T10:33:55Z hhdave: (and (listp object) 2016-06-02T10:33:57Z hhdave: (reduce (lambda (a b) 2016-06-02T10:33:58Z hhdave: (and a b)) 2016-06-02T10:34:00Z hhdave: (mapcar (lambda (x) 2016-06-02T10:34:01Z hhdave: (typep object ,x)) 2016-06-02T10:34:02Z hhdave: object))))) 2016-06-02T10:34:03Z hhdave: `(satisifies ,name))) 2016-06-02T10:36:40Z papachan quit (Quit: WeeChat 0.4.2) 2016-06-02T10:38:06Z flip214: please use paste.lisp.org 2016-06-02T10:39:59Z jtza8 quit (Ping timeout: 260 seconds) 2016-06-02T10:40:25Z Orion3k joined #lisp 2016-06-02T10:41:03Z hhdave: good idea: http://paste.lisp.org/+6STV 2016-06-02T10:41:20Z hhdave: someone on stack overflow seems to have done it like the above (http://stackoverflow.com/questions/3210177/in-common-lisp-how-to-define-a-generic-data-type-specifier-like-list-of-intege) 2016-06-02T10:41:49Z hhdave: I changed the way the predicate was generated though, otherwise a new function binding would be established each time you do a type check 2016-06-02T10:43:04Z przl quit (Ping timeout: 264 seconds) 2016-06-02T10:47:42Z test1600 quit (Quit: Leaving) 2016-06-02T10:51:26Z Cymew joined #lisp 2016-06-02T10:54:46Z papachan joined #lisp 2016-06-02T11:00:44Z HeyFlash: hhdave: There was a paper at els about what you are trying to do (I think). 2016-06-02T11:01:29Z DeadTrickster quit (Read error: No route to host) 2016-06-02T11:01:41Z HeyFlash: https://www.youtube.com/watch?v=ovE6WTIKCcs 2016-06-02T11:06:49Z przl joined #lisp 2016-06-02T11:09:14Z FreeBirdLjj quit (Remote host closed the connection) 2016-06-02T11:09:19Z qubitnerd quit (Ping timeout: 258 seconds) 2016-06-02T11:09:34Z FreeBirdLjj joined #lisp 2016-06-02T11:12:46Z grouzen quit (Ping timeout: 244 seconds) 2016-06-02T11:12:51Z jtza8 joined #lisp 2016-06-02T11:12:59Z dreamaddict quit (Quit: Page closed) 2016-06-02T11:16:23Z DeadTrickster joined #lisp 2016-06-02T11:26:02Z quazimodo quit (Ping timeout: 244 seconds) 2016-06-02T11:26:10Z quazimod1 quit (Ping timeout: 260 seconds) 2016-06-02T11:30:20Z mfsa quit (Read error: Connection reset by peer) 2016-06-02T11:32:21Z IPmonger joined #lisp 2016-06-02T11:33:39Z ksool quit (Ping timeout: 260 seconds) 2016-06-02T11:34:27Z Harag quit (Ping timeout: 260 seconds) 2016-06-02T11:35:39Z qubitnerd joined #lisp 2016-06-02T11:36:47Z IPmonger quit (Ping timeout: 260 seconds) 2016-06-02T11:39:35Z peey quit (Quit: Page closed) 2016-06-02T11:41:27Z Cymew quit (Ping timeout: 260 seconds) 2016-06-02T11:42:15Z quazimodo joined #lisp 2016-06-02T11:42:15Z quazimod1 joined #lisp 2016-06-02T11:46:07Z qubitnerd quit (Ping timeout: 258 seconds) 2016-06-02T11:51:16Z ksool joined #lisp 2016-06-02T11:54:11Z hhdave: oh cool - that looks relevant 2016-06-02T11:54:13Z hhdave: thanks 2016-06-02T11:57:57Z jtza8 quit (Ping timeout: 250 seconds) 2016-06-02T11:58:20Z Beetny quit (Ping timeout: 240 seconds) 2016-06-02T11:59:35Z rpg joined #lisp 2016-06-02T11:59:42Z Neurostorm joined #lisp 2016-06-02T12:01:14Z qubitnerd joined #lisp 2016-06-02T12:03:36Z HeyFlash: Speaking of els, I can't seem to find the proceedings of previous els. Is there a place where the papers can be accessed? 2016-06-02T12:06:16Z schjetne: HeyFlash: If you click 'ELS Editions' in the top right you can see the web pages for past symposia, with their associated proceedings 2016-06-02T12:07:46Z HeyFlash: schjetne: Thank you, I wasn't seeing the big fat proceedings button on each page. 2016-06-02T12:08:45Z smokeink quit (Ping timeout: 260 seconds) 2016-06-02T12:09:04Z quazimodo quit (Read error: Connection reset by peer) 2016-06-02T12:09:04Z quazimod1 quit (Read error: Connection reset by peer) 2016-06-02T12:10:21Z MoALTz joined #lisp 2016-06-02T12:10:38Z emaczen joined #lisp 2016-06-02T12:10:54Z Neurostorm quit (Ping timeout: 272 seconds) 2016-06-02T12:11:59Z EvW joined #lisp 2016-06-02T12:15:03Z mikaelj quit (Ping timeout: 246 seconds) 2016-06-02T12:16:35Z emaczen quit (Ping timeout: 250 seconds) 2016-06-02T12:17:33Z przl quit (Ping timeout: 258 seconds) 2016-06-02T12:19:30Z smokeink joined #lisp 2016-06-02T12:21:53Z moredhel_ joined #lisp 2016-06-02T12:22:25Z quazimodo joined #lisp 2016-06-02T12:22:28Z qubitnerd quit (Ping timeout: 252 seconds) 2016-06-02T12:22:29Z quazimod1 joined #lisp 2016-06-02T12:26:46Z moredhel_ quit (Client Quit) 2016-06-02T12:29:54Z rpg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-06-02T12:30:06Z Harag joined #lisp 2016-06-02T12:37:49Z Cymew joined #lisp 2016-06-02T12:38:00Z ramky quit (Quit: Leaving) 2016-06-02T12:44:16Z jtza8 joined #lisp 2016-06-02T12:47:20Z qubitnerd joined #lisp 2016-06-02T12:49:41Z zadock joined #lisp 2016-06-02T12:50:37Z optikalmouse joined #lisp 2016-06-02T12:51:12Z zadock quit (Remote host closed the connection) 2016-06-02T13:02:08Z NeverDie joined #lisp 2016-06-02T13:05:28Z HDurer joined #lisp 2016-06-02T13:05:40Z m0li joined #lisp 2016-06-02T13:06:44Z jerme joined #lisp 2016-06-02T13:11:25Z atgreen quit (Ping timeout: 252 seconds) 2016-06-02T13:11:42Z LiamH joined #lisp 2016-06-02T13:12:41Z NeverDie_ joined #lisp 2016-06-02T13:14:25Z przl joined #lisp 2016-06-02T13:15:15Z payphone joined #lisp 2016-06-02T13:15:57Z NeverDie quit (Ping timeout: 260 seconds) 2016-06-02T13:19:03Z przl quit (Ping timeout: 240 seconds) 2016-06-02T13:20:32Z IPmonger joined #lisp 2016-06-02T13:22:27Z EvW quit (Ping timeout: 250 seconds) 2016-06-02T13:25:10Z IPmonger quit (Ping timeout: 260 seconds) 2016-06-02T13:29:03Z profess quit (Ping timeout: 276 seconds) 2016-06-02T13:29:22Z jtza8 quit (Ping timeout: 260 seconds) 2016-06-02T13:30:52Z profess joined #lisp 2016-06-02T13:31:55Z Harag quit (Ping timeout: 258 seconds) 2016-06-02T13:32:53Z jason_m joined #lisp 2016-06-02T13:33:06Z EvW joined #lisp 2016-06-02T13:34:58Z warweasle joined #lisp 2016-06-02T13:37:06Z unbalancedparen joined #lisp 2016-06-02T13:37:17Z przl joined #lisp 2016-06-02T13:43:53Z grouzen joined #lisp 2016-06-02T13:51:22Z kenanb joined #lisp 2016-06-02T13:51:31Z kenanb: hi folks 2016-06-02T13:52:08Z optikalmouse: allo! bonjour 2016-06-02T13:52:47Z przl quit (Ping timeout: 250 seconds) 2016-06-02T13:52:58Z kenanb: https://twitter.com/Atabey_Kaygun/status/738323467616026624 in this conversation Rainer says "though the implementation is very inefficient, plus don't use APPLY for list operations -> REDUCE" does he mean like, ALWAYS? isn't that kind of depends on the context? 2016-06-02T13:54:31Z EvW quit (Ping timeout: 250 seconds) 2016-06-02T13:54:40Z wccoder joined #lisp 2016-06-02T13:54:44Z kenanb: "don't use APPLY for list operations" I am kind of surprised to see this suggested, I mean it fits in this specific case, but in general? I don't even thingk they are really THAT interchangable overall 2016-06-02T13:55:06Z kenanb: s/thingk/think 2016-06-02T13:55:30Z H4ns: kenanb: the issue with apply is that the argument list can't be arbitrarily long. 2016-06-02T13:55:42Z FreeBirdLjj quit (Ping timeout: 276 seconds) 2016-06-02T13:56:06Z H4ns: kenanb: thus, it is a common suggestion to avoid apply when the length of the argument list is not known in advance. 2016-06-02T13:56:09Z kenanb: ah, so it is suggested because "list operations" 2016-06-02T13:56:18Z H4ns: right. 2016-06-02T13:56:41Z H4ns: because crufty old cl has arbitrary argument list length limits :) 2016-06-02T13:59:30Z przl joined #lisp 2016-06-02T13:59:35Z wccoder quit (Ping timeout: 260 seconds) 2016-06-02T14:00:42Z EvW joined #lisp 2016-06-02T14:01:08Z kenanb: H4ns: Thank you very much! I was aware of the length limitations of apply but since the arguments to APPLY always include a list, I thought in a way he means "do not use APPLY, ever" 2016-06-02T14:01:33Z vlatkoB quit (Ping timeout: 244 seconds) 2016-06-02T14:01:35Z kenanb: now I understand 2016-06-02T14:01:49Z moore33: apply is great if you know that the argument list is small enough. 2016-06-02T14:03:02Z vlatkoB joined #lisp 2016-06-02T14:05:51Z kenanb: yeah, I used it for those cases for years now (tho I am sure I also applied in some places where I should have reduced) 2016-06-02T14:06:20Z fitzsim` joined #lisp 2016-06-02T14:09:48Z Petit_Dejeuner: reduce is so easy to use instead though 2016-06-02T14:11:24Z Karl_Dscc joined #lisp 2016-06-02T14:12:18Z |meta joined #lisp 2016-06-02T14:12:56Z emaczen joined #lisp 2016-06-02T14:17:55Z emaczen quit (Ping timeout: 258 seconds) 2016-06-02T14:18:04Z rpg joined #lisp 2016-06-02T14:18:16Z przl quit (Ping timeout: 244 seconds) 2016-06-02T14:18:25Z gingerale joined #lisp 2016-06-02T14:18:33Z NeverDie_ quit (Quit: http://radiux.io/) 2016-06-02T14:19:33Z adolf_stalin joined #lisp 2016-06-02T14:21:11Z shdeng quit (Ping timeout: 244 seconds) 2016-06-02T14:21:22Z kenanb left #lisp 2016-06-02T14:21:24Z eudoxia joined #lisp 2016-06-02T14:23:01Z CEnnis91 joined #lisp 2016-06-02T14:23:33Z IPmonger joined #lisp 2016-06-02T14:28:17Z IPmonger quit (Ping timeout: 260 seconds) 2016-06-02T14:28:39Z rpg quit (Ping timeout: 260 seconds) 2016-06-02T14:29:55Z mathi_aihtam quit (Quit: mathi_aihtam) 2016-06-02T14:30:27Z varjag quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2016-06-02T14:31:43Z Petit_Dejeuner quit (Ping timeout: 258 seconds) 2016-06-02T14:35:34Z peterh_ quit (Ping timeout: 240 seconds) 2016-06-02T14:35:43Z IPmonger joined #lisp 2016-06-02T14:38:19Z quazimodo quit (Ping timeout: 252 seconds) 2016-06-02T14:39:15Z quazimod1 quit (Ping timeout: 276 seconds) 2016-06-02T14:39:46Z scymtym quit (Ping timeout: 258 seconds) 2016-06-02T14:40:40Z IPmonger quit (Ping timeout: 264 seconds) 2016-06-02T14:41:18Z smokeink quit (Ping timeout: 258 seconds) 2016-06-02T14:44:34Z przl joined #lisp 2016-06-02T14:45:40Z flamebeard quit (Quit: Leaving) 2016-06-02T14:45:58Z joekunin joined #lisp 2016-06-02T14:49:40Z przl quit (Ping timeout: 264 seconds) 2016-06-02T14:50:32Z Denommus joined #lisp 2016-06-02T14:52:03Z Orion3k quit (Ping timeout: 240 seconds) 2016-06-02T14:52:20Z rpg joined #lisp 2016-06-02T14:52:59Z Orion3k joined #lisp 2016-06-02T14:55:53Z Karl_Dscc quit (Remote host closed the connection) 2016-06-02T14:56:11Z loke joined #lisp 2016-06-02T14:57:01Z vmihai quit (Ping timeout: 252 seconds) 2016-06-02T14:59:01Z smokeink joined #lisp 2016-06-02T15:02:00Z shka quit (Ping timeout: 260 seconds) 2016-06-02T15:02:22Z eudoxia quit (Quit: Leaving) 2016-06-02T15:05:52Z l1x quit (Ping timeout: 264 seconds) 2016-06-02T15:07:04Z banjiewen quit (Ping timeout: 264 seconds) 2016-06-02T15:07:30Z _z: http://syste.md/ 2016-06-02T15:07:31Z warweasle is now known as warweasle_afk 2016-06-02T15:07:40Z drmeister quit (Ping timeout: 264 seconds) 2016-06-02T15:07:45Z l1x joined #lisp 2016-06-02T15:08:58Z Bike joined #lisp 2016-06-02T15:09:02Z banjiewen joined #lisp 2016-06-02T15:09:17Z drmeister joined #lisp 2016-06-02T15:11:20Z mishoo__ quit (Ping timeout: 260 seconds) 2016-06-02T15:13:31Z grouzen quit (Ping timeout: 244 seconds) 2016-06-02T15:17:50Z Grue`: i wonder if a macro with a very long &body can break call-arguments-limit 2016-06-02T15:18:16Z blackwolf quit (Quit: ERC (IRC client for Emacs 24.5.1)) 2016-06-02T15:19:53Z Bike: macro functions do n't receive forms as discrete arguments, and i guess it's not explicit how limits on destructuring-bind work 2016-06-02T15:21:06Z przl joined #lisp 2016-06-02T15:22:40Z klltkr joined #lisp 2016-06-02T15:22:48Z clique joined #lisp 2016-06-02T15:24:06Z mathi_aihtam joined #lisp 2016-06-02T15:24:30Z przl quit (Client Quit) 2016-06-02T15:24:47Z mathi_aihtam quit (Client Quit) 2016-06-02T15:24:49Z przl joined #lisp 2016-06-02T15:29:35Z rpg_ joined #lisp 2016-06-02T15:31:40Z rpg quit (Ping timeout: 264 seconds) 2016-06-02T15:32:18Z mathi_aihtam joined #lisp 2016-06-02T15:32:39Z wccoder joined #lisp 2016-06-02T15:35:48Z pepton1 joined #lisp 2016-06-02T15:36:29Z mathi_aihtam quit (Client Quit) 2016-06-02T15:37:03Z clique left #lisp 2016-06-02T15:41:25Z mathi_aihtam joined #lisp 2016-06-02T15:41:28Z klltkr quit (Quit: My MacBook has gone to sleep. ZZZzzz…) 2016-06-02T15:42:15Z mnoonan joined #lisp 2016-06-02T15:42:24Z mvilleneuve quit (Quit: This computer has gone to sleep) 2016-06-02T15:44:32Z walter|r joined #lisp 2016-06-02T15:45:30Z walter|r quit (Remote host closed the connection) 2016-06-02T15:54:33Z EvW quit (Ping timeout: 250 seconds) 2016-06-02T15:58:04Z shka joined #lisp 2016-06-02T15:58:51Z mishoo__ joined #lisp 2016-06-02T16:03:57Z joga quit (Changing host) 2016-06-02T16:03:57Z joga joined #lisp 2016-06-02T16:07:43Z jsmith_ quit (Remote host closed the connection) 2016-06-02T16:10:08Z jsmith_ joined #lisp 2016-06-02T16:13:08Z IPmonger joined #lisp 2016-06-02T16:14:15Z emaczen joined #lisp 2016-06-02T16:15:55Z moore33 quit (Quit: Leaving) 2016-06-02T16:16:19Z kushal joined #lisp 2016-06-02T16:16:51Z rpg_ quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-06-02T16:17:30Z IPmonger quit (Ping timeout: 250 seconds) 2016-06-02T16:17:35Z qubitnerd quit (Ping timeout: 244 seconds) 2016-06-02T16:20:04Z emaczen quit (Ping timeout: 252 seconds) 2016-06-02T16:24:34Z jsmith_ quit (Remote host closed the connection) 2016-06-02T16:25:50Z klltkr joined #lisp 2016-06-02T16:26:44Z klltkr quit (Client Quit) 2016-06-02T16:27:09Z klltkr joined #lisp 2016-06-02T16:27:56Z klltkr quit (Client Quit) 2016-06-02T16:31:08Z rpg joined #lisp 2016-06-02T16:40:50Z hhdave quit (Ping timeout: 244 seconds) 2016-06-02T16:41:20Z grouzen joined #lisp 2016-06-02T16:42:45Z schaueho quit (Ping timeout: 276 seconds) 2016-06-02T16:45:40Z przl quit (Ping timeout: 250 seconds) 2016-06-02T16:46:42Z _sjs joined #lisp 2016-06-02T16:53:19Z holly2 quit (Ping timeout: 260 seconds) 2016-06-02T16:58:06Z IPmonger joined #lisp 2016-06-02T17:00:51Z holly2 joined #lisp 2016-06-02T17:01:38Z d4ryus is now known as Guest85588 2016-06-02T17:01:38Z Guest85588 quit (Killed (barjavel.freenode.net (Nickname regained by services))) 2016-06-02T17:01:38Z d4ryus joined #lisp 2016-06-02T17:02:52Z IPmonger quit (Ping timeout: 264 seconds) 2016-06-02T17:04:05Z EvW joined #lisp 2016-06-02T17:04:47Z benwbooth quit (Quit: Textual IRC Client: www.textualapp.com) 2016-06-02T17:05:05Z benwbooth joined #lisp 2016-06-02T17:08:24Z kamog joined #lisp 2016-06-02T17:09:20Z zi0nman joined #lisp 2016-06-02T17:11:09Z yakcc joined #lisp 2016-06-02T17:11:35Z jsmith_ joined #lisp 2016-06-02T17:18:57Z yakcc quit (Quit: rcirc on GNU Emacs 24.5.1) 2016-06-02T17:20:46Z smokeink quit (Ping timeout: 258 seconds) 2016-06-02T17:20:46Z mrcom quit (Read error: Connection reset by peer) 2016-06-02T17:21:44Z jbakid quit (Quit: jbakid) 2016-06-02T17:22:05Z optikalmouse quit (Quit: optikalmouse) 2016-06-02T17:25:44Z mrcom joined #lisp 2016-06-02T17:26:55Z mastokley joined #lisp 2016-06-02T17:27:29Z Jesin quit (Quit: Leaving) 2016-06-02T17:30:14Z Jesin joined #lisp 2016-06-02T17:38:46Z jerme quit (Ping timeout: 250 seconds) 2016-06-02T17:47:45Z mathi_aihtam quit (Quit: mathi_aihtam) 2016-06-02T17:47:45Z holly2 quit (Ping timeout: 276 seconds) 2016-06-02T17:52:19Z jasom: I have come to the conclusion that a concurrent GC is basically impossible to implement on sbcl without a major rewrite of large parts of it. However, an incremental GC should be doable, with the only intrusive changes needed being checks at places where addresses are used for comparison or hashing. 2016-06-02T17:53:06Z holly2 joined #lisp 2016-06-02T17:53:25Z TruePika: mrcom: I figured that out myself, all the parse errors when calling in child threads. I only use cl-libxml2 from the main thread. 2016-06-02T17:53:25Z minion: TruePika, memo from mrcom: cl-libxml2 may not be thread-safe. http://xmlsoft.org/threads.html says "xmlInitParser" has to be called in main thread before anything else, and I don't see an explicit call to that in cl-libxml2. 2016-06-02T17:53:43Z TruePika: minion: Yes, I know that <_< 2016-06-02T17:53:43Z minion: Yes, I know that <_<: An error was encountered in lookup: Parse error:URI "http://www.cliki.net/Yes%2C%20I%20know%20that%20<_<?source" contains illegal character #\< at position 48.. 2016-06-02T17:53:50Z TruePika: lol 2016-06-02T17:54:36Z mathi_aihtam joined #lisp 2016-06-02T17:55:22Z TruePika: Bike: since we still don't know the root cause of the whole --script issue, I'm going to see what happens if I rebind those streams in user code. If it crashes, it is to do with the rebindings; if it doesn't, either I messed up or it is something else. 2016-06-02T17:55:51Z Bike: i hope you figure it out, this is some terrible stuff to have to debug 2016-06-02T17:56:26Z TruePika: especially without /show compiled into my SBCL 2016-06-02T17:56:43Z TruePika: don't want to recompile it either 2016-06-02T17:56:43Z Bike: have you tried that? 2016-06-02T17:56:58Z Bike: why not? twenty minutes of melting your CPU beats debugging 2016-06-02T17:56:59Z TruePika: not in *FEATURES* 2016-06-02T17:57:18Z TruePika: lol 2016-06-02T17:59:28Z TruePika: probably a better thing to do anyway 2016-06-02T18:00:44Z Bike: clhs #( 2016-06-02T18:00:44Z specbot: http://www.lispworks.com/reference/HyperSpec/Body/02_dhc.htm 2016-06-02T18:02:12Z jasom: twenty minutes? Does sbcl take that long to compile on your machine? 2016-06-02T18:02:40Z Bike: dunno, i haven't built it in a while 2016-06-02T18:02:41Z emaczen joined #lisp 2016-06-02T18:04:28Z jasom: just started a make.sh --fancy; I remember it being more like 5 minutes 2016-06-02T18:04:57Z Bike: it used to take like an hour on my netbook, so i think of it as being long, even though obviously that's crappier than the average 2016-06-02T18:05:01Z zi0nman quit (Read error: Connection reset by peer) 2016-06-02T18:05:50Z TruePika: Bike: Longer compile times mean more swordfights ;) 2016-06-02T18:06:15Z Bike: i don't have a wheeled chair, tragically 2016-06-02T18:06:27Z jasom: TruePika: that's why my work gets everyone fast multicore workstations with SSDs; money saved in swordfights more than pays for it :) 2016-06-02T18:07:34Z zi0nman joined #lisp 2016-06-02T18:09:41Z jasom: 3m46.392s on a Intel(R) Xeon(R) CPU E31220 @ 3.10GHz, my long-in-the-tooth personal machine. I find that if I'm on a netbook, emacs under tmux on a workstation is faster overall even on a poor network connection. 2016-06-02T18:09:48Z optikalmouse joined #lisp 2016-06-02T18:10:39Z TruePika: will it be smart enough not to use my existing FASLs from my systems? 2016-06-02T18:10:48Z warweasle_afk is now known as warweasle 2016-06-02T18:10:55Z Bike: yeah, fasls have information about what sbcl compiled them in them. 2016-06-02T18:11:16Z TruePika: that's good, since I might be missing some optional features I have in my main 2016-06-02T18:11:31Z TruePika: (which most likely aren't used in this script) 2016-06-02T18:11:40Z jasom: Bike: oh, that's good to know. ASDF only knows about the implementation name and version. 2016-06-02T18:11:42Z Bike: i think it just writes the relevant subset of *features* into the file actually 2016-06-02T18:12:20Z jasom has always just deleted the asdf cache when changing builds on the same sbcl version. 2016-06-02T18:12:33Z TruePika is looking at the compile output...I think it's running with /show now 2016-06-02T18:13:01Z dyelar joined #lisp 2016-06-02T18:13:07Z TruePika: given all the stuff like "/returning from PROCLAIM" and "/THROWing EOF-INPUT-CATCHER" 2016-06-02T18:13:27Z Bike: yeah, sounds right. 2016-06-02T18:13:37Z Bike: and yeah, here we go, *features-potentially-affecting-fasl-format*. though it's only a few things for me. 2016-06-02T18:13:48Z TruePika: and a screen full of "/Entering CONDITION-NOTIFY" now 2016-06-02T18:15:49Z DGASAU quit (Ping timeout: 250 seconds) 2016-06-02T18:16:48Z PuercoPop: jasom: what parts would have to be rewritten? 2016-06-02T18:17:00Z TruePika: lol I forgot about this 2016-06-02T18:17:07Z EvW quit (Ping timeout: 250 seconds) 2016-06-02T18:17:07Z TruePika: I got a crash already... 2016-06-02T18:17:14Z TruePika: I didn't provide a filename to my script 2016-06-02T18:17:32Z TruePika: at least I know /show works 2016-06-02T18:18:01Z TruePika throws a `2>&1 | tee debug.log` on the end and runs 2016-06-02T18:18:24Z TruePika: woah screens full of HTML 2016-06-02T18:19:08Z TruePika: now to wait for it to crash 2016-06-02T18:19:12Z TruePika: hopefully it will 2016-06-02T18:19:25Z Cymew: What is that /show thing? 2016-06-02T18:19:50Z Bike: sbcl sources have a ton of debug print calls, called /show. they're usually not compiled in 2016-06-02T18:20:52Z Bike: they're for debugging sbcl itself, which pika is doing at this point. our hearts go out to 2016-06-02T18:21:11Z TruePika: Cymew: If you saw my VM PuTTY window, you'd see _why_ it's not a default feature 2016-06-02T18:21:26Z Cymew: Are they added by --fancy, or how to you add that? 2016-06-02T18:21:33Z Bike: :sb-show in features 2016-06-02T18:21:35Z TruePika: I just did a --with-sb-show 2016-06-02T18:21:42Z Bike: or that i guess 2016-06-02T18:21:51Z jbakid joined #lisp 2016-06-02T18:22:25Z Cymew: Will have to look at that some day. SBCL building have lot of dark corners. 2016-06-02T18:23:01Z TruePika: Cymew: --with-better-lighting :D 2016-06-02T18:23:15Z Cymew: TruePika: That sounds handy! :) 2016-06-02T18:23:35Z sauvin quit (Remote host closed the connection) 2016-06-02T18:24:38Z DGASAU joined #lisp 2016-06-02T18:24:50Z TruePika: meh, I wish I had a dedicated machine for this 2016-06-02T18:25:18Z TruePika: VBox is using 100% of my dual-core CPU (I'm on a laptop) 2016-06-02T18:25:27Z TruePika: well 80% 2016-06-02T18:26:04Z TruePika: and my server box is just an 800MHz PIII 2016-06-02T18:26:41Z TruePika: I don't even have SBCL on here/there (just CLisp) (irssi is running from there) 2016-06-02T18:28:21Z pjb joined #lisp 2016-06-02T18:28:33Z TruePika: at least I shouldn't have to keep tabbing over to my VM session to see if it crashed yet, I can just listen to the cooling fan :D 2016-06-02T18:35:44Z EvW joined #lisp 2016-06-02T18:36:17Z TruePika: well, it crashed...in the middle of displaying some HTML 2016-06-02T18:36:38Z TruePika: might just be an unflushed stream though 2016-06-02T18:37:36Z TruePika: waiting for debug.log to load 2016-06-02T18:37:55Z TruePika: O_o 2016-06-02T18:37:58Z TruePika: "debug.log" [readonly][noeol] 8283134L, 1329524662C 2016-06-02T18:38:22Z Bike: still better than silence 2016-06-02T18:38:37Z puchka joined #lisp 2016-06-02T18:39:06Z jason_m quit (Ping timeout: 276 seconds) 2016-06-02T18:39:56Z TruePika: okay, that HTML was part of a backtrace 2016-06-02T18:40:35Z TruePika: ...interesting 2016-06-02T18:40:54Z TruePika: that backtrace...was from %WARN 2016-06-02T18:41:18Z TruePika: (the HTML itself is an argument to PARSE-HTML) 2016-06-02T18:42:28Z TruePika: I think I'll change the code a bit so that hopefully I don't get the full HTML in the backtrace 2016-06-02T18:42:28Z jasom: PuercoPop: everywhere inside pseudo-atomic and without-interrupts is suspect 2016-06-02T18:43:12Z HeyFlash quit (Ping timeout: 260 seconds) 2016-06-02T18:44:53Z ryan_vw joined #lisp 2016-06-02T18:46:14Z IPmonger joined #lisp 2016-06-02T18:49:12Z TruePika: okay, restarted 2016-06-02T18:50:47Z IPmonger quit (Ping timeout: 260 seconds) 2016-06-02T18:51:16Z IPmonger joined #lisp 2016-06-02T18:52:32Z puchacz joined #lisp 2016-06-02T18:55:55Z IPmonger quit (Ping timeout: 260 seconds) 2016-06-02T18:58:02Z warweasle quit (Quit: bye) 2016-06-02T19:03:00Z coyo joined #lisp 2016-06-02T19:03:00Z coyo quit (Changing host) 2016-06-02T19:03:00Z coyo joined #lisp 2016-06-02T19:03:17Z TruePika: Crashed, last line is "/Entering CONDITION-NOTIFY" 2016-06-02T19:04:05Z TruePika: it also doesn't look like it had just started a file parse, which is odd 2016-06-02T19:04:37Z jasom: TruePika: are you calling into lisp from libxml? 2016-06-02T19:04:48Z TruePika: jasom: no, libxml from lisp 2016-06-02T19:04:51Z TruePika: via cl-libxml2 2016-06-02T19:05:02Z jasom: TruePika: right, but do you have callbacks to get back into lisp? 2016-06-02T19:05:24Z TruePika: None that I wrote 2016-06-02T19:05:25Z eschatologist quit (Ping timeout: 258 seconds) 2016-06-02T19:05:41Z TruePika: I don't think cl-libxml2 provides any either 2016-06-02T19:06:19Z TruePika: right now I'm thinking that my debug.log is getting truncated, citing the weird position of the crash this time and the incomplete backtrace last time 2016-06-02T19:06:33Z Cymew quit (Ping timeout: 244 seconds) 2016-06-02T19:06:35Z TruePika: I'll try without tee and stuff 2016-06-02T19:06:51Z TruePika: just the screen scrollback 2016-06-02T19:07:02Z jasom: https://github.com/archimag/cl-libxml2/blob/master/tree/parse.lisp#L140 2016-06-02T19:08:29Z TruePika: you think the problem is due to the callback? 2016-06-02T19:08:55Z TruePika: ...well, right now at least, I have it reading directly from a stream 2016-06-02T19:09:16Z TruePika: it _was_ set to read from a string, but that might have had an implicit read-from-string or something 2016-06-02T19:10:21Z TruePika: no, it doesn't look like (to me) it _was_ set to use a callback 2016-06-02T19:10:41Z TruePika: I'm not sure though 2016-06-02T19:12:11Z TruePika: Right now it's reading from a pathname 2016-06-02T19:12:35Z mathi_aihtam quit (Quit: mathi_aihtam) 2016-06-02T19:13:00Z jasom: I don't see anyway to call cl-libxml2:parse without using a callback 2016-06-02T19:13:15Z Cymew joined #lisp 2016-06-02T19:13:29Z mathi_aihtam joined #lisp 2016-06-02T19:13:38Z wccoder quit (Remote host closed the connection) 2016-06-02T19:13:40Z jasom: nevermind, I found it 2016-06-02T19:13:52Z TruePika: I'm using html:with-parse-html and xtree:with-parse-document 2016-06-02T19:14:10Z TruePika: normally passing strings in, currently passing a pathname to with-parse-html 2016-06-02T19:15:36Z jasom: yeah pathname uses xmlReadFile, I originally missed that reading the code 2016-06-02T19:16:19Z francogrex joined #lisp 2016-06-02T19:16:59Z francogrex: is this ansi compliant? (reduce #'+ ()) => 0 ? 2016-06-02T19:17:36Z dlowe: no. your list isn't quoted. 2016-06-02T19:17:36Z jackdaniel: francogrex: yes 2016-06-02T19:17:37Z TruePika: I'd think it would give NIL 2016-06-02T19:17:39Z jackdaniel: (+) 2016-06-02T19:17:40Z TruePika: dlowe: lol 2016-06-02T19:17:45Z jackdaniel: (*) -> 1 2016-06-02T19:17:46Z jasom: francogrex: yes, because (+) yields no 2016-06-02T19:18:05Z dlowe: yeah, I guess so 2016-06-02T19:18:20Z salv0 joined #lisp 2016-06-02T19:18:36Z jasom: if the list is empty and no :initial value is passed, the result is the same as calling the function with zero arguments 2016-06-02T19:18:47Z jackdaniel: () === nil, you don't need quote 2016-06-02T19:18:54Z dlowe: yeah, I got that. 2016-06-02T19:19:05Z TruePika: chls reduce 2016-06-02T19:19:11Z TruePika: err 2016-06-02T19:19:12Z jackdaniel: spec reduce 2016-06-02T19:19:14Z jasom: clhs reduce 2016-06-02T19:19:14Z specbot: http://www.lispworks.com/reference/HyperSpec/Body/f_reduce.htm 2016-06-02T19:19:18Z _z quit (Ping timeout: 244 seconds) 2016-06-02T19:19:18Z jackdaniel: heh 2016-06-02T19:19:24Z kamog quit (Remote host closed the connection) 2016-06-02T19:19:29Z jasom: there is no common hyper-lisp spec lookup 2016-06-02T19:19:44Z holly2 quit (Ping timeout: 260 seconds) 2016-06-02T19:19:54Z TruePika: completly hypothetical Lisp specification 2016-06-02T19:19:56Z jackdaniel: common hyper-lisp sounds nice, chl 2016-06-02T19:20:04Z DGASAU quit (Ping timeout: 240 seconds) 2016-06-02T19:20:06Z TruePika: sounds like it crashed 2016-06-02T19:20:25Z jasom: TruePika: you're using xpath so you can't use fxml, right? 2016-06-02T19:20:44Z TruePika: jasom: yeah I'm depending on xpath 2016-06-02T19:20:52Z TruePika: last line: /Entering CONDITION-NOTIFY 2016-06-02T19:21:49Z TruePika: last backtrace contains SB-KERNEL::%WARN on 4, LIBXML2.TREE:LIBXML2-WARNING stuff 2016-06-02T19:22:29Z dlowe: http://fullstacklisp.com/ 2016-06-02T19:22:33Z wccoder joined #lisp 2016-06-02T19:22:39Z Cymew quit (Ping timeout: 276 seconds) 2016-06-02T19:23:04Z TruePika: this looks like it is just after parsing the HTML, since the list of warnings was generated and the condition passed 2016-06-02T19:24:04Z vmihai joined #lisp 2016-06-02T19:24:04Z mathi_aihtam quit (Read error: Connection reset by peer) 2016-06-02T19:24:16Z TruePika: After the backtrace, there's an /entering PROCLAIM, the /returning from PROCLAIM, and then the final line /Entering CONDITION-NOTIFY 2016-06-02T19:24:26Z mathi_aihtam joined #lisp 2016-06-02T19:24:28Z TruePika: exit code is, again, confirmed to be 1 2016-06-02T19:26:27Z jasom: TruePika: you could try rebuilding sbcl with every call to exit() in runtime/*.c with a different exit code 2016-06-02T19:26:32Z jasom: right now they are mostly exit(1) 2016-06-02T19:26:39Z unbalancedparen quit (Quit: WeeChat 1.5) 2016-06-02T19:26:52Z mrcom: TruePika: cl-libxml2 does callbacks when parsing. 2016-06-02T19:27:01Z jasom: mrcom: not when parsing from a pathname 2016-06-02T19:27:07Z jasom: mrcom: we had this conversation already :) 2016-06-02T19:27:39Z holly2 joined #lisp 2016-06-02T19:28:02Z TruePika: Changing all exit(1) to incrementing numbers now 2016-06-02T19:28:16Z jasom: it's a shot in the dark, but at least it's easy 2016-06-02T19:28:40Z NeverDie joined #lisp 2016-06-02T19:30:18Z TruePika: okay, rebuilding 2016-06-02T19:31:00Z TruePika: 10:56 < Bike> why not? twenty minutes of melting your CPU beats debugging 2016-06-02T19:31:10Z TruePika: Seems like it might end up being 20min 2016-06-02T19:31:17Z eschatologist joined #lisp 2016-06-02T19:31:27Z mvilleneuve joined #lisp 2016-06-02T19:32:16Z TruePika: I'm just glad right now that Factorio 0.13 wasn't released yet 2016-06-02T19:32:29Z TruePika: since this compiling and testing and stuff takes too much CPU 2016-06-02T19:32:45Z varjag joined #lisp 2016-06-02T19:34:35Z gingerale quit (Remote host closed the connection) 2016-06-02T19:34:43Z DGASAU joined #lisp 2016-06-02T19:35:19Z benwbooth quit (Ping timeout: 252 seconds) 2016-06-02T19:35:20Z mrcom: jasom, TruePika: true about the read callback, missed that. However, there is also an error callback which is enabled. 2016-06-02T19:37:27Z nell joined #lisp 2016-06-02T19:37:31Z mrcom: Though it just pushes an error onto *libxml2-errors* list. 2016-06-02T19:37:59Z TruePika: and that list goes into the condition 2016-06-02T19:37:59Z wildlander joined #lisp 2016-06-02T19:37:59Z wildlander quit (Max SendQ exceeded) 2016-06-02T19:38:00Z jasom: mrcom: that's unlikely to unwind the stack, which is what I was worried about 2016-06-02T19:38:20Z benwbooth joined #lisp 2016-06-02T19:38:40Z TruePika: I've hit the /show part of the compiliation process 2016-06-02T19:38:45Z wildlander joined #lisp 2016-06-02T19:38:50Z TruePika: where /show is active 2016-06-02T19:38:54Z wildlander quit (Changing host) 2016-06-02T19:38:54Z wildlander joined #lisp 2016-06-02T19:39:41Z unbalancedparen joined #lisp 2016-06-02T19:39:44Z rpg quit (Read error: Connection reset by peer) 2016-06-02T19:39:56Z foom quit (Ping timeout: 272 seconds) 2016-06-02T19:41:32Z zi0nman quit (Ping timeout: 260 seconds) 2016-06-02T19:41:54Z scottj joined #lisp 2016-06-02T19:42:20Z TruePika: Running script now 2016-06-02T19:42:48Z TruePika: if it returns exit 1, then it isn't the SBCL runtime which does so 2016-06-02T19:43:15Z benwbooth quit (Ping timeout: 244 seconds) 2016-06-02T19:45:47Z mathi_aihtam quit (Read error: Connection reset by peer) 2016-06-02T19:46:18Z mathi_aihtam joined #lisp 2016-06-02T19:46:21Z rpg joined #lisp 2016-06-02T19:46:33Z benwbooth joined #lisp 2016-06-02T19:48:37Z mrcom: dumb question - how does --script affect handling of '#error ? 2016-06-02T19:52:09Z foom joined #lisp 2016-06-02T19:52:45Z jasom: --script enables all of: --noinform --disable-ldb --lose-on-corruption --no-userinit --no-sysinit --disable-debugger 2016-06-02T19:53:05Z jasom: though the first 3 only happen if it appears before any toplevel options of course 2016-06-02T19:53:13Z TruePika: jasom: That was yesterday 2016-06-02T19:53:21Z attila_lendvai joined #lisp 2016-06-02T19:53:22Z TruePika: none-oh it just crashed 2016-06-02T19:53:26Z jasom: TruePika: I was answering mrcom's question 2016-06-02T19:53:29Z TruePika: or no it didn't 2016-06-02T19:53:43Z TruePika: or maybe it did? 2016-06-02T19:53:48Z jasom: mrcom: see here for more details http://www.sbcl.org/manual/#Command-Line-Options 2016-06-02T19:53:51Z TruePika: no it deadlocked. again. 2016-06-02T19:53:57Z mrcom: jasom, TruePika: is this relevant? (error 'libxml2-error :errors (nreverse *libxml2-errors*)) 2016-06-02T19:54:06Z NeverDie_ joined #lisp 2016-06-02T19:54:07Z Orion3k quit (Quit: Leaving) 2016-06-02T19:54:19Z TruePika: I need to look at my threading code sometime 2016-06-02T19:54:27Z mrcom: Called if *libxml2-errors* contains a fatal error in its list. 2016-06-02T19:54:32Z jasom: mrcom: nope 2016-06-02T19:55:02Z TruePika: mrcom, jasom: can confirm, never got libxml2-error 2016-06-02T19:56:14Z TruePika: jasom: _Technically_, --disable-debugger will also --disable-ldb 2016-06-02T19:56:24Z jasom: right 2016-06-02T19:56:41Z TruePika: little hard-to-find wrinkle 2016-06-02T19:57:10Z NeverDie quit (Ping timeout: 260 seconds) 2016-06-02T19:57:54Z TruePika: uh oh 2016-06-02T19:58:14Z TruePika: /getting default external format *crash* 2016-06-02T19:58:20Z TruePika: exit... 2016-06-02T19:58:21Z TruePika: ...1 2016-06-02T19:58:32Z TruePika: not the runtime issuing it 2016-06-02T19:58:33Z NeverDie_ quit (Client Quit) 2016-06-02T19:59:03Z TruePika: unless exit(-1) is exit(1) 2016-06-02T19:59:13Z vlatkoB quit (Remote host closed the connection) 2016-06-02T20:00:00Z TruePika: shouldn't be though 2016-06-02T20:00:46Z NeverDie joined #lisp 2016-06-02T20:01:36Z TruePika: I don't think the streams are being fully flushed 2016-06-02T20:02:03Z Orion3k joined #lisp 2016-06-02T20:03:01Z TruePika: might modify the DEFMACRO slightly to also flush 2016-06-02T20:05:30Z TruePika: just added a (finish-output *trace-output*) just after the FORMAT, but still inside the UNLESS, to see if it helps any 2016-06-02T20:05:44Z TruePika: no high hopes, but you'd never know 2016-06-02T20:06:08Z TruePika: I'd think the newline would be enough 2016-06-02T20:08:36Z quazimodo joined #lisp 2016-06-02T20:08:45Z quazimod1 joined #lisp 2016-06-02T20:10:04Z rgrau joined #lisp 2016-06-02T20:11:31Z adolf_stalin quit (Quit: Leaving...) 2016-06-02T20:12:27Z benwbooth quit (Ping timeout: 246 seconds) 2016-06-02T20:12:37Z mrcom: TruePika: which version of cl-libxml2 are you using? Trying to find where LIBXML2.TREE:LIBXML2-WARNING (from backtrace) is defined. 2016-06-02T20:13:39Z vmihai quit (Ping timeout: 258 seconds) 2016-06-02T20:14:30Z rpg: TruePika: Maybe put the FLUSH-OUTPUT call inside UNWIND-PROTECT? 2016-06-02T20:14:35Z TruePika: mrcom: 20130615-git 2016-06-02T20:14:51Z TruePika: rpg: good idea 2016-06-02T20:15:04Z benwbooth joined #lisp 2016-06-02T20:15:09Z mishoo__ quit (Ping timeout: 260 seconds) 2016-06-02T20:15:14Z zi0nman joined #lisp 2016-06-02T20:15:36Z jbakid quit (Quit: jbakid) 2016-06-02T20:20:34Z jbakid joined #lisp 2016-06-02T20:20:54Z mishoo joined #lisp 2016-06-02T20:22:16Z mrcom: This version of cl-libxml2 is doing this in error callback: (string-right-trim '(#\Newline) (foreign-string-to-lisp (foreign-slot-value err '(:struct %xmlError) '%message))) 2016-06-02T20:22:22Z rpg quit (Quit: Textual IRC Client: www.textualapp.com) 2016-06-02T20:24:32Z adolf_stalin joined #lisp 2016-06-02T20:24:34Z mrcom: Bu libxml2-warning condition isn't created until after ffi returns. 2016-06-02T20:24:47Z mrcom: s/Bu/But/ 2016-06-02T20:28:57Z grouzen quit (Ping timeout: 276 seconds) 2016-06-02T20:30:05Z aeth quit (Read error: Connection reset by peer) 2016-06-02T20:30:22Z aeth joined #lisp 2016-06-02T20:30:49Z TruePika: awww 2016-06-02T20:30:53Z TruePika: crash again, //getting default external format 2016-06-02T20:30:58Z TruePika: exit 1 2016-06-02T20:33:03Z profess quit (Ping timeout: 240 seconds) 2016-06-02T20:33:14Z TruePika: This is between when the HTML is written to file and the libxml2 warnings are issued 2016-06-02T20:33:21Z NeverDie_ joined #lisp 2016-06-02T20:34:05Z jasom: TruePika: you could try using strace -f with stderr redirected and wait a *really long time* 2016-06-02T20:34:06Z TruePika: so it _should_ be "inside" the parse call 2016-06-02T20:34:18Z TruePika: jasom: IIRC strace breaks sbcl 2016-06-02T20:34:25Z jasom: seriously? bah 2016-06-02T20:34:51Z jasom: hmm, it seems to work for me 2016-06-02T20:34:55Z profess joined #lisp 2016-06-02T20:35:25Z TruePika: write(2, "Memory fault at 0xffffffffffffff"..., 71Memory fault at 0xffffffffffffff8c (pc=0x1000509bc6, sp=0x7ffff3014680)) = 71 2016-06-02T20:35:35Z TruePika: if only it was that easy 2016-06-02T20:36:22Z NeverDie quit (Ping timeout: 260 seconds) 2016-06-02T20:36:30Z TruePika: are you running sbcl with --script? 2016-06-02T20:37:16Z jasom: TruePika: -s0 should fix that 2016-06-02T20:37:30Z jtza8 joined #lisp 2016-06-02T20:38:20Z TruePika: write(2, ""..., 71Memory fault at 0xffffffffffffff8c (pc=0x1000509bc6, sp=0x7ffff3014680)) = 71 2016-06-02T20:38:38Z TruePika: nope 2016-06-02T20:38:48Z jasom: huh, what causes that? I've run sbcl under strace for a long time and done various things with no problems 2016-06-02T20:39:48Z TruePika: I see a SIGSEGV 2016-06-02T20:40:55Z jasom: I see a gajillion sigsegv but that's normal 2016-06-02T20:41:01Z TruePika: lol 2016-06-02T20:41:04Z TruePika: what version? 2016-06-02T20:41:11Z TruePika: 1.3.1 here 2016-06-02T20:41:16Z jasom: 1.3.5 2016-06-02T20:41:51Z groovy2shoes quit (Ping timeout: 250 seconds) 2016-06-02T20:43:15Z Blukunfando quit (Ping timeout: 276 seconds) 2016-06-02T20:43:15Z zi0nman quit (Read error: Connection reset by peer) 2016-06-02T20:43:17Z jasom: ran some simple tests just now and it worked fine (324 SIGSEGV in that time) I made threads and allocated memory. 2016-06-02T20:44:01Z puchacz quit (Quit: Konversation terminated!) 2016-06-02T20:44:54Z shka quit (Ping timeout: 260 seconds) 2016-06-02T20:45:25Z TruePika: I'm seeing what happens if I rebind the streams like --script does 2016-06-02T20:45:35Z adolf_stalin quit (Quit: Leaving...) 2016-06-02T20:46:07Z jtza8 quit (Remote host closed the connection) 2016-06-02T20:47:26Z TruePika: okay, similar to it 2016-06-02T20:47:35Z TruePika: no SB!IMPL that I can reach <_< 2016-06-02T20:49:11Z NeverDie joined #lisp 2016-06-02T20:50:12Z osune joined #lisp 2016-06-02T20:52:15Z EvW quit (Ping timeout: 250 seconds) 2016-06-02T20:52:29Z NeverDie_ quit (Ping timeout: 260 seconds) 2016-06-02T20:53:34Z TruePika: NeverDie: no wonder your hostname is disconnect.me :P 2016-06-02T20:53:41Z TruePika: (yes I know what disconnect.me is) 2016-06-02T20:53:58Z NeverDie: TruePika: What about it. 2016-06-02T20:54:04Z TruePika: all your ping timeouts 2016-06-02T20:54:09Z osune: hoi 2016-06-02T20:54:18Z TruePika: and disconnects/reconnects in general 2016-06-02T20:54:20Z IPmonger joined #lisp 2016-06-02T20:54:24Z NeverDie: TruePika: Oh, that's on purpose. 2016-06-02T20:54:27Z NeverDie: I was testing some things out. 2016-06-02T20:54:30Z TruePika: oh 2016-06-02T20:54:48Z mvilleneuve quit (Quit: This computer has gone to sleep) 2016-06-02T20:56:11Z osune: Can some one help me out? I'm somewhat new to lisp and try to port my GambitC application to CommonLisp and CFFI. But hit some roadblocks while working with structs. 2016-06-02T20:56:27Z mvilleneuve joined #lisp 2016-06-02T20:56:42Z NeverDie: TruePika: It has surprisingly fast speeds, but I was wondering if some things weren't showing up specifically because of this. 2016-06-02T20:57:42Z TruePika: I don't know, I pretty much only use disconnect as a search engine via Tor 2016-06-02T20:58:09Z TruePika: home ISP is Time Warner (as my hostname shows) 2016-06-02T20:58:21Z karswell quit (Remote host closed the connection) 2016-06-02T20:59:08Z TruePika: if it's acting as a proxy of sorts, I don't know but I would't be surprised either 2016-06-02T20:59:14Z karswell joined #lisp 2016-06-02T20:59:16Z IPmonger quit (Ping timeout: 264 seconds) 2016-06-02T20:59:20Z TruePika: s/d't/dn't/ 2016-06-02T21:03:13Z johnmcc joined #lisp 2016-06-02T21:03:45Z IPmonger joined #lisp 2016-06-02T21:05:48Z happy-dude joined #lisp 2016-06-02T21:07:43Z dyelar quit (Quit: Leaving.) 2016-06-02T21:08:14Z IPmonger quit (Ping timeout: 260 seconds) 2016-06-02T21:09:14Z joekunin quit (Ping timeout: 272 seconds) 2016-06-02T21:09:53Z sweater_ joined #lisp 2016-06-02T21:10:37Z IPmonger joined #lisp 2016-06-02T21:12:19Z Denommus quit (Ping timeout: 260 seconds) 2016-06-02T21:14:20Z tilpner joined #lisp 2016-06-02T21:14:59Z IPmonger quit (Ping timeout: 258 seconds) 2016-06-02T21:20:32Z TruePika: not sure rebinding the streams is going to crash this 2016-06-02T21:20:58Z TruePika: ...I could theoretically just use a modified toplevel and see if I can find the cause there... 2016-06-02T21:23:19Z TruePika: commented out the --script stream rebindings, building sbcl 2016-06-02T21:25:30Z aries_liuxueyang quit (Ping timeout: 276 seconds) 2016-06-02T21:26:32Z IPmonger joined #lisp 2016-06-02T21:26:49Z aries_liuxueyang joined #lisp 2016-06-02T21:29:54Z npatrick` joined #lisp 2016-06-02T21:30:59Z IPmonger quit (Ping timeout: 260 seconds) 2016-06-02T21:33:55Z LiamH quit (Quit: Leaving.) 2016-06-02T21:34:03Z TruePika: Compiled, running script 2016-06-02T21:35:09Z TruePika: If this crashes, --script rebinding streams has nothing to do with it. If it doesn't, the rebinding might be related. 2016-06-02T21:35:23Z johs quit (Remote host closed the connection) 2016-06-02T21:36:21Z wccoder quit (Remote host closed the connection) 2016-06-02T21:36:25Z TruePika: ...I just realised I could probably hack at SBCL so I have a call to sb!fasl::maybe-skip-shebang-line in the LOAD chain... 2016-06-02T21:36:54Z TruePika: ...I should also check for certain if that is the cause of issues, similar to what I'm doing with the rebinds right now 2016-06-02T21:37:30Z TruePika: meh, I already have a workaround implemented, now it's just a matter of finding out what the problem _is_ 2016-06-02T21:39:29Z IPmonger joined #lisp 2016-06-02T21:40:54Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-02T21:41:49Z scymtym joined #lisp 2016-06-02T21:42:24Z pepton1 quit (Ping timeout: 246 seconds) 2016-06-02T21:43:50Z walter|r joined #lisp 2016-06-02T21:44:21Z IPmonger quit (Ping timeout: 276 seconds) 2016-06-02T21:45:31Z npatrick` quit (Ping timeout: 244 seconds) 2016-06-02T21:47:15Z TruePika: and it crashed, so the stream rebinds are unrelated I think 2016-06-02T21:47:28Z TruePika: well, they shouldn't even be present 2016-06-02T21:48:36Z francogrex quit (Remote host closed the connection) 2016-06-02T21:48:53Z TruePika: Just removed the maybe-skip-shebang-line and the stream condition stuff, recompiling and will test _again_ 2016-06-02T21:52:48Z IPmonger joined #lisp 2016-06-02T21:54:50Z puchka quit (Ping timeout: 272 seconds) 2016-06-02T21:57:27Z emaczen quit (Ping timeout: 260 seconds) 2016-06-02T21:59:27Z IPmonger quit (Ping timeout: 258 seconds) 2016-06-02T22:00:05Z IPmonger joined #lisp 2016-06-02T22:00:24Z Blukunfando joined #lisp 2016-06-02T22:01:26Z mathi_aihtam quit (Read error: Connection reset by peer) 2016-06-02T22:01:50Z mathi_aihtam joined #lisp 2016-06-02T22:03:51Z emaczen joined #lisp 2016-06-02T22:04:40Z IPmonger quit (Ping timeout: 264 seconds) 2016-06-02T22:04:58Z IPmonger joined #lisp 2016-06-02T22:09:35Z IPmonger quit (Ping timeout: 260 seconds) 2016-06-02T22:10:10Z emaczen quit (Ping timeout: 260 seconds) 2016-06-02T22:11:50Z TruePika: just got a GC hang 2016-06-02T22:13:11Z TruePika: dumping core 2016-06-02T22:13:20Z TruePika: ...err, not Lisp core 2016-06-02T22:14:35Z TruePika: no idea if the GC is related or not 2016-06-02T22:14:37Z osune quit (Quit: ERC (IRC client for Emacs 24.5.1)) 2016-06-02T22:17:19Z IPmonger joined #lisp 2016-06-02T22:18:06Z sweater_: howdy 2016-06-02T22:19:22Z TruePika: and crash 2016-06-02T22:21:44Z IPmonger quit (Ping timeout: 260 seconds) 2016-06-02T22:23:00Z IPmonger joined #lisp 2016-06-02T22:25:37Z walter|r quit (Remote host closed the connection) 2016-06-02T22:27:31Z IPmonger quit (Ping timeout: 244 seconds) 2016-06-02T22:34:12Z optikalmouse quit (Quit: optikalmouse) 2016-06-02T22:34:16Z xantoz quit (Ping timeout: 244 seconds) 2016-06-02T22:34:18Z mathi_aihtam quit (Read error: Connection reset by peer) 2016-06-02T22:34:37Z mathi_aihtam joined #lisp 2016-06-02T22:36:41Z wccoder joined #lisp 2016-06-02T22:39:29Z angavrilov quit (Remote host closed the connection) 2016-06-02T22:39:49Z varjag quit (Ping timeout: 260 seconds) 2016-06-02T22:43:39Z quazimod1 quit (Ping timeout: 246 seconds) 2016-06-02T22:44:03Z quazimodo quit (Ping timeout: 250 seconds) 2016-06-02T22:44:53Z mathi_aihtam quit (Read error: Connection reset by peer) 2016-06-02T22:45:15Z mathi_aihtam joined #lisp 2016-06-02T22:47:09Z xantoz joined #lisp 2016-06-02T22:49:01Z adolf_stalin joined #lisp 2016-06-02T22:51:20Z xantoz quit (Ping timeout: 240 seconds) 2016-06-02T22:53:54Z walter|r joined #lisp 2016-06-02T23:00:55Z DavidGuru joined #lisp 2016-06-02T23:02:36Z mishoo quit (Ping timeout: 272 seconds) 2016-06-02T23:03:28Z wildlander quit (Ping timeout: 264 seconds) 2016-06-02T23:06:52Z SumoSudo quit (Ping timeout: 260 seconds) 2016-06-02T23:07:18Z SumoSudo joined #lisp 2016-06-02T23:07:28Z pjb quit (Remote host closed the connection) 2016-06-02T23:12:08Z walter|r quit (Remote host closed the connection) 2016-06-02T23:12:34Z xantoz joined #lisp 2016-06-02T23:13:45Z PlasmaStar joined #lisp 2016-06-02T23:16:35Z IPmonger joined #lisp 2016-06-02T23:18:41Z hiyosi joined #lisp 2016-06-02T23:20:16Z _sjs quit (Ping timeout: 252 seconds) 2016-06-02T23:20:49Z IPmonger quit (Ping timeout: 252 seconds) 2016-06-02T23:22:08Z IPmonger joined #lisp 2016-06-02T23:23:47Z mathi_aihtam quit (Read error: Connection reset by peer) 2016-06-02T23:24:08Z mathi_aihtam joined #lisp 2016-06-02T23:25:59Z spyrosoft joined #lisp 2016-06-02T23:26:14Z spyrosoft quit (Client Quit) 2016-06-02T23:27:18Z IPmonger quit (Ping timeout: 272 seconds) 2016-06-02T23:30:12Z rgrau quit (Ping timeout: 260 seconds) 2016-06-02T23:36:47Z Karl_Dscc joined #lisp 2016-06-02T23:37:00Z Tristam quit (Ping timeout: 240 seconds) 2016-06-02T23:42:57Z jbakid quit (Quit: jbakid) 2016-06-02T23:43:39Z jleija joined #lisp 2016-06-02T23:44:05Z mishoo joined #lisp 2016-06-02T23:50:02Z nell quit (Ping timeout: 260 seconds) 2016-06-02T23:51:28Z mishoo quit (Ping timeout: 264 seconds) 2016-06-02T23:52:05Z mathi_aihtam quit (Quit: mathi_aihtam) 2016-06-02T23:54:43Z zRecursive joined #lisp