wnortje
wnortje
HI In this Reddit thread, https://old.reddit.com/r/Common_Lisp/comments/m7gjno/writing_small_cli_programs_in_common_lisp_steve/grdqq1j/, you provide an example for using Adopt in a sub-command style program. Even if it is not designed for it, using Adopt for sub-command...
When a timestamp field gets a value during record creation it also contains the microseconds ``` 2015-09-23 13:28:49.562436 ``` If the record is then read from the db via `(single)`...
Please add support for multi-column constraints such as ``` sql CONSTRAINT "constraint_name" UNIQUE ("col1" , "col2", "col3") ```
Issue is with CCL 1.10 on Windows XP 32b. When Quicklisp is on C: and the project source is on D: then (ql:write-asdf-manifest-file) creates manifest files without the drive letters....
This may be related to #664. I have a response that includes OOB elements. When the updates are made the target gets the `htmx-swapping` and `htmx-settling` classes applied as expected...
On CCL1.10 on Windows XP 32b, `(buildapp:build-buildapp)` fails. run-program is called as follows: `(run-program "ccl" '(...))` If run-program is called like below, it works. `(run-program "cmd" '("/c" "ccl" ...))`
I am trying to upload files as part of multipart/form-data with chunked encoding. The drakma request is: ``` lisp (http-request url :method :post :form-data t :parameters `((:recipe . ,recipe) (:content-hash...
It will be useful if `respond` can be used to set custom HTTP headers. At the moment I have to use a custom respond-like function everywhere I need to return...
The only way I manage to set cookies is by doing this: ``` lisp (defview page () (list 200 (list :content-type "text" :set-cookie "sessionToken=abc123") (list "HI"))) ``` The session middleware...