A reference card for code execution in org 8

refcard-org-babel “contains the reference documentation that describes how to perform code execution within Org mode documents using Org Babel 8”.
Look forward to referencing this when I read about other’s personal org workflows, and, document down my own.

How to handle the enter key while inside of comment blocks

This post reveals a nice function comment-indent-new-line which gives you the
right kind of indentation for block comments. That got me wondering if my
enter key-binding should do different things depending upon whether or not the
cursor is inside of a comment block or not. Specifically, if it is, then call
the aforementioned function, else call the normal binding. This seems that it
might be an improvement

This post explains how to check if the cursor is inside of a comment block:

(nth 4 (syntax-ppss))

It is not nil when the point (cursor) is inside of a comment block.

Great to know.

I decided not to make this change yet, but, I wanted to capture how, here.

Teaching Fun

Whenever you see them, encourage those who are not having fun to take personal responsibility for their predicament.
Take it is an opportunity to teach them how you have fun, because they may have never learned how, and your kindness and gentleness can help you to teach them one of the most important lessons of their life.

My definition of attitude

Attitude is how you feel despite all of the logical reasons not to feel that way.
Attitude is how you feel despite what everyone else is telling you about how you should be feeling right now.
Attitude means that you are taking personal responsibility and control of your life and how you feel instead of giving it away to something or someone else.

Every definition is a constraint

Every definition is a constraint.

Primarily they define operational limits of this reality. Even defining something to be “limitless and without constraint” is limiting because it requires either the written or the spoken form (albeit both spatial) and doesn’t allow for other possible means of communication.

The basis of most forms of science is definition, and thereby, observation.

Artistic expression is both a definition, and, an expression. Because it occurs within the operational constraints of this reality, it is by nature constraining and limiting. This is counter-intuitive, and, quite surprising. Perhaps this is already quite clear to those who have experienced things which are beyond definition?

Perhaps your are familiar with this phenomenon where in the attempt to define those things, you, quite unintentionally, tarnish and drag down those things. It is quite a bitter-sweet experience when you do want to share them, due to the sheer joy of it, and find that you simply can not.

You may have a feeling that you are not sharing, but, you must quite seriously ponder the question of “How can you withhold that which is intrinsic to every human being and is their birthright in this universe?”.

The Lenticular Text Style of Literate Programming

This announcement is pretty exciting because it reveals a new-to-me take on literate programming. The style is to store a single file as a source, and render disparate parts of that file in different buffers in a mode correct for the content.

For example you may have an Emacs Lisp file serve as the source and two separate buffers, one Emacs Lisp and one Organization (Mode), to work on the content, with all of the mode-specific assistance.

Is it a new idea? It is new to me and I am curious to find out about other approaches people have taken to realize this style.

Here is an overview and a nice video that demonstrates it.