Results 15 issues of hemml

I'm trying to use `MutationObserver` object to catch a DOM change using the following code (can be reproduced in JSCL console): ``` (defparameter obs (jscl::make-new (jscl::oget (jscl::%js-vref "window") "MutationObserver") (lambda...

I'm trying to perform some computations on the browser-side, which is rather slow sometimes. I see in the JSCL-generated code a lot of type checking like this: ``` var x2=Math.sqrt(v25);...

I want to load a code dynamically from remote server via websocket. The idea is to catch unbound-variable and undefined-function conditions and ask remote server for missing variables and functions...

enhancement

I'm using `postmodern` which uses `ironclad` to make authentication. The problem is when I'm saving lisp image with `save-lisp-and-die`, the first attempt to reconnect to the database produces the following...

Hi! I'm using ESP32 with uL in my project and I need to watchdog support. I have added 3 functions: (wdt-init timeout panic) - init ESP32 watchdog with timeout (in...

I'm connecting to remote swank server and trying to compile a file, but this is impossible, because file is on my local machine. I can compile it function-by-function, but this...

enhancement

I'm using ldap auth and users can login with their usernames (without `@domain` component), but I want also allow them to use "username@mydomain" logins, because some imap clients using this...

When executing `read` or `read-from-string` in multitasking environment, a race condition exists with jscl::*labelled-objects*, which is a global variable. The following code is thread safe: ``` (let ((jscl::*labelled-objects* nil)) ;;...

``` CL-USER> (defun xxx (a &key b &allow-other-keys) (format t "~A ~A~%" a b)) XXX CL-USER> (xxx 1) 1 NIL NIL CL-USER> (xxx 1 :b 2) 1 2 NIL CL-USER>...

``` CL-USER> (type-of 1.2) FLOAT CL-USER> (type-of 1.2e10) INTEGER CL-USER> (type-of 1.2d10) INTEGER ```