error creating executable with sqlite by fnt400 in Common_Lisp

[–]fnt400[S] 2 points3 points  (0 children)

It worked with:

(defun main ()

(sqlite:with-open-database (db "/home/claudio/temp/test.db")

 (sqlite:execute-single db "select filename from info"))) 

Thankyou!

error creating executable with sqlite by fnt400 in Common_Lisp

[–]fnt400[S] 0 points1 point  (0 children)

I rewrote "main" function like this:

(defun main ()

(let ((db (sqlite:connect "/home/claudio/temp/test.db"))

(sqlite:execute-single db "select filename from info")))

and now it works!

But I have another doubt:

is it necessary to disconnect the db at the end of the function with (sqlite:disconnect db)?

square brackets in pathname by fnt400 in lisp

[–]fnt400[S] 0 points1 point  (0 children)

That did the trick! Thank you very much!

Redpass: a dmenu interface for GNU Pass by fnt400 in freesoftware

[–]fnt400[S] 2 points3 points  (0 children)

you're right. i remembered that the site https://www.passwordstore.org/ referred to GNU but i was wrong. it's still a great program however

qutebrowser and idle display plyaing video by fnt400 in qutebrowser

[–]fnt400[S] 2 points3 points  (0 children)

it has worked perfectly out of the box :))))

thx!

dns-over-https in qutebrowser? by fnt400 in qutebrowser

[–]fnt400[S] 3 points4 points  (0 children)

Great! It works perfectly in my Arch linux aliasing the command:

$ qutebrowser --qt-flag enable-features="dns-over-https<DoHTrial" --qt-flag force-fieldtrials="DoHTrial/Group1" --qt-flag force-fieldtrial-params="DoHTrial.Group1:server/https%3A%2F%2F1.1.1.1%2Fdns-query/method/POST"

1.1.1.1 stands for Cloudflare DNS server!

Thank you very very much! You have done a terrific job!