this post was submitted on 25 Nov 2023
1 points (100.0% liked)

Emacs

305 readers
1 users here now

A community for the timeless and infinitely powerful editor. Want to see what Emacs is capable of?!

Get Emacs

Rules

  1. Posts should be emacs related
  2. Be kind please
  3. Yes, we already know: Google results for "emacs" and "vi" link to each other. We good.

Emacs Resources

Emacs Tutorials

Useful Emacs configuration files and distributions

Quick pain-saver tip

founded 1 year ago
MODERATORS
 

I talked to someone about the extensibility of emacs, but the person I was speaking to assumed that any IDE is just as extensible by using Plug Ins.

Without turning the conversation into a university style lecture, what is one or two simple actions I can do in emacs to show someone what separates it from other IDES.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 9 months ago (2 children)

I'd rate this as a story about the benefits of literate programming, and emacs org-babel is certainly best-of-breed for that. A more mainstream workflow for it might be through Jupyter notebooks, but they have several deficiencies compared to org-babel, chief of which is that one can't present blocks out-of-order in Jupyter, but can do with org-babel-tangle. as far as I know, no literate-programming solution can pull code off disk and put it in a document (the anti-tangle direction), let alone update a doc when code is modified. It's doable (start with git-actions, maybe?) but difficult. The lack of anti-tangle stopped my team from adopting literate programming as a collaboration tool, but it's still great in the downward direction, i.e., from doc to code.

[–] [email protected] 1 points 9 months ago

I'd agree but it goes a bit beyond. Each file has pointers to the source code that is locally checked out. Sure it's not dynamic (e.g. my comments and understanding of what's going on don't sync with the codebase as it changes), but it still allows me to keep a mental map of what's going on and where each piece of the pipeline resides.

It's a mixture of roam, literate programming and an IDE for me. E.g. I can easily spin up a vterm, ssh into a spark node and test some of the code if I don't understand what it's doing thoroughly or to check if something isn't doing what is intended.

In my use case, collaboration is not required. I'm doing it for me so there's no real cost to the documentation and understanding getting out of date. I find emacs an invaluable tool to deepen my understanding and test things in the codebase. An IDE just doesn't fit the bill in that regard.

[–] [email protected] 1 points 9 months ago

I'm hoping Quarto will Jupiter - it's still not as flexible as org-babel but better version-controlled than Jupiter.

Pluto.jl apparently is reactive and immediately updates.