Nikolai Matiushev

Results 7 issues of Nikolai Matiushev

```lisp CL-USER> (parse-float:parse-float "5e") 5.0 2 (2 bits, #x2, #o2, #b10) ```

Wrapping `ros run` with `ros exec` as used in `qlot exec` causes `sbcl` and `ccl` to exit immediately. Eval parameter fails as the reader input stream appears to be closed...

Quicklisp bootstrap parse-url supports http://user:password@proxy:port URL scheme but the client code doesn't. We can just port the exising functions across the projects. (ql-http:parse-urlstring "http://username:password@proxyhost:8080") 0: ((LABELS QL-HTTP::IN-PORT :IN QL-HTTP::PARSE-URLSTRING) #\R)...

Might require writing new backend for Mezzano / McCLIM

wish-list-application

Current local-time implementation leads to BST being mapped to historical Samoa subzone instead of British summer time. I've opened a pull request https://github.com/dlowe-net/local-time/pull/89 to address this issue in local-time. Please...

This should allow implementation of the Unicode efficient canonical identifier caseless match. Something like that: ```lisp (defun indentifiers-match-p (a b) (equal (cl-unicode:identifier-case-fold-mapping (cl-unicode:normalization-form-d a)) (cl-unicode:identifier-case-fold-mapping (cl-unicode:normalization-form-d b)))) ```

## Description Adding `on_clear` handlers. Table and GlobalTable share implementation that runs `on_key_del` handler for each key currently stored in the table before cleaning the dictionary. ChangeloggedSet is using existing...