vindarel

Results 591 comments of vindarel

very first iteration, using pcache: https://github.com/sigma/pcache (p for persistent) ``` (defvar gitlab-cache-expiry 3600 "Time expiry of cache, in seconds. Bypass it with an optional argument (C-u).") ;; bypass to do...

Hi Micah, I just had that and got it working with https. Regards

see better default config for gitlab.com in https://github.com/nlamirault/emacs-gitlab/pull/38

As I added on the readme, a `project-id` can be an int or a string of the form "username/projectname".

--- test code: ``` (mito:connect-toplevel :sqlite3 :database-name "mito-example.db") (mapc #'mito:execute-sql (mapcan #'mito:table-definition '(WAREHOUSES boxes))) ;; data: (mito:create-dao 'boxes :contents "foo" :value 9 :warehouse (mito:create-dao 'warehouses :location "here" :capacity 2)) ;;...

Hi, This simplified example works fine: ``` (let* ((user (make-instance 'users :name "Me" :email-address "[email protected]")) (course (make-instance 'courses :name "Test Course")) (user-course (make-instance 'user-courses :user user :course course :selected 0)))...

> Of course I have created the DB in my actual application, this was just very simplified. :) just saying your example isn't totally self-contained and ready to test for...

I have again been puzzled by that. As I inspect or describe an object, Mito says that a relation (`user` or `course`) is unbound. But: I can very well access...

thank you very much for the answer. I admit it is not so easy. With this example I get: ``` malformed property list: ((:|COUNT(*)| 0)). ``` because the result of...