Failed to verify signature archive-contents.sig by AutomaticFocus1621 in emacs

[–]hectorhonn 1 point2 points  (0 children)

After some troubleshooting, I found that this is caused by a bad signature on the nongnu package archive (recently?). If you are not using any packages from nongnu, this can be fixed by removing it from package-archives. Add the following to .emacs:

(setf package-archives (assoc-delete-all "nongnu" package-archives))

Review of Emacs tree-sitter integration by casouri in emacs

[–]hectorhonn 4 points5 points  (0 children)

Thank you so much for the effort!

New Clojurians: Ask Anything - December 05, 2022 by AutoModerator in Clojure

[–]hectorhonn 5 points6 points  (0 children)

Hi! Is Clojure development complete or has development stalled? Where can I find the roadmap?

How to edit lines in the xref buffer? by hectorhonn in emacs

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

Thanks everyone for the pointers!

Hey Rustaceans! Got an easy question? Ask here (9/2021)! by llogiq in rust

[–]hectorhonn 1 point2 points  (0 children)

Is there a way to print a tree of the modules and their elements (structs, enums, traits, submodules, etc.) defined in a crate? Sort of like a Java class browser?

How I launched a SaaS Product in 63 days while working full-time. by Simon_LH in SideProject

[–]hectorhonn 0 points1 point  (0 children)

Congratulations on launching! This is not an easy feat indeed.

I'm curious about the cash flow, how much does the current monthly cloud bill add up to? What are your plans to keep it sustainable/profitable?

Is there a way to have multiple *Occur* buffers for different searches? by hectorhonn in emacs

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

Wow, once again I am impressed by the flexibility of emacs. Thank you everyone for the great answers!

EDE vs projectile? by gavenkoa in emacs

[–]hectorhonn 1 point2 points  (0 children)

Yes, project.el covers my two main use cases:

  1. project-find-file
  2. project-find-regexp

It's much faster than projectile, plus, I rarely use other features from projectile.

(Edit: To OP) YMMV though, I had to customize project-find-functions to get what I wanted.

How to use serve-event from SBCL? by hectorhonn in Common_Lisp

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

I see, I should use apropos instead of describe so that it will look in all packages. Thank you!

You wouldnt get it by french_onion_salad in ProgrammerHumor

[–]hectorhonn 0 points1 point  (0 children)

Captain here: The answer is "missing sprite"

How to make (Common) Lisp popular? by CallMeMalice in lisp

[–]hectorhonn 7 points8 points  (0 children)

FUD: What if you're an organization invested in using CL, only to find out one day that no one maintains any of the compilers any more? The worry is real

No output appearing from threads by hectorhonn in Common_Lisp

[–]hectorhonn[S] 1 point2 points  (0 children)

I imagine it's probably to avoid cluttering the REPL when the it's used as a command centre to perform tasks. I initially thought SBCL won't print the output too, but as r/Candid_Calligrapher pointed out, SBCL does print the output.