Search found 4 matches
- Wed Jul 01, 2020 3:54 pm
- Forum: Books and Resources
- Topic: New book: "Programming Algorithms"
- Replies: 0
- Views: 107877
New book: "Programming Algorithms"
Hello, This new "Programming Algorithm" book is pretty great: http://vseloved.github.io/progalgs.html It was published on the author's website, it is still readable for free online, and we can buy the ebook or a hard copy. It covers the following areas: All the important data structures an...
- Wed Jul 01, 2020 3:43 pm
- Forum: Common Lisp
- Topic: Catch error message in SBCL
- Replies: 2
- Views: 65950
Re: Catch error message in SBCL
Hello a bit late :) What about simply catching all conditions with `handler-case` and printing the condition, with a regular `(format t "~a" …)`? (handler-case (start-the-core-app) (error (c) (format t "An unexpected error happened: ~a" c)))
- Wed Jul 01, 2020 3:37 pm
- Forum: The Lounge
- Topic: clack examples?
- Replies: 3
- Views: 70407
Re: clack examples?
Hello late This new blog has many entries about Clack, Lack and Clack plugins (middlewares): http://40ants.com/lisp-project-of-the-day/
For other web-related examples there is the Cookbook: https://lispcookbook.github.io/cl-cookbook/web.html
For other web-related examples there is the Cookbook: https://lispcookbook.github.io/cl-cookbook/web.html
- Tue Sep 24, 2019 8:15 am
- Forum: Common Lisp
- Topic: Lem with LTK frontend and other additions
- Replies: 1
- Views: 30099
Re: Lem with LTK frontend and other additions
Hello ! Those are all good plans :) Did you see the IUP bindings though ? https://github.com/lispnik/iup/ IUP has many more widgets and is more developed, so it could be a good idea to use it. Also I stumbled upon this once, hope this helps: https://sourceforge.net/p/clocc/hg/ci/default/tree/src/cll...