(not (null nil))

Results 32 comments of (not (null nil))

I'm using alacritty 0.9.0-r1 on gentoo, with wayland(sway) AMD cpu+gpu, and no nvidia. I'm not sure about the cpu usage yet, but it does looks freeze when open. I don't...

same here Foobar2k allow you to use multiple genre field, so I think it has something to do with Eole.

Come into similar issues, here is major part of my code: ``` (define-table file () ;;omit since not important ) (define-table test () ((file-dao :col-type file :initarg :file-dao :accessor file-dao)))...

It turns out that `(slot-value 'foo-1 'parent-column-map)`, (see [here](https://github.com/fukamachi/mito/blob/d88a8df856b6d6bdaf80e533b90d179ebb21822b/src/core/class/table.lisp#L290)) doesn't have `file-dao`. Is this a design on purpose?

Here is my simple work around @fukamachi ``` (defun add-referencing-slots (initargs) (let ((parent-column-map NIL)) (loop for column in (getf initargs :direct-superclasses) when (and (not (eq 'standard-class (type-of column))) (slot-value column...

I found something called `cursor-position/stream-cursor-position`, but I don't know how to get the `cursor/stream` currently focus on. I have tried `*standard-output*`, but it faile.

``` CL-USER> (ql-dist:all-dists) (# #) ```

I have tried something like this: ``` (ql:quickload '(:weblocks)) (defpackage todo (:use #:cl) (:import-from #:weblocks/app #:defapp)) (in-package todo) (defapp tasks :prefix "/") (weblocks/server:start :port 40000 :server-type :hunchentoot :interface "127.0.0.1") (weblocks/server:start...

BTW, a simple bug is at [here](https://github.com/40ants/weblocks/blob/efdbe7adb2e171090813350b6d63717b800f62c6/src/default-init.lisp#L30) . I think you may want to make the "[documentaion]" a hyperlink. I think ``` (:p "Read more in" (:a :href quickstart-url "[documentaion]."...