wiki/2020-04-17-21-41-30.org
Gabriel Arazas edc686c25c Update wiki on various topics
This update is too large, I made too many notes on stuff. Nonetheless,
it is very nice to see progress. I've made note revisions on the
following topics:

- Learning
- Writing
- Various Linux-related stuff

I've yet to start learning illustration but I'll be starting tomorrow
for an update how do I keep in mind with those writings. There are still
a lot of things to be processed from the backlog with yet more notes on
learning but I keep having those perspectives whenever I practice so
ehhh... Better have those than nothing?

Furthermore, I've also updated the timestamp format. It is pretty simple
to update all of the notes with a couple of `sed` calls.

Aaaand, I've also changed the way how the assets stored with the folders
only leaving it up for the generated files instead of enforcing it on
every note. I create more visual aids and managing them is a pain for
each note. This restructuring frees me of that burden.
2021-07-20 19:52:43 +08:00

1.2 KiB

Org mode: Babel

Babel is the framework that enables Org mode to be a Reproducible research tool. It is comparable to Jupyter and R Markdown that other computational scientists use it.

Among other features, it can do the following.

  • Prints the results from code blocks.
  • Create files from a single document, making it possible to create entire computational reports.
  • Pass values from one code block to another, even with different programming languages.
  • Create graphics similarly to Jupyter and R Markdown notebooks.
  • Call code blocks either inline, as a block, or inside of another code block, thereby enabling metaprogramming and dynamic contents.

The unfortunate thing is most of these features are only available when using with GNU Emacs.

For more details, you can see The basics of org-babel.