Eitaro Fukamachi

Results 131 comments of Eitaro Fukamachi

It seems `github` syntax has a problem with a library which doesn't have `.asd` file at the root of the project root. > You might consider getting rid of github...

My first guess was wrong. The project has a symlink `README.md` to `README` that causes an error in [archive](https://github.com/froydnj/archive).

Well, `clack-handler-hunchentoot` is a system name, not a project name. You don't have to add the `ql clack-handler-hunchentoot` line while `clack` project contains it.

I don't understand why it happens while `qlot exec` doesn't do a lot to break other programs. If you're `sbcl` command is nothing special, this command will be the same...

Great! I've been thinking how this feature could be done. > This seems suboptimal when looking for a dependency's qlfile as ASD files can contain aribtrary code other than the...

[Install Roswell via Homebrew](https://github.com/roswell/roswell/wiki/Installation#mac-os-x--homebrew) and run `ros install qlot`. It will install the shell command to `~/.roswell/bin`.

> ```lisp > (mito:deftable user-courses () > ((user :col-type users) > (course :col-type courses) > (selected :col-type :bytea))) > ``` > > > You tried to call user-courses-course (supposedly automatically...

I admit that it may be useful in some cases, however, it breaks the backward-compatibility because current inflate/deflate functions only expects a single argument. And I think adding an optional...

Good point. It's complicated a little. ```common-lisp (getf (mito:retrieve-by-sql (select ((:count :*)) (from :loan) (where (:< :due_date (local-time:now))))) :count) ``` As this is a common pattern, perhaps it would be...