Jacek Podkanski

Results 43 comments of Jacek Podkanski

I am rather busy now. But, I made some progress with using the library and finding my way around the GTK documentation. But I think I should be able to...

You can contact me directly. The email is in the profile. https://github.com/bigos

By any chance, are you looking for a declarative menu? https://github.com/bigos/Pyrulis/blob/85a6485bdf7ce2e57634aac966ef1753ddc53543/Lisp/better-menu.lisp#L187C3-L187C3

I possibly found it. Is the sxhash the function I need? Can you confirm? https://sirherrbatka.github.io/cl-data-structures/l_2.html#2619730029404290324 ``` (LET ((CONTAINER (CL-DATA-STRUCTURES.DICTS.HAMT:MAKE-MUTABLE-HAMT-DICTIONARY #'SXHASH #'EQ))) (PROVE.TEST:IS (CL-DATA-STRUCTURES:SIZE CONTAINER) 0) (SETF (CL-DATA-STRUCTURES:AT CONTAINER 'A) 1)...

https://github.com/bigos/Pyrulis/blob/master/Lisp/cl-gtk4-tictactoe.lisp Could something simpler than that be a basis of a tutorial? Would you help someone to make a tutorial for you?

truncate-string-to-width may be better, but does anybody know how to write a function advise https://www.gnu.org/software/emacs/manual/html_node/elisp/Advising-Functions.html so I can do it in my own init file? ``` (defun org-roam-graph--format-node (node type)...

https://emacs.stackexchange.com/questions/81211/how-do-i-write-an-advice-to-override-an-org-roam-function

example from my system, it contains following jacek@jacek-desktop ~/Programming/Lisp/hawk/.cache/common-lisp $ ls sbcl-1.1.1.0.debian-linux-x64 this page explains potential problems with pushing compiled code from development to production machine. http://common-lisp.net/project/asdf/asdf/Controlling-where-ASDF-saves-compiled-files.html

If your development machine uses different version of Lisp you don't need to push compiled lisp code to your production machine. ASDF manual http://common-lisp.net/project/asdf/asdf.html#Configuring-ASDF section 3.3 has following: Note that...

http://www.sbcl.org/manual/#FASL-Format more on the subject...