Tomoya Kawanishi

Results 16 issues of Tomoya Kawanishi

when i tried to use it by sbcl, clone it on quicklisp/local-projects, register-local-projects and quickload it, then i got the error. ``` To load "dbi": Load 1 ASDF system: dbi...

It's useful for the case below. - Production env is `https://production.example.com`. - Staging env is `https://staging.example.com`. - And cookie domain is `.example.com`, and you must want to store `:remind_me_token` in...

``` lisp (yason:parse "\"\\uD840\\uDC0B\"") ;; => "𠀋" (with-input-from-string (stream "\"\\uD840\\uDC0B\"") (cl-json:decode-json stream)) ;; => "��" ```

It was just with mysql. I add `sort` with `slot-column-position`, but it looks weird. `(mapcar #'cadr (sort (mapcar ...` Could you tell me if there is any better way to...

At first, I created table and migrate it. ``` Lisp (defclass tweet () ((id :type bigint :auto-increment t :primary-key t :reader tweet-id) (user :type (varchar 255) :accessor tweet-user)) (:metaclass )...

- [ ] add `ALTER TABLE table_name ALTER column_name SET DEFAULT default_value;` - [ ] drop `ALTER TABLE table_name ALTER column_name DROP DEFAULT;` - [ ] create table `CREATE TABLE...