Posting a 1.9M test file to confirm:
Posting a 1.9M test file to confirm:
This Org-Mode document
Jon this is an Org-Mode file which generated a PDF which contains itself. @@latex: orginorg.org}@@
Generates this pdf that contains itself. Open it with Adobe Acrobat (or some other tool that can handle embedded files).
You can include any data you want inside a PDF using attachfile and it is easy to extract that data.
It is a toy example but you can script everything to work with embedded data in PDF.
Continue reading “Org-Mode Documents Can Generate PDFs Which Include Any Data Including Themselves”
As key-binding name-spaces start to run out due to the massive expansion of packages out there today consider the C-s
and the M-s
name-spaces. Clicking around on my keyboard they don’t seem to be used much if at all. There is probably a reason for that and I’m going to ignore it because I want more name-space free for key-bindings.
Just because I believe it doesn’t mean it’s true. The more I test this out the more I am surprised. Now my state of surprise proves nothing. Sometimes I love getting surprised for example when someone secretly made me a chocolate cake. But when my car battery unexpectedly died and I’m late for an important appointment then I get mad about it. Well either way I was surprised but I believed that one surprise was good and one surprise was bad.
Continue reading “Just Because I Believe It Doesn't Mean It's True Or Good To Do”
The Disqus commenting system is used on 2/5 blogs out there today. So I was pretty happy to discover today that Disqus allows tags within comments. The cool thing is that for Org-Mode users to post rich Disqus comments it probably just means doing an Export to HTML as HTML buffer
and pasting the results into the comment box.
Is courageous exhausting? Is kindness exhausting? Is creativity exhausting?
Ease is your natural state. You were born with it. You were sent to Earth with it. However you got here, it is your right and privilege.
Exhaustion is an alarm blaring out to you as you drift away from your natural state.
It is never too late to hear it and do something about it immediately.
Half-life is the time required for a quantity to reduce to half its initial value.
Imagine taking a banana and cutting it in half. And in half again. And in half again and so on until you are left with invisible to you banana molecules. That is when the banana is “gone”. How long does it take for our feelings to be gone?
Are they real? Are they physical? How long should we keep them around? If we stop looking at them do they disappear? Do we carry them on a pedestal or inside of a garbage bag?
For some of us the half-life of bad feelings is so long that they never seem to go away. For others the half-life is non-existent. The bad feelings come but don’t stay very long. For some of us same goes for good feelings.
What is the nature of those feelings?
Our teachers who we love deeply in our hearts aren’t there for us to put them in our pocket and carry around forever. But there is something that stays with us. They gave us everything and expected nothing. They shared something infinite with us that wasn’t even theirs to share, yet they shared it. How do you thank them for that? You can’t. But you can do something thankful about it. That is where your conscience steps in with that answer you seek.
auto-insert
Sometimes Bash needs its debugger but it can’t find it. It looks like this:
/usr/share/bashdb/bashdb-main.inc: No such file or directory -bash: warning: cannot start debugger
For example when you start bashdb
yourself with bash --debugger
or set shopt -s extdebug
. Another example is when your terminal turns it on.
Here is the fix that worked on my box:
brew install bashdb
bashhome=$(brew –prefix bash)
bdbhome=$(brew –prefix bashdb)
ln -s $bdbhome/share/bashdb $bashhome/share/bashdb
unset bashhome
unset bdbhome