<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
 xmlns:content="http://purl.org/rss/1.0/modules/content/"
 xmlns:wfw="http://wellformedweb.org/CommentAPI/"
 xmlns:dc="http://purl.org/dc/elements/1.1/"
 xmlns:atom="http://www.w3.org/2005/Atom"
 xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
 xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
 xmlns:georss="http://www.georss.org/georss"
 xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
 xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<atom:link href="https://randyridenour.net/posts/rss.xml" rel="self" type="application/rss+xml" />
<title>Randy Ridenour</title>
<link>https://randyridenour.net/posts/</link>
<description><![CDATA[Blog posts by Randy Ridenour.]]></description>
<language>en</language>
<lastBuildDate>Mon, 13 Apr 2026 14:34:57 -0500</lastBuildDate>
<generator>Emacs 30.2 org-publish-rss.el 0.8</generator>
<item>
<title>Stringp, Nil Error in Emacs</title>
<link>https://randyridenour.net/posts/2015-06-04-stringp-nil-error-in-emacs.html</link>
<pubDate>Thu, 04 Jun 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-06-04-stringp-nil-error-in-emacs.html</guid>
<description>
<![CDATA[<p>
This is one of those posts that serve only to remind me of something in the future. My Emacs configuration was working well on one machine.  Whenever I opened dired on another machine, though, this error was returned:
</p>

<p>
<code>wrong type argument: stringp, nil</code>
</p>

<p>
Finally, I remembered that I had required GNU ls in my Emacs settings, and had not installed it on the machine in question. A quick &ldquo;brew install coreutils&rdquo; to install the GNU Command Line Tools with Homebrew did the trick.
</p>


<div class="tagline" id="orgbb44654">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Blogging with Org Mode</title>
<link>https://randyridenour.net/posts/2024-12-17-blogging-with-org-mode.html</link>
<pubDate>Tue, 17 Dec 2024 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2024-12-17-blogging-with-org-mode.html</guid>
<description>
<![CDATA[<p>
This blog has been through many different versions. At various times, I&rsquo;ve used WordPress, Ghost, Jekyll, and Hugo, some more than once. I&rsquo;ve written posts in Markdown, HTML, Org mode, sometimes using more than one format in the same post. As Emacs users are prone to do, though, I&rsquo;m constantly trying to do more in Org mode. I could write posts in Org mode for Hugo, but I&rsquo;ve been tempted by the prospects of using Org to generate the entire site. I finally did it, and I&rsquo;m pleased with the results so far.
</p>

<p>
I started with the template provided by Sachin Patel that he describes <a href="https://opensource.com/article/20/3/blog-emacs">here</a>. I have changed some things, so I&rsquo;ll describe the site as I&rsquo;ve put it together. I highly recommend reading his post and cloning a copy of the template, though. Everything is in a directory named &ldquo;orgblog&rdquo; that has the following structure:
</p>

<div class="org-src-container">
<pre class="src src-shell"><code>.
&#9500;&#9472;&#9472; css
&#9474;&#160;&#160; &#9492;&#9472;&#9472; stylesheet.css
&#9500;&#9472;&#9472; docs
&#9500;&#9472;&#9472; drafts
&#9500;&#9472;&#9472; html-templates
&#9474;&#160;&#160; &#9500;&#9472;&#9472; postamble.html
&#9474;&#160;&#160; &#9492;&#9472;&#9472; preamble.html
&#9500;&#9472;&#9472; images
&#9474;&#160;&#160; &#9500;&#9472;&#9472; favicon.ico
&#9474;&#160;&#160; &#9492;&#9472;&#9472; posts
&#9500;&#9472;&#9472; org-templates
&#9474;&#160;&#160; &#9500;&#9472;&#9472; latex-pdf.org
&#9474;&#160;&#160; &#9492;&#9472;&#9472; post.org
&#9500;&#9472;&#9472; pages
&#9474;&#160;&#160; &#9500;&#9472;&#9472; about.org
&#9474;&#160;&#160; &#9492;&#9472;&#9472; index.org
&#9500;&#9472;&#9472; posts
&#9474;&#160;&#160; &#9500;&#9472;&#9472; 24-12-05-sample-post.org
&#9474;&#160;&#160; &#9492;&#9472;&#9472; index.org
&#9492;&#9472;&#9472; publish.el
</code></pre>
</div>

<p>
I&rsquo;ve included a sample post and an about page as examples. I left the two files in the &ldquo;org-templates&rdquo; directory unchanged from the template, other than changing the author&rsquo;s name. I changed the HTML templates, removing the image and changing the menu from <code>preamble.html</code>, with no significant changes to <code>postamble.html</code>. Here is <code>preamble.html</code>:
</p>


<div class="org-src-container">
<pre class="src src-html"><code>&lt;<span class="org-function-name">div</span> <span class="org-variable-name">class</span>=<span class="org-string">"banner"</span>&gt;
  &lt;<span class="org-function-name">h2</span>&gt;&lt;<span class="org-function-name">a</span> <span class="org-variable-name">href</span>=<span class="org-string">"/"</span>&gt;Randy Ridenour&lt;/<span class="org-function-name">a</span>&gt;&lt;/<span class="org-function-name">h2</span>&gt;
  &lt;<span class="org-function-name">nav</span> <span class="org-variable-name">class</span>=<span class="org-string">"navbar"</span>&gt;
    &lt;<span class="org-function-name">ul</span>&gt;
      &lt;<span class="org-function-name">li</span>&gt;&lt;<span class="org-function-name">a</span> <span class="org-variable-name">href</span>=<span class="org-string">"/posts/"</span>&gt;Blog&lt;/<span class="org-function-name">a</span>&gt;&lt;/<span class="org-function-name">li</span>&gt;
      &lt;<span class="org-function-name">li</span>&gt;&lt;<span class="org-function-name">a</span> <span class="org-variable-name">href</span>=<span class="org-string">"/about.html"</span>&gt;About&lt;/<span class="org-function-name">a</span>&gt;&lt;/<span class="org-function-name">li</span>&gt;
      &lt;<span class="org-function-name">li</span>&gt;&lt;<span class="org-function-name">a</span> <span class="org-variable-name">href</span>=<span class="org-string">"/index.xml"</span>&gt;RSS&lt;/<span class="org-function-name">a</span>&gt;&lt;/<span class="org-function-name">li</span>&gt;
    &lt;/<span class="org-function-name">ul</span>&gt;
  &lt;/<span class="org-function-name">nav</span>&gt;
&lt;/<span class="org-function-name">div</span>&gt;
</code></pre>
</div>


<p>
All the work gets done by the <code>publish.el</code> file. Here are some changes that I made to the template. First, since I&rsquo;m the sole author, I don&rsquo;t need &ldquo;Published by&hellip;&rdquo; by every post title on the index page. 
</p>


<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">me/website-html-preamble</span> <span class="org-rainbow-delimiters-depth-2">(</span>plist<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-doc">"PLIST: An entry."</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">if</span> <span class="org-rainbow-delimiters-depth-3">(</span>org-export-get-date plist this-date-format<span class="org-rainbow-delimiters-depth-3">)</span>
      <span class="org-rainbow-delimiters-depth-3">(</span>plist-put plist
                 <span class="org-builtin">:subtitle</span> <span class="org-rainbow-delimiters-depth-4">(</span>format <span class="org-string">"%s"</span>
                                   <span class="org-rainbow-delimiters-depth-5">(</span>org-export-get-date plist this-date-format<span class="org-rainbow-delimiters-depth-5">)</span>
                                   <span class="org-rainbow-delimiters-depth-5">(</span>car <span class="org-rainbow-delimiters-depth-6">(</span>plist-get plist <span class="org-builtin">:author</span><span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
</code></pre>
</div>


<p>
I made some slight changes to the <code>org-publish-project-alist</code>. First, I added a posts directory to help keep things organized. I also added a pages directory, instead of using a directory for each individual page. I also changed every reference to the &ldquo;public&rdquo; folder to &ldquo;docs&rdquo;, since Github pages will serve a site from a directory title &ldquo;docs&rdquo;. Here are the entries for posts and pages &mdash; all of the others are basically the same as the template except for changing &ldquo;public&rdquo; to &ldquo;docs&rdquo;.
</p>


<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">setq</span> org-publish-project-alist
      `<span class="org-rainbow-delimiters-depth-2">(</span><span class="org-rainbow-delimiters-depth-3">(</span><span class="org-string">"posts"</span>
         <span class="org-builtin">:base-directory</span> <span class="org-string">"posts"</span>
         <span class="org-builtin">:base-extension</span> <span class="org-string">"org"</span>
         <span class="org-builtin">:recursive</span> t
         <span class="org-builtin">:publishing-function</span> org-html-publish-to-html
         <span class="org-builtin">:publishing-directory</span> <span class="org-string">"./docs/posts/"</span>
         <span class="org-builtin">:exclude</span> ,<span class="org-rainbow-delimiters-depth-4">(</span>regexp-opt '<span class="org-rainbow-delimiters-depth-5">(</span><span class="org-string">"README.org"</span> <span class="org-string">"draft"</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
         <span class="org-builtin">:auto-sitemap</span> t
         <span class="org-builtin">:sitemap-filename</span> <span class="org-string">"index.org"</span>
         <span class="org-builtin">:sitemap-title</span> <span class="org-string">"Blog Index"</span>
         <span class="org-comment-delimiter">;; </span><span class="org-comment">:sitemap-format-entry me/org-sitemap-format-entry
</span>         <span class="org-comment-delimiter">;; </span><span class="org-comment">:sitemap-style list
</span>         <span class="org-builtin">:sitemap-sort-files</span> anti-chronologically
         <span class="org-builtin">:html-link-home</span> <span class="org-string">"/"</span>
         <span class="org-builtin">:html-link-up</span> <span class="org-string">"/"</span>
         <span class="org-builtin">:html-head-include-scripts</span> t
         <span class="org-builtin">:html-head-include-default-style</span> nil
         <span class="org-builtin">:html-head</span> ,me/website-html-head
         <span class="org-builtin">:html-preamble</span> me/website-html-preamble
         <span class="org-builtin">:html-postamble</span> me/website-html-postamble<span class="org-rainbow-delimiters-depth-3">)</span>
        <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-string">"pages"</span>
         <span class="org-builtin">:base-directory</span> <span class="org-string">"pages"</span>
         <span class="org-builtin">:base-extension</span> <span class="org-string">"org"</span>
         <span class="org-builtin">:exclude</span> ,<span class="org-rainbow-delimiters-depth-4">(</span>regexp-opt '<span class="org-rainbow-delimiters-depth-5">(</span><span class="org-string">"README.org"</span> <span class="org-string">"draft"</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
         <span class="org-builtin">:index-filename</span> <span class="org-string">"index.org"</span>
         <span class="org-builtin">:recursive</span> t
         <span class="org-builtin">:publishing-function</span> org-html-publish-to-html
         <span class="org-builtin">:publishing-directory</span> <span class="org-string">"./docs/"</span>
         <span class="org-builtin">:html-link-home</span> <span class="org-string">"/"</span>
         <span class="org-builtin">:html-link-up</span> <span class="org-string">"/"</span>
         <span class="org-builtin">:html-head-include-scripts</span> t
         <span class="org-builtin">:html-head-include-default-style</span> nil
         <span class="org-builtin">:html-head</span> ,me/website-html-head
         <span class="org-builtin">:html-preamble</span> me/website-html-preamble
         <span class="org-builtin">:html-postamble</span> me/website-html-postamble<span class="org-rainbow-delimiters-depth-3">)</span>
</code></pre>
</div>


<p>
I have a folder for drafts that doesn&rsquo;t get an entry in the <code>=project-alist</code>. When I&rsquo;m ready to publish a draft, I have a function that copies it to the posts directory and deletes it from the drafts directory.  I don&rsquo;t use the <code>serve.el</code> or the <code>makefile</code> from the template. Instead, I use the <code>org-publish-all</code> function to build the site and <code>serve</code> from npm to serve a local copy. I dropped a copy of <a href="https://neat.joeldare.com">Neat CSS</a> into the CSS folder and modified the <code>me/website-html-head</code> variable in <code>publish.el</code> to reflect that.
</p>

<p>
Here are the functions I use to build, serve, and deploy. To build the site, I run
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">orgblog-build</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">progn</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>find-file <span class="org-string">"~/sites/orgblog/publish.el"</span><span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>eval-buffer<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>org-publish-all<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>kill-buffer<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
This function starts the server, waits for a second, then opens the default browser to localhost:
</p>


<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">orgblog-serve</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">progn</span>
    <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">let</span> <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-rainbow-delimiters-depth-5">(</span>default-directory <span class="org-string">"~/sites/orgblog/docs"</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-4">(</span>async-shell-command <span class="org-string">"serve"</span><span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-4">(</span>sleep-for 1<span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-4">(</span>async-shell-command <span class="org-string">"open http://localhost:3000"</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>



<p>
If everything, looks good, then I can push changes to Github. The fish function <code>orgblog-push</code> changes to the site directory, adds all modifications, creates a commit with a default message, pushes the remote, then displays the current status of the repo.
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">orgblog-push</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>async-shell-command <span class="org-string">"orgblog-push"</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>


<p>
This moves a draft to the posts directory by saving the buffer, copying it to posts, moving the original to the trash in case something goes wrong, and killing the buffer. It then opens the posts directory in Dired.
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">publish-orgblog-draft</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>save-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>copy-file <span class="org-rainbow-delimiters-depth-3">(</span>buffer-file-name<span class="org-rainbow-delimiters-depth-3">)</span> <span class="org-string">"~/sites/orgblog/posts/"</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>delete-file <span class="org-rainbow-delimiters-depth-3">(</span>buffer-file-name<span class="org-rainbow-delimiters-depth-3">)</span> t<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>kill-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>dired <span class="org-string">"~/sites/orgblog/posts"</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
Finally, posts have these header lines:
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-document-info-keyword">#+TITLE:</span> <span class="org-org-document-title">Sample Post
</span><span class="org-org-document-info-keyword">#+date:</span> <span class="org-org-document-info">&lt;2024-12-05 Thu&gt;
</span><span class="org-org-meta-line">#+filetags: blog emacs org</span>
<span class="org-org-meta-line">#+setupfile: ../org-templates/post.org</span>
</code></pre>
</div>

<p>
I&rsquo;m very happy with how things have turned out, and this should be enough to help others do the same. I&rsquo;ve been converting old posts to the new format and still have some 250 to go. That&rsquo;s giving me plenty of opportunities to develop my regex skills. The source for the site can be found on Github <a href="https://github.com/rlridenour/rlridenour.github.io">here</a>.
</p>


<div class="tagline" id="org24e08e4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a> <a href="https://randyridenour.net/posts/../tags/org.html">Org</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Reformation Day Prayer</title>
<link>https://randyridenour.net/posts/2015-10-30-reformation-day-prayer.html</link>
<pubDate>Fri, 30 Oct 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-10-30-reformation-day-prayer.html</guid>
<description>
<![CDATA[<p>
God of grace,
</p>

<p>
On the door of the church,<br>
Luther proclaimed his message,
</p>

<p>
&ldquo;The true treasure of the church<br>
is the most holy gospel<br>
of the glory and grace of God.&rdquo;
</p>

<p>
A treasure too great<br>
to be kept to ourselves,<br>
yet why is that<br>
we who have received<br>
so much grace somehow<br>
seem to have so little<br>
left to offer?
</p>

<p>
Forgive me, Lord,<br>
and let me never again<br>
confuse your river of grace<br>
with the cesspool of<br>
my self-righteousness.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org1d112f1">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Holy Saturday</title>
<link>https://randyridenour.net/posts/2015-04-04-prayer-for-holy-saturday.html</link>
<pubDate>Sat, 04 Apr 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-04-04-prayer-for-holy-saturday.html</guid>
<description>
<![CDATA[<p>
Was creation in despair<br>
on that single day in history<br>
when Nietzsche&rsquo;s word<br>
rang true?
</p>

<p>
The tomb is sealed,<br>
the body is cold,<br>
and heaven mourns<br>
at what we have done.
</p>

<p>
God is dead,<br>
and we have killed him.
</p>

<p>
Lord, have mercy.
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="orgb5a60f5">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Outside the Beautiful Gate</title>
<link>https://randyridenour.net/posts/2016-02-01-outside-the-beautiful-gate.html</link>
<pubDate>Mon, 01 Feb 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-02-01-outside-the-beautiful-gate.html</guid>
<description>
<![CDATA[<p>
God of compassion,
</p>

<p>
Peter and John met a man<br>
asking for alms<br>
at the Beautiful Gate<br>
of the temple.
</p>

<p>
We are not like Peter and John,<br>
when they met the man<br>
at the Beautiful Gate,<br>
for we do have<br>
silver and gold<br>
to give.
</p>

<p>
But before we give,<br>
we pray that you<br>
would examine our hearts.
</p>

<p>
Do we give to maintain<br>
the myth of our own superiority?
</p>

<p>
Do we give as a a means of exercising power?
</p>

<p>
Or do we give in a way that recognizes the<br>
other person as one who bears<br>
the image of Christ himself?
</p>

<p>
&ldquo;Look at us,&rdquo; Peter said.
</p>

<p>
Look at us, Lord.<br>
Look with us.<br>
Look through us.
</p>

<p>
Help us to see the ones<br>
sitting outside our own<br>
Beautiful Gates.
</p>

<p>
Amen
</p>


<div class="tagline" id="org7b58d83">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Thurman on Christian Power</title>
<link>https://randyridenour.net/posts/2018-09-15-thurman-on-christian-power.html</link>
<pubDate>Sat, 15 Sep 2018 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2018-09-15-thurman-on-christian-power.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Too often the price exacted by society for security and respectability is that the Christian movement in its formal expression must be on the side of the strong against the weak. This is a matter of tremendous significance, for it reveals to what extent a religion that was born of a people acquainted with persecution and suffering has become the cornerstone of a civilization and of nations whose very position in modern life has too often been secured by a ruthless use of power applied to weak and defenseless peoples.
</p>
</blockquote>

<p class="bigquote">
Howard Thurman, <i>Jesus and the Disinherited</i>, p.11.
</p>


<div class="tagline" id="org699c77d">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Fear of Risk</title>
<link>https://randyridenour.net/posts/2016-04-13-the-fear-of-risk.html</link>
<pubDate>Wed, 13 Apr 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-04-13-the-fear-of-risk.html</guid>
<description>
<![CDATA[<p>
Gracious God,
</p>

<p>
We live in fear<br>
of failure and<br>
disappointment,<br>
afraid that we<br>
might say or do<br>
the wrong thing.
</p>

<p>
Paralyzed by risk,<br>
we simply do nothing<br>
and remain silent.
</p>

<p>
But who am I,<br>
blind as I am,<br>
to judge what does<br>
or does not fail?
</p>

<p>
Help me to trust in you,<br>
the one who makes all things<br>
work together for good,<br>
for, to, and through<br>
those who love you.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org33d1a81">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Emacs Org-Capture</title>
<link>https://randyridenour.net/posts/2020-05-12-emacs-org-capture.html</link>
<pubDate>Tue, 12 May 2020 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2020-05-12-emacs-org-capture.html</guid>
<description>
<![CDATA[<p>
When trying to post to a journal for the first time in an embarrassing number of months, I received an error that I had never had in the past: &ldquo;org-capture-select-template: Symbol’s function definition is void: org-mks.&rdquo; A quick search revealed that it’s clearly defined in org.el, and I was successfully using org mode for other things, so I could see no reason for the error. A Google search revealed that several had the problem, but none of the proposed solutions worked.
</p>

<p>
In the end, it was a problem with my Emacs initialization file. I use an org-mode file, that is bootstrapped with an initialization file that requires org-install and tangle. Moving (package-initialize) to the first line of that file fixed the problem.
</p>
]]>
</description></item>
<item>
<title>Change Blindness</title>
<link>https://randyridenour.net/posts/2009-12-14-change-blindness.html</link>
<pubDate>Mon, 14 Dec 2009 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2009-12-14-change-blindness.html</guid>
<description>
<![CDATA[<p>
A great <a href="http://www.boingboing.net/2009/12/14/change-blindness-exp.html">experiment</a> that shows how little we tend to perceive.
</p>


<div class="tagline" id="orgdeb0f74">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a> <a href="https://randyridenour.net/posts/../tags/critical-thinking.html">Critical-Thinking</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Happiness of Deep Conversations</title>
<link>https://randyridenour.net/posts/2010-03-23-the-happiness-of-deep-conversations.html</link>
<pubDate>Tue, 23 Mar 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-03-23-the-happiness-of-deep-conversations.html</guid>
<description>
<![CDATA[<p>
The New York Times <a href="http://well.blogs.nytimes.com/2010/03/17/talk-deeply-be-happy/?src=me&amp;amp;ref=general">recently reported</a> on a study published in <a href="http://pss.sagepub.com/content/early/2010/02/17/0956797610362675.full"><i>Psychological Science</i></a> suggesting that people who engage in substantive, meaningful conversations are happier than those who do not.
</p>

<p>
It appears that Mill was right — it is better to be a dissatisfied Socrates than a satisfied pig.
</p>


<div class="tagline" id="orga8e8508">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Emacs on the iPad</title>
<link>https://randyridenour.net/posts/2016-06-23-emacs-on-the-ipad.html</link>
<pubDate>Thu, 23 Jun 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-06-23-emacs-on-the-ipad.html</guid>
<description>
<![CDATA[<p>
The iPad Pro has more people considering using the iPad for production, not just for entertainment. I have long been jealous of those who could use an iPad for most of their work, especially now, as iPad displays get bigger and nicer. I would love to be able to throw an iPad and keyboard into a small bag and be able to use the same tool for both reading and writing.
</p>

<p>
Unfortunately, though, two things have kept me from being able to easily do that. First, I do almost of all my work in Emacs, and I&rsquo;m afraid that Apple would never allow Emacs on the iPad. Second, except for blog posts, almost everything I write eventually becomes a LaTeX document that is compiled into a PDF.
</p>

<p>
I&rsquo;m sure that most people wouldn&rsquo;t be troubled at all by either of these problems. My projects usually begin as Markdown files, and there are some decent Markdown editors on iOS. Most of these are limited to using one subfolder in Dropbox, and I have a folder for each course, writing project, my website, etc. A larger problem is that Emacs becomes a finely tuned, personal tool for a user. With one keystroke, I can renumber ordered lists, insert a reference from my bibliography database, commit changes to a git repository, and many other things. Once this has become ingrained, it is very difficult to go to anything else. I can write LaTeX on the iPad, but I can&rsquo;t compile. That still has to be done on another machine. So, while others are carrying their nice, light tablets, I&rsquo;ve been schlepping a MacBook Pro.
</p>

<p>
A few days ago, I noticed that <a href="http://www.digitalocean.com">Digital Ocean</a> has a remote server plan with 20 GB of solid state storage for five dollars a month. It only has 512 MB of memory, but that seems to be plenty for Emacs and Vim. I signed up, started a machine, and installed Ubuntu. I installed Emacs, Vim, Pandoc, and LaTeX. I changed the shell to the fish shell, and moved all of my configuration files. Since the configuration files are all on Github, moving them to the machine was simple.
</p>

<p>
So, the good news is that I&rsquo;m now writing this in Emacs on the iPad. The bad news is, since I had given up being able to use the iPad to write, I traded in my larger iPad for an iPad mini. Now, I really will be looking longingly at those iPad Pros I see at Starbucks.
</p>


<div class="tagline" id="org2ed25fb">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Insurance Update</title>
<link>https://randyridenour.net/posts/2019-06-09-insurance-update.html</link>
<pubDate>Sun, 09 Jun 2019 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2019-06-09-insurance-update.html</guid>
<description>
<![CDATA[<p>
I feel a bit better today after a close reading of both the Aetna and the AFLAC policies. It seems that Aetna just wants to know if there are any other policies that could provide coverage. Why they want to know that now, but didn’t earlier, I have no idea.
</p>

<p>
So, I am hopeful – but I’ll know when I call tomorrow.
</p>

<p>
UPDATE: I gave the Aetna representative the number for our AFLAC policy – she confirmed that Aetna was primary and AFLAC secondary, and told me that the claims would be resubmitted. Sometimes, things go well, even when dealing with insurance.
</p>



<div class="tagline" id="orgf0ffbc8">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Even More</title>
<link>https://randyridenour.net/posts/2009-10-21-the-collection-grows.html</link>
<pubDate>Wed, 21 Oct 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-10-21-the-collection-grows.html</guid>
<description>
<![CDATA[<p>
The collection grows&hellip;
</p>

<div class="org-center">

<figure id="orgbeffca2">
<img src="https://randyridenour.net/posts/../images/posts/it-grows.png" alt="it-grows.png" width="100%">

</figure>
</div>




<div class="tagline" id="org6cb1e25">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/aesthetics.html">Aesthetics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Philosophers and Bums</title>
<link>https://randyridenour.net/posts/2009-11-23-you-must-be-a-philosopher-no-im-a-bum.html</link>
<pubDate>Mon, 23 Nov 2009 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2009-11-23-you-must-be-a-philosopher-no-im-a-bum.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
&rsquo;You must be a philosopher.&rsquo; &rsquo;No, I&rsquo;m a bum.&rsquo;
</p>
</blockquote>

<p class="bigquote">
From <i>Barney Miller</i>
</p>


<div class="tagline" id="orgf36d8c7">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Emacs Markdown Indentation</title>
<link>https://randyridenour.net/posts/2017-03-08-emacs-markdown-indentation.html</link>
<pubDate>Wed, 08 Mar 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-03-08-emacs-markdown-indentation.html</guid>
<description>
<![CDATA[<p>
Beginning today, for some reason, I could not indent Markdown list items in Emacs. Disabling aggressive-indent-mode fixed the problem.
</p>


<div class="tagline" id="orgb410abb">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>A Prayer for Wellness</title>
<link>https://randyridenour.net/posts/2015-01-13-a-prayer-for-wellness.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-a-prayer-for-wellness.html</guid>
<description>
<![CDATA[<p>
Jesus saw the lame man at the pool,<br>
and asked, &ldquo;Do you want to be made well?&rdquo;<br>
Instead of an answer,<br>
the man gave an explanation.<br>
</p>

<p>
But explanations become rationalizations,<br>
and rationalizations become excuses,<br>
and &ldquo;Yes, but&hellip;&rdquo; just means &ldquo;No, thank you.&rdquo;<br>
</p>

<p>
Lord,<br>
</p>

<p>
Forgive us for preferring<br>
the familiarity of the present pain<br>
to the joy of new life that you offer.<br>
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="org12864ab">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>No Democrat Voted for What?</title>
<link>https://randyridenour.net/posts/2017-12-04-no-democrat-voted-for-what.html</link>
<pubDate>Mon, 04 Dec 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-12-04-no-democrat-voted-for-what.html</guid>
<description>
<![CDATA[<p>
I just saw an internet meme that said, “Not a single Democrat voted to lower your taxes &mdash; let that sink in for a moment.”
</p>

<p>
I guess that’s another way of pointing out that not a single Democrat voted to raise the federal deficit by 1.4 trillion dollars in ten years.
</p>



<div class="tagline" id="org72cc662">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Love and Attention</title>
<link>https://randyridenour.net/posts/2015-01-13-love-and-attention.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-love-and-attention.html</guid>
<description>
<![CDATA[<p>
A few days ago, Casie Trotter sent me this quote from George Saunders: &ldquo;I think that art is a form of paying attention and, for me, attention is love.&rdquo; This is an important point, although I would phrase it differently. Attention is not love, because attention can easily be followed by an act of hate. Attention is a necessary condition of love; it is impossible to love something unless on pays attention to the object of love. In the same way, it is impossible to hate something without also being willing to pay attention to it. Without attention, there is neither love nor hate, there is just indifference—the great sin of the Laodicean church.
</p>

<p>
Traditionally, the theme of the second Sunday of Advent is love. Darley and Batson&rsquo;s famous Good Samaritan study<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> shows that a major impediment to paying attention is simply being in a hurry. Ironically, then, the many activities and rushed pace of the Advent season make it harder for us to pay attention, and therefore less likely that Advent will be a season of love.
</p>

<p>
Let us begin to love by paying attention.
</p>

<p>
Holy Spirit,
</p>

<p>
Forgive me, for<br>
although I can see,<br>
I am too often blind.
</p>

<p>
Instead of obstacles in my path,<br>
let me see opportunities<br>
to slow down,<br>
to linger,<br>
to pay attention,<br>
to love.
</p>

<p>
For time is never wasted<br>
when it is spent in love.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgde14020">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
<i>Journal of Personality and Social Psychology</i>, vol. 27, no. 1, 100-108.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Unlocking File: Invalid Argument Warning</title>
<link>https://randyridenour.net/posts/2025-02-25-unlocking-file-invalid-argument-warning.html</link>
<pubDate>Fri, 28 Nov 2025 05:41:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2025-02-25-unlocking-file-invalid-argument-warning.html</guid>
<description>
<![CDATA[<p>
This is one of those posts to remind me of a solution to a rarely occurring problem.
</p>

<p>
Emacs has a feature called <a href="https://www.gnu.org/software/emacs/manual/html_node/emacs/Interlocking.html#:~:text=Emacs%20removes%20the%20lock%20when,benefits%20that%20this%20feature%20provides.">interlocking</a> to prevent two different users from modifying the same file. If, like me, you regularly use two different machines, this may occasionally present a problem. Most of the time, Emacs behaves nicely and gives the user some options to either steal the lock, proceed with the edit, or quit. Recently, though, I had a file that I needed to edit that Emacs simply wouldn&rsquo;t let me open. Every time I tried, I just got this warning: <code>Unlocking file: Invalid argument</code>. I suspect this might have had something to do with a system crash that prevented Emacs from saving the file and clearing its locked status. Eventually, I stumbled on a solution: delete the lockfile, which is a file in the directory that contains a &ldquo;#&rdquo; in the filename.
</p>

<div class="tagline" id="org09ff667">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Indoctrinating Students</title>
<link>https://randyridenour.net/posts/2023-04-13-indoctrinating-students.html</link>
<pubDate>Thu, 13 Apr 2023 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2023-04-13-indoctrinating-students.html</guid>
<description>
<![CDATA[<p>
I saw this on the internet months ago, but can&rsquo;t remember the source:
</p>

<blockquote>
<p>
And if ‘indoctrinating’ students truly existed, I would have classes with 100% assignment turn-in rates, no one ever attempting to get on a cell phone, and I would never need to repeat instructions more than a couple of times.
</p>
</blockquote>


<div class="tagline" id="orgf0c08de">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a>
</p>

</div>
]]>
</description></item>
<item>
<title>To Love or Die</title>
<link>https://randyridenour.net/posts/2016-11-17-to-love-or-die.html</link>
<pubDate>Thu, 17 Nov 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-11-17-to-love-or-die.html</guid>
<description>
<![CDATA[<p class="verse">
All I have is a voice<br>
To undo the folded lie,<br>
The romantic lie in the brain<br>
Of the sensual man-in-the-street<br>
And the lie of Authority<br>
Whose buildings grope the sky:<br>
There is no such thing as the State<br>
And no one exists alone;<br>
Hunger allows no choice<br>
To the citizen or the police;<br>
We must love one another or die.<br>
<br>
Defenseless under the night<br>
Our world in stupor lies;<br>
Yet, dotted everywhere,<br>
Ironic points of light<br>
Flash out wherever the Just<br>
Exchange their messages:<br>
May I, composed like them<br>
Of Eros and of dust,<br>
Beleaguered by the same<br>
Negation and despair,<br>
Show an affirming flame.<br>
</p>

<p class="source">
From &ldquo;September 1, 1939&rdquo; by W.H. Auden
</p>


<div class="tagline" id="org3bc6add">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/poetry.html">Poetry</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Scheming Swindlers</title>
<link>https://randyridenour.net/posts/2015-01-20-scheming-swindlers.html</link>
<pubDate>Tue, 20 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-20-scheming-swindlers.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
The Bible is very easy to understand. But we as Christians are a bunch of scheming swindlers. We pretend to be unable to understand it because we know very well that the minute we understand we are obliged to act accordingly. My God, you will say, if I do that my whole life will be ruined.
</p>
</blockquote>

<p class="bigquote">
Søren Kierkegaard, <i>Journals</i>
</p>


<div class="tagline" id="orgef3448a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>No Innocence</title>
<link>https://randyridenour.net/posts/2015-09-08-no-innocence.html</link>
<pubDate>Tue, 08 Sep 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-09-08-no-innocence.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
I once sent a dozen of my friends a telegram saying &rsquo;flee at once - all is discovered.&rsquo; They all left town immediately.
</p>
</blockquote>

<p class="bigquote">
Mark Twain
</p>


<div class="tagline" id="org194418b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Advice from Chesterton</title>
<link>https://randyridenour.net/posts/2015-01-20-advice-from-chesterton.html</link>
<pubDate>Tue, 20 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-20-advice-from-chesterton.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Let your religion be less of a theory and more of a love affair.
</p>
</blockquote>

<p class="bigquote">
G.K. Chesterton
</p>


<div class="tagline" id="org9886469">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Creating Attendance Sheets with Org Mode</title>
<link>https://randyridenour.net/posts/2025-08-23-creating-attendance-sheets-with-org-mode.html</link>
<pubDate>Sat, 23 Aug 2025 18:03:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-08-23-creating-attendance-sheets-with-org-mode.html</guid>
<description>
<![CDATA[<p>
I do not like taking attendance in class. Unfortunately, despite having paid very much to take the course, many students need the extra motivation to attend class. My Introduction to Philosophy classes average 35 students which makes calling every student by name more time-consuming than I would like. If I could remember names, I could take attendance quickly, but unfortunately, names have always been a problem for me.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> The best thing for me to do is to pass around a sign-in sheet.
</p>

<p>
Even though I&rsquo;ve written almost everything in Org mode for over a decade now, I have always done these attendance sheets in a word processor. The problem is that the number of students enrolled would vary from semester to semester, and fitting everything into one page required adjusting column widths, row heights, etc., and it always <i>seemed</i> easier to do this in a word processor. This was only because I&rsquo;ve never really done much with LaTeX tables. Finally, last semester, I decided to figure out how to make them in Org. It won&rsquo;t be surprising to Emacs users that, in the end, it was far easier than using the word processor.
</p>

<p>
Just declare the <a href="https://ctan.org/pkg/tabularray?lang=en">tabularray</a> package in the LaTeX header like this:
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-meta-line">#+LaTeX_HEADER: \usepackage{tabularray}</span>
</code></pre>
</div>

<p>
In the body, insert the table formatting codes<sup><a id="fnr.2" class="footref" href="#fn.2" role="doc-backlink">2</a></sup> and the Org table. Here&rsquo;s a sample with names from <a href="https://1000randomnames.com">1000randomnames.com</a>:
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-meta-line">#+ATTR_LATEX: :environment tblr :align hline{3-Z}={solid},row{2-Z}={f,10mm},colspec={XXXX}</span>
<span class="org-org-table">| </span><span class="org-org-table"><span class="org-bold">Name</span></span><span class="org-org-table">             | </span><span class="org-org-table"><span class="org-bold">Signature</span></span><span class="org-org-table"> | </span><span class="org-org-table"><span class="org-bold">Name</span></span><span class="org-org-table">           | </span><span class="org-org-table"><span class="org-bold">Signature</span></span><span class="org-org-table"> |</span><span class="org-org-table-row">
</span><span class="org-org-table">| Branch, Kassidy  |           | Graves, Amaya  |           |</span><span class="org-org-table-row">
</span><span class="org-org-table">| Duffy, Keenan    |           | Gentry, Micah |           |</span><span class="org-org-table-row">
</span><span class="org-org-table">| Fischer, Addisyn |           | Kaur, Amelie   |           |</span>
</code></pre>
</div>

<p>
Creating the table was still a slight pain. It involved pasting a column of names, then inserting the pipe character at the beginning of every line in the top half of the column, two pipe characters at the end of each line, then killing the bottom half of the column and inserting it as a rectangle at the right side of the top half. It wasn&rsquo;t difficult using <code>query-replace-regexp</code> and a couple of rectangle operations, but even the slightly tedious task that will be repeated indefinitely is worth automating.
</p>

<p>
There were two parts that were tricky for me. The first was splitting the list at the correct row. If there were 34 students, then I needed two groups of 17 with the second group starting at row 18, but a class of 35 students required one group of 18 and another of 17 with the second group starting at row 19. I wanted the left column to be the larger for aesthetic reasons, and didn&rsquo;t want to manually determine where to split the list. I solved it by first counting the lines in the list, then adding the remainder of a division by 2. This resulted in 34 for the class of 34, since dividing an even number has a remainder of 0, and 36 for the class of 35. I then divided that result in 2 and added 1, giving me the 18 and 19 respectively that I needed.
</p>

<p>
The second tricky part was the pasting the lines from the second half to the ends of the lines in the first half. The fortunate thing about using an editor as old as Emacs is that almost every conceivable question has been asked and answered online. That was fortunate for me, because I&rsquo;m not sure I would have ever figured it out.  You&rsquo;ll see a few lines in the code below that split the last item in the kill-ring at line-breaks, and insert each resulting sub-string at the end of each line.
</p>

<p>
The rest is just inserting the characters to make it an Org table, killing an extra line, putting the columns in order, and inserting the LaTeX headers with a snippet. Here&rsquo;s the result, with the usual disclaimer about my being an incompetent amateur and so on:
</p>

<div class="org-src-container">
<pre class="src src-elisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">create-roll-sheet</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-comment-delimiter">;; </span><span class="org-comment">Append signature cells to each line.
</span>  <span class="org-rainbow-delimiters-depth-2">(</span>goto-char <span class="org-rainbow-delimiters-depth-3">(</span>point-min<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>replace-regexp <span class="org-string">"$"</span> <span class="org-string">" |  | "</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-comment-delimiter">;; </span><span class="org-comment">kill bottom half of buffer and move to top
</span>  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">setq</span> lines <span class="org-rainbow-delimiters-depth-3">(</span>count-lines <span class="org-rainbow-delimiters-depth-4">(</span>point-min<span class="org-rainbow-delimiters-depth-4">)</span> <span class="org-rainbow-delimiters-depth-4">(</span>point-max<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">setq</span> lines <span class="org-rainbow-delimiters-depth-3">(</span>+ lines <span class="org-rainbow-delimiters-depth-4">(</span>% lines 2<span class="org-rainbow-delimiters-depth-4">)</span> <span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">setq</span> midpoint <span class="org-rainbow-delimiters-depth-3">(</span>+ <span class="org-rainbow-delimiters-depth-4">(</span>/ lines 2<span class="org-rainbow-delimiters-depth-4">)</span> 1<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>goto-line midpoint<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>kill-region <span class="org-rainbow-delimiters-depth-3">(</span>point<span class="org-rainbow-delimiters-depth-3">)</span> <span class="org-rainbow-delimiters-depth-3">(</span>point-max<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-comment-delimiter">;; </span><span class="org-comment">Append each line from kill-ring to remaining lines.
</span>  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">dolist</span> <span class="org-rainbow-delimiters-depth-3">(</span>cur-line-to-insert <span class="org-rainbow-delimiters-depth-4">(</span>split-string <span class="org-rainbow-delimiters-depth-5">(</span>current-kill 0<span class="org-rainbow-delimiters-depth-5">)</span> <span class="org-string">"\n"</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">if</span> <span class="org-rainbow-delimiters-depth-4">(</span>eobp<span class="org-rainbow-delimiters-depth-4">)</span>
        <span class="org-rainbow-delimiters-depth-4">(</span>newline<span class="org-rainbow-delimiters-depth-4">)</span>
      <span class="org-rainbow-delimiters-depth-4">(</span>move-end-of-line nil<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>insert cur-line-to-insert<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>forward-line<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-comment-delimiter">;; </span><span class="org-comment">Prepend pipe character to each line and kill last line.
</span>  <span class="org-rainbow-delimiters-depth-2">(</span>goto-char <span class="org-rainbow-delimiters-depth-3">(</span>point-min<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>replace-regexp <span class="org-string">"^"</span> <span class="org-string">"| "</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>kill-whole-line<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-comment-delimiter">;; </span><span class="org-comment">insert LaTeX table format and header lines
</span>  <span class="org-rainbow-delimiters-depth-2">(</span>goto-char <span class="org-rainbow-delimiters-depth-3">(</span>point-min<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>insert <span class="org-string">"#+ATTR_LATEX: :environment tblr :align hline{3-Z}={solid},row{2-Z}={f,10mm},colspec={XXXX}\n| *Name*              | *Signature* | *Name*              | *Signature* | \n"</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-comment-delimiter">;; </span><span class="org-comment">Clean up table.
</span>  <span class="org-rainbow-delimiters-depth-2">(</span>org-ctrl-c-ctrl-c<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-comment-delimiter">;; </span><span class="org-comment">Insert LaTeX header.
</span>  <span class="org-rainbow-delimiters-depth-2">(</span>goto-char <span class="org-rainbow-delimiters-depth-3">(</span>point-min<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>yas-expand-snippet <span class="org-rainbow-delimiters-depth-3">(</span>yas-lookup-snippet <span class="org-string">"roll-sheet"</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
It&rsquo;s 31 lines of code, but it wasn&rsquo;t difficult. In fact, it took longer to write this blog post than to write the function. 
</p>

<p>
To be honest, this is something that I only have to do maybe twice a semester. So, why bother? It&rsquo;s fun and I get a sense of satisfaction from doing it, and that&rsquo;s reason enough in itself. Still, there is good reason to automate something that you only rarely have to do. I think there are two kinds of tasks that deserve to be automated. The first is something involving several steps that you have to do constantly. The second is something involving several steps that you only do rarely, but since it&rsquo;s done only rarely, it&rsquo;s difficult to remember how it was accomplished previously. This task probably fits into neither category, but I still learned something about Elisp that I&rsquo;m sure will be useful when have a problem that does.
</p>


<div class="tagline" id="orga129694">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
I blame this on too many head injuries in the Army. I woke up in an ambulance after one airborne jump and couldn&rsquo;t even remember landing. There was another incident with a sledgehammer &mdash; it was one of those things that seemed like a good idea at the time.
</p></div></div>

<div class="footdef"><sup><a id="fn.2" class="footnum" href="#fnr.2" role="doc-backlink">2</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
<code>hline{3-Z}={solid}</code> draws horizontal lines above and below every row from row three until the end, <code>row{2-Z}={f,10mm}</code> sets the row height and aligns text at the foot of the row , <code>colspec={XXXX}</code> makes the columns expandable to stretch across the document.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>The Gospel, Period</title>
<link>https://randyridenour.net/posts/2011-01-07-i-dont-preach-a-social-gospel-i-preach-the.html</link>
<pubDate>Fri, 07 Jan 2011 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2011-01-07-i-dont-preach-a-social-gospel-i-preach-the.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
I don&rsquo;t preach a social gospel; I preach the gospel, period. The gospel of our Lord Jesus Christ is concerned with the whole person. When people were hungry, Jesus didn&rsquo;t say, &rsquo;Now is that political or social?&rsquo; He said, &rsquo;I feed you.&rsquo; Because the good news to a hungry person is bread.
</p>
</blockquote>

<p class="bigquote">
Desmond Tutu
</p>







<div class="tagline" id="orga859317">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Another Great Quote from Chaplain School</title>
<link>https://randyridenour.net/posts/2010-04-18-another-great-quote-from-chaplain-school.html</link>
<pubDate>Sun, 18 Apr 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-04-18-another-great-quote-from-chaplain-school.html</guid>
<description>
<![CDATA[<p>
From the leader of a Mosque in Columbia, speaking about partnering with other groups to provide social services to people in an area of the city suffering from high poverty and crime rates:
</p>


<blockquote>
<p>
We&rsquo;ve been able to work with the Methodists and the Episcopalians. The Baptists&hellip;, well, we have to be patient with the Baptists.
</p>
</blockquote>


<div class="tagline" id="orgeceba7d">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Ignorance is Easy</title>
<link>https://randyridenour.net/posts/2016-03-30-ignorance-is-easy.html</link>
<pubDate>Wed, 30 Mar 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-03-30-ignorance-is-easy.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Ignorance may not be bliss, but it&rsquo;s certainly less work.
</p>
</blockquote>

<p class="bigquote">
<i>Welcome to Nightvale</i>, episode 30
</p>




<div class="tagline" id="orgd0e1ca8">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>"Prayer for Graceful Words"</title>
<link>https://randyridenour.net/posts/2017-08-09-prayer-for-graceful-words.html</link>
<pubDate>Wed, 09 Aug 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-08-09-prayer-for-graceful-words.html</guid>
<description>
<![CDATA[<p>
Holy God,
</p>

<p>
In my haste to be heard,<br>
give me the strength<br>
to slow down,<br>
think carefully,<br>
and measure<br>
my words.
</p>

<p>
Some words are poisonous fruit,<br>
and others are seeds of grace.
</p>

<p>
Help me to sow<br>
according to your will.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org1776687">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Explain Everything</title>
<link>https://randyridenour.net/posts/2015-01-13-explain-everything.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-explain-everything.html</guid>
<description>
<![CDATA[<p>
An Apple education representative recommended the iOS app &ldquo;Explain Everything.&rdquo; I imported a Keynote presentation, talked through it, then posted the result to YouTube. It didn&rsquo;t take any time at all. Explain Everything looks like it will be a great tool for anyone teaching in a distance learning context.
</p>

<div class="org-center">
<p>
<iframe width="440" height="335" src="https://www.youtube.com/embed/3Aoa-yP5U_Y" frameborder="0" allowfullscreen></iframe>
</p>
</div>


<div class="tagline" id="orgadb67f7">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Justice</title>
<link>https://randyridenour.net/posts/2010-07-15-i-cant-stand-your-religious-meetings-im-fed.html</link>
<pubDate>Thu, 15 Jul 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-07-15-i-cant-stand-your-religious-meetings-im-fed.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
I can&rsquo;t stand your religious meetings.<br>
I&rsquo;m fed up with your conferences and conventions.<br>
I want nothing to do with your religion projects,<br>
your pretentious slogans and goals.<br>
I&rsquo;m sick of your fund-raising schemes,<br>
your public relations and image making.<br>
I&rsquo;ve had all I can take of your noisy ego-music.<br>
When was the last time you sang to me?<br>
Do you know what I want?<br>
I want justice—oceans of it.<br>
I want fairness—rivers of it.<br>
That&rsquo;s what I want. That&rsquo;s all I want.
</p>
</blockquote>

<p class="bigquote">
Amos 5:21-24 (<i>The Message</i>)
</p>


<div class="tagline" id="org7e825ba">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Search and Replace with Regular Expressions</title>
<link>https://randyridenour.net/posts/2015-01-13-search-and-replace-with-regular-expressions.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-search-and-replace-with-regular-expressions.html</guid>
<description>
<![CDATA[<p>
I wrote the post that follows below so that I could remember how to use regular expressions for search and replace operations in Sublime Text. Since I just now made some headway in Emacs, I&rsquo;ll repost with some updates, again, primarily as a reference for myself.
</p>

<p>
There is no doubt that regular expressions are very powerful. I&rsquo;ve found that the documentation for regular expressions is often as mysterious as the things that the documentation is supposed to explain. Keeping in mind that I am certainly no expert, learning even a little about the use of regular expressions can be quite valuable.
</p>

<p>
The normal search dialogue in text editors will find all uses of the search term. You might not want to find all uses of a term, but only those that match a certain pattern. For example, assume that I want to search for any dates in a long file. If the file contains many different dates, then searching successfully for each one would be tedious, if not impossible. If my dates are in the form &ldquo;YYYY-MM-DD,&rdquo; then I can simply use the regular expression &ldquo;dddd-dd-dd&rdquo;. The &ldquo;d&rdquo; finds a digit, so the search string locates every string of text that consists of four digits, followed by a hyphen, two digits, another hyphen, and ending with two digits.
</p>

<p>
It could be that I wasn&rsquo;t consistent in my dating scheme, some years have all four digits, and others have only two. The year could be first in some cases, but last in others. The search string &ldquo;d&amp;#42;-d&amp;#42;-d&amp;#42;&rdquo; easily handles all of the variations. The asterisk is a repeat operator that matches the preceding character zero or more times. This search will find any three groups of digits separated by hyphens.
</p>

<p>
Search with regular expressions is powerful enough, but replacement is amazing. Any string contained in parentheses can be referenced in both search and replacement strings. That makes it simple to change just part of a string.
</p>

<p>
For example, imagine that I have a list of students that I copied from a database. Each line has the following format, &ldquo;First Last&rdquo;, and I want to change it to &ldquo;Last, First&rdquo;. The following regex search and replace accomplishes the task in one stroke:
</p>


<pre class="example" id="orgb6dc462">
Search: ^(w*) (w*)n
Replace: $2, $1n
</pre>


<p>
This search finds every line consisting of just two words separated by a space. The &lt;code&gt;$1&lt;/code&gt; refers to the string matched by the characters in the first set of parentheses, and &lt;code&gt;$2&lt;/code&gt; refers to the string matched by the second set. The replacement string tells the editor to switch the words and insert a comma between them. This changes a list like this,
</p>


<pre class="example" id="org95fc8e7">
George Washington
John Adams
Thomas Jefferson
</pre>


<p>
to
</p>


<pre class="example" id="org4542d72">
Washington, George
Adams, John
Jefferson, Thomas
</pre>


<p>
Imagine how difficult it would be to do this with a long file by cutting and pasting each name! Regular expressions can use Boolean operators, wildcards, and different character types. Different languages have their own particular syntaxes for regular expressions, and I assume that text editors might also have different syntaxes. The examples all work in Sublime Text 2. It&rsquo;s well worth learning a little about how your preferred editor handles regular expressions, it can save a great deal of time and retyping.
</p>

<p>
The primary difference in Emacs is in referencing the strings to be searched for and used in the replace operation. The key is to put a backslash (&ldquo;\&rdquo;) before the opening and closing parentheses in the search operation, and to use a backslash instead of a dollar sign in the replace operation. So, this will work for the preceding example:
</p>


<pre class="example" id="org1c40fe2">
Search: ^\(\w+\) \(\w+\)
Replace: \2, \1
</pre>


<div class="tagline" id="orgb7ee943">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Girard on Blame and Innocence</title>
<link>https://randyridenour.net/posts/2016-03-02-girard-on-blame-and-innocence.html</link>
<pubDate>Wed, 02 Mar 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-03-02-girard-on-blame-and-innocence.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
In biblical texts, victims are innocent and collective violence is to blame. ln myths, the victims are to blame and communities are always innocent.
</p>
</blockquote>

<p class="bigquote">
René Girard, <i>The One by Whom Scandal Comes</i>, 35
</p>


<div class="tagline" id="org5abf9c3">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>If you could have only one thing for Christmas</title>
<link>https://randyridenour.net/posts/2010-12-14-if-you-could-have-only-one-thing-for-christmas.html</link>
<pubDate>Tue, 14 Dec 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-12-14-if-you-could-have-only-one-thing-for-christmas.html</guid>
<description>
<![CDATA[<p>
If you could have only one thing for Christmas
</p>

<p>
In today&rsquo;s <a href="http://wapo.st/dHHR2P">Washington Post</a>, Petula Dvorak&rsquo;s column includes a story about a 6-year-old who was told by her mother to scale back her Christmas list. So, she wrote a letter to &ldquo;Dear Sata&rdquo; asking for just one thing, a remote control that controlled the world.
</p>

<p>
When her mother pointed out that the salutation was missing an &ldquo;N&rdquo;, she simply added it to the end of the name. So, it read, &ldquo;Dear Satan,&hellip;&rdquo; Fitting, somehow.
</p>




<div class="tagline" id="orgbae0b6e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>A Wedding Prayer and Blessing</title>
<link>https://randyridenour.net/posts/2016-08-07-a-wedding-prayer-and-blessing.html</link>
<pubDate>Sun, 07 Aug 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-08-07-a-wedding-prayer-and-blessing.html</guid>
<description>
<![CDATA[<p>
I officiated a wedding for a former student and dear friend yesterday. Here is the prayer and blessing from the ceremony:
</p>

<p>
God of grace, hear our prayer,
</p>

<p>
We give thanks for this day, for we need it desperately.<br>
The world inundates us with messages of<br>
helplessness and hopelessness, emptiness and despair,<br>
until we are tempted to feel that all is lost.<br>
</p>

<p>
Then we come to this place,<br>
and we find that there is still hope,<br>
for the love that spoke the world into being<br>
has drawn these two people together,<br>
so that they may create their own world,<br>
a life together,<br>
marked by beauty,<br>
dedicated to peace,<br>
and surrounded by love.
</p>

<p>
Protect, guide, and bless them in their marriage.<br>
Surround us all with your love, now and always.
</p>

<p>
Now, may the slanting rays of the sun<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup><br>
light the path before you,<br>
as the love of God surrounds you,<br>
to guide you on this journey together.<br>
May God guard your hearts<br>
from anything that might separate you,<br>
and shelter you in his love, forever.
</p>

<p>
<i>Amen</i>
</p>

<div class="tagline" id="org64fa0ec">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
For those who haven&rsquo;t taken my existentialism course, &ldquo;the slanting rays of the sun&rdquo; is a metaphorical image that Dostoevsky uses in <i>The Brothers Karamazov</i>.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Prayer for an Isolated People</title>
<link>https://randyridenour.net/posts/2015-05-14-prayer-for-an-isolated-people.html</link>
<pubDate>Thu, 14 May 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-05-14-prayer-for-an-isolated-people.html</guid>
<description>
<![CDATA[<p>
God of Grace and Wholeness,<br>
</p>

<p>
All around us, we see pain and heartache,<br>
the effects of fragmented and broken systems,<br>
communities, and families.<br>
When the pain of others becomes<br>
too much for us to bear,<br>
we respond by building up walls<br>
that separate us from the world.
</p>

<p>
So here we stay,<br>
safe and secure<br>
behind our walls of division,<br>
seeing only ourselves,<br>
our own problems,<br>
and our own hopes.
</p>

<p>
We boast of our love for humanity,<br>
while at the same time,<br>
fail to see the needs of our neighbor.
</p>

<p>
But God, You have called us to be your people,<br>
and you have have given us a new commandment,<br>
the commandment to love one another.<br>
Loving others, though, is something that we cannot do<br>
from a position of safety and security,<br>
for to love is embrace vulnerability and risk,<br>
all for the sake of the beloved.<br>
</p>

<p>
So, guide our hands to reach out across our walls<br>
and open our eyes to see beyond ourselves,<br>
so that we might be used by you<br>
for the healing of this world.<br>
<br>
In the name of Jesus Christ,<br>
who called us to be in the world,<br>
but not of it,<br>
we pray.<br>
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="orgb5c601d">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Fine Line</title>
<link>https://randyridenour.net/posts/2015-02-05-the-fine-line.html</link>
<pubDate>Thu, 05 Feb 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-02-05-the-fine-line.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
There&rsquo;s a fine line between genius and insanity. I have erased this line.
</p>
</blockquote>

<p class="bigquote">
Oscar Levant
</p>


<div class="tagline" id="org3f13a25">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Expectations and Grades</title>
<link>https://randyridenour.net/posts/2009-02-19-expectations-and-grades.html</link>
<pubDate>Thu, 19 Feb 2009 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2009-02-19-expectations-and-grades.html</guid>
<description>
<![CDATA[<p>
There’s an interesting piece in the <a href="https://www.nytimes.com/2009/02/18/education/18college.html?_r=2&amp;amp;ref=todayspaper">New York Times</a> today about student expectations and grade inflation. Apparently, there are students (at institutions other than Oklahoma Baptist, I’m sure) that believe that doing the minimal work that is required of everyone in the course should be sufficient to earn a B for the course. Either we have lowered the level of work that we are willing to consider average, or it really is true that in today’s society someone who manages to complete the minimum requirements really is above average. Either disjunct strikes me as disturbing. If you are in Critical Thinking, keep this story in mind. It is relevant to some of the topics that we will be discussing later.
</p>



<div class="tagline" id="org0c58854">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/critical-thinking.html">Critical-Thinking</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Chains of Technology</title>
<link>https://randyridenour.net/posts/2015-01-13-the-chains-of-technology.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-chains-of-technology.html</guid>
<description>
<![CDATA[<p>
Rousseau&rsquo;s <i>Social Contract</i> opens with &ldquo;Man is born to be free, and everywhere he is in chains.&rdquo; It&rsquo;s amazing that he could recognize that without ever seeing a group of people with their smartphones.
</p>


<div class="tagline" id="org4de0653">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Reinstalling Apps from Mac App Store</title>
<link>https://randyridenour.net/posts/2015-01-13-reinstalling-apps-from-mac-app-store.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-reinstalling-apps-from-mac-app-store.html</guid>
<description>
<![CDATA[<p>
I was having some trouble with BBEdit on one of my machines, so I decided to delete and reinstall the application. That&rsquo;s not very difficult in ordinary circumstances, but since I bought from the App Store, it should have been even easier. There should be no need to enter any license information, just a click and install.
</p>

<p>
First, I deleted the app. I deleted BBEdit from the applications folder. Somehow, it was still in Launchpad. So, I deleted it from Launchpad. Surely that would be enough.
</p>

<p>
Unfortunately, after I deleted the application, the App Store still thought that it was installed and wouldn&rsquo;t let me download another copy. With the aid of a great little application called <a href="http://apps.tempel.org/FindAnyFile/">Find Any File</a>, I removed every trace of BBEdit from the machine, including all preference files and application support files.
</p>

<p>
The App Store was still convinced that it was installed.
</p>

<p>
Then, I began searching the internet, which revealed some frustrated App Store customers, who were mostly frustrated with their Xcode experience. The search didn&rsquo;t help.
</p>

<p>
For some reason, I decided to go back to Launchpad and saw the BBEdit icon there. I clicked it and BBEdit started right up, though without my usual color scheme since I had deleted the application support folder. So, where was the file? On a whim, I disconnected my backup drive, opened the App Store, and BBEdit was finally gone with the option to install. I Pressed the install button, and BBEdit was automatically installed.
</p>

<p>
Lesson: Launchpad sees apps on external drives, so disconnect any external drives to install a deleted app to your main drive. Then, reinstalling <i>should</i> be the quick and easy process that it&rsquo;s supposed to be.
</p>


<div class="tagline" id="org30619bc">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/org.html">Org</a> <a href="https://randyridenour.net/posts/../tags/mac.html">Mac</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Millennium Development Goals</title>
<link>https://randyridenour.net/posts/2008-05-18-millennium-development-goals.html</link>
<pubDate>Sun, 18 May 2008 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2008-05-18-millennium-development-goals.html</guid>
<description>
<![CDATA[<p>
Yesterday, Mitch Randall, pastor of <a href="http://www.northhavenchurch.net/"> NorthHaven Church</a> in Norman, preached on Christianity and Justice. In his message, he discussed the Millennium Development Goals, seven goals that have been adopted by the world&rsquo;s countries, including the United States. It is legitimate for the church to ask what we can do to help our own nation achieve its stated goals.
</p>

<p>
The eight goals are outlined on the <a href="http://www.un.org/millenniumgoals/index.html"> United Nations Website</a>:
</p>

<ol class="org-ol">
<li>Eradicate extreme poverty and hunger<br></li>
<li>Achieve universal primary education<br></li>
<li>Promote gender equality and empower women<br></li>
<li>Reduce child mortality<br></li>
<li>Improve maternal health<br></li>
<li>Combat HIV/AIDS, marlaria and other diseases<br></li>
<li>Ensure environmental sustainability<br></li>
<li>Develop a global partnership for development</li>
</ol>

<p>
You can read a progress report <a href="http://www.un.org/millenniumgoals/docs/UNSD_MDG_Report_2007e.pdf">here</a>. Each region of the world shows progress in almost every category, but there is still much work to do. These goals should be the goals of the church, for they certainly seem consistent with Jesus&rsquo; stated mission in Luke 4:18-19: “The Spirit of the Lord is upon me, because he has anointed me to bring good news to the poor. He has sent me to proclaim release to the captives and recovery of sight to the blind, to let the oppressed go free, to proclaim the year of the Lord’s favor.”
</p>

<p>
May his mission be our own.
</p>


<div class="tagline" id="org1885a2a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Muffin Top of Hate</title>
<link>https://randyridenour.net/posts/2015-01-13-muffin-top-of-hate.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-muffin-top-of-hate.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
So calm down and smile and loosen up your judgy pants because I can see your muffin top of hate and it&rsquo;s so not flattering.
</p>
</blockquote>

<p class="bigquote">
Autumn Raines Lockett
</p>


<div class="tagline" id="org5ba3588">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Tragic Human Condition</title>
<link>https://randyridenour.net/posts/2025-07-19-tragic-human-condition.html</link>
<pubDate>Sat, 19 Jul 2025 17:27:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-07-19-tragic-human-condition.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Human beings, who are almost unique in having the ability to learn from the experience of others, are also remarkable for their apparent disinclination to do so.
</p>
</blockquote>

<p class="bigquote">
Douglas Adams
</p>


<div class="tagline" id="org8cb2273">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Holy Saturday</title>
<link>https://randyridenour.net/posts/2016-03-26-holy-saturday.html</link>
<pubDate>Sat, 26 Mar 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-03-26-holy-saturday.html</guid>
<description>
<![CDATA[<p>
Gracious Father,
</p>

<p>
Holy Saturday,<br>
the day of waiting,<br>
after all of our<br>
hopes and dreams<br>
have been crushed<br>
by a cruel world<br>
and a naive idealism<br>
is forced to succumb<br>
to a harsher reality.
</p>

<p>
But even after the<br>
horrors of Friday,<br>
the morning sun still<br>
rose on Saturday.
</p>

<p>
And we have hope,<br>
however faint,<br>
however absurd.
</p>

<p>
So we wait,<br>
wait to see<br>
what Sunday<br>
will bring.
</p>

<p>
Amen
</p>


<div class="tagline" id="orgc9cab0b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Lent 3</title>
<link>https://randyridenour.net/posts/2015-03-09-prayer-for-lent-3.html</link>
<pubDate>Mon, 09 Mar 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-03-09-prayer-for-lent-3.html</guid>
<description>
<![CDATA[<p>
<b>A prayer for reconciliation.</b>
</p>

<p>
God of love,
</p>

<p>
We open our arms<br>
to hug and to hold,<br>
welcome and invite.
</p>

<p>
With outstretched hands,<br>
we lower our defenses<br>
and accept the vulnerability<br>
that comes with love.
</p>

<p>
Did the soldiers know<br>
what they were doing<br>
as they stretched the arms<br>
of Jesus onto the cross?
</p>

<p>
Humiliated and scorned,<br>
the Eternal King<br>
chose vulnerability, love,<br>
and reconciliation<br>
instead of rejection.
</p>

<p>
Give us the courage<br>
to do the same.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orge1e1a8f">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Maundy Thursday 2015</title>
<link>https://randyridenour.net/posts/2015-04-02-maundy-thursday-2015.html</link>
<pubDate>Thu, 02 Apr 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-04-02-maundy-thursday-2015.html</guid>
<description>
<![CDATA[<p>
Lord,
</p>

<p>
How would you have us known to the world?
</p>

<p>
By whom we exclude?<br>
By what we hate?<br>
By whom we refuse to serve?<br>
By our purity?
</p>

<p>
Instead, we are to be known<br>
by our love&hellip;
</p>

<p>
Love,
</p>

<p>
in all its<br>
messy,<br>
entangled,<br>
accepting,<br>
and sometimes awkward<br>
beauty.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org174fcaa">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Augustine on Humility</title>
<link>https://randyridenour.net/posts/2010-12-20-the-way-to-christ-is-first-through-humility.html</link>
<pubDate>Mon, 20 Dec 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-12-20-the-way-to-christ-is-first-through-humility.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
The way to Christ is first through humility, second through humility, third through humility.
</p>
</blockquote>

<p class="bigquote">
Augustine of Hippo
</p>







<div class="tagline" id="org5b0d41e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>NRA Survey</title>
<link>https://randyridenour.net/posts/2015-01-20-nra-survey.html</link>
<pubDate>Tue, 20 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-20-nra-survey.html</guid>
<description>
<![CDATA[<p>
I just received a call from the National Rifle Association today. A recorded message from the NRA Executive Vice-President concerning the U.N. Small Arms Treaty was followed by the following single question survey:
</p>

<p>
&ldquo;Do you think it&rsquo;s OK for the U.N. to be on our soil attacking our gun rights?&rdquo;
</p>

<p>
I was instructed to press &ldquo;1&rdquo; if I did <i>not</i> think was OK for the U.N. to be on our soil attacking our gun rights. That was followed by a repeat instruction to press &ldquo;1&rdquo; if I did not think it was OK. I was then instructed to press 2 if I did think was OK for the U.N. to attack our gun rights. (Note that I was only given that instruction once.)
</p>

<p>
I am not criticizing the NRA&rsquo;s position on the U.N. Small Arms Treaty, primarily since I have no interest in making enemies of the most well-armed group in the country. NRA membership outnumbers the people serving the U.S. Armed Forces by over a million. Even if there are no problems with the policy position, there are several problems with the survey. First, it is obvious that the NRA is not concerned what people think about the treaty. The survey is a classic example of a push-poll. It&rsquo;s designed simply to push a message out to the population. This is evident from the question. What useful information do we expect to gain from asking people if they think it&rsquo;s OK for the U.N to attack our gun rights. Do we really not know how people will answer that question? It&rsquo;s no different from my polling my students to find out if they would like to get out of class early. I expect to soon hear an announcement from the NRA proclaiming that the American people are nearly unanimous in their rejection of the Small Arms Treaty. As far as information gathering goes, it&rsquo;s a complete waste of time and money. For propaganda pushing, on the other hand, it&rsquo;s very effective.
</p>

<p>
I wonder what the response rate would have been had the question been &ldquo;Do you think it&rsquo;s OK that the U.N. negotiate a treaty designed to prevent guns from falling into the hands of terrorists?&rdquo; Another group could report that the American people nearly unanimously support the Small Arms Treaty. This survey would be no better as a survey, but just as effective as a propaganda tool.
</p>

<p>
I will be curious to see what percentage of respondents the NRA reports as supporting their position. It should not be 100%, since I pressed &ldquo;2&rdquo; just out of spite.
</p>


<div class="tagline" id="orgef772c9">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/critical-thinking.html">Critical-Thinking</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Christ the King Sunday</title>
<link>https://randyridenour.net/posts/2015-01-13-christ-the-king-sunday.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-christ-the-king-sunday.html</guid>
<description>
<![CDATA[<p>
Mitch opened his sermon at NorthHaven on Christ the King Sunday recounting the scene at the end of The Return of the King in which Aragorn, the newly crowned king, bows down to the hobbits. That brought to mind their first meeting in The Fellowship of the Ring where Frodo is trying to decide if Aragorn should be trusted:
</p>

<blockquote>
<p>
At last Frodo spoke with hesitation. &ldquo;I believed that you were a friend before the letter came,&rdquo; he said, &ldquo;or at least I wished to. You have frightened me several times tonight, but never in the way the servants of the Enemy would, or so I imagine. I think one of his spies would - well, seem fairer and feel fouler, if you understand.&rdquo;
</p>
</blockquote>

<p>
What does a king look like?
</p>

<p>
Is he haughty,<br>
unapproachable,<br>
controlling,<br>
and cold?
</p>

<p>
Regal and magnificent,<br>
to be respected and admired,<br>
but only from afar?
</p>

<p>
Majestic and powerful,<br>
a conquering hero<br>
who rides into the city<br>
astride a warhorse?
</p>

<p>
Surely the king<br>
would not appear<br>
as the son of<br>
a poor family,<br>
a laborer with<br>
calloused hands?
</p>

<p>
Homeless,<br>
who owns nothing,<br>
and rides into the city<br>
on a shabby, borrowed donkey?
</p>

<p>
One who suffered injustice,<br>
and was executed by<br>
the forces of the state?
</p>

<p>
Father,
</p>

<p>
Teach me to<br>
embrace the King<br>
as he is,<br>
and not the King<br>
as I want him to be.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgf3916ae">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Sin of Ambivalence</title>
<link>https://randyridenour.net/posts/2017-01-12-the-sin-of-ambivalence.html</link>
<pubDate>Thu, 12 Jan 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-01-12-the-sin-of-ambivalence.html</guid>
<description>
<![CDATA[<p>
Holy God,
</p>

<p>
The greatest tragedy<br>
is not to hate God,<br>
for the one who hates<br>
has God ever present<br>
before his mind.
</p>

<p>
It is ambivalence,<br>
thoughtless and uncaring,<br>
a life that is at once<br>
both full and empty,<br>
full of trivialities,<br>
yet empty of meaning
</p>

<p>
Heal my lukewarm heart, Lord,<br>
and restore me to my first love.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orge37c181">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Religion and Culture</title>
<link>https://randyridenour.net/posts/2015-12-09-religion-and-culture.html</link>
<pubDate>Wed, 09 Dec 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-12-09-religion-and-culture.html</guid>
<description>
<![CDATA[<p>
<a href="http://www.booksandculture.com/articles/webexclusives/2015/december/paris-and-beyond.html?utm_source=booksandculture-html&amp;utm_medium=Newsletter&amp;utm_term=11172719&amp;utm_content=401372051&amp;utm_campaign=2013">Philip Yancey</a> relates an insightful comment by a Muslim scholar explaining the particular difficulties that Islam and Christianity each have relating to culture:
</p>

<blockquote>
<p>
I have read the entire Koran and can find in it no guidance on how Muslims should live as a minority in a society. I have read the entire New Testament and can find in it no guidance on how Christians should live as a majority.
</p>
</blockquote>






<div class="tagline" id="org02989df">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Trinity Sunday</title>
<link>https://randyridenour.net/posts/2019-06-16-prayer-for-trinity-sunday-2.html</link>
<pubDate>Sun, 16 Jun 2019 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2019-06-16-prayer-for-trinity-sunday-2.html</guid>
<description>
<![CDATA[<p>
Triune God,
</p>

<p>
In those times<br>
that we feel alone,<br>
lost in the crowd,<br>
and disconnected<br>
from those around us,<br>
we take comfort in knowing<br>
that at the center of reality<br>
is an unending community of love,<br>
and that we, your children,<br>
have been invited into<br>
the eternal fellowship<br>
that is the<br>
Father,<br>
Son,<br>
and Holy Spirit,<br>
three persons,<br>
but one God,<br>
forever and ever.
</p>

<p>
<i>Amen</i>
</p>
]]>
</description></item>
<item>
<title>Climate Change and Objectivity</title>
<link>https://randyridenour.net/posts/2008-06-02-climate-change-and-objectivity.html</link>
<pubDate>Mon, 02 Jun 2008 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2008-06-02-climate-change-and-objectivity.html</guid>
<description>
<![CDATA[<p>
The <a href="http://www.washingtonpost.com/wp-dyn/content/article/2008/06/02/AR2008060202698.html?wpisrc=newsletter%22%20title=%22Climate%20Findings%20Were%20Distorted,%20Probe%20Finds%20-%20washingtonpost.com"><i>Washington Post</i></a> reports something today that is unfortunate but unsurprising. NASA&rsquo;s inspector general has determined that political appointees have controlled and distorted information about research on climate change conducted by NASA scientists. This is why it is so difficult for the layperson like myself to make informed decisions about the severity of the problem and the best response to the problem. Such decisions should be made on the basis of the best science, but what we know about the science has been distorted by those who have already decided what is to be done.
</p>


<div class="tagline" id="orgd684286">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a> <a href="https://randyridenour.net/posts/../tags/critical-thinking.html">Critical-Thinking</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Good Advice</title>
<link>https://randyridenour.net/posts/2009-08-14-youre-never-too-old-to-have-a-happy-childhood.html</link>
<pubDate>Fri, 14 Aug 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-08-14-youre-never-too-old-to-have-a-happy-childhood.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
You&rsquo;re never too old to have a happy childhood.
</p>
</blockquote>

<p class="bigquote">
Mike Bumgarner
</p>









<div class="tagline" id="orgfb09c35">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Arguments in HTML</title>
<link>https://randyridenour.net/posts/2019-01-08-arguments-html.html</link>
<pubDate>Fri, 08 Jan 2021 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2019-01-08-arguments-html.html</guid>
<description>
<![CDATA[<p>
This post is not about arguments that occur on the internet, but about how to display philosophical/logical arguments in standard form on the internet. To put an argument in standard form:
</p>

<ol class="org-ol">
<li>Write each premise on a separate, numbered line,</li>
<li>Draw a line underneath the last premise, and</li>
<li>Write the conclusion underneath the line.</li>
</ol>

<p>
I&rsquo;ll first show how to format an argument in HTML, then show an easier way in Markdown with Hugo.
</p>
<section id="outline-container-html" class="outline-2">
<h2 id="html">HTML</h2>
<div class="outline-text-2" id="text-html">
<p>
It&rsquo;s easy enough to produce an ordered list in HTML, but then the conclusion is numbered, which makes it look like another premise. This can be fixed with a trick in CSS, just add something like this to your stylesheet:
</p>

<p>
<code>.list-arg li:last-child { list-style: none }</code>
</p>

<p>
If one doesn&rsquo;t need to post very many arguments in standard form, then it might not be worth it to clutter up the main stylesheet with another class. It&rsquo;s just as easy to add the style specification to each argument, like this:
</p>

<div class="org-src-container">
<pre class="src src-html"><code>&lt;<span class="org-function-name">ol</span>&gt;
  &lt;<span class="org-function-name">li</span>&gt;
    First Premise
  &lt;/<span class="org-function-name">li</span>&gt;
  &lt;<span class="org-function-name">li</span>&gt;
    &lt;<span class="org-function-name">u</span>&gt;<span class="org-underline">Last Premise</span>&lt;/<span class="org-function-name">u</span>&gt;
  &lt;/<span class="org-function-name">li</span>&gt;
  &lt;<span class="org-function-name">li</span> <span class="org-variable-name">style</span>=<span class="org-string">"list-style:none;"</span>&gt;
    Conclusion
  &lt;/<span class="org-function-name">li</span>&gt;
&lt;/<span class="org-function-name">ol</span>&gt;
</code></pre>
</div>

<p>
Both methods produce something that looks like this:
</p>

<div class="org-src-container">
<pre class="src src-html"><code>&lt;<span class="org-function-name">ol</span>&gt;
  &lt;<span class="org-function-name">li</span>&gt;
    First Premise
  &lt;/<span class="org-function-name">li</span>&gt;
  &lt;<span class="org-function-name">li</span>&gt;
    Last Premise
  &lt;/<span class="org-function-name">li</span>&gt;
  &lt;<span class="org-function-name">li</span> <span class="org-variable-name">style</span>=<span class="org-string">"list-style:none;"</span>&gt;
    Conclusion
&lt;/<span class="org-function-name">ol</span>&gt;
</code></pre>
</div>


<div class="org-src-container">
<pre class="src src-html"><code>&lt;<span class="org-function-name">ol</span> <span class="org-variable-name">class</span>=<span class="org-string">"arg"</span>&gt;
  &lt;<span class="org-function-name">li</span>&gt;
    First Premise
  &lt;/<span class="org-function-name">li</span>&gt;
  &lt;<span class="org-function-name">li</span>&gt;
    Last Premise
  &lt;/<span class="org-function-name">li</span>&gt;
  &lt;<span class="org-function-name">li</span>&gt;
    Conclusion
  &lt;/<span class="org-function-name">li</span>&gt;
&lt;/<span class="org-function-name">ol</span>&gt;
</code></pre>
</div>

<p>
Sometimes, the last premise is significantly shorter than the others, and the underline doesn&rsquo;t look quite right. For example,
</p>

<div class="org-src-container">
<pre class="src src-html"><code>&lt;<span class="org-function-name">ol</span>&gt;
  &lt;<span class="org-function-name">li</span>&gt;
    P &#8835; Q
  &lt;/<span class="org-function-name">li</span>&gt;
  &lt;<span class="org-function-name">li</span>&gt;
    P
  &lt;/<span class="org-function-name">li</span>&gt;
  &lt;<span class="org-function-name">li</span> <span class="org-variable-name">style</span>=<span class="org-string">"list-style:none;"</span>&gt;
    Q
  &lt;/<span class="org-function-name">li</span>&gt;
&lt;/<span class="org-function-name">ol</span>&gt;
</code></pre>
</div>

<p>
That can be fixed with some non-breaking spaces. It looks ugly, but it does take care of the problem.
</p>

<pre class="example" id="orgc139a90">
&lt;ol&gt;
  &lt;li&gt;
    P &amp;#8835; Q
  &lt;/li&gt;
  &lt;li&gt;
    &lt;u&gt;P&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;;/u&gt;
  &lt;/li&gt;
  &lt;li style="list-style:none;"&gt;
    Q
  &lt;/li&gt;
&lt;/ol&gt;
</pre>

<p>
That produces
</p>

<div class="org-src-container">
<pre class="src src-html"><code>&lt;<span class="org-function-name">ol</span>&gt;
  &lt;<span class="org-function-name">li</span>&gt;
    P &#8835; Q
  &lt;/<span class="org-function-name">li</span>&gt;
  &lt;<span class="org-function-name">li</span>&gt;
    P
  &lt;/<span class="org-function-name">li</span>&gt;
  &lt;<span class="org-function-name">li</span> <span class="org-variable-name">style</span>=<span class="org-string">"list-style:none;"</span>&gt;
    Q
  &lt;/<span class="org-function-name">li</span>&gt;
&lt;/<span class="org-function-name">ol</span>&gt;
</code></pre>
</div>
</div>
</section>
<section id="outline-container-markdown" class="outline-2">
<h2 id="markdown">Markdown</h2>
<div class="outline-text-2" id="text-markdown">
<p>
It is very easy to make lists in Markdown. Unfortunately, we have the same problem that we started with in HTML. That is, the conclusion is numbered:
</p>

<ol class="org-ol">
<li>First Premise</li>
<li>Second Premise</li>
<li>Conclusion</li>
</ol>

<p>
Since raw HTML can be used in Markdown, we could just use HTML. Since the Goldmark rendering engine that Hugo uses allows attributes and classes in Markdown, there is another, far simpler, option. First, make sure that your site config.toml page has &ldquo;unsafe = true&rdquo; and &ldquo;block = true&rdquo; in the markup section. Mine looks like this:
</p>

<pre class="example" id="org7b98795">
[markup]
  [markup.goldmark]
  [markup.goldmark.parser]
      autoHeadingID = true
      autoHeadingIDType = "github"
      [markup.goldmark.parser.attribute]
	block = true
	title = true
    [markup.goldmark.renderer]
      unsafe = true
</pre>

<p>
Now, add a new class to your stylesheet. I called it &ldquo;arg&rdquo; and styled it like this:
</p>

<pre class="example" id="org238c763">
.arg li:last-child {
  list-style: none;
}

.arg li:nth-last-child(2) {
text-decoration: underline;
}

.arg li {
margin: 0px;
}
</pre>

<p>
The first part removes the number at the line with the conclusion, and the second part underlines the last premise. Finally, I decided to tighten up the lines. Now, when you write your post, just use a normal Markdown ordered list with the class after the last item:
</p>

<pre class="example" id="org2972330">
1. First premise
2. Second premise
3. Conclusion
{.arg}
</pre>

<p>
When published, that code produces this:
</p>

<ol class="org-ol arg">
<li>First premise</li>
<li>Second premise</li>
<li>Conclusion</li>
</ol>



<div class="tagline" id="orgfdf99ba">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/org.html">Org</a>
</p>

</div>
</div>
</section>
]]>
</description></item>
<item>
<title>Merton on Scripture</title>
<link>https://randyridenour.net/posts/2010-07-15-there-is-in-a-word-nothing-comfortable-about-the.html</link>
<pubDate>Thu, 15 Jul 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-07-15-there-is-in-a-word-nothing-comfortable-about-the.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
There is, in a word, nothing comfortable about the Bible &ndash; until we manage to get so used to it that we make it comfortable for ourselves. But then we are perhaps too used to it and too at home in it. Let us not be too sure we know the Bible &hellip; just because we have learned not to have problems with it. Have we perhaps learned &hellip; not to really pay attention to it? Have we ceased to question the book and be questioned by it?
</p>
</blockquote>

<p class="bigquote">
Thomas Merton, from <i>Opening the Bible</i>
</p>


<div class="tagline" id="orgebea357">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Mercy, the Law, and Les Misérables</title>
<link>https://randyridenour.net/posts/2015-01-13-mercy.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-mercy.html</guid>
<description>
<![CDATA[<p>
Mitch Randall always seems to have some clever and interesting themes to use for his sermon series. In the past, we&rsquo;ve had, among others, movies, board-games, and monsters. This summer, the series was called &ldquo;NorthHaven Goes to Broadway.&rdquo; Unfortunately, I missed most of it because of our vacation trip and military duty, but I was there this past Sunday for his sermon based on Les Misérables.
</p>

<p>
I don&rsquo;t know if she was doing it to spiritually prepare for Sunday, but Sheri, my wife, had been playing the 2012 film version over the past week. A few days ago, she pointed out that there is an ethical problem in the film&mdash;specifically, the conflict between mercy, on the one hand, and faithfulness to the law on the other.
</p>

<p>
In Victor Hugo&rsquo;s novel, Jean Valjean was an embittered ex-convict, unable to find food or lodging. When the the Bishop of Digne offered him shelter for the night, Valjean repaid him by stealing a set of expensive, extravagant silverware. The next morning, the police apprehended Valjean who told them an implausible story of how he had been given the silverware by the Bishop. When they dragged Valjean back to verify the story, we are given one of the most powerful scenes of grace found in literature:
</p>

<blockquote>
<p>
The door opened to disclose a dramatic group. Three men were holding a fourth by the arms and neck. The three were gendarmes; the fourth was Jean Valjean&hellip;
</p>

<p>
&rsquo;So here you are!&rsquo; he cried to Valjean. &rsquo;I&rsquo;m delighted to see you. Had you forgotten that I gave you the candlesticks as well? They&rsquo;re silver like the rest, and worth a good two hundred francs. Did you forget to take them?&rsquo;
</p>

<p>
Jean Valjean&rsquo;s eyes had widened. He was now staring at the old man with an expression no words can convey&hellip;
</p>

<p>
He fetched them from the mantelpiece and handed them to Valjean. The two women watched him do so without seeking by word or look to interfere. Valjean was trembling. He took the candlesticks mechanically and with a distracted air.
</p>

<p>
&rsquo;And now,&rsquo; said the bishop, &rsquo;go in peace. Incidentally, my friend, when next you come here you need not go through the garden. This door is never locked.&rsquo; He turned to the gendarmes. &rsquo;Thank you, gentlemen.&rsquo;
</p>

<p>
The gendarmes withdrew. Valjean stayed motionless as though he were on the verge of collapse. The bishop came up to him and said in a low voice:
</p>

<p>
&rsquo;Do not forget, do not ever forget, that you have promised me to use the money to make yourself an honest man.&rsquo;
</p>

<p>
Valjean, who did not recall having made any promise, was silent. The bishop had spoken the words slowly and deliberately. He concluded with a solemn emphasis:
</p>

<p>
&rsquo;Jean Valjean, my brother, you no longer belong to what is evil but to what is good. I have bought your soul to save it from black thoughts and the spirit of perdition, and I give it to God.&rsquo;<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>
</blockquote>

<p>
Jean Valjean was transformed, but like most transformations, it was not instantaneous&mdash;after he went on his way, in his confusion, he stole a coin from a boy. He soon realized what he had done, and attempted to return the coin, but the theft has already been reported. If he were caught, he would be sentenced to life as a repeat offender.
</p>

<p>
Valjean adopted an alias and went on to forge a new life for himself. Eventually, he became a wealthy factory owner, the town mayor, and by all accounts, an honorable man. When Valjean learned that an innocent man faced punishment for Valjean&rsquo;s past crimes, he went to court and proclaimed his true identity.
</p>

<p>
This led to a series of arrests and escapes, and Valjeans constant pursuit by Javert, a fanatical police inspector, who seemed to seek only the enforcement of the law. At a critical point, Valjean had an opportunity to kill Javert, but instead, saved his life. Javert could not reconcile mercy and the law, and after this act of mercy on the part of Valjean, he could neither arrest Valjean nor let him go free. Javert&rsquo;s only escape from his cognitive dissonance was suicide.
</p>

<p>
In May, several news sources<sup><a id="fnr.2" class="footref" href="#fn.2" role="doc-backlink">2</a></sup> reported the story of the arrest of Cornealious Anderson. Anderson was convicted and sentenced when he was 23 for his role in a robbery. He was then told to wait for orders to report to prison, but those orders never came. He never hid his identity, and even asked his attorney what he should do. In the meantime, he married, raised four children, started and operated construction businesses, coached his son&rsquo;s football team, and ran the video during the services of his church.
</p>

<p>
When his original sentence was supposed to end, the state realized its clerical error. Anderson, through no fault of his own, had never served any part of his sentence. Eight US Marshals were immediately sent to his home to take him into custody.
</p>

<p>
Should the state of Missouri have enforced the original sentence or should it have shown mercy? Does acting on one show no respect for the other?
</p>

<p>
Judge Terry Brown of Mississippi County, Missouri freed Anderson after a ten minute hearing, and granted him time-served for his entire sentence&mdash;he walked out of the courtroom with his family and no requirement for parole. Anderson&rsquo;s attorney said that the case shows that &ldquo;justice can be swift, justice can be harsh, but justice also can be merciful.&rdquo;
</p>

<p>
There lies the solution to the problem. The law should serve the interests of justice. So, we shouldn&rsquo;t ask if mercy is compatible with the law, but rather if mercy is compatible with <b>justice</b>, and that depends on what justice is. Is justice an act of revenge upon the one who committed the wrong, or is justice an act of restoration?
</p>

<p>
An act of robbery has many more victims than just the one who was robbed. The criminal obviously harmed the one who was robbed, but also harmed the greater community. This explains, at least in part, why the state, not just the individual, has in interest in the  prosecution of crime. Socrates thought that the greatest harm was done to offender himself, self-harm that consists in harm both to one&rsquo;s moral personality and one&rsquo;s relation to other members of the community.
</p>

<p>
The restorative justice movement understands justice as the repairing of the harm that was caused by criminal act, the harm done to victims, the community, and also to the offenders. The goal of justice, then, is the restoration of community and the transformation of those involved.
</p>

<p>
In the fictional case of Valjean and the actual case of Anderson, meeting the demands of the law would do more to harm the restoration of community than had already been achieved. So, in these cases, justice is not only compatible with mercy, but demands mercy. 
</p>

<p>
For more information on Restorative Justice, see <a href="http://www.restorativejustice.org">Restorative Justice Online</a>.
</p>

<div class="tagline" id="org77b1723">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Victor Hugo, <i>Les Misérables</i>, tr. Norman Denny (New York: Penguin, 2012), 110-111.
</p></div></div>

<div class="footdef"><sup><a id="fn.2" class="footnum" href="#fnr.2" role="doc-backlink">2</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Here are stories from the <a href="http://www.washingtonpost.com/news/post-nation/wp/2014/05/05/missouri-man-sent-to-prison-13-years-later-than-intended-is-released/">Washington Post</a> and the <a href="http://www.theguardian.com/world/2014/may/05/missouri-man-imprisoned-13-year-delay">Guardian</a>.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Prayer for My Pettiness</title>
<link>https://randyridenour.net/posts/2015-11-22-prayer-for-my-pettiness.html</link>
<pubDate>Sun, 22 Nov 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-11-22-prayer-for-my-pettiness.html</guid>
<description>
<![CDATA[<p>
Father,
</p>

<p>
I&rsquo;m surrounded by voices<br>
telling me what I want to hear,<br>
voices urging me to seek my own good,<br>
to protect what is mine,<br>
that my security is more important<br>
than the needs of others.
</p>

<p>
Help me, Lord,<br>
to hear a different message,<br>
one that challenges me<br>
to become something<br>
better than I have been,<br>
and to dismantle my own petty kingdom<br>
for the sake of the Kingdom of God.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org78664fc">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Styling Arguments in Org Mode</title>
<link>https://randyridenour.net/posts/2023-01-23-styling-arguments-in-org-mode.html</link>
<pubDate>Mon, 23 Jan 2023 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2023-01-23-styling-arguments-in-org-mode.html</guid>
<description>
<![CDATA[<p>
Org mode is particularly useful for its ability to easily export to many other file formats. I often prepare handouts that contain philosophical arguments. Some of these handouts are intended to be printed, others are intended to be viewed electronically. Printed handouts are prepared by exporting the org file to PDF using LaTeX, and the other handouts are made by exporting to HTML.
</p>

<p>
We often put arguments in what is called &ldquo;standard form.&rdquo; The premises are written on numbered lines, with a line underneath the last premise. The conclusion is then written beneath the line. In LaTeX, this is easily done with this code:
</p>

<div class="org-src-container">
<pre class="src src-LaTeX"><code><span class="org-font-latex-sedate"><span class="org-keyword">\begin</span></span>{<span class="org-function-name">enumerate</span>}
<span class="org-font-latex-sedate"><span class="org-keyword">\item</span></span> First Premise
<span class="org-font-latex-sedate"><span class="org-keyword">\item</span></span> <span class="org-font-latex-sedate"><span class="org-keyword">\underline</span></span>{<span class="org-font-latex-underline">Last Premise</span>}
<span class="org-font-latex-sedate"><span class="org-keyword">\item</span></span> [<span class="org-variable-name"><span class="org-font-latex-math">$</span></span><span class="org-font-latex-sedate"><span class="org-variable-name"><span class="org-font-latex-math">\therefore</span></span></span><span class="org-variable-name"><span class="org-font-latex-math">$</span></span>] Conclusion
<span class="org-font-latex-sedate"><span class="org-keyword">\end</span></span>{<span class="org-function-name">enumerate</span>}
</code></pre>
</div>

<p>
For HTML, I use a class  that I named &ldquo;arg&rdquo; and defined in my custom css file:
</p>

<div class="org-src-container">
<pre class="src src-css"><code><span class="org-css-selector">.arg li:last-child</span> <span class="org-rainbow-delimiters-depth-1">{</span>
  <span class="org-css-property">list-style</span>: none;
<span class="org-rainbow-delimiters-depth-1">}</span>

<span class="org-css-selector">.arg li:nth-last-child</span><span class="org-css-selector"><span class="org-rainbow-delimiters-depth-1">(</span></span><span class="org-css-selector">2</span><span class="org-css-selector"><span class="org-rainbow-delimiters-depth-1">)</span></span> <span class="org-rainbow-delimiters-depth-1">{</span>
  <span class="org-css-property">text-decoration</span>: underline;
<span class="org-rainbow-delimiters-depth-1">}</span>

<span class="org-css-selector">.arg li</span> <span class="org-rainbow-delimiters-depth-1">{</span>
  <span class="org-css-property">margin</span>: 0px;
<span class="org-rainbow-delimiters-depth-1">}</span>
</code></pre>
</div>


<p>
This tells the rendering engine to not put any number before the last item of a list (nor any other styling) and to underline the penultimate item of the list. 
</p>

<p>
To use an HTML class in org mode, just put this immediately before the element you want to style:
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-meta-line">#+ATTR_HTML: :class classname</span>
</code></pre>
</div>

<p>
The argument is written like this:
</p>

<div class="org-src-container">
<pre class="src src-nil"><code>#+ATTR_HTML: :class arg
1. First premise
2. Second premise
3. Conclusion
</code></pre>
</div>

<p>
which produces this:
</p>

<ol class="org-ol arg">
<li>First premise</li>
<li>Second premise</li>
<li>Conclusion</li>
</ol>


<div class="tagline" id="orgc0048e1">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/org.html">Org</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Reconciliation and Hope</title>
<link>https://randyridenour.net/posts/2016-06-01-reconciliation-and-hope.html</link>
<pubDate>Wed, 01 Jun 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-06-01-reconciliation-and-hope.html</guid>
<description>
<![CDATA[<p>
I wrote this eight years ago, after President Obama&rsquo;s election:
</p>

<blockquote>
<p>
The year that I was born, 1963, was marked by these significant events:
</p>

<ul class="org-ul">
<li>In April, Martin Luther King was arrested and jailed in Birmingham.</li>
<li>In May, “Bull” Connor, the Commissioner of Public Safety in Birmingham used police dogs and fire hoses on a demonstration in Birmingham.</li>
<li>In June, Medgar Evers, the NAACP Field Secretary for Mississippi, was murdered outside his home.</li>
<li>In August, Martin Luther King delivered his famous “I Have a Dream” speech at the Lincoln Memorial in Washington, D.C.</li>
<li>In September, four young girls were killed in the bombing of the Sixteenth Street Baptist Church in Birmingham.</li>
</ul>

<p>
Tuesday, an African-American man was elected President of the United States.
</p>

<p>
The country has certainly come far. European countries are generally viewed as far more progressive than the United States, but, as far as I can tell, no European country is even remotely close to being able to select a member of a minority racial group as head of government.
</p>

<p>
That said, we still have a long ways to go before we can claim to have achieved racial reconciliation. On November 5, David Garland, President of Baylor University, issued a statement concerning recent incidents of racial conflict on Baylor’s campus. We cannot hope to achieve reconciliation in this country if we are not even able to achieve it in the Church. It is time for the Church to not only ask forgiveness for our past sins regarding slavery, but to recognize that failing to take action to create a better future is itself a sin.
</p>

<p>
If nothing else, this week’s election is a sign of hope.
</p>
</blockquote>

<p>
The events of the past eight years proved that progress requires more than simply hope.
</p>


<div class="tagline" id="org4b31333">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Attendance Sheets in Org Mode</title>
<link>https://randyridenour.net/posts/2025-01-25-attendance-sheets-org-mode.html</link>
<pubDate>Sat, 25 Jan 2025 07:17:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2025-01-25-attendance-sheets-org-mode.html</guid>
<description>
<![CDATA[<p>
This is another one of those days when I realized that I have been doing things the hard way. For years, I have been generating attendance sign-in sheets with Org Mode wonderful table editor. I would split the names into two columns and add a signature column after each. To ensure there was enough room for the signature, I would then stretch the signature column by adding phantom text to one of the rows like this (the names are from <a href="https://1000randomnames.com">1000randomnames.com</a>):
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-table">| Miley Malone | </span><span class="org-org-table"><span class="org-org-latex-and-related">\phantom{</span></span><span class="org-org-table">xxxxxxxxxx} | Ruben Espinosa | </span><span class="org-org-table"><span class="org-org-latex-and-related">\phantom{</span></span><span class="org-org-table">xxxxxxxxxx} |</span>
</code></pre>
</div>

<p>
Then, to make sure there was enough vertical space, I would add some extra blank rows between each row, having to adjust several times to make everything fit. It worked fine once completed, but it was certainly a pain in the neck. After seeing Matt Maguire&rsquo;s post, <a href="https://www.teachmaths.org/20250117_orgmode-tables/">Exporting Org Mode Tables to LaTeX</a>, I realized there had to be a better way. 
</p>

<p>
Using the LaTeX <a href="https://mirror.aarnet.edu.au/pub/CTAN/macros/latex/contrib/tabularray/tabularray.pdf">tabularray</a> package, I can simply do this:
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-meta-line">#+ATTR_LATEX: :environment tblr :align hline{3-Z}={solid},row{2-Z}={f,12mm},colspec={XXXX}</span>
<span class="org-org-table">| </span><span class="org-org-table"><span class="org-bold">Name</span></span><span class="org-org-table">         | </span><span class="org-org-table"><span class="org-bold">Signature</span></span><span class="org-org-table"> | </span><span class="org-org-table"><span class="org-bold">Name</span></span><span class="org-org-table">         | </span><span class="org-org-table"><span class="org-bold">Signature</span></span><span class="org-org-table"> |</span><span class="org-org-table-row">
</span><span class="org-org-table">| Miley Malone   |             | Ruben Espinosa |             |</span><span class="org-org-table-row">
</span><span class="org-org-table">| Braylee Brandt |             | Naomi Warren   |             |</span><span class="org-org-table-row">
</span><span class="org-org-table">| Abel Bullock   |             | Winnie Weaver  |             |</span><span class="org-org-table-row">
</span><span class="org-org-table">| Tucker Sexton  |             | Ellen Hayden   |             |</span><span class="org-org-table-row">
</span><span class="org-org-table">| Leroy Skinner  |             | Damir Phillips |             |</span>
</code></pre>
</div>

<p>
to produce:
</p>

<div class="org-center">

<div id="org4bf583e" class="figure">
<p><img src="https://randyridenour.net/posts/../images/posts/tblr-attendance.png" alt="tblr-attendance.png" width="100%" />
</p>
</div>
</div>

<p>
Here is what the values of <code>align</code> do:
</p>

<ul class="org-ul">
<li>Ordinarily, <code>hline</code> puts a border line on the top and bottom of every row. I don&rsquo;t want them on the first row, so <code>hline{3-Z}={solid}</code> omits the first two lines.</li>
<li><code>row{2-Z}={f,12mm}</code> aligns the text to the bottom of the row and sets the row height to 12mm for all of the rows except for the first.</li>
<li><code>colspec={XXXX}</code> widens the row to the length of the line. Since the signature columns are blank, I don&rsquo;t really need to specify particular column widths.</li>
</ul>

<p>
Now, instead of inserting and deleting rows and setting horizontal lines manually, I can just adjust the row height as needed by changing one number. See the excellent tabularray documentation for other settings.
</p>

<div class="tagline" id="org298d5be">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/org.html">Org</a> <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Lives are Stories — A Prayer</title>
<link>https://randyridenour.net/posts/2015-06-11-prayer-for-our-stories.html</link>
<pubDate>Thu, 11 Jun 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-06-11-prayer-for-our-stories.html</guid>
<description>
<![CDATA[<p>
Gracious God,<br>
who knows us better<br>
than we know ourselves,
</p>

<p>
Forgive me,<br>
when I quickly judge<br>
a harsh word,<br>
or impolite response<br>
without knowing<br>
the full story.
</p>

<p>
Everyone has a story,<br>
and every encounter<br>
affects the plot,<br>
and each moment<br>
is another opportunity<br>
to transform the tale<br>
from hopeless tragedy<br>
to divine beauty.
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="org7800889">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Not So Precious Moments</title>
<link>https://randyridenour.net/posts/2009-09-22-yesterday-i-received-an-anonymous-package-by.html</link>
<pubDate>Tue, 22 Sep 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-09-22-yesterday-i-received-an-anonymous-package-by.html</guid>
<description>
<![CDATA[<p>
Yesterday, I received an anonymous package by campus mail that contained this. I assume it was sent by a student in my Aesthetics class. It&rsquo;s a good example of an adequacy condition for an aesthetic theory — any theory that claims that this is good art must be rejected.
</p>

<p>
What should I do to get even? Maybe we&rsquo;ll have to reinstate those daily presentations.
</p>

<div class="org-center">

<figure id="org5cc4e91">
<img src="https://randyridenour.net/posts/../images/posts/package-figurine.jpg" alt="package-figurine.jpg" width="100%">

</figure>
</div>




<div class="tagline" id="orga0cca51">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/aesthetics.html">Aesthetics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Proverbs 31:8</title>
<link>https://randyridenour.net/posts/2010-03-20-proverbs-318.html</link>
<pubDate>Sat, 20 Mar 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-03-20-proverbs-318.html</guid>
<description>
<![CDATA[<p>
&ldquo;Speak out for those who cannot speak, for the rights of all the destitute.&rdquo; (NRSV)
</p>

<p>
According to <i>Sojourners</i>, 25% of U.S. adults polled attributed this quote to either Obama or the Dalai Lama. (February 2010, p. 9)
</p>


<div class="tagline" id="orga64562d">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Preacher's Eternal Obligation</title>
<link>https://randyridenour.net/posts/2025-02-10-preachereternal-obligation.html</link>
<pubDate>Mon, 10 Feb 2025 18:44:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2025-02-10-preachereternal-obligation.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
You are never under obligation to preach a great sermon, but you are eternally obligated to grapple with great ideas. And if you grapple with great ideas, you might, occasionally in a lifetime, preach a great sermon.
</p>
</blockquote>

<p class="bigquote">
Otis Moss, Jr., quoting Dr. Howard Thurman
</p>


<div class="tagline" id="orgc9e484d">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Seventeenth Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-the-seventeenth-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-seventeenth-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
We missed worship at NorthHaven this past Sunday, although I hear that there was an exceptional sermon by Bryan Partridge. Instead, I was at the 2014 meeting of the Baptist Association of Philosophy Teachers. A common theme of the presentations that I heard was the virtue of humility, one that seems often missing from academic life. This week&rsquo;s prayer:
</p>


<p>
Holy God,
</p>

<p>
Protect me from the temptation<br>
to mistake sarcasm for honesty,<br>
cynicism for realism,<br>
and cleverness for wisdom.
</p>

<p>
Cleanse my heart from anything<br>
that keeps me from loving<br>
and learning from everyone<br>
that you place in my path,<br>
especially those that make me uncomfortable.
</p>

<p>
Teach me to rejoice in the differences,<br>
for what can I learn<br>
from those that already<br>
think as I do,<br>
believe as I do,<br>
and speak as I do?
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org7052734">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Stanford Encyclopedia Article on the Trinity</title>
<link>https://randyridenour.net/posts/2009-07-24-stanford-encyclopedia-article-on-the-trinity.html</link>
<pubDate>Fri, 24 Jul 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-07-24-stanford-encyclopedia-article-on-the-trinity.html</guid>
<description>
<![CDATA[<p>
Dale Tuggy has a new <a href="http://plato.stanford.edu/entries/trinity/">article</a> in The <i>Stanford Encyclopedia of Philosophy</i> on the Trinity. In my opinion, <a href="http://plato.stanford.edu/"><i>The Stanford Encyclopedia</i></a> is the best reference work in philosophy, not simply the best online reference work in philosophy. I’ve been slowly working on a paper on the Trinity, so I’m grateful to have a nice summary of recent work on the subject. 
</p>



<div class="tagline" id="orgb54fac5">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Cross-Shattered Christ, Chapter 3</title>
<link>https://randyridenour.net/posts/2015-03-15-crucified-god-chapter-3.html</link>
<pubDate>Sun, 15 Mar 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-03-15-crucified-god-chapter-3.html</guid>
<description>
<![CDATA[<p>
Kierkegaard&rsquo;s <i>Fear and Trembling</i> focuses on Abraham, an example of what Kierkegaard calls a &ldquo;Knight of Faith.&rdquo; When I asked for other examples, someone suggested Mary, the mother of Jesus. At the time, I was skeptical, because it did not seem to me that Mary had an opportunity to reject God&rsquo;s plan; the angel Mary announced that Mary would conceive, and never asked Mary if she wanted to cooperate in this endeavor.
</p>

<p>
My mistake, as if often the case, is to think of Mary only as the young girl in the Christmas story, and neglect the woman that reared a child whom she surely could never keep — anguish foreshadowed by Simeon&rsquo;s remark by Simeon&rsquo;s cryptic remark to Mary, &ldquo;A sword will pierce your own soul too.&rdquo; Mary, though, despite her anguish, has hope, as we must also. As Hauerwas states:
</p>

<p>
So may we never forget that we, the church, comprise Mary’s home. A home, moreover, that promises not safety but rather the ongoing challenge of being a people called from the nations to be God’s people. A people constituted by faith in the One who refused to triumph through the violence the world believes to be the only means possible to achieve some limited good, to insure we will be remembered. The refusal to use violence in the name of the good does not mean this people can forget those singled out in Mary’s song of triumph— that is, the poor and powerless. Rather, it means that such a people, Mary-like, must live by hope— a hope that patiently waits with Mary at the foot of her son’s cross.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>


<div class="tagline" id="org30b64af">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Hauerwas, Stanley (2005-01-01). <i>Cross-Shattered Christ: Meditations on the Seven Last Words</i> (pp. 41-45). Baker Publishing Group. Kindle Edition. 
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Tolerance</title>
<link>https://randyridenour.net/posts/2011-01-11-tolerance.html</link>
<pubDate>Tue, 11 Jan 2011 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2011-01-11-tolerance.html</guid>
<description>
<![CDATA[<p>
I just finished my paper on the problems with tolerance. Of course, it was a day later than the conference deadline. Now to see how tolerant the conference organizers are.
</p>


<div class="tagline" id="orgc05274e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>LaTeX-Skim Sync</title>
<link>https://randyridenour.net/posts/2015-11-15-latexskim-sync.html</link>
<pubDate>Sun, 15 Nov 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-11-15-latexskim-sync.html</guid>
<description>
<![CDATA[<p>
I recently started using John Wiegley&rsquo;s [use-package](<a href="https://github.com/jwiegley/use-package">https://github.com/jwiegley/use-package</a> ) for my Emacs init files. For Auctex, I used
</p>


<pre class="example" id="orge38dac0">
(use-package tex
    :ensure auctex)
</pre>

<p>
and everything worked except for sync with Skim on OS X. <code>C-c v</code> would not launch the Skim, even though I was confident that the Skim was set to be the default viewer. Instead, no viewer would launch, and I&rsquo;d see &ldquo;View command: dvi2tty -q -w 132&rdquo; in the minibuffer.
</p>

<p>
After seeing that some others had used a slightly different configuration, I changed mine to
</p>


<pre class="example" id="org8ced9a5">
(use-package tex-site
    :ensure auctex)
</pre>


<p>
and everything started working fine. I still have no idea why, but it may help someone else.
</p>


<div class="tagline" id="orga85a849">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a> <a href="https://randyridenour.net/posts/../tags/LaTeX.html">Latex</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Mothers Day</title>
<link>https://randyridenour.net/posts/2015-05-10-prayer-for-mothers-day.html</link>
<pubDate>Sun, 10 May 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-05-10-prayer-for-mothers-day.html</guid>
<description>
<![CDATA[<p>
Mother&rsquo;s Day can be an awkward time in the life of the church. There is a great deal of internal pressure to commemorate the day, but we should acknowledge that there are many who are understandably uncomfortable on this day. There are those who may have painful memories of abuse at the hand of their biological mothers, others who may have never known their mothers, and many others who have never had, nor will ever have, children of their own. So, in this week&rsquo;s prayer, I&rsquo;ve tried to celebrate, not motherhood per se, but the nature of caregivers, whoever they may be.
</p>

<p>
Loving God,
</p>

<p>
We give thanks this day,<br>
for those who care<br>
for children,<br>
for aging parents,<br>
and for neighbors,<br>
for anyone who needs<br>
a warm smile,<br>
a cheerful greeting,<br>
or a kind word.
</p>


<p>
And we are blessed<br>
by those who<br>
love every child<br>
as one of their own,<br>
for reflected<br>
in their eyes,<br>
we see the face<br>
of Jesus.
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="orgc0b7409">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Disagreement and Being Wrong</title>
<link>https://randyridenour.net/posts/2017-01-09-disagreement-and-being-wrong.html</link>
<pubDate>Mon, 09 Jan 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-01-09-disagreement-and-being-wrong.html</guid>
<description>
<![CDATA[<p>
This internet meme has been making the rounds lately:
</p>

<div class="org-center">

<figure id="org6e6221c">
<img src="https://randyridenour.net/posts/../images/posts/20170109-disagreement.jpg" alt="20170109-disagreement.jpg" width="100%">

</figure>
</div>

<p>
The graphic shows two people on opposite ends of an ambiguous figure on the ground. One person points down and says &ldquo;Six.&rdquo; The other points down, saying &ldquo;Nine.&rdquo; The original caption is &ldquo;Just because you are right, does not mean I am wrong.&rdquo; That caption is crossed out, and this rebuttal placed below:
</p>

<blockquote>
<p>
But one of those people is wrong, someone painted a six or nine, they need to back up ad orient themselves, see if there are any other numbers to alight with. Maybe there&rsquo;s a driveway of a building to face, or they can ask someone who actually knows.
</p>

<p>
People having an uninformed opinion about something they don&rsquo;t understand and proclaiming their opinion as being equally valid as facts is what is ruining the world. No one wants to do any research, they just want to be right.
</p>
</blockquote>


<p>
There are number of things wrong here. First, the minor and less interesting problems:
</p>

<ol class="org-ol">
<li>The distinction between opinion and fact — an opinion is just something someone believes. A fact is something that is the case. True opinions express facts; false ones do not. So, an opinion can very well be as &ldquo;valid&rdquo; as a fact, if it indeed expresses a fact.</li>
<li>I do think that people having uninformed (I assume that is what was meant, not &ldquo;uniformed&rdquo;) opinions is bad, however, I suspect there are worse problems in the world. Failure to be informed is not evidence that people want to be right, but that they want to win. There&rsquo;s an important difference.</li>
</ol>

<p>
Now for the more interesting issues:
</p>

<p>
One thing the explanation gets right is that context is important. Context might very well show that one person is in fact wrong, but context could also show that both are right. The explanation assumes that the figure is painted on the floor or ground, but that&rsquo;s not clear from the cartoon. Another possibility is that the two people are looking at a large sign that was not intentionally placed, but simply laid down. To save money, the sign-maker may have produced 9 different signs for the numerals, intending the same sign to be used for both 6 and 9. So, both are correct. It is both a 6 and 9. The explanation assumes that the person who placed the figure there was trying to communicate something, but that isn&rsquo;t necessarily the case.
</p>

<p>
Another possibility, imagine that the two people live directly across the street from each other — one at 6 Elm Street and the other at 9 Elm Street. Not being very bright, they thought it would be cute to paint this large figure on the street between their houses. One points out that it is a 6, the other, a 9. Both walk away happy, and there is no real disagreement.
</p>

<p>
To the broader point communicated by the original statement:
</p>

<p>
We&rsquo;ve all probably had disagreements that seemed irresolvable. Then, after some patient discussion, one person says, &ldquo;You know, I think we&rsquo;re really saying the same thing.&rdquo; We often find that there are many different ways to express the same thought. One way being right does not mean that the others are wrong.
</p>

<p>
Statements also have meaning relative to a linguistic context. We may assume the other is wrong, but we&rsquo;ve just misunderstood the context. For example, one person says that it is 25 degrees outside, but another says that it is -4. Can they both be right? Of course, if they are assuming different temperature scales.
</p>

<p>
So, in cases of disagreement, there are several possibilities:
</p>

<ol class="org-ol">
<li>The disagreement is merely apparent. The parties believe the same thing, but do not understand each other.</li>
<li>The disagreement is genuine, and the issue is such that only one party can be correct.</li>
<li>The disagreement is genuine, but the issue is such that, even though they don&rsquo;t realize it, both parties can be correct.</li>
</ol>

<p>
To know if someone&rsquo;s being right entails that another person is wrong, I have to know facts about the question, the issue, the linguistic context, etc. That&rsquo;s often not very difficult, but sometimes it is very hard. It&rsquo;s important to note that we are always hypothesizing about these things and our assumptions may be wrong. So, in situations of disagreement, maybe we should try to exercise a bit more charity.
</p>

<p>
In the end, then, it is both one person&rsquo;s being right and facts about context that determine if the other person must be wrong. So, the original statement stands, one person&rsquo;s being right is not alone enough to guarantee that another person is wrong. We should certainly seek to be informed, but we should also seek to understand.
</p>



<div class="tagline" id="org1c67cd2">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/critical-thinking.html">Critical-Thinking</a>
</p>

</div>
]]>
</description></item>
<item>
<title>In Offense, Giving Thanks</title>
<link>https://randyridenour.net/posts/2017-09-30-in-offense-giving-thanks.html</link>
<pubDate>Sat, 30 Sep 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-09-30-in-offense-giving-thanks.html</guid>
<description>
<![CDATA[<p>
Holy God,
</p>

<p>
Thank you<br>
for the one<br>
who offends me,<br>
for in offense<br>
my heart is laid bare<br>
and my idols are revealed.
</p>

<p>
My anger declares<br>
the object of my worship.
</p>

<p>
Is it myself,<br>
the empire,<br>
or you?
</p>

<p>
Lord, have mercy.
</p>


<div class="tagline" id="orgb533da4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Advent 4</title>
<link>https://randyridenour.net/posts/2016-12-20-prayer-for-avent-4.html</link>
<pubDate>Tue, 20 Dec 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-12-20-prayer-for-avent-4.html</guid>
<description>
<![CDATA[<p>
Father of Light,
</p>

<p>
The creator of the universe<br>
came to us as a helpless child,<br>
reminding us that there is no<br>
reconciliation without risk<br>
or love without a chance of loss.
</p>

<p>
But we sacrificed peace<br>
on the altar of security,<br>
preferring to remain in darkness<br>
than to venture out into the light,<br>
desiring our kingdom more than yours.
</p>

<p>
Give us the courage<br>
to drop our guard,<br>
and open our lives<br>
both to you and<br>
to one another.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org6abeb2e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>A Prayerful Response</title>
<link>https://randyridenour.net/posts/2015-11-15-a-prayerful-response.html</link>
<pubDate>Sun, 15 Nov 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-11-15-a-prayerful-response.html</guid>
<description>
<![CDATA[<p>
<i>As we mourn for the lives lost this week in Paris, Lord, hear our prayer.</i>
</p>

<p>
Almighty God,
</p>

<p>
We grieve this week,<br>
crying with those who suffer,<br>
lamenting with those who mourn.
</p>

<p>
Even in our anger,<br>
May we always seek justice,<br>
and never revenge;<br>
healing, not harm;<br>
and a measured response,<br>
instead of thoughtless reaction.
</p>

<p>
When circumstances tempt us<br>
to sink into the depths of despair,<br>
may we hear the prophet&rsquo;s voice,<br>
as he surveyed the destruction of Jerusalem<br>
yet still found hope,
</p>

<p>
&ldquo;The steadfast love of the Lord never ceases,<br>
his mercies never come to an end;<br>
they are new every morning,<br>
great is your faithfulness.&rdquo;
</p>

<p>
When faced with the choice<br>
between burning hatred<br>
and callous indifference,<br>
remind us again that there is a third way,<br>
the way of love.
</p>

<p>
And may that love shine so brightly<br>
that the entire world will know,<br>
the light still shines in the darkness,<br>
and the darkness will never defeat it.
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="orgcf12642">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Penn Jillette on Science and Religion</title>
<link>https://randyridenour.net/posts/2015-01-20-penn-jillette-on-science-and-religion.html</link>
<pubDate>Mon, 19 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-20-penn-jillette-on-science-and-religion.html</guid>
<description>
<![CDATA[<p>
<a href="https://www.daringfireball.net">John Gruber</a> recently posted this interesting quote from Penn Jillette, of Penn and Teller fame:
</p>


<blockquote>
<p>
There is no god and that’s the simple truth. If every trace of any single religion died out and nothing were passed on, it would never be created exactly that way again. There might be some other nonsense in its place, but not that exact nonsense. If all of science were wiped out, it would still be true and someone would find a way to figure it all out again.
</p>
</blockquote>

<p class="source">
Penn Jillette<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>


<p>
There is a lot to think about here. Keep in mind that I haven&rsquo;t read the book, but have only seen this single paragraph. Here are my initial thoughts in no particular order.
</p>

<p>
The argument seems to be this: imagine that a body of belief were somehow completely eradicated from human minds. If humans were somehow to replicate this body of belief, then such replication would be evidence in favor of its truth. Failure to replicate the body of belief would be evidence in favor of its falsity.
</p>

<p>
Now, as I often say in class, it&rsquo;s a bit more complicated than this. First, science itself is not a body of belief. It is instead a method of producing beliefs. So, the proposal must be not to &ldquo;wipe out science&rdquo; but instead to eradicate all belief in and memory of all propositions that we consider part of science, that is, claims in physics, biology, chemistry, etc. Then, we should ask if these beliefs would eventually be replicated.
</p>

<p>
I assume that Jillette requires only that current scientific beliefs be replicated. There&rsquo;s no reason why he should require Galen&rsquo;s ideas about physiology and anatomy or Aristotle&rsquo;s physics to be replicated, since they are false. Why believe that current scientific beliefs would be replicated? I guess because Jillette assumes that they are true. Now, only the most radical antirealist would assume that nothing in current science is true, so I&rsquo;ll grant that we have good reason for believing that at least much of current science is in fact true. How much of current scientific belief is true, though? Surely not all of it. As Newtonian mechanics was eventually replaced with relativity theory and quantum mechanics, might there at some point be another theoretical framework that replaces current physics? There&rsquo;s no reason to think that everything science asserts now is true, so there&rsquo;s no reason to think that it would be exactly replicated. So, what is true of religion is also true of science - &ldquo;There might be some other nonsense in its place, but not that exact nonsense.&rdquo;
</p>

<p>
So, if we won&rsquo;t demand exact replication in science, then we shouldn&rsquo;t demand exact replication for religion either. Does that mean that those religious beliefs that would be replicated then should be considered true? I don&rsquo;t find it difficult to believe that the belief that a god exists would find its way back into the human psyche, along with other beliefs about the god&rsquo;s role in causing the universe to be, the demands that the god makes on humans, etc.
</p>

<p>
I suppose that the reply would be that these are individual religious beliefs, what must be replicated is a system of religious belief, and that there&rsquo;s no reason to believe that any current system of religious thought would be replicated. Surely though, there are bodies of religious belief that could easily be replicated. Some minimal deism, for instance, is very likely to be replicated.
</p>

<p>
There is reason why one would think that, if scientific knowledge were somehow eradicated, that we would come to discover those scientific truths again. That is because we think that the method of science is truth-conducive. That is, the scientific method, in the long run, will produce true beliefs and eliminate false beliefs. This is something famously argued by the American pragmatist Charles Sanders Peirce (1839-1914).<sup><a id="fnr.2" class="footref" href="#fn.2" role="doc-backlink">2</a></sup> Now, that doesn&rsquo;t mean that every use of the scientific method produces true belief or eliminates false beliefs. Some people may just not be very good scientists. In other cases, the particular scientists may be very good, but simply have some false background assumptions.<sup><a id="fnr.3" class="footref" href="#fn.3" role="doc-backlink">3</a></sup> The particular beliefs that are true, though, would be replicated if science is truth-conducive. So, would religious beliefs be eventually replicated if they were eradicated? That depends on the means by which such beliefs were produced. If religious beliefs are formed by a truth-conducive method, then there is every reason that they would be. What could be the method that produced my religious beliefs? One possibility is that God gave them to me, and surely that&rsquo;s a truth-conducive method. 
</p>

<p>
So, in the end, Jillette&rsquo;s argument begs the question. That is, he hasn&rsquo;t given us a successful argument that religious belief is false because religious belief would not be replicated. Instead, if he argues successfully for anything, it is that religious belief would not be replicated if all religious belief is false. I grant that the conditional is true, but I haven&rsquo;t been shown any reason why I should grant that all religious belief is false. If one paragraph was this thought-provoking, I&rsquo;m looking forward to reading the rest of the book. 
</p>

<div class="tagline" id="org2306582">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
<a href="http://books.google.com/books?id=KsI3sswEg14C&amp;printsec=frontcover&amp;dq=god+no+penn+jillette&amp;hl=en&amp;sa=X&amp;ei=bHXrTuSJNYnt0gHoqrikCQ&amp;ved=0CDcQ6AEwAA#v=onepage&amp;q=%22that%20exact%20nonsense%22&amp;f=false"><i>God, No!: Signs You May Already Be an Atheist and Other Magical Tales</i></a>  
</p></div></div>

<div class="footdef"><sup><a id="fn.2" class="footnum" href="#fnr.2" role="doc-backlink">2</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Interestingly, Peirce also thought that the method would produce belief in God. I&rsquo;m teaching American philosophy next semester, so I&rsquo;ll likely have a post on Peirce&rsquo;s &ldquo;Neglected Argument.&rdquo;
</p></div></div>

<div class="footdef"><sup><a id="fn.3" class="footnum" href="#fnr.3" role="doc-backlink">3</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
An example is Hertz&rsquo;s early experiment to determine the speed of radio waves.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>A Gift for Us</title>
<link>https://randyridenour.net/posts/2018-12-24-a-gift-for-us.html</link>
<pubDate>Mon, 24 Dec 2018 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2018-12-24-a-gift-for-us.html</guid>
<description>
<![CDATA[<p>
This is a Christmas communion hymn, titled &ldquo;A Gift for Us.&rdquo; I wrote the lyrics last year, and Cheryl Tarter has written some wonderful music for it. It debuts at tonight&rsquo;s candlelight service at NorthHaven Church.<br>
</p>

<p>
Into our darkness, there came a light,<br>
As a babe was born on that holy night;<br>
The angels sang and the shepherds prayed<br>
When the Son of God in a manger lay.<br>
</p>

<p>
As we eat this bread and drink this cup,<br>
We remember that child, a gift for us.<br>
As we eat this bread and drink this cup,<br>
We remember that child, a gift for us.<br>
</p>

<p>
The fullness of God in human form,<br>
Was that night, in Bethlehem born;<br>
Giving up his throne in heaven above,<br>
To teach us to serve, to give, and to love.<br>
</p>

<p>
As we eat this bread and drink this cup,<br>
We remember Jesus, a gift for us.<br>
As we eat this bread and drink this cup,<br>
We remember Jesus, a gift for us.<br>
</p>

<p>
He came to this world, in all its strife,<br>
For our sins, to give his life;<br>
Lifted up, with his arms held wide,<br>
The Son of God was crucified.<br>
</p>

<p>
As we eat this bread and drink this cup,<br>
We remember our Lord, a gift for us.<br>
As we eat this bread and drink this cup,<br>
We remember our Lord, a gift for us.
</p>


<div class="tagline" id="orgbaaebf0">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Planted Church</title>
<link>https://randyridenour.net/posts/2015-09-18-the-planted-church.html</link>
<pubDate>Fri, 18 Sep 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-09-18-the-planted-church.html</guid>
<description>
<![CDATA[<p>
Gracious God, Giver of life,
</p>

<p>
Long ago,<br>
a tree was planted by your grace<br>
and watered by your providential care.
</p>

<p>
It was robbed of<br>
life and beauty,<br>
and used to fashion a cross<br>
to bear body of the Christ,<br>
broken for our redemption.
</p>

<p>
And so, Lord, like that tree,<br>
we have been planted,<br>
watered, and have grown,<br>
yet the time has come for us<br>
to offer our lives to you,<br>
not just to bear,<br>
but to become<br>
the body of Christ<br>
in this world.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org3acb131">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Drawing Closer to God Through Quietness</title>
<link>https://randyridenour.net/posts/2011-03-16-drawing-closer-to-god-through-quietness.html</link>
<pubDate>Wed, 16 Mar 2011 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2011-03-16-drawing-closer-to-god-through-quietness.html</guid>
<description>
<![CDATA[<p>
<a href="http://bit.ly/fdOyco">Jan Chapman</a> compares a Friends&rsquo; meeting with her usual church experience.
</p>



<div class="tagline" id="orgad3bb1e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Good Friday Prayer</title>
<link>https://randyridenour.net/posts/2015-04-03-good-friday-prayer.html</link>
<pubDate>Fri, 03 Apr 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-04-03-good-friday-prayer.html</guid>
<description>
<![CDATA[<p>
Tiny gold crosses<br>
hang from sparkling<br>
gold chains,<br>
signs of<br>
wealth, affluence,<br>
and good taste,<br>
compared to<br>
a large wooden cross<br>
covered in blood,<br>
an instrument of torture,<br>
a symbol designed<br>
to bring terror<br>
to enemies of the state.
</p>

<p>
On this day, Lord,<br>
give me a vision<br>
of the horror of the cross,<br>
for without it<br>
there is no beauty<br>
of the cross.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgcabbbde">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Even Preachers</title>
<link>https://randyridenour.net/posts/2010-07-25-nowhere-is-the-grace-of-god-more-evident-than-in.html</link>
<pubDate>Sun, 25 Jul 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-07-25-nowhere-is-the-grace-of-god-more-evident-than-in.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Nowhere is the grace of God more evident than in the fact that some preachers will be saved.
</p>
</blockquote>

<p class="bigquote">
Karl Barth
</p>


<div class="tagline" id="orgb66a7bc">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Brenner on Brahms</title>
<link>https://randyridenour.net/posts/2009-10-07-like-all-great-art-it-imparts-to-the-audience-a.html</link>
<pubDate>Wed, 07 Oct 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-10-07-like-all-great-art-it-imparts-to-the-audience-a.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Like all great art, it imparts to the audience a profound sense of empathy and belief, as well as a tremendous desire to urinate.
</p>
</blockquote>

<p class="bigquote">
Yoni Brenner, referring to Brahms&rsquo; <b>Symphony No. 2</b><sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>

<div class="tagline" id="orgfe406a4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
<a href="http://www.newyorker.com/humor/2009/10/12/091012sh_shouts_brenner?currentPage=all"><i>The New Yorker</i></a> 
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Should the Church Bear the Welfare Burden?</title>
<link>https://randyridenour.net/posts/2016-07-31-should-the-church-bear-the-welfare-burden.html</link>
<pubDate>Sun, 31 Jul 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-07-31-should-the-church-bear-the-welfare-burden.html</guid>
<description>
<![CDATA[<p>
I should have rather asked if the church <i>alone</i> should bear the burden of providing welfare. There is no doubt that the church, myself included, should bear more of the burden of caring for the poor, for that is just one of the many sacrificial things Jesus calls us to do. The church, though, cannot bear the welfare burden as it is today. Ron Sider, in <i>Just Generosity: A New Vision for Overcoming Poverty in America</i>, estimates that shouldering just the cost of Medicaid would cost each Christian congregation approximately one-half million dollars per year. Note that this includes <i>each</i> congregation, including exceptionally large churches that may well be able to afford the cost, but the median size of a Christian congregation in America is now 75 regular participants.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> So, a family of four in the median-sized congregation would have to shoulder a burden of nearly 27,000 dollars, simply to provide the services now provided by Medicaid. One can only guess at the cost of providing the full level of social services now provided by the government.
</p>

<p>
This does not mean that the church should not be developing creative ways of caring for those that Jesus and the prophets called &ldquo;the least of these.&rdquo; It does mean, though, that the church taking on more of a burden<sup><a id="fnr.2" class="footref" href="#fn.2" role="doc-backlink">2</a></sup> does not relieve the state, nor the rest of the country, from sharing that burden. In Psalm 72, a prayer for guidance for the king, Scripture describes God&rsquo;s hope for the one who leads the state: &ldquo;May he defend the cause of the poor of the people, give deliverance to the needy, and crush the oppressor.&rdquo; To allow the state to shirk its responsibility for caring the poor means that the state will no longer fulfill its God-given role of crushing the oppressor, but instead allows the state to become the oppressor — surely not something to which a government of the people should aspire.
</p>

<div class="tagline" id="org80a736e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
<a href="http://hirr.hartsem.edu/research/fastfacts/fast_facts.html#sizecong">Hartford Institute for Religion Research</a>
</p></div></div>

<div class="footdef"><sup><a id="fn.2" class="footnum" href="#fnr.2" role="doc-backlink">2</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
&ldquo;Burden&rdquo; is not the right word to use here. Caring for one another should be a joy. That we see it as a burden is a sin for which we will have to repent.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Math Test</title>
<link>https://randyridenour.net/posts/2015-01-17-math-test.html</link>
<pubDate>Sat, 17 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-17-math-test.html</guid>
<description>
<![CDATA[<section id="outline-container-org8130325" class="outline-2">
<h2 id="org8130325">Bayes&rsquo; Theorem</h2>
<div class="outline-text-2" id="text-org8130325">
<p>

<math xmlns="http://www.w3.org/1998/Math/MathML" id="S0.Ex1.m1.20" class="ltx_Math" alttext="\Pr(A|B)=\frac{\Pr(A)\times\Pr(B|A)}{\Pr(B)}=\frac{\Pr(A)\times\Pr(B|A)}{\Pr(A%&#10;)\times\Pr(B|A)+\Pr(\neg A)\times\Pr(B|\neg A)}" display="block">
  <semantics id="S0.Ex1.m1.20a">
    <mrow id="S0.Ex1.m1.20.20" xref="S0.Ex1.m1.20.20.cmml">
      <mrow id="S0.Ex1.m1.20.20.1.1" xref="S0.Ex1.m1.20.20.1.2.cmml">
        <mi id="S0.Ex1.m1.19.19" xref="S0.Ex1.m1.19.19.cmml">Pr</mi>
        <mo id="S0.Ex1.m1.20.20.1.1a" xref="S0.Ex1.m1.20.20.1.2.cmml">⁡</mo>
        <mrow id="S0.Ex1.m1.20.20.1.1.1" xref="S0.Ex1.m1.20.20.1.2.cmml">
          <mo stretchy="false" id="S0.Ex1.m1.20.20.1.1.1.2" xref="S0.Ex1.m1.20.20.1.2.cmml">(</mo>
          <mrow id="S0.Ex1.m1.20.20.1.1.1.1" xref="S0.Ex1.m1.20.20.1.1.1.1.cmml">
            <mi id="S0.Ex1.m1.20.20.1.1.1.1.2" xref="S0.Ex1.m1.20.20.1.1.1.1.2.cmml">A</mi>
            <mo fence="false" id="S0.Ex1.m1.20.20.1.1.1.1.1" xref="S0.Ex1.m1.20.20.1.1.1.1.1.cmml">|</mo>
            <mi id="S0.Ex1.m1.20.20.1.1.1.1.3" xref="S0.Ex1.m1.20.20.1.1.1.1.3.cmml">B</mi>
          </mrow>
          <mo stretchy="false" id="S0.Ex1.m1.20.20.1.1.1.3" xref="S0.Ex1.m1.20.20.1.2.cmml">)</mo>
        </mrow>
      </mrow>
      <mo id="S0.Ex1.m1.20.20.3" xref="S0.Ex1.m1.20.20.3.cmml">=</mo>
      <mfrac id="S0.Ex1.m1.6.6" xref="S0.Ex1.m1.6.6.cmml">
        <mrow id="S0.Ex1.m1.4.4.4" xref="S0.Ex1.m1.4.4.4.cmml">
          <mrow id="S0.Ex1.m1.4.4.4.6.2" xref="S0.Ex1.m1.4.4.4.6.1.cmml">
            <mi id="S0.Ex1.m1.1.1.1.1" xref="S0.Ex1.m1.1.1.1.1.cmml">Pr</mi>
            <mo id="S0.Ex1.m1.4.4.4.6.2a" xref="S0.Ex1.m1.4.4.4.6.1.cmml">⁡</mo>
            <mrow id="S0.Ex1.m1.4.4.4.6.2.1" xref="S0.Ex1.m1.4.4.4.6.1.cmml">
              <mo stretchy="false" id="S0.Ex1.m1.4.4.4.6.2.1.1" xref="S0.Ex1.m1.4.4.4.6.1.cmml">(</mo>
              <mi id="S0.Ex1.m1.2.2.2.2" xref="S0.Ex1.m1.2.2.2.2.cmml">A</mi>
              <mo rspace="0.055em" stretchy="false" id="S0.Ex1.m1.4.4.4.6.2.1.2" xref="S0.Ex1.m1.4.4.4.6.1.cmml">)</mo>
            </mrow>
          </mrow>
          <mo rspace="0.222em" id="S0.Ex1.m1.4.4.4.5" xref="S0.Ex1.m1.4.4.4.5.cmml">×</mo>
          <mrow id="S0.Ex1.m1.4.4.4.4.1" xref="S0.Ex1.m1.4.4.4.4.2.cmml">
            <mi id="S0.Ex1.m1.3.3.3.3" xref="S0.Ex1.m1.3.3.3.3.cmml">Pr</mi>
            <mo id="S0.Ex1.m1.4.4.4.4.1a" xref="S0.Ex1.m1.4.4.4.4.2.cmml">⁡</mo>
            <mrow id="S0.Ex1.m1.4.4.4.4.1.1" xref="S0.Ex1.m1.4.4.4.4.2.cmml">
              <mo stretchy="false" id="S0.Ex1.m1.4.4.4.4.1.1.2" xref="S0.Ex1.m1.4.4.4.4.2.cmml">(</mo>
              <mrow id="S0.Ex1.m1.4.4.4.4.1.1.1" xref="S0.Ex1.m1.4.4.4.4.1.1.1.cmml">
                <mi id="S0.Ex1.m1.4.4.4.4.1.1.1.2" xref="S0.Ex1.m1.4.4.4.4.1.1.1.2.cmml">B</mi>
                <mo fence="false" id="S0.Ex1.m1.4.4.4.4.1.1.1.1" xref="S0.Ex1.m1.4.4.4.4.1.1.1.1.cmml">|</mo>
                <mi id="S0.Ex1.m1.4.4.4.4.1.1.1.3" xref="S0.Ex1.m1.4.4.4.4.1.1.1.3.cmml">A</mi>
              </mrow>
              <mo stretchy="false" id="S0.Ex1.m1.4.4.4.4.1.1.3" xref="S0.Ex1.m1.4.4.4.4.2.cmml">)</mo>
            </mrow>
          </mrow>
        </mrow>
        <mrow id="S0.Ex1.m1.6.6.6.4" xref="S0.Ex1.m1.6.6.6.3.cmml">
          <mi id="S0.Ex1.m1.5.5.5.1" xref="S0.Ex1.m1.5.5.5.1.cmml">Pr</mi>
          <mo id="S0.Ex1.m1.6.6.6.4a" xref="S0.Ex1.m1.6.6.6.3.cmml">⁡</mo>
          <mrow id="S0.Ex1.m1.6.6.6.4.1" xref="S0.Ex1.m1.6.6.6.3.cmml">
            <mo stretchy="false" id="S0.Ex1.m1.6.6.6.4.1.1" xref="S0.Ex1.m1.6.6.6.3.cmml">(</mo>
            <mi id="S0.Ex1.m1.6.6.6.2" xref="S0.Ex1.m1.6.6.6.2.cmml">B</mi>
            <mo stretchy="false" id="S0.Ex1.m1.6.6.6.4.1.2" xref="S0.Ex1.m1.6.6.6.3.cmml">)</mo>
          </mrow>
        </mrow>
      </mfrac>
      <mo id="S0.Ex1.m1.20.20.4" xref="S0.Ex1.m1.20.20.4.cmml">=</mo>
      <mfrac id="S0.Ex1.m1.18.18" xref="S0.Ex1.m1.18.18.cmml">
        <mrow id="S0.Ex1.m1.10.10.4" xref="S0.Ex1.m1.10.10.4.cmml">
          <mrow id="S0.Ex1.m1.10.10.4.6.2" xref="S0.Ex1.m1.10.10.4.6.1.cmml">
            <mi id="S0.Ex1.m1.7.7.1.1" xref="S0.Ex1.m1.7.7.1.1.cmml">Pr</mi>
            <mo id="S0.Ex1.m1.10.10.4.6.2a" xref="S0.Ex1.m1.10.10.4.6.1.cmml">⁡</mo>
            <mrow id="S0.Ex1.m1.10.10.4.6.2.1" xref="S0.Ex1.m1.10.10.4.6.1.cmml">
              <mo stretchy="false" id="S0.Ex1.m1.10.10.4.6.2.1.1" xref="S0.Ex1.m1.10.10.4.6.1.cmml">(</mo>
              <mi id="S0.Ex1.m1.8.8.2.2" xref="S0.Ex1.m1.8.8.2.2.cmml">A</mi>
              <mo rspace="0.055em" stretchy="false" id="S0.Ex1.m1.10.10.4.6.2.1.2" xref="S0.Ex1.m1.10.10.4.6.1.cmml">)</mo>
            </mrow>
          </mrow>
          <mo rspace="0.222em" id="S0.Ex1.m1.10.10.4.5" xref="S0.Ex1.m1.10.10.4.5.cmml">×</mo>
          <mrow id="S0.Ex1.m1.10.10.4.4.1" xref="S0.Ex1.m1.10.10.4.4.2.cmml">
            <mi id="S0.Ex1.m1.9.9.3.3" xref="S0.Ex1.m1.9.9.3.3.cmml">Pr</mi>
            <mo id="S0.Ex1.m1.10.10.4.4.1a" xref="S0.Ex1.m1.10.10.4.4.2.cmml">⁡</mo>
            <mrow id="S0.Ex1.m1.10.10.4.4.1.1" xref="S0.Ex1.m1.10.10.4.4.2.cmml">
              <mo stretchy="false" id="S0.Ex1.m1.10.10.4.4.1.1.2" xref="S0.Ex1.m1.10.10.4.4.2.cmml">(</mo>
              <mrow id="S0.Ex1.m1.10.10.4.4.1.1.1" xref="S0.Ex1.m1.10.10.4.4.1.1.1.cmml">
                <mi id="S0.Ex1.m1.10.10.4.4.1.1.1.2" xref="S0.Ex1.m1.10.10.4.4.1.1.1.2.cmml">B</mi>
                <mo fence="false" id="S0.Ex1.m1.10.10.4.4.1.1.1.1" xref="S0.Ex1.m1.10.10.4.4.1.1.1.1.cmml">|</mo>
                <mi id="S0.Ex1.m1.10.10.4.4.1.1.1.3" xref="S0.Ex1.m1.10.10.4.4.1.1.1.3.cmml">A</mi>
              </mrow>
              <mo stretchy="false" id="S0.Ex1.m1.10.10.4.4.1.1.3" xref="S0.Ex1.m1.10.10.4.4.2.cmml">)</mo>
            </mrow>
          </mrow>
        </mrow>
        <mrow id="S0.Ex1.m1.18.18.12" xref="S0.Ex1.m1.18.18.12.cmml">
          <mrow id="S0.Ex1.m1.16.16.10.6" xref="S0.Ex1.m1.16.16.10.6.cmml">
            <mrow id="S0.Ex1.m1.16.16.10.6.3.2" xref="S0.Ex1.m1.16.16.10.6.3.1.cmml">
              <mi id="S0.Ex1.m1.11.11.5.1" xref="S0.Ex1.m1.11.11.5.1.cmml">Pr</mi>
              <mo id="S0.Ex1.m1.16.16.10.6.3.2a" xref="S0.Ex1.m1.16.16.10.6.3.1.cmml">⁡</mo>
              <mrow id="S0.Ex1.m1.16.16.10.6.3.2.1" xref="S0.Ex1.m1.16.16.10.6.3.1.cmml">
                <mo stretchy="false" id="S0.Ex1.m1.16.16.10.6.3.2.1.1" xref="S0.Ex1.m1.16.16.10.6.3.1.cmml">(</mo>
                <mi id="S0.Ex1.m1.12.12.6.2" xref="S0.Ex1.m1.12.12.6.2.cmml">A</mi>
                <mo rspace="0.055em" stretchy="false" id="S0.Ex1.m1.16.16.10.6.3.2.1.2" xref="S0.Ex1.m1.16.16.10.6.3.1.cmml">)</mo>
              </mrow>
            </mrow>
            <mo rspace="0.222em" id="S0.Ex1.m1.16.16.10.6.2" xref="S0.Ex1.m1.16.16.10.6.2.cmml">×</mo>
            <mrow id="S0.Ex1.m1.16.16.10.6.1.1" xref="S0.Ex1.m1.16.16.10.6.1.2.cmml">
              <mi id="S0.Ex1.m1.13.13.7.3" xref="S0.Ex1.m1.13.13.7.3.cmml">Pr</mi>
              <mo id="S0.Ex1.m1.16.16.10.6.1.1a" xref="S0.Ex1.m1.16.16.10.6.1.2.cmml">⁡</mo>
              <mrow id="S0.Ex1.m1.16.16.10.6.1.1.1" xref="S0.Ex1.m1.16.16.10.6.1.2.cmml">
                <mo stretchy="false" id="S0.Ex1.m1.16.16.10.6.1.1.1.2" xref="S0.Ex1.m1.16.16.10.6.1.2.cmml">(</mo>
                <mrow id="S0.Ex1.m1.16.16.10.6.1.1.1.1" xref="S0.Ex1.m1.16.16.10.6.1.1.1.1.cmml">
                  <mi id="S0.Ex1.m1.16.16.10.6.1.1.1.1.2" xref="S0.Ex1.m1.16.16.10.6.1.1.1.1.2.cmml">B</mi>
                  <mo fence="false" id="S0.Ex1.m1.16.16.10.6.1.1.1.1.1" xref="S0.Ex1.m1.16.16.10.6.1.1.1.1.1.cmml">|</mo>
                  <mi id="S0.Ex1.m1.16.16.10.6.1.1.1.1.3" xref="S0.Ex1.m1.16.16.10.6.1.1.1.1.3.cmml">A</mi>
                </mrow>
                <mo stretchy="false" id="S0.Ex1.m1.16.16.10.6.1.1.1.3" xref="S0.Ex1.m1.16.16.10.6.1.2.cmml">)</mo>
              </mrow>
            </mrow>
          </mrow>
          <mo id="S0.Ex1.m1.18.18.12.9" xref="S0.Ex1.m1.18.18.12.9.cmml">+</mo>
          <mrow id="S0.Ex1.m1.18.18.12.8" xref="S0.Ex1.m1.18.18.12.8.cmml">
            <mrow id="S0.Ex1.m1.17.17.11.7.1.1" xref="S0.Ex1.m1.17.17.11.7.1.2.cmml">
              <mi id="S0.Ex1.m1.14.14.8.4" xref="S0.Ex1.m1.14.14.8.4.cmml">Pr</mi>
              <mo id="S0.Ex1.m1.17.17.11.7.1.1a" xref="S0.Ex1.m1.17.17.11.7.1.2.cmml">⁡</mo>
              <mrow id="S0.Ex1.m1.17.17.11.7.1.1.1" xref="S0.Ex1.m1.17.17.11.7.1.2.cmml">
                <mo stretchy="false" id="S0.Ex1.m1.17.17.11.7.1.1.1.2" xref="S0.Ex1.m1.17.17.11.7.1.2.cmml">(</mo>
                <mrow id="S0.Ex1.m1.17.17.11.7.1.1.1.1" xref="S0.Ex1.m1.17.17.11.7.1.1.1.1.cmml">
                  <mo rspace="0.167em" id="S0.Ex1.m1.17.17.11.7.1.1.1.1.1" xref="S0.Ex1.m1.17.17.11.7.1.1.1.1.1.cmml">¬</mo>
                  <mi id="S0.Ex1.m1.17.17.11.7.1.1.1.1.2" xref="S0.Ex1.m1.17.17.11.7.1.1.1.1.2.cmml">A</mi>
                </mrow>
                <mo rspace="0.055em" stretchy="false" id="S0.Ex1.m1.17.17.11.7.1.1.1.3" xref="S0.Ex1.m1.17.17.11.7.1.2.cmml">)</mo>
              </mrow>
            </mrow>
            <mo rspace="0.222em" id="S0.Ex1.m1.18.18.12.8.3" xref="S0.Ex1.m1.18.18.12.8.3.cmml">×</mo>
            <mrow id="S0.Ex1.m1.18.18.12.8.2.1" xref="S0.Ex1.m1.18.18.12.8.2.2.cmml">
              <mi id="S0.Ex1.m1.15.15.9.5" xref="S0.Ex1.m1.15.15.9.5.cmml">Pr</mi>
              <mo id="S0.Ex1.m1.18.18.12.8.2.1a" xref="S0.Ex1.m1.18.18.12.8.2.2.cmml">⁡</mo>
              <mrow id="S0.Ex1.m1.18.18.12.8.2.1.1" xref="S0.Ex1.m1.18.18.12.8.2.2.cmml">
                <mo stretchy="false" id="S0.Ex1.m1.18.18.12.8.2.1.1.2" xref="S0.Ex1.m1.18.18.12.8.2.2.cmml">(</mo>
                <mrow id="S0.Ex1.m1.18.18.12.8.2.1.1.1" xref="S0.Ex1.m1.18.18.12.8.2.1.1.1.cmml">
                  <mi id="S0.Ex1.m1.18.18.12.8.2.1.1.1.2" xref="S0.Ex1.m1.18.18.12.8.2.1.1.1.2.cmml">B</mi>
                  <mo fence="false" id="S0.Ex1.m1.18.18.12.8.2.1.1.1.1" xref="S0.Ex1.m1.18.18.12.8.2.1.1.1.1.cmml">|</mo>
                  <mrow id="S0.Ex1.m1.18.18.12.8.2.1.1.1.3" xref="S0.Ex1.m1.18.18.12.8.2.1.1.1.3.cmml">
                    <mo rspace="0.167em" id="S0.Ex1.m1.18.18.12.8.2.1.1.1.3.1" xref="S0.Ex1.m1.18.18.12.8.2.1.1.1.3.1.cmml">¬</mo>
                    <mi id="S0.Ex1.m1.18.18.12.8.2.1.1.1.3.2" xref="S0.Ex1.m1.18.18.12.8.2.1.1.1.3.2.cmml">A</mi>
                  </mrow>
                </mrow>
                <mo stretchy="false" id="S0.Ex1.m1.18.18.12.8.2.1.1.3" xref="S0.Ex1.m1.18.18.12.8.2.2.cmml">)</mo>
              </mrow>
            </mrow>
          </mrow>
        </mrow>
      </mfrac>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="S0.Ex1.m1.20b">
      <apply id="S0.Ex1.m1.20.20.cmml" xref="S0.Ex1.m1.20.20">
        <and id="S0.Ex1.m1.20.20a.cmml" xref="S0.Ex1.m1.20.20"/>
        <apply id="S0.Ex1.m1.20.20b.cmml" xref="S0.Ex1.m1.20.20">
          <eq id="S0.Ex1.m1.20.20.3.cmml" xref="S0.Ex1.m1.20.20.3"/>
          <apply id="S0.Ex1.m1.20.20.1.2.cmml" xref="S0.Ex1.m1.20.20.1.1">
            <ci id="S0.Ex1.m1.19.19.cmml" xref="S0.Ex1.m1.19.19">Pr</ci>
            <apply id="S0.Ex1.m1.20.20.1.1.1.1.cmml" xref="S0.Ex1.m1.20.20.1.1.1.1">
              <csymbol cd="latexml" id="S0.Ex1.m1.20.20.1.1.1.1.1.cmml" xref="S0.Ex1.m1.20.20.1.1.1.1.1">conditional</csymbol>
              <ci id="S0.Ex1.m1.20.20.1.1.1.1.2.cmml" xref="S0.Ex1.m1.20.20.1.1.1.1.2">𝐴</ci>
              <ci id="S0.Ex1.m1.20.20.1.1.1.1.3.cmml" xref="S0.Ex1.m1.20.20.1.1.1.1.3">𝐵</ci>
            </apply>
          </apply>
          <apply id="S0.Ex1.m1.6.6.cmml" xref="S0.Ex1.m1.6.6">
            <divide id="S0.Ex1.m1.6.6.7.cmml" xref="S0.Ex1.m1.6.6"/>
            <apply id="S0.Ex1.m1.4.4.4.cmml" xref="S0.Ex1.m1.4.4.4">
              <times id="S0.Ex1.m1.4.4.4.5.cmml" xref="S0.Ex1.m1.4.4.4.5"/>
              <apply id="S0.Ex1.m1.4.4.4.6.1.cmml" xref="S0.Ex1.m1.4.4.4.6.2">
                <ci id="S0.Ex1.m1.1.1.1.1.cmml" xref="S0.Ex1.m1.1.1.1.1">Pr</ci>
                <ci id="S0.Ex1.m1.2.2.2.2.cmml" xref="S0.Ex1.m1.2.2.2.2">𝐴</ci>
              </apply>
              <apply id="S0.Ex1.m1.4.4.4.4.2.cmml" xref="S0.Ex1.m1.4.4.4.4.1">
                <ci id="S0.Ex1.m1.3.3.3.3.cmml" xref="S0.Ex1.m1.3.3.3.3">Pr</ci>
                <apply id="S0.Ex1.m1.4.4.4.4.1.1.1.cmml" xref="S0.Ex1.m1.4.4.4.4.1.1.1">
                  <csymbol cd="latexml" id="S0.Ex1.m1.4.4.4.4.1.1.1.1.cmml" xref="S0.Ex1.m1.4.4.4.4.1.1.1.1">conditional</csymbol>
                  <ci id="S0.Ex1.m1.4.4.4.4.1.1.1.2.cmml" xref="S0.Ex1.m1.4.4.4.4.1.1.1.2">𝐵</ci>
                  <ci id="S0.Ex1.m1.4.4.4.4.1.1.1.3.cmml" xref="S0.Ex1.m1.4.4.4.4.1.1.1.3">𝐴</ci>
                </apply>
              </apply>
            </apply>
            <apply id="S0.Ex1.m1.6.6.6.3.cmml" xref="S0.Ex1.m1.6.6.6.4">
              <ci id="S0.Ex1.m1.5.5.5.1.cmml" xref="S0.Ex1.m1.5.5.5.1">Pr</ci>
              <ci id="S0.Ex1.m1.6.6.6.2.cmml" xref="S0.Ex1.m1.6.6.6.2">𝐵</ci>
            </apply>
          </apply>
        </apply>
        <apply id="S0.Ex1.m1.20.20c.cmml" xref="S0.Ex1.m1.20.20">
          <eq id="S0.Ex1.m1.20.20.4.cmml" xref="S0.Ex1.m1.20.20.4"/>
          <share href="#S0.Ex1.m1.6.6.cmml" id="S0.Ex1.m1.20.20d.cmml" xref="S0.Ex1.m1.20.20"/>
          <apply id="S0.Ex1.m1.18.18.cmml" xref="S0.Ex1.m1.18.18">
            <divide id="S0.Ex1.m1.18.18.13.cmml" xref="S0.Ex1.m1.18.18"/>
            <apply id="S0.Ex1.m1.10.10.4.cmml" xref="S0.Ex1.m1.10.10.4">
              <times id="S0.Ex1.m1.10.10.4.5.cmml" xref="S0.Ex1.m1.10.10.4.5"/>
              <apply id="S0.Ex1.m1.10.10.4.6.1.cmml" xref="S0.Ex1.m1.10.10.4.6.2">
                <ci id="S0.Ex1.m1.7.7.1.1.cmml" xref="S0.Ex1.m1.7.7.1.1">Pr</ci>
                <ci id="S0.Ex1.m1.8.8.2.2.cmml" xref="S0.Ex1.m1.8.8.2.2">𝐴</ci>
              </apply>
              <apply id="S0.Ex1.m1.10.10.4.4.2.cmml" xref="S0.Ex1.m1.10.10.4.4.1">
                <ci id="S0.Ex1.m1.9.9.3.3.cmml" xref="S0.Ex1.m1.9.9.3.3">Pr</ci>
                <apply id="S0.Ex1.m1.10.10.4.4.1.1.1.cmml" xref="S0.Ex1.m1.10.10.4.4.1.1.1">
                  <csymbol cd="latexml" id="S0.Ex1.m1.10.10.4.4.1.1.1.1.cmml" xref="S0.Ex1.m1.10.10.4.4.1.1.1.1">conditional</csymbol>
                  <ci id="S0.Ex1.m1.10.10.4.4.1.1.1.2.cmml" xref="S0.Ex1.m1.10.10.4.4.1.1.1.2">𝐵</ci>
                  <ci id="S0.Ex1.m1.10.10.4.4.1.1.1.3.cmml" xref="S0.Ex1.m1.10.10.4.4.1.1.1.3">𝐴</ci>
                </apply>
              </apply>
            </apply>
            <apply id="S0.Ex1.m1.18.18.12.cmml" xref="S0.Ex1.m1.18.18.12">
              <plus id="S0.Ex1.m1.18.18.12.9.cmml" xref="S0.Ex1.m1.18.18.12.9"/>
              <apply id="S0.Ex1.m1.16.16.10.6.cmml" xref="S0.Ex1.m1.16.16.10.6">
                <times id="S0.Ex1.m1.16.16.10.6.2.cmml" xref="S0.Ex1.m1.16.16.10.6.2"/>
                <apply id="S0.Ex1.m1.16.16.10.6.3.1.cmml" xref="S0.Ex1.m1.16.16.10.6.3.2">
                  <ci id="S0.Ex1.m1.11.11.5.1.cmml" xref="S0.Ex1.m1.11.11.5.1">Pr</ci>
                  <ci id="S0.Ex1.m1.12.12.6.2.cmml" xref="S0.Ex1.m1.12.12.6.2">𝐴</ci>
                </apply>
                <apply id="S0.Ex1.m1.16.16.10.6.1.2.cmml" xref="S0.Ex1.m1.16.16.10.6.1.1">
                  <ci id="S0.Ex1.m1.13.13.7.3.cmml" xref="S0.Ex1.m1.13.13.7.3">Pr</ci>
                  <apply id="S0.Ex1.m1.16.16.10.6.1.1.1.1.cmml" xref="S0.Ex1.m1.16.16.10.6.1.1.1.1">
                    <csymbol cd="latexml" id="S0.Ex1.m1.16.16.10.6.1.1.1.1.1.cmml" xref="S0.Ex1.m1.16.16.10.6.1.1.1.1.1">conditional</csymbol>
                    <ci id="S0.Ex1.m1.16.16.10.6.1.1.1.1.2.cmml" xref="S0.Ex1.m1.16.16.10.6.1.1.1.1.2">𝐵</ci>
                    <ci id="S0.Ex1.m1.16.16.10.6.1.1.1.1.3.cmml" xref="S0.Ex1.m1.16.16.10.6.1.1.1.1.3">𝐴</ci>
                  </apply>
                </apply>
              </apply>
              <apply id="S0.Ex1.m1.18.18.12.8.cmml" xref="S0.Ex1.m1.18.18.12.8">
                <times id="S0.Ex1.m1.18.18.12.8.3.cmml" xref="S0.Ex1.m1.18.18.12.8.3"/>
                <apply id="S0.Ex1.m1.17.17.11.7.1.2.cmml" xref="S0.Ex1.m1.17.17.11.7.1.1">
                  <ci id="S0.Ex1.m1.14.14.8.4.cmml" xref="S0.Ex1.m1.14.14.8.4">Pr</ci>
                  <apply id="S0.Ex1.m1.17.17.11.7.1.1.1.1.cmml" xref="S0.Ex1.m1.17.17.11.7.1.1.1.1">
                    <not id="S0.Ex1.m1.17.17.11.7.1.1.1.1.1.cmml" xref="S0.Ex1.m1.17.17.11.7.1.1.1.1.1"/>
                    <ci id="S0.Ex1.m1.17.17.11.7.1.1.1.1.2.cmml" xref="S0.Ex1.m1.17.17.11.7.1.1.1.1.2">𝐴</ci>
                  </apply>
                </apply>
                <apply id="S0.Ex1.m1.18.18.12.8.2.2.cmml" xref="S0.Ex1.m1.18.18.12.8.2.1">
                  <ci id="S0.Ex1.m1.15.15.9.5.cmml" xref="S0.Ex1.m1.15.15.9.5">Pr</ci>
                  <apply id="S0.Ex1.m1.18.18.12.8.2.1.1.1.cmml" xref="S0.Ex1.m1.18.18.12.8.2.1.1.1">
                    <csymbol cd="latexml" id="S0.Ex1.m1.18.18.12.8.2.1.1.1.1.cmml" xref="S0.Ex1.m1.18.18.12.8.2.1.1.1.1">conditional</csymbol>
                    <ci id="S0.Ex1.m1.18.18.12.8.2.1.1.1.2.cmml" xref="S0.Ex1.m1.18.18.12.8.2.1.1.1.2">𝐵</ci>
                    <apply id="S0.Ex1.m1.18.18.12.8.2.1.1.1.3.cmml" xref="S0.Ex1.m1.18.18.12.8.2.1.1.1.3">
                      <not id="S0.Ex1.m1.18.18.12.8.2.1.1.1.3.1.cmml" xref="S0.Ex1.m1.18.18.12.8.2.1.1.1.3.1"/>
                      <ci id="S0.Ex1.m1.18.18.12.8.2.1.1.1.3.2.cmml" xref="S0.Ex1.m1.18.18.12.8.2.1.1.1.3.2">𝐴</ci>
                    </apply>
                  </apply>
                </apply>
              </apply>
            </apply>
          </apply>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="S0.Ex1.m1.20c">\Pr(A|B)=\frac{\Pr(A)\times\Pr(B|A)}{\Pr(B)}=\frac{\Pr(A)\times\Pr(B|A)}{\Pr(A%
)\times\Pr(B|A)+\Pr(\neg A)\times\Pr(B|\neg A)}</annotation>
  </semantics>
</math>

</p>
</div>
</section>
<section id="outline-container-orgfe2517c" class="outline-2">
<h2 id="orgfe2517c">Array</h2>
<div class="outline-text-2" id="text-orgfe2517c">
<p>

<math xmlns="http://www.w3.org/1998/Math/MathML" id="S0.Ex1.m1.1" class="ltx_Math" alttext="\left[\begin{array}[]{ccc}\lambda-a&amp;-b&amp;-c\\&#10;-d&amp;\lambda-e&amp;-f\\&#10;-g&amp;-h&amp;\lambda-i\end{array}\right]" display="block">
  <semantics id="S0.Ex1.m1.1a">
    <mrow id="S0.Ex1.m1.1.2.2" xref="S0.Ex1.m1.1.2.1.cmml">
      <mo id="S0.Ex1.m1.1.2.2.1" xref="S0.Ex1.m1.1.2.1.1.cmml">[</mo>
      <mtable columnspacing="5pt" displaystyle="true" rowspacing="0pt" id="S0.Ex1.m1.1.1" xref="S0.Ex1.m1.1.1.cmml">
        <mtr id="S0.Ex1.m1.1.1a" xref="S0.Ex1.m1.1.1.cmml">
          <mtd id="S0.Ex1.m1.1.1b" xref="S0.Ex1.m1.1.1.cmml">
            <mrow id="S0.Ex1.m1.1.1.1.1.1" xref="S0.Ex1.m1.1.1.1.1.1.cmml">
              <mi id="S0.Ex1.m1.1.1.1.1.1.2" xref="S0.Ex1.m1.1.1.1.1.1.2.cmml">λ</mi>
              <mo id="S0.Ex1.m1.1.1.1.1.1.1" xref="S0.Ex1.m1.1.1.1.1.1.1.cmml">−</mo>
              <mi id="S0.Ex1.m1.1.1.1.1.1.3" xref="S0.Ex1.m1.1.1.1.1.1.3.cmml">a</mi>
            </mrow>
          </mtd>
          <mtd id="S0.Ex1.m1.1.1c" xref="S0.Ex1.m1.1.1.cmml">
            <mrow id="S0.Ex1.m1.1.1.1.2.1" xref="S0.Ex1.m1.1.1.1.2.1.cmml">
              <mo id="S0.Ex1.m1.1.1.1.2.1a" xref="S0.Ex1.m1.1.1.1.2.1.cmml">−</mo>
              <mi id="S0.Ex1.m1.1.1.1.2.1.2" xref="S0.Ex1.m1.1.1.1.2.1.2.cmml">b</mi>
            </mrow>
          </mtd>
          <mtd id="S0.Ex1.m1.1.1d" xref="S0.Ex1.m1.1.1.cmml">
            <mrow id="S0.Ex1.m1.1.1.1.3.1" xref="S0.Ex1.m1.1.1.1.3.1.cmml">
              <mo id="S0.Ex1.m1.1.1.1.3.1a" xref="S0.Ex1.m1.1.1.1.3.1.cmml">−</mo>
              <mi id="S0.Ex1.m1.1.1.1.3.1.2" xref="S0.Ex1.m1.1.1.1.3.1.2.cmml">c</mi>
            </mrow>
          </mtd>
        </mtr>
        <mtr id="S0.Ex1.m1.1.1e" xref="S0.Ex1.m1.1.1.cmml">
          <mtd id="S0.Ex1.m1.1.1f" xref="S0.Ex1.m1.1.1.cmml">
            <mrow id="S0.Ex1.m1.1.1.2.1.1" xref="S0.Ex1.m1.1.1.2.1.1.cmml">
              <mo id="S0.Ex1.m1.1.1.2.1.1a" xref="S0.Ex1.m1.1.1.2.1.1.cmml">−</mo>
              <mi id="S0.Ex1.m1.1.1.2.1.1.2" xref="S0.Ex1.m1.1.1.2.1.1.2.cmml">d</mi>
            </mrow>
          </mtd>
          <mtd id="S0.Ex1.m1.1.1g" xref="S0.Ex1.m1.1.1.cmml">
            <mrow id="S0.Ex1.m1.1.1.2.2.1" xref="S0.Ex1.m1.1.1.2.2.1.cmml">
              <mi id="S0.Ex1.m1.1.1.2.2.1.2" xref="S0.Ex1.m1.1.1.2.2.1.2.cmml">λ</mi>
              <mo id="S0.Ex1.m1.1.1.2.2.1.1" xref="S0.Ex1.m1.1.1.2.2.1.1.cmml">−</mo>
              <mi id="S0.Ex1.m1.1.1.2.2.1.3" xref="S0.Ex1.m1.1.1.2.2.1.3.cmml">e</mi>
            </mrow>
          </mtd>
          <mtd id="S0.Ex1.m1.1.1h" xref="S0.Ex1.m1.1.1.cmml">
            <mrow id="S0.Ex1.m1.1.1.2.3.1" xref="S0.Ex1.m1.1.1.2.3.1.cmml">
              <mo id="S0.Ex1.m1.1.1.2.3.1a" xref="S0.Ex1.m1.1.1.2.3.1.cmml">−</mo>
              <mi id="S0.Ex1.m1.1.1.2.3.1.2" xref="S0.Ex1.m1.1.1.2.3.1.2.cmml">f</mi>
            </mrow>
          </mtd>
        </mtr>
        <mtr id="S0.Ex1.m1.1.1i" xref="S0.Ex1.m1.1.1.cmml">
          <mtd id="S0.Ex1.m1.1.1j" xref="S0.Ex1.m1.1.1.cmml">
            <mrow id="S0.Ex1.m1.1.1.3.1.1" xref="S0.Ex1.m1.1.1.3.1.1.cmml">
              <mo id="S0.Ex1.m1.1.1.3.1.1a" xref="S0.Ex1.m1.1.1.3.1.1.cmml">−</mo>
              <mi id="S0.Ex1.m1.1.1.3.1.1.2" xref="S0.Ex1.m1.1.1.3.1.1.2.cmml">g</mi>
            </mrow>
          </mtd>
          <mtd id="S0.Ex1.m1.1.1k" xref="S0.Ex1.m1.1.1.cmml">
            <mrow id="S0.Ex1.m1.1.1.3.2.1" xref="S0.Ex1.m1.1.1.3.2.1.cmml">
              <mo id="S0.Ex1.m1.1.1.3.2.1a" xref="S0.Ex1.m1.1.1.3.2.1.cmml">−</mo>
              <mi id="S0.Ex1.m1.1.1.3.2.1.2" xref="S0.Ex1.m1.1.1.3.2.1.2.cmml">h</mi>
            </mrow>
          </mtd>
          <mtd id="S0.Ex1.m1.1.1l" xref="S0.Ex1.m1.1.1.cmml">
            <mrow id="S0.Ex1.m1.1.1.3.3.1" xref="S0.Ex1.m1.1.1.3.3.1.cmml">
              <mi id="S0.Ex1.m1.1.1.3.3.1.2" xref="S0.Ex1.m1.1.1.3.3.1.2.cmml">λ</mi>
              <mo id="S0.Ex1.m1.1.1.3.3.1.1" xref="S0.Ex1.m1.1.1.3.3.1.1.cmml">−</mo>
              <mi id="S0.Ex1.m1.1.1.3.3.1.3" xref="S0.Ex1.m1.1.1.3.3.1.3.cmml">i</mi>
            </mrow>
          </mtd>
        </mtr>
      </mtable>
      <mo id="S0.Ex1.m1.1.2.2.2" xref="S0.Ex1.m1.1.2.1.1.cmml">]</mo>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="S0.Ex1.m1.1b">
      <apply id="S0.Ex1.m1.1.2.1.cmml" xref="S0.Ex1.m1.1.2.2">
        <csymbol cd="latexml" id="S0.Ex1.m1.1.2.1.1.cmml" xref="S0.Ex1.m1.1.2.2.1">delimited-[]</csymbol>
        <matrix id="S0.Ex1.m1.1.1.cmml" xref="S0.Ex1.m1.1.1">
          <matrixrow id="S0.Ex1.m1.1.1a.cmml" xref="S0.Ex1.m1.1.1">
            <apply id="S0.Ex1.m1.1.1.1.1.1.cmml" xref="S0.Ex1.m1.1.1.1.1.1">
              <minus id="S0.Ex1.m1.1.1.1.1.1.1.cmml" xref="S0.Ex1.m1.1.1.1.1.1.1"/>
              <ci id="S0.Ex1.m1.1.1.1.1.1.2.cmml" xref="S0.Ex1.m1.1.1.1.1.1.2">𝜆</ci>
              <ci id="S0.Ex1.m1.1.1.1.1.1.3.cmml" xref="S0.Ex1.m1.1.1.1.1.1.3">𝑎</ci>
            </apply>
            <apply id="S0.Ex1.m1.1.1.1.2.1.cmml" xref="S0.Ex1.m1.1.1.1.2.1">
              <minus id="S0.Ex1.m1.1.1.1.2.1.1.cmml" xref="S0.Ex1.m1.1.1.1.2.1"/>
              <ci id="S0.Ex1.m1.1.1.1.2.1.2.cmml" xref="S0.Ex1.m1.1.1.1.2.1.2">𝑏</ci>
            </apply>
            <apply id="S0.Ex1.m1.1.1.1.3.1.cmml" xref="S0.Ex1.m1.1.1.1.3.1">
              <minus id="S0.Ex1.m1.1.1.1.3.1.1.cmml" xref="S0.Ex1.m1.1.1.1.3.1"/>
              <ci id="S0.Ex1.m1.1.1.1.3.1.2.cmml" xref="S0.Ex1.m1.1.1.1.3.1.2">𝑐</ci>
            </apply>
          </matrixrow>
          <matrixrow id="S0.Ex1.m1.1.1b.cmml" xref="S0.Ex1.m1.1.1">
            <apply id="S0.Ex1.m1.1.1.2.1.1.cmml" xref="S0.Ex1.m1.1.1.2.1.1">
              <minus id="S0.Ex1.m1.1.1.2.1.1.1.cmml" xref="S0.Ex1.m1.1.1.2.1.1"/>
              <ci id="S0.Ex1.m1.1.1.2.1.1.2.cmml" xref="S0.Ex1.m1.1.1.2.1.1.2">𝑑</ci>
            </apply>
            <apply id="S0.Ex1.m1.1.1.2.2.1.cmml" xref="S0.Ex1.m1.1.1.2.2.1">
              <minus id="S0.Ex1.m1.1.1.2.2.1.1.cmml" xref="S0.Ex1.m1.1.1.2.2.1.1"/>
              <ci id="S0.Ex1.m1.1.1.2.2.1.2.cmml" xref="S0.Ex1.m1.1.1.2.2.1.2">𝜆</ci>
              <ci id="S0.Ex1.m1.1.1.2.2.1.3.cmml" xref="S0.Ex1.m1.1.1.2.2.1.3">𝑒</ci>
            </apply>
            <apply id="S0.Ex1.m1.1.1.2.3.1.cmml" xref="S0.Ex1.m1.1.1.2.3.1">
              <minus id="S0.Ex1.m1.1.1.2.3.1.1.cmml" xref="S0.Ex1.m1.1.1.2.3.1"/>
              <ci id="S0.Ex1.m1.1.1.2.3.1.2.cmml" xref="S0.Ex1.m1.1.1.2.3.1.2">𝑓</ci>
            </apply>
          </matrixrow>
          <matrixrow id="S0.Ex1.m1.1.1c.cmml" xref="S0.Ex1.m1.1.1">
            <apply id="S0.Ex1.m1.1.1.3.1.1.cmml" xref="S0.Ex1.m1.1.1.3.1.1">
              <minus id="S0.Ex1.m1.1.1.3.1.1.1.cmml" xref="S0.Ex1.m1.1.1.3.1.1"/>
              <ci id="S0.Ex1.m1.1.1.3.1.1.2.cmml" xref="S0.Ex1.m1.1.1.3.1.1.2">𝑔</ci>
            </apply>
            <apply id="S0.Ex1.m1.1.1.3.2.1.cmml" xref="S0.Ex1.m1.1.1.3.2.1">
              <minus id="S0.Ex1.m1.1.1.3.2.1.1.cmml" xref="S0.Ex1.m1.1.1.3.2.1"/>
              <ci id="S0.Ex1.m1.1.1.3.2.1.2.cmml" xref="S0.Ex1.m1.1.1.3.2.1.2">ℎ</ci>
            </apply>
            <apply id="S0.Ex1.m1.1.1.3.3.1.cmml" xref="S0.Ex1.m1.1.1.3.3.1">
              <minus id="S0.Ex1.m1.1.1.3.3.1.1.cmml" xref="S0.Ex1.m1.1.1.3.3.1.1"/>
              <ci id="S0.Ex1.m1.1.1.3.3.1.2.cmml" xref="S0.Ex1.m1.1.1.3.3.1.2">𝜆</ci>
              <ci id="S0.Ex1.m1.1.1.3.3.1.3.cmml" xref="S0.Ex1.m1.1.1.3.3.1.3">𝑖</ci>
            </apply>
          </matrixrow>
        </matrix>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="S0.Ex1.m1.1c">\left[\begin{array}[]{ccc}\lambda-a&amp;-b&amp;-c\\
-d&amp;\lambda-e&amp;-f\\
-g&amp;-h&amp;\lambda-i\end{array}\right]</annotation>
  </semantics>
</math>

</p>
</div>
</section>
<section id="outline-container-org375911c" class="outline-2">
<h2 id="org375911c">Differential</h2>
<div class="outline-text-2" id="text-org375911c">
<p>

<math xmlns="http://www.w3.org/1998/Math/MathML" id="S0.Ex1.m1.1" class="ltx_Math" alttext="\iint xy^{2}\,dx\,dy=\frac{1}{6}x^{2}y^{3}," display="block">
  <semantics id="S0.Ex1.m1.1a">
    <mrow id="S0.Ex1.m1.1.1.1" xref="S0.Ex1.m1.1.1.1.1.cmml">
      <mrow id="S0.Ex1.m1.1.1.1.1" xref="S0.Ex1.m1.1.1.1.1.cmml">
        <mrow id="S0.Ex1.m1.1.1.1.1.2" xref="S0.Ex1.m1.1.1.1.1.2.cmml">
          <mo id="S0.Ex1.m1.1.1.1.1.2.1" xref="S0.Ex1.m1.1.1.1.1.2.1.cmml">∬</mo>
          <mrow id="S0.Ex1.m1.1.1.1.1.2.2" xref="S0.Ex1.m1.1.1.1.1.2.2.cmml">
            <mi id="S0.Ex1.m1.1.1.1.1.2.2.2" xref="S0.Ex1.m1.1.1.1.1.2.2.2.cmml">x</mi>
            <mo id="S0.Ex1.m1.1.1.1.1.2.2.1" xref="S0.Ex1.m1.1.1.1.1.2.2.1.cmml">⁢</mo>
            <msup id="S0.Ex1.m1.1.1.1.1.2.2.3" xref="S0.Ex1.m1.1.1.1.1.2.2.3.cmml">
              <mi id="S0.Ex1.m1.1.1.1.1.2.2.3.2" xref="S0.Ex1.m1.1.1.1.1.2.2.3.2.cmml">y</mi>
              <mn id="S0.Ex1.m1.1.1.1.1.2.2.3.3" xref="S0.Ex1.m1.1.1.1.1.2.2.3.3.cmml">2</mn>
            </msup>
            <mo lspace="0em" id="S0.Ex1.m1.1.1.1.1.2.2.1a" xref="S0.Ex1.m1.1.1.1.1.2.2.1.cmml">⁢</mo>
            <mrow id="S0.Ex1.m1.1.1.1.1.2.2.4" xref="S0.Ex1.m1.1.1.1.1.2.2.4.cmml">
              <mo rspace="0em" id="S0.Ex1.m1.1.1.1.1.2.2.4.1" xref="S0.Ex1.m1.1.1.1.1.2.2.4.1.cmml">𝑑</mo>
              <mi id="S0.Ex1.m1.1.1.1.1.2.2.4.2" xref="S0.Ex1.m1.1.1.1.1.2.2.4.2.cmml">x</mi>
            </mrow>
            <mo lspace="0.170em" id="S0.Ex1.m1.1.1.1.1.2.2.1b" xref="S0.Ex1.m1.1.1.1.1.2.2.1.cmml">⁢</mo>
            <mrow id="S0.Ex1.m1.1.1.1.1.2.2.5" xref="S0.Ex1.m1.1.1.1.1.2.2.5.cmml">
              <mo rspace="0em" id="S0.Ex1.m1.1.1.1.1.2.2.5.1" xref="S0.Ex1.m1.1.1.1.1.2.2.5.1.cmml">𝑑</mo>
              <mi id="S0.Ex1.m1.1.1.1.1.2.2.5.2" xref="S0.Ex1.m1.1.1.1.1.2.2.5.2.cmml">y</mi>
            </mrow>
          </mrow>
        </mrow>
        <mo id="S0.Ex1.m1.1.1.1.1.1" xref="S0.Ex1.m1.1.1.1.1.1.cmml">=</mo>
        <mrow id="S0.Ex1.m1.1.1.1.1.3" xref="S0.Ex1.m1.1.1.1.1.3.cmml">
          <mfrac id="S0.Ex1.m1.1.1.1.1.3.2" xref="S0.Ex1.m1.1.1.1.1.3.2.cmml">
            <mn id="S0.Ex1.m1.1.1.1.1.3.2.2" xref="S0.Ex1.m1.1.1.1.1.3.2.2.cmml">1</mn>
            <mn id="S0.Ex1.m1.1.1.1.1.3.2.3" xref="S0.Ex1.m1.1.1.1.1.3.2.3.cmml">6</mn>
          </mfrac>
          <mo id="S0.Ex1.m1.1.1.1.1.3.1" xref="S0.Ex1.m1.1.1.1.1.3.1.cmml">⁢</mo>
          <msup id="S0.Ex1.m1.1.1.1.1.3.3" xref="S0.Ex1.m1.1.1.1.1.3.3.cmml">
            <mi id="S0.Ex1.m1.1.1.1.1.3.3.2" xref="S0.Ex1.m1.1.1.1.1.3.3.2.cmml">x</mi>
            <mn id="S0.Ex1.m1.1.1.1.1.3.3.3" xref="S0.Ex1.m1.1.1.1.1.3.3.3.cmml">2</mn>
          </msup>
          <mo id="S0.Ex1.m1.1.1.1.1.3.1a" xref="S0.Ex1.m1.1.1.1.1.3.1.cmml">⁢</mo>
          <msup id="S0.Ex1.m1.1.1.1.1.3.4" xref="S0.Ex1.m1.1.1.1.1.3.4.cmml">
            <mi id="S0.Ex1.m1.1.1.1.1.3.4.2" xref="S0.Ex1.m1.1.1.1.1.3.4.2.cmml">y</mi>
            <mn id="S0.Ex1.m1.1.1.1.1.3.4.3" xref="S0.Ex1.m1.1.1.1.1.3.4.3.cmml">3</mn>
          </msup>
        </mrow>
      </mrow>
      <mo id="S0.Ex1.m1.1.1.1.2" xref="S0.Ex1.m1.1.1.1.1.cmml">,</mo>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="S0.Ex1.m1.1b">
      <apply id="S0.Ex1.m1.1.1.1.1.cmml" xref="S0.Ex1.m1.1.1.1">
        <eq id="S0.Ex1.m1.1.1.1.1.1.cmml" xref="S0.Ex1.m1.1.1.1.1.1"/>
        <apply id="S0.Ex1.m1.1.1.1.1.2.cmml" xref="S0.Ex1.m1.1.1.1.1.2">
          <csymbol cd="latexml" id="S0.Ex1.m1.1.1.1.1.2.1.cmml" xref="S0.Ex1.m1.1.1.1.1.2.1">double-integral</csymbol>
          <apply id="S0.Ex1.m1.1.1.1.1.2.2.cmml" xref="S0.Ex1.m1.1.1.1.1.2.2">
            <times id="S0.Ex1.m1.1.1.1.1.2.2.1.cmml" xref="S0.Ex1.m1.1.1.1.1.2.2.1"/>
            <ci id="S0.Ex1.m1.1.1.1.1.2.2.2.cmml" xref="S0.Ex1.m1.1.1.1.1.2.2.2">𝑥</ci>
            <apply id="S0.Ex1.m1.1.1.1.1.2.2.3.cmml" xref="S0.Ex1.m1.1.1.1.1.2.2.3">
              <csymbol cd="ambiguous" id="S0.Ex1.m1.1.1.1.1.2.2.3.1.cmml" xref="S0.Ex1.m1.1.1.1.1.2.2.3">superscript</csymbol>
              <ci id="S0.Ex1.m1.1.1.1.1.2.2.3.2.cmml" xref="S0.Ex1.m1.1.1.1.1.2.2.3.2">𝑦</ci>
              <cn type="integer" id="S0.Ex1.m1.1.1.1.1.2.2.3.3.cmml" xref="S0.Ex1.m1.1.1.1.1.2.2.3.3">2</cn>
            </apply>
            <apply id="S0.Ex1.m1.1.1.1.1.2.2.4.cmml" xref="S0.Ex1.m1.1.1.1.1.2.2.4">
              <csymbol cd="latexml" id="S0.Ex1.m1.1.1.1.1.2.2.4.1.cmml" xref="S0.Ex1.m1.1.1.1.1.2.2.4.1">differential-d</csymbol>
              <ci id="S0.Ex1.m1.1.1.1.1.2.2.4.2.cmml" xref="S0.Ex1.m1.1.1.1.1.2.2.4.2">𝑥</ci>
            </apply>
            <apply id="S0.Ex1.m1.1.1.1.1.2.2.5.cmml" xref="S0.Ex1.m1.1.1.1.1.2.2.5">
              <csymbol cd="latexml" id="S0.Ex1.m1.1.1.1.1.2.2.5.1.cmml" xref="S0.Ex1.m1.1.1.1.1.2.2.5.1">differential-d</csymbol>
              <ci id="S0.Ex1.m1.1.1.1.1.2.2.5.2.cmml" xref="S0.Ex1.m1.1.1.1.1.2.2.5.2">𝑦</ci>
            </apply>
          </apply>
        </apply>
        <apply id="S0.Ex1.m1.1.1.1.1.3.cmml" xref="S0.Ex1.m1.1.1.1.1.3">
          <times id="S0.Ex1.m1.1.1.1.1.3.1.cmml" xref="S0.Ex1.m1.1.1.1.1.3.1"/>
          <apply id="S0.Ex1.m1.1.1.1.1.3.2.cmml" xref="S0.Ex1.m1.1.1.1.1.3.2">
            <divide id="S0.Ex1.m1.1.1.1.1.3.2.1.cmml" xref="S0.Ex1.m1.1.1.1.1.3.2"/>
            <cn type="integer" id="S0.Ex1.m1.1.1.1.1.3.2.2.cmml" xref="S0.Ex1.m1.1.1.1.1.3.2.2">1</cn>
            <cn type="integer" id="S0.Ex1.m1.1.1.1.1.3.2.3.cmml" xref="S0.Ex1.m1.1.1.1.1.3.2.3">6</cn>
          </apply>
          <apply id="S0.Ex1.m1.1.1.1.1.3.3.cmml" xref="S0.Ex1.m1.1.1.1.1.3.3">
            <csymbol cd="ambiguous" id="S0.Ex1.m1.1.1.1.1.3.3.1.cmml" xref="S0.Ex1.m1.1.1.1.1.3.3">superscript</csymbol>
            <ci id="S0.Ex1.m1.1.1.1.1.3.3.2.cmml" xref="S0.Ex1.m1.1.1.1.1.3.3.2">𝑥</ci>
            <cn type="integer" id="S0.Ex1.m1.1.1.1.1.3.3.3.cmml" xref="S0.Ex1.m1.1.1.1.1.3.3.3">2</cn>
          </apply>
          <apply id="S0.Ex1.m1.1.1.1.1.3.4.cmml" xref="S0.Ex1.m1.1.1.1.1.3.4">
            <csymbol cd="ambiguous" id="S0.Ex1.m1.1.1.1.1.3.4.1.cmml" xref="S0.Ex1.m1.1.1.1.1.3.4">superscript</csymbol>
            <ci id="S0.Ex1.m1.1.1.1.1.3.4.2.cmml" xref="S0.Ex1.m1.1.1.1.1.3.4.2">𝑦</ci>
            <cn type="integer" id="S0.Ex1.m1.1.1.1.1.3.4.3.cmml" xref="S0.Ex1.m1.1.1.1.1.3.4.3">3</cn>
          </apply>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="S0.Ex1.m1.1c">\iint xy^{2}\,dx\,dy=\frac{1}{6}x^{2}y^{3},</annotation>
  </semantics>
</math>

</p>
</div>
</section>
<section id="outline-container-orgc12a3e9" class="outline-2">
<h2 id="orgc12a3e9">Vector Problem</h2>
<div class="outline-text-2" id="text-orgc12a3e9">
<p>

<math xmlns="http://www.w3.org/1998/Math/MathML" id="S0.Ex1.m1.3" class="ltx_Math" alttext="u=\frac{-y}{x^{2}+y^{2}}\,,\quad v=\frac{x}{x^{2}+y^{2}}\,,\quad\text{and}%&#10;\quad w=0\,." display="block">
  <semantics id="S0.Ex1.m1.3a">
    <mrow id="S0.Ex1.m1.3.3.1">
      <mrow id="S0.Ex1.m1.3.3.1.1.2" xref="S0.Ex1.m1.3.3.1.1.3.cmml">
        <mrow id="S0.Ex1.m1.3.3.1.1.1.1" xref="S0.Ex1.m1.3.3.1.1.1.1.cmml">
          <mi id="S0.Ex1.m1.3.3.1.1.1.1.2" xref="S0.Ex1.m1.3.3.1.1.1.1.2.cmml">u</mi>
          <mo id="S0.Ex1.m1.3.3.1.1.1.1.1" xref="S0.Ex1.m1.3.3.1.1.1.1.1.cmml">=</mo>
          <mfrac id="S0.Ex1.m1.3.3.1.1.1.1.3" xref="S0.Ex1.m1.3.3.1.1.1.1.3.cmml">
            <mrow id="S0.Ex1.m1.3.3.1.1.1.1.3.2" xref="S0.Ex1.m1.3.3.1.1.1.1.3.2.cmml">
              <mo id="S0.Ex1.m1.3.3.1.1.1.1.3.2a" xref="S0.Ex1.m1.3.3.1.1.1.1.3.2.cmml">−</mo>
              <mi id="S0.Ex1.m1.3.3.1.1.1.1.3.2.2" xref="S0.Ex1.m1.3.3.1.1.1.1.3.2.2.cmml">y</mi>
            </mrow>
            <mrow id="S0.Ex1.m1.3.3.1.1.1.1.3.3" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3.cmml">
              <msup id="S0.Ex1.m1.3.3.1.1.1.1.3.3.2" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3.2.cmml">
                <mi id="S0.Ex1.m1.3.3.1.1.1.1.3.3.2.2" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3.2.2.cmml">x</mi>
                <mn id="S0.Ex1.m1.3.3.1.1.1.1.3.3.2.3" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3.2.3.cmml">2</mn>
              </msup>
              <mo id="S0.Ex1.m1.3.3.1.1.1.1.3.3.1" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3.1.cmml">+</mo>
              <msup id="S0.Ex1.m1.3.3.1.1.1.1.3.3.3" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3.3.cmml">
                <mi id="S0.Ex1.m1.3.3.1.1.1.1.3.3.3.2" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3.3.2.cmml">y</mi>
                <mn id="S0.Ex1.m1.3.3.1.1.1.1.3.3.3.3" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3.3.3.cmml">2</mn>
              </msup>
            </mrow>
          </mfrac>
        </mrow>
        <mo lspace="0.170em" rspace="1.167em" id="S0.Ex1.m1.3.3.1.1.2.3" xref="S0.Ex1.m1.3.3.1.1.3a.cmml">,</mo>
        <mrow id="S0.Ex1.m1.3.3.1.1.2.2.2" xref="S0.Ex1.m1.3.3.1.1.2.2.3.cmml">
          <mrow id="S0.Ex1.m1.3.3.1.1.2.2.1.1" xref="S0.Ex1.m1.3.3.1.1.2.2.1.1.cmml">
            <mi id="S0.Ex1.m1.3.3.1.1.2.2.1.1.2" xref="S0.Ex1.m1.3.3.1.1.2.2.1.1.2.cmml">v</mi>
            <mo id="S0.Ex1.m1.3.3.1.1.2.2.1.1.1" xref="S0.Ex1.m1.3.3.1.1.2.2.1.1.1.cmml">=</mo>
            <mrow id="S0.Ex1.m1.3.3.1.1.2.2.1.1.3.2" xref="S0.Ex1.m1.3.3.1.1.2.2.1.1.3.1.cmml">
              <mfrac id="S0.Ex1.m1.1.1" xref="S0.Ex1.m1.1.1.cmml">
                <mi id="S0.Ex1.m1.1.1.2" xref="S0.Ex1.m1.1.1.2.cmml">x</mi>
                <mrow id="S0.Ex1.m1.1.1.3" xref="S0.Ex1.m1.1.1.3.cmml">
                  <msup id="S0.Ex1.m1.1.1.3.2" xref="S0.Ex1.m1.1.1.3.2.cmml">
                    <mi id="S0.Ex1.m1.1.1.3.2.2" xref="S0.Ex1.m1.1.1.3.2.2.cmml">x</mi>
                    <mn id="S0.Ex1.m1.1.1.3.2.3" xref="S0.Ex1.m1.1.1.3.2.3.cmml">2</mn>
                  </msup>
                  <mo id="S0.Ex1.m1.1.1.3.1" xref="S0.Ex1.m1.1.1.3.1.cmml">+</mo>
                  <msup id="S0.Ex1.m1.1.1.3.3" xref="S0.Ex1.m1.1.1.3.3.cmml">
                    <mi id="S0.Ex1.m1.1.1.3.3.2" xref="S0.Ex1.m1.1.1.3.3.2.cmml">y</mi>
                    <mn id="S0.Ex1.m1.1.1.3.3.3" xref="S0.Ex1.m1.1.1.3.3.3.cmml">2</mn>
                  </msup>
                </mrow>
              </mfrac>
              <mo lspace="0.170em" rspace="1.167em" id="S0.Ex1.m1.3.3.1.1.2.2.1.1.3.2.1" xref="S0.Ex1.m1.3.3.1.1.2.2.1.1.3.1.cmml">,</mo>
              <mtext id="S0.Ex1.m1.2.2" xref="S0.Ex1.m1.2.2a.cmml">and</mtext>
            </mrow>
          </mrow>
          <mspace width="1em" id="S0.Ex1.m1.3.3.1.1.2.2.2.3" xref="S0.Ex1.m1.3.3.1.1.2.2.3a.cmml"/>
          <mrow id="S0.Ex1.m1.3.3.1.1.2.2.2.2" xref="S0.Ex1.m1.3.3.1.1.2.2.2.2.cmml">
            <mi id="S0.Ex1.m1.3.3.1.1.2.2.2.2.2" xref="S0.Ex1.m1.3.3.1.1.2.2.2.2.2.cmml">w</mi>
            <mo id="S0.Ex1.m1.3.3.1.1.2.2.2.2.1" xref="S0.Ex1.m1.3.3.1.1.2.2.2.2.1.cmml">=</mo>
            <mn id="S0.Ex1.m1.3.3.1.1.2.2.2.2.3" xref="S0.Ex1.m1.3.3.1.1.2.2.2.2.3.cmml">0</mn>
          </mrow>
        </mrow>
      </mrow>
      <mo lspace="0.170em" id="S0.Ex1.m1.3.3.1.2">.</mo>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="S0.Ex1.m1.3b">
      <apply id="S0.Ex1.m1.3.3.1.1.3.cmml" xref="S0.Ex1.m1.3.3.1.1.2">
        <csymbol cd="ambiguous" id="S0.Ex1.m1.3.3.1.1.3a.cmml" xref="S0.Ex1.m1.3.3.1.1.2.3">formulae-sequence</csymbol>
        <apply id="S0.Ex1.m1.3.3.1.1.1.1.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1">
          <eq id="S0.Ex1.m1.3.3.1.1.1.1.1.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1.1"/>
          <ci id="S0.Ex1.m1.3.3.1.1.1.1.2.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1.2">𝑢</ci>
          <apply id="S0.Ex1.m1.3.3.1.1.1.1.3.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1.3">
            <divide id="S0.Ex1.m1.3.3.1.1.1.1.3.1.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1.3"/>
            <apply id="S0.Ex1.m1.3.3.1.1.1.1.3.2.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1.3.2">
              <minus id="S0.Ex1.m1.3.3.1.1.1.1.3.2.1.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1.3.2"/>
              <ci id="S0.Ex1.m1.3.3.1.1.1.1.3.2.2.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1.3.2.2">𝑦</ci>
            </apply>
            <apply id="S0.Ex1.m1.3.3.1.1.1.1.3.3.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3">
              <plus id="S0.Ex1.m1.3.3.1.1.1.1.3.3.1.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3.1"/>
              <apply id="S0.Ex1.m1.3.3.1.1.1.1.3.3.2.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3.2">
                <csymbol cd="ambiguous" id="S0.Ex1.m1.3.3.1.1.1.1.3.3.2.1.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3.2">superscript</csymbol>
                <ci id="S0.Ex1.m1.3.3.1.1.1.1.3.3.2.2.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3.2.2">𝑥</ci>
                <cn type="integer" id="S0.Ex1.m1.3.3.1.1.1.1.3.3.2.3.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3.2.3">2</cn>
              </apply>
              <apply id="S0.Ex1.m1.3.3.1.1.1.1.3.3.3.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3.3">
                <csymbol cd="ambiguous" id="S0.Ex1.m1.3.3.1.1.1.1.3.3.3.1.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3.3">superscript</csymbol>
                <ci id="S0.Ex1.m1.3.3.1.1.1.1.3.3.3.2.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3.3.2">𝑦</ci>
                <cn type="integer" id="S0.Ex1.m1.3.3.1.1.1.1.3.3.3.3.cmml" xref="S0.Ex1.m1.3.3.1.1.1.1.3.3.3.3">2</cn>
              </apply>
            </apply>
          </apply>
        </apply>
        <apply id="S0.Ex1.m1.3.3.1.1.2.2.3.cmml" xref="S0.Ex1.m1.3.3.1.1.2.2.2">
          <csymbol cd="ambiguous" id="S0.Ex1.m1.3.3.1.1.2.2.3a.cmml" xref="S0.Ex1.m1.3.3.1.1.2.2.2.3">formulae-sequence</csymbol>
          <apply id="S0.Ex1.m1.3.3.1.1.2.2.1.1.cmml" xref="S0.Ex1.m1.3.3.1.1.2.2.1.1">
            <eq id="S0.Ex1.m1.3.3.1.1.2.2.1.1.1.cmml" xref="S0.Ex1.m1.3.3.1.1.2.2.1.1.1"/>
            <ci id="S0.Ex1.m1.3.3.1.1.2.2.1.1.2.cmml" xref="S0.Ex1.m1.3.3.1.1.2.2.1.1.2">𝑣</ci>
            <list id="S0.Ex1.m1.3.3.1.1.2.2.1.1.3.1.cmml" xref="S0.Ex1.m1.3.3.1.1.2.2.1.1.3.2">
              <apply id="S0.Ex1.m1.1.1.cmml" xref="S0.Ex1.m1.1.1">
                <divide id="S0.Ex1.m1.1.1.1.cmml" xref="S0.Ex1.m1.1.1"/>
                <ci id="S0.Ex1.m1.1.1.2.cmml" xref="S0.Ex1.m1.1.1.2">𝑥</ci>
                <apply id="S0.Ex1.m1.1.1.3.cmml" xref="S0.Ex1.m1.1.1.3">
                  <plus id="S0.Ex1.m1.1.1.3.1.cmml" xref="S0.Ex1.m1.1.1.3.1"/>
                  <apply id="S0.Ex1.m1.1.1.3.2.cmml" xref="S0.Ex1.m1.1.1.3.2">
                    <csymbol cd="ambiguous" id="S0.Ex1.m1.1.1.3.2.1.cmml" xref="S0.Ex1.m1.1.1.3.2">superscript</csymbol>
                    <ci id="S0.Ex1.m1.1.1.3.2.2.cmml" xref="S0.Ex1.m1.1.1.3.2.2">𝑥</ci>
                    <cn type="integer" id="S0.Ex1.m1.1.1.3.2.3.cmml" xref="S0.Ex1.m1.1.1.3.2.3">2</cn>
                  </apply>
                  <apply id="S0.Ex1.m1.1.1.3.3.cmml" xref="S0.Ex1.m1.1.1.3.3">
                    <csymbol cd="ambiguous" id="S0.Ex1.m1.1.1.3.3.1.cmml" xref="S0.Ex1.m1.1.1.3.3">superscript</csymbol>
                    <ci id="S0.Ex1.m1.1.1.3.3.2.cmml" xref="S0.Ex1.m1.1.1.3.3.2">𝑦</ci>
                    <cn type="integer" id="S0.Ex1.m1.1.1.3.3.3.cmml" xref="S0.Ex1.m1.1.1.3.3.3">2</cn>
                  </apply>
                </apply>
              </apply>
              <ci id="S0.Ex1.m1.2.2a.cmml" xref="S0.Ex1.m1.2.2">
                <mtext id="S0.Ex1.m1.2.2.cmml" xref="S0.Ex1.m1.2.2">and</mtext>
              </ci>
            </list>
          </apply>
          <apply id="S0.Ex1.m1.3.3.1.1.2.2.2.2.cmml" xref="S0.Ex1.m1.3.3.1.1.2.2.2.2">
            <eq id="S0.Ex1.m1.3.3.1.1.2.2.2.2.1.cmml" xref="S0.Ex1.m1.3.3.1.1.2.2.2.2.1"/>
            <ci id="S0.Ex1.m1.3.3.1.1.2.2.2.2.2.cmml" xref="S0.Ex1.m1.3.3.1.1.2.2.2.2.2">𝑤</ci>
            <cn type="integer" id="S0.Ex1.m1.3.3.1.1.2.2.2.2.3.cmml" xref="S0.Ex1.m1.3.3.1.1.2.2.2.2.3">0</cn>
          </apply>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="S0.Ex1.m1.3c">u=\frac{-y}{x^{2}+y^{2}}\,,\quad v=\frac{x}{x^{2}+y^{2}}\,,\quad\text{and}%
\quad w=0\,.</annotation>
  </semantics>
</math>

</p>


<div class="tagline" id="orgc0c956d">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
</div>
</section>
]]>
</description></item>
<item>
<title>Prayer of Hope</title>
<link>https://randyridenour.net/posts/2015-11-29-prayer-of-hope.html</link>
<pubDate>Sun, 29 Nov 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-11-29-prayer-of-hope.html</guid>
<description>
<![CDATA[<p>
<b>For the First Sunday of Advent</b>
</p>

<p>
God of all hope,
</p>

<p>
When those seeking food and shelter<br>
are told only to pray to Jesus,
</p>

<p>
When those fleeing the devastation of war<br>
are told only to go to Jesus,
</p>

<p>
And when those who<br>
have lost all hope<br>
are told only to hope in Jesus,
</p>

<p>
Then, Lord, I have failed.
</p>

<p>
For if I will not welcome<br>
those whom the world now rejects,<br>
then why would I welcome the child<br>
whom the world did reject?
</p>

<p>
So, instead of the usual<br>
empty platitudes of the season,<br>
may I offer real hope,<br>
a hope that feeds,<br>
clothes, and shelters,<br>
heals broken lives,<br>
and mends broken spirits.
</p>

<p>
In the name of Christ,
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="org3aa26c4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Venn Diagrams in LaTeX</title>
<link>https://randyridenour.net/posts/2023-02-04-venn-diagrams-in-latex.html</link>
<pubDate>Sat, 04 Feb 2023 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2023-02-04-venn-diagrams-in-latex.html</guid>
<description>
<![CDATA[<p>
I wrote a 2017 post describing how I code Venn diagrams in LaTeX with TikZ. Venn diagrams in categorical logic tend to be different from their standard uses in mathematics. There are a few LaTeX packages for Venn diagrams, but, for some reason, I didn&rsquo;t think they could be used to produce the diagrams I needed for my critical thinking course. I should have looked at them a bit more carefully, it turns out that making the diagrams using the <code>venndiagram</code> <a href="https://mirror.math.princeton.edu/pub/CTAN/macros/LaTeX/contrib/venndiagram/venndiagram.pdf">package</a> is much easier than my method.
</p>

<p>
<code>Venndiagram</code>, like my method, uses TikZ to make the diagram. The advantage, though, is that we don&rsquo;t have to dig into the details of TikZ for everything, that is already done for us. For example, here is the code for the diagram for an A-sentence using my previous method.
</p>


<div class="org-src-container">
<pre class="src src-LaTeX"><code><span class="org-font-latex-sedate"><span class="org-keyword">\begin</span></span>{<span class="org-function-name">tikzpicture</span>}[thick,scale=1, every node/.style={transform shape}]
  <span class="org-font-latex-sedate"><span class="org-keyword">\begin</span></span>{<span class="org-function-name">scope</span>}
    <span class="org-font-latex-sedate"><span class="org-keyword">\begin</span></span>{<span class="org-function-name">scope</span>}[even odd rule]
      <span class="org-font-latex-sedate">\clip</span> <span class="org-font-latex-sedate">\pred</span> (-1.5,-1.5) rectangle (1.5,1.5);
      <span class="org-font-latex-sedate">\fill</span>[gray] <span class="org-font-latex-sedate">\sub</span>;
    <span class="org-font-latex-sedate"><span class="org-keyword">\end</span></span>{<span class="org-function-name">scope</span>}
    <span class="org-font-latex-sedate">\draw</span> (-2,-0) node {<span class="org-font-latex-math">$A$</span>};
    <span class="org-font-latex-sedate">\draw</span> (4,0) node {<span class="org-font-latex-math">$B$</span>};
    <span class="org-font-latex-sedate">\draw</span> <span class="org-font-latex-sedate">\sub</span>;
    <span class="org-font-latex-sedate">\draw</span> <span class="org-font-latex-sedate">\pred</span>;
  <span class="org-font-latex-sedate"><span class="org-keyword">\end</span></span>{<span class="org-function-name">scope</span>}
<span class="org-font-latex-sedate"><span class="org-keyword">\end</span></span>{<span class="org-function-name">tikzpicture</span>}
</code></pre>
</div>

<p>
Here is the code for the  same diagram with the <code>venndiagram</code> package.
</p>

<div class="org-src-container">
<pre class="src src-LaTeX"><code><span class="org-font-latex-sedate"><span class="org-keyword">\begin</span></span>{<span class="org-function-name">venndiagram2sets</span>}
  [tikzoptions={scale=1,thick}, showframe=false]
  <span class="org-font-latex-sedate">\fillANotB</span>
<span class="org-font-latex-sedate"><span class="org-keyword">\end</span></span>{<span class="org-function-name">venndiagram2sets</span>}
</code></pre>
</div>

<p>
It produces this:
</p>


<figure id="org94a55bd">
<img src="https://randyridenour.net/posts/../images/posts/a-sentence.png" alt="a-sentence.png" width="400">

<figcaption><span class="figure-number">Figure 1: </span>Venn diagram of an A-sentence in categorical logic.</figcaption>
</figure>

<p>
Here&rsquo;s the code for Disamis (IAI-3):
</p>

<div class="org-src-container">
<pre class="src src-LaTeX"><code><span class="org-font-latex-sedate"><span class="org-keyword">\begin</span></span>{<span class="org-function-name">venndiagram3sets</span>}
  [
  tikzoptions={scale=1,thick},
  showframe=false,
  labelOnlyB={x},
  labelABC={x}
  ]
  <span class="org-font-latex-sedate">\fillCNotA</span>
<span class="org-font-latex-sedate"><span class="org-keyword">\end</span></span>{<span class="org-function-name">venndiagram3sets</span>}
</code></pre>
</div>

<p>
The resulting diagram looks like this:
</p>


<figure id="org6b819cd">
<img src="https://randyridenour.net/posts/../images/posts/disamis.png" alt="disamis.png" width="400px">

<figcaption><span class="figure-number">Figure 2: </span>Venn diagram of Disamis in categorical logic.</figcaption>
</figure>

<p>
There was no way that I could remember my all of the details of my original method, so I had an 84-line snippet that I inserted for each diagram. I would then comment and uncomment various lines to produce the diagram I needed.
</p>

<p>
Now, I just use this snippet for a 2-circle diagram:
</p>

<div class="org-src-container">
<pre class="src src-LaTeX"><code><span class="org-font-latex-sedate"><span class="org-keyword">\begin</span></span>{<span class="org-function-name">venndiagram2sets</span>}
  [
  tikzoptions={scale=1,thick},
  showframe=false,
  labelA=S,
  labelB=P,
  labelOnlyA={x},
  labelAB={x}
  ]
  <span class="org-font-latex-sedate">\fillANotB</span>
<span class="org-font-latex-sedate"><span class="org-keyword">\end</span></span>{<span class="org-function-name">venndiagram2sets</span>}
</code></pre>
</div>

<p>
I use this for a 3-circle diagram:
</p>

<div class="org-src-container">
<pre class="src src-LaTeX"><code><span class="org-font-latex-sedate"><span class="org-keyword">\begin</span></span>{<span class="org-function-name">venndiagram3sets</span>}
  [
  tikzoptions={scale=1,thick},
  showframe=false,
  labelA=S, <span class="org-comment">%label circle A with "S"
</span>  labelB=P, <span class="org-comment">%label circle B with "P"
</span>  labelC=M, <span class="org-comment">%label circle M with "M"
</span>  labelOnlyA={x}, <span class="org-comment">%puts an "x" in the region belonging only to A
</span>  labelOnlyBC={x}, <span class="org-comment">%puts an "x" in intersection of B and C.
</span>  labelABC={x} <span class="org-comment">%puts an "x" in the the intersection of A, B, and C.
</span>  ]
  <span class="org-font-latex-sedate">\fillANotB</span> <span class="org-comment">%fills the region belonging only to B
</span>  <span class="org-font-latex-sedate">\fillBCapC</span> <span class="org-comment">%fills the intersection of B and C.
</span>  <span class="org-comment">% To put an x on the lines, uncomment the following:
</span>  <span class="org-comment">% </span><span class="org-font-latex-sedate"><span class="org-comment">\setpostvennhook</span></span><span class="org-comment"> % places an "x" in other locations of the diagram.
</span>  <span class="org-comment">% {
</span>  <span class="org-comment">% </span><span class="org-font-latex-sedate"><span class="org-comment">\node</span></span><span class="org-comment">[above = 1.6cm of labelC] {X};
</span>  <span class="org-comment">% </span><span class="org-font-latex-sedate"><span class="org-comment">\node</span></span><span class="org-comment">[above left = 1.4cm and .25cm of labelC, rotate=45] {X};
</span>  <span class="org-comment">% }
</span><span class="org-font-latex-sedate"><span class="org-keyword">\end</span></span>{<span class="org-function-name">venndiagram3sets</span>}
</code></pre>
</div>

<p>
Both have enough detail that I can remember what to change to make a particular diagram. I&rsquo;ve added some extra comments to explain what everything does. I Include the <code>scale=1</code> only so that I can remember what to do when I want to change the size of the diagram. The only tricky part is when I have to place an x on the border of a particular circle, that requires a little bit of TikZ fiddling, hence the commented lines at the end of the snippet.
</p>








<div class="tagline" id="org17b9363">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/LaTeX.html">Latex</a> <a href="https://randyridenour.net/posts/../tags/logic.html">Logic</a>
</p>

</div>
]]>
</description></item>
<item>
<title>1895 Eighth Grade Final Exam</title>
<link>https://randyridenour.net/posts/2011-02-23-1895-eighth-grade-final-exam.html</link>
<pubDate>Tue, 22 Feb 2011 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2011-02-23-1895-eighth-grade-final-exam.html</guid>
<description>
<![CDATA[<p>
On the NY Times site, Stephen Dubner posted a <a href="http://nyti.ms/fiMAnz">final exam</a> given to eighth grade students in Salina, Kansas in 1895. I&rsquo;d rather not talk about how I would have done on the exam.
</p>



<div class="tagline" id="org5b08b08">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for the Desert</title>
<link>https://randyridenour.net/posts/2016-02-28-prayer-for-the-desert.html</link>
<pubDate>Sun, 28 Feb 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-02-28-prayer-for-the-desert.html</guid>
<description>
<![CDATA[<p>
God of life,
</p>

<p>
Sometimes our prayers are as parched as the desert<br>
and our hearts as dry as the dunes of sand.
</p>

<p>
We take offense at things that don&rsquo;t matter,<br>
but ignore the ones that do.
</p>

<p>
When others are hungry,<br>
we are full.
</p>

<p>
When others are hurting,<br>
we are numb.
</p>

<p>
When others are cold,<br>
we rest comfortably<br>
beneath warm blankets of apathy.
</p>

<p>
But even in our self-righteousness,<br>
we still feel something,<br>
a deep ache of longing,<br>
a thirst for something<br>
greater than ourselves,<br>
a lingering thought<br>
that you are still there.<br>
</p>

<p>
Emmanuel,<br>
God with us.<br>
</p>

<p>
Despite our weakness,<br>
you have called us to be your people,<br>
ambassadors of your kingdom.
</p>

<p>
Lead us once more to the well of your grace,<br>
Bathe us again in the streams of your mercy.
</p>

<p>
Open the floodgates of your love,<br>
and let the rivers flow.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orge45a061">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Race, Police Shooting, and Probability</title>
<link>https://randyridenour.net/posts/2016-10-01-black-lives-matter-and-conditional-probabilities.html</link>
<pubDate>Sat, 01 Oct 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-10-01-black-lives-matter-and-conditional-probabilities.html</guid>
<description>
<![CDATA[<p>
I just read a Facebook comment by someone who was apparently downplaying the Black Lives Matter movement by pointing out that the police shoot more white Americans than black Americans. 
</p>

<p>
True, but it&rsquo;s a classic error in statistical reasoning. The vast majority of drivers involved in accidents are sober, but it doesn&rsquo;t follow that one is more likely to have an accident if one is sober than if drunk. That is, the probability that a person was drunk given that he was in an accident is very low, but the probability that someone will be in an accident given that he is drunk is very high.
</p>

<p>
Whites comprise 62% of the population, while African-Americans are only 13%. Of people killed by police officers, 49% are white and 24% are black. Since Jan 1, 2015, roughly 1,500 people have been shot and killed by police in the United States.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> This tells us that a person who has been killed by police is twice as likely to be white than black, exactly as the commenter stated. As is often the case with statistics, though, what we&rsquo;re given is not what we want to know, but it can be used to derive what we want to know.
</p>

<p>
Let 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.1" class="ltx_Math" alttext="W" display="inline">
  <semantics id="p1.1.m1.1a">
    <mi id="p1.1.m1.1.1" xref="p1.1.m1.1.1.cmml">W</mi>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.1b">
      <ci id="p1.1.m1.1.1.cmml" xref="p1.1.m1.1.1">𝑊</ci>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.1c">W</annotation>
  </semantics>
</math>
 be white, 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.1" class="ltx_Math" alttext="B" display="inline">
  <semantics id="p1.1.m1.1a">
    <mi id="p1.1.m1.1.1" xref="p1.1.m1.1.1.cmml">B</mi>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.1b">
      <ci id="p1.1.m1.1.1.cmml" xref="p1.1.m1.1.1">𝐵</ci>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.1c">B</annotation>
  </semantics>
</math>
 be black, and 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.1" class="ltx_Math" alttext="K" display="inline">
  <semantics id="p1.1.m1.1a">
    <mi id="p1.1.m1.1.1" xref="p1.1.m1.1.1.cmml">K</mi>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.1b">
      <ci id="p1.1.m1.1.1.cmml" xref="p1.1.m1.1.1">𝐾</ci>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.1c">K</annotation>
  </semantics>
</math>
 be killed by police. The probability that someone is white if they are killed by police, 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.2" class="ltx_Math" alttext="\Pr(W|K)" display="inline">
  <semantics id="p1.1.m1.2a">
    <mrow id="p1.1.m1.2.2.1" xref="p1.1.m1.2.2.2.cmml">
      <mi id="p1.1.m1.1.1" xref="p1.1.m1.1.1.cmml">Pr</mi>
      <mo id="p1.1.m1.2.2.1a" xref="p1.1.m1.2.2.2.cmml">⁡</mo>
      <mrow id="p1.1.m1.2.2.1.1" xref="p1.1.m1.2.2.2.cmml">
        <mo stretchy="false" id="p1.1.m1.2.2.1.1.2" xref="p1.1.m1.2.2.2.cmml">(</mo>
        <mrow id="p1.1.m1.2.2.1.1.1" xref="p1.1.m1.2.2.1.1.1.cmml">
          <mi id="p1.1.m1.2.2.1.1.1.2" xref="p1.1.m1.2.2.1.1.1.2.cmml">W</mi>
          <mo fence="false" id="p1.1.m1.2.2.1.1.1.1" xref="p1.1.m1.2.2.1.1.1.1.cmml">|</mo>
          <mi id="p1.1.m1.2.2.1.1.1.3" xref="p1.1.m1.2.2.1.1.1.3.cmml">K</mi>
        </mrow>
        <mo stretchy="false" id="p1.1.m1.2.2.1.1.3" xref="p1.1.m1.2.2.2.cmml">)</mo>
      </mrow>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.2b">
      <apply id="p1.1.m1.2.2.2.cmml" xref="p1.1.m1.2.2.1">
        <ci id="p1.1.m1.1.1.cmml" xref="p1.1.m1.1.1">Pr</ci>
        <apply id="p1.1.m1.2.2.1.1.1.cmml" xref="p1.1.m1.2.2.1.1.1">
          <csymbol cd="latexml" id="p1.1.m1.2.2.1.1.1.1.cmml" xref="p1.1.m1.2.2.1.1.1.1">conditional</csymbol>
          <ci id="p1.1.m1.2.2.1.1.1.2.cmml" xref="p1.1.m1.2.2.1.1.1.2">𝑊</ci>
          <ci id="p1.1.m1.2.2.1.1.1.3.cmml" xref="p1.1.m1.2.2.1.1.1.3">𝐾</ci>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.2c">\Pr(W|K)</annotation>
  </semantics>
</math>
, is 0.49. The probability that someone is black if they are killed by police, 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.2" class="ltx_Math" alttext="\Pr(B|K)" display="inline">
  <semantics id="p1.1.m1.2a">
    <mrow id="p1.1.m1.2.2.1" xref="p1.1.m1.2.2.2.cmml">
      <mi id="p1.1.m1.1.1" xref="p1.1.m1.1.1.cmml">Pr</mi>
      <mo id="p1.1.m1.2.2.1a" xref="p1.1.m1.2.2.2.cmml">⁡</mo>
      <mrow id="p1.1.m1.2.2.1.1" xref="p1.1.m1.2.2.2.cmml">
        <mo stretchy="false" id="p1.1.m1.2.2.1.1.2" xref="p1.1.m1.2.2.2.cmml">(</mo>
        <mrow id="p1.1.m1.2.2.1.1.1" xref="p1.1.m1.2.2.1.1.1.cmml">
          <mi id="p1.1.m1.2.2.1.1.1.2" xref="p1.1.m1.2.2.1.1.1.2.cmml">B</mi>
          <mo fence="false" id="p1.1.m1.2.2.1.1.1.1" xref="p1.1.m1.2.2.1.1.1.1.cmml">|</mo>
          <mi id="p1.1.m1.2.2.1.1.1.3" xref="p1.1.m1.2.2.1.1.1.3.cmml">K</mi>
        </mrow>
        <mo stretchy="false" id="p1.1.m1.2.2.1.1.3" xref="p1.1.m1.2.2.2.cmml">)</mo>
      </mrow>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.2b">
      <apply id="p1.1.m1.2.2.2.cmml" xref="p1.1.m1.2.2.1">
        <ci id="p1.1.m1.1.1.cmml" xref="p1.1.m1.1.1">Pr</ci>
        <apply id="p1.1.m1.2.2.1.1.1.cmml" xref="p1.1.m1.2.2.1.1.1">
          <csymbol cd="latexml" id="p1.1.m1.2.2.1.1.1.1.cmml" xref="p1.1.m1.2.2.1.1.1.1">conditional</csymbol>
          <ci id="p1.1.m1.2.2.1.1.1.2.cmml" xref="p1.1.m1.2.2.1.1.1.2">𝐵</ci>
          <ci id="p1.1.m1.2.2.1.1.1.3.cmml" xref="p1.1.m1.2.2.1.1.1.3">𝐾</ci>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.2c">\Pr(B|K)</annotation>
  </semantics>
</math>
, is 0.24. What we need to know, though, is the probability that someone will be killed by police given their race. To do this, we need to use Bayes&rsquo; theorem.
</p>

<p>

<math xmlns="http://www.w3.org/1998/Math/MathML" id="S0.Ex1.m1.8" class="ltx_Math" alttext="\Pr(K|R)=\Pr(K)\times\frac{\Pr(R|K)}{\Pr(R)}" display="block">
  <semantics id="S0.Ex1.m1.8a">
    <mrow id="S0.Ex1.m1.8.8" xref="S0.Ex1.m1.8.8.cmml">
      <mrow id="S0.Ex1.m1.8.8.1.1" xref="S0.Ex1.m1.8.8.1.2.cmml">
        <mi id="S0.Ex1.m1.5.5" xref="S0.Ex1.m1.5.5.cmml">Pr</mi>
        <mo id="S0.Ex1.m1.8.8.1.1a" xref="S0.Ex1.m1.8.8.1.2.cmml">⁡</mo>
        <mrow id="S0.Ex1.m1.8.8.1.1.1" xref="S0.Ex1.m1.8.8.1.2.cmml">
          <mo stretchy="false" id="S0.Ex1.m1.8.8.1.1.1.2" xref="S0.Ex1.m1.8.8.1.2.cmml">(</mo>
          <mrow id="S0.Ex1.m1.8.8.1.1.1.1" xref="S0.Ex1.m1.8.8.1.1.1.1.cmml">
            <mi id="S0.Ex1.m1.8.8.1.1.1.1.2" xref="S0.Ex1.m1.8.8.1.1.1.1.2.cmml">K</mi>
            <mo fence="false" id="S0.Ex1.m1.8.8.1.1.1.1.1" xref="S0.Ex1.m1.8.8.1.1.1.1.1.cmml">|</mo>
            <mi id="S0.Ex1.m1.8.8.1.1.1.1.3" xref="S0.Ex1.m1.8.8.1.1.1.1.3.cmml">R</mi>
          </mrow>
          <mo stretchy="false" id="S0.Ex1.m1.8.8.1.1.1.3" xref="S0.Ex1.m1.8.8.1.2.cmml">)</mo>
        </mrow>
      </mrow>
      <mo id="S0.Ex1.m1.8.8.2" xref="S0.Ex1.m1.8.8.2.cmml">=</mo>
      <mrow id="S0.Ex1.m1.8.8.3" xref="S0.Ex1.m1.8.8.3.cmml">
        <mrow id="S0.Ex1.m1.8.8.3.2.2" xref="S0.Ex1.m1.8.8.3.2.1.cmml">
          <mi id="S0.Ex1.m1.6.6" xref="S0.Ex1.m1.6.6.cmml">Pr</mi>
          <mo id="S0.Ex1.m1.8.8.3.2.2a" xref="S0.Ex1.m1.8.8.3.2.1.cmml">⁡</mo>
          <mrow id="S0.Ex1.m1.8.8.3.2.2.1" xref="S0.Ex1.m1.8.8.3.2.1.cmml">
            <mo stretchy="false" id="S0.Ex1.m1.8.8.3.2.2.1.1" xref="S0.Ex1.m1.8.8.3.2.1.cmml">(</mo>
            <mi id="S0.Ex1.m1.7.7" xref="S0.Ex1.m1.7.7.cmml">K</mi>
            <mo rspace="0.055em" stretchy="false" id="S0.Ex1.m1.8.8.3.2.2.1.2" xref="S0.Ex1.m1.8.8.3.2.1.cmml">)</mo>
          </mrow>
        </mrow>
        <mo rspace="0.222em" id="S0.Ex1.m1.8.8.3.1" xref="S0.Ex1.m1.8.8.3.1.cmml">×</mo>
        <mfrac id="S0.Ex1.m1.4.4" xref="S0.Ex1.m1.4.4.cmml">
          <mrow id="S0.Ex1.m1.2.2.2.2" xref="S0.Ex1.m1.2.2.2.3.cmml">
            <mi id="S0.Ex1.m1.1.1.1.1" xref="S0.Ex1.m1.1.1.1.1.cmml">Pr</mi>
            <mo id="S0.Ex1.m1.2.2.2.2a" xref="S0.Ex1.m1.2.2.2.3.cmml">⁡</mo>
            <mrow id="S0.Ex1.m1.2.2.2.2.1" xref="S0.Ex1.m1.2.2.2.3.cmml">
              <mo stretchy="false" id="S0.Ex1.m1.2.2.2.2.1.2" xref="S0.Ex1.m1.2.2.2.3.cmml">(</mo>
              <mrow id="S0.Ex1.m1.2.2.2.2.1.1" xref="S0.Ex1.m1.2.2.2.2.1.1.cmml">
                <mi id="S0.Ex1.m1.2.2.2.2.1.1.2" xref="S0.Ex1.m1.2.2.2.2.1.1.2.cmml">R</mi>
                <mo fence="false" id="S0.Ex1.m1.2.2.2.2.1.1.1" xref="S0.Ex1.m1.2.2.2.2.1.1.1.cmml">|</mo>
                <mi id="S0.Ex1.m1.2.2.2.2.1.1.3" xref="S0.Ex1.m1.2.2.2.2.1.1.3.cmml">K</mi>
              </mrow>
              <mo stretchy="false" id="S0.Ex1.m1.2.2.2.2.1.3" xref="S0.Ex1.m1.2.2.2.3.cmml">)</mo>
            </mrow>
          </mrow>
          <mrow id="S0.Ex1.m1.4.4.4.4" xref="S0.Ex1.m1.4.4.4.3.cmml">
            <mi id="S0.Ex1.m1.3.3.3.1" xref="S0.Ex1.m1.3.3.3.1.cmml">Pr</mi>
            <mo id="S0.Ex1.m1.4.4.4.4a" xref="S0.Ex1.m1.4.4.4.3.cmml">⁡</mo>
            <mrow id="S0.Ex1.m1.4.4.4.4.1" xref="S0.Ex1.m1.4.4.4.3.cmml">
              <mo stretchy="false" id="S0.Ex1.m1.4.4.4.4.1.1" xref="S0.Ex1.m1.4.4.4.3.cmml">(</mo>
              <mi id="S0.Ex1.m1.4.4.4.2" xref="S0.Ex1.m1.4.4.4.2.cmml">R</mi>
              <mo stretchy="false" id="S0.Ex1.m1.4.4.4.4.1.2" xref="S0.Ex1.m1.4.4.4.3.cmml">)</mo>
            </mrow>
          </mrow>
        </mfrac>
      </mrow>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="S0.Ex1.m1.8b">
      <apply id="S0.Ex1.m1.8.8.cmml" xref="S0.Ex1.m1.8.8">
        <eq id="S0.Ex1.m1.8.8.2.cmml" xref="S0.Ex1.m1.8.8.2"/>
        <apply id="S0.Ex1.m1.8.8.1.2.cmml" xref="S0.Ex1.m1.8.8.1.1">
          <ci id="S0.Ex1.m1.5.5.cmml" xref="S0.Ex1.m1.5.5">Pr</ci>
          <apply id="S0.Ex1.m1.8.8.1.1.1.1.cmml" xref="S0.Ex1.m1.8.8.1.1.1.1">
            <csymbol cd="latexml" id="S0.Ex1.m1.8.8.1.1.1.1.1.cmml" xref="S0.Ex1.m1.8.8.1.1.1.1.1">conditional</csymbol>
            <ci id="S0.Ex1.m1.8.8.1.1.1.1.2.cmml" xref="S0.Ex1.m1.8.8.1.1.1.1.2">𝐾</ci>
            <ci id="S0.Ex1.m1.8.8.1.1.1.1.3.cmml" xref="S0.Ex1.m1.8.8.1.1.1.1.3">𝑅</ci>
          </apply>
        </apply>
        <apply id="S0.Ex1.m1.8.8.3.cmml" xref="S0.Ex1.m1.8.8.3">
          <times id="S0.Ex1.m1.8.8.3.1.cmml" xref="S0.Ex1.m1.8.8.3.1"/>
          <apply id="S0.Ex1.m1.8.8.3.2.1.cmml" xref="S0.Ex1.m1.8.8.3.2.2">
            <ci id="S0.Ex1.m1.6.6.cmml" xref="S0.Ex1.m1.6.6">Pr</ci>
            <ci id="S0.Ex1.m1.7.7.cmml" xref="S0.Ex1.m1.7.7">𝐾</ci>
          </apply>
          <apply id="S0.Ex1.m1.4.4.cmml" xref="S0.Ex1.m1.4.4">
            <divide id="S0.Ex1.m1.4.4.5.cmml" xref="S0.Ex1.m1.4.4"/>
            <apply id="S0.Ex1.m1.2.2.2.3.cmml" xref="S0.Ex1.m1.2.2.2.2">
              <ci id="S0.Ex1.m1.1.1.1.1.cmml" xref="S0.Ex1.m1.1.1.1.1">Pr</ci>
              <apply id="S0.Ex1.m1.2.2.2.2.1.1.cmml" xref="S0.Ex1.m1.2.2.2.2.1.1">
                <csymbol cd="latexml" id="S0.Ex1.m1.2.2.2.2.1.1.1.cmml" xref="S0.Ex1.m1.2.2.2.2.1.1.1">conditional</csymbol>
                <ci id="S0.Ex1.m1.2.2.2.2.1.1.2.cmml" xref="S0.Ex1.m1.2.2.2.2.1.1.2">𝑅</ci>
                <ci id="S0.Ex1.m1.2.2.2.2.1.1.3.cmml" xref="S0.Ex1.m1.2.2.2.2.1.1.3">𝐾</ci>
              </apply>
            </apply>
            <apply id="S0.Ex1.m1.4.4.4.3.cmml" xref="S0.Ex1.m1.4.4.4.4">
              <ci id="S0.Ex1.m1.3.3.3.1.cmml" xref="S0.Ex1.m1.3.3.3.1">Pr</ci>
              <ci id="S0.Ex1.m1.4.4.4.2.cmml" xref="S0.Ex1.m1.4.4.4.2">𝑅</ci>
            </apply>
          </apply>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="S0.Ex1.m1.8c">\Pr(K|R)=\Pr(K)\times\frac{\Pr(R|K)}{\Pr(R)}</annotation>
  </semantics>
</math>

</p>

<p>
Since 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.2" class="ltx_Math" alttext="\Pr(K)" display="inline">
  <semantics id="p1.1.m1.2a">
    <mrow id="p1.1.m1.2.3.2" xref="p1.1.m1.2.3.1.cmml">
      <mi id="p1.1.m1.1.1" xref="p1.1.m1.1.1.cmml">Pr</mi>
      <mo id="p1.1.m1.2.3.2a" xref="p1.1.m1.2.3.1.cmml">⁡</mo>
      <mrow id="p1.1.m1.2.3.2.1" xref="p1.1.m1.2.3.1.cmml">
        <mo stretchy="false" id="p1.1.m1.2.3.2.1.1" xref="p1.1.m1.2.3.1.cmml">(</mo>
        <mi id="p1.1.m1.2.2" xref="p1.1.m1.2.2.cmml">K</mi>
        <mo stretchy="false" id="p1.1.m1.2.3.2.1.2" xref="p1.1.m1.2.3.1.cmml">)</mo>
      </mrow>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.2b">
      <apply id="p1.1.m1.2.3.1.cmml" xref="p1.1.m1.2.3.2">
        <ci id="p1.1.m1.1.1.cmml" xref="p1.1.m1.1.1">Pr</ci>
        <ci id="p1.1.m1.2.2.cmml" xref="p1.1.m1.2.2">𝐾</ci>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.2c">\Pr(K)</annotation>
  </semantics>
</math>
 is the same for both whites and blacks, we can safely ignore it when determining how much more likely a person is to be killed given that their race. We simply need to compare 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.4" class="ltx_Math" alttext="\frac{\Pr(W|K)}{\Pr(W)}" display="inline">
  <semantics id="p1.1.m1.4a">
    <mfrac id="p1.1.m1.4.4" xref="p1.1.m1.4.4.cmml">
      <mrow id="p1.1.m1.2.2.2.2" xref="p1.1.m1.2.2.2.3.cmml">
        <mi id="p1.1.m1.1.1.1.1" xref="p1.1.m1.1.1.1.1.cmml">Pr</mi>
        <mo id="p1.1.m1.2.2.2.2a" xref="p1.1.m1.2.2.2.3.cmml">⁡</mo>
        <mrow id="p1.1.m1.2.2.2.2.1" xref="p1.1.m1.2.2.2.3.cmml">
          <mo stretchy="false" id="p1.1.m1.2.2.2.2.1.2" xref="p1.1.m1.2.2.2.3.cmml">(</mo>
          <mrow id="p1.1.m1.2.2.2.2.1.1" xref="p1.1.m1.2.2.2.2.1.1.cmml">
            <mi id="p1.1.m1.2.2.2.2.1.1.2" xref="p1.1.m1.2.2.2.2.1.1.2.cmml">W</mi>
            <mo fence="false" id="p1.1.m1.2.2.2.2.1.1.1" xref="p1.1.m1.2.2.2.2.1.1.1.cmml">|</mo>
            <mi id="p1.1.m1.2.2.2.2.1.1.3" xref="p1.1.m1.2.2.2.2.1.1.3.cmml">K</mi>
          </mrow>
          <mo stretchy="false" id="p1.1.m1.2.2.2.2.1.3" xref="p1.1.m1.2.2.2.3.cmml">)</mo>
        </mrow>
      </mrow>
      <mrow id="p1.1.m1.4.4.4.4" xref="p1.1.m1.4.4.4.3.cmml">
        <mi id="p1.1.m1.3.3.3.1" xref="p1.1.m1.3.3.3.1.cmml">Pr</mi>
        <mo id="p1.1.m1.4.4.4.4a" xref="p1.1.m1.4.4.4.3.cmml">⁡</mo>
        <mrow id="p1.1.m1.4.4.4.4.1" xref="p1.1.m1.4.4.4.3.cmml">
          <mo stretchy="false" id="p1.1.m1.4.4.4.4.1.1" xref="p1.1.m1.4.4.4.3.cmml">(</mo>
          <mi id="p1.1.m1.4.4.4.2" xref="p1.1.m1.4.4.4.2.cmml">W</mi>
          <mo stretchy="false" id="p1.1.m1.4.4.4.4.1.2" xref="p1.1.m1.4.4.4.3.cmml">)</mo>
        </mrow>
      </mrow>
    </mfrac>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.4b">
      <apply id="p1.1.m1.4.4.cmml" xref="p1.1.m1.4.4">
        <divide id="p1.1.m1.4.4.5.cmml" xref="p1.1.m1.4.4"/>
        <apply id="p1.1.m1.2.2.2.3.cmml" xref="p1.1.m1.2.2.2.2">
          <ci id="p1.1.m1.1.1.1.1.cmml" xref="p1.1.m1.1.1.1.1">Pr</ci>
          <apply id="p1.1.m1.2.2.2.2.1.1.cmml" xref="p1.1.m1.2.2.2.2.1.1">
            <csymbol cd="latexml" id="p1.1.m1.2.2.2.2.1.1.1.cmml" xref="p1.1.m1.2.2.2.2.1.1.1">conditional</csymbol>
            <ci id="p1.1.m1.2.2.2.2.1.1.2.cmml" xref="p1.1.m1.2.2.2.2.1.1.2">𝑊</ci>
            <ci id="p1.1.m1.2.2.2.2.1.1.3.cmml" xref="p1.1.m1.2.2.2.2.1.1.3">𝐾</ci>
          </apply>
        </apply>
        <apply id="p1.1.m1.4.4.4.3.cmml" xref="p1.1.m1.4.4.4.4">
          <ci id="p1.1.m1.3.3.3.1.cmml" xref="p1.1.m1.3.3.3.1">Pr</ci>
          <ci id="p1.1.m1.4.4.4.2.cmml" xref="p1.1.m1.4.4.4.2">𝑊</ci>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.4c">\frac{\Pr(W|K)}{\Pr(W)}</annotation>
  </semantics>
</math>
 to 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.5" class="ltx_Math" alttext="\frac{\Pr(B)|(K)}{\Pr(B)}" display="inline">
  <semantics id="p1.1.m1.5a">
    <mfrac id="p1.1.m1.5.5" xref="p1.1.m1.5.5.cmml">
      <mrow id="p1.1.m1.3.3.3" xref="p1.1.m1.3.3.3.cmml">
        <mrow id="p1.1.m1.3.3.3.5.2" xref="p1.1.m1.3.3.3.5.1.cmml">
          <mi id="p1.1.m1.1.1.1.1" xref="p1.1.m1.1.1.1.1.cmml">Pr</mi>
          <mo id="p1.1.m1.3.3.3.5.2a" xref="p1.1.m1.3.3.3.5.1.cmml">⁡</mo>
          <mrow id="p1.1.m1.3.3.3.5.2.1" xref="p1.1.m1.3.3.3.5.1.cmml">
            <mo stretchy="false" id="p1.1.m1.3.3.3.5.2.1.1" xref="p1.1.m1.3.3.3.5.1.cmml">(</mo>
            <mi id="p1.1.m1.2.2.2.2" xref="p1.1.m1.2.2.2.2.cmml">B</mi>
            <mo stretchy="false" id="p1.1.m1.3.3.3.5.2.1.2" xref="p1.1.m1.3.3.3.5.1.cmml">)</mo>
          </mrow>
        </mrow>
        <mo fence="false" id="p1.1.m1.3.3.3.4" xref="p1.1.m1.3.3.3.4.cmml">|</mo>
        <mrow id="p1.1.m1.3.3.3.6.2" xref="p1.1.m1.3.3.3.cmml">
          <mo stretchy="false" id="p1.1.m1.3.3.3.6.2.1" xref="p1.1.m1.3.3.3.cmml">(</mo>
          <mi id="p1.1.m1.3.3.3.3" xref="p1.1.m1.3.3.3.3.cmml">K</mi>
          <mo stretchy="false" id="p1.1.m1.3.3.3.6.2.2" xref="p1.1.m1.3.3.3.cmml">)</mo>
        </mrow>
      </mrow>
      <mrow id="p1.1.m1.5.5.5.4" xref="p1.1.m1.5.5.5.3.cmml">
        <mi id="p1.1.m1.4.4.4.1" xref="p1.1.m1.4.4.4.1.cmml">Pr</mi>
        <mo id="p1.1.m1.5.5.5.4a" xref="p1.1.m1.5.5.5.3.cmml">⁡</mo>
        <mrow id="p1.1.m1.5.5.5.4.1" xref="p1.1.m1.5.5.5.3.cmml">
          <mo stretchy="false" id="p1.1.m1.5.5.5.4.1.1" xref="p1.1.m1.5.5.5.3.cmml">(</mo>
          <mi id="p1.1.m1.5.5.5.2" xref="p1.1.m1.5.5.5.2.cmml">B</mi>
          <mo stretchy="false" id="p1.1.m1.5.5.5.4.1.2" xref="p1.1.m1.5.5.5.3.cmml">)</mo>
        </mrow>
      </mrow>
    </mfrac>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.5b">
      <apply id="p1.1.m1.5.5.cmml" xref="p1.1.m1.5.5">
        <divide id="p1.1.m1.5.5.6.cmml" xref="p1.1.m1.5.5"/>
        <apply id="p1.1.m1.3.3.3.cmml" xref="p1.1.m1.3.3.3">
          <csymbol cd="latexml" id="p1.1.m1.3.3.3.4.cmml" xref="p1.1.m1.3.3.3.4">conditional</csymbol>
          <apply id="p1.1.m1.3.3.3.5.1.cmml" xref="p1.1.m1.3.3.3.5.2">
            <ci id="p1.1.m1.1.1.1.1.cmml" xref="p1.1.m1.1.1.1.1">Pr</ci>
            <ci id="p1.1.m1.2.2.2.2.cmml" xref="p1.1.m1.2.2.2.2">𝐵</ci>
          </apply>
          <ci id="p1.1.m1.3.3.3.3.cmml" xref="p1.1.m1.3.3.3.3">𝐾</ci>
        </apply>
        <apply id="p1.1.m1.5.5.5.3.cmml" xref="p1.1.m1.5.5.5.4">
          <ci id="p1.1.m1.4.4.4.1.cmml" xref="p1.1.m1.4.4.4.1">Pr</ci>
          <ci id="p1.1.m1.5.5.5.2.cmml" xref="p1.1.m1.5.5.5.2">𝐵</ci>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.5c">\frac{\Pr(B)|(K)}{\Pr(B)}</annotation>
  </semantics>
</math>
.
</p>

<p>

<math xmlns="http://www.w3.org/1998/Math/MathML" id="S0.Ex1.m1.4" class="ltx_Math" alttext="\frac{\Pr(W|K)}{\Pr(W)}=\frac{0.49}{0.62}=0.79" display="block">
  <semantics id="S0.Ex1.m1.4a">
    <mrow id="S0.Ex1.m1.4.5" xref="S0.Ex1.m1.4.5.cmml">
      <mfrac id="S0.Ex1.m1.4.4" xref="S0.Ex1.m1.4.4.cmml">
        <mrow id="S0.Ex1.m1.2.2.2.2" xref="S0.Ex1.m1.2.2.2.3.cmml">
          <mi id="S0.Ex1.m1.1.1.1.1" xref="S0.Ex1.m1.1.1.1.1.cmml">Pr</mi>
          <mo id="S0.Ex1.m1.2.2.2.2a" xref="S0.Ex1.m1.2.2.2.3.cmml">⁡</mo>
          <mrow id="S0.Ex1.m1.2.2.2.2.1" xref="S0.Ex1.m1.2.2.2.3.cmml">
            <mo stretchy="false" id="S0.Ex1.m1.2.2.2.2.1.2" xref="S0.Ex1.m1.2.2.2.3.cmml">(</mo>
            <mrow id="S0.Ex1.m1.2.2.2.2.1.1" xref="S0.Ex1.m1.2.2.2.2.1.1.cmml">
              <mi id="S0.Ex1.m1.2.2.2.2.1.1.2" xref="S0.Ex1.m1.2.2.2.2.1.1.2.cmml">W</mi>
              <mo fence="false" id="S0.Ex1.m1.2.2.2.2.1.1.1" xref="S0.Ex1.m1.2.2.2.2.1.1.1.cmml">|</mo>
              <mi id="S0.Ex1.m1.2.2.2.2.1.1.3" xref="S0.Ex1.m1.2.2.2.2.1.1.3.cmml">K</mi>
            </mrow>
            <mo stretchy="false" id="S0.Ex1.m1.2.2.2.2.1.3" xref="S0.Ex1.m1.2.2.2.3.cmml">)</mo>
          </mrow>
        </mrow>
        <mrow id="S0.Ex1.m1.4.4.4.4" xref="S0.Ex1.m1.4.4.4.3.cmml">
          <mi id="S0.Ex1.m1.3.3.3.1" xref="S0.Ex1.m1.3.3.3.1.cmml">Pr</mi>
          <mo id="S0.Ex1.m1.4.4.4.4a" xref="S0.Ex1.m1.4.4.4.3.cmml">⁡</mo>
          <mrow id="S0.Ex1.m1.4.4.4.4.1" xref="S0.Ex1.m1.4.4.4.3.cmml">
            <mo stretchy="false" id="S0.Ex1.m1.4.4.4.4.1.1" xref="S0.Ex1.m1.4.4.4.3.cmml">(</mo>
            <mi id="S0.Ex1.m1.4.4.4.2" xref="S0.Ex1.m1.4.4.4.2.cmml">W</mi>
            <mo stretchy="false" id="S0.Ex1.m1.4.4.4.4.1.2" xref="S0.Ex1.m1.4.4.4.3.cmml">)</mo>
          </mrow>
        </mrow>
      </mfrac>
      <mo id="S0.Ex1.m1.4.5.2" xref="S0.Ex1.m1.4.5.2.cmml">=</mo>
      <mfrac id="S0.Ex1.m1.4.5.3" xref="S0.Ex1.m1.4.5.3.cmml">
        <mn id="S0.Ex1.m1.4.5.3.2" xref="S0.Ex1.m1.4.5.3.2.cmml">0.49</mn>
        <mn id="S0.Ex1.m1.4.5.3.3" xref="S0.Ex1.m1.4.5.3.3.cmml">0.62</mn>
      </mfrac>
      <mo id="S0.Ex1.m1.4.5.4" xref="S0.Ex1.m1.4.5.4.cmml">=</mo>
      <mn id="S0.Ex1.m1.4.5.5" xref="S0.Ex1.m1.4.5.5.cmml">0.79</mn>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="S0.Ex1.m1.4b">
      <apply id="S0.Ex1.m1.4.5.cmml" xref="S0.Ex1.m1.4.5">
        <and id="S0.Ex1.m1.4.5a.cmml" xref="S0.Ex1.m1.4.5"/>
        <apply id="S0.Ex1.m1.4.5b.cmml" xref="S0.Ex1.m1.4.5">
          <eq id="S0.Ex1.m1.4.5.2.cmml" xref="S0.Ex1.m1.4.5.2"/>
          <apply id="S0.Ex1.m1.4.4.cmml" xref="S0.Ex1.m1.4.4">
            <divide id="S0.Ex1.m1.4.4.5.cmml" xref="S0.Ex1.m1.4.4"/>
            <apply id="S0.Ex1.m1.2.2.2.3.cmml" xref="S0.Ex1.m1.2.2.2.2">
              <ci id="S0.Ex1.m1.1.1.1.1.cmml" xref="S0.Ex1.m1.1.1.1.1">Pr</ci>
              <apply id="S0.Ex1.m1.2.2.2.2.1.1.cmml" xref="S0.Ex1.m1.2.2.2.2.1.1">
                <csymbol cd="latexml" id="S0.Ex1.m1.2.2.2.2.1.1.1.cmml" xref="S0.Ex1.m1.2.2.2.2.1.1.1">conditional</csymbol>
                <ci id="S0.Ex1.m1.2.2.2.2.1.1.2.cmml" xref="S0.Ex1.m1.2.2.2.2.1.1.2">𝑊</ci>
                <ci id="S0.Ex1.m1.2.2.2.2.1.1.3.cmml" xref="S0.Ex1.m1.2.2.2.2.1.1.3">𝐾</ci>
              </apply>
            </apply>
            <apply id="S0.Ex1.m1.4.4.4.3.cmml" xref="S0.Ex1.m1.4.4.4.4">
              <ci id="S0.Ex1.m1.3.3.3.1.cmml" xref="S0.Ex1.m1.3.3.3.1">Pr</ci>
              <ci id="S0.Ex1.m1.4.4.4.2.cmml" xref="S0.Ex1.m1.4.4.4.2">𝑊</ci>
            </apply>
          </apply>
          <apply id="S0.Ex1.m1.4.5.3.cmml" xref="S0.Ex1.m1.4.5.3">
            <divide id="S0.Ex1.m1.4.5.3.1.cmml" xref="S0.Ex1.m1.4.5.3"/>
            <cn type="float" id="S0.Ex1.m1.4.5.3.2.cmml" xref="S0.Ex1.m1.4.5.3.2">0.49</cn>
            <cn type="float" id="S0.Ex1.m1.4.5.3.3.cmml" xref="S0.Ex1.m1.4.5.3.3">0.62</cn>
          </apply>
        </apply>
        <apply id="S0.Ex1.m1.4.5c.cmml" xref="S0.Ex1.m1.4.5">
          <eq id="S0.Ex1.m1.4.5.4.cmml" xref="S0.Ex1.m1.4.5.4"/>
          <share href="#S0.Ex1.m1.4.5.3.cmml" id="S0.Ex1.m1.4.5d.cmml" xref="S0.Ex1.m1.4.5"/>
          <cn type="float" id="S0.Ex1.m1.4.5.5.cmml" xref="S0.Ex1.m1.4.5.5">0.79</cn>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="S0.Ex1.m1.4c">\frac{\Pr(W|K)}{\Pr(W)}=\frac{0.49}{0.62}=0.79</annotation>
  </semantics>
</math>

</p>

<p>
On the other hand,
</p>

<p>

<math xmlns="http://www.w3.org/1998/Math/MathML" id="S0.Ex1.m1.4" class="ltx_Math" alttext="\frac{\Pr(B|K)}{\Pr(B)}=\frac{0.24}{0.13}=1.84" display="block">
  <semantics id="S0.Ex1.m1.4a">
    <mrow id="S0.Ex1.m1.4.5" xref="S0.Ex1.m1.4.5.cmml">
      <mfrac id="S0.Ex1.m1.4.4" xref="S0.Ex1.m1.4.4.cmml">
        <mrow id="S0.Ex1.m1.2.2.2.2" xref="S0.Ex1.m1.2.2.2.3.cmml">
          <mi id="S0.Ex1.m1.1.1.1.1" xref="S0.Ex1.m1.1.1.1.1.cmml">Pr</mi>
          <mo id="S0.Ex1.m1.2.2.2.2a" xref="S0.Ex1.m1.2.2.2.3.cmml">⁡</mo>
          <mrow id="S0.Ex1.m1.2.2.2.2.1" xref="S0.Ex1.m1.2.2.2.3.cmml">
            <mo stretchy="false" id="S0.Ex1.m1.2.2.2.2.1.2" xref="S0.Ex1.m1.2.2.2.3.cmml">(</mo>
            <mrow id="S0.Ex1.m1.2.2.2.2.1.1" xref="S0.Ex1.m1.2.2.2.2.1.1.cmml">
              <mi id="S0.Ex1.m1.2.2.2.2.1.1.2" xref="S0.Ex1.m1.2.2.2.2.1.1.2.cmml">B</mi>
              <mo fence="false" id="S0.Ex1.m1.2.2.2.2.1.1.1" xref="S0.Ex1.m1.2.2.2.2.1.1.1.cmml">|</mo>
              <mi id="S0.Ex1.m1.2.2.2.2.1.1.3" xref="S0.Ex1.m1.2.2.2.2.1.1.3.cmml">K</mi>
            </mrow>
            <mo stretchy="false" id="S0.Ex1.m1.2.2.2.2.1.3" xref="S0.Ex1.m1.2.2.2.3.cmml">)</mo>
          </mrow>
        </mrow>
        <mrow id="S0.Ex1.m1.4.4.4.4" xref="S0.Ex1.m1.4.4.4.3.cmml">
          <mi id="S0.Ex1.m1.3.3.3.1" xref="S0.Ex1.m1.3.3.3.1.cmml">Pr</mi>
          <mo id="S0.Ex1.m1.4.4.4.4a" xref="S0.Ex1.m1.4.4.4.3.cmml">⁡</mo>
          <mrow id="S0.Ex1.m1.4.4.4.4.1" xref="S0.Ex1.m1.4.4.4.3.cmml">
            <mo stretchy="false" id="S0.Ex1.m1.4.4.4.4.1.1" xref="S0.Ex1.m1.4.4.4.3.cmml">(</mo>
            <mi id="S0.Ex1.m1.4.4.4.2" xref="S0.Ex1.m1.4.4.4.2.cmml">B</mi>
            <mo stretchy="false" id="S0.Ex1.m1.4.4.4.4.1.2" xref="S0.Ex1.m1.4.4.4.3.cmml">)</mo>
          </mrow>
        </mrow>
      </mfrac>
      <mo id="S0.Ex1.m1.4.5.2" xref="S0.Ex1.m1.4.5.2.cmml">=</mo>
      <mfrac id="S0.Ex1.m1.4.5.3" xref="S0.Ex1.m1.4.5.3.cmml">
        <mn id="S0.Ex1.m1.4.5.3.2" xref="S0.Ex1.m1.4.5.3.2.cmml">0.24</mn>
        <mn id="S0.Ex1.m1.4.5.3.3" xref="S0.Ex1.m1.4.5.3.3.cmml">0.13</mn>
      </mfrac>
      <mo id="S0.Ex1.m1.4.5.4" xref="S0.Ex1.m1.4.5.4.cmml">=</mo>
      <mn id="S0.Ex1.m1.4.5.5" xref="S0.Ex1.m1.4.5.5.cmml">1.84</mn>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="S0.Ex1.m1.4b">
      <apply id="S0.Ex1.m1.4.5.cmml" xref="S0.Ex1.m1.4.5">
        <and id="S0.Ex1.m1.4.5a.cmml" xref="S0.Ex1.m1.4.5"/>
        <apply id="S0.Ex1.m1.4.5b.cmml" xref="S0.Ex1.m1.4.5">
          <eq id="S0.Ex1.m1.4.5.2.cmml" xref="S0.Ex1.m1.4.5.2"/>
          <apply id="S0.Ex1.m1.4.4.cmml" xref="S0.Ex1.m1.4.4">
            <divide id="S0.Ex1.m1.4.4.5.cmml" xref="S0.Ex1.m1.4.4"/>
            <apply id="S0.Ex1.m1.2.2.2.3.cmml" xref="S0.Ex1.m1.2.2.2.2">
              <ci id="S0.Ex1.m1.1.1.1.1.cmml" xref="S0.Ex1.m1.1.1.1.1">Pr</ci>
              <apply id="S0.Ex1.m1.2.2.2.2.1.1.cmml" xref="S0.Ex1.m1.2.2.2.2.1.1">
                <csymbol cd="latexml" id="S0.Ex1.m1.2.2.2.2.1.1.1.cmml" xref="S0.Ex1.m1.2.2.2.2.1.1.1">conditional</csymbol>
                <ci id="S0.Ex1.m1.2.2.2.2.1.1.2.cmml" xref="S0.Ex1.m1.2.2.2.2.1.1.2">𝐵</ci>
                <ci id="S0.Ex1.m1.2.2.2.2.1.1.3.cmml" xref="S0.Ex1.m1.2.2.2.2.1.1.3">𝐾</ci>
              </apply>
            </apply>
            <apply id="S0.Ex1.m1.4.4.4.3.cmml" xref="S0.Ex1.m1.4.4.4.4">
              <ci id="S0.Ex1.m1.3.3.3.1.cmml" xref="S0.Ex1.m1.3.3.3.1">Pr</ci>
              <ci id="S0.Ex1.m1.4.4.4.2.cmml" xref="S0.Ex1.m1.4.4.4.2">𝐵</ci>
            </apply>
          </apply>
          <apply id="S0.Ex1.m1.4.5.3.cmml" xref="S0.Ex1.m1.4.5.3">
            <divide id="S0.Ex1.m1.4.5.3.1.cmml" xref="S0.Ex1.m1.4.5.3"/>
            <cn type="float" id="S0.Ex1.m1.4.5.3.2.cmml" xref="S0.Ex1.m1.4.5.3.2">0.24</cn>
            <cn type="float" id="S0.Ex1.m1.4.5.3.3.cmml" xref="S0.Ex1.m1.4.5.3.3">0.13</cn>
          </apply>
        </apply>
        <apply id="S0.Ex1.m1.4.5c.cmml" xref="S0.Ex1.m1.4.5">
          <eq id="S0.Ex1.m1.4.5.4.cmml" xref="S0.Ex1.m1.4.5.4"/>
          <share href="#S0.Ex1.m1.4.5.3.cmml" id="S0.Ex1.m1.4.5d.cmml" xref="S0.Ex1.m1.4.5"/>
          <cn type="float" id="S0.Ex1.m1.4.5.5.cmml" xref="S0.Ex1.m1.4.5.5">1.84</cn>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="S0.Ex1.m1.4c">\frac{\Pr(B|K)}{\Pr(B)}=\frac{0.24}{0.13}=1.84</annotation>
  </semantics>
</math>

</p>

<p>
That is, a person that is an African-American is 2.34 times more likely to be killed by police than a White-American.
</p>

<p>
All lives do indeed, objectively, equally matter. Unfortunately, though, we must confess that America has a history of black lives not mattering subjectively to those who have held social power. When a truth has been ignored, even suppressed, for so long, it must be emphasized to gain its rightful standing in our social reality. To do otherwise, that is to simply say &ldquo;All lives matter,&rdquo; is to maintain an unjust status quo that serves the interests of some, but not all Americans.
</p>

<p>
<b>UPDATE (October  2, 2016)</b>: I want to be careful to note what I am arguing here, and more importantly what I am <i>not</i> arguing. I am merely pointing out the fairly trivial claim that 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.2" class="ltx_Math" alttext="\Pr(A|B)" display="inline">
  <semantics id="p1.1.m1.2a">
    <mrow id="p1.1.m1.2.2.1" xref="p1.1.m1.2.2.2.cmml">
      <mi id="p1.1.m1.1.1" xref="p1.1.m1.1.1.cmml">Pr</mi>
      <mo id="p1.1.m1.2.2.1a" xref="p1.1.m1.2.2.2.cmml">⁡</mo>
      <mrow id="p1.1.m1.2.2.1.1" xref="p1.1.m1.2.2.2.cmml">
        <mo stretchy="false" id="p1.1.m1.2.2.1.1.2" xref="p1.1.m1.2.2.2.cmml">(</mo>
        <mrow id="p1.1.m1.2.2.1.1.1" xref="p1.1.m1.2.2.1.1.1.cmml">
          <mi id="p1.1.m1.2.2.1.1.1.2" xref="p1.1.m1.2.2.1.1.1.2.cmml">A</mi>
          <mo fence="false" id="p1.1.m1.2.2.1.1.1.1" xref="p1.1.m1.2.2.1.1.1.1.cmml">|</mo>
          <mi id="p1.1.m1.2.2.1.1.1.3" xref="p1.1.m1.2.2.1.1.1.3.cmml">B</mi>
        </mrow>
        <mo stretchy="false" id="p1.1.m1.2.2.1.1.3" xref="p1.1.m1.2.2.2.cmml">)</mo>
      </mrow>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.2b">
      <apply id="p1.1.m1.2.2.2.cmml" xref="p1.1.m1.2.2.1">
        <ci id="p1.1.m1.1.1.cmml" xref="p1.1.m1.1.1">Pr</ci>
        <apply id="p1.1.m1.2.2.1.1.1.cmml" xref="p1.1.m1.2.2.1.1.1">
          <csymbol cd="latexml" id="p1.1.m1.2.2.1.1.1.1.cmml" xref="p1.1.m1.2.2.1.1.1.1">conditional</csymbol>
          <ci id="p1.1.m1.2.2.1.1.1.2.cmml" xref="p1.1.m1.2.2.1.1.1.2">𝐴</ci>
          <ci id="p1.1.m1.2.2.1.1.1.3.cmml" xref="p1.1.m1.2.2.1.1.1.3">𝐵</ci>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.2c">\Pr(A|B)</annotation>
  </semantics>
</math>
 does not necessarily equal 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.2" class="ltx_Math" alttext="\Pr(B|A)" display="inline">
  <semantics id="p1.1.m1.2a">
    <mrow id="p1.1.m1.2.2.1" xref="p1.1.m1.2.2.2.cmml">
      <mi id="p1.1.m1.1.1" xref="p1.1.m1.1.1.cmml">Pr</mi>
      <mo id="p1.1.m1.2.2.1a" xref="p1.1.m1.2.2.2.cmml">⁡</mo>
      <mrow id="p1.1.m1.2.2.1.1" xref="p1.1.m1.2.2.2.cmml">
        <mo stretchy="false" id="p1.1.m1.2.2.1.1.2" xref="p1.1.m1.2.2.2.cmml">(</mo>
        <mrow id="p1.1.m1.2.2.1.1.1" xref="p1.1.m1.2.2.1.1.1.cmml">
          <mi id="p1.1.m1.2.2.1.1.1.2" xref="p1.1.m1.2.2.1.1.1.2.cmml">B</mi>
          <mo fence="false" id="p1.1.m1.2.2.1.1.1.1" xref="p1.1.m1.2.2.1.1.1.1.cmml">|</mo>
          <mi id="p1.1.m1.2.2.1.1.1.3" xref="p1.1.m1.2.2.1.1.1.3.cmml">A</mi>
        </mrow>
        <mo stretchy="false" id="p1.1.m1.2.2.1.1.3" xref="p1.1.m1.2.2.2.cmml">)</mo>
      </mrow>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.2b">
      <apply id="p1.1.m1.2.2.2.cmml" xref="p1.1.m1.2.2.1">
        <ci id="p1.1.m1.1.1.cmml" xref="p1.1.m1.1.1">Pr</ci>
        <apply id="p1.1.m1.2.2.1.1.1.cmml" xref="p1.1.m1.2.2.1.1.1">
          <csymbol cd="latexml" id="p1.1.m1.2.2.1.1.1.1.cmml" xref="p1.1.m1.2.2.1.1.1.1">conditional</csymbol>
          <ci id="p1.1.m1.2.2.1.1.1.2.cmml" xref="p1.1.m1.2.2.1.1.1.2">𝐵</ci>
          <ci id="p1.1.m1.2.2.1.1.1.3.cmml" xref="p1.1.m1.2.2.1.1.1.3">𝐴</ci>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.2c">\Pr(B|A)</annotation>
  </semantics>
</math>
, and, in this case, actually does not.
</p>

<p>
I am not accusing the police of being racist, and I have not endeavored to show that anyone has been unjustly shot. I am simply showing that, even though more white Americans are killed by police, black Americans are more likely to be killed by police. There are many possible explanations for this, ranging from racial bias in the police force to high rates of violent crime in predominately African-American communities. There are significant studies that conclude that the former is more likely than the latter to be the correct explanation, but that will have to wait for another post.
</p>

<div class="tagline" id="orgb1a09cb">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/critical-thinking.html">Critical Thinking</a> <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Wesley Lowery, <a href="https://www.washingtonpost.com/news/post-nation/wp/2016/07/11/arent-more-white-people-than-black-people-killed-by-police-yes-but-no/?utm_term=.6664411d9967&amp;wpisrc=nl_most&amp;wpmm=1"><i>The Washington Post</i></a>, July 11, 2016.
critical-thinking
politics
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Thomas the Faithful</title>
<link>https://randyridenour.net/posts/2016-03-29-thomas-the-faithful.html</link>
<pubDate>Tue, 29 Mar 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-03-29-thomas-the-faithful.html</guid>
<description>
<![CDATA[<p>
Lord Jesus,
</p>

<p>
You warned the disciples<br>
to be wary of claims<br>
that the messiah had come.<br>
You said, &ldquo;When told<br>
he is in the inner rooms,<br>
do not believe it.&rdquo;
</p>

<p>
When Thomas was told<br>
that you appeared<br>
in the inner rooms,<br>
he heeded your word<br>
and did not believe it<br>
until he saw for himself.
</p>

<p>
And of those who claim<br>
to have special insight<br>
of your will for us,<br>
may we be like Thomas,<br>
the skeptical and<br>
obedient disciple.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org59e7edc">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Cross-Shattered Christ, Chapter 5</title>
<link>https://randyridenour.net/posts/2015-03-27-the-crossshattered-christ-chapter-5.html</link>
<pubDate>Fri, 27 Mar 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-03-27-the-crossshattered-christ-chapter-5.html</guid>
<description>
<![CDATA[<p>
It is telling that the cry from the cross, &ldquo;My God, my God, why have you forsaken me?&rdquo; is followed by the simple declaration, &ldquo;I thirst.&rdquo; We thirst for God, not because God has forsaken us, nor because we have forsaken God. We simply thirst for God — we thirst for God&rsquo;s mercy, we thirst for God&rsquo;s justice in this world, we thirst to be loved by God&rsquo;s people as God loves us. Relief from that thirst is &ldquo;&hellip;found in the body and blood of our Lord that forever slakes our thirst. So refreshed, we become for the world the reminder that God has not abandoned us&hellip;.&rdquo;<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>


<div class="tagline" id="org9dcf855">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Hauerwas, Stanley (2005-01-01). <i>Cross-Shattered Christ: Meditations on the Seven Last Words</i> (p. 69). Baker Publishing Group. Kindle Edition.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Exactly</title>
<link>https://randyridenour.net/posts/2011-06-14-we-should-have-much-peace-if-we-would-not-busy.html</link>
<pubDate>Tue, 14 Jun 2011 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2011-06-14-we-should-have-much-peace-if-we-would-not-busy.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
We should have much peace if we would not busy ourselves with the sayings and doings of others.
</p>
</blockquote>

<p class="bigquote">
Thomas à Kempis
</p>

<p>
There&rsquo;s no need to point out the irony of posting this.
</p>




<div class="tagline" id="org45b9f8a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Thoughts on Maundy Thursday</title>
<link>https://randyridenour.net/posts/2017-04-13-maundy-thursday.html</link>
<pubDate>Thu, 13 Apr 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-04-13-maundy-thursday.html</guid>
<description>
<![CDATA[<p>
This day of the church calendar, Maundy Thursday, gets its name from John 13:34, which, in the Latin Vulgate, begins with &ldquo;mandatum novum&rdquo; — a new commandment. After washing the feet of the disciples earlier in chapter 13, Jesus told them,
</p>

<blockquote>
<p>
I give you a new commandment, that you love one another. Just as I have loved you, you also should love one another. By this everyone will know that you are my disciples, if you have love for one another.
</p>
</blockquote>

<p>
A commandment to love, though, should strike us as odd, because we generally think of love as a feeling or emotion. It makes no sense to command a feeling or emotion, however, for those are not within our immediate control. We can only be commanded to act. So, unless Jesus&rsquo; command is simply pointless, love must be a way of acting, or living as Jesus lived; in his words, &ldquo;For I have set you an example, that you also should do as I have done to you.&rdquo; (John 13:15)
</p>

<p>
I have good reason to continue to think of love as just an emotion. By thinking of love as a feeling, I avoid having to keep the commandment to love. So, I have taken something that I simply do not want to do, and turned it into something that is impossible for me to do. As long as I pretend it is impossible, I can deny that there is any obligation to keep the commandment. That way, I can go on loving only those whom I like, and thus continue to rest comfortably in my own self-righteousness.
</p>

<p>
May God forgive me.
</p>



<div class="tagline" id="org08a0cc5">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Political Parties and the Church</title>
<link>https://randyridenour.net/posts/2025-10-20-political-parties-church.html</link>
<pubDate>Mon, 20 Oct 2025 05:34:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-10-20-political-parties-church.html</guid>
<description>
<![CDATA[<p>
In his Baptist News Global piece, &ldquo;<a href="https://baptistnews.com/article/heres-what-the-churches-of-christ-and-maga-have-in-common/">Here’s what the Churches of Christ and MAGA have in common</a>,&rdquo; Richard T. Hughes writes:
</p>

<blockquote>
<p>
The problem would be just as acute had Churches of Christ been captured by Democratic as opposed to Republican interests since both parties — indeed, all political parties — are wed to the right-side-up interests of power, wealth and control. Disciples of Jesus, however, pledge allegiance to the upside-down kingdom of God where they serve the least of these, place the interests of others above their own, and stand in solidarity with oppressed and marginalized people.
</p>
</blockquote>

<p>
Hughes is speaking about the Churches of Christ, but it is true of all Christian denominations. It is tempting to align ourselves with a political party in order to use that party as a tool of the gospel, but the inevitable consequence is that the resulting perversion of the gospel instead becomes a tool that the party uses to maintain power.
</p>

<p>
We have but one Lord and one King, Jesus Christ.
</p>

<div class="tagline" id="org14f9e60">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Go to Your Pastor for Depression?</title>
<link>https://randyridenour.net/posts/2015-08-13-go-to-your-pastor-for-depression.html</link>
<pubDate>Thu, 13 Aug 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-08-13-go-to-your-pastor-for-depression.html</guid>
<description>
<![CDATA[<p>
Glennon Doyle Melton at <a href="http://momastery.com/blog/">momastery.com</a> posted an article with the provocative title, &ldquo;<a href="http://momastery.com/blog/2015/08/12/ministers-depression/?utm_content=bufferff8d8&amp;utm_medium=social&amp;utm_source=twitter.com&amp;utm_campaign=buffer">If You Wouldn’t Go to Your Minister for a Mammogram, Don’t Go for Depression</a>.&rdquo; In it, she makes the important point that there are those in Christian communities that advocate treatment of depression through prayer alone, refusing to see it as a medical condition, yet those same people would not treat cancer simply with prayer. In this, I wholeheartedly agree. Ministers harm those whom they counsel when they do not urge them to seek medical help for mental illness.
</p>

<p>
At the same time, though, I think the title of the post does a disservice to those who might read it. First, recognize that the analogy is particularly weak. Depression is a condition, a mammogram is a diagnostic tool. A better analogy would be this, &ldquo;If you wouldn&rsquo;t go to your minister because you have cancer, don&rsquo;t go because you have depression.&rdquo; So, the question, then, should be &ldquo;Would you go to your minister if you had cancer?&rdquo; I certainly hope that the answer is yes; cancer may not be a spiritual condition, but surely having cancer affects one&rsquo;s spirit, and the patient should get as much support as she can. In the same way, having depression affects one&rsquo;s spirit, and support from a caring pastoral counselor should be valued.
</p>

<p>
Is pastoral counseling good treatment for the depression itself? No, but then again, neither is a mammogram good treatment for cancer.
</p>


<div class="tagline" id="org10455df">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/critical-thinking.html">Critical-Thinking</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>When the Idols are Destroyed</title>
<link>https://randyridenour.net/posts/2017-10-24-when-the-idols-are-destroyed.html</link>
<pubDate>Tue, 24 Oct 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-10-24-when-the-idols-are-destroyed.html</guid>
<description>
<![CDATA[<p>
Holy God,
</p>

<p>
We come to you bearing many things.  
Some are burdens, but others are idols:
</p>

<p>
The idol of superiority,
</p>

<p>
The idol of certainty,
</p>

<p>
The idol of believing that   
we are the gatekeepers to your kingdom,
</p>

<p>
The idol of making the gospel   
an object of mere belief,  
and not a way of life.
</p>

<p>
But when the burdens are lifted,  
and the idols are destroyed,  
What remains is truly precious:
</p>

<p>
Women and men in community,  
Gifted people of all ages  
working together so that  
your kingdom may come,  
and your will be done  
even here, even now.
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="org8a832b3">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>On Christian Unity</title>
<link>https://randyridenour.net/posts/2016-11-23-on-unity.html</link>
<pubDate>Wed, 23 Nov 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-11-23-on-unity.html</guid>
<description>
<![CDATA[<p>
Comedian Emo Phillips is credited with writing this classic – voted in a recent contest as the best religious joke of all time.
</p>

<blockquote>
<p>
Once I saw this guy on a bridge about to jump. I said, &ldquo;Don&rsquo;t do it!&rdquo; He said, &ldquo;Nobody loves me.&rdquo; I said, &ldquo;God loves you. Do you believe in God?&rdquo;
</p>

<p>
He said, &ldquo;Yes.&rdquo; I said, &ldquo;Are you a Christian or a Jew?&rdquo; He said, &ldquo;A Christian.&rdquo; I said, &ldquo;Me, too! Protestant or Catholic?&rdquo; He said, &ldquo;Protestant.&rdquo; I said, &ldquo;Me, too! What denomination?&rdquo; He said, &ldquo;Baptist.&rdquo; I said, &ldquo;Me, too! Northern Baptist or Southern Baptist?&rdquo; He said, &ldquo;Northern Baptist.&rdquo; I said, &ldquo;Me, too! Northern Conservative Baptist or Northern Liberal Baptist?&rdquo;
</p>

<p>
He said, &ldquo;Northern Conservative Baptist.&rdquo; I said, &ldquo;Me, too! Northern Conservative Baptist Great Lakes Region, or Northern Conservative Baptist Eastern Region?&rdquo; He said, &ldquo;Northern Conservative Baptist Great Lakes Region.&rdquo; I said, &ldquo;Me, too!&rdquo;
</p>

<p>
Northern Conservative Baptist Great Lakes Region Council of 1879, or Northern Conservative Baptist Great Lakes Region Council of 1912?&ldquo; He said, &rdquo;Northern Conservative Baptist Great Lakes Region Council of 1912.&ldquo; I said, &rdquo;Die, heretic!" And I pushed him over.
</p>
</blockquote>

<p>
It’s a funny joke, and like most good jokes, it captures something true, in this case disturbingly true, about our history as Christians. Today, according to <i>Oxford’s World Christian Encyclopedia</i>, there are over 33,000 Christian denominations in the world. This is partly a sign of healthy diversity, but it&rsquo;s also a sign of some deeply unhealthy divisions.
</p>

<p>
The first three verses of Ephesians 4<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> contain this beautiful plea for Christian unity:
</p>

<p>
Therefore, as a prisoner for the Lord, I encourage you to live as people worthy of the call you received from God. Conduct yourselves with all humility, gentleness, and patience. Accept each other with love, and make an effort to preserve the unity of the Spirit with the peace that ties you together. (Eph. 4:1-3)
</p>

<p>
Eight verses later, Paul speaks of another kind of unity that Paul calls unity of faith:
</p>

<p>
He gave some apostles, some prophets, some evangelists, and some pastors and teachers. His purpose was to equip God’s people for the work of serving and building up the body of Christ until we all reach the unity of faith and knowledge of God’s Son. (Eph. 4:11-13a)
</p>

<p>
The unity of the Spirit is something that we are to work towards now, while unity of faith and knowledge appears to be eschatological — something that we will have in the end. We continue to exclude more and more people from our various groups, acting as if cooperation and fellowship require doctrinal unity. Paul&rsquo;s charge to preserve the unity of Spirit assumes disagreement, otherwise there is no need to urge patience.<sup><a id="fnr.2" class="footref" href="#fn.2" role="doc-backlink">2</a></sup>
</p>

<p>
When we exclude, we show pride, impatience, and hardness of spirit, not the humility, gentleness, and patience of Paul&rsquo;s mandate. In the end, we sacrifice the thing that Paul urges us to protect, for the sake of something that we cannot yet have. We either demonstrate intolerance, or, at best, show tolerance from a distance. Neither is the love that Christ commanded.
</p>


<div class="tagline" id="org597c199">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
All Scripture references are from the <i>Common English Bible</i>.
</p></div></div>

<div class="footdef"><sup><a id="fn.2" class="footnum" href="#fnr.2" role="doc-backlink">2</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
This is a point made by Larry Hurtado in <a href="https://homebrewedchristianity.com/2016/11/04/destroyer-of-the-gods-larry-hurtado-talks-early-church-distinctiveness/">[https://homebrewedchristianity.com][this episode</a> of Tripp Fuller&rsquo;s excellent podcast, <i>Homebrewed Christianity</i>.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Costa Rica</title>
<link>https://randyridenour.net/posts/2008-06-01-costa-rica-2.html</link>
<pubDate>Sun, 01 Jun 2008 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2008-06-01-costa-rica-2.html</guid>
<description>
<![CDATA[<p>
We had a wonderful week in Costa Rica. It is a beautiful country filled with charming people. We had a tour of the rain forest canopy and two bus trips through the countryside. If you ever plan a trip to Costa Rica, consider avoiding the rainy season. It did rain every day while we were there, but cleared up beautifully, of course, on the day that we left.
</p>

<p>
While we were on the bus traveling to the rain forest, our guide, Oliver, gave us a lesson on the history, geography, and culture of the country. Two things that he was particularly proud of were that the country has no army and that they have more teachers than police. Speaking of human rights in Costa Rica and the lack of class conflict, he said &ldquo;We were lucky to be a poor country.&rdquo; I found his comment to be particularly striking. Why does this country develop into a stable and prosperous one that is free from both internal and external conflict? Oliver implies that it is because they didn&rsquo;t have anything that the developed world really wanted.
</p>

<p>
Things could be changing, both for us and the rest of the world, though. In this interesting piece in today&rsquo;s <i>New York Times</i>, <a href="http://www.nytimes.com/2008/06/02/opinion/l02cohen.html?th&amp;amp;emc=th">Roger Cohen</a> points out that two-thirds of last year&rsquo;s economic growth was in the developing world. This could indeed be a reversal of fortune.
</p>


<div class="tagline" id="org9b475ac">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>More Figurines</title>
<link>https://randyridenour.net/posts/2009-09-24-another-package-arrived-in-the-mail-today-wrapped.html</link>
<pubDate>Thu, 24 Sep 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-09-24-another-package-arrived-in-the-mail-today-wrapped.html</guid>
<description>
<![CDATA[<p>
Another package arrived in the mail today, wrapped in tissue paper with my address scrawled in permanent marker. Is it art? Let&rsquo;s consider the theories that are in contention.
</p>

<p>
Art as mimesis - No human being has eyes like that, so it&rsquo;s a bad imitation.
</p>

<p>
Art as expression - Surely the artist couldn&rsquo;t have been experiencing the same emotion that I&rsquo;m experiencing as I look on these. I wouldn&rsquo;t wish that on any human being.
</p>

<p>
Formalism - What do you really think Clive Bell would say about this?
</p>

<p>
Institutional theory - Purporting to confer the status of art in this case is conclusive proof that you never had the right to confer such status at all.
</p>

<p>
I&rsquo;m standing by my earlier claim: it&rsquo;s still not art.
</p>

<p>
I hope that sale at the dollar store ends soon.
</p>

<div class="org-center">

<figure id="org13a37a6">
<img src="https://randyridenour.net/posts/../images/posts/another-package.jpg" alt="another-package.jpg" width="100%">

</figure>
</div>



<div class="tagline" id="orga17951f">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/aesthetics.html">Aesthetics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Arara and Latexmk</title>
<link>https://randyridenour.net/posts/2023-01-21-arara-and-latexmk.html</link>
<pubDate>Sat, 21 Jan 2023 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2023-01-21-arara-and-latexmk.html</guid>
<description>
<![CDATA[<p>
Compiling LaTeX documents can be a chore, especially if the document has a table of contents, bibliographic references, cross-references, or labels. Getting the final output an be up to a four-step process:
</p>

<ol class="org-ol">
<li>Run pdflatex to to create the labels, table of contents, and undefined bibliographic references.</li>
<li>Run bibtex or biber to get the relevant bibliographic data from the bib files.</li>
<li>Run pdflatex to put that bibliographic data into the document</li>
<li>Run pdflatex again to fix any page numbers that need to change because of the new material.</li>
</ol>
<section id="outline-container-org5d54dcb" class="outline-2">
<h2 id="org5d54dcb">Latexmk</h2>
<div class="outline-text-2" id="text-org5d54dcb">
<p>
Using Latexmk is a great way to automate all of this. Latexmk will do all of these steps as needed, you just need to tell what engine to use (pdflatex, lualatex, xelatex) and whether to run Bibtex or Biber. A pdfLaTeX document named &ldquo;sample.tex&rdquo; containing bibliographic references would be compiled from the command line like this:
</p>

<div class="org-src-container">
<pre class="src src-shell"><code>latexmk -pdflatex -bibtex sample.tex
</code></pre>
</div>

<p>
There are many other options that can be used, making the command to compile even longer. Fortunately, these options can all be set in a latexmkrc file.
</p>

<div class="org-src-container">
<pre class="src src-shell"><code><span class="org-comment-delimiter"># </span><span class="org-comment">LaTeXmk configuration file
</span>
<span class="org-comment-delimiter"># </span><span class="org-comment">Usage example
</span><span class="org-comment-delimiter"># </span><span class="org-comment">latexmk file.tex
</span>
<span class="org-comment-delimiter"># </span><span class="org-comment">Main command line options
</span><span class="org-comment-delimiter"># </span><span class="org-comment">-pdflatex : compile with pdflatex
</span><span class="org-comment-delimiter"># </span><span class="org-comment">-lualatex : compile with lualatex
</span><span class="org-comment-delimiter"># </span><span class="org-comment">-pv       : run file previewer
</span><span class="org-comment-delimiter"># </span><span class="org-comment">-pvc      : run file previewer and continually recompile on change
</span><span class="org-comment-delimiter"># </span><span class="org-comment">-c        :
</span><span class="org-comment-delimiter"># </span><span class="org-comment">-C        :clean up auxiliary and output files
</span>
<span class="org-comment-delimiter"># </span><span class="org-comment">Use bibtex if a .bib file exists
</span>$<span class="org-variable-name">bibtex_use</span> = 1;

<span class="org-comment-delimiter"># </span><span class="org-comment">Define commands to compile with pdfsync support and nonstopmode
</span>$<span class="org-variable-name">pdflatex</span> = <span class="org-string">'pdflatex -synctex=1 --interaction=nonstopmode %O %S'</span>;

$<span class="org-variable-name">lualatex</span> = <span class="org-string">'lualatex -synctex=1 --interaction=nonstopmode %O %S'</span>;

<span class="org-comment-delimiter"># </span><span class="org-comment">Also remove pdfsync files on clean
</span>$<span class="org-variable-name">clean_ext</span> = <span class="org-string">'%R.synctex.gz'</span>;
</code></pre>
</div>

<p>
If you always use the same engine to compile, then you can add a line like this to your latexmkrc:
</p>

<div class="org-src-container">
<pre class="src src-shell"><code>$<span class="org-variable-name">pdf_mode</span> = n
</code></pre>
</div>

<p>
where n=1 for pdflatex, 4 for lualatex, and 5 for xelatex. The compile command then becomes simply
</p>

<div class="org-src-container">
<pre class="src src-shell"><code>latexmk sample.tex
</code></pre>
</div>

<p>
Since I use Emacs, I could just add latexmk to the list of TeX commands and compile documents with a simple keystroke. The problem is that I don&rsquo;t do the smart thing and use just one engine. I like to use pdflatex sometimes and lualatex for other documents. It would be nice if I could specify the compiling steps within the document.
</p>
</div>
</section>
<section id="outline-container-orgdb71681" class="outline-2">
<h2 id="orgdb71681">Arara</h2>
<div class="outline-text-2" id="text-orgdb71681">
<p>
Here&rsquo;s where Arara shines. Arara is another way to compile tex files. Unlike latexmk, arara does not do anything automatically. Running
</p>

<div class="org-src-container">
<pre class="src src-shell"><code>arara sample.tex
</code></pre>
</div>

<p>
doesn&rsquo;t do anything without some special instructions within the file. To compile the file with pdflatex, I would put this as the first line:
</p>

<div class="org-src-container">
<pre class="src src-nil"><code>% arara: pdflatex: { interaction: nonstopmode, synctex: yes }
</code></pre>
</div>

<p>
Then, running arara on the file would compile once with pdflatex. If I had a bibliography and wanted to use lualatex, I would put this at the top of the file:
</p>

<div class="org-src-container">
<pre class="src src-nil"><code>% arara: lualatex: { interaction: nonstopmode, synctex: yes }
% arara: biber
% arara: lualatex: { interaction: nonstopmode, synctex: yes }
% arara: lualatex: { interaction: nonstopmode, synctex: yes }
</code></pre>
</div>

<p>
This would get all of the steps that I described above. So, I could compile any file with the same command, and have it compile exactly the way I wanted with the engine that I specified.
</p>

<p>
The problem (and I admit it&rsquo;s a minor one) is that I lose the automation of latexmk. Latexmk does all of the steps automatically, and only <i>if</i> they are needed. Arara does them all every time. Latexmk is smart, but not easily flexible. Arara is very flexible, but not very smart.
</p>
</div>
</section>
<section id="outline-container-orgb73568c" class="outline-2">
<h2 id="orgb73568c">Solution</h2>
<div class="outline-text-2" id="text-orgb73568c">
<p>
Fortunately, arara can be told to compile with latexmk, and the engine and any options can be specified in the file. This compiles with latexmk using pdflatex:
</p>

<div class="org-src-container">
<pre class="src src-nil"><code>% arara: latexmk: { engine: pdflatex }
</code></pre>
</div>

<p>
Since the options that I want are in my latexmkrc file, there&rsquo;s nothing else I need to do. Changing &ldquo;pdflatex&rdquo; to &ldquo;lualatex&rdquo; would make it compile with lualatex instead as many times as necessary to produce the final document.
</p>


<div class="tagline" id="org0f22d98">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/LaTeX.html">Latex</a>
</p>

</div>
</div>
</section>
]]>
</description></item>
<item>
<title>In Praise of an Unsafe Education</title>
<link>https://randyridenour.net/posts/2015-05-21-in-praise-of-an-unsafe-education.html</link>
<pubDate>Thu, 21 May 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-05-21-in-praise-of-an-unsafe-education.html</guid>
<description>
<![CDATA[<p>
I was excited to see an excerpt from Neil Gaiman&rsquo;s new book recently in <a href="http://www.usatoday.com/story/life/books/2014/10/23/neil-gaiman-trigger-warning-cover-excerpt/17719799/%20"><i>USA Today</i></a>, explaining why he chose &ldquo;Trigger Warning&rdquo; as the title. It didn&rsquo;t strike me that the title could be controversial until I saw this <a href="https://twitter.com/skinnygrlsfloat/status/561365292693999617">tweet</a> asking why he chose such a &ldquo;thoughtless and insensitive title.&rdquo;
  It&rsquo;s no surprise that such accusations prompted a rather thoughtful and sensitive response from Gaiman, one of my favorite authors.
</p>
<section id="outline-container-orgfd52e5d" class="outline-2">
<h2 id="orgfd52e5d">Trigger Warnings</h2>
<div class="outline-text-2" id="text-orgfd52e5d">
<p>
A trigger warning is a statement that a film or work of literature portrays  scenes that some may find disturbing, especially for those who have experienced similar events themselves. Like Gaiman, I have conflicted feelings about trigger warnings.
</p>

<p>
On one hand, we ought to be sensitive to the emotional needs of others. Several years ago, I was at a conference with an Army colleague who had lost friends in the Korangal Valley of Afghanistan. When the speaker began showing clips from the documentary <i>Restrepo</i>, I watched my colleague appear increasingly uncomfortable.  From her reaction, I don&rsquo;t think she was prepared to relive those experiences, especially in public.
</p>

<p>
On the other hand, it seems that many of the trigger warnings used today in higher education, or at least Christian higher education, are not used to protect those who have had disturbing experiences in the past. Instead, they are used to protect innocent minds from having particular kinds of experiences at all, like hearing vulgar speech or seeing a nude body. Such trigger warnings are concessions to those who want education to be safe, and students to be protected from the vulgar, profane, and offensive.
</p>
</div>
</section>
<section id="outline-container-org8157fd9" class="outline-2">
<h2 id="org8157fd9">Safe Christian Education?</h2>
<div class="outline-text-2" id="text-org8157fd9">
<p>
The world, though, is often vulgar, profane, and offensive, and to portray it otherwise is a lie. It is impossible for students to receive a Christian education and never encounter the world as it, for a Christian education in which students never encounter accounts of violence, drunkenness, and rape would be a Christian education in which students never read Genesis — that is, it would not be a Christian education at all.
</p>

<p>
Trigger warnings serve two purposes. First, they give students the opportunity to opt out of engaging the material. Second, they give students the opportunity to mentally and emotionally prepare themselves for the disturbing material that lay ahead. To do the former is to opt out of an education, but what could be wrong with the latter?
</p>

<p>
There are some events to which the only appropriate emotional responses are shock and horror. To portray these events in ways that do not elicit shock and horror is to do so in a way that ensures that students fail to have the appropriate moral responses. So, in an effort to avoid emotional harm to students, we have caused moral harm instead. Our goal in Christian education should not be to sanitize the world, but to encounter it as it is in the context of a community of love and grace.
</p>

<p>
As God&rsquo;s creation, the world is filled with examples of beauty and grace, but in its present fallen state, it is also filled with examples of cruelty and horror. To portray only the horror is to leave students in cynicism and despair; to portray only the beauty is to leave students in gullible idealism and naiveté. Neither genuinely prepares students to deliver the gospel of Christ to a beautiful, yet broken, world.
</p>



<div class="tagline" id="orgd251dfd">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
</div>
</section>
]]>
</description></item>
<item>
<title>The Heat</title>
<link>https://randyridenour.net/posts/2008-08-04-the-heat.html</link>
<pubDate>Sun, 03 Aug 2008 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2008-08-04-the-heat.html</guid>
<description>
<![CDATA[<p>
The temperature in Norman just before 5 PM is 106. The high today in Baghdad was only 110. It&rsquo;s a brutal summer here, but evidently a fairly mild one there.
</p>


<div class="tagline" id="orgc781b3a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Ballad of Mitch Randall</title>
<link>https://randyridenour.net/posts/2016-09-22-the-ballad-of-mitch-randall.html</link>
<pubDate>Thu, 22 Sep 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-09-22-the-ballad-of-mitch-randall.html</guid>
<description>
<![CDATA[<p>
(Sung to the tune of &ldquo;John Henry&rdquo;)
</p>

<p>
When Mitch Randall was a little baby,<br>
sitting on his father&rsquo;s knee.<br>
He tied a ribbon on his finger,<br>
and he held it in the air.<br>
Said, this bow tie&rsquo;s gonna be the death of me, Lord, Lord<br>
This bow tie&rsquo;s gonna be the death of me.
</p>

<p>
When Mitch Randall was just a little boy,<br>
his parents noticed that he was an unusual child.<br>
When other kids would want cookies and milk,<br>
all Mitch wanted was a piece of silk.
</p>

<p>
He&rsquo;d tie that silk to anything he could reach,<br>
the table leg,<br>
the chair leg,<br>
the dog&rsquo;s leg,<br>
his father&rsquo;s leg.
</p>

<p>
Nice neat bows,<br>
straight,<br>
even on both sides.
</p>

<p>
And then one day,
<br>
He was standing in front of the mirror,<br>
seeing what he could see.<br>
He tied that piece of ribbon right around his neck, and said,<br>
this is the look for me, Lord, Lord.<br>
This is the look for me.
<br>
So, he started wearing a bow tie to church.<br>
Everybody thought it was cute.<br>
Then he wore it to school.<br>
That was not so cute.<br>
When he started wearing it with his baseball uniform,<br>
everybody thought it was just a little weird.
</p>


<p>
When the other kids started to tease him<br>
His dad decided to have a talk.<br>
He said, son,<br>
that may be the look down in Texas, Austin, that is,<br>
but this is Oklahoma, 1975.<br>
It&rsquo;s just not that progressive a state.<br>
But here&rsquo;s what I want you to remember:
<br>
Don&rsquo;t let them make fun of your bow tie,<br>
You gotta be who you gotta be.<br>
So, when you wear a bow tie round your neck,<br>
You gotta wear it with your head held high, Lord, Lord.<br>
Wear it with your head held high.
<br>
Then he went off to college.<br>
As it was for many young people,<br>
college was a place for experimenting,<br>
pushing the envelope,<br>
things you wouldn&rsquo;t necessarily tell your parents about,<br>
getting wild&hellip;
</p>

<p>
Striped bow ties,<br>
plaids,<br>
polka dots,<br>
paisleys,<br>
there were parts of town where you could slip a man five bucks<br>
and he&rsquo;d give you a floral pattern tie.
</p>

<p>
Seminary was tough, though,<br>
cause this was fort worth,<br>
where they wore their hair short,<br>
And their ties long.<br>
He felt alone,<br>
nobody understood.<br>
But then one day,<br>
in a course on religion and the state,<br>
he learned about the Baptist Joint Committee,<br>
with men like James Dunn and Brent Walker,<br>
who wore their bow ties in the service of the Lord.
</p>

<p>
And, hallelujah, Mitch had found his calling!
<br>
When he saw the men with the bow ties,<br>
He said, you know I got to go,<br>
Down to Washington DC, to fight for liberty,<br>
I gotta be on the BJC, Lord, Lord.<br>
I gotta be on the BJC.
<br>
Then he came to NorthHaven.<br>
Growing up had been tough in northeastern Oklahoma,<br>
but Norman was different.<br>
There were liberals,<br>
hippies,<br>
Democrats,<br>
people who wouldn&rsquo;t look twice at a man with a bow tie.
</p>

<p>
And the people of NorthHaven admired his skill.<br>
Even on both sides,<br>
nice dimple in the center.<br>
Straight, not crooked,<br>
good-looking ties.
</p>

<p>
Everything was good, until&hellip;
<br>
In one day, walked Bryan Partridge,<br>
With a smile on his face.<br>
The bow tie that we saw, was completely without flaw.<br>
And the challenge had been thrown down, Lord, Lord.<br>
The challenge had been thrown down.
</p>

<p>
Yes, my friends, it was the beginning of the end.<br>
The old ways were dying,<br>
passing away before a new generation.<br>
The age of the clip-on had come.
</p>

<p>
And Mitch Randall said to Bryan Partridge,<br>
I don&rsquo;t care if my tie is a wreck.<br>
Before I put that clip-on on my shirt,<br>
I&rsquo;ll die with a bow tie round my neck, Lord, Lord.<br>
I&rsquo;ll die with a bow tie round my neck.
</p>

<p>
They decided to have a contest.<br>
Whoever could put on the most ties in an hour<br>
would be the NorthHaven champion.<br>
It was old-school vs. the young upstart.
</p>

<p>
And so, Mitch Randall, he started tying.<br>
His fingers went round and round.<br>
But he couldn&rsquo;t make it last,<br>
cause the clip-on was so fast.<br>
It left poor Mitch on the ground, Lord, Lord.<br>
It left poor Mitch on the ground.
</p>

<p>
He couldn&rsquo;t keep up the pace<br>
With those small, delicate ties.<br>
He needed something bigger, easier to grasp.<br>
So, he reached for the secret weapon,<br>
The Barnum and Bailey special.
</p>

<p>
But when he wrapped that clown tie around his neck,<br>
Disaster struck.
</p>

<p>
Then his tie got caught in the shredder,<br>
and it pulled his head straight down.<br>
And the next thing that we knew,<br>
it looked like he was through.<br>
We&rsquo;d have to plant poor Mitch in the ground, Lord, Lord.<br>
We&rsquo;d have to plant poor Mitch in the ground.
</p>

<p>
Nobody knew what to do.<br>
One person screamed.<br>
Another person laughed.<br>
(One of those was Cheryl, another was Kim. I&rsquo;ll let you decide which was which.)<br>
And then Sheri walked into the room.<br>
she muttered something about boys and their foolishness,<br>
and cut that bow tie clean in half with a pair of scissors.
</p>

<p>
Then Mitch Randall said to Bryan Partridge,<br>
Lord knows, I&rsquo;ve been a fool.<br>
Well, before I die with a bow tie round my neck,<br>
I&rsquo;m gonna get me clip-on too, Lord, Lord.<br>
I&rsquo;m gonna get me clip-on too.
</p>


<div class="tagline" id="org57259a4">
<p>
Tagged: music
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer After a Tragic Week</title>
<link>https://randyridenour.net/posts/2016-07-19-prayer-after-a-tragic-week.html</link>
<pubDate>Tue, 19 Jul 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-07-19-prayer-after-a-tragic-week.html</guid>
<description>
<![CDATA[<p>
God of compassion,
</p>

<p>
In these weeks of violence and tragedy,<br>
we have mourned with those who grieve,<br>
cried with those who weep,<br>
sat in silence with those in pain,<br>
and protested with those who suffer injustice.
</p>

<p>
But what should never happen even once<br>
seems to happen over and over again,<br>
until we are left with nothing<br>
but bloodshot eyes and numb hearts.
</p>

<p>
Banish our fears, restore our hope,<br>
and give us a vision of what can be,<br>
if we were to give our neighbor<br>
the same grace that you have given us.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgcd09694">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>World Food Summit</title>
<link>https://randyridenour.net/posts/2008-06-08-world-food-summit.html</link>
<pubDate>Sun, 08 Jun 2008 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2008-06-08-world-food-summit.html</guid>
<description>
<![CDATA[<p>
The summit on soaring food prices ended last week. For years, I have read that there is plenty of food available to feed everyone on the planet, but the problem was distributing that food. We know from recent events in Myanmar that uncooperative regimes can make aid distribution impossible. Now, though, it seems that there is a genuine food shortage, not simply a problem of distribution. What has changed?
</p>

<p>
My guess is that we will all try to find the one cause of the crisis, and each group will propose a different cause depending on their political leanings. We should keep in mind that complex situations generally have complex causes, and oversimplification often exacerbates the problem. Here are a few things that need to be considered.
</p>

<p>
First, serious research needs to be done on the effects of climate change on agriculture and fisheries. Some of the best evidence that climate change is occurring is the change in elevations and temperate zones in which plant species are growing. One of our guides in Costa Rica even mentioned that crops are growing in higher elevations now, which means that they are not growing in some of the lower elevations.
</p>

<p>
Second, we need to take a serious look at where our aid dollars are going. On June 3, &lt;a title=&ldquo;The world only needs 30 billion dollars a year to eradicate the scourge of hunger&rdquo;
</p>

<p>
Jacques Diouf, Director-General of the Food and Agriculture Organization of the United Nations, appealed to the developed world for 30 billion dollars a year for agriculture aid. Incidentally, he estimated that 100 billion dollars of food is wasted every year in a single country, although he failed to mention which country it was. Aid for agriculture fell from 8 billion dollars in 1984 to 3.4 billion in 2004.
</p>

<p>
There are other things that are likely to be playing a role in the increased food shortage such as the ever-increasing percentage of agricultural output that is used for biofuels and decreasing agricultural efficiency in many developing countries. One mistake we cannot afford to make is to fail to consider how this problem is related to other problems that the world faces, as this <a href="http://www.nytimes.com/2008/06/09/opinion/09mon1.html?th&amp;amp;emc=th">NY Times editorial</a> points out. Agriculture and climate are obviously related, but so are food costs and energy costs, as are the dollars available for agricultural aid and dollars spent to combat terrorism. On the other hand, it also seems likely that hungry people that have no hope are more likely to be potential recruits for terrorist organizations. These problems are complex enough now, and they are not likely to get easier to solve with time. It&rsquo;s time to get started.
</p>


<div class="tagline" id="orgbd0a742">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a> <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Santayana on Fanaticism</title>
<link>https://randyridenour.net/posts/2015-03-09-santayana-on-fanaticism.html</link>
<pubDate>Mon, 09 Mar 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-03-09-santayana-on-fanaticism.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Fanaticism consists in redoubling your efforts when you have forgotten your aim.
</p>
</blockquote>

<p class="bigquote">
George Santayana, <i>Reason in Common Sense</i>, Vol. I
</p>


<div class="tagline" id="org38e4dfd">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Richard Dawkins and Harry Potter</title>
<link>https://randyridenour.net/posts/2008-10-29-richard-dawkins-and-harry-potter.html</link>
<pubDate>Wed, 29 Oct 2008 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2008-10-29-richard-dawkins-and-harry-potter.html</guid>
<description>
<![CDATA[<p>
It’s interesting that the prominent atheist <a href="http://www.telegraph.co.uk/news/3255972/Harry-Potter-fails-to-cast-spell-over-Professor-Richard-Dawkins.html">Richard Dawkins</a> is now claiming that reading J.K. Rowling’s <i>Harry Potter</i> books is dangerous for children.
</p>

<p>
I never thought I would see Richard Dawkins taking the same position as conservative Christians.
</p>


<div class="tagline" id="org378f094">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Al Staggs in Chapel</title>
<link>https://randyridenour.net/posts/2010-02-17-al-staggs-in-chapel.html</link>
<pubDate>Wed, 17 Feb 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-02-17-al-staggs-in-chapel.html</guid>
<description>
<![CDATA[<p>
Al Staggs will be in chapel today at OBU presenting his Bonhoeffer monologue. I saw him last year at the &ldquo;Red-Letter Christians&rdquo; Conference at Baylor. Don&rsquo;t miss this one.
</p>


<div class="tagline" id="orgff9bab9">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Cross Shattered Christ, Chapter 1</title>
<link>https://randyridenour.net/posts/2015-02-24-father-forgive-them.html</link>
<pubDate>Tue, 24 Feb 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-02-24-father-forgive-them.html</guid>
<description>
<![CDATA[<p>
Reflections on <i>Cross-Shattered Christ: Meditations on the Seven Last Words</i> by Stanley Hauerwas, Chapter 1.
</p>



<p>
This chapter is perfect reading for the week following Ash Wednesday. The traditional liturgical declaration uttered by the minister &ldquo;Remember that you are dust, and to dust you shall return&rdquo; is a reminder of our mortality. Ash Wednesday is quickly forgotten, though, just as the somber reflection that occurs after a funeral quickly fades as life returns to normal. As Hauerwas points out, this death, the death of the Son of God, is like no other. To truly come terms with the death of Jesus is to understand that life can never return to normal. Jesus&rsquo; plea from the cross, &ldquo;Father, forgive them; for they do not know what they are doing,&rdquo; challenges our understanding both of God and of ourselves. In Hauerwas&rsquo; words, &ldquo;We are made members of a kingdom governed by a politics of forgiveness and redemption. The world is offered an alternative unimaginable by our sin-determined fantasies.&rdquo;<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> We are offered a glimpse of this kingdom in the lives of a few who are able to live in the shadow of the cross. May we find the strength to dwell there during this season of Lent.
</p>


<div class="tagline" id="org19a78f7">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Hauerwas, Stanley (2005-01-01). <b>Cross-Shattered Christ: Meditations on the Seven Last Words</b> (p. 18). Baker Publishing Group. Kindle Edition.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Greatest Beatles Songs?</title>
<link>https://randyridenour.net/posts/2010-08-27-greatest-beatles-songs.html</link>
<pubDate>Thu, 26 Aug 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-08-27-greatest-beatles-songs.html</guid>
<description>
<![CDATA[<p>
Rolling Stone&rsquo;s <a href="http://www.rollingstone.com/music/photos/28431/194023">ranking</a> of the top ten Beatles songs.
</p>


<div class="tagline" id="orgd0110d9">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/music.html">Music</a>
</p>

</div>
]]>
</description></item>
<item>
<title>A Prayer for My Failing Faith</title>
<link>https://randyridenour.net/posts/2017-09-04-a-prayer-for-my-failing-faith.html</link>
<pubDate>Mon, 04 Sep 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-09-04-a-prayer-for-my-failing-faith.html</guid>
<description>
<![CDATA[<p>
God of Hope,
</p>

<p>
I claim to be person of faith,<br>
yet live as a person of fear.
</p>

<p>
I build walls,<br>
because I fear the stranger;
</p>

<p>
Hold on to the present,<br>
because I fear the future.
</p>

<p>
And make my own plans,<br>
because I do not trust yours.
</p>

<p>
What a fool to think<br>
that what I do out of fear<br>
could ever be better than<br>
what you do out of love.
</p>

<p>
Thanks be to God,<br>
there is no wall that cannot be torn down,<br>
no stranger that cannot be a friend,<br>
and no future that cannot be redeemed.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org91627b5">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Gambian Proverb</title>
<link>https://randyridenour.net/posts/2025-03-10-gambian-proverb.html</link>
<pubDate>Mon, 10 Mar 2025 07:11:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-03-10-gambian-proverb.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Not to know is bad, not to want to know is worse.
</p>
</blockquote>

<p class="bigquote">
Gambian Proverb
</p>


<div class="tagline" id="orgf93fd5e">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Abbreviate Path to iCloud Files in Emacs</title>
<link>https://randyridenour.net/posts/2021-07-18-abbreviate-path-to-icloud-files-in-emacs.html</link>
<pubDate>Sun, 18 Jul 2021 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2021-07-18-abbreviate-path-to-icloud-files-in-emacs.html</guid>
<description>
<![CDATA[<p>
When I include everything I do over my breaks in summer and January, I probably work more from my home computer than I do my office computer. A good file synchronization service makes that much easier. For years, I really only used Dropbox, and it served my needs very well. Just like the 20 MB (as in megabytes, not a typo) hard drive that I had in my first PC, it seemed like I would never run out of Dropbox space. Two problems eventually occurred. First, I did indeed reach the limit of my free tier. Second, Dropbox began enforcing a limit on the number of different devices that could sync with the free tier. I wasn&rsquo;t inclined to pay for more space, because, I was already paying for extra space in iCloud for photo syncing. So, I decided to move my working documents from Dropbox to iCloud, which has worked great except for one small thing. Here is the full path and filename for one of my typical files:
</p>

<p>
<code>/Users/rlridenour/Library/Mobile Documents/com~apple~CloudDocs/Documents/teaching/critical-thinking/notes/probabability-presentation.tex</code>
</p>

<p>
This line is 136 characters long, and unless I expanded the size of the Emacs frame to at least half of the size of my 32-inch desktop monitor, I couldn&rsquo;t see the filename in the recent files list.
</p>

<p>
Adding this to my Doom Emacs config solved the problem:
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">use-package</span> ivy-rich
  <span class="org-builtin">:after</span> counsel
  <span class="org-builtin">:config</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">setq</span> ivy-rich-display-transformers-list
        <span class="org-rainbow-delimiters-depth-3">(</span>plist-put ivy-rich-display-transformers-list
'counsel-buffer-or-recentf
    '<span class="org-rainbow-delimiters-depth-4">(</span><span class="org-builtin">:columns</span>
      <span class="org-rainbow-delimiters-depth-5">(</span><span class="org-rainbow-delimiters-depth-6">(</span>counsel-buffer-or-recentf-transformer <span class="org-rainbow-delimiters-depth-7">(</span><span class="org-builtin">:width</span> <span class="org-rainbow-delimiters-depth-8">(</span><span class="org-keyword">lambda</span> <span class="org-rainbow-delimiters-depth-9">(</span>x<span class="org-rainbow-delimiters-depth-9">)</span> <span class="org-rainbow-delimiters-depth-9">(</span>ivy-rich-switch-buffer-shorten-path x <span class="org-rainbow-delimiters-depth-1">(</span>ivy-rich-minibuffer-width 1.0<span class="org-rainbow-delimiters-depth-1">)</span><span class="org-rainbow-delimiters-depth-9">)</span><span class="org-rainbow-delimiters-depth-8">)</span><span class="org-rainbow-delimiters-depth-7">)</span><span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
Now, when I run <code>counsel-buffer-or-recentf</code>, Emacs abbreviates enough of the file paths to make each line fit into the frame. How much is abbreviated depends on how large the frame is. No matter how narrow the frame, though, I can still see the filename.
</p>



<div class="tagline" id="org41d8c33">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Cross-Shattered Christ, Chapter 4</title>
<link>https://randyridenour.net/posts/2015-03-27-the-crossshattered-christ-chapter-4.html</link>
<pubDate>Fri, 27 Mar 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-03-27-the-crossshattered-christ-chapter-4.html</guid>
<description>
<![CDATA[<p>
So far, this has been the most challenging and difficult chapter for me. Hauerwas challenges us reflect on our standard interpretations of Jesus&rsquo; cry of despair from the cross, &ldquo;My God, my God, why have you forsaken me?&rdquo; and understand it not in terms of one who is sacrificed to satisfy a vengeful God, but as a cry from the God who both sacrifices and is sacrificed. That we find this cry of Jesus so difficult to comprehend shows that we, as citizens of this world, understand and identify with the power and authority of the empire. Instead, &ldquo;Jesus refuses to accept the terms of how the world understands power and authority&hellip;. We are the spared because God refuses to have us lost.&rdquo;<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>

<p>
God refuses to play by our rules. Thanks be to God.
</p>

<div class="tagline" id="orgf9ba6ca">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Hauerwas, Stanley (2005-01-01). <i>Cross-Shattered Christ: Meditations on the Seven Last Words</i> (pp. 51-52). Baker Publishing Group. Kindle Edition. 
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Who is the Sparrow?</title>
<link>https://randyridenour.net/posts/2015-01-21-who-is-the-sparrow.html</link>
<pubDate>Wed, 21 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-21-who-is-the-sparrow.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
If you&rsquo;re going to care about the fall of the sparrow you can&rsquo;t pick and choose who&rsquo;s going to be the sparrow. It&rsquo;s everybody.
</p>
</blockquote>

<p class="bigquote">
Madeleine L&rsquo;Engle
</p>


<div class="tagline" id="org98740f8">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Finals Week</title>
<link>https://randyridenour.net/posts/2017-05-16-prayer-for-finals-week.html</link>
<pubDate>Tue, 16 May 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-05-16-prayer-for-finals-week.html</guid>
<description>
<![CDATA[<p>
It is finals week here at Oklahoma Baptist University. Here is a prayer for students:
</p>

<p>
Dear students,
</p>

<p>
May God calm your anxieties,<br>
refresh your minds,<br>
and honor the faithfulness<br>
you have shown this semester.
</p>

<p>
Remember that God has gifted you<br>
more than you can imagine,<br>
and you are capable of more<br>
than you&rsquo;ve ever dreamed.
</p>

<p>
May the great wisdom of the Father,<br>
the incomparable love of the Son,<br>
and the mighty power of the Spirit<br>
be with you all this week.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org4f2e89d">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Epiphany Sunday</title>
<link>https://randyridenour.net/posts/2015-01-13-epiphany-sunday.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-epiphany-sunday.html</guid>
<description>
<![CDATA[<p>
Brian Partridge&rsquo;s sermon this past Sunday was a perfect antidote to our annual festival of accumulation thinly disguised as a celebration of the birth of Christ. So, I guess I should stop browsing ebay.  Here is the prayer for the week:
</p>

<p>
Holy God,
</p>

<p>
Let me not be deceived;<br>
these things that I possess,<br>
do I use them,<br>
or do they use me?
</p>

<p>
Help me to loosen my grip<br>
on that which I so tightly grasp,<br>
so that I can open my hands to you.
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="orge6148f7">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Art in the White House</title>
<link>https://randyridenour.net/posts/2009-10-07-art-in-the-white-house.html</link>
<pubDate>Wed, 07 Oct 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-10-07-art-in-the-white-house.html</guid>
<description>
<![CDATA[<p>
From the <a href="http://www.washingtonpost.com/wp-dyn/content/article/2009/10/06/AR2009100601824.html?wpisrc=newsletter"><i>Washington Post</i></a>, art on loan to the Obama administration.
</p>


<div class="tagline" id="org81d43e9">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/aesthetics.html">Aesthetics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Our Fears</title>
<link>https://randyridenour.net/posts/2016-05-23-prayer-for-our-fears.html</link>
<pubDate>Mon, 23 May 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-05-23-prayer-for-our-fears.html</guid>
<description>
<![CDATA[<p>
God of hope and joy,
</p>

<p>
You are with me,<br>
and in your presence,<br>
I will not be afraid
</p>

<p>
of the world,<br>
for it is your creation;
</p>

<p>
of the future,<br>
for you have already redeemed it;
</p>

<p>
of the unknown,<br>
for surely you have seen it;
</p>

<p>
of the stranger,<br>
for she was made in your image,
</p>

<p>
of my weakness,<br>
for you will give me strength.
</p>

<p>
of the darkness,<br>
For I carry the light with me.
</p>

<p>
You are there,<br>
and I am not alone.
</p>

<p>
I will not be afraid.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org9f10307">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Transfiguration Sunday Prayer</title>
<link>https://randyridenour.net/posts/2015-02-15-transfiguration-sunday-prayer.html</link>
<pubDate>Sun, 15 Feb 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-02-15-transfiguration-sunday-prayer.html</guid>
<description>
<![CDATA[<p>
Father,
</p>

<p>
In the blindness of our arrogance,<br>
we think that we are free,<br>
yet, so often, we are in chains,<br>
slaves to the satisfaction of our own desires,<br>
and to the pursuit of our own selfish ends.<br>
</p>

<p>
Our prayer today is that<br>
we may be transformed,<br>
freed, so that we may<br>
live as Christ lived,<br>
and love as he loved,<br>
every moment of our lives<br>
an act of restoration and redemption,<br>
and our faith a witness to<br>
coming of the Kingdom of God,<br>
when the justice of the Father<br>
and the love of the Son,<br>
rule together with the power of the Spirit.<br>
in perfect fullness and harmony.
</p>

<p>
Let these gifts today be<br>
the first acts of our new lives.<br>
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgcbefec6">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>A Funeral Benediction</title>
<link>https://randyridenour.net/posts/2016-08-12-a-funeral-benediction.html</link>
<pubDate>Fri, 12 Aug 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-08-12-a-funeral-benediction.html</guid>
<description>
<![CDATA[<p>
This is the benediction from a funeral service that I officiated today:
</p>

<p>
In our blindness,<br>
may the light of God<br>
keep us from stumbling.
</p>

<p>
In our sorrow,<br>
may the hand of God<br>
dry our tears.
</p>

<p>
In our questions,<br>
may the grace of God<br>
be enough, until that day<br>
that we know fully,<br>
even as we are fully known.
</p>

<p>
Now, may the grace of our Lord Jesus Christ,<br>
the love of the Father,<br>
and the fellowship of the Holy Spirit<br>
be with you all,<br>
now and forever.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgd55096e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Poem for my Valentine</title>
<link>https://randyridenour.net/posts/2015-02-14-poem-for-my-valentine.html</link>
<pubDate>Sat, 14 Feb 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-02-14-poem-for-my-valentine.html</guid>
<description>
<![CDATA[<p>
Some people tell me<br>
that I look through<br>
rose colored glasses,<br>
because life can&rsquo;t<br>
be that good.
</p>

<p>
All I know is that<br>
if my glass is only<br>
half full it&rsquo;s<br>
because I have<br>
drunk deeply<br>
from the<br>
joy,<br>
wonder,<br>
and<br>
love<br>
that is you.
</p>



<div class="tagline" id="org68f837e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/poetry.html">Poetry</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Vacation</title>
<link>https://randyridenour.net/posts/2008-05-22-vacation.html</link>
<pubDate>Thu, 22 May 2008 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2008-05-22-vacation.html</guid>
<description>
<![CDATA[<p>
We are leaving tomorrow for a week in Costa Rica. We&rsquo;re all looking forward to a wonderful trip. Costa Rica should be quite a bit different than anywhere I&rsquo;ve been recently. I&rsquo;ll post some pictures when we get back.
</p>


<div class="tagline" id="org35a0b15">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Good Friday</title>
<link>https://randyridenour.net/posts/2017-04-14-prayer-for-good-friday.html</link>
<pubDate>Fri, 14 Apr 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-04-14-prayer-for-good-friday.html</guid>
<description>
<![CDATA[<div class="org-center">

<figure id="org0dd87f9">
<img src="https://randyridenour.net/posts/../images/posts/20170414-cross-mosaic.jpg" alt="20170414-cross-mosaic.jpg" width="100%">

</figure>
</div>

<p>
(Mosaic: <i>Carrying the Cross of Christ</i> by Gabriel Loire)<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>

<p>
It is a sign<br>
that we cannot<br>
really understand<br>
what it means<br>
for God to die,<br>
that we remember<br>
this day when<br>
truth and beauty<br>
hung upon a cross<br>
and we call it good.
</p>

<p>
What our minds cannot comprehend,<br>
our words cannot express.
</p>

<p>
So, we can do nothing<br>
but stand in silence<br>
before the glory<br>
and the horror<br>
of the cross.
</p>

<p>
<i>Amen</i>
</p>

<div class="tagline" id="org8228ce4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Loire, Gabriel, 1904-1996. Carrying the cross of Christ, from Art in the Christian Tradition, a project of the Vanderbilt Divinity Library, Nashville, TN. <a href="http://diglib.library.vanderbilt.edu/act-imagelink.pl?RC=55872">http://diglib.library.vanderbilt.edu/act-imagelink.pl?RC=55872</a> [retrieved April 14, 2017]. Original source: <a href="https://www.flickr.com/photos/paullew/12967802435">https://www.flickr.com/photos/paullew/12967802435</a>.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Prayer for Good Friday</title>
<link>https://randyridenour.net/posts/2016-03-25-prayer-for-good-friday.html</link>
<pubDate>Fri, 25 Mar 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-03-25-prayer-for-good-friday.html</guid>
<description>
<![CDATA[<p>
The empire justifies its existence<br>
with promises of safety and security,<br>
promises that hold no power<br>
unless the people live in fear.
</p>

<p>
And so, a terrorist was released<br>
so that the Prince of Peace<br>
may be taken to be silenced.
</p>

<p>
Lord, have mercy.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org545cadb">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Holy Saturday</title>
<link>https://randyridenour.net/posts/2017-04-15-prayer-for-holy-saturday.html</link>
<pubDate>Sat, 15 Apr 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-04-15-prayer-for-holy-saturday.html</guid>
<description>
<![CDATA[<p>
Loving God,
</p>

<p>
Despair or hope?
</p>

<p>
That was the choice<br>
on that day when<br>
all seemed lost.
</p>

<p>
Though it may<br>
seem foolish,<br>
we choose hope,<br>
and wait to see<br>
what tomorrow brings.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgb121e25">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Cant Fix Stupid</title>
<link>https://randyridenour.net/posts/2015-01-22-cant-fix-stupid.html</link>
<pubDate>Thu, 22 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-22-cant-fix-stupid.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
You can&rsquo;t fix stupid with duct tape, but you can sure muffle the sound.
</p>
</blockquote>

<p class="bigquote">
Soldier, Round Rock, TX
</p>


<div class="tagline" id="org666fe7a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>My Oklahoma Home</title>
<link>https://randyridenour.net/posts/2018-10-06-my-oklahoma-home.html</link>
<pubDate>Sat, 06 Oct 2018 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2018-10-06-my-oklahoma-home.html</guid>
<description>
<![CDATA[<p>
My latest song:<br>
</p>

<p>
VERSE 1: I-40 East, on a cloudy day, Memphis up ahead, had to get away; Had nothing in mind Just looking for a place to roam. Thought I could see, but I was dumb and blind; Gave no thought to what I left behind, The people that I love, and my Oklahoma home.<br>
</p>

<p>
CHORUS: They say that heaven&rsquo;s paved With streets of gold, There’s no more tears Or so I’ve been told No more pain, And no one feels alone. But by those streets Where the children play, I hope to find just a little red clay To remind me Of my Oklahoma home.<br>
</p>

<p>
VERSE 2: Mind starts to wander when you drive for miles, You think about faces, remember the smiles, And you realize you&rsquo;re old, But you&rsquo;ve never ever really grown. So you turn the car into the setting sun, The journey goes on, but the running is done. God help me back To my Oklahoma home.<br>
</p>

<p>
VERSE 3: You can’t leave, even if you tried, When you’ve got red dirt deep down inside, No matter how much you wanted To leave it alone. When you’re running away to another town, No road is straight, they all circle around, Bringing you back To your Oklahoma home.<br>
</p>

<p>
BRIDGE: Okemah up ahead, the tears are making me blind, And I hear the voice of Woody deep inside my mind, And It&rsquo;s taken thirty years, but now I understand, That these are my people, and this is my land, And these Oklahoma hills will always be home.
</p>


<div class="tagline" id="orgc19481b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>LaTeX Compilation Scripts</title>
<link>https://randyridenour.net/posts/2021-07-26-latex-compilation-scripts.html</link>
<pubDate>Thu, 09 Jun 2022 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2021-07-26-latex-compilation-scripts.html</guid>
<description>
<![CDATA[<p>
I&rsquo;m trying to automate LaTeX compilation from Emacs as much as I can. Here are the shell scripts and Emacs functions that I&rsquo;m using.
</p>
<section id="outline-container-orgb1b6840" class="outline-2">
<h2 id="orgb1b6840">Shell Scripts</h2>
<div class="outline-text-2" id="text-orgb1b6840">
<p>
Here are some very simple scripts for compiling LaTeX files with arara and the fish shell. The first, called &ldquo;mkt&rdquo; for &ldquo;make TeX&rdquo;, runs arara on the source file, then opens the resulting PDF.
</p>

<div class="org-src-container">
<pre class="src src-nil"><code>function mkt 
  arara $argv 
  set output_file (string replace -r tex\$ pdf $argv) 
  open -g $output_file 
end
</code></pre>
</div>

<p>
The second, called &ldquo;mktc&rdquo; for &ldquo;make TeX continuously&rdquo;, runs arara, opens the PDF, watches for changes, and runs arara whenever the file is saved.
</p>

<div class="org-src-container">
<pre class="src src-fish"><code><span class="org-keyword">function</span> <span class="org-function-name">mktc</span>
  <span class="org-builtin">arara</span> <span class="org-string">$</span><span class="org-variable-name">argv</span>
  <span class="org-keyword">set</span> <span class="org-variable-name">output_file</span> <span class="org-rainbow-delimiters-depth-1">(</span><span class="org-builtin">string</span> replace -r tex<span class="org-negation-char">\</span>$ pdf <span class="org-string">$</span><span class="org-variable-name">argv</span><span class="org-rainbow-delimiters-depth-1">)</span>
  <span class="org-builtin">open</span> -g <span class="org-string">$</span><span class="org-variable-name">output_file</span>
  <span class="org-builtin">fswatch</span> -o <span class="org-string">$</span><span class="org-variable-name">argv</span> <span class="org-negation-char">|</span> <span class="org-builtin">xargs</span> -n1 -I<span class="org-rainbow-delimiters-depth-1">{}</span> arara <span class="org-string">$</span><span class="org-variable-name">argv</span>
<span class="org-keyword">end</span>
</code></pre>
</div>
</div>
</section>
<section id="outline-container-org413bf3b" class="outline-2">
<h2 id="org413bf3b">Emacs</h2>
<div class="outline-text-2" id="text-org413bf3b">
<p>
Here are some functions to use in Emacs to run the scripts.
</p>
</div>
<div id="outline-container-org80b0ecf" class="outline-3">
<h3 id="org80b0ecf">Auctex</h3>
<div class="outline-text-3" id="text-org80b0ecf">
<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">rlr/tex-mkt</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-doc">"Compile with arara."</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>async-shell-command <span class="org-rainbow-delimiters-depth-3">(</span>concat <span class="org-string">"mkt "</span> <span class="org-rainbow-delimiters-depth-4">(</span>buffer-file-name<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>

<span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">rlr/tex-mktc</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-doc">"Compile continuously with arara."</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>start-process-shell-command <span class="org-rainbow-delimiters-depth-3">(</span>concat <span class="org-string">"mktc-"</span> <span class="org-rainbow-delimiters-depth-4">(</span>buffer-file-name<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span> <span class="org-rainbow-delimiters-depth-3">(</span>concat <span class="org-string">"mktc-"</span> <span class="org-rainbow-delimiters-depth-4">(</span>buffer-file-name<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span> <span class="org-rainbow-delimiters-depth-3">(</span>concat <span class="org-string">"mktc "</span> <span class="org-rainbow-delimiters-depth-4">(</span>buffer-file-name<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
The first compiles with an asynchronous shell command, so that you can immediately return to editing the file while arara runs. I decided to use <code>start-process-shell-command</code> instead of <code>async-shell-command</code> for <code>mktc</code>, since <code>mkt</code> runs once and stops, while <code>mktc</code> keeps running in the background. When <code>rlr/tex-mktc</code> is called, a process is started that has the same name as the file with &ldquo;mktc-&rdquo; prepended it to it. The process is shown in a buffer that has the same name. That way, several files can be compiled at the same time.
</p>
</div>
</div>
<div id="outline-container-orga845d95" class="outline-3">
<h3 id="orga845d95">Org Mode</h3>
<div class="outline-text-3" id="text-orga845d95">
<div class="org-src-container">
<pre class="src src-emacs-lisp"><code>
<span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">rlr/org-mkt</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-doc">"Make PDF with Arara."</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>org-latex-export-to-latex<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>async-shell-command <span class="org-rainbow-delimiters-depth-3">(</span>concat <span class="org-string">"mkt "</span> <span class="org-rainbow-delimiters-depth-4">(</span>file-name-sans-extension <span class="org-rainbow-delimiters-depth-5">(</span>buffer-file-name<span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-string">".tex"</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>

<span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">rlr/org-mktc</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-doc">"Compile continuously with arara."</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>org-latex-export-to-latex<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>start-process-shell-command <span class="org-rainbow-delimiters-depth-3">(</span>concat <span class="org-string">"mktc-"</span> <span class="org-rainbow-delimiters-depth-4">(</span>buffer-file-name<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span> <span class="org-rainbow-delimiters-depth-3">(</span>concat <span class="org-string">"mktc-"</span> <span class="org-rainbow-delimiters-depth-4">(</span>buffer-file-name<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span> <span class="org-rainbow-delimiters-depth-3">(</span>concat <span class="org-string">"mktc "</span> <span class="org-rainbow-delimiters-depth-4">(</span>file-name-sans-extension <span class="org-rainbow-delimiters-depth-5">(</span>buffer-file-name<span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-string">".tex"</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
These functions first export the org file to LaTeX, then compile the corresponding TeX files. All in all, a morning&rsquo;s worth of work to save a few keystrokes. I run them using <a href="https://github.com/jerrypnz/major-mode-hydra.el">major mode hydras</a>.
</p>


<div class="tagline" id="org78dffbc">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/LaTeX.html">Latex</a> <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a> <a href="https://randyridenour.net/posts/../tags/org.html">Org</a>
</p>

</div>
</div>
</div>
</section>
]]>
</description></item>
<item>
<title>The Lamb of God</title>
<link>https://randyridenour.net/posts/2017-03-27-the-lamb-of-god.html</link>
<pubDate>Mon, 27 Mar 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-03-27-the-lamb-of-god.html</guid>
<description>
<![CDATA[<div class="org-center">

<figure id="orga79a721">
<img src="https://randyridenour.net/posts/../images/posts/20170327-lamb.jpg" alt="20170327-lamb.jpg" width="100%">

</figure>
</div>

<p>
(Painting: <i>Lamb</i> by Francisco Zurbarán)<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>

<p>
The sounds of Passover<br>
fill the streets with<br>
desperate bleating<br>
as all the animals<br>
must be dragged<br>
to play their<br>
sacrificial roles.
</p>

<p>
All, that is, save one<br>
who goes quietly<br>
with determination,<br>
strength, and purpose.
</p>

<p>
Lamb of God<br>
have mercy on me.
</p>

<p>
<i>Amen</i>
</p>

<div class="tagline" id="org2010b7a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Zurbarán, Francisco, 1598-1664. <i>Lamb</i>, from Art in the Christian Tradition, a project of the Vanderbilt Divinity Library, Nashville, TN. <a href="http://diglib.library.vanderbilt.edu/act-imagelink.pl?RC=47446">http://diglib.library.vanderbilt.edu/act-imagelink.pl?RC=47446</a> [retrieved March 27, 2017]. Original source: &lt;www.yorckproject.de&gt;.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Starting Young</title>
<link>https://randyridenour.net/posts/2009-12-29-minimalmac-curious-via-thenixer-what-we.html</link>
<pubDate>Tue, 29 Dec 2009 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2009-12-29-minimalmac-curious-via-thenixer-what-we.html</guid>
<description>
<![CDATA[<p>
Here&rsquo;s a <a href="http://minimalmac.com/post/305714868/curious-via-thenixer-what-we-believe-in">mac geek</a> got a much earlier start than I did.
</p>


<div class="tagline" id="org72f540a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/mac.html">Mac</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Emacs' Undeserved Reputation</title>
<link>https://randyridenour.net/posts/2025-03-02-emacs-undeserved-reputation.html</link>
<pubDate>Sun, 02 Mar 2025 18:19:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2025-03-02-emacs-undeserved-reputation.html</guid>
<description>
<![CDATA[<p>
In a post titled &ldquo;<a href="https://irreal.org/blog/?p=12813">Is Emacs Hard to Configure</a>&rdquo; on his blog Irreal, JCS  discusses the oft-heard complaint that Emacs is difficult to configure. He objects, rightly so in my opinion, saying that many non-programmers also use Emacs. The post on Irreal was prompted by <a href="https://www.reddit.com/r/emacs/comments/1ixfhja/my_emacs_config/">this discussion</a> on Reddit. User precompute claimed that Emacs is not hard to configure, <i>so long as you understand Elisp</i>. Several responded that the need to understand Elisp is exactly the problem. I am one of those non-programmers who use Emacs, and somehow even I manage to use it to do my work.
</p>

<p>
I admit that I wouldn&rsquo;t have been able to do some of the more complex things in my config file without the help of the many generous people in the Emacs community who constantly share their knowledge with others. This means that for any configuration problem you might have, it&rsquo;s very likely that someone has already explained in detail how to solve it. It probably is easier to set the font in other text editors; in VSCode, for example, open the settings, select the font menu, and type in the font family in one text field and the font size in another. That is admittedly simpler than what I have in my Emacs config, but a quick search for &ldquo;Emacs set font&rdquo; reveals pages and pages of results, each explaining how it&rsquo;s done. That means a new user can learn how to set the font in nearly the same time as it takes to do it in any other editor. 
</p>

<p>
I admit that my claiming that Emacs being only slightly more difficult to configure than other text editors does not amount to a good case that someone should consider using Emacs. The power of Emacs, in my opinion, is that you can, with a little Elisp, make it do nearly <i>anything</i> that you want to do with text. How much Elisp? The answer is very little, actually. Whenever I find myself repeatedly using the same series of commands, I create a command that does the same thing with a single command. This only requires learning to write simple functions. For a very simple example, I often would delete a window, then balance the remaining windows in the frame. This is just two commands, but there&rsquo;s no reason why I have to execute both myself. I can simply string them together into a custom command like this:
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">delete-window-balance</span> <span class="org-rainbow-delimiters-depth-2">()</span>
    <span class="org-doc">"Delete window and rebalance the remaining ones."</span>
    <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
    <span class="org-rainbow-delimiters-depth-2">(</span>delete-window<span class="org-rainbow-delimiters-depth-2">)</span>
    <span class="org-rainbow-delimiters-depth-2">(</span>balance-windows<span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
I have other examples that are more complex, but they&rsquo;re still just instances of taking ordinary Emacs commands and combining into a workflow that meets the needs of the particular user. This is ridiculously simple in Emacs, but I suspect it would be much more difficult in another editor.
</p>

<div class="tagline" id="org59e214e">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Ellul on Prayer</title>
<link>https://randyridenour.net/posts/2009-08-25-prayer-holds-together-the-shattered-fragments-of.html</link>
<pubDate>Tue, 25 Aug 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-08-25-prayer-holds-together-the-shattered-fragments-of.html</guid>
<description>
<![CDATA[<p>
I thought this was fitting, since classes start tomorrow:
</p>

<blockquote class="bigquote">
<p>
Prayer holds together the shattered fragments of the creation. It makes history possible.
</p>
</blockquote>

<p class="bigquote">
Jacques Ellul
</p>




<div class="tagline" id="org50ca0c3">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Between Love and Hate</title>
<link>https://randyridenour.net/posts/2015-07-05-between-love-and-hate.html</link>
<pubDate>Sun, 05 Jul 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-07-05-between-love-and-hate.html</guid>
<description>
<![CDATA[<p>
God of love and grace,
</p>

<p>
Before there was anything else,<br>
there was love,<br>
perfect and pure.
</p>

<p>
It was a love so full<br>
that it manifested itself<br>
in the creation of the infinite universe<br>
in all of its beauty and diversity.
</p>

<p>
We rejoice today with those<br>
who shed tears of joy<br>
when, against all odds,<br>
love won.
</p>

<p>
Our joy, though, is not yet complete,<br>
as we grieve today with those<br>
who shed tears of sorrow<br>
when, as churches burned,<br>
hate seemed to overcome.
</p>

<p>
But even now, as we stand<br>
between the forces of hate<br>
and the forces of love,<br>
we will not despair,<br>
for we know which side<br>
you are on.<br>
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org0307148">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Online education more effective than classroom?</title>
<link>https://randyridenour.net/posts/2009-08-20-online-education-more-effective-than-classroom.html</link>
<pubDate>Thu, 20 Aug 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-08-20-online-education-more-effective-than-classroom.html</guid>
<description>
<![CDATA[<p>
<a href="http://bits.blogs.nytimes.com/2009/08/19/study-finds-that-online-education-beats-the-classroom/">Online education more effective than classroom?</a>
</p>

<p>
From the <i>NY Times</i>: &ldquo;A recent 93-page report on online education, conducted by SRI International for the Department of Education, has a starchy academic title, but a most intriguing conclusion: &lsquo;On average, students in online learning conditions performed better than those receiving face-to-face instruction.&rsquo;&rdquo;
</p>

<p>
Surprising.
</p>



<div class="tagline" id="org0ac7966">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Palm Sunday</title>
<link>https://randyridenour.net/posts/2016-03-20-prayer-for-palm-sunday.html</link>
<pubDate>Sun, 20 Mar 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-03-20-prayer-for-palm-sunday.html</guid>
<description>
<![CDATA[<p>
Prince of Peace,
</p>

<p>
The palm branches<br>
waving in Jerusalem<br>
symbolized the dreams<br>
of the people,<br>
dreams of defeated enemies,<br>
and a peace gained by<br>
the overwhelming force of<br>
divine power and might.
</p>

<p>
Instead of palms,<br>
we wave flags,<br>
grander symbols<br>
of the same dreams.
</p>

<p>
Give us a new vision<br>
of a world where<br>
there are no enemies<br>
to vanquish and<br>
no wars to fight.
</p>

<p>
Not because we have won,<br>
but because we have<br>
finally surrendered,<br>
and all of our weapons<br>
have been thrown down<br>
at the foot of the cross.
</p>

<p>
Give me the courage to be the first.
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="org62684ea">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Maundy Thursday</title>
<link>https://randyridenour.net/posts/2015-01-13-maundy-thursday.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-maundy-thursday.html</guid>
<description>
<![CDATA[<p>
The one who had already<br>
shed all the privileges of God,<br>
also shed his outer robe.<br>
Wrapping himself in a simple towel,<br>
he lovingly washed the disciples&rsquo; feet<br>
with his calloused hands.<br>
<br>
Teach us, Lord, to shed<br>
our own trappings of power and prestige,<br>
as we reach out to those rejected by the world;<br>
and may we always have the grace to accept<br>
the things that you have had the grace to offer.<br>
<br>
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org3cf09d2">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Lent 2</title>
<link>https://randyridenour.net/posts/2015-03-03-prayer-for-lent-2.html</link>
<pubDate>Tue, 03 Mar 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-03-03-prayer-for-lent-2.html</guid>
<description>
<![CDATA[<p>
I see a man<br>
sleeping on a bench<br>
in the cold,
</p>

<p>
And I say,
</p>

<p>
&ldquo;Thank you, Lord,<br>
for I am not like him.&rdquo;
</p>

<p>
I see a woman<br>
alone, in tears,<br>
mourning,
</p>

<p>
And I say,
</p>

<p>
&ldquo;Thank you, Lord,<br>
for I am not like her.&rdquo;
</p>

<p>
I see a man<br>
upon a cross,<br>
humiliated, scorned,<br>
despised,
</p>

<p>
And suddenly my<br>
foolish pride is clear<br>
even to me,
</p>

<p>
And I cry,
</p>

<p>
&ldquo;Forgive me, Lord,<br>
for I am not like you.&rdquo;
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgf3bd01a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Homily for Ash Wednesday</title>
<link>https://randyridenour.net/posts/2018-02-15-homily-for-ash-wednesday.html</link>
<pubDate>Thu, 15 Feb 2018 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2018-02-15-homily-for-ash-wednesday.html</guid>
<description>
<![CDATA[<p>
<i>Delivered on February 14, 2018 at NorthHaven Church, Norman, Oklahoma.</i> 
</p>

<p>
Like most people, I have a somewhat love-hate relationship with myself, which means that I also have a love-hate relationship with mirrors. When I pass by a mirror, I can never resist the urge to look, but I&rsquo;m never completely satisfied with what I see. I look into some mirrors, and I&rsquo;m confronted with the cold, harsh reality — the ugly truth, as it were. I look into other mirrors, like those found at the carnival, and I like what I see; I&rsquo;m a bit taller, and a bit thinner. Neither mirror can give me what I need. The first mirror shows me the truth, but only as it is now, whether I want to see it or not. The second mirror shows me what I want to see, even if it could never be possible. What I need is a mirror that shows me what I truly am, but also gives me a glimpse of what I truly could be. That&rsquo;s the mirror I need, even if it may not be the mirror I want. We have such a mirror in Scripture. In fairness, we must confess that we can bend and distort Scripture so much that it functions exactly like those carnival mirrors, showing exactly what we want to see, confirming our desires and reinforcing our biases. There are times, though, when I come to the text openly and honestly, and it shows me who I am, as I cry with David in Psalm 51:
</p>

<blockquote>
<p>
For I know my transgressions, and my sin is ever before me. Against you, you alone, have I sinned, and done what is evil in your sight, so that you are justified in your sentence and blameless when you pass judgment. Indeed, I was born guilty, a sinner when my mother conceived me.
</p>
</blockquote>

<p>
But Scripture can also show me what is genuinely possible — the beauty of a life lived fully in the Kingdom of God; more than just a glimpse of who I am, but a vision of who God wants me to be. The book of Isaiah was written when the people of Judah desperately needed both of these mirrors. The small nation of Judah, what was left of the once mighty nation of Israel, had not only been defeated by Babylon, but had been taken away in captivity. The people of God were apparently forsaken by their God — prompting the psalmist to lament, &ldquo;By the rivers of Babylon—there we sat down and there we wept when we remembered Zion.&rdquo; Even in the midst of that despair, however, there is a voice of hope. We hear it in what are called the &ldquo;servant songs&rdquo; of Isaiah, found sprinkled in the text, from chapter 42 through chapter 53. In these passages, God speaks of his promised servant, who will establish justice in chapter 42, be the light to the nations in chapter 49, be vindicated in the face of humiliation in chapter 50, and exalted and lifted up in chapter 52. And so, we sit back and wait for the promised servant, the one who will finally do the will of God. Who is this servant? It is difficult to read chapter 53 and not see Jesus there in the text:
</p>

<blockquote>
<p>
But he was wounded for our transgressions,<br>
crushed for our iniquities;<br>
upon him was the punishment that made us whole,<br>
and by his bruises we are healed.
</p>
</blockquote>

<p>
I do believe that this text speaks prophetically of the Crucified Christ, but that doesn&rsquo;t mean that the servant songs are simply about Jesus, a point that is made clearly in Isaiah 41:8,
</p>

<blockquote>
<p>
But you, Israel, my servant,<br>
Jacob, whom I have chosen,<br>
the offspring of Abraham, my friend;<br>
you whom I took from the ends of the earth,<br>
and called from its farthest corners,<br>
saying to you, &rsquo;You are my servant, &hellip;.&rsquo;
</p>
</blockquote>

<p>
A message that is repeated in chapters 44, 45, and 49: <i>We will see the servant, if we will but look in the mirror</i>. The reflection that we see, however, is harsh and unyielding. It is a clear picture of what God wants us to be: people who seek justice, something that is mentioned three times in the first four verses, yet seek it in a way that is not self-serving. It is a kind of justice that does no harm to the weakest in society — we are to be the light to the nations, helping the blind to see, and freeing those who are in darkness and imprisoned, in a way that does not call attention to ourselves. It is, at the same time, a beautiful image of what can be, and a devastating contrast to what now is, one that forces me to ask, what is it that I really seek? 
</p>

<p>
<i>Is it justice, or merely my own advantage?</i> 
</p>

<p>
<i>Is it righteousness, or merely my own rights?</i> 
</p>

<p>
<i>Is it to serve, or to be the one who is served?</i> 
</p>

<p>
This day, Ash Wednesday, is the day on which the church is faced with the truth. The ashes are remnants of the palms that we waved on Palm Sunday, a vivid reminder of how quickly our vows of dedication to God become cries of denial and betrayal. We come before the altar of God to hear the humbling words, &ldquo;Remember, you are but dust, and to dust you shall return.&rdquo; We come, bringing our pride, our pretension, our vanity, and our feelings of superiority to be cleansed in God&rsquo;s holy fire. Out of the ashes that are left, God has chosen to raise up his servant. Thanks be to God, for his mercy and grace. 
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="orga54cb4e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Replicating Emacs Everywhere with Keyboard Maestro</title>
<link>https://randyridenour.net/posts/2025-01-20-replicating-emacs-everywhere-with-keyboard-maestro.html</link>
<pubDate>Mon, 20 Jan 2025 18:16:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2025-01-20-replicating-emacs-everywhere-with-keyboard-maestro.html</guid>
<description>
<![CDATA[<p>
I&rsquo;ve always loved the idea of Tecosaur&rsquo;s <a href="https://github.com/tecosaur/emacs-everywhere">Emacs Everywhere</a>, but when I looked at the code it seemed like quite a bit of overhead for someone who just uses one operating system. I tried to pull out just the portions relating to the Mac, but couldn&rsquo;t make it work. I&rsquo;ve been running <a href="https://www.keyboardmaestro.com/main/">Keyboard Maestro</a> for a long time now thinking that maybe someday I would use it to automate something. Since I couldn&rsquo;t bring myself to watch the inauguration today, it seemed like a good idea to finally use it.
</p>

<p>
As always, I&rsquo;ll start with this disclaimer: I am an amateur elisp hack. I borrow and steal from others, cobbling things together that never initially work, then fiddle with them until they finally do what I had intended. With that out of the way, here&rsquo;s what I put together. 
</p>
<section id="outline-container-org98d1bbc" class="outline-2">
<h2 id="org98d1bbc">Notepad Mode</h2>
<div class="outline-text-2" id="text-org98d1bbc">
<p>
I wanted to use <code>C-c C-c</code> to easily quit and return to the initial application. The easiest way for me to do this was to create a new mode. Since I write everything with Org mode, it makes sense to just use it with a different name. I also defined a new keymap that calls a function that is defined below.
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defvar-keymap</span> notepad-mode-map
  <span class="org-string">"C-c C-c"</span> #'copy-kill-buffer<span class="org-rainbow-delimiters-depth-1">)</span>

<span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">define-derived-mode</span> <span class="org-function-name">notepad-mode</span>
  org-mode <span class="org-string">"Notepad"</span>
  <span class="org-doc">"Major mode for scratch buffers."</span>
  <span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
This creates a temporary scratch buffer, sets it to notepad mode and pastes the contents, if any, of the system clipboard.
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code>  <span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">rlr-create-notepad-buffer</span> <span class="org-rainbow-delimiters-depth-2">()</span>
    <span class="org-doc">"Create a new notepad buffer."</span>
    <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
    <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">let</span> <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-rainbow-delimiters-depth-4">(</span>buf <span class="org-rainbow-delimiters-depth-5">(</span>generate-new-buffer <span class="org-string">"*notepad*"</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span>
      <span class="org-rainbow-delimiters-depth-3">(</span>switch-to-buffer buf<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
    <span class="org-rainbow-delimiters-depth-2">(</span>notepad-mode<span class="org-rainbow-delimiters-depth-2">)</span>
<span class="org-rainbow-delimiters-depth-2">(</span>shell-command-on-region <span class="org-rainbow-delimiters-depth-3">(</span>point<span class="org-rainbow-delimiters-depth-3">)</span> <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">if</span> mark-active <span class="org-rainbow-delimiters-depth-4">(</span>mark<span class="org-rainbow-delimiters-depth-4">)</span> <span class="org-rainbow-delimiters-depth-4">(</span>point<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span> <span class="org-string">"pbpaste"</span> nil t<span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
After finishing writing the desired text in the notepad buffer, this function adds a new line at the end, copies the contents of the buffer, kills it, then runs an application that does nothing but beep twice and exits. 
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">copy-kill-buffer</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>goto-char <span class="org-rainbow-delimiters-depth-3">(</span>point-max<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>newline<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>mark-whole-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>copy-region-as-kill 1 <span class="org-rainbow-delimiters-depth-3">(</span>buffer-size<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>kill-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-comment-delimiter">;; </span><span class="org-comment">(app-switch)
</span>  <span class="org-rainbow-delimiters-depth-2">(</span>shell-command <span class="org-string">"open -a ~/icloud/scripts/beep.app"</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
Beep.app is one line of AppleScript:
</p>

<div class="org-src-container">
<pre class="src src-applescript"><code>beep 2
</code></pre>
</div>
</div>
</section>
<section id="outline-container-orgb0a9dd4" class="outline-2">
<h2 id="orgb0a9dd4">Keyboard Maestro</h2>
<div class="outline-text-2" id="text-orgb0a9dd4">
<p>
The piece that puts it all together is a Keyboard Maestro macro. It builds on a macro that I found by <a href="https://forum.keyboardmaestro.com/u/cdthomer/summary">Chris Thomerson</a> on <a href="https://forum.keyboardmaestro.com/t/going-back-to-previous-application-window/17963/6">this thread</a> in the Keyboard Maestro forum.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> His macro has two action groups. The first saves the current front application and window to variables before minimizing the front window. The second executes an AppleScript that activates the application named by the variable, then unminimizes the window and brings it to the front.
</p>

<p>
Before the first action group, I inserted another group that first clears the system clipboard. It then cuts any selected text in the current front window.
</p>

<p>
In between Thomerson&rsquo;s two macro groups, I have another group that activates my terminal app and runs this fish function that starts an emacsclient instance, opens a notepad buffer, and brings Emacs to the front.
</p>

<div class="org-src-container">
<pre class="src src-fish"><code><span class="org-keyword">function</span> <span class="org-function-name">notepad</span>
    <span class="org-builtin">emacsclient</span> -e <span class="org-string">"(rlr-create-notepad-buffer)"</span>
    <span class="org-builtin">open</span> -a emacs
<span class="org-keyword">end</span>
</code></pre>
</div>

<p>
It then pauses the macro until that simple beep application is run.
</p>

<p>
The last action is to paste the new clipboard text back into the original application front window.
</p>

<p>
So, in short, here is what happens when I press the hot key that calls the macro:
</p>

<ol class="org-ol">
<li>Copy any selected text from the front window</li>
<li>Open an Emacs buffer containing the copied text, if any.</li>
<li>Kill the Emacs buffer and paste its contents back into the previous front window.</li>
</ol>

<p>
People seem to think that Emacs should only be used by ancient programmer wizards, and that those of us who are less technically minded should stick with something more modern and pre-packaged. I&rsquo;ve found, though, that writing very useful Emacs functions is as simple as stringing commands together. What Emacs does is let even humanities professors like me do things they could never imagine doing with another editor.
</p>

<p>
For those who are interested, here&rsquo;s a picture of the entire macro:
</p>

<div class="org-center">

<div id="org20fb350" class="figure">
<p><img src="https://randyridenour.net/posts/../images/posts/emacs-notepad.png" alt="emacs-notepad.png" width="100%" />
</p>
</div>
</div>




<div class="tagline" id="orgfb75894">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
</div>
</section>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
There&rsquo;s a link to download the macro at the end of the <a href="https://forum.keyboardmaestro.com/t/going-back-to-previous-application-window/17963/7">thread</a>. 
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Do Not Be Daunted</title>
<link>https://randyridenour.net/posts/2017-10-03-do-not-be-daunted.html</link>
<pubDate>Tue, 03 Oct 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-10-03-do-not-be-daunted.html</guid>
<description>
<![CDATA[<p>
I bought an entire book for these two paragraphs, but they are worth much more than I paid:
</p>

<blockquote class="bigquote">
<p>
"Rabbi Tarfon would say:
</p>

<p>
You are not obligated to complete the work,  
but neither are you free to abandon it.
</p>

<p>
Do not be daunted  
by the enormity of the world&rsquo;s grief.
Do justly, now,  
Love mercy, now.  
Walk humbly, now."<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>
</blockquote>


<div class="tagline" id="orgbda8e51">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Rabbi Rami M. Shapiro, <i>Wisdom of the Jewish Sages: A Modern Reading of Pirke Avot</i>, p. 41.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Confirmation Bias and the Clinton Foundation</title>
<link>https://randyridenour.net/posts/2016-10-21-the-clinton-foundation.html</link>
<pubDate>Fri, 21 Oct 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-10-21-the-clinton-foundation.html</guid>
<description>
<![CDATA[<p>
Yesterday, I showed that claiming that only 5.7% of Clinton Foundation donations goes to charity is essentially false. Although that is indeed the percentage that goes to other charitable organizations, it ignores the fact that the Clinton Foundation is itself a public charity, unlike the Trump Foundation, which is a private foundation.
</p>

<p>
In response, a friend said that, although my claim was technically true, the majority of Clinton Foundation money goes back to the Clintons through the its two largest program expenditures, the Clinton Global Initiative (CGI) and the Clinton Presidential Library. 
</p>

<p>
It is true that CGI and the Library are two of the largest program expenditures of the Clinton Foundation, ranking second and third, respectively. They are not even remotely close to the majority of expenditures, however. Even together, they account for, at most, only 18% of the Foundation&rsquo;s annual expenditures.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> 
</p>

<p>
Now, I&rsquo;m not defending the spending of the Clinton Foundation.<sup><a id="fnr.2" class="footref" href="#fn.2" role="doc-backlink">2</a></sup> I have no idea how effective its charitable work is. The point is that too many people (myself included, to be honest) simply share, retweet, or repost anything that is consistent with our own biases without checking the material for accuracy, even when verification would be relatively simple. This is called confirmation bias, something that we all must take care to minimize. Remember Reagan&rsquo;s dictum, &ldquo;Trust, but verify.&rdquo;<sup><a id="fnr.3" class="footref" href="#fn.3" role="doc-backlink">3</a></sup>
</p>

<div class="tagline" id="org01dbba6">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a> <a href="https://randyridenour.net/posts/../tags/critical-thinking.html">Critical-Thinking</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
The annual reports and audited financial statements of the <a href="https://www.clintonfoundation.org/about/annual-financial-reports">Clinton Foundation</a> show that CGI and the Library combined accounted for 14.8% to 18% of program expenditures over the last three years. The Foundation publishes financial reports back to 1998.
</p></div></div>

<div class="footdef"><sup><a id="fn.2" class="footnum" href="#fnr.2" role="doc-backlink">2</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
I&rsquo;m also not defending the Clintons. I have long thought them to be a symptom of the major problem of American politics, the undue influence of money in politics.
</p></div></div>

<div class="footdef"><sup><a id="fn.3" class="footnum" href="#fnr.3" role="doc-backlink">3</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
There&rsquo;s a nice piece on that phrase in the <a href="https://www.washingtonpost.com/opinions/trust-but-verify-an-untrustworthy-political-phrase/2016/03/11/da32fb08-db3b-11e5-891a-4ed04f4213e8_story.html?utm_term=.d4b274fc7770">Washington Post</a>.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Be Kind</title>
<link>https://randyridenour.net/posts/2024-12-30-kind.html</link>
<pubDate>Mon, 30 Dec 2024 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2024-12-30-kind.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Be kind, for everyone you meet is fighting a hard battle. 
</p>
</blockquote>


<p class="bigquote">
John Watson
</p>


<div class="tagline" id="org2fdac34">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Advice for Those About to be Tested</title>
<link>https://randyridenour.net/posts/2015-02-11-advice-for-those-about-to-be-tested.html</link>
<pubDate>Wed, 11 Feb 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-02-11-advice-for-those-about-to-be-tested.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Therefore I beg you, reader, not to rejoice too greatly if you have read much, but if you have understood much. Nor that you have understood much, but that you have been able to retain it. Otherwise it is of little profit either to read or to understand.”
</p>
</blockquote>

<p class="bigquote">
Hugh of Saint Victor, d. Feb. 11, 1141
</p>


<div class="tagline" id="org1534c76">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Election Tomorrow</title>
<link>https://randyridenour.net/posts/2008-11-03-election-tomorrow.html</link>
<pubDate>Mon, 03 Nov 2008 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2008-11-03-election-tomorrow.html</guid>
<description>
<![CDATA[<p>
Go vote!
</p>


<div class="tagline" id="org5e752a6">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Visit to Ft. Moultrie</title>
<link>https://randyridenour.net/posts/2010-04-18-visit-to-ft-moultrie.html</link>
<pubDate>Sun, 18 Apr 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-04-18-visit-to-ft-moultrie.html</guid>
<description>
<![CDATA[<p>
Yesterday, my class at the chaplain school participated in a staff ride to Charleston. &ldquo;Staff ride&rdquo; sounds more impressive than &ldquo;field trip&rdquo; but they mean the same thing. The highlight of the visit was a trip to Ft. Moultrie on Sullivan&rsquo;s Island. The defense of the fort in 1776 was the first major victory over the British in the Revolutionary War. Standing on the high ground at Ft. Moultrie, you can look straight across the harbor and see Ft. Sumter. The attack on Ft. Sumter on April 12, 1861 marks the beginning of armed conflict in the American Civil War. Then, if you scan to the left, you can see Morris Island, which is the site of Ft. Wagner. On July 18, 1863, the 54th Massachusetts assaulted Ft. Wagner, an event portrayed in the movie <i>Glory</i>. There, Sergeant William H. Carney secured the United States flag as the color-bearer fell, the first action for which an African-American would be awarded the Congressional Medal of Honor.
</p>

<p>
It&rsquo;s a moving experience to see a century of history and heroism from one spot on the South Carolina coast.
</p>


<div class="tagline" id="org98427ef">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/army.html">Army</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Epiphany 4</title>
<link>https://randyridenour.net/posts/2015-02-03-prayer-for-epiphany-4.html</link>
<pubDate>Tue, 03 Feb 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-02-03-prayer-for-epiphany-4.html</guid>
<description>
<![CDATA[<p>
Jesus,
</p>

<p>
You found a man living in a cemetery,<br>
bound by chains that he did not forge,<br>
forced on him by people who were afraid.
</p>

<p>
I, too, am bound in chains,<br>
some forged by ignorance,<br>
every link a failure to recognize<br>
your image in another human.
</p>

<p>
Others forged by arrogance,<br>
of thinking that there are those<br>
not fit for your kingdom,<br>
or for your service.
</p>

<p>
Still others forged by fear,<br>
the fear of rejection,<br>
the fear of difference.
</p>

<p>
You who created the world<br>
in all of its diversity<br>
and declared it to be good,
</p>

<p>
Free me from the arrogant presumption<br>
of thinking that I would have done better.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgac871e4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Evil and Perception</title>
<link>https://randyridenour.net/posts/2015-06-17-evil-and-perception.html</link>
<pubDate>Wed, 17 Jun 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-06-17-evil-and-perception.html</guid>
<description>
<![CDATA[<p>
<a href="http://www.etgarkeret.com">Etgar Keret&rsquo;s</a> new book, <a href="http://www.amazon.com/Seven-Good-Years-Memoir-ebook/dp/B00OYXWKDY/ref=sr_1_1?s=books&amp;ie=UTF8&amp;qid=1434540345&amp;sr=1-1&amp;keywords=the+seven+good+years"><i>The Seven Good Years</i></a> is a collection of essays concerning the interval between the birth of his son and the death of his father. I was particularly intrigued by this statement from the story on <a href="http://www.npr.org/2015/06/16/414896816/what-etgar-keret-learned-from-his-father-about-storytelling-and-survival?utm_source=facebook.com&amp;utm_medium=social&amp;utm_campaign=npr&amp;utm_term=nprnews&amp;utm_content=20150616">NPR</a>:
</p>

<blockquote>
<p>
I&rsquo;m pretty good at feeling sorry for myself, [but] &hellip; the fact that he survived the Holocaust always kind of seemed to him that something good had happened to him in life. And life since the Holocaust always seemed to surprise him for the better, and there was no bitterness in him. He said, &ldquo;You know what? I&rsquo;ve been smoking two packs a day since I was 14 years old for more than 65 years and if after that you get a cancer, it&rsquo;s a fair deal,&rdquo; he says. &ldquo;It&rsquo;s fair. I&rsquo;ve got nothing to complain [about] and I&rsquo;ve lived a full life, I want to live as much as I can, but when I die when I die, I won&rsquo;t go out kicking and screaming.&rdquo;
</p>
</blockquote>

<p>
Could it be that the force of the problem of evil is a matter of one&rsquo;s attitude? What is the difference between people who focus on their suffering and those who focus on their overcoming that suffering?
</p>


<div class="tagline" id="org538534b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>On Moral Imagination</title>
<link>https://randyridenour.net/posts/2025-07-14-moral-imagination.html</link>
<pubDate>Mon, 14 Jul 2025 05:27:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-07-14-moral-imagination.html</guid>
<description>
<![CDATA[<p>
Jennifer Finney Boylan, in <a href="https://www.washingtonpost.com/opinions/2025/07/13/superman-fd-christopher-reeve-father-jor-el/?carta-url=https%3A%2F%2Fs2.washingtonpost.com%2Fcar-ln-tr%2F439ab12%2F6874d524d2a65e78271600dc%2F596a35569bbc0f0e09e8239c%2F29%2F64%2F6874d524d2a65e78271600dc">The Washington Post</a>:
</p>

<blockquote>
<p>
It’s moral imagination that has provided me with some solace, these past six months, as I try to understand the sense of fear that people like me appear to trigger in others.
</p>

<p>
It’s moral imagination that I have tried to ask others to have, when they set about trying to erase people such as me from the public sphere.
</p>

<p>
If we are ever to build a more perfect nation, surely this project will begin by opening our hearts to each other, by using our imaginations to understand that there is more than one way of being human, more than one way of being in the world.
</p>
</blockquote>

<div class="tagline" id="org17f3227">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Thomas More on Labor</title>
<link>https://randyridenour.net/posts/2010-07-26-the-things-good-lord-that-we-pray-for-give-us.html</link>
<pubDate>Mon, 26 Jul 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-07-26-the-things-good-lord-that-we-pray-for-give-us.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
The things, good Lord, that we pray for, give us the grace to
labor for.
</p>
</blockquote>

<p class="bigquote">
Thomas More
</p>


<div class="tagline" id="org548690d">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Hugh Dancy on Philosophy</title>
<link>https://randyridenour.net/posts/2009-08-20-when-you-realize-that-you-that-you-cant-have-more.html</link>
<pubDate>Thu, 20 Aug 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-08-20-when-you-realize-that-you-that-you-cant-have-more.html</guid>
<description>
<![CDATA[<p>
The son of philosopher Jonathan Dancy, explaining on <a href="http://www.hulu.com/watch/88876/the-tonight-show-with-conan-obrien-hugh-dancy"><i>The Tonight Show</i></a>
why he did not choose philosophy as a profession:
</p>

<blockquote>
<p>
When you realize that you that you can&rsquo;t have more than a five second conversation with your dad before you&rsquo;re lost, you find another line of work.
</p>
</blockquote>

<p class="source">
Hugh Dancy
</p>






<div class="tagline" id="org66a2191">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Wonder and Concepts</title>
<link>https://randyridenour.net/posts/2015-03-09-gregory-nyssa.html</link>
<pubDate>Mon, 09 Mar 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-03-09-gregory-nyssa.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Concepts create idols; only wonder comprehends anything. People kill one another over idols. Wonder makes us fall to our knees.
</p>
</blockquote>

<p class="bigquote">
Gregory of Nyssa
</p>


<div class="tagline" id="orgb4d7fba">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Moving to Hugo</title>
<link>https://randyridenour.net/posts/2017-07-02-moving-to-hugo.html</link>
<pubDate>Sun, 02 Jul 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-07-02-moving-to-hugo.html</guid>
<description>
<![CDATA[<p>
It&rsquo;s been longer than usual since I made a redesign of the web site. <a href="https://jekyllrb.com">Jekyll</a> had been serving my purposes well, but I managed to concoct two excuses for changing. I&rsquo;ve been slightly uncomfortable with handling the various dependencies with respect to other Ruby gems. Unsurprisingly, as the site got bigger and bigger, the time that Jekyll took to build the site has gotten longer and longer. The real reason for the redesign, though, is that I just like the chance to learn and work with something new.
</p>

<p>
I thought about <a href="https://blog.getpelican.com">Pelican</a>, which is similar to Jekyll, but written in Python. I&rsquo;m more comfortable hacking around in Python than I am in Ruby, but that was the only advantage I could see with Pelican. <a href="https://gohugo.io">Hugo</a> has been getting a lot of press lately, and everyone remarked about it&rsquo;s apparently amazing build speed. It also installs as a single binary, so there is no need to manage dependencies.
</p>

<p>
Building the Hugo site was relatively simple, and anyone with some experience with any static site generator should have no problem. Hugo has a <a href="https://gohugo.io/commands/hugo_import_jekyll/">command</a> to import a Jekyll blog, which worked very well. I had to clean up some meta-data, but after a bit of search and replace magic with regular expressions on the post directory, everything worked.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> 
</p>

<p>
I thought about designing my own theme, but quickly discovered that it would take more time than I need to be spending now, so found this excellent academic oriented theme by <a href="https://georgecushen.com">George Cushen</a>, cleverly called &ldquo;<a href="https://github.com/gcushen/hugo-academic">Academic</a>.&rdquo; 
</p>

<p>
The Internet chatter was correct — the site builds very quickly.<sup><a id="fnr.2" class="footref" href="#fn.2" role="doc-backlink">2</a></sup> I saw soon face, though, with the one disadvantage of Hugo compared to Jekyll, at least for me. As a professor at a small liberal arts college with a primary revenue stream of tuition, I prefer to use free services when possible. Github hosting was ideal. Since a large portion was powered by Jekyll, I could just push the source to Github. Github would build and serve the site automatically. It met two important criteria, simple and free. I was especially happy with that after discovering how to easily <a href="https://randyridenour.net/posts/2017-06-21-jekyll-ios-workflow.html">post from iOS</a>.
</p>

<p>
Now, I had to build the Hugo site, then push the source to one repository and the HTML to another. It wasn&rsquo;t difficult, but it didn&rsquo;t have the single-step ease that I wanted. I stumbled on <a href="https://forestry.io">Forestry</a>, which is a CMS for Jekyll and Hugo sites. It works amazingly well, and could be a great tool for people who want the benefits of static sites but don&rsquo;t want to mess with the command line. It can be configured to build and push to the deployment repository when a change is made to the source repository.  For me at least, it didn&rsquo;t work well <b>in conjunction</b> with the command line, though. When it rebuilt the site, it changed a number of source files, and I would forget to pull those changes before working on something. I was soon tired of cleaning up merge conflicts. 
</p>

<p>
Many people use either <a href="https://www.travis-ci.org">Travis CI</a> or <a href="http://www.wercker.com">Wercker</a> for deploying static sites. Both are tools for building and deploying software, but will also build and deploy static sites. Unfortunately, I just couldn&rsquo;t manage to make either one work. Finally, I stumbled on <a href="https://www.netlify.com">Netlify</a>. Netlify is a bit different from the others in that it builds and hosts, and, for the service that I need, all for free. It was easy to configure, the build worked perfectly, and I just had to point the domain to Netlify instead of Github. I write using Emacs or Editorial, push the post to Github, Netlify detects the change, then builds and serves the site. For anyone who is interested, the source code for the site is on <a href="https://github.com/rlridenour/blog">Github</a>.
</p>

<div class="tagline" id="org527e552">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
There was a bit more to it. Finding what to search for and replace was a bit of a hassle. The Hugo build-error messages weren&rsquo;t particularly helpful. I debugged by moving the files out of the post directory, then replacing some until I could find a file that failed to build. Then, it was easy to see what part of the meta-data was causing the problem, and fix it with a global search and replace. If the site is fairly large, it&rsquo;s easily worth it to learn a bit about regular expressions and invest some time in becoming comfortable with a good text editor that can do a multi-file search and replace.
</p></div></div>

<div class="footdef"><sup><a id="fn.2" class="footnum" href="#fnr.2" role="doc-backlink">2</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Build time with Hugo is now 1.3 seconds, compared to 38.7 seconds for Jekyll.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Prayer Before the Election</title>
<link>https://randyridenour.net/posts/2016-11-03-prayer-before-the-election.html</link>
<pubDate>Thu, 03 Nov 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-11-03-prayer-before-the-election.html</guid>
<description>
<![CDATA[<p>
A prayer for the days preceding the election:
</p>

<p>
God of comfort,
</p>

<p>
No matter the result,<br>
Half of us will find<br>
That the thing we fear<br>
Will have come true.
</p>

<p>
Calm our fears,<br>
And restore our faith.
</p>

<p>
Cleanse our despair,<br>
And give us hope.
</p>

<p>
Banish our anger,<br>
And renew our love.
</p>

<p>
Remind us once again<br>
That the Spirit who unites us<br>
Is greater than anything<br>
That could ever divide us.
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="orge82cf9f">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>How Autocrats Destroy Truth</title>
<link>https://randyridenour.net/posts/2025-08-27-how-autocrats-destroy-truth.html</link>
<pubDate>Wed, 27 Aug 2025 05:30:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-08-27-how-autocrats-destroy-truth.html</guid>
<description>
<![CDATA[<p>
I&rsquo;ve often wondered why the administration continues to make claims that are laughably and provably false, such as Trump&rsquo;s claim that one of his prominent critics, Gov. Wes Moore of Maryland called him &ldquo;the greatest president of my lifetime.&rdquo;
</p>

<p>
Anne Applebaum writing for <a href="https://www.theatlantic.com/magazine/archive/2024/06/china-russia-republican-party-relations/678271/"><i>The Atlantic</i></a>:
</p>

<blockquote>
<p>
This tactic—the so-called fire hose of falsehoods—ultimately produces not outrage but nihilism. Given so many explanations, how can you know what actually happened? What if you just can’t know? If you don’t know what happened, you’re not likely to join a great movement for democracy, or to listen when anyone speaks about positive political change. Instead, you are not going to participate in any politics at all.
</p>
</blockquote>

<p>
The country is gathering into large groups &mdash; the gullible true believers who believe everything and the cynical skeptics who believe nothing. Those in the former group obviously serve the interests of the powers that be by their unreflective support. Those in the latter also serve the interests of the ruling powers with their despairing malaise.  It&rsquo;s in the interests of the autocrats to ensure that, if you can&rsquo;t be one of the gullibile, you at least become a nihilist.
</p>

<p>
Seek the truth, hold on to hope, keep the faith.
</p>

<div class="tagline" id="orgbad6656">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Christian Right or Religious Right?</title>
<link>https://randyridenour.net/posts/2025-05-03-christian-right-religious-right.html</link>
<pubDate>Sat, 03 May 2025 04:39:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-05-03-christian-right-religious-right.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
The Christian right is dead, but the religious right is stronger than it’s ever been. Another way of putting it is that the religious right has divorced itself from historical Christian theology but still holds its partisan beliefs with religious intensity. The religious fervor is there. Christian virtues are not.
</p>
</blockquote>

<p class="bigquote">
<a href="https://www.nytimes.com/2025/05/01/opinion/trump-evangelicals-republicans.html" class="bigquote">David French</a>
</p>


<div class="tagline" id="org5d87528">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Good Friday</title>
<link>https://randyridenour.net/posts/2015-01-13-good-friday.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-good-friday.html</guid>
<description>
<![CDATA[<p>
Even though I fear the answer,<br>
I must still ask the question<br>
that was posed<br>
by the one who betrayed the Lord.<br>
<br>
&ldquo;Am I the one?&rdquo;<br>
<br>
Am I the one who<br>
sat in the comfort<br>
of the palace of the High Priest<br>
to plot your death<br>
because you were a threat<br>
to my religious authority?<br>
<br>
Am I the one who<br>
from the confines of another palace<br>
washed my hands of you,<br>
preferring instead the<br>
power and prestige<br>
of my position?<br>
<br>
Or am I the one<br>
who denied any<br>
knowledge of you,<br>
fearing what might happen<br>
if I should follow you to the cross?<br>
<br>
Might I be the one<br>
full of sorrow,<br>
but devoid of hope,<br>
who wept in your presence,<br>
and watched you die?<br>
<br>
On this day,<br>
Lord Jesus,<br>
We are all of these.<br>
<br>
Put in our hands a crown of thorns,<br>
and show us again what Love can make<br>
with two pieces of wood and a few nails.<br>
<br>
Christ have mercy on us,<br>
<br>
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org85248b9">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Ouch</title>
<link>https://randyridenour.net/posts/2010-11-12-i-dont-quite-know-what-to-say-about-this-video.html</link>
<pubDate>Fri, 12 Nov 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-11-12-i-dont-quite-know-what-to-say-about-this-video.html</guid>
<description>
<![CDATA[<p>
I don&rsquo;t quite know what to say about this video, except that it&rsquo;s not likely the kind of advertising we need to attract the kind of future philosophy students we want.
</p>


<div class="org-center">
<p>
<iframe width="440" height="335" src="https://www.youtube.com/embed/n5OSxKlM3iQ" frameborder="0" allowfullscreen></iframe>
</p>
</div>


<div class="tagline" id="org7c38b0f">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Christmas Communion Liturgy</title>
<link>https://randyridenour.net/posts/2016-12-21-christmas-communion-liturgy.html</link>
<pubDate>Wed, 21 Dec 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-12-21-christmas-communion-liturgy.html</guid>
<description>
<![CDATA[<p>
Peace be with you,
</p>

<p>
When a new emperor took the throne in Rome, messengers were sent to the rich and powerful to deliver &ldquo;glad tidings&rdquo; of Caesar, who was called &ldquo;savior and lord&rdquo; and promised to bring peace to the empire through the power of his vast riches and his mighty armies.
</p>

<p>
But when the King was born in Bethlehem, messengers from God were sent, not to the rich and powerful, but to those too poor to be noticed by the empire.
</p>

<p>
And for the first time, they heard glad tidings of good news, that peace would come to the world, not by the power of force, but by the power of love, not through a conquering army, but through the crucified Christ.
</p>

<p>
The messiah had come, but the city of Bethlehem was unprepared. There was no welcome; there was no room. His birth was largely ignored by the powerful, and noticed only by some shepherds and a few foreigners.
</p>

<p>
We, like Bethlehem, were also unprepared, but thanks be to God that even in our uncertainty, Christ called to us; even in our hesitation, Christ came to us; even in our sin, Christ died for us.
</p>

<p>
Christmas reminds us that ready or not, God has come into the world, and we are not alone. By sharing communion together we recognize and remember God&rsquo;s presence and proclaim the great mystery of the faith:<br>
</p>

<p>
Christ has died,<br>
Christ has risen,<br>
and Christ will come again.
</p>

<p>
We stand before the table, surrounded by God&rsquo;s people, who will soon partake together — powerful symbols of God&rsquo;s presence and his grace.
</p>

<p>
God before you,<br>
God around you,<br>
God within you.
</p>

<p>
Come to his table.
</p>

<p>
<i>Taking of the bread.</i>
</p>

<p>
Christ&rsquo;s body was broken not just to make a statement, and not merely for the sake of some cause.
</p>

<p>
Christ&rsquo;s body was broken for you, and for me.
</p>

<p>
Eat, and remember.
</p>

<p>
<i>Taking of the cup.</i>
</p>

<p>
Just as his body was broken, his blood was shed, and God died, so that we may live.
</p>

<p>
Drink, and give thanks.
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="org748a5fb">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Religious Knowledge Survey</title>
<link>https://randyridenour.net/posts/2010-10-05-religious-knowledge-survey.html</link>
<pubDate>Tue, 05 Oct 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-10-05-religious-knowledge-survey.html</guid>
<description>
<![CDATA[<p>
<a href="http://www.ethicsdaily.com">EthicsDaily.com</a> has an interesting story about a recent Pew Forum survey on religious knowledge in the United States. Jews, Mormons, and atheists/agnostics appear to know more about world religions than American Christians.
</p>

<p>
For those who would like to test their own knowledge, the Pew Forum on Religion and Public Life has provided a <a href="http://features.pewforum.org/quiz/us-religious-knowledge/">short version of the survey</a> that you can take online.
</p>


<div class="tagline" id="org3444a19">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Nineteenth Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-the-nineteenth-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-nineteenth-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
Here I am, Lord,<br>
asking for just<br>
one more chance.
</p>

<p>
Why do you continue to use me?
What good am I to you?
</p>

<p>
I am a<br>
flawed,<br>
broken,<br>
undependable<br>
tool.
</p>

<p>
One that makes mistakes,<br>
and asks for second chances.
</p>

<p>
But I hear a gentle voice<br>
whispering a message of hope,<br>
that my heart longs to hear&hellip;
</p>

<p>
That even a flawed and broken tool<br>
can make something beautiful<br>
when it&rsquo;s used by the master.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org22ce6c7">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Brief Habits as the Key to Living Forever</title>
<link>https://randyridenour.net/posts/2010-10-01-brief-habits-as-the-key-to-living-forever.html</link>
<pubDate>Fri, 01 Oct 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-10-01-brief-habits-as-the-key-to-living-forever.html</guid>
<description>
<![CDATA[<p>
Nietzsche would like <a href="http://www.npr.org/blogs/13.7/2010/09/29/130221453/how-to-live-forever-or-why-habits-are-a-curse?ft=1&amp;amp;f=114424647">this</a>.
</p>


<div class="tagline" id="org150da12">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Benediction</title>
<link>https://randyridenour.net/posts/2018-08-07-benediction-2.html</link>
<pubDate>Tue, 07 Aug 2018 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2018-08-07-benediction-2.html</guid>
<description>
<![CDATA[<p>
In <i>The Brothers Karamazov</i>, Dostoevsky uses the slanting rays of the sun to represent the love of God that can flow through each of us, transforming lives as we interact with each other with genuine love.
</p>

<p>
Now, may the slanting rays of the sun light the path before us, as the love of God surrounds us, to guide us on our journey. May God guard our hearts from anything that might separate us, and shelter us all in his love, forever.
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="org31264e0">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Burning Bibles?</title>
<link>https://randyridenour.net/posts/2009-10-14-burning-bibles.html</link>
<pubDate>Wed, 14 Oct 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-10-14-burning-bibles.html</guid>
<description>
<![CDATA[<p>
Interesting <a href="http://www.thebigdaddyweave.com/2009/10/burning-bibles-baptist-style.html">post</a> today on the big daddy weave blog about a church that will burn translations other than the King James for Halloween. They&rsquo;ll also be burning an eclectic collection of music and books. The list of authors considered heretical is amazingly broad.
</p>


<div class="tagline" id="org1cdf1be">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>New Hugo Functions</title>
<link>https://randyridenour.net/posts/2023-02-05-new-hugo-functions.html</link>
<pubDate>Sun, 05 Feb 2023 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2023-02-05-new-hugo-functions.html</guid>
<description>
<![CDATA[<p>
I found some some new functions for automating Hugo in Emacs, that I was able to modify slightly to fit my own needs.
</p>

<p>
<a href="https://whatacold.io/blog/2022-10-10-emacs-hugo-blogging/">Ken Huang</a> has a nice function to select a tag from a list of tags used on the site, then insert it into the right place in the front-matter. 
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">hugo-select-tags</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-doc">"Select tags from the hugo org files in the current dir.

Note that it only extracts tags from lines like the below:
#+tags[]: emacs org"</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-comment-delimiter">;; </span><span class="org-comment">Move to end of tag line.
</span>  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">save-excursion</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>goto-char 1<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>re-search-forward <span class="org-string">"^#\\+tags"</span><span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>end-of-line<span class="org-rainbow-delimiters-depth-3">)</span>

    <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">let</span> <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-rainbow-delimiters-depth-5">(</span>files <span class="org-rainbow-delimiters-depth-6">(</span>directory-files-recursively default-directory <span class="org-string">"\\.org$"</span><span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
      <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-keyword">let</span> <span class="org-rainbow-delimiters-depth-5">(</span><span class="org-rainbow-delimiters-depth-6">(</span>source <span class="org-rainbow-delimiters-depth-7">(</span><span class="org-keyword">with-temp-buffer</span>
                      <span class="org-rainbow-delimiters-depth-8">(</span><span class="org-keyword">while</span> files
                        <span class="org-rainbow-delimiters-depth-9">(</span><span class="org-keyword">when</span> <span class="org-rainbow-delimiters-depth-1">(</span>file-exists-p <span class="org-rainbow-delimiters-depth-2">(</span>car files<span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
                          <span class="org-rainbow-delimiters-depth-1">(</span>insert-file-contents <span class="org-rainbow-delimiters-depth-2">(</span>car files<span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span><span class="org-rainbow-delimiters-depth-9">)</span>
                        <span class="org-rainbow-delimiters-depth-9">(</span><span class="org-keyword">pop</span> files<span class="org-rainbow-delimiters-depth-9">)</span><span class="org-rainbow-delimiters-depth-8">)</span>
                      <span class="org-rainbow-delimiters-depth-8">(</span>buffer-string<span class="org-rainbow-delimiters-depth-8">)</span><span class="org-rainbow-delimiters-depth-7">)</span><span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span>
        <span class="org-rainbow-delimiters-depth-5">(</span><span class="org-keyword">save-match-data</span>
          <span class="org-rainbow-delimiters-depth-6">(</span><span class="org-keyword">let</span> <span class="org-rainbow-delimiters-depth-7">(</span><span class="org-rainbow-delimiters-depth-8">(</span>pos 0<span class="org-rainbow-delimiters-depth-8">)</span>
                matches<span class="org-rainbow-delimiters-depth-7">)</span>
            <span class="org-rainbow-delimiters-depth-7">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-8">(</span>string-match <span class="org-string">"^#\\+[Tt]ags\\[</span><span class="org-string"><span class="org-constant">\\</span></span><span class="org-string">]: </span><span class="org-string"><span class="org-regexp-grouping-backslash">\\</span></span><span class="org-string"><span class="org-regexp-grouping-construct">(</span></span><span class="org-string">.+?</span><span class="org-string"><span class="org-regexp-grouping-backslash">\\</span></span><span class="org-string"><span class="org-regexp-grouping-construct">)</span></span><span class="org-string">$"</span> source pos<span class="org-rainbow-delimiters-depth-8">)</span>
              <span class="org-rainbow-delimiters-depth-8">(</span><span class="org-keyword">push</span> <span class="org-rainbow-delimiters-depth-9">(</span>match-string 1 source<span class="org-rainbow-delimiters-depth-9">)</span> matches<span class="org-rainbow-delimiters-depth-8">)</span>
              <span class="org-rainbow-delimiters-depth-8">(</span><span class="org-keyword">setq</span> pos <span class="org-rainbow-delimiters-depth-9">(</span>match-end 0<span class="org-rainbow-delimiters-depth-9">)</span><span class="org-rainbow-delimiters-depth-8">)</span><span class="org-rainbow-delimiters-depth-7">)</span>
            <span class="org-rainbow-delimiters-depth-7">(</span>insert
             <span class="org-rainbow-delimiters-depth-8">(</span>completing-read
              <span class="org-string">"Insert a tag: "</span>
              <span class="org-rainbow-delimiters-depth-9">(</span>sort
               <span class="org-rainbow-delimiters-depth-1">(</span>delete-dups
                <span class="org-rainbow-delimiters-depth-2">(</span>delete <span class="org-string">""</span> <span class="org-rainbow-delimiters-depth-3">(</span>split-string
                            <span class="org-rainbow-delimiters-depth-4">(</span>replace-regexp-in-string <span class="org-string">"[\"</span><span class="org-string"><span class="org-warning">\</span></span><span class="org-string">']"</span> <span class="org-string">" "</span>
                                                      <span class="org-rainbow-delimiters-depth-5">(</span>replace-regexp-in-string
                                                       <span class="org-string">"[,()]"</span> <span class="org-string">""</span>
                                                       <span class="org-rainbow-delimiters-depth-6">(</span>format <span class="org-string">"%s"</span> matches<span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
                            <span class="org-string">" "</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
               <span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">lambda</span> <span class="org-rainbow-delimiters-depth-2">(</span>a b<span class="org-rainbow-delimiters-depth-2">)</span>
                 <span class="org-rainbow-delimiters-depth-2">(</span>string&lt; <span class="org-rainbow-delimiters-depth-3">(</span>downcase a<span class="org-rainbow-delimiters-depth-3">)</span> <span class="org-rainbow-delimiters-depth-3">(</span>downcase b<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span><span class="org-rainbow-delimiters-depth-9">)</span><span class="org-rainbow-delimiters-depth-8">)</span><span class="org-rainbow-delimiters-depth-7">)</span><span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>insert <span class="org-string">" "</span><span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>


<p>
Look at this post from <a href="https://lucidmanager.org/productivity/create-websites-with-org-mode-and-hugo/">Peter Prevos</a>, for inserting links to other pages in the site. With it, you&rsquo;re able to just  <code>C-c C-l</code> to bring up a list of link types, select &ldquo;hugo&rdquo;, then pick the file name of the page you want to link. This is the code:
</p>


<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-comment-delimiter">;; </span><span class="org-comment">Follow Hugo links
</span>  <span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">org-hugo-follow</span> <span class="org-rainbow-delimiters-depth-2">(</span>link<span class="org-rainbow-delimiters-depth-2">)</span>
    <span class="org-doc">"Follow Hugo link shortcodes"</span>
    <span class="org-rainbow-delimiters-depth-2">(</span>org-link-open-as-file
     <span class="org-rainbow-delimiters-depth-3">(</span>string-trim <span class="org-string">"{{&lt;/* ref test.org */&gt;}}"</span> <span class="org-string">"{{&lt;/* ref "</span> <span class="org-string">"*/&gt;}}"</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>

  <span class="org-comment-delimiter">;; </span><span class="org-comment">New link type for Org-Hugo internal links
</span>  <span class="org-rainbow-delimiters-depth-1">(</span>org-link-set-parameters
   <span class="org-string">"hugo"</span>
   <span class="org-builtin">:complete</span> <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">lambda</span> <span class="org-rainbow-delimiters-depth-3">()</span>
               <span class="org-rainbow-delimiters-depth-3">(</span>concat <span class="org-string">"{{&lt;/* ref "</span>
                       <span class="org-rainbow-delimiters-depth-4">(</span>file-name-nondirectory
                        <span class="org-rainbow-delimiters-depth-5">(</span>read-file-name <span class="org-string">"File: "</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
                       <span class="org-string">" */&gt;}}"</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
   <span class="org-builtin">:follow</span> #'org-hugo-follow<span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>



<p>
They both have some other useful things that might also be helpful. I&rsquo;m grateful to others who solve problems they have and post the code online. I know just enough Emacs-lisp to figure out what is going on, and modify something to my own particular use-case, but not enough to be able to start from scratch.
</p>


<div class="tagline" id="orgfa5c31f">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a> 
</p>

</div>
]]>
</description></item>
<item>
<title>Teach Me to Sing</title>
<link>https://randyridenour.net/posts/2016-06-06-teach-me-to-sing.html</link>
<pubDate>Mon, 06 Jun 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-06-06-teach-me-to-sing.html</guid>
<description>
<![CDATA[<p>
Voice of Heaven,
</p>

<p>
Words become thoughts,<br>
thoughts, beliefs,<br>
and beliefs, actions;<br>
and that which I<br>
once merely heard<br>
is soon that which I am.
</p>

<p>
So, help me ignore<br>
the voices that inspire<br>
hatred and misery,<br>
distress and malice,<br>
selfishness and fear,
</p>

<p>
May I again hear the<br>
words of love and joy,<br>
peace and kindness,<br>
generosity and hope;
</p>

<p>
And by hearing,<br>
learn to speak,<br>
and by speaking,<br>
learn to sing with the<br>
Father, Son, and Spirit.
</p>

<p>
Three distinct voices,<br>
in one beautiful song.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgf306e64">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Todays News</title>
<link>https://randyridenour.net/posts/2008-12-12-todays-news.html</link>
<pubDate>Fri, 12 Dec 2008 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2008-12-12-todays-news.html</guid>
<description>
<![CDATA[<p>
Two stories in today’s news caught my attention. First, Britain’s /<a href="http://www.independent.co.uk/life-style/gadgets-and-tech/features/the-ipod-its-bound-to-fail-and-the-other-predictions-the-experts-would-rather-forget-1061286.html">The Independent </a>/reports on history’s most famous failed technology predictions. These include a claim from 1977 that no one will need a computer in their home.
</p>

<p>
The second story, in the <a href="http://www.washingtonpost.com/wp-dyn/content/article/2008/12/11/AR2008121104080_pf.html">Washington Post</a>, is a harrowing account of an assault conducted by U. S. Special Forces soldiers and Afghan commandos on an insurgent stronghold in Afghanistan. Ten of those soldiers will receive the Silver Star today. 
</p>



<div class="tagline" id="org5b238f1">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Making Tag Pages in an Org Mode Blog</title>
<link>https://randyridenour.net/posts/2024-12-30-tag-pages-org-mode-blog.html</link>
<pubDate>Mon, 30 Dec 2024 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2024-12-30-tag-pages-org-mode-blog.html</guid>
<description>
<![CDATA[<p>
I have finished converting the old Hugo blog to the new org-publish format. It was quite a bit of work, but I tried to automate as much as possible. I wrote about the initial setup <a href="https://randyridenour.net/posts/./2024-12-17-blogging-with-org-mode.html">here</a>. One minor change has been to remove the &ldquo;home&rdquo; and &ldquo;up&rdquo; links that org-publish inserts at the upper-right. This just requires a simple change to the <code>org-publish-project-alist</code>:
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-builtin">:html-link-home</span> <span class="org-string">""</span>
<span class="org-builtin">:html-link-up</span> <span class="org-string">""</span>
</code></pre>
</div>

<p>
Just make sure to change them wherever they occur in the alist.
</p>

<p>
A bigger issue was displaying post tags and creating tag pages. Tag and category pages in Hugo were fairly simple. Every time the site was built, Hugo would create the tag pages reflecting any new tags. Unfortunately, I could find no way to automatically do this with org-publish. My first thought was to simply forego tagging since there is a blog archive page with links to every post. A search on that page can find whatever you need, <i>if</i> you happened to know what you needed to search for. It&rsquo;s not a good way to simply browse an area of interest, however.
</p>

<p>
On the other hand, making tags manually was never going to work for me either. That would require manually adding tags to the post, being sure to use the same names for tags across posts. Otherwise, I&rsquo;d end up with some posts tagged &ldquo;org&rdquo; and others tagged &ldquo;org-mode&rdquo;. Then, I&rsquo;d have to create a new tag page if needed, make a link from the post to the tag page, then another link from the tag page back to the tagged post. There&rsquo;s no chance I could, or would, consistently make that happen. Fortunately, though, because this is Emacs, everything is scriptable.
</p>

<p>
Keep in mind that I&rsquo;m a philosopher, not a coder. Here are my steps to solving a problem:
</p>

<ol class="org-ol">
<li>Figure out what I want.</li>
<li>Find someone who has posted something close to what I want.</li>
<li>Make changes to their code to make it do what I want.</li>
<li>Keep hacking at it until it works.</li>
<li>Realize that what I thought I wanted wasn&rsquo;t really what I wanted, so return to step 1 and repeat until satisfied.</li>
</ol>

<p>
So, the result is likely to be sloppy and inefficient, but it generally works in the end. I started with this post from <a href="https://christiantietze.de/posts/2022/07/emacs-blogging-insert-tag-yaml-frontmatter-posts/">Christian Tietze</a>, who solved my first problem of consistently using tags across the site. From him, I got these three functions:
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">orgblog-all-tag-lines</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-doc">"Get filetag lines from all posts."</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">let</span> <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-rainbow-delimiters-depth-4">(</span>post-dir orgblog-posts-directory<span class="org-rainbow-delimiters-depth-4">)</span>
            <span class="org-rainbow-delimiters-depth-4">(</span>regex <span class="org-string">"^#\\+filetags:\\s([a-zA-Z]+)"</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>shell-command-to-string
     <span class="org-rainbow-delimiters-depth-4">(</span>concat <span class="org-string">"rg --context 0 --no-filename --no-heading --replace \"\\$1\" -- "</span> <span class="org-rainbow-delimiters-depth-5">(</span>shell-quote-argument regex<span class="org-rainbow-delimiters-depth-5">)</span> <span class="org-string">" "</span> post-dir<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>

<span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">orgblog-all-tags</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-doc">"Return a list of unique tags from all posts."</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>delete-dups
   <span class="org-rainbow-delimiters-depth-3">(</span>split-string <span class="org-rainbow-delimiters-depth-4">(</span>orgblog-all-tag-lines<span class="org-rainbow-delimiters-depth-4">)</span> nil t<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>

<span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">orgblog-select-tag</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-doc">"Select and insert a tag from tags in the blog."</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">defvar</span> <span class="org-variable-name">newtag</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">setq</span> newtag <span class="org-rainbow-delimiters-depth-3">(</span>completing-read <span class="org-string">"Tag: "</span> <span class="org-rainbow-delimiters-depth-4">(</span>orgblog-all-tags<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
The first uses <code>ripgrep</code> to get all of the filetag lines from the headers in the posts directory. The second splits those lines into a list of separate words and deletes the duplicates. The third displays the list and allows the user to select a tag to be assigned to a variable. The only things I believe I&rsquo;ve changed here are variable names. I also explicitly search the posts directory rather than the current directory since I write posts initially in a drafts directory. Since the tags are separated by a space in each filetag line, I can use the default value for <code>split-string</code>. If the desired tag is not on the list, just hit <code>return</code> and the new tag gets assigned to the variable.
</p>

<p>
At this point, I had to venture on my own into unknown waters. First, I needed to insert the new tag into the post. There&rsquo;s no real reason to keep the filetag lines, except that I might find a better way to use them in the future. So, I add the new tag to the end of the filetag line. I need to display it in the published post, though, so each post has a line at the end<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> that begins with &ldquo;Tagged:&rdquo;. This function handles that:
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">insert-post-tag</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>orgblog-select-tag<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>search-forward <span class="org-string">"#+filetags"</span> nil 1<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>end-of-line<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>insert <span class="org-rainbow-delimiters-depth-3">(</span>concat <span class="org-string">" "</span> newtag<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>search-forward <span class="org-string">"Tagged:"</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>end-of-line<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>insert <span class="org-rainbow-delimiters-depth-3">(</span>concat <span class="org-string">" [[file:../tags/"</span> newtag <span class="org-string">".org]["</span> <span class="org-rainbow-delimiters-depth-4">(</span>s-titleized-words newtag<span class="org-rainbow-delimiters-depth-4">)</span> <span class="org-string">"]]"</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
Note that I use Sveen Magnars&rsquo; <a href="https://github.com/magnars/s.el">s.el</a> library to capitalize the tag names for display. The next thing to do is to add the tagged post to the tag page. To do that, I use this function:
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">add-post-to-tagfile</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">defvar</span> <span class="org-variable-name">tagfile</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">defvar</span> <span class="org-variable-name">post-filename</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">defvar</span> <span class="org-variable-name">post-title</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">setq</span> tagfile <span class="org-rainbow-delimiters-depth-3">(</span>concat <span class="org-string">"../tags/"</span> newtag <span class="org-string">".org"</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">setq</span> post-filename <span class="org-rainbow-delimiters-depth-3">(</span>f-filename <span class="org-rainbow-delimiters-depth-4">(</span>f-this-file<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">progn</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>search-forward <span class="org-string">"#+title: "</span> nil 1<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">setq</span> post-title <span class="org-rainbow-delimiters-depth-4">(</span>buffer-substring <span class="org-rainbow-delimiters-depth-5">(</span>point<span class="org-rainbow-delimiters-depth-5">)</span> <span class="org-rainbow-delimiters-depth-5">(</span>line-end-position<span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">when</span>
      <span class="org-rainbow-delimiters-depth-3">(</span>not <span class="org-rainbow-delimiters-depth-4">(</span>file-exists-p tagfile<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>f-append-text <span class="org-rainbow-delimiters-depth-4">(</span>concat <span class="org-string">"#+title: Tagged: "</span> <span class="org-rainbow-delimiters-depth-5">(</span>s-titleized-words newtag<span class="org-rainbow-delimiters-depth-5">)</span> <span class="org-string">"\n#+setupfile: ../org-templates/post.org\n"</span><span class="org-rainbow-delimiters-depth-4">)</span> 'utf-8 tagfile<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>f-append-text <span class="org-rainbow-delimiters-depth-3">(</span>concat <span class="org-string">"\n- [[file:../posts/"</span> post-filename <span class="org-string">"]["</span> post-title <span class="org-string">"]]"</span><span class="org-rainbow-delimiters-depth-3">)</span> 'utf-8 tagfile<span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
To create the links, we&rsquo;ll need the filename and title of the post. We&rsquo;ll also need the filename for the tag page. Note that this function uses both the <a href="https://github.com/magnars/s.el">s.el</a> and Johan Andersson&rsquo;s <a href="https://github.com/rejeep/f.el">f.el</a> libraries. In short, here&rsquo;s what the function does:
</p>

<ol class="org-ol">
<li>Create the filename for the tag page in the tags directory.</li>
<li>Get the filename for the post.</li>
<li>Extract the post title from header title-line.</li>
<li>Create the file for the tag page if necessary.</li>
<li>Add a link to the post at the bottom of the tag page.</li>
</ol>

<p>
The final thing is to put all of functions together into one interactive function:
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">orgblog-add-tag</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>orgblog-select-tag<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>insert-post-tag<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>add-post-to-tagfile<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>save-buffer<span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>


<p>
The only thing left to do manually is to add a new tag page to the index page of the tags directory. I&rsquo;m sure I could automate that with some effort, but at this stage I hardly ever use any new tags, so I&rsquo;m not convinced that it would be worth the effort.
</p>

<p>
The only minor glitch in the system is that, for some reason, I have to press <code>return</code> twice to select the tag. I&rsquo;m not sure why. Eventually it will bother me enough to figure it out.
</p>



<div class="tagline" id="orgf0c6014">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/org.html">Org</a> <a href="https://randyridenour.net/posts/../tags/blog.html">Blog</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
I did discover that it needs to be before the footnote section, or it won&rsquo;t be displayed. 
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Definition of Lawyer</title>
<link>https://randyridenour.net/posts/2015-03-05-definition-of-lawyer.html</link>
<pubDate>Thu, 05 Mar 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-03-05-definition-of-lawyer.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Lawyer (n.) One skilled in the circumvention of the law.
</p>
</blockquote>

<p class="bigquote">
Ambrose Bierce
</p>


<div class="tagline" id="org0fb7ad9">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>My New Jekyll Site</title>
<link>https://randyridenour.net/posts/2015-01-18-my-new-jekyll-site.html</link>
<pubDate>Sun, 18 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-18-my-new-jekyll-site.html</guid>
<description>
<![CDATA[<p>
Jekyll was remarkably simple, much more than I expected. A competent person should be able to deploy a new Jekyll site in minutes. I, in usual fashion, took six hours. Here is a record of what I did, both what worked and what did not.
</p>
<section id="outline-container-org02fb21e" class="outline-2">
<h2 id="org02fb21e">The Steps, Both True and Errant</h2>
<div class="outline-text-2" id="text-org02fb21e">
</div>
<div id="outline-container-org4ef8601" class="outline-3">
<h3 id="org4ef8601">Install Jekyll</h3>
<div class="outline-text-3" id="text-org4ef8601">
<p>
The first step is to install <a href="http://jekyllrb.com ">Jekyll</a>. Since it&rsquo;s a Ruby Gem, it&rsquo;s very easy to install. I then built the default site, but it wasn&rsquo;t quite the style I wanted. I saw this article by <a href="http://www.smashingmagazine.com/2014/08/01/build-blog-jekyll-github-pages/">Barry Clark</a>, which led me to <a href="https://github.com/barryclark/jekyll-now%20">Jekyll Now</a>, which was a full-fledged starter site, but still not the style that I wanted. <a href="http://jekyllbootstrap.com ">Jekyll Bootstrap</a> is good for those who like Twitter Bootstrap, but I didn&rsquo;t need anything like that. Then, I saw something titled &ldquo;How I Created a Beautiful and Minimal Blog Using Jekyll, Github Pages, and poole&rdquo; by <a href="http://joshualande.com/jekyll-github-pages-poole/%20">Joshua Lande</a>. That seemed to be exactly what I wanted.
</p>
</div>
</div>
<div id="outline-container-orgc0f8f63" class="outline-3">
<h3 id="orgc0f8f63">Poole and Lanyon</h3>
<div class="outline-text-3" id="text-orgc0f8f63">
<p>
<a href="http://getpoole.com">Poole</a> provided a very nice minimalist site. When I went to the Poole site, I saw two themes. I really liked Lanyon, but couldn&rsquo;t figure out how to install a theme on top of Poole. After an embarrassing amount of time, I realized that the theme, Lanyon, already contained Poole. So, installing it was just a matter of downloading it.
</p>
</div>
</div>
<div id="outline-container-org86e0d7e" class="outline-3">
<h3 id="org86e0d7e">Configure the Site</h3>
<div class="outline-text-3" id="text-org86e0d7e">
<p>
Configuring the site is simple. There are a few items to add to the _config.yml file in the root directory of the site, mostly standard things like the site title and base URL. Then, just run `jekyll server` from the root directory of the site, browse to <code>http://localhost:4000</code>, and you should see your new site.
</p>
</div>
</div>
<div id="outline-container-org9bca4d3" class="outline-3">
<h3 id="org9bca4d3">Deployment</h3>
<div class="outline-text-3" id="text-org9bca4d3">
<p>
Deploying a Jekyll site is pretty easy; how it&rsquo;s done depends on where it&rsquo;s hosted. Github, besides having the best price (free!), it&rsquo;s also the easiest way to serve up a Jekyll site. Just name the repository &lt;username&gt;.github.io, and Github builds it and serves it automatically. After downloading and configuring Lanyon, I created a Git repository, and started to push that to Github, and&hellip; decided that this was a waste of time. Since Lanyon is hosted on Github, I forked Lanyon, changed the repository name, and cloned it. Then, I updated config.yml, browsed to rlridenour.github.io, and saw my home page.
</p>
</div>
</div>
<div id="outline-container-org59af65b" class="outline-3">
<h3 id="org59af65b">Styling the Site</h3>
<div class="outline-text-3" id="text-org59af65b">
<p>
This cost met some time, but only because of some poor initial choices on my part. Lanyon is built on Poole, and there were three CSS files, one each for Poole, Lanyon, and one called syntax.css. Some things that I wanted changed were in the Poole css file, others were in the Lanyon file. So, I proceeded to change things in both files. Then, it struck me that any update to either Poole or Lanyon would create a host of problems trying to figure out what needed to be changed again. So, I scrapped everything, started over, and just copied what the items I wanted to change to a new css file, then loaded that file last. Later, I moved them all to an SCSS directory, since Jekyll uses both SASS and CoffeeScript, and changed the config file to minimize the CSS file. At this point, my SCSS files are just the original CSS files with the extension changed.
</p>
</div>
</div>
<div id="outline-container-orgdb96061" class="outline-3">
<h3 id="orgdb96061">Archive and Tag Pages</h3>
<div class="outline-text-3" id="text-orgdb96061">
<p>
I blatantly copied <a href="http://joshualande.com/jekyll-github-pages-poole/%20">Joshua Lande&rsquo;s</a> archive page and <a href="http://blog.lanyonm.org/articles/2013/11/21/alphabetize-jekyll-page-tags-pure-liquid.html%20">Michael Lanyon&rsquo;s</a> tag page. I don&rsquo;t know if I&rsquo;ll add any search function, the tag page is probably a better way to find content.
</p>
</div>
</div>
<div id="outline-container-orgc80985e" class="outline-3">
<h3 id="orgc80985e">Final Details</h3>
<div class="outline-text-3" id="text-orgc80985e">
<p>
I added Disqus commenting, which  just a matter of copying some code from Disqus and copying it to the post layout file. I also added a reference to the MathJax script to the head.
</p>
</div>
</div>
<div id="outline-container-org32f4fdc" class="outline-3">
<h3 id="org32f4fdc">Finished</h3>
<div class="outline-text-3" id="text-org32f4fdc">
<p>
Now, the site is up, and it just needs some more content. We&rsquo;ll see how long that takes.
</p>


<div class="tagline" id="org536c4de">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
</div>
</div>
</section>
]]>
</description></item>
<item>
<title>Good Advice</title>
<link>https://randyridenour.net/posts/2017-02-28-good-advice.html</link>
<pubDate>Tue, 28 Feb 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-02-28-good-advice.html</guid>
<description>
<![CDATA[<p>
Best advice from the internet today:
</p>

<blockquote>
<p>
Master, what is the secret to happiness?
</p>

<p>
Not to argue with idiots.
</p>

<p>
Master, I completely disagree that this is the secret.
</p>

<p>
Yes, you are right.
</p>
</blockquote>


<div class="tagline" id="org5fbbcad">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Why Jekyll?</title>
<link>https://randyridenour.net/posts/2015-01-17-why-jekyll.html</link>
<pubDate>Sat, 17 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-17-why-jekyll.html</guid>
<description>
<![CDATA[<section id="outline-container-org2130d8e" class="outline-2">
<h2 id="org2130d8e">Same Old Story</h2>
<div class="outline-text-2" id="text-org2130d8e">
<p>
It must be that time of year again — the time that I do something new with the blog. I&rsquo;m not sure that I could remember all of the tools that I&rsquo;ve used to build web sites in the past:
</p>

<ul class="org-ul">
<li>Microsoft FrontPage (Those were dark days, indeed.)</li>
<li>Something that I vaguely remember being produced by Netscape</li>
<li>RapidWeaver</li>
<li>Blogger</li>
<li>RubyFrontier</li>
<li>Wordpress</li>
<li>Octopress</li>
<li>Statamic</li>
<li>Ghost</li>
<li>Squarespace</li>
</ul>

<p>
I&rsquo;m probably forgetting something, but you get the point. The problem is that none of these met all of my criteria for a good system. The last four are definitely viable, each have strengths and weaknesses. With Wordpress, Ghost, and Squarespace, I was able to post from my iPad when I didn&rsquo;t have access to the computer. With Octopress, I was able to keep an up-to-date copy of all posts in their native Markdown format. Posting from iOS with Octopress was possible, but tricky. With Squarespace, I could write the original post in my preferred text editor, then copy and paste into the Markdown field. If I later edited the post online, I would have to remember to update the stored file on the computer. I could download a backup, but it was an XML file, no longer Markdown. Statamic is a good solution, and if I had to design a site for a non-tech-savvy client, I would probably go with it.
</p>
</div>
</section>
<section id="outline-container-org0ea920a" class="outline-2">
<h2 id="org0ea920a">What I&rsquo;m Looking For</h2>
<div class="outline-text-2" id="text-org0ea920a">
<p>
Here are the features I wanted:
</p>

<ul class="org-ul">
<li>Inexpensive — I teach at a private, tuition-driven, liberal arts college.</li>
<li>Write in Markdown.</li>
<li>Write with Emacs.</li>
<li>Use some Markdown extension for footnotes<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> and tables.</li>
<li>Typeset math with MathJax.</li>
<li>Easily keep an updated copy of all posts in their native format.</li>
<li>Occasionally write and publish a post with my iPad.</li>
<li>Control over the aesthetics of the site.</li>
</ul>

<p>
<a href="http://scriptogr.am">Scriptogram</a> looked ideal, with posts built from Markdown files kept in Dropbox. The problem is that services like Scriptogram have been shutting down, because they weren&rsquo;t sustainable. There are some services that looked like they had a plan for sustainability, like <a href="https://www.silvrback.com ">Silvrback</a> and <a href="https://posthaven.com ">Posthaven</a>, but they didn&rsquo;t seem to meet my needs any better than Ghost.
</p>

<p>
I copied everything from Squarespace and built an Octopress site, deciding to live with the mobile posting problem. Octopress seems to take a bit of time to build, which could be annoying as the site gets larger, but that&rsquo;s a minor complaint. <a href="http://hexo.io ">Hexo</a> is fast, but most of the users seem to be Chinese, and like Blanche DuBois, I tend to rely on the kindness of strangers, at least I rely on others to have written about how to solve certain problems.
</p>
</div>
</section>
<section id="outline-container-orge188453" class="outline-2">
<h2 id="orge188453">Jekyll to the Rescue</h2>
<div class="outline-text-2" id="text-orge188453">
<p>
I&rsquo;ve played with <a href="http://jekyllrb.com ">Jekyll</a> in the past, but didn&rsquo;t find it very friendly unless packaged in Octopress. I decided to give Jekyll another try. It turned out to be fairly easy to set up, and I believe it has all of the features that I wanted. I&rsquo;m publish to Github Pages, so it&rsquo;s free. I&rsquo;m using an extension of Markdown called Kramdown that has footnotes, tables, and MathJax support. I not only have a local copy of my posts, but they&rsquo;re all under version control, backed up on Github. I found a very nice theme that I was able to use to fairly closely replicate my Squarespace site. Finally, I can write and publish a post on the Github web site, which is then copied to my computer the next time I publish. Of course, Emacs is able to automate much of the process.
</p>

<p>
So, here is the new Jekyll site.
</p>

<p>
UPDATE: I should have mentioned that the day I deployed the new Jekyll site, Brandon Mathis posted information about <a href="http://octopress.org/2015/01/15/octopress-3.0-is-coming/">Octopress 3</a>.
</p>

<p>
It sounds interesting, and I&rsquo;ll have to keep an eye on it. I saw <a href="http://www.websrvr.in/?utm_source=getsimpleform.com&amp;utm_medium=nav&amp;utm_campaign=simpleform1%20">websrvr</a> this morning. It builds from Dropbox, but is a paid service, so it might be something that sticks around.<sup><a id="fnr.2" class="footref" href="#fn.2" role="doc-backlink">2</a></sup> It certainly looks worth a test run.
</p>

<div class="tagline" id="org1da11d2">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
</div>
</section>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
What can I say&hellip; I&rsquo;m an academic.
</p></div></div>

<div class="footdef"><sup><a id="fn.2" class="footnum" href="#fnr.2" role="doc-backlink">2</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
It&rsquo;s only one dollar per month, so the cost is insignificant. I certainly like free, but I&rsquo;m leery of depending on something when I can&rsquo;t figure out how the people responsible are managing to pay their bills.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Palm Sunday 2015</title>
<link>https://randyridenour.net/posts/2015-03-30-palm-sunday-2015.html</link>
<pubDate>Mon, 30 Mar 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-03-30-palm-sunday-2015.html</guid>
<description>
<![CDATA[<p>
With praise and palm branches,<br>
the people celebrated<br>
their new freedom<br>
from their Greek overlords.
</p>

<p>
And in a new century,<br>
and under a new empire,<br>
the people once again<br>
wave the palm branches<br>
and cheer for a new hero.
</p>

<p>
Jesus rode into Jerusalem<br>
and the people cheered,<br>
but Jesus wept,<br>
for they could not see<br>
that the Jesus for whom we cheer<br>
is not the same Jesus<br>
that we behold upon the cross<br>
in silence, and in awe.
</p>

<p>
Father, forgive us<br>
for seeing only<br>
the messiah that we want,<br>
and not the messiah that we need.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgc270183">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Reconciliation and Hope</title>
<link>https://randyridenour.net/posts/2008-11-07-reconciliation-and-hope.html</link>
<pubDate>Fri, 07 Nov 2008 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2008-11-07-reconciliation-and-hope.html</guid>
<description>
<![CDATA[<p>
The year that I was born, 1963, was marked by these significant events:
</p>


<ul class="org-ul">
<li>In April, Martin Luther King was arrested and jailed in Birmingham.</li>
<li>In May, “Bull” Connor, the Commissioner of Public Safety in Birmingham used police dogs and fire hoses on a demonstration in Birmingham.</li>
<li>In June, Medgar Evers, the NAACP Field Secretary for Mississippi, was murdered outside his home.</li>
<li>In August, Martin Luther King delivered his famous “I Have a Dream” speech at the Lincoln Memorial in Washington, D.C.</li>
<li>In September, four young girls were killed in the bombing of the Sixteenth Street Baptist Church in Birmingham.</li>
</ul>

<p>
Tuesday, an African-American man was elected President of the United States.
</p>

<p>
The country has certainly come far. European countries are generally viewed as far more progressive than the United States, but, as far as I can tell, no European country is even remotely close to being able to select a member of a minority racial group as head of government.
</p>

<p>
That said, we still have a long ways to go before we can claim to have achieved racial reconciliation. On November 5, David Garland, President of Baylor University, issued a <a href="http://www.baylor.edu/lariat/news.php?action=story&amp;amp;story=54314">statement</a> concerning recent incidents of racial conflict on Baylor’s campus. We cannot hope to achieve reconciliation in this country if we are not even able to achieve it in the Church. It is time for the Church to not only ask forgiveness for our past sins regarding slavery, but to recognize that failing to take action to create a better future is itself a sin.
</p>

<p>
If nothing else, this week’s election is a sign of hope.
</p>


<div class="tagline" id="org601aa7e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a> <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>For Those Who Help Us Grow</title>
<link>https://randyridenour.net/posts/2015-01-13-for-those-who-help-us-grow.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-for-those-who-help-us-grow.html</guid>
<description>
<![CDATA[<p>
Sometimes it seems<br>
like the world<br>
is filled<br>
with a darkness<br>
that threatens<br>
to shatter our lives<br>
and destroy all hope,
</p>

<p>
but as our eyes<br>
are opened in worship<br>
we see that this darkness<br>
is but a shadow that flees<br>
as the light of Christ<br>
comes into the world.
</p>

<p>
May your light shine upon us,<br>
may it shine in us,<br>
may it shine through us.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orge6f4f2f">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Needs</title>
<link>https://randyridenour.net/posts/2011-05-08-needs-the-chart-says-it-all.html</link>
<pubDate>Sun, 08 May 2011 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2011-05-08-needs-the-chart-says-it-all.html</guid>
<description>
<![CDATA[<p>
The chart says it all.
</p>

<div class="org-center">

<figure id="org84fa5da">
<img src="https://randyridenour.net/posts/../images/posts/needs.png" alt="needs.png" width="100%">

</figure>
</div>



<div class="tagline" id="orgb034b07">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Consciousness</title>
<link>https://randyridenour.net/posts/2008-10-28-consciousness.html</link>
<pubDate>Tue, 28 Oct 2008 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2008-10-28-consciousness.html</guid>
<description>
<![CDATA[<p>
In Philosophy of Mind today, I claimed that the ability to respond to the environment meant that an organism was at least minimally conscious. Michael Novotny then asked if that entailed that certain mechanisms were conscious. For example, a trap door opens when a certain weight is place on it. It seems to be responding to the environment, so does that mean that it is conscious? If not, then what&rsquo;s wrong with my claim about the condition for minimal consciousness?
</p>


<div class="tagline" id="org93932d5">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Fourth Sunday of Easter</title>
<link>https://randyridenour.net/posts/2015-01-13-the-fourth-sunday-of-easter.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-fourth-sunday-of-easter.html</guid>
<description>
<![CDATA[<p>
God of grace and love,<br>
<br>
History is filled<br>
With names like<br>
Alexander,<br>
Hannibal,<br>
Caesar,<br>
Napoleon;<br>
Men who took up arms,<br>
And with violence,<br>
Bent the world to their will.<br>
<br>
But history whispers<br>
Of others,<br>
The faceless ones,<br>
Who were deemed<br>
To insignificant to name.<br>
<br>
We think of the woman<br>
Who, with her daughter,<br>
Gave her son to the Nile,<br>
Yet found a way to get him back,<br>
And by saving her son,<br>
Saved a people from their bondage.<br>
<br>
The world sees those<br>
Who bear swords,<br>
And calls them heroic.<br>
What greater courage<br>
Has the one<br>
Who faces the sword<br>
With compassion and love?<br>
</p>

<p>
Amen
</p>


<div class="tagline" id="orgf3ba2c8">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Nietzsche on Military Buildup</title>
<link>https://randyridenour.net/posts/2017-01-13-nietzsche-on-the-military-establishment.html</link>
<pubDate>Fri, 13 Jan 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-01-13-nietzsche-on-the-military-establishment.html</guid>
<description>
<![CDATA[<blockquote>
<p>
And perhaps the great day will come when a people, distinguished by wars and victories and by the highest development of a military order and intelligence, and accustomed to make the heaviest sacrifices for these things, will exclaim of its own free will, &ldquo;We break the sword,&rdquo; and will smash its entire military establishment down to its lowest foundations. Rendering oneself unarmed when one has been the best-armed, out of a height of feeling—that is the means to real peace, which must always rest on a peace of mind; whereas the so-called armed peace, as it now exists in all countries, is the absence of peace of mind. One trusts neither oneself nor one&rsquo;s neighbor and, half from hatred, half from fear, does not lay down arms. Rather perish than hate and fear, and twice rather perish than make oneself hated and feared—this must some day become the highest maxim for every single commonwealth, too.
</p>
</blockquote>

<p class="source">
Friedrich Nietzsche, <i>The Wanderer and His Shadow</i>, 284.
</p>


<div class="tagline" id="orgf1724bc">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Car Accidents and Conditional Probabilities</title>
<link>https://randyridenour.net/posts/2009-10-21-car-accidents-and-conditional-probabilities.html</link>
<pubDate>Wed, 21 Oct 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-10-21-car-accidents-and-conditional-probabilities.html</guid>
<description>
<![CDATA[<p>
A problem we looked at in Critical Thinking today asked why most car accidents occur close to home. The answer is that most of our driving is close to home. The problem then asked us to explain that in terms of conditional probabilities. I don&rsquo;t think that I explained it very well, so let me take another shot at it.
</p>

<p>
Remember the definition of conditional probability: 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.6" class="ltx_Math" alttext="\Pr(A\mid B)=\frac{\Pr(A\&amp;B)}{\Pr(B)}" display="inline">
  <semantics id="p1.1.m1.6a">
    <mrow id="p1.1.m1.6.6" xref="p1.1.m1.6.6.cmml">
      <mrow id="p1.1.m1.6.6.1.1" xref="p1.1.m1.6.6.1.2.cmml">
        <mi id="p1.1.m1.5.5" xref="p1.1.m1.5.5.cmml">Pr</mi>
        <mo id="p1.1.m1.6.6.1.1a" xref="p1.1.m1.6.6.1.2.cmml">⁡</mo>
        <mrow id="p1.1.m1.6.6.1.1.1" xref="p1.1.m1.6.6.1.2.cmml">
          <mo stretchy="false" id="p1.1.m1.6.6.1.1.1.2" xref="p1.1.m1.6.6.1.2.cmml">(</mo>
          <mrow id="p1.1.m1.6.6.1.1.1.1" xref="p1.1.m1.6.6.1.1.1.1.cmml">
            <mi id="p1.1.m1.6.6.1.1.1.1.2" xref="p1.1.m1.6.6.1.1.1.1.2.cmml">A</mi>
            <mo id="p1.1.m1.6.6.1.1.1.1.1" xref="p1.1.m1.6.6.1.1.1.1.1.cmml">∣</mo>
            <mi id="p1.1.m1.6.6.1.1.1.1.3" xref="p1.1.m1.6.6.1.1.1.1.3.cmml">B</mi>
          </mrow>
          <mo stretchy="false" id="p1.1.m1.6.6.1.1.1.3" xref="p1.1.m1.6.6.1.2.cmml">)</mo>
        </mrow>
      </mrow>
      <mo id="p1.1.m1.6.6.2" xref="p1.1.m1.6.6.2.cmml">=</mo>
      <mfrac id="p1.1.m1.4.4" xref="p1.1.m1.4.4.cmml">
        <mrow id="p1.1.m1.2.2.2.2" xref="p1.1.m1.2.2.2.3.cmml">
          <mi id="p1.1.m1.1.1.1.1" xref="p1.1.m1.1.1.1.1.cmml">Pr</mi>
          <mo id="p1.1.m1.2.2.2.2a" xref="p1.1.m1.2.2.2.3.cmml">⁡</mo>
          <mrow id="p1.1.m1.2.2.2.2.1" xref="p1.1.m1.2.2.2.3.cmml">
            <mo stretchy="false" id="p1.1.m1.2.2.2.2.1.2" xref="p1.1.m1.2.2.2.3.cmml">(</mo>
            <mrow id="p1.1.m1.2.2.2.2.1.1" xref="p1.1.m1.2.2.2.2.1.1.cmml">
              <mi id="p1.1.m1.2.2.2.2.1.1.2" xref="p1.1.m1.2.2.2.2.1.1.2.cmml">A</mi>
              <mo lspace="0.222em" rspace="0.222em" id="p1.1.m1.2.2.2.2.1.1.1" xref="p1.1.m1.2.2.2.2.1.1.1.cmml">&amp;</mo>
              <mi id="p1.1.m1.2.2.2.2.1.1.3" xref="p1.1.m1.2.2.2.2.1.1.3.cmml">B</mi>
            </mrow>
            <mo stretchy="false" id="p1.1.m1.2.2.2.2.1.3" xref="p1.1.m1.2.2.2.3.cmml">)</mo>
          </mrow>
        </mrow>
        <mrow id="p1.1.m1.4.4.4.4" xref="p1.1.m1.4.4.4.3.cmml">
          <mi id="p1.1.m1.3.3.3.1" xref="p1.1.m1.3.3.3.1.cmml">Pr</mi>
          <mo id="p1.1.m1.4.4.4.4a" xref="p1.1.m1.4.4.4.3.cmml">⁡</mo>
          <mrow id="p1.1.m1.4.4.4.4.1" xref="p1.1.m1.4.4.4.3.cmml">
            <mo stretchy="false" id="p1.1.m1.4.4.4.4.1.1" xref="p1.1.m1.4.4.4.3.cmml">(</mo>
            <mi id="p1.1.m1.4.4.4.2" xref="p1.1.m1.4.4.4.2.cmml">B</mi>
            <mo stretchy="false" id="p1.1.m1.4.4.4.4.1.2" xref="p1.1.m1.4.4.4.3.cmml">)</mo>
          </mrow>
        </mrow>
      </mfrac>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.6b">
      <apply id="p1.1.m1.6.6.cmml" xref="p1.1.m1.6.6">
        <eq id="p1.1.m1.6.6.2.cmml" xref="p1.1.m1.6.6.2"/>
        <apply id="p1.1.m1.6.6.1.2.cmml" xref="p1.1.m1.6.6.1.1">
          <ci id="p1.1.m1.5.5.cmml" xref="p1.1.m1.5.5">Pr</ci>
          <apply id="p1.1.m1.6.6.1.1.1.1.cmml" xref="p1.1.m1.6.6.1.1.1.1">
            <csymbol cd="latexml" id="p1.1.m1.6.6.1.1.1.1.1.cmml" xref="p1.1.m1.6.6.1.1.1.1.1">conditional</csymbol>
            <ci id="p1.1.m1.6.6.1.1.1.1.2.cmml" xref="p1.1.m1.6.6.1.1.1.1.2">𝐴</ci>
            <ci id="p1.1.m1.6.6.1.1.1.1.3.cmml" xref="p1.1.m1.6.6.1.1.1.1.3">𝐵</ci>
          </apply>
        </apply>
        <apply id="p1.1.m1.4.4.cmml" xref="p1.1.m1.4.4">
          <divide id="p1.1.m1.4.4.5.cmml" xref="p1.1.m1.4.4"/>
          <apply id="p1.1.m1.2.2.2.3.cmml" xref="p1.1.m1.2.2.2.2">
            <ci id="p1.1.m1.1.1.1.1.cmml" xref="p1.1.m1.1.1.1.1">Pr</ci>
            <apply id="p1.1.m1.2.2.2.2.1.1.cmml" xref="p1.1.m1.2.2.2.2.1.1">
              <and id="p1.1.m1.2.2.2.2.1.1.1.cmml" xref="p1.1.m1.2.2.2.2.1.1.1"/>
              <ci id="p1.1.m1.2.2.2.2.1.1.2.cmml" xref="p1.1.m1.2.2.2.2.1.1.2">𝐴</ci>
              <ci id="p1.1.m1.2.2.2.2.1.1.3.cmml" xref="p1.1.m1.2.2.2.2.1.1.3">𝐵</ci>
            </apply>
          </apply>
          <apply id="p1.1.m1.4.4.4.3.cmml" xref="p1.1.m1.4.4.4.4">
            <ci id="p1.1.m1.3.3.3.1.cmml" xref="p1.1.m1.3.3.3.1">Pr</ci>
            <ci id="p1.1.m1.4.4.4.2.cmml" xref="p1.1.m1.4.4.4.2">𝐵</ci>
          </apply>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.6c">\Pr(A\mid B)=\frac{\Pr(A\&amp;B)}{\Pr(B)}</annotation>
  </semantics>
</math>

</p>

<p>
Let&rsquo;s assume that 90% of driving is close to home and 10% is not. Let&rsquo;s also assume that the probability of having a car accident is 0.1 (that&rsquo;s high, but it will keep the math easy). Then, the probability of being near home given that you had an accident is equal to the probability of the conjunction of being near home and having an accident divided by the probability of having an accident, or 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.6" class="ltx_Math" alttext="\Pr(H\mid A)=\frac{\Pr(H\&amp;A)}{\Pr(A)}" display="inline">
  <semantics id="p1.1.m1.6a">
    <mrow id="p1.1.m1.6.6" xref="p1.1.m1.6.6.cmml">
      <mrow id="p1.1.m1.6.6.1.1" xref="p1.1.m1.6.6.1.2.cmml">
        <mi id="p1.1.m1.5.5" xref="p1.1.m1.5.5.cmml">Pr</mi>
        <mo id="p1.1.m1.6.6.1.1a" xref="p1.1.m1.6.6.1.2.cmml">⁡</mo>
        <mrow id="p1.1.m1.6.6.1.1.1" xref="p1.1.m1.6.6.1.2.cmml">
          <mo stretchy="false" id="p1.1.m1.6.6.1.1.1.2" xref="p1.1.m1.6.6.1.2.cmml">(</mo>
          <mrow id="p1.1.m1.6.6.1.1.1.1" xref="p1.1.m1.6.6.1.1.1.1.cmml">
            <mi id="p1.1.m1.6.6.1.1.1.1.2" xref="p1.1.m1.6.6.1.1.1.1.2.cmml">H</mi>
            <mo id="p1.1.m1.6.6.1.1.1.1.1" xref="p1.1.m1.6.6.1.1.1.1.1.cmml">∣</mo>
            <mi id="p1.1.m1.6.6.1.1.1.1.3" xref="p1.1.m1.6.6.1.1.1.1.3.cmml">A</mi>
          </mrow>
          <mo stretchy="false" id="p1.1.m1.6.6.1.1.1.3" xref="p1.1.m1.6.6.1.2.cmml">)</mo>
        </mrow>
      </mrow>
      <mo id="p1.1.m1.6.6.2" xref="p1.1.m1.6.6.2.cmml">=</mo>
      <mfrac id="p1.1.m1.4.4" xref="p1.1.m1.4.4.cmml">
        <mrow id="p1.1.m1.2.2.2.2" xref="p1.1.m1.2.2.2.3.cmml">
          <mi id="p1.1.m1.1.1.1.1" xref="p1.1.m1.1.1.1.1.cmml">Pr</mi>
          <mo id="p1.1.m1.2.2.2.2a" xref="p1.1.m1.2.2.2.3.cmml">⁡</mo>
          <mrow id="p1.1.m1.2.2.2.2.1" xref="p1.1.m1.2.2.2.3.cmml">
            <mo stretchy="false" id="p1.1.m1.2.2.2.2.1.2" xref="p1.1.m1.2.2.2.3.cmml">(</mo>
            <mrow id="p1.1.m1.2.2.2.2.1.1" xref="p1.1.m1.2.2.2.2.1.1.cmml">
              <mi id="p1.1.m1.2.2.2.2.1.1.2" xref="p1.1.m1.2.2.2.2.1.1.2.cmml">H</mi>
              <mo lspace="0.222em" rspace="0.222em" id="p1.1.m1.2.2.2.2.1.1.1" xref="p1.1.m1.2.2.2.2.1.1.1.cmml">&amp;</mo>
              <mi id="p1.1.m1.2.2.2.2.1.1.3" xref="p1.1.m1.2.2.2.2.1.1.3.cmml">A</mi>
            </mrow>
            <mo stretchy="false" id="p1.1.m1.2.2.2.2.1.3" xref="p1.1.m1.2.2.2.3.cmml">)</mo>
          </mrow>
        </mrow>
        <mrow id="p1.1.m1.4.4.4.4" xref="p1.1.m1.4.4.4.3.cmml">
          <mi id="p1.1.m1.3.3.3.1" xref="p1.1.m1.3.3.3.1.cmml">Pr</mi>
          <mo id="p1.1.m1.4.4.4.4a" xref="p1.1.m1.4.4.4.3.cmml">⁡</mo>
          <mrow id="p1.1.m1.4.4.4.4.1" xref="p1.1.m1.4.4.4.3.cmml">
            <mo stretchy="false" id="p1.1.m1.4.4.4.4.1.1" xref="p1.1.m1.4.4.4.3.cmml">(</mo>
            <mi id="p1.1.m1.4.4.4.2" xref="p1.1.m1.4.4.4.2.cmml">A</mi>
            <mo stretchy="false" id="p1.1.m1.4.4.4.4.1.2" xref="p1.1.m1.4.4.4.3.cmml">)</mo>
          </mrow>
        </mrow>
      </mfrac>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.6b">
      <apply id="p1.1.m1.6.6.cmml" xref="p1.1.m1.6.6">
        <eq id="p1.1.m1.6.6.2.cmml" xref="p1.1.m1.6.6.2"/>
        <apply id="p1.1.m1.6.6.1.2.cmml" xref="p1.1.m1.6.6.1.1">
          <ci id="p1.1.m1.5.5.cmml" xref="p1.1.m1.5.5">Pr</ci>
          <apply id="p1.1.m1.6.6.1.1.1.1.cmml" xref="p1.1.m1.6.6.1.1.1.1">
            <csymbol cd="latexml" id="p1.1.m1.6.6.1.1.1.1.1.cmml" xref="p1.1.m1.6.6.1.1.1.1.1">conditional</csymbol>
            <ci id="p1.1.m1.6.6.1.1.1.1.2.cmml" xref="p1.1.m1.6.6.1.1.1.1.2">𝐻</ci>
            <ci id="p1.1.m1.6.6.1.1.1.1.3.cmml" xref="p1.1.m1.6.6.1.1.1.1.3">𝐴</ci>
          </apply>
        </apply>
        <apply id="p1.1.m1.4.4.cmml" xref="p1.1.m1.4.4">
          <divide id="p1.1.m1.4.4.5.cmml" xref="p1.1.m1.4.4"/>
          <apply id="p1.1.m1.2.2.2.3.cmml" xref="p1.1.m1.2.2.2.2">
            <ci id="p1.1.m1.1.1.1.1.cmml" xref="p1.1.m1.1.1.1.1">Pr</ci>
            <apply id="p1.1.m1.2.2.2.2.1.1.cmml" xref="p1.1.m1.2.2.2.2.1.1">
              <and id="p1.1.m1.2.2.2.2.1.1.1.cmml" xref="p1.1.m1.2.2.2.2.1.1.1"/>
              <ci id="p1.1.m1.2.2.2.2.1.1.2.cmml" xref="p1.1.m1.2.2.2.2.1.1.2">𝐻</ci>
              <ci id="p1.1.m1.2.2.2.2.1.1.3.cmml" xref="p1.1.m1.2.2.2.2.1.1.3">𝐴</ci>
            </apply>
          </apply>
          <apply id="p1.1.m1.4.4.4.3.cmml" xref="p1.1.m1.4.4.4.4">
            <ci id="p1.1.m1.3.3.3.1.cmml" xref="p1.1.m1.3.3.3.1">Pr</ci>
            <ci id="p1.1.m1.4.4.4.2.cmml" xref="p1.1.m1.4.4.4.2">𝐴</ci>
          </apply>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.6c">\Pr(H\mid A)=\frac{\Pr(H\&amp;A)}{\Pr(A)}</annotation>
  </semantics>
</math>
.
</p>

<p>
On the assumptions I made above concerning the relative frequencies of trips and accidents, out of 110 total trips, 11 are away from home and 99 are near home. Out of those 11 trips away from home, 1 is an accident. Out of the 99 near home, 10 are accidents. So, 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.2" class="ltx_Math" alttext="\Pr(H\mid A)=\frac{.1}{.11}=.90" display="inline">
  <semantics id="p1.1.m1.2a">
    <mrow id="p1.1.m1.2.2" xref="p1.1.m1.2.2.cmml">
      <mrow id="p1.1.m1.2.2.1.1" xref="p1.1.m1.2.2.1.2.cmml">
        <mi id="p1.1.m1.1.1" xref="p1.1.m1.1.1.cmml">Pr</mi>
        <mo id="p1.1.m1.2.2.1.1a" xref="p1.1.m1.2.2.1.2.cmml">⁡</mo>
        <mrow id="p1.1.m1.2.2.1.1.1" xref="p1.1.m1.2.2.1.2.cmml">
          <mo stretchy="false" id="p1.1.m1.2.2.1.1.1.2" xref="p1.1.m1.2.2.1.2.cmml">(</mo>
          <mrow id="p1.1.m1.2.2.1.1.1.1" xref="p1.1.m1.2.2.1.1.1.1.cmml">
            <mi id="p1.1.m1.2.2.1.1.1.1.2" xref="p1.1.m1.2.2.1.1.1.1.2.cmml">H</mi>
            <mo id="p1.1.m1.2.2.1.1.1.1.1" xref="p1.1.m1.2.2.1.1.1.1.1.cmml">∣</mo>
            <mi id="p1.1.m1.2.2.1.1.1.1.3" xref="p1.1.m1.2.2.1.1.1.1.3.cmml">A</mi>
          </mrow>
          <mo stretchy="false" id="p1.1.m1.2.2.1.1.1.3" xref="p1.1.m1.2.2.1.2.cmml">)</mo>
        </mrow>
      </mrow>
      <mo id="p1.1.m1.2.2.3" xref="p1.1.m1.2.2.3.cmml">=</mo>
      <mfrac id="p1.1.m1.2.2.4" xref="p1.1.m1.2.2.4.cmml">
        <mn id="p1.1.m1.2.2.4.2" xref="p1.1.m1.2.2.4.2.cmml">.1</mn>
        <mn id="p1.1.m1.2.2.4.3" xref="p1.1.m1.2.2.4.3.cmml">.11</mn>
      </mfrac>
      <mo id="p1.1.m1.2.2.5" xref="p1.1.m1.2.2.5.cmml">=</mo>
      <mn id="p1.1.m1.2.2.6" xref="p1.1.m1.2.2.6.cmml">.90</mn>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.2b">
      <apply id="p1.1.m1.2.2.cmml" xref="p1.1.m1.2.2">
        <and id="p1.1.m1.2.2a.cmml" xref="p1.1.m1.2.2"/>
        <apply id="p1.1.m1.2.2b.cmml" xref="p1.1.m1.2.2">
          <eq id="p1.1.m1.2.2.3.cmml" xref="p1.1.m1.2.2.3"/>
          <apply id="p1.1.m1.2.2.1.2.cmml" xref="p1.1.m1.2.2.1.1">
            <ci id="p1.1.m1.1.1.cmml" xref="p1.1.m1.1.1">Pr</ci>
            <apply id="p1.1.m1.2.2.1.1.1.1.cmml" xref="p1.1.m1.2.2.1.1.1.1">
              <csymbol cd="latexml" id="p1.1.m1.2.2.1.1.1.1.1.cmml" xref="p1.1.m1.2.2.1.1.1.1.1">conditional</csymbol>
              <ci id="p1.1.m1.2.2.1.1.1.1.2.cmml" xref="p1.1.m1.2.2.1.1.1.1.2">𝐻</ci>
              <ci id="p1.1.m1.2.2.1.1.1.1.3.cmml" xref="p1.1.m1.2.2.1.1.1.1.3">𝐴</ci>
            </apply>
          </apply>
          <apply id="p1.1.m1.2.2.4.cmml" xref="p1.1.m1.2.2.4">
            <divide id="p1.1.m1.2.2.4.1.cmml" xref="p1.1.m1.2.2.4"/>
            <cn type="float" id="p1.1.m1.2.2.4.2.cmml" xref="p1.1.m1.2.2.4.2">.1</cn>
            <cn type="float" id="p1.1.m1.2.2.4.3.cmml" xref="p1.1.m1.2.2.4.3">.11</cn>
          </apply>
        </apply>
        <apply id="p1.1.m1.2.2c.cmml" xref="p1.1.m1.2.2">
          <eq id="p1.1.m1.2.2.5.cmml" xref="p1.1.m1.2.2.5"/>
          <share href="#p1.1.m1.2.2.4.cmml" id="p1.1.m1.2.2d.cmml" xref="p1.1.m1.2.2"/>
          <cn type="float" id="p1.1.m1.2.2.6.cmml" xref="p1.1.m1.2.2.6">.90</cn>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.2c">\Pr(H\mid A)=\frac{.1}{.11}=.90</annotation>
  </semantics>
</math>
, but 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.2" class="ltx_Math" alttext="\Pr(\neg H\mid A)=\frac{.01}{.11}=.09" display="inline">
  <semantics id="p1.1.m1.2a">
    <mrow id="p1.1.m1.2.2" xref="p1.1.m1.2.2.cmml">
      <mrow id="p1.1.m1.2.2.1.1" xref="p1.1.m1.2.2.1.2.cmml">
        <mi id="p1.1.m1.1.1" xref="p1.1.m1.1.1.cmml">Pr</mi>
        <mo id="p1.1.m1.2.2.1.1a" xref="p1.1.m1.2.2.1.2.cmml">⁡</mo>
        <mrow id="p1.1.m1.2.2.1.1.1" xref="p1.1.m1.2.2.1.2.cmml">
          <mo stretchy="false" id="p1.1.m1.2.2.1.1.1.2" xref="p1.1.m1.2.2.1.2.cmml">(</mo>
          <mrow id="p1.1.m1.2.2.1.1.1.1" xref="p1.1.m1.2.2.1.1.1.1.cmml">
            <mrow id="p1.1.m1.2.2.1.1.1.1.2" xref="p1.1.m1.2.2.1.1.1.1.2.cmml">
              <mo rspace="0.167em" id="p1.1.m1.2.2.1.1.1.1.2.1" xref="p1.1.m1.2.2.1.1.1.1.2.1.cmml">¬</mo>
              <mi id="p1.1.m1.2.2.1.1.1.1.2.2" xref="p1.1.m1.2.2.1.1.1.1.2.2.cmml">H</mi>
            </mrow>
            <mo id="p1.1.m1.2.2.1.1.1.1.1" xref="p1.1.m1.2.2.1.1.1.1.1.cmml">∣</mo>
            <mi id="p1.1.m1.2.2.1.1.1.1.3" xref="p1.1.m1.2.2.1.1.1.1.3.cmml">A</mi>
          </mrow>
          <mo stretchy="false" id="p1.1.m1.2.2.1.1.1.3" xref="p1.1.m1.2.2.1.2.cmml">)</mo>
        </mrow>
      </mrow>
      <mo id="p1.1.m1.2.2.3" xref="p1.1.m1.2.2.3.cmml">=</mo>
      <mfrac id="p1.1.m1.2.2.4" xref="p1.1.m1.2.2.4.cmml">
        <mn id="p1.1.m1.2.2.4.2" xref="p1.1.m1.2.2.4.2.cmml">.01</mn>
        <mn id="p1.1.m1.2.2.4.3" xref="p1.1.m1.2.2.4.3.cmml">.11</mn>
      </mfrac>
      <mo id="p1.1.m1.2.2.5" xref="p1.1.m1.2.2.5.cmml">=</mo>
      <mn id="p1.1.m1.2.2.6" xref="p1.1.m1.2.2.6.cmml">.09</mn>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.2b">
      <apply id="p1.1.m1.2.2.cmml" xref="p1.1.m1.2.2">
        <and id="p1.1.m1.2.2a.cmml" xref="p1.1.m1.2.2"/>
        <apply id="p1.1.m1.2.2b.cmml" xref="p1.1.m1.2.2">
          <eq id="p1.1.m1.2.2.3.cmml" xref="p1.1.m1.2.2.3"/>
          <apply id="p1.1.m1.2.2.1.2.cmml" xref="p1.1.m1.2.2.1.1">
            <ci id="p1.1.m1.1.1.cmml" xref="p1.1.m1.1.1">Pr</ci>
            <apply id="p1.1.m1.2.2.1.1.1.1.cmml" xref="p1.1.m1.2.2.1.1.1.1">
              <csymbol cd="latexml" id="p1.1.m1.2.2.1.1.1.1.1.cmml" xref="p1.1.m1.2.2.1.1.1.1.1">conditional</csymbol>
              <apply id="p1.1.m1.2.2.1.1.1.1.2.cmml" xref="p1.1.m1.2.2.1.1.1.1.2">
                <not id="p1.1.m1.2.2.1.1.1.1.2.1.cmml" xref="p1.1.m1.2.2.1.1.1.1.2.1"/>
                <ci id="p1.1.m1.2.2.1.1.1.1.2.2.cmml" xref="p1.1.m1.2.2.1.1.1.1.2.2">𝐻</ci>
              </apply>
              <ci id="p1.1.m1.2.2.1.1.1.1.3.cmml" xref="p1.1.m1.2.2.1.1.1.1.3">𝐴</ci>
            </apply>
          </apply>
          <apply id="p1.1.m1.2.2.4.cmml" xref="p1.1.m1.2.2.4">
            <divide id="p1.1.m1.2.2.4.1.cmml" xref="p1.1.m1.2.2.4"/>
            <cn type="float" id="p1.1.m1.2.2.4.2.cmml" xref="p1.1.m1.2.2.4.2">.01</cn>
            <cn type="float" id="p1.1.m1.2.2.4.3.cmml" xref="p1.1.m1.2.2.4.3">.11</cn>
          </apply>
        </apply>
        <apply id="p1.1.m1.2.2c.cmml" xref="p1.1.m1.2.2">
          <eq id="p1.1.m1.2.2.5.cmml" xref="p1.1.m1.2.2.5"/>
          <share href="#p1.1.m1.2.2.4.cmml" id="p1.1.m1.2.2d.cmml" xref="p1.1.m1.2.2"/>
          <cn type="float" id="p1.1.m1.2.2.6.cmml" xref="p1.1.m1.2.2.6">.09</cn>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.2c">\Pr(\neg H\mid A)=\frac{.01}{.11}=.09</annotation>
  </semantics>
</math>
.
</p>

<p>
Another way to look at it is to use Bayes&rsquo; Theorem, but we&rsquo;ll save that for another time.
</p>



<div class="tagline" id="orgc21e30a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/critical-thinking.html">Critical-Thinking</a>
</p>

</div>
]]>
</description></item>
<item>
<title>O'Connor on Evil</title>
<link>https://randyridenour.net/posts/2017-04-21-oconnor-on-evil.html</link>
<pubDate>Fri, 21 Apr 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-04-21-oconnor-on-evil.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
What has given the South her identity are those beliefs and qualities which she has absorbed from the Scriptures and from her own history of defeat and violation: a distrust of the abstract, a sense of human dependence on the grace of God, and a knowledge that evil is not simply a problem to be solved, but a mystery to be endured.
</p>
</blockquote>

<p class="bigquote">
Flannery O’Connor<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>


<div class="tagline" id="org87d2667">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
“The Catholic Novelist in the Protestant South,” in <i>Mystery and Manners: Occasional Prose</i>, eds. Robert Fitzgerald and Sally Fitzgerald (New York: Farrar, Straus, and Giroux, 1969), 209. 
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Pull Quotes</title>
<link>https://randyridenour.net/posts/2016-06-08-pull-quotes.html</link>
<pubDate>Wed, 08 Jun 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-06-08-pull-quotes.html</guid>
<description>
<![CDATA[<p>
Here is my attempt at pull quotes in the Lanyon/Poole theme for Jekyll:
</p>


<pre class="example" id="orgcd77814">
.pquote {
    float: right;
    width: 15rem;
    color: #979797;
    font-size: 1.5rem;
    line-height: 1.8rem;
    font-style: italic;
    padding: 1rem;
	quotes: "\201C""\201D""\2018""\2019";
}
</pre>

<p>
I just learned that Kramdown makes it easy to specify classes and attributes. So, this produces the pull quote:
</p>

<pre class="example" id="orgb6e914f">
&gt; This is some quoted text.
{:.pquote}
</pre>


<p>
It is easy to add quotation marks automatically, using the &ldquo;before&rdquo; and &ldquo;after&rdquo; class selectors. I decided not to do this for the sake of flexibility.
</p>


<div class="tagline" id="org5e18cc6">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Mistaken Priorities</title>
<link>https://randyridenour.net/posts/2015-10-23-mistaken-priorities.html</link>
<pubDate>Fri, 23 Oct 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-10-23-mistaken-priorities.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Man’s sensitivity to little things and insensitivity to the greatest things are marks of a strange disorder.
</p>
</blockquote>

<p class="bigquote">
Pascal
</p>




<div class="tagline" id="org2244363">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Seven Deadly Sins</title>
<link>https://randyridenour.net/posts/2009-06-10-seven-deadly-sins.html</link>
<pubDate>Wed, 10 Jun 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-06-10-seven-deadly-sins.html</guid>
<description>
<![CDATA[<p>
Back to the blog after a very long break. Geographers from Kansas State University have mapped out the <a href="http://flowingdata.com/2009/05/12/maps-of-the-seven-deadly-sins/">distribution of the seven deadly sins</a> (lust, gluttony, greed, sloth, wrath, envy and pride) across the United States. Interestingly, Oklahoma appears to be in good shape except for wrath.
</p>



<div class="tagline" id="orge6a7995">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Dont Be Afraid</title>
<link>https://randyridenour.net/posts/2016-06-14-dont-be-afraid.html</link>
<pubDate>Tue, 14 Jun 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-06-14-dont-be-afraid.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Here is the world. Beautiful and terrible things will happen. Don&rsquo;t be afraid.
</p>
</blockquote>

<p class="bigquote">
Frederick Buechner
</p>


<div class="tagline" id="orgd5e9d23">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Keynes on Capitalism</title>
<link>https://randyridenour.net/posts/2025-08-02-keynes-capitalism.html</link>
<pubDate>Sat, 02 Aug 2025 05:37:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-08-02-keynes-capitalism.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Capitalism is the extraordinary belief that the nastiest of men for the nastiest of motives will somehow work together for the benefit of all.
</p>
</blockquote>

<p class="bigquote">
John Maynard Keynes
</p>


<div class="tagline" id="org1bc74c8">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/economics.html">Economics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Housman on Thought</title>
<link>https://randyridenour.net/posts/2016-11-23-houseman-on-thought.html</link>
<pubDate>Wed, 23 Nov 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-11-23-houseman-on-thought.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Three minutes&rsquo; thought would suffice to find this out; but thought is irksome and three minutes is a long time.
</p>
</blockquote>

<ol class="org-ol bigquote">
<li>E. Housman<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup></li>
</ol>


<div class="tagline" id="org5652867">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
<i>Saturae of Juvenal</i> (Cambridge: Cambridge University Press, 1931), xi. 
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>The Monty Hall Problem</title>
<link>https://randyridenour.net/posts/2008-11-18-the-monty-hall-problem.html</link>
<pubDate>Tue, 18 Nov 2008 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2008-11-18-the-monty-hall-problem.html</guid>
<description>
<![CDATA[<p>
One of the assignments in Critical Thinking was to figure the probability of winning the prize in the traditional three-door Monty Hall problem. Remember that there are three doors for you, the contestant, to choose from, but only one has the prize. The host knows what door the prize is behind, and opens another door to show you that there is nothing there. He will open neither the one you pick nor the one that has the prize. Let’s say that you pick Door 1, and Monty opens Door 2. What’s the probability that the prize is behind Door 3? From class, you know the answer is 2/3.
</p>

<p>
What’s important is that the host knows where the prize is. If he doesn’t know, then the probability is 1/2. You can calculate this using Bayes’ Theorem. Try it out!
</p>

<p>
By the way, if you can remember “1/2” then you should be able to get some extra-credit points on tomorrow’s exam. Even more points if you can do the calculation&hellip;.
</p>



<div class="tagline" id="org7090715">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/critical-thinking.html">Critical-Thinking</a>
</p>

</div>
]]>
</description></item>
<item>
<title>To Dance Without Care</title>
<link>https://randyridenour.net/posts/2015-11-09-to-dance-without-care.html</link>
<pubDate>Mon, 09 Nov 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-11-09-to-dance-without-care.html</guid>
<description>
<![CDATA[<p>
Lord Jesus,
</p>

<p>
You invite us<br>
to lay down our<br>
burdens, cares, concerns,<br>
fears, and anxieties,<br>
and give them all to you.
</p>

<p>
Then, wrapped in the<br>
sweet warmth of your grace,<br>
we can dance in joy<br>
before the throne,<br>
as beloved children<br>
of the Father<br>
who have finally<br>
found their way home.<br>
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="org1d073ec">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Ethics Without Borders</title>
<link>https://randyridenour.net/posts/2010-12-03-the-ethical-and-moral-issues-that-face-people-in.html</link>
<pubDate>Fri, 03 Dec 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-12-03-the-ethical-and-moral-issues-that-face-people-in.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
The ethical and moral issues that face people in the U.S. have a great deal to do with how we see the world, whether we see it as interconnected or not, our responsibility for our neighbors nearby and far away, how we&rsquo;re going to use the resources and the gifts we have to the benefit of somebody beyond our own selves
</p>
</blockquote>

<p class="bigquote">
Episcopal Presiding Bishop Katharine Jefferts Schori<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> 
</p>

<div class="tagline" id="org31c8bcc">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
<i>Chicago Tribune</i>, December 2, 2010 
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Christmas Prayer</title>
<link>https://randyridenour.net/posts/2016-12-25-christmas-prayer.html</link>
<pubDate>Sun, 25 Dec 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-12-25-christmas-prayer.html</guid>
<description>
<![CDATA[<p>
Who am I this Christmas Day?
</p>

<p>
Am I an angel, bringing good news to those who yearn to hear it?
</p>

<p>
Am I a shepherd, who runs to see what God has done?
</p>

<p>
Am I a Magi, willing to give any gift to the King?
</p>

<p>
Am I Joseph, listening to any way that God might speak?<br>
</p>

<p>
Am I Mary, saying yes when others would jeer?
</p>

<p>
In the moments of stillness,<br>
when all pretensions are dropped,<br>
I fear that I may be Herod,<br>
safe and comfortable,<br>
but afraid of what might change.<br>
</p>

<p>
Lord, you know my true self,<br>
both what I am<br>
and what I can be,<br>
by your grace.<br>
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org205efb0">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Resolutions</title>
<link>https://randyridenour.net/posts/2015-01-27-prayer-for-resolutions.html</link>
<pubDate>Tue, 27 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-27-prayer-for-resolutions.html</guid>
<description>
<![CDATA[<p>
Gracious God,
</p>

<p>
I resolve<br>
to laugh,<br>
to listen,<br>
and to love<br>
like one whose<br>
eyes have just<br>
been opened in<br>
joy and wonder.
</p>

<p>
In the name of<br>
the one who<br>
makes wine from water<br>
and beauty from ashes,
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org0625cb9">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Moral Relativism</title>
<link>https://randyridenour.net/posts/2008-11-01-moral-relativism.html</link>
<pubDate>Sat, 01 Nov 2008 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2008-11-01-moral-relativism.html</guid>
<description>
<![CDATA[<p>
In Ethics, Friday, I sketched out an argument against moral relativism that appeals to the standard argument <i>for</i> moral relativism. The following is a typical argument for moral relativism:
</p>


<ul class="org-ul">
<li>There is widespread disagreement about ethical claims.</li>
<li>There is no rational way to settle this disagreement.</li>
<li>If there is no rational way to settle a disagreement concerning a claim, then we should deny that such claims are objectively true.</li>
<li>Therefore, ethical claims are not objectively true.</li>
</ul>

<p>
So, for any moral claim, that claim then there is at least one conceptual scheme in which that claim is true and at least one in which that claim is false. If this argument for moral relativism is convincing, then one should be equally convinced of this argument against moral relativism:
</p>


<ul class="org-ul">
<li>There is widespread disagreement about moral relativism.</li>
<li>There is no rational way to settle this disagreement.</li>
<li>If there is no rational way to settle a disagreement concerning a claim, then we should deny that such claims are objectively true.</li>
<li>Therefore, moral relativism is not objectively true.</li>
</ul>

<p>
Why should a claim that something is not objectively true bother someone who rejects objective truth?
</p>

<p>
Moral relativists are committed to the claim that moral truths are dependent on conceptual schemes, but if that claim is itself dependent on one’s conceptual scheme, then there is a conceptual scheme in which moral relativism is false. So, there is at least one conceptual scheme in which it is true that moral claims are true in every conceptual scheme. The only way that can be true is if moral truths are in fact true in every conceptual scheme. So, moral relativism is false.
</p>


<div class="tagline" id="orgab5df23">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Reformation Sunday</title>
<link>https://randyridenour.net/posts/2022-10-30-reformation-sunday.html</link>
<pubDate>Sun, 30 Oct 2022 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2022-10-30-reformation-sunday.html</guid>
<description>
<![CDATA[<p>
We had our annual Reformation Sunday gathering at the local German restaurant. My church doesn&rsquo;t count itself in the Reformed tradition, but we will take any excuse to get together for good food and drink.
</p>


<div class="tagline" id="org73f5241">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Third Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-the-third-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-third-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
God of grace,
</p>

<p>
We live in a word of concrete barricades, wooden fences, and stone walls that we have built to protect, separate, control, and hide; some hastily thrown up in hours, others carefully built in weeks or months.
</p>

<p>
Other walls, though, are constructed over a lifetime, and are just as real and just as effective—downcast eyes, hostile stares, and stony silence—walls constructed to prevent the pain of rejection, or to keep others out of our comfortable lives.
</p>

<p>
Yet we dream of a place where the barricades can be taken down, a place without fear, hunger, want, or need; a place with neither revenge nor retribution, for there are no wrongs to made right; a world filled with peace, justice, love, and grace—not another world, but this world, transformed and redeemed.
</p>

<p>
How can we build such a world when we only know how to build walls?
</p>

<p>
Lord have mercy on us.
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="org02f98ff">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Cross-Shattered Christ, Chapter 2</title>
<link>https://randyridenour.net/posts/2015-03-07-crucified-god-chapter-2.html</link>
<pubDate>Sat, 07 Mar 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-03-07-crucified-god-chapter-2.html</guid>
<description>
<![CDATA[<p>
I struggled with the second chapter of Hauerwas&rsquo; book, <i>The Cross-Shattered Christ</i><sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>, not because the chapter was particularly hard to follow, but because it forced me to reflect on my life as a teacher and minister. The chapter opened with a discussion of the reticence of the Gospels, why do they not tell us everything that we want to know? Why is Jesus simply silent on what many of us think are the most important questions of the day? We tend to be uncomfortable during times of silence, so we attempt to fill in the gaps, even when we have little of value to say. In much the same way, we are often uncomfortable with uncertainty, that is, being faced with questions for which we have no clear answers, so we take on the role of spokespeople for Christ. 
</p>

<p>
Hauerwas points out the presumptuousness of this: &ldquo;Our attempt to speak confidently of God in the face of modern skepticism, a skepticism we suspect also grips our lives as Christians, betrays a certainty inappropriate for a people who worship a crucified God.&rdquo;
</p>

<p>
One thing that I love about my job is the significant conversations that I have with colleagues and students. At lunch yesterday, I felt the discomfort of having no answer when asked about how to respond to particularly difficult questions asked by sincere followers of other religions.
</p>

<p>
It&rsquo;s not that I have nothing to say, it&rsquo;s rather that what I have to say seems insufficient for the task at hand. All of my clear and concise explanations suddenly seem incomplete and inadequate in the shadow the Cross of the Crucified One.
</p>

<div class="tagline" id="org6bc291b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Hauerwas, Stanley (2005-01-01). <i>Cross-Shattered Christ: Meditations on the Seven Last Words</i> (p. 18). Baker Publishing Group. Kindle Edition.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Questions and Answers</title>
<link>https://randyridenour.net/posts/2019-02-20-questions-and-answers.html</link>
<pubDate>Wed, 20 Feb 2019 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2019-02-20-questions-and-answers.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
My faith doesn&rsquo;t give me all the answers; it gives me a way to ask the questions.  
</p>
</blockquote>

<p class="bigquote">
Marion Pritchard
</p>
]]>
</description></item>
<item>
<title>Prayer for Justice</title>
<link>https://randyridenour.net/posts/2015-04-29-prayer-for-justice.html</link>
<pubDate>Wed, 29 Apr 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-04-29-prayer-for-justice.html</guid>
<description>
<![CDATA[<p>
A cry for justice swells up<br>
from a people who have seen<br>
so little of it.
</p>

<p>
&ldquo;Yes, justice,&rdquo;<br>
comes the reply,<br>
&ldquo;But first,<br>
we must have peace.<br>
Peace today,<br>
maybe justice tomorrow.&rdquo;
</p>

<p>
But a peace without justice,<br>
is not the Shalom of God.<br>
It is a peace that serves<br>
the status quo,<br>
the interests of the powerful,<br>
and the coffers of the wealthy.
</p>

<p>
The prophets tell us that<br>
your justice is measured<br>
not by its effect<br>
on the privileged,<br>
but by its effect<br>
on those who have<br>
been denied<br>
privilege and power.
</p>

<p>
The day is coming when<br>
God&rsquo;s justice will reign,<br>
when the low are lifted up<br>
and the mighty fall,<br>
and woe unto us<br>
who have stood in the way<br>
because of our silence.
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="org54e479e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Reading is Dangerous</title>
<link>https://randyridenour.net/posts/2025-04-02-reading-dangerous.html</link>
<pubDate>Wed, 02 Apr 2025 05:23:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-04-02-reading-dangerous.html</guid>
<description>
<![CDATA[<p>
When her daughter announced that she intended to learn to read, Rum Godden wrote this letter to her:
</p>

<blockquote>
<p>
You see, when you learn to read you will be born again into another world and it is a pity to be born again so
young. I should put off reading, if I were you. As soon as you learn to read you will not see anything again quite
as it is. It will all the time be altered by what you have read and you will never be quite alone again. I should
stay by yourself a bit longer if I were you. 
</p>
</blockquote>

<p class="source">
Rume Godden, <i>Rungli-Rungliot</i> (1943)
</p>

<div class="tagline" id="org17c6bbe">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Converting Org Files to Canvas Quizzes</title>
<link>https://randyridenour.net/posts/2023-12-31-converting-org-files-to-canvas-quizzes.html</link>
<pubDate>Fri, 24 May 2024 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2023-12-31-converting-org-files-to-canvas-quizzes.html</guid>
<description>
<![CDATA[<p>
Oklahoma Baptist University, like many others, uses <a href="https://www.instructure.com">Canvas</a> for a Learning Management System. There are many things I like about Canvas, but creating quizzes is not one of them. It is very difficult to do without constantly using the mouse, something that I find irritating and inefficient.
</p>

<p>
Before we used Canvas, we used <a href="https://moodle.org">Moodle</a>. One of the features that I really liked about Moodle was the ability to write tests in a simple format (<a href="https://docs.moodle.org/403/en/GIFT_format">GIFT</a>) using a text editor that could be imported into the LMS. Canvas, on the other hand, can import QTI files, which can be created with a text editor, but, unfortunately, QTI is not a simple format. QTI files are fairly complex XML files. One of my projects this January was to write something to convert a simple text file to the QTI format needed for Canvas. Since I use Emacs, Org mode is the natural file type to use. The more that I looked into the QTI format, the more I realized that this is a project best left to the summer, not the short time between the Fall and Spring semesters. Still, my research revealed some other options:
</p>

<ul class="org-ul">
<li>Geoffrey Poore&rsquo;s <a href="https://github.com/gpoore/text2qti">text2qti</a> converts Markdown files into QTI format quizzes. This would probably be the smart thing to use. I&rsquo;ll experiment with it over the next few weeks.</li>
<li>The <a href="https://canconvert.k-state.edu/qti/">Classic to Canvas Converter</a> provided by Kansas State. This inputs a CSV file created with a spreadsheet, and outputs a QTI file that can imported into Canvas. It works well, using <a href="https://dl.sps.northwestern.edu/canvas/2021/06/add-quiz-questions-to-canvas-by-converting-csv-files-to-qti-zip-files/">these instructions</a> provided by the Northwestern University School of Professional Studies.</li>
<li>The <a href="https://www.nyit.edu/its/canvas_exam_converter">Canvas Exam Converter</a> provided by the New York Institute of Technology. This has a text field in which can be pasted simply formatted text for the following question types: multiple choice, multiple answers, short answer, essay, and file upload. The tool checks for syntax errors, then converts the text to a QTI file and automatically downloads it.</li>
</ul>

<p>
In the end, I&rsquo;ll probably use text2qti, but for now, I&rsquo;ve opted for the Canvas Exam Converter. I mostly use multiple choice and essay questions on my Canvas quizzes, but have occasionally also used multiple answer questions. So. the Canvas Exam Converter is more than enough for my needs. Here is an example using each of the five question types that the converter allows: 
</p>

<pre class="example" id="org92a3841">
1. Multiple choice question (single correct answer)
a) Wrong
b) Wrong
*c) Right
d) Wrong

2. Multiple choice question (several correct answers)
[*] Right
[ ] Wrong
[*] Right
[ ] Wrong

3. Short answer question
* Acceptable answer
* Another acceptable answer

4. Essay question
####

5. File upload question
^^^^
</pre>


<p>
Now, this would be very simple to just type from scratch. Note that it is just a list with different styles of bullets for different kinds of questions, and Org mode is a very good tool for quickly creating lists. Org mode offers different options for the list indicators, and for each list type that converter requires, there is something very close to it in Org mode. To cycle through all of the options, put the point on a list item and enter <code>C-c &lt;right&gt;</code>. So, here&rsquo;s the Org text that I decided to use:
</p>

<pre class="example" id="org981f068">
1. Multiple choice question (single correct answer)
   a) Wrong
   b) Wrong
   c) Right*
   d) Wrong
2. Multiple answer question (several correct answers)
   - [X] Right
   - [ ] Wrong
   - [X] Right
   - [ ] Wrong
3. Short answer question
   + Acceptable answer
   + Another acceptable answer
4. Essay question
   - ####
5. File upload question
   - ^^^^
</pre>

<p>
The first thing to do is to allow letters for numbered lists in Org mode.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>  This is done by adding this to the init file:
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">setq</span> org-list-allow-alphabetical t<span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
Note that the correct answer to a multiple choice question is marked with an asterisk at the end of the option. Now, I just needed to do a few things, each accomplished easily with a regex search and replace:
</p>

<ol class="org-ol">
<li>Remove the hyphens.</li>
<li>Move the asterisk from the end of the correct multiple choice answer to the before the list item letter.</li>
<li>Change each short answer &ldquo;+&rdquo; bullet to an asterisk.</li>
<li>Change the multiple answer correct answer indicator to an asterisk.</li>
<li>Remove the whitespace from the beginning of each line</li>
<li>Add a blank line between each question.</li>
</ol>

<p>
I&rsquo;m sure that the third and fourth steps can be combined. For various reasons the converter didn&rsquo;t like the blank lines at the beginning and the end, so I added a couple of steps to delete those. Initially, I had all of these replacements done on the text in the original buffer, requiring me to undo everything if I wanted to add something to the quiz. So, I decided it would be best to copy the Org text to a temp buffer, perform the replacements in the temp buffer, and copy the result to the clipboard ready to paste into the converter. To make things even easier, I have the function open the converter page in my default browser. In the end, the conversion function looks like this:
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code>  <span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">convert-qti-nyit</span> <span class="org-rainbow-delimiters-depth-2">()</span>
    <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
    <span class="org-comment-delimiter">;; </span><span class="org-comment">Copy all to a temp buffer and set to text mode.
</span>    <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">let</span> <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-rainbow-delimiters-depth-4">(</span>old-buffer <span class="org-rainbow-delimiters-depth-5">(</span>current-buffer<span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span>
      <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">with-temp-buffer</span>
          <span class="org-rainbow-delimiters-depth-4">(</span>insert-buffer-substring old-buffer<span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-4">(</span>text-mode<span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-comment-delimiter">;; </span><span class="org-comment">convert multiple correct answer and essay questions
</span>          <span class="org-rainbow-delimiters-depth-4">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-5">(</span>re-search-forward <span class="org-string">"-"</span> nil t<span class="org-rainbow-delimiters-depth-5">)</span>
            <span class="org-rainbow-delimiters-depth-5">(</span>replace-match <span class="org-string">""</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-comment-delimiter">;; </span><span class="org-comment">Change correct multiple answer options to "*"
</span>          <span class="org-rainbow-delimiters-depth-4">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-4">)</span>
<span class="org-rainbow-delimiters-depth-4">(</span><span class="org-keyword">let</span> <span class="org-rainbow-delimiters-depth-5">(</span><span class="org-rainbow-delimiters-depth-6">(</span>case-fold-search nil<span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span>
          <span class="org-rainbow-delimiters-depth-5">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-6">(</span>re-search-forward <span class="org-string">"</span><span class="org-string"><span class="org-warning">\</span></span><span class="org-string">[X</span><span class="org-string"><span class="org-warning">\</span></span><span class="org-string">]"</span> nil t<span class="org-rainbow-delimiters-depth-6">)</span>
            <span class="org-rainbow-delimiters-depth-6">(</span>replace-match <span class="org-string">"*"</span><span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-comment-delimiter">;; </span><span class="org-comment">Mark short answer responses with "**"
</span>          <span class="org-rainbow-delimiters-depth-4">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-5">(</span>re-search-forward <span class="org-string">"+"</span> nil t<span class="org-rainbow-delimiters-depth-5">)</span>
            <span class="org-rainbow-delimiters-depth-5">(</span>replace-match <span class="org-string">"*"</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-comment-delimiter">;; </span><span class="org-comment">remove whitespace at beginning of lines
</span>          <span class="org-rainbow-delimiters-depth-4">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-5">(</span>re-search-forward <span class="org-string">"^\s-*"</span> nil t<span class="org-rainbow-delimiters-depth-5">)</span>
            <span class="org-rainbow-delimiters-depth-5">(</span>replace-match <span class="org-string">""</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-4">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-5">(</span>re-search-forward <span class="org-string">"</span><span class="org-string"><span class="org-regexp-grouping-backslash">\\</span></span><span class="org-string"><span class="org-regexp-grouping-construct">(</span></span><span class="org-string">[0-9]</span><span class="org-string"><span class="org-regexp-grouping-backslash">\\</span></span><span class="org-string"><span class="org-regexp-grouping-construct">)</span></span><span class="org-string">"</span> nil t<span class="org-rainbow-delimiters-depth-5">)</span>
            <span class="org-rainbow-delimiters-depth-5">(</span>replace-match <span class="org-string">"\n\\1"</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-comment-delimiter">;; </span><span class="org-comment">move correct answer symbol to beginning of line
</span>          <span class="org-rainbow-delimiters-depth-4">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-5">(</span>re-search-forward <span class="org-string">"</span><span class="org-string"><span class="org-regexp-grouping-backslash">\\</span></span><span class="org-string"><span class="org-regexp-grouping-construct">(</span></span><span class="org-string">^.*</span><span class="org-string"><span class="org-regexp-grouping-backslash">\\</span></span><span class="org-string"><span class="org-regexp-grouping-construct">)</span></span><span class="org-string"><span class="org-regexp-grouping-backslash">\\</span></span><span class="org-string"><span class="org-regexp-grouping-construct">(</span></span><span class="org-string"><span class="org-warning">\</span></span><span class="org-string">*$</span><span class="org-string"><span class="org-regexp-grouping-backslash">\\</span></span><span class="org-string"><span class="org-regexp-grouping-construct">)</span></span><span class="org-string">"</span> nil t<span class="org-rainbow-delimiters-depth-5">)</span>
            <span class="org-rainbow-delimiters-depth-5">(</span>replace-match <span class="org-string">"</span><span class="org-string"><span class="org-warning">\</span></span><span class="org-string">*\\1"</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-4">(</span>delete-trailing-whitespace<span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-comment-delimiter">;; </span><span class="org-comment">delete empty line at end and beginning
</span>          <span class="org-rainbow-delimiters-depth-4">(</span>end-of-buffer<span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-4">(</span>delete-char -1<span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-4">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-4">(</span>kill-line<span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-comment-delimiter">;; </span><span class="org-comment">Copy result to clipboard
</span>          <span class="org-rainbow-delimiters-depth-4">(</span>clipboard-kill-ring-save <span class="org-rainbow-delimiters-depth-5">(</span>point-min<span class="org-rainbow-delimiters-depth-5">)</span> <span class="org-rainbow-delimiters-depth-5">(</span>point-max<span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-3">)</span>
      <span class="org-rainbow-delimiters-depth-2">)</span>
    <span class="org-rainbow-delimiters-depth-2">(</span>browse-url <span class="org-string">"https://www.nyit.edu/its/canvas_exam_converter"</span><span class="org-rainbow-delimiters-depth-2">)</span>
    <span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
The file generated by the converter has to be compressed to a zip file before uploading the Canvas. In Mac OS, that&rsquo;s done with a right-click on the file in the Finder and choosing the compress option. An advantage to using text2qti is that the conversion and compression could be automated using a shell script. Maybe that will be tomorrow&rsquo;s project.
</p>

<div class="tagline" id="orgb6f9add">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a> <a href="https://randyridenour.net/posts/../tags/org.html">Org</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
I didn&rsquo;t realize this was possible at first. I initially used a numbered list for the multiple choice answers, then did five separate regex replaces, changing &ldquo;1)&rdquo; to &ldquo;a)&rdquo; and so on through &ldquo;5)&rdquo; to &ldquo;e)&rdquo;, and just resigned myself to adding any other options in Canvas itself. Changing the value of <code>setq org-list-allow-alphabetical</code> to <code>t</code> simplifies the conversion function and allows for an arbitrary number of answer options.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Prayer for Easter</title>
<link>https://randyridenour.net/posts/2015-01-13-prayer-for-easter.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-prayer-for-easter.html</guid>
<description>
<![CDATA[<p>
We hear Jesus say,<br>
<br>
&ldquo;Love your enemies,<br>
Turn the other cheek,<br>
Sell all you have,<br>
Give to the poor,<br>
Don&rsquo;t worry,<br>
Forgive,<br>
Be not afraid.&rdquo;<br>
<br>
<br>
We reply,<br>
<br>
&ldquo;Surely, he didn&rsquo;t mean what he said.<br>
We can&rsquo;t,<br>
It&rsquo;s not natural,<br>
It&rsquo;s impossible.&rdquo;<br>
<br>
Then Easter comes,<br>
And we are left speechless.<br>
<br>
May your beauty draw us,<br>
Your power strengthen us,<br>
And your love compel us<br>
To live fully as citizens of your kingdom.<br>
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orga0b9f6f">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Descartes First Edition</title>
<link>https://randyridenour.net/posts/2010-11-23-descartes-first-edition.html</link>
<pubDate>Tue, 23 Nov 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-11-23-descartes-first-edition.html</guid>
<description>
<![CDATA[<p>
A first edition of Descartes&rsquo; <i>Principles of Philosophy</i> will be up for <a href="http://www.scientificamerican.com/blog/post.cfm?id=first-edition-works-by-galileo-desc-2010-11-23">auction</a> on December 2. Do you think Sheri will let me bid?
</p>



<div class="tagline" id="orgdc56719">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Scheming Swindlers</title>
<link>https://randyridenour.net/posts/2012-05-25-scheming-swindlers.html</link>
<pubDate>Fri, 25 May 2012 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2012-05-25-scheming-swindlers.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
The Bible is very easy to understand. But we as Christians are a bunch of scheming swindlers. We pretend to be unable to understand it because we know very well that the minute we understand we are obliged to act accordingly. My God, you will say, if I do that my whole life will be ruined.
</p>
</blockquote>

<p class="bigquote">
S‌øren Kierkegaard
</p>


<div class="tagline" id="orgdd315de">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Fourth Sunday of Advent</title>
<link>https://randyridenour.net/posts/2015-01-13-fourth-sunday-of-advent.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-fourth-sunday-of-advent.html</guid>
<description>
<![CDATA[<p>
Sometimes it seems<br>
like the world<br>
is filled<br>
with a darkness<br>
that threatens<br>
to shatter our lives<br>
and destroy all hope,
</p>

<p>
but as our eyes<br>
are opened in worship<br>
we see that this darkness<br>
is but a shadow that flees<br>
as the light of Christ<br>
comes into the world.
</p>

<p>
May your light shine upon us,<br>
may it shine in us,<br>
may it shine through us.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org6e55ad1">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Easter</title>
<link>https://randyridenour.net/posts/2017-04-16-prayer-for-easter.html</link>
<pubDate>Sun, 16 Apr 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-04-16-prayer-for-easter.html</guid>
<description>
<![CDATA[<div class="org-center">

<figure id="org1a701cf">
<img src="https://randyridenour.net/posts/../images/posts/20170416-weeping-mary.jpg" alt="20170416-weeping-mary.jpg" width="100%">

</figure>
</div>

<p>
&lt;small&gt;
(Photograph: <b>Weeping Mary</b> by Martin Gommel)<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
&lt;/small&gt;
</p>

<p>
&ldquo;Who is it you are looking for?&rdquo;<br>
is a question for me,<br>
not just for Mary.
</p>

<p>
Mary looked at Jesus, and saw the gardener.
</p>

<p>
I look at my<br>
neighbor, and see a stranger;<br>
a stranger, an see an antagonist;<br>
an antagonist, and see an enemy.
</p>

<p>
Help me, Lord, to see you,<br>
wherever, and whoever, you are.
</p>

<p>
<i>Amen</i>
</p>





<div class="tagline" id="org4827dcb">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
<i>Weeping Mary</i>, from Art in the Christian Tradition, a project of the Vanderbilt Divinity Library, Nashville, TN. <a href="http://diglib.library.vanderbilt.edu/act-imagelink.pl?RC=54143">http://diglib.library.vanderbilt.edu/act-imagelink.pl?RC=54143</a> [retrieved April 16, 2017]. Original source: <a href="http://www.flickr.com/photos/kwerfeldein/110099808/">http://www.flickr.com/photos/kwerfeldein/110099808/</a>
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Gratitude Over Despair</title>
<link>https://randyridenour.net/posts/2016-11-24-gratitude-over-despair.html</link>
<pubDate>Thu, 24 Nov 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-11-24-gratitude-over-despair.html</guid>
<description>
<![CDATA[<p>
This prayer is from 2014, but somehow seems fitting again this year:
</p>

<p>
Gracious God,
</p>

<p>
In the events of this year,<br>
we see how fragile our lives truly are.
</p>

<p>
Daily, we are faced with a choice<br>
to be people who live in cynicism and despair,<br>
or people who live in gratitude and thanksgiving.
</p>

<p>
On this day, we choose gratitude over despair,<br>
and lift our hearts in thanksgiving to you,<br>
the one who is the source of all good things.
</p>

<p>
Thank you<br>
for family and friends,<br>
for life and for love,<br>
and for the beauty that we would see<br>
if we would just open our eyes to you.
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="orgc0979a1">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Art of Life</title>
<link>https://randyridenour.net/posts/2025-05-12-art-life.html</link>
<pubDate>Mon, 12 May 2025 05:13:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-05-12-art-life.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Life is the art of drawing sufficient conclusions from insufficient premises.  
</p>
</blockquote>

<p class="bigquote">
Samuel Butler
</p>


<div class="tagline" id="org23e13f1">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Emacs Starter Kit</title>
<link>https://randyridenour.net/posts/2015-05-29-emacs-starter-kit.html</link>
<pubDate>Fri, 29 May 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-05-29-emacs-starter-kit.html</guid>
<description>
<![CDATA[<p>
The first week of a break from classes is always a good time for a massive reconfiguration of something tech-related. Last time it was the blog, this time it is Emacs. Since I primarily use Emacs only for LaTeX and Markdown editing, I though I would give Kieran Healy&rsquo;s <a href="https://kieranhealy.org/resources/emacs-starter-kit/">Emacs Starter Kit for the Social Sciences</a> a try. He has done a masterful job of setting up a great LaTeX editing machine. Easy to install, and easy to customize.
</p>


<div class="tagline" id="orgac58b49">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Moltmann on Peace</title>
<link>https://randyridenour.net/posts/2017-11-20-moltmann-on-peace.html</link>
<pubDate>Mon, 20 Nov 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-11-20-moltmann-on-peace.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Peace is not merely the absence of war; it is also the overcoming of injustice and oppression. In positive terms, it is life that is blessed, affirmed, loved and successful–life as shalom. Anyone who wants to serve peace must serve life. He must therefore resist war, because this is the deadliest form of discord. But this resistance against war is only one part of a much wider devotion to life. The service of peace is the whole task of life.
</p>
</blockquote>

<p class="bigquote">
Jürgen Moltmann, <i>The Power of the Powerless</i>
</p>



<div class="tagline" id="org412bc28">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Maundy Thursday</title>
<link>https://randyridenour.net/posts/2016-03-24-prayer-for-maundy-thursday.html</link>
<pubDate>Thu, 24 Mar 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-03-24-prayer-for-maundy-thursday.html</guid>
<description>
<![CDATA[<p>
Father,
</p>

<p>
Examine my heart,<br>
show me my deepest desire.
</p>

<p>
Is it to be great,<br>
safe,<br>
secure,<br>
invincible,<br>
and strong?
</p>

<p>
Or is it to follow Jesus?
</p>

<p>
To build my protective fortress,<br>
or to risk loving my neighbor?
</p>

<p>
To demand my rights,<br>
or to take up the cross?
</p>

<p>
Not my will, but yours be done.
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="orge4b7a89">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Deception of Power</title>
<link>https://randyridenour.net/posts/2015-06-11-the-deception-of-power.html</link>
<pubDate>Thu, 11 Jun 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-06-11-the-deception-of-power.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
We have, I fear, confused power with greatness.
</p>
</blockquote>

<p class="bigquote">
Stewart Udall
</p>


<div class="tagline" id="org79a88f1">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Unexpected Grace</title>
<link>https://randyridenour.net/posts/2015-05-08-unexpected-grace.html</link>
<pubDate>Fri, 08 May 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-05-08-unexpected-grace.html</guid>
<description>
<![CDATA[<p>
This week&rsquo;s prayer is simple, but informed by events of the week that profoundly impacted me. First, NorthHaven Church​ was in the area that sustained some wind damage in Wednesday night&rsquo;s storm. The next day, Imam Imad Enchassi​ of the Islamic Society of Greater Oklahoma City graciously asked if we needed any help. To all our Muslim friends, <i>As-Salaam-Alaikum</i>.
</p>

<p>
Second, I see in my students a level of spiritual depth that I certainly did not have in my 20&rsquo;s and may not yet have in my 50&rsquo;s — one that moves beyond the superficial trivialities that pass for spirituality in much of American religion, but instead shows a deep understanding of the message of Jesus.
</p>

<p>
Gracious and Loving God,
</p>

<p>
Thank you for those moments<br>
when grace breaks in<br>
to interrupt our lives<br>
in surprising ways,<br>
and unexpected voices<br>
teach us once again<br>
what it means<br>
to follow Jesus.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org54b5ddf">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Burden of Freedom</title>
<link>https://randyridenour.net/posts/2017-10-12-the-burden-of-freedom.html</link>
<pubDate>Thu, 12 Oct 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-10-12-the-burden-of-freedom.html</guid>
<description>
<![CDATA[<p>
Hearing the sermon on Sunday, then reading Abraham Joshua Heschel on Monday and Flannery O&rsquo;Connor on Tuesday – they all seemed to be speaking the same thing to me. This week&rsquo;s prayer:
</p>

<p>
Lord,
</p>

<p>
I feel the weight of my choices,<br>
bearing down upon my conscience,<br>
each one a testimony to the truth<br>
that those who do evil<br>
have their greatest allies<br>
in those who do nothing.
</p>

<p>
The burden of freedom is this,<br>
though only some are guilty,<br>
we are all surely responsible.
</p>

<p>
We ask not that this burden<br>
be taken from us, but instead,<br>
that we bear it with more<br>
than the empty thoughts and prayers<br>
of those who just pass by,<br>
but with the grace and love<br>
of the Samaritan<br>
that leads to action.
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="org6acafeb">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Rejecting Exclusion</title>
<link>https://randyridenour.net/posts/2016-03-13-rejecting-exclusion.html</link>
<pubDate>Sun, 13 Mar 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-03-13-rejecting-exclusion.html</guid>
<description>
<![CDATA[<p>
Blessed Lord,
</p>

<p>
You warned us of a broad path<br>
that leads to destruction,<br>
a path that so many seem to be walking.
</p>

<p>
It is an easy path<br>
that calls us to<br>
give in to our temptations<br>
to hate, despise, and fear,<br>
to become something less<br>
than what you have created us to be.
</p>

<p>
You have called us to a higher path,
</p>

<p>
to renounce fear,<br>
and proclaim faith,
</p>

<p>
to cast off hatred,<br>
and put on love,
</p>

<p>
to reject exclusion,<br>
and embrace the world<br>
with open arms as wide<br>
as those that stretched out<br>
upon the cross for us,
</p>

<p>
but not just for us.
</p>

<p>
<i>Amen</i>
</p>

<div class="org-center">

<figure id="org41a3438">
<img src="https://randyridenour.net/posts/../images/posts/embrace.jpg" alt="embrace.jpg" width="100%">

</figure>
</div>



<div class="tagline" id="org70fd013">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for the Fourth Sunday of Advent</title>
<link>https://randyridenour.net/posts/2015-12-22-prayer-for-the-fourth-sunday-of-advent.html</link>
<pubDate>Tue, 22 Dec 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-12-22-prayer-for-the-fourth-sunday-of-advent.html</guid>
<description>
<![CDATA[<p>
Holy God,
</p>

<p>
When a new emperor<br>
took the throne,<br>
messengers were sent<br>
to the rich and powerful<br>
to deliver &ldquo;glad tidings&rdquo;<br>
of Caesar, who was called<br>
&ldquo;savior and lord&rdquo; and<br>
promised to bring<br>
peace to the empire<br>
through the power<br>
of his vast riches<br>
and his mighty armies.
</p>

<p>
But when the King was born,<br>
messengers from God were sent,<br>
not to the rich and powerful,<br>
but to those too poor<br>
to be noticed by the empire.
</p>

<p>
And for the first time,<br>
they heard glad tidings<br>
of good news, that peace<br>
would come to the world,<br>
not by the power of force<br>
but through the power of love.
</p>

<p>
Look within my heart, Lord,<br>
this Christmas season.
</p>

<p>
May what you find there<br>
reflect the humility<br>
of the ones to whom<br>
your messengers<br>
were first sent.
</p>

<p>
And forgive me for when<br>
I&rsquo;ve turned the celebration<br>
of your birth into something<br>
that served the empire<br>
more than it did your Kingdom.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org9424b95">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Pascal on Might and Right</title>
<link>https://randyridenour.net/posts/2018-06-20-pascal-on-might-and-right.html</link>
<pubDate>Wed, 20 Jun 2018 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2018-06-20-pascal-on-might-and-right.html</guid>
<description>
<![CDATA[<p>
On the birthday of Blaise Pascal, consider this wisdom from <i>The Pensees</i>:
</p>

<blockquote>
<p>
Right is open to dispute, might is easily recognized and beyond dispute. Therefore right could not be made mighty because might challenged right, calling it unjust and itself claiming to be just. Being thus unable to make right into might, we have made might into right. (L 103)
</p>
</blockquote>
]]>
</description></item>
<item>
<title>Thanksgiving</title>
<link>https://randyridenour.net/posts/2011-11-23-thanksgiving.html</link>
<pubDate>Wed, 23 Nov 2011 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2011-11-23-thanksgiving.html</guid>
<description>
<![CDATA[<p>
Thanksgiving should be an opportunity for reflection, not for the gluttony and sloth that has become the norm. One of my favorite Thanksgiving traditions to share the latest world hunger statistics with my Introduction to Philosophy class. I then urge the students to spend the break reading Ron Sider’s book, <i>Rich Christians in an Age of Hunger</i>.
</p>

<p>
This past week reminded me of how fortunate I am to be able to share my time with both students and colleagues. May their time away from campus this week be filled with rest, joy, and a renewed sense of God’s gracious love.
</p>



<div class="tagline" id="org1803331">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Blogging with Jekyll and Working Copy</title>
<link>https://randyridenour.net/posts/2015-05-20-working-copy.html</link>
<pubDate>Wed, 20 May 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-05-20-working-copy.html</guid>
<description>
<![CDATA[<p>
This blog is hosted on Github, and posting from iOS has been a challenge. I&rsquo;m optimistic that things have become much easier with the release of <a href="http://workingcopyapp.com">Working Copy</a>, which is a Git client for iOS that can fetch, merge, and push to both Github and Bitbucket.
 I cloned my site repository to the iPad with Working Copy, created a new Markdown file, and opened the file in <a href="http://bywordapp.com">Byword</a> with the iOS document picker. 
</p>

<p>
In a moment, I will try to push the new file to the repository, and hope that a new post shortly appears.
</p>

<p>
UPDATE: Success! I like writing with <a href="http://omz-software.com/editorial/">Editorial</a>, but it can&rsquo;t use the document picker. There is an Editorial workflow for Working Copy, but I haven&rsquo;t tried it yet. Byword is working perfectly.
</p>


<div class="tagline" id="orgb7c2a06">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Moving the Site</title>
<link>https://randyridenour.net/posts/2024-12-05-moving-site.html</link>
<pubDate>Thu, 05 Dec 2024 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2024-12-05-moving-site.html</guid>
<description>
<![CDATA[<p>
I&rsquo;ve been tempted to do this for years, but have just now transitioned from Hugo to a pure Org mode blog. The process went much more smoothly than I expected, although I still need to convert old Markdown posts to Org mode. That will have to wait until the semester ends. I&rsquo;ll write something soon explaining the transition.
</p>

<p>
The site is still found at <a href="https://randyridenour.net">randyridenour.net</a>.
</p>



<div class="tagline" id="org34516a2">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Ice Storm</title>
<link>https://randyridenour.net/posts/2010-01-30-ice-storm.html</link>
<pubDate>Fri, 29 Jan 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-01-30-ice-storm.html</guid>
<description>
<![CDATA[<p>
We lost power for a good part of the day. Of course, as soon as we emptied the refrigerator and freezer and took all of the food outside, the power came back on.
</p>


<div class="tagline" id="orgf1e0aba">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>For the Moments of Darkness</title>
<link>https://randyridenour.net/posts/2015-10-19-for-the-moments-of-darkness.html</link>
<pubDate>Mon, 19 Oct 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-10-19-for-the-moments-of-darkness.html</guid>
<description>
<![CDATA[<p>
Loving God,<br>
Source of light in our darkness,<br>
<br>
We give thanks for the light of your love<br>
that shines within us, through us, and around us.<br>
<br>
When the darkness threatens to overcome us,<br>
and we fear that we may lose our way,<br>
<br>
When our spirits are broken,<br>
and we no longer can find hope,<br>
<br>
Help us to hear the voice<br>
that spoke the light into being<br>
and called it good,<br>
<br>
And give us the strength<br>
to lift our voices with John the Apostle<br>
and declare unto the world<br>
that the light still shines in the darkness,<br>
<br>
And the darkness has not,<br>
will not,<br>
and cannot<br>
overcome it.<br>
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org3542ef2">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Convert Claude Quizzes to Emacs Org Mode</title>
<link>https://randyridenour.net/posts/2026-03-10-convert-claude-quizzes-emacs-org-mode.html</link>
<pubDate>Tue, 10 Mar 2026 19:32:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2026-03-10-convert-claude-quizzes-emacs-org-mode.html</guid>
<description>
<![CDATA[<p>
Writing quizzes in Canvas is, to put it mildly, a pain in the neck, especially for keyboard-centric users. Every tiny step in the process requires a mouse click, something that quickly becomes irritating. Fortunately, the New York Institute of Technology provides the <a href="https://www.nyit.edu/its/canvas_exam_converter">Canvas Exam Converter</a> which takes a formatted text file and converts to an XML file that Canvas can import. This means that, with a little help from Emacs, writing quizzes that can be quickly imported into Canvas is quick and easy. (See my 2024 post, <a href="https://randyridenour.net/posts/2023-12-31-converting-org-files-to-canvas-quizzes.html">Converting Org Files to Canvas Quizzes</a> for details.)
</p>

<p>
Coming up with good questions is still a challenge, though. It turns out that Claude is <i>very</i> effective at writing good multiple choice questions from a document. The questions are formatted like this:
</p>

<div class="org-src-container">
<pre class="src src-text"><code>**Question 1:** According to Aristotle, which of the following best describes distributive justice?

- A) Restoring equality after a wrong has been committed
- B) Equality of ratios based on factors like merit, need, or virtue
- C) Following the laws of society without exception
- D) Maximizing overall welfare for the greatest number of people

---

**Question 2:** Which of the following is a criticism of the Utilitarian approach to punishment?

- A) It fails to consider the consequences of punishment
- B) It relies too heavily on retribution
- C) It can justify punishing the innocent if doing so maximizes good outcomes
- D) It requires the punishment to exactly fit the crime
</code></pre>
</div>

<p>
To run my conversion function for sending to NYIT, I first need it in this form:
</p>

<div class="org-src-container">
<pre class="src src-text"><code>1. According to Aristotle, which of the following best describes distributive justice?
     a) Restoring equality after a wrong has been committed
     b) Equality of ratios based on factors like merit, need, or virtue
     c) Following the laws of society without exception
     d) Maximizing overall welfare for the greatest number of people
2. Which of the following is a criticism of the Utilitarian approach to punishment?
     a) It fails to consider the consequences of punishment
     b) It relies too heavily on retribution
     c) It can justify punishing the innocent if doing so maximizes good outcomes
     d) It requires the punishment to exactly fit the crime
</code></pre>
</div>

<p>
For weeks, I&rsquo;ve been converting them a series of regex search and replace operations, but why do that every time? One of the main reasons I use Emacs is to avoid repetitive, tedious tasks. Here&rsquo;s the function:
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">convert-quiz-claude-to-org</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-doc">"Convert markdown-style quiz questions from Claude to Org mode format. Operates on the current buffer or active region."</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">let</span> <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-rainbow-delimiters-depth-4">(</span>start <span class="org-rainbow-delimiters-depth-5">(</span><span class="org-keyword">if</span> <span class="org-rainbow-delimiters-depth-6">(</span>use-region-p<span class="org-rainbow-delimiters-depth-6">)</span> <span class="org-rainbow-delimiters-depth-6">(</span>region-beginning<span class="org-rainbow-delimiters-depth-6">)</span> <span class="org-rainbow-delimiters-depth-6">(</span>point-min<span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-4">(</span>end   <span class="org-rainbow-delimiters-depth-5">(</span><span class="org-keyword">if</span> <span class="org-rainbow-delimiters-depth-6">(</span>use-region-p<span class="org-rainbow-delimiters-depth-6">)</span> <span class="org-rainbow-delimiters-depth-6">(</span>region-end<span class="org-rainbow-delimiters-depth-6">)</span>       <span class="org-rainbow-delimiters-depth-6">(</span>point-max<span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-4">(</span>question-num 0<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">save-excursion</span>
      <span class="org-comment-delimiter">;; </span><span class="org-comment">Remove '</span><span class="org-comment"><span class="org-constant">---</span></span><span class="org-comment">' separator lines
</span>      <span class="org-rainbow-delimiters-depth-4">(</span>goto-char start<span class="org-rainbow-delimiters-depth-4">)</span>
      <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-5">(</span>re-search-forward <span class="org-string">"^---\n?"</span> end t<span class="org-rainbow-delimiters-depth-5">)</span>
          <span class="org-rainbow-delimiters-depth-5">(</span>replace-match <span class="org-string">""</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>

      <span class="org-comment-delimiter">;; </span><span class="org-comment">Convert **Question N:** to "N."
</span>      <span class="org-rainbow-delimiters-depth-4">(</span>goto-char start<span class="org-rainbow-delimiters-depth-4">)</span>
      <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-5">(</span>re-search-forward <span class="org-string">"^\\*\\*Question [0-9]+:\\*\\* "</span> end t<span class="org-rainbow-delimiters-depth-5">)</span>
          <span class="org-rainbow-delimiters-depth-5">(</span><span class="org-keyword">setq</span> question-num <span class="org-rainbow-delimiters-depth-6">(</span>1+ question-num<span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span>
          <span class="org-rainbow-delimiters-depth-5">(</span>replace-match <span class="org-rainbow-delimiters-depth-6">(</span>format <span class="org-string">"%d. "</span> question-num<span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>

      <span class="org-comment-delimiter">;; </span><span class="org-comment">Convert "- A)" "- B)" etc. to "     a)"  "     b)" etc.
</span>      <span class="org-rainbow-delimiters-depth-4">(</span>goto-char start<span class="org-rainbow-delimiters-depth-4">)</span>
      <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-5">(</span>re-search-forward <span class="org-string">"^- </span><span class="org-string"><span class="org-regexp-grouping-backslash">\\</span></span><span class="org-string"><span class="org-regexp-grouping-construct">(</span></span><span class="org-string">[A-D]</span><span class="org-string"><span class="org-regexp-grouping-backslash">\\</span></span><span class="org-string"><span class="org-regexp-grouping-construct">)</span></span><span class="org-string">)"</span> end t<span class="org-rainbow-delimiters-depth-5">)</span>
          <span class="org-rainbow-delimiters-depth-5">(</span>replace-match <span class="org-rainbow-delimiters-depth-6">(</span>format <span class="org-string">"     %s)"</span> <span class="org-rainbow-delimiters-depth-7">(</span>downcase <span class="org-rainbow-delimiters-depth-8">(</span>match-string 1<span class="org-rainbow-delimiters-depth-8">)</span><span class="org-rainbow-delimiters-depth-7">)</span><span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>

      <span class="org-comment-delimiter">;; </span><span class="org-comment">Remove blank lines
</span>      <span class="org-rainbow-delimiters-depth-4">(</span>goto-char start<span class="org-rainbow-delimiters-depth-4">)</span>
      <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-5">(</span>re-search-forward <span class="org-string">"^[[:blank:]]*\n"</span> end t<span class="org-rainbow-delimiters-depth-5">)</span>
          <span class="org-rainbow-delimiters-depth-5">(</span>replace-match <span class="org-string">""</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<div class="tagline" id="org32ebd78">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a> <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Perfect Church</title>
<link>https://randyridenour.net/posts/2015-09-25-the-perfect-church.html</link>
<pubDate>Fri, 25 Sep 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-09-25-the-perfect-church.html</guid>
<description>
<![CDATA[<p>
A prayer for those searching for the perfect church:
</p>

<p>
Lord Jesus,
</p>

<p>
We move from<br>
church to church,<br>
searching for one<br>
that meets our needs,<br>
one that is perfect<br>
for people like us.<br>
<br>
But what do we hope to find?<br>
A church filled<br>
with perfect people?<br>
People who have no faults,<br>
who speak no unkind words,<br>
who never hurt one another,<br>
and never have regrets?<br>
<br>
A perfect church, indeed,<br>
but a church with no place<br>
for one like me,<br>
a broken spirit<br>
who needs<br>
grace,<br>
love,<br>
healing,<br>
and mercy.<br>
<br>
And so, I bow in prayer,<br>
to ask for a church<br>
filled with those<br>
who are broken and flawed,<br>
hurting and in sorrow,<br>
who are there because<br>
they know that together,<br>
with you,<br>
they can find<br>
grace and mercy,<br>
healing, and hope<br>
in that place<br>
they call their church.<br>
<br>
Then I open my eyes<br>
to find that my prayer<br>
has already been answered.<br>
<br>
Thank you, Lord,<br>
for leading me home.<br>
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="org04f11c1">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Fourteenth Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-the-fourteenth-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-fourteenth-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
I love it when a minister points out something that I had never noticed in the text. Mitch Randall certainly did that this past Sunday. So, this prayer recalls Daniel&rsquo;s action to save his competitors in Babylon as recounted in Daniel 2.
</p>

<p>
If there is to be a winner,<br>
there must be a loser.<br>
or so it goes in the games we play,<br>
in games of sport,<br>
and in games of life.
</p>

<p>
The clever person ensures success<br>
by eliminating the competition.
</p>

<p>
Guns and knives are too crude<br>
for our sophisticated times,<br>
instead we use words<br>
to harm reputations<br>
and rumors to destroy characters.
</p>

<p>
And then, in the end,<br>
we can rest content<br>
in victory,<br>
isolated and alone.
</p>

<p>
Lord,
</p>

<p>
Bid us again<br>
to play in your fields,<br>
where contact is<br>
not hand-to-hand,<br>
but hand-in-hand.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org0065c0e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Rebel Mary</title>
<link>https://randyridenour.net/posts/2010-12-16-mary-represents-the-rebel-consciousness-that-is.html</link>
<pubDate>Thu, 16 Dec 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-12-16-mary-represents-the-rebel-consciousness-that-is.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Mary represents the &rsquo;rebel consciousness&rsquo; that is essential to Jesus&rsquo; gospel. Wherever the gospel is preached, we must remember that its good news will make you crazy. Jesus will put you at odds with the economic and political systems of our world. This gospel will force you to act, interrupting the world as it is in ways that make even pious people indignant.
</p>
</blockquote>

<p class="bigquote">
Emmanuel Katongole, Associate Professor of Theology and World Christianity at Duke University Divinity School
</p>







<div class="tagline" id="org512eb2b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Silence</title>
<link>https://randyridenour.net/posts/2015-04-27-prayer-for-silence.html</link>
<pubDate>Mon, 27 Apr 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-04-27-prayer-for-silence.html</guid>
<description>
<![CDATA[<p>
Holy God,
</p>

<p>
There are times when<br>
we just have no words,<br>
times of great beauty,<br>
or times of great suffering.
</p>

<p>
But our silence<br>
makes us uncomfortable,<br>
and we feel that<br>
we must say something,<br>
so we fill the silence<br>
with meaningless noise<br>
and empty chatter.
</p>

<p>
So, when we feel the urge<br>
to trivialize the sublime<br>
with our vain babbling,<br>
give us the strength<br>
to cover our mouths<br>
and stand before<br>
your holiness<br>
in silence<br>
and in awe.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgd92eb47">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Faith and Power</title>
<link>https://randyridenour.net/posts/2016-03-07-faith-and-power.html</link>
<pubDate>Mon, 07 Mar 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-03-07-faith-and-power.html</guid>
<description>
<![CDATA[<p>
The text for Mitch Randall&rsquo;s sermon was the story of Simon the magician in Acts 8. As I though about the passage, I was struck by Simon&rsquo;s willingness to pay for the power to confer the Holy Spirit on others, that is, his desire to exchange financial power for religious power. That, in turn, prompted me to think about the current role of religion in politics.
</p>

<p>
This week&rsquo;s prayer:
</p>


<p>
You know my heart, O Lord.<br>
The things that are hidden<br>
from me are laid bare<br>
before your eyes.
</p>

<p>
What are the reasons<br>
for proclaiming my faith?
</p>

<p>
Is it for your glory,<br>
or for my own?
</p>

<p>
Is it to welcome<br>
others into your kingdom,<br>
or to exclude them<br>
from mine?
</p>

<p>
We have turned faith<br>
into a commodity,<br>
something to buy and sell<br>
in the marketplace,<br>
and used your holy name<br>
as an instrument of<br>
worldly  power.
</p>

<p>
Open my grasping hands,<br>
help me to raise them<br>
in service to others<br>
and in worship to you.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org2b9ba41">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>A Prayer of Thanks for Friends</title>
<link>https://randyridenour.net/posts/2016-08-27-a-prayer-of-thanks-for-friends.html</link>
<pubDate>Sat, 27 Aug 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-08-27-a-prayer-of-thanks-for-friends.html</guid>
<description>
<![CDATA[<p>
Thank you for the gift of friends,<br>
those who are near,<br>
and those who are far;<br>
those still with us,<br>
and those who await us<br>
in the life to come.
</p>

<p>
Kind words remind us<br>
that there is no distance,<br>
neither time, nor space,<br>
neither this life, nor the next,<br>
that cannot be crossed.
</p>

<p>
For nothing can separate us<br>
from the love of God,<br>
and by that same love,<br>
we are connected to each other.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orge12aad6">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Lent 1</title>
<link>https://randyridenour.net/posts/2015-02-24-lent-1-prayer.html</link>
<pubDate>Tue, 24 Feb 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-02-24-lent-1-prayer.html</guid>
<description>
<![CDATA[<p>
Lord Jesus,<br>
</p>

<p>
As I find myself<br>
grasping for more,<br>
even though I<br>
surely have enough,
</p>

<p>
I hear the voice<br>
of the Spirit whisper,<br>
&ldquo;Is this how you<br>
follow the one<br>
who had no place<br>
to lay his head,<br>
whose only robe<br>
was taken from him<br>
and gambled away?&rdquo;
</p>

<p>
May I never confuse<br>
the abundant life<br>
with an empty<br>
life of abundance.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org618e64f">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>God in Our Lives</title>
<link>https://randyridenour.net/posts/2010-11-09-once-upon-a-time-the-story-goes-a-preacher-ran.html</link>
<pubDate>Tue, 09 Nov 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-11-09-once-upon-a-time-the-story-goes-a-preacher-ran.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Once upon a time, the story goes, a preacher ran through the streets of the city shouting, &rsquo;We must put God into our lives. We must put God into our lives.&rsquo; And hearing him, the old monastic rose up in the city plaza to say, &rsquo;No, sir, you are wrong. You see, God is already in our lives. Our task is simply to recognize that.&rsquo;
</p>
</blockquote>

<p class="bigquote">
Joan Chittister
</p>


<div class="tagline" id="orgfde7193">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Thirteenth Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-the-thirteenth-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-thirteenth-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
Sheri and I recently spent the weekend with some soldiers from my Afghanistan deployment and their families. I wrote this prayer after reflecting on the experience:
</p>


<p>
God of promise and hope,<br>
</p>

<p>
We give thanks today for shared memories.<br>
</p>

<p>
The stories bring healing<br>
as they are told and retold,<br>
for they remind us<br>
that joy is found in surprising places.<br>
</p>

<p>
Cherish our remembering,<br>
and strengthen our minds<br>
as the years pass,<br>
for you are God, our God,<br>
who forgets no one.<br>
</p>

<p>
<i>Amen</i>
</p>






<div class="tagline" id="org5859fd9">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Coconut</title>
<link>https://randyridenour.net/posts/2011-03-30-i-received-an-interesting-package-in-campus-mail.html</link>
<pubDate>Wed, 30 Mar 2011 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2011-03-30-i-received-an-interesting-package-in-campus-mail.html</guid>
<description>
<![CDATA[<p>
I received an interesting &ldquo;package&rdquo; in campus mail yesterday. It&rsquo;s a coconut with my name and box number written on it. There wasn&rsquo;t a note attached, so I really don&rsquo;t know what the significance of this is. Any ideas?
</p>

<div class="org-center">

<figure id="org367e2dd">
<img src="https://randyridenour.net/posts/../images/posts/coconut.jpeg" alt="coconut.jpeg" width="60%">

</figure>
</div>



<div class="tagline" id="orgc6f2243">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Be the Body of Christ</title>
<link>https://randyridenour.net/posts/2017-09-12-be-the-body-of-christ.html</link>
<pubDate>Tue, 12 Sep 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-09-12-be-the-body-of-christ.html</guid>
<description>
<![CDATA[<p>
We are the Body of Christ.
</p>

<p>
He cannot go where<br>
we refuse to tread,<br>
speak what we<br>
refuse to say,<br>
or share what<br>
we refuse to give.
</p>

<p>
May we be the<br>
instruments of<br>
his love and grace.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org476de47">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Indifference</title>
<link>https://randyridenour.net/posts/2016-06-01-indifference.html</link>
<pubDate>Wed, 01 Jun 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-06-01-indifference.html</guid>
<description>
<![CDATA[<p>
I passed a church this morning that had this statement on the sign: &ldquo;Indifference Not Hate.&rdquo; I’m curious what is meant by this, is it supposed to be a statement of reassurance to the community? &ldquo;It’s not that we hate you, we really just don’t care.&rdquo; Would you rather be hated or simply ignored? At least hate is an acknowledgment of the existence and importance of the other person.
</p>



<div class="tagline" id="org6d70ce2">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Org Export to PDF with Arara</title>
<link>https://randyridenour.net/posts/2021-07-21-org-export-to-pdf-with-arara.html</link>
<pubDate>Wed, 21 Jul 2021 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2021-07-21-org-export-to-pdf-with-arara.html</guid>
<description>
<![CDATA[<p>
I switched from latexmk to <a href="https://mirrors.concertpass.com/tex-archive/support/arara/doc/arara-quickstart.pdf">arara</a> for compiling LaTeX files. I like being able to embed the compilation steps into the document. That way, I can run the same command to compile, but use PDFLaTeX on some and LuaLaTeX on others. Org mode&rsquo;s export to PDF uses latexmk, though. I think I managed to set it to arara with this:
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">setq</span> org-latex-pdf-process '<span class="org-rainbow-delimiters-depth-2">(</span><span class="org-string">"arara %f"</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>




<div class="tagline" id="orgc039af1">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Kierkegaard on the Couch</title>
<link>https://randyridenour.net/posts/2009-10-29-kierkegaard-on-the-couch.html</link>
<pubDate>Thu, 29 Oct 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-10-29-kierkegaard-on-the-couch.html</guid>
<description>
<![CDATA[<p>
From <a href="http://happydays.blogs.nytimes.com/2009/10/28/kierkegaard-on-the-couch/"><i>The New York Times</i></a>, I especially like the little Sisyphus figure pushing the giant happy face up the hill.
</p>


<div class="tagline" id="org28991e0">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Ninth Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-the-ninth-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-ninth-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
When we discuss the concept of rights in political philosophy, I confess that I feel conflicted. On one hand, the recognition of, and commitment to, the rights of others is essential to treating them with the dignity that is due to one created in the image of God. On the other hand, the constant practice of demanding my own rights does not seem consistent with the claim to follow the one that Paul described in Philippians 2:
</p>


<blockquote>
<p>
Let the same mind be in you that was in Christ Jesus,<br>
who, though he was in the form of God,<br>
did not regard equality with God<br>
as something to be exploited,<br>
but emptied himself,<br>
taking the form of a slave,<br>
being born in human likeness.<br>
And being found in human form,<br>
he humbled himself<br>
and became obedient to the point of death—<br>
even death on a cross.
</p>
</blockquote>

<p>
Philippians 2:6-8 (NRSV)
</p>

<p>
So, yesterday&rsquo;s sermon on entitlement by Mitch Randall at [NorthHaven Church](<a href="http://northhavenchurch.net">http://northhavenchurch.net</a> ) was particularly convicting. Here is the prayer that it prompted:
</p>

<p>
<i>The petty heart</i><br>
<i>feels entitled to everything,</i><br>
<i>and finds grace in nothing.</i><br>
</p>

<p>
<i>Blessed is the one</i><br>
<i>who feels entitled to nothing,</i><br>
<i>but finds grace in everything.</i>
</p>

<p>
<i>Amen</i>
</p>






<div class="tagline" id="org1b99579">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Weasels</title>
<link>https://randyridenour.net/posts/2009-12-01-weaseling-out-of-things-is-what-separates-us-from.html</link>
<pubDate>Tue, 01 Dec 2009 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2009-12-01-weaseling-out-of-things-is-what-separates-us-from.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Weaseling out of things is what separates us from the animals. Well, except the weasel.
</p>
</blockquote>

<p class="bigquote">
Homer Simpson
</p>


<div class="tagline" id="org98fe18b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Truth, Beauty, and Peace</title>
<link>https://randyridenour.net/posts/2016-02-22-truth-beauty-and-peace.html</link>
<pubDate>Mon, 22 Feb 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-02-22-truth-beauty-and-peace.html</guid>
<description>
<![CDATA[<p>
Father,
</p>

<p>
There are days<br>
when it seems<br>
like I&rsquo;m creating<br>
a minefield with<br>
carefully placed<br>
hazards of<br>
discord,<br>
ugliness,<br>
and lies.
</p>

<p>
Help me instead<br>
to plant seeds of<br>
truth,<br>
beauty,<br>
and peace;<br>
building a place<br>
where others can<br>
run without care —<br>
</p>

<p>
Barefoot,<br>
with joy,<br>
in the fields<br>
of the Lord.
</p>


<div class="tagline" id="org53ed9ff">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Silent Jesus</title>
<link>https://randyridenour.net/posts/2016-10-23-the-silent-jesus.html</link>
<pubDate>Sun, 23 Oct 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-10-23-the-silent-jesus.html</guid>
<description>
<![CDATA[<p>
God of Grace,
</p>

<p>
When Jesus was offered<br>
the choice to be used<br>
or to be silent,
</p>

<p>
He chose silence.
</p>

<p>
May I guard against<br>
the temptation to craft<br>
an image of Jesus to use<br>
for my own political<br>
and personal use.
</p>

<p>
Thy will, not my own, Lord.
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="org4bbd265">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Surviving the Apocalypse</title>
<link>https://randyridenour.net/posts/2025-04-04-surviving-apocalypse.html</link>
<pubDate>Fri, 04 Apr 2025 19:49:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-04-04-surviving-apocalypse.html</guid>
<description>
<![CDATA[<p>
<a href="https://www.nytimes.com/2025/04/02/opinion/poland-democracy-us.html?emc=edit_th_20250403">Aleksandra Gliszczynska-Grabias</a> on how Poland survived a right-wing populist government: 
</p>

<blockquote>
<p>
But those who were in the forefront of this fight, they really had to create for themselves kind of a support network, not to feel helplessness and hopelessness with every new development happening. 
</p>
</blockquote>

<p>
May you find your community.
</p>

<div class="tagline" id="orgb38b5fd">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Talking About Suicide</title>
<link>https://randyridenour.net/posts/2015-01-13-talking-about-suicide.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-talking-about-suicide.html</guid>
<description>
<![CDATA[<p>
I was saddened to hear that Robin Williams died this week, apparently by suicide. I was also saddened to read how some people in faith communities reacted to the news. Some of these reactions struck me as callous, demonstrably false, or, at best, simply irrelevant.
</p>

<p>
Over the past thirty years, I have known three soldiers who committed suicide, During my two deployments, I have been involved in more suicide interventions than I care to remember, and I regularly teach suicide prevention classes to Army units. To prepare for these classes, I always look at the latest studies, especially ones focusing on suicides in the military. The <a href="http://www.armystarrs.org">Army Study to Assess Risk and Resilience in Servicemembers</a> is the largest ever conducted among military personnel, and will continue through 2015. Results are reported as they become available, and, so far, suggest that the problem is even worse in the Army than was previously thought. One thing is clear from the studies on suicide: suicide is a very complex problem, and there is no single determinant causal factor. So, any single-sentence explanation of a person&rsquo;s death by suicide, no matter how effective that sentence is as a sound-bite, is nearly certain to be overly naïve and simplistic.
</p>

<p>
Suicide prevention classes in the Army have mostly focused on identifying risk factors and warning signs and learning how to conduct an intervention. Risk factors are those qualities that make a problem more likely to occur, and warning signs are indicators that the problem is occurring. For example, high cholesterol is risk factor for heart attacks, while severe chest pain is a warning sign. The problem with just thinking in terms of risk factors and warning signs is that it doesn&rsquo;t help us know what to do to avoid the problem. I know that I should avoid having high cholesterol levels, but how do I do that? Knowing the risk factors and warning signs for suicide is essential for crisis intervention, but that alone won&rsquo;t necessarily help us prevent the crisis stage from occurring. We also need to think in terms of &ldquo;protective&rdquo; factors, those things that can be done to minimize the risk factors. The three major protective factors for suicide are effective mental health care, positive connections to high levels of interpersonal connectedness, and effective problem-solving skills.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>

<p>
So, here are two things that I suggest to keep in mind when discussing suicide, or any other complex problem that affects people deeply.
</p>

<ol class="org-ol">
<li>Remember Paul&rsquo;s admonition in 1 Corinthians 6:12, &ldquo;All things are lawful for me, but not all things are beneficial.&rdquo; A lesson that I continually have to relearn is that not every opinion, even if true, should be shared. Will expressing this opinion will help lessen anyone&rsquo;s pain, or will it simply contribute to the pain that is already there?</li>
<li>Be willing to engage in some critical self-reflection on the extent to which our individual actions, community interaction, and public policies have contributed to the problem. Do we tend to isolate those who are hurting because they make us feel uncomfortable? Do our attitudes concerning mental illness discourage those who are hurting from seeking help? Is there sufficient public funding for mental health care?</li>
</ol>

<p>
<a href="http://themattwalshblog.com/2014/08/12/robin-williams-didnt-die-disease-died-choice/">Matt Walsh</a> recently stated that suicide is a spiritual problem. I think that is at least partly true, but maybe not for the reasons that he proposed. On one hand, since the common thread in most suicide cases is depression, the problem is a biological one&mdash;an illness for which there is treatment.
</p>

<p>
On the other hand, the extent to which these protective factors are not present in our society <b>is</b> a spiritual problem, <i>our</i> spiritual problem. For Christians, the center of reality is a loving community, the Trinity, and our spiritual health is partly a function of how we reflect that love. So, today, and every day, I must ask myself if my words and actions demonstrate love and grace, or do they contribute to society&rsquo;s tendency to become ever increasingly individualistic, egoistic, and unwilling to care for the least of these.
</p>

<p>
This admonition from Teresa of Avila hangs on my office door, and seems to be appropriate for meditation today:
</p>

<blockquote>
<p>
Christ has no body now on earth but yours,  <br>
no hands but yours,  <br>
no feet but yours,  <br>
yours are the eyes through which Christ&rsquo;s compassion  <br>
is to look out to the earth,  <br>
yours are the feet by which He is to go about doing good  <br>
and yours are the hands by which He is to bless us now.
</p>
</blockquote>

<p>
<i>Amen</i>
</p>

<div class="tagline" id="org7f9a0ec">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
For more information, see the <a href="http://www.afsp.org">http://www.afsp.org</a>[American Foundation for Suicide Prevention][afsp].
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Brokenness</title>
<link>https://randyridenour.net/posts/2010-11-25-to-be-alive-is-to-be-broken-to-be-broken-is-to.html</link>
<pubDate>Thu, 25 Nov 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-11-25-to-be-alive-is-to-be-broken-to-be-broken-is-to.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
To be alive is to be broken; to be broken is to stand in need of grace.
</p>
</blockquote>

<p class="bigquote">
Brennan Manning
</p>


<div class="tagline" id="orgc0c878e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Dot Operators for Logical And</title>
<link>https://randyridenour.net/posts/2025-01-12-dot-operators-for-logical-and.html</link>
<pubDate>Sun, 12 Jan 2025 12:59:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2025-01-12-dot-operators-for-logical-and.html</guid>
<description>
<![CDATA[<p>
My logic textbook this semester uses a dot for &ldquo;and&rdquo; instead of an ampersand. Unfortunately, the center dot in LaTeX is too small to be easily legible. I managed to increase the size of the LaTeX cdot by using the bm package and renewing the command to  <code>\bm{\cdot}</code>. In some cases, such as social media and the web, it&rsquo;s easier to use a unicode symbol. Here are the obvious options:
</p>

<dl class="org-dl">
<dt>Dot Operator</dt><dd>(A ⋅ B)</dd>
<dt>Bullet Operator</dt><dd>(A ∙ B)</dd>
<dt>Bullet</dt><dd>(A • B)</dd>
</dl>

<p>
The bullet seems slightly more legible. Here&rsquo;s how it looks in a more complex formula:
</p>

<div class="org-center">
<p>
∼[A • (B ∨ C)] ⊃ (B • ∼D)
</p>
</div>

<p>
I don&rsquo;t see any downside to using the bullet.
</p>

<div class="tagline" id="org5dd5d1d">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/logic.html">Logic</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Big-Haired Preachers</title>
<link>https://randyridenour.net/posts/2015-09-08-bighaired-preachers.html</link>
<pubDate>Tue, 08 Sep 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-09-08-bighaired-preachers.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
They have the same feeble, literal grasp of the Bible as all those big-haired preachers do.
</p>
</blockquote>

<p class="bigquote">
Fox Mulder, The X-Files
</p>


<div class="tagline" id="org7f5c867">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Installing Auctex with Straight</title>
<link>https://randyridenour.net/posts/2024-07-09-installing-auctex-with-straight.html</link>
<pubDate>Tue, 09 Jul 2024 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2024-07-09-installing-auctex-with-straight.html</guid>
<description>
<![CDATA[<p>
Auctex suddenly stopped loading yesterday. I saw hints that a makefile now had to be run, but I wasn&rsquo;t sure where. I install packages using straight.el, which has a build and a repos directory. Running &ldquo;make&rdquo; in the straight/repos/auctex directory fixed everything.
</p>
]]>
</description></item>
<item>
<title>Stay Awake</title>
<link>https://randyridenour.net/posts/2015-01-20-stay-awake.html</link>
<pubDate>Tue, 20 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-20-stay-awake.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Disciple: &ldquo;Is there anything I can do to make myself enlightened?&rdquo;
</p>

<p>
Teacher: &ldquo;As little as you can do to make the sun rise in the morning.&rdquo;
</p>

<p>
Disciple: &ldquo;Then of what use are the spiritual exercises you prescribe?&rdquo;
</p>

<p>
Teacher: &ldquo;To make sure you are not asleep when the sun begins to rise.&rdquo;
</p>
</blockquote>

<p class="bigquote">
Anthony de Mello, <i>One Minute Wisdom</i>
</p>


<div class="tagline" id="org0f5110b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Back When I Could Run</title>
<link>https://randyridenour.net/posts/2010-04-13-im-back-at-the-chaplains-school-for-the-first.html</link>
<pubDate>Mon, 12 Apr 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-04-13-im-back-at-the-chaplains-school-for-the-first.html</guid>
<description>
<![CDATA[<p>
I&rsquo;m back at the Chaplains&rsquo; School for the first time in seven years. One of my classmates for this course asked me today if I was a runner. He said that I looked like someone who passed him on a 5-K in Baghdad. We were stationed on the same base at the same time, so I guess it was me. In honor of those memories, I posted a photo of the 378th Baghdad Army Ten-Miler group. This was before the race, I&rsquo;m not looking so good in the after-race picture.
</p>


<div class="org-center">

<figure id="orgb0df01b">
<img src="https://randyridenour.net/posts/../images/posts/army-run.png" alt="army-run.png" width="100%">

</figure>
</div>


<div class="tagline" id="orgbbfe3f8">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/army.html">Army</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Did I Miss Anything?</title>
<link>https://randyridenour.net/posts/2010-09-08-did-i-miss-anything.html</link>
<pubDate>Wed, 08 Sep 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-09-08-did-i-miss-anything.html</guid>
<description>
<![CDATA[<p>
A <a href="http://qgf.in/rz9PHe">poetic answer</a> to that perennial question from those who were absent from class.
</p>


<div class="tagline" id="orgf48f295">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Art of Taxation</title>
<link>https://randyridenour.net/posts/2018-03-30-the-art-of-taxation.html</link>
<pubDate>Fri, 30 Mar 2018 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2018-03-30-the-art-of-taxation.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
The art of taxation consists in so plucking the goose as to obtain the largest possible amount of feathers with the smallest possible amount of hissing.
</p>
</blockquote>

<p class="bigquote">
Attributed to Jean-Baptiste Colbert, Finance Minister to Louis XIV
</p>



<div class="tagline" id="org6d9a914">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Pentecost Prayer</title>
<link>https://randyridenour.net/posts/2017-06-03-pentecost-prayer.html</link>
<pubDate>Sat, 03 Jun 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-06-03-pentecost-prayer.html</guid>
<description>
<![CDATA[<p>
A prayer for tomorrow&rsquo;s sermon at Spring Creek Baptist Church:
</p>

<p>
God of life,
</p>

<p>
Sometimes our prayers are as parched as the desert<br>
and our hearts as dry as the dunes of sand.
</p>

<p>
We take offense at things that don&rsquo;t matter,<br>
but ignore the ones that do.
</p>

<p>
When others are hungry,<br>
we are full.
</p>

<p>
When others are hurting,<br>
we are numb.
</p>

<p>
When others are cold,<br>
we rest comfortably<br>
beneath warm blankets of apathy.
</p>

<p>
But even in our self-righteousness,<br>
we still feel something,<br>
a deep ache of longing,<br>
a thirst for something<br>
greater than ourselves,<br>
a lingering thought<br>
that you are still there.<br>
</p>

<p>
Emmanuel,<br>
God with us.<br>
</p>

<p>
Despite our weakness,<br>
you have called us to be your people,<br>
ambassadors of your kingdom.
</p>

<p>
On this Pentecost Sunday,
lead us once more to the well of your grace,<br>
bathe us again in the streams of your mercy.
</p>

<p>
Open the floodgates of your love,<br>
and let the rivers flow.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org8410c02">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Benediction for 22 Shenanigans</title>
<link>https://randyridenour.net/posts/2016-09-06-benediction-for-22-shenanigans.html</link>
<pubDate>Tue, 06 Sep 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-09-06-benediction-for-22-shenanigans.html</guid>
<description>
<![CDATA[<p>
22 Shenanigans is an organization dedicated to reducing the number of suicides among veterans. Here is the benediction from the sermon I preached at an event they held on Labor Day weekend.
</p>


<p>
Go now, follow where Christ calls you<br>
and proclaim the message God gives you. <br>
Don&rsquo;t be distracted by the concerns of the world,<br>
but stay focused on the hope that is within you.
</p>

<p>
May the Father be your strength and confidence;<br>
May Christ Jesus give you courage for his mission;<br>
And may the Spirit speak when your words fail.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org2cbeed4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Readability</title>
<link>https://randyridenour.net/posts/2009-12-03-readability.html</link>
<pubDate>Thu, 03 Dec 2009 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2009-12-03-readability.html</guid>
<description>
<![CDATA[<p>
<a href="http://lab.arc90.com/experiments/readability/">Readability</a>
</p>

<p>
Highly recommended if you read many articles on the internet.
</p>


<div class="tagline" id="orgc23ba39">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Thoughts on The Fine-Tuning Argument</title>
<link>https://randyridenour.net/posts/2019-02-14-thoughts-on-the-fine-tuning-argument.html</link>
<pubDate>Thu, 14 Feb 2019 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2019-02-14-thoughts-on-the-fine-tuning-argument.html</guid>
<description>
<![CDATA[<p>
Yesterday, Paul Gould from Southwestern Baptist Theological Seminary presented a very interesting talk titled, “Cultural Apologetics: Renewing the Christian Voice, Conscience, and Imagination in a Disenchanted World.” In it, he argued for two important claims:
</p>

<ol class="org-ol">
<li>The world is fine-tuned for human life, and</li>
<li>The world is fine-tuned for human flourishing.</li>
</ol>

<p>
The argument from fine-tuning is particularly fascinating in that, as Paul rightly pointed out, everyone agrees on the data, just not on what the data shows. As I continued to think about the presentation while driving home, I realized that I can’t even agree with myself on what the data shows.
</p>
<section id="outline-container-orgfe9a4c7" class="outline-2">
<h2 id="orgfe9a4c7">The Argument</h2>
<div class="outline-text-2" id="text-orgfe9a4c7">
<p>
The physics may be complicated, but the idea behind the argument is simple. Take a factor like the initial strength of the explosion at the Big Bang. Had the strength of that explosion differed by as little as one part in 1,060, the universe would have either collapsed back on itself, because the explosion was not strong enough to overcome the strength of gravity, or it would have expanded too fast for stars to form. So, had the force of that explosion been even slightly different, life would never have had a chance to form.
</p>

<p>
That factor is just one of many. By some estimates there are over 100 factors, and had any one of them been just slightly different, life would have been impossible. It is difficult to conceptualize the degree of tolerance here. An accuracy of 1 in 1,060 has been compared to firing a bullet and hitting a one-inch target twenty billion light years away on the other side of the observable universe. That’s just for one factor, the probability of all of the factors having the precise values that they do must be incredibly low.
</p>

<p>
So far, that’s nothing controversial. The universe appears to be fine-tuned for life. The controversial move is the inference from apparent fine-tuning to the probability of a fine-tuner. The intuition is that, considering the very many different ways the universe could have been, it is <i>very unlikely</i> that we would have ended up with this world if there were no creator. On the other hand, if there were a creator, it is <i>very likely</i> that a world capable of sustaining life would be created. Now, it becomes a Bayesian problem. Let <i>L</i> be a life sustaining universe and <i>D</i> be the existence of a designer, the probability of a designer given that the universe sustains life is
</p>

<p>

<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.8" class="ltx_Math" alttext="\Pr(D|L)=\frac{\Pr(D)\times\Pr(L|D)}{\Pr(L)}" display="inline">
  <semantics id="p1.1.m1.8a">
    <mrow id="p1.1.m1.8.8" xref="p1.1.m1.8.8.cmml">
      <mrow id="p1.1.m1.8.8.1.1" xref="p1.1.m1.8.8.1.2.cmml">
        <mi id="p1.1.m1.7.7" xref="p1.1.m1.7.7.cmml">Pr</mi>
        <mo id="p1.1.m1.8.8.1.1a" xref="p1.1.m1.8.8.1.2.cmml">⁡</mo>
        <mrow id="p1.1.m1.8.8.1.1.1" xref="p1.1.m1.8.8.1.2.cmml">
          <mo stretchy="false" id="p1.1.m1.8.8.1.1.1.2" xref="p1.1.m1.8.8.1.2.cmml">(</mo>
          <mrow id="p1.1.m1.8.8.1.1.1.1" xref="p1.1.m1.8.8.1.1.1.1.cmml">
            <mi id="p1.1.m1.8.8.1.1.1.1.2" xref="p1.1.m1.8.8.1.1.1.1.2.cmml">D</mi>
            <mo fence="false" id="p1.1.m1.8.8.1.1.1.1.1" xref="p1.1.m1.8.8.1.1.1.1.1.cmml">|</mo>
            <mi id="p1.1.m1.8.8.1.1.1.1.3" xref="p1.1.m1.8.8.1.1.1.1.3.cmml">L</mi>
          </mrow>
          <mo stretchy="false" id="p1.1.m1.8.8.1.1.1.3" xref="p1.1.m1.8.8.1.2.cmml">)</mo>
        </mrow>
      </mrow>
      <mo id="p1.1.m1.8.8.2" xref="p1.1.m1.8.8.2.cmml">=</mo>
      <mfrac id="p1.1.m1.6.6" xref="p1.1.m1.6.6.cmml">
        <mrow id="p1.1.m1.4.4.4" xref="p1.1.m1.4.4.4.cmml">
          <mrow id="p1.1.m1.4.4.4.6.2" xref="p1.1.m1.4.4.4.6.1.cmml">
            <mi id="p1.1.m1.1.1.1.1" xref="p1.1.m1.1.1.1.1.cmml">Pr</mi>
            <mo id="p1.1.m1.4.4.4.6.2a" xref="p1.1.m1.4.4.4.6.1.cmml">⁡</mo>
            <mrow id="p1.1.m1.4.4.4.6.2.1" xref="p1.1.m1.4.4.4.6.1.cmml">
              <mo stretchy="false" id="p1.1.m1.4.4.4.6.2.1.1" xref="p1.1.m1.4.4.4.6.1.cmml">(</mo>
              <mi id="p1.1.m1.2.2.2.2" xref="p1.1.m1.2.2.2.2.cmml">D</mi>
              <mo rspace="0.055em" stretchy="false" id="p1.1.m1.4.4.4.6.2.1.2" xref="p1.1.m1.4.4.4.6.1.cmml">)</mo>
            </mrow>
          </mrow>
          <mo rspace="0.222em" id="p1.1.m1.4.4.4.5" xref="p1.1.m1.4.4.4.5.cmml">×</mo>
          <mrow id="p1.1.m1.4.4.4.4.1" xref="p1.1.m1.4.4.4.4.2.cmml">
            <mi id="p1.1.m1.3.3.3.3" xref="p1.1.m1.3.3.3.3.cmml">Pr</mi>
            <mo id="p1.1.m1.4.4.4.4.1a" xref="p1.1.m1.4.4.4.4.2.cmml">⁡</mo>
            <mrow id="p1.1.m1.4.4.4.4.1.1" xref="p1.1.m1.4.4.4.4.2.cmml">
              <mo stretchy="false" id="p1.1.m1.4.4.4.4.1.1.2" xref="p1.1.m1.4.4.4.4.2.cmml">(</mo>
              <mrow id="p1.1.m1.4.4.4.4.1.1.1" xref="p1.1.m1.4.4.4.4.1.1.1.cmml">
                <mi id="p1.1.m1.4.4.4.4.1.1.1.2" xref="p1.1.m1.4.4.4.4.1.1.1.2.cmml">L</mi>
                <mo fence="false" id="p1.1.m1.4.4.4.4.1.1.1.1" xref="p1.1.m1.4.4.4.4.1.1.1.1.cmml">|</mo>
                <mi id="p1.1.m1.4.4.4.4.1.1.1.3" xref="p1.1.m1.4.4.4.4.1.1.1.3.cmml">D</mi>
              </mrow>
              <mo stretchy="false" id="p1.1.m1.4.4.4.4.1.1.3" xref="p1.1.m1.4.4.4.4.2.cmml">)</mo>
            </mrow>
          </mrow>
        </mrow>
        <mrow id="p1.1.m1.6.6.6.4" xref="p1.1.m1.6.6.6.3.cmml">
          <mi id="p1.1.m1.5.5.5.1" xref="p1.1.m1.5.5.5.1.cmml">Pr</mi>
          <mo id="p1.1.m1.6.6.6.4a" xref="p1.1.m1.6.6.6.3.cmml">⁡</mo>
          <mrow id="p1.1.m1.6.6.6.4.1" xref="p1.1.m1.6.6.6.3.cmml">
            <mo stretchy="false" id="p1.1.m1.6.6.6.4.1.1" xref="p1.1.m1.6.6.6.3.cmml">(</mo>
            <mi id="p1.1.m1.6.6.6.2" xref="p1.1.m1.6.6.6.2.cmml">L</mi>
            <mo stretchy="false" id="p1.1.m1.6.6.6.4.1.2" xref="p1.1.m1.6.6.6.3.cmml">)</mo>
          </mrow>
        </mrow>
      </mfrac>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.8b">
      <apply id="p1.1.m1.8.8.cmml" xref="p1.1.m1.8.8">
        <eq id="p1.1.m1.8.8.2.cmml" xref="p1.1.m1.8.8.2"/>
        <apply id="p1.1.m1.8.8.1.2.cmml" xref="p1.1.m1.8.8.1.1">
          <ci id="p1.1.m1.7.7.cmml" xref="p1.1.m1.7.7">Pr</ci>
          <apply id="p1.1.m1.8.8.1.1.1.1.cmml" xref="p1.1.m1.8.8.1.1.1.1">
            <csymbol cd="latexml" id="p1.1.m1.8.8.1.1.1.1.1.cmml" xref="p1.1.m1.8.8.1.1.1.1.1">conditional</csymbol>
            <ci id="p1.1.m1.8.8.1.1.1.1.2.cmml" xref="p1.1.m1.8.8.1.1.1.1.2">𝐷</ci>
            <ci id="p1.1.m1.8.8.1.1.1.1.3.cmml" xref="p1.1.m1.8.8.1.1.1.1.3">𝐿</ci>
          </apply>
        </apply>
        <apply id="p1.1.m1.6.6.cmml" xref="p1.1.m1.6.6">
          <divide id="p1.1.m1.6.6.7.cmml" xref="p1.1.m1.6.6"/>
          <apply id="p1.1.m1.4.4.4.cmml" xref="p1.1.m1.4.4.4">
            <times id="p1.1.m1.4.4.4.5.cmml" xref="p1.1.m1.4.4.4.5"/>
            <apply id="p1.1.m1.4.4.4.6.1.cmml" xref="p1.1.m1.4.4.4.6.2">
              <ci id="p1.1.m1.1.1.1.1.cmml" xref="p1.1.m1.1.1.1.1">Pr</ci>
              <ci id="p1.1.m1.2.2.2.2.cmml" xref="p1.1.m1.2.2.2.2">𝐷</ci>
            </apply>
            <apply id="p1.1.m1.4.4.4.4.2.cmml" xref="p1.1.m1.4.4.4.4.1">
              <ci id="p1.1.m1.3.3.3.3.cmml" xref="p1.1.m1.3.3.3.3">Pr</ci>
              <apply id="p1.1.m1.4.4.4.4.1.1.1.cmml" xref="p1.1.m1.4.4.4.4.1.1.1">
                <csymbol cd="latexml" id="p1.1.m1.4.4.4.4.1.1.1.1.cmml" xref="p1.1.m1.4.4.4.4.1.1.1.1">conditional</csymbol>
                <ci id="p1.1.m1.4.4.4.4.1.1.1.2.cmml" xref="p1.1.m1.4.4.4.4.1.1.1.2">𝐿</ci>
                <ci id="p1.1.m1.4.4.4.4.1.1.1.3.cmml" xref="p1.1.m1.4.4.4.4.1.1.1.3">𝐷</ci>
              </apply>
            </apply>
          </apply>
          <apply id="p1.1.m1.6.6.6.3.cmml" xref="p1.1.m1.6.6.6.4">
            <ci id="p1.1.m1.5.5.5.1.cmml" xref="p1.1.m1.5.5.5.1">Pr</ci>
            <ci id="p1.1.m1.6.6.6.2.cmml" xref="p1.1.m1.6.6.6.2">𝐿</ci>
          </apply>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.8c">\Pr(D|L)=\frac{\Pr(D)\times\Pr(L|D)}{\Pr(L)}</annotation>
  </semantics>
</math>

</p>

<p>
The probability that there is not a designer, given a life sustaining universe is
</p>

<p>

<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.8" class="ltx_Math" alttext="\Pr(\neg D|L)=\frac{\Pr(\neg D)\times\Pr(L|\neg D)}{\Pr(L)}" display="inline">
  <semantics id="p1.1.m1.8a">
    <mrow id="p1.1.m1.8.8" xref="p1.1.m1.8.8.cmml">
      <mrow id="p1.1.m1.8.8.1.1" xref="p1.1.m1.8.8.1.2.cmml">
        <mi id="p1.1.m1.7.7" xref="p1.1.m1.7.7.cmml">Pr</mi>
        <mo id="p1.1.m1.8.8.1.1a" xref="p1.1.m1.8.8.1.2.cmml">⁡</mo>
        <mrow id="p1.1.m1.8.8.1.1.1" xref="p1.1.m1.8.8.1.2.cmml">
          <mo stretchy="false" id="p1.1.m1.8.8.1.1.1.2" xref="p1.1.m1.8.8.1.2.cmml">(</mo>
          <mrow id="p1.1.m1.8.8.1.1.1.1" xref="p1.1.m1.8.8.1.1.1.1.cmml">
            <mrow id="p1.1.m1.8.8.1.1.1.1.2" xref="p1.1.m1.8.8.1.1.1.1.2.cmml">
              <mo rspace="0.167em" id="p1.1.m1.8.8.1.1.1.1.2.1" xref="p1.1.m1.8.8.1.1.1.1.2.1.cmml">¬</mo>
              <mi id="p1.1.m1.8.8.1.1.1.1.2.2" xref="p1.1.m1.8.8.1.1.1.1.2.2.cmml">D</mi>
            </mrow>
            <mo fence="false" id="p1.1.m1.8.8.1.1.1.1.1" xref="p1.1.m1.8.8.1.1.1.1.1.cmml">|</mo>
            <mi id="p1.1.m1.8.8.1.1.1.1.3" xref="p1.1.m1.8.8.1.1.1.1.3.cmml">L</mi>
          </mrow>
          <mo stretchy="false" id="p1.1.m1.8.8.1.1.1.3" xref="p1.1.m1.8.8.1.2.cmml">)</mo>
        </mrow>
      </mrow>
      <mo id="p1.1.m1.8.8.2" xref="p1.1.m1.8.8.2.cmml">=</mo>
      <mfrac id="p1.1.m1.6.6" xref="p1.1.m1.6.6.cmml">
        <mrow id="p1.1.m1.4.4.4" xref="p1.1.m1.4.4.4.cmml">
          <mrow id="p1.1.m1.3.3.3.3.1" xref="p1.1.m1.3.3.3.3.2.cmml">
            <mi id="p1.1.m1.1.1.1.1" xref="p1.1.m1.1.1.1.1.cmml">Pr</mi>
            <mo id="p1.1.m1.3.3.3.3.1a" xref="p1.1.m1.3.3.3.3.2.cmml">⁡</mo>
            <mrow id="p1.1.m1.3.3.3.3.1.1" xref="p1.1.m1.3.3.3.3.2.cmml">
              <mo stretchy="false" id="p1.1.m1.3.3.3.3.1.1.2" xref="p1.1.m1.3.3.3.3.2.cmml">(</mo>
              <mrow id="p1.1.m1.3.3.3.3.1.1.1" xref="p1.1.m1.3.3.3.3.1.1.1.cmml">
                <mo rspace="0.167em" id="p1.1.m1.3.3.3.3.1.1.1.1" xref="p1.1.m1.3.3.3.3.1.1.1.1.cmml">¬</mo>
                <mi id="p1.1.m1.3.3.3.3.1.1.1.2" xref="p1.1.m1.3.3.3.3.1.1.1.2.cmml">D</mi>
              </mrow>
              <mo rspace="0.055em" stretchy="false" id="p1.1.m1.3.3.3.3.1.1.3" xref="p1.1.m1.3.3.3.3.2.cmml">)</mo>
            </mrow>
          </mrow>
          <mo rspace="0.222em" id="p1.1.m1.4.4.4.5" xref="p1.1.m1.4.4.4.5.cmml">×</mo>
          <mrow id="p1.1.m1.4.4.4.4.1" xref="p1.1.m1.4.4.4.4.2.cmml">
            <mi id="p1.1.m1.2.2.2.2" xref="p1.1.m1.2.2.2.2.cmml">Pr</mi>
            <mo id="p1.1.m1.4.4.4.4.1a" xref="p1.1.m1.4.4.4.4.2.cmml">⁡</mo>
            <mrow id="p1.1.m1.4.4.4.4.1.1" xref="p1.1.m1.4.4.4.4.2.cmml">
              <mo stretchy="false" id="p1.1.m1.4.4.4.4.1.1.2" xref="p1.1.m1.4.4.4.4.2.cmml">(</mo>
              <mrow id="p1.1.m1.4.4.4.4.1.1.1" xref="p1.1.m1.4.4.4.4.1.1.1.cmml">
                <mi id="p1.1.m1.4.4.4.4.1.1.1.2" xref="p1.1.m1.4.4.4.4.1.1.1.2.cmml">L</mi>
                <mo fence="false" id="p1.1.m1.4.4.4.4.1.1.1.1" xref="p1.1.m1.4.4.4.4.1.1.1.1.cmml">|</mo>
                <mrow id="p1.1.m1.4.4.4.4.1.1.1.3" xref="p1.1.m1.4.4.4.4.1.1.1.3.cmml">
                  <mo rspace="0.167em" id="p1.1.m1.4.4.4.4.1.1.1.3.1" xref="p1.1.m1.4.4.4.4.1.1.1.3.1.cmml">¬</mo>
                  <mi id="p1.1.m1.4.4.4.4.1.1.1.3.2" xref="p1.1.m1.4.4.4.4.1.1.1.3.2.cmml">D</mi>
                </mrow>
              </mrow>
              <mo stretchy="false" id="p1.1.m1.4.4.4.4.1.1.3" xref="p1.1.m1.4.4.4.4.2.cmml">)</mo>
            </mrow>
          </mrow>
        </mrow>
        <mrow id="p1.1.m1.6.6.6.4" xref="p1.1.m1.6.6.6.3.cmml">
          <mi id="p1.1.m1.5.5.5.1" xref="p1.1.m1.5.5.5.1.cmml">Pr</mi>
          <mo id="p1.1.m1.6.6.6.4a" xref="p1.1.m1.6.6.6.3.cmml">⁡</mo>
          <mrow id="p1.1.m1.6.6.6.4.1" xref="p1.1.m1.6.6.6.3.cmml">
            <mo stretchy="false" id="p1.1.m1.6.6.6.4.1.1" xref="p1.1.m1.6.6.6.3.cmml">(</mo>
            <mi id="p1.1.m1.6.6.6.2" xref="p1.1.m1.6.6.6.2.cmml">L</mi>
            <mo stretchy="false" id="p1.1.m1.6.6.6.4.1.2" xref="p1.1.m1.6.6.6.3.cmml">)</mo>
          </mrow>
        </mrow>
      </mfrac>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.8b">
      <apply id="p1.1.m1.8.8.cmml" xref="p1.1.m1.8.8">
        <eq id="p1.1.m1.8.8.2.cmml" xref="p1.1.m1.8.8.2"/>
        <apply id="p1.1.m1.8.8.1.2.cmml" xref="p1.1.m1.8.8.1.1">
          <ci id="p1.1.m1.7.7.cmml" xref="p1.1.m1.7.7">Pr</ci>
          <apply id="p1.1.m1.8.8.1.1.1.1.cmml" xref="p1.1.m1.8.8.1.1.1.1">
            <csymbol cd="latexml" id="p1.1.m1.8.8.1.1.1.1.1.cmml" xref="p1.1.m1.8.8.1.1.1.1.1">conditional</csymbol>
            <apply id="p1.1.m1.8.8.1.1.1.1.2.cmml" xref="p1.1.m1.8.8.1.1.1.1.2">
              <not id="p1.1.m1.8.8.1.1.1.1.2.1.cmml" xref="p1.1.m1.8.8.1.1.1.1.2.1"/>
              <ci id="p1.1.m1.8.8.1.1.1.1.2.2.cmml" xref="p1.1.m1.8.8.1.1.1.1.2.2">𝐷</ci>
            </apply>
            <ci id="p1.1.m1.8.8.1.1.1.1.3.cmml" xref="p1.1.m1.8.8.1.1.1.1.3">𝐿</ci>
          </apply>
        </apply>
        <apply id="p1.1.m1.6.6.cmml" xref="p1.1.m1.6.6">
          <divide id="p1.1.m1.6.6.7.cmml" xref="p1.1.m1.6.6"/>
          <apply id="p1.1.m1.4.4.4.cmml" xref="p1.1.m1.4.4.4">
            <times id="p1.1.m1.4.4.4.5.cmml" xref="p1.1.m1.4.4.4.5"/>
            <apply id="p1.1.m1.3.3.3.3.2.cmml" xref="p1.1.m1.3.3.3.3.1">
              <ci id="p1.1.m1.1.1.1.1.cmml" xref="p1.1.m1.1.1.1.1">Pr</ci>
              <apply id="p1.1.m1.3.3.3.3.1.1.1.cmml" xref="p1.1.m1.3.3.3.3.1.1.1">
                <not id="p1.1.m1.3.3.3.3.1.1.1.1.cmml" xref="p1.1.m1.3.3.3.3.1.1.1.1"/>
                <ci id="p1.1.m1.3.3.3.3.1.1.1.2.cmml" xref="p1.1.m1.3.3.3.3.1.1.1.2">𝐷</ci>
              </apply>
            </apply>
            <apply id="p1.1.m1.4.4.4.4.2.cmml" xref="p1.1.m1.4.4.4.4.1">
              <ci id="p1.1.m1.2.2.2.2.cmml" xref="p1.1.m1.2.2.2.2">Pr</ci>
              <apply id="p1.1.m1.4.4.4.4.1.1.1.cmml" xref="p1.1.m1.4.4.4.4.1.1.1">
                <csymbol cd="latexml" id="p1.1.m1.4.4.4.4.1.1.1.1.cmml" xref="p1.1.m1.4.4.4.4.1.1.1.1">conditional</csymbol>
                <ci id="p1.1.m1.4.4.4.4.1.1.1.2.cmml" xref="p1.1.m1.4.4.4.4.1.1.1.2">𝐿</ci>
                <apply id="p1.1.m1.4.4.4.4.1.1.1.3.cmml" xref="p1.1.m1.4.4.4.4.1.1.1.3">
                  <not id="p1.1.m1.4.4.4.4.1.1.1.3.1.cmml" xref="p1.1.m1.4.4.4.4.1.1.1.3.1"/>
                  <ci id="p1.1.m1.4.4.4.4.1.1.1.3.2.cmml" xref="p1.1.m1.4.4.4.4.1.1.1.3.2">𝐷</ci>
                </apply>
              </apply>
            </apply>
          </apply>
          <apply id="p1.1.m1.6.6.6.3.cmml" xref="p1.1.m1.6.6.6.4">
            <ci id="p1.1.m1.5.5.5.1.cmml" xref="p1.1.m1.5.5.5.1">Pr</ci>
            <ci id="p1.1.m1.6.6.6.2.cmml" xref="p1.1.m1.6.6.6.2">𝐿</ci>
          </apply>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.8c">\Pr(\neg D|L)=\frac{\Pr(\neg D)\times\Pr(L|\neg D)}{\Pr(L)}</annotation>
  </semantics>
</math>

</p>

<p>
Since the denominators are the same, 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.4" class="ltx_Math" alttext="\Pr(D|L)&gt;\Pr(\neg D|L)" display="inline">
  <semantics id="p1.1.m1.4a">
    <mrow id="p1.1.m1.4.4" xref="p1.1.m1.4.4.cmml">
      <mrow id="p1.1.m1.3.3.1.1" xref="p1.1.m1.3.3.1.2.cmml">
        <mi id="p1.1.m1.1.1" xref="p1.1.m1.1.1.cmml">Pr</mi>
        <mo id="p1.1.m1.3.3.1.1a" xref="p1.1.m1.3.3.1.2.cmml">⁡</mo>
        <mrow id="p1.1.m1.3.3.1.1.1" xref="p1.1.m1.3.3.1.2.cmml">
          <mo stretchy="false" id="p1.1.m1.3.3.1.1.1.2" xref="p1.1.m1.3.3.1.2.cmml">(</mo>
          <mrow id="p1.1.m1.3.3.1.1.1.1" xref="p1.1.m1.3.3.1.1.1.1.cmml">
            <mi id="p1.1.m1.3.3.1.1.1.1.2" xref="p1.1.m1.3.3.1.1.1.1.2.cmml">D</mi>
            <mo fence="false" id="p1.1.m1.3.3.1.1.1.1.1" xref="p1.1.m1.3.3.1.1.1.1.1.cmml">|</mo>
            <mi id="p1.1.m1.3.3.1.1.1.1.3" xref="p1.1.m1.3.3.1.1.1.1.3.cmml">L</mi>
          </mrow>
          <mo stretchy="false" id="p1.1.m1.3.3.1.1.1.3" xref="p1.1.m1.3.3.1.2.cmml">)</mo>
        </mrow>
      </mrow>
      <mo id="p1.1.m1.4.4.3" xref="p1.1.m1.4.4.3.cmml">&gt;</mo>
      <mrow id="p1.1.m1.4.4.2.1" xref="p1.1.m1.4.4.2.2.cmml">
        <mi id="p1.1.m1.2.2" xref="p1.1.m1.2.2.cmml">Pr</mi>
        <mo id="p1.1.m1.4.4.2.1a" xref="p1.1.m1.4.4.2.2.cmml">⁡</mo>
        <mrow id="p1.1.m1.4.4.2.1.1" xref="p1.1.m1.4.4.2.2.cmml">
          <mo stretchy="false" id="p1.1.m1.4.4.2.1.1.2" xref="p1.1.m1.4.4.2.2.cmml">(</mo>
          <mrow id="p1.1.m1.4.4.2.1.1.1" xref="p1.1.m1.4.4.2.1.1.1.cmml">
            <mrow id="p1.1.m1.4.4.2.1.1.1.2" xref="p1.1.m1.4.4.2.1.1.1.2.cmml">
              <mo rspace="0.167em" id="p1.1.m1.4.4.2.1.1.1.2.1" xref="p1.1.m1.4.4.2.1.1.1.2.1.cmml">¬</mo>
              <mi id="p1.1.m1.4.4.2.1.1.1.2.2" xref="p1.1.m1.4.4.2.1.1.1.2.2.cmml">D</mi>
            </mrow>
            <mo fence="false" id="p1.1.m1.4.4.2.1.1.1.1" xref="p1.1.m1.4.4.2.1.1.1.1.cmml">|</mo>
            <mi id="p1.1.m1.4.4.2.1.1.1.3" xref="p1.1.m1.4.4.2.1.1.1.3.cmml">L</mi>
          </mrow>
          <mo stretchy="false" id="p1.1.m1.4.4.2.1.1.3" xref="p1.1.m1.4.4.2.2.cmml">)</mo>
        </mrow>
      </mrow>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.4b">
      <apply id="p1.1.m1.4.4.cmml" xref="p1.1.m1.4.4">
        <gt id="p1.1.m1.4.4.3.cmml" xref="p1.1.m1.4.4.3"/>
        <apply id="p1.1.m1.3.3.1.2.cmml" xref="p1.1.m1.3.3.1.1">
          <ci id="p1.1.m1.1.1.cmml" xref="p1.1.m1.1.1">Pr</ci>
          <apply id="p1.1.m1.3.3.1.1.1.1.cmml" xref="p1.1.m1.3.3.1.1.1.1">
            <csymbol cd="latexml" id="p1.1.m1.3.3.1.1.1.1.1.cmml" xref="p1.1.m1.3.3.1.1.1.1.1">conditional</csymbol>
            <ci id="p1.1.m1.3.3.1.1.1.1.2.cmml" xref="p1.1.m1.3.3.1.1.1.1.2">𝐷</ci>
            <ci id="p1.1.m1.3.3.1.1.1.1.3.cmml" xref="p1.1.m1.3.3.1.1.1.1.3">𝐿</ci>
          </apply>
        </apply>
        <apply id="p1.1.m1.4.4.2.2.cmml" xref="p1.1.m1.4.4.2.1">
          <ci id="p1.1.m1.2.2.cmml" xref="p1.1.m1.2.2">Pr</ci>
          <apply id="p1.1.m1.4.4.2.1.1.1.cmml" xref="p1.1.m1.4.4.2.1.1.1">
            <csymbol cd="latexml" id="p1.1.m1.4.4.2.1.1.1.1.cmml" xref="p1.1.m1.4.4.2.1.1.1.1">conditional</csymbol>
            <apply id="p1.1.m1.4.4.2.1.1.1.2.cmml" xref="p1.1.m1.4.4.2.1.1.1.2">
              <not id="p1.1.m1.4.4.2.1.1.1.2.1.cmml" xref="p1.1.m1.4.4.2.1.1.1.2.1"/>
              <ci id="p1.1.m1.4.4.2.1.1.1.2.2.cmml" xref="p1.1.m1.4.4.2.1.1.1.2.2">𝐷</ci>
            </apply>
            <ci id="p1.1.m1.4.4.2.1.1.1.3.cmml" xref="p1.1.m1.4.4.2.1.1.1.3">𝐿</ci>
          </apply>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.4c">\Pr(D|L)&gt;\Pr(\neg D|L)</annotation>
  </semantics>
</math>
 if and only 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.8" class="ltx_Math" alttext="\Pr(D)\times\Pr(L|D)&gt;\Pr(\neg D)\times\Pr(L|\neg D)" display="inline">
  <semantics id="p1.1.m1.8a">
    <mrow id="p1.1.m1.8.8" xref="p1.1.m1.8.8.cmml">
      <mrow id="p1.1.m1.6.6.1" xref="p1.1.m1.6.6.1.cmml">
        <mrow id="p1.1.m1.6.6.1.3.2" xref="p1.1.m1.6.6.1.3.1.cmml">
          <mi id="p1.1.m1.1.1" xref="p1.1.m1.1.1.cmml">Pr</mi>
          <mo id="p1.1.m1.6.6.1.3.2a" xref="p1.1.m1.6.6.1.3.1.cmml">⁡</mo>
          <mrow id="p1.1.m1.6.6.1.3.2.1" xref="p1.1.m1.6.6.1.3.1.cmml">
            <mo stretchy="false" id="p1.1.m1.6.6.1.3.2.1.1" xref="p1.1.m1.6.6.1.3.1.cmml">(</mo>
            <mi id="p1.1.m1.2.2" xref="p1.1.m1.2.2.cmml">D</mi>
            <mo rspace="0.055em" stretchy="false" id="p1.1.m1.6.6.1.3.2.1.2" xref="p1.1.m1.6.6.1.3.1.cmml">)</mo>
          </mrow>
        </mrow>
        <mo rspace="0.222em" id="p1.1.m1.6.6.1.2" xref="p1.1.m1.6.6.1.2.cmml">×</mo>
        <mrow id="p1.1.m1.6.6.1.1.1" xref="p1.1.m1.6.6.1.1.2.cmml">
          <mi id="p1.1.m1.3.3" xref="p1.1.m1.3.3.cmml">Pr</mi>
          <mo id="p1.1.m1.6.6.1.1.1a" xref="p1.1.m1.6.6.1.1.2.cmml">⁡</mo>
          <mrow id="p1.1.m1.6.6.1.1.1.1" xref="p1.1.m1.6.6.1.1.2.cmml">
            <mo stretchy="false" id="p1.1.m1.6.6.1.1.1.1.2" xref="p1.1.m1.6.6.1.1.2.cmml">(</mo>
            <mrow id="p1.1.m1.6.6.1.1.1.1.1" xref="p1.1.m1.6.6.1.1.1.1.1.cmml">
              <mi id="p1.1.m1.6.6.1.1.1.1.1.2" xref="p1.1.m1.6.6.1.1.1.1.1.2.cmml">L</mi>
              <mo fence="false" id="p1.1.m1.6.6.1.1.1.1.1.1" xref="p1.1.m1.6.6.1.1.1.1.1.1.cmml">|</mo>
              <mi id="p1.1.m1.6.6.1.1.1.1.1.3" xref="p1.1.m1.6.6.1.1.1.1.1.3.cmml">D</mi>
            </mrow>
            <mo stretchy="false" id="p1.1.m1.6.6.1.1.1.1.3" xref="p1.1.m1.6.6.1.1.2.cmml">)</mo>
          </mrow>
        </mrow>
      </mrow>
      <mo id="p1.1.m1.8.8.4" xref="p1.1.m1.8.8.4.cmml">&gt;</mo>
      <mrow id="p1.1.m1.8.8.3" xref="p1.1.m1.8.8.3.cmml">
        <mrow id="p1.1.m1.7.7.2.1.1" xref="p1.1.m1.7.7.2.1.2.cmml">
          <mi id="p1.1.m1.4.4" xref="p1.1.m1.4.4.cmml">Pr</mi>
          <mo id="p1.1.m1.7.7.2.1.1a" xref="p1.1.m1.7.7.2.1.2.cmml">⁡</mo>
          <mrow id="p1.1.m1.7.7.2.1.1.1" xref="p1.1.m1.7.7.2.1.2.cmml">
            <mo stretchy="false" id="p1.1.m1.7.7.2.1.1.1.2" xref="p1.1.m1.7.7.2.1.2.cmml">(</mo>
            <mrow id="p1.1.m1.7.7.2.1.1.1.1" xref="p1.1.m1.7.7.2.1.1.1.1.cmml">
              <mo rspace="0.167em" id="p1.1.m1.7.7.2.1.1.1.1.1" xref="p1.1.m1.7.7.2.1.1.1.1.1.cmml">¬</mo>
              <mi id="p1.1.m1.7.7.2.1.1.1.1.2" xref="p1.1.m1.7.7.2.1.1.1.1.2.cmml">D</mi>
            </mrow>
            <mo rspace="0.055em" stretchy="false" id="p1.1.m1.7.7.2.1.1.1.3" xref="p1.1.m1.7.7.2.1.2.cmml">)</mo>
          </mrow>
        </mrow>
        <mo rspace="0.222em" id="p1.1.m1.8.8.3.3" xref="p1.1.m1.8.8.3.3.cmml">×</mo>
        <mrow id="p1.1.m1.8.8.3.2.1" xref="p1.1.m1.8.8.3.2.2.cmml">
          <mi id="p1.1.m1.5.5" xref="p1.1.m1.5.5.cmml">Pr</mi>
          <mo id="p1.1.m1.8.8.3.2.1a" xref="p1.1.m1.8.8.3.2.2.cmml">⁡</mo>
          <mrow id="p1.1.m1.8.8.3.2.1.1" xref="p1.1.m1.8.8.3.2.2.cmml">
            <mo stretchy="false" id="p1.1.m1.8.8.3.2.1.1.2" xref="p1.1.m1.8.8.3.2.2.cmml">(</mo>
            <mrow id="p1.1.m1.8.8.3.2.1.1.1" xref="p1.1.m1.8.8.3.2.1.1.1.cmml">
              <mi id="p1.1.m1.8.8.3.2.1.1.1.2" xref="p1.1.m1.8.8.3.2.1.1.1.2.cmml">L</mi>
              <mo fence="false" id="p1.1.m1.8.8.3.2.1.1.1.1" xref="p1.1.m1.8.8.3.2.1.1.1.1.cmml">|</mo>
              <mrow id="p1.1.m1.8.8.3.2.1.1.1.3" xref="p1.1.m1.8.8.3.2.1.1.1.3.cmml">
                <mo rspace="0.167em" id="p1.1.m1.8.8.3.2.1.1.1.3.1" xref="p1.1.m1.8.8.3.2.1.1.1.3.1.cmml">¬</mo>
                <mi id="p1.1.m1.8.8.3.2.1.1.1.3.2" xref="p1.1.m1.8.8.3.2.1.1.1.3.2.cmml">D</mi>
              </mrow>
            </mrow>
            <mo stretchy="false" id="p1.1.m1.8.8.3.2.1.1.3" xref="p1.1.m1.8.8.3.2.2.cmml">)</mo>
          </mrow>
        </mrow>
      </mrow>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.8b">
      <apply id="p1.1.m1.8.8.cmml" xref="p1.1.m1.8.8">
        <gt id="p1.1.m1.8.8.4.cmml" xref="p1.1.m1.8.8.4"/>
        <apply id="p1.1.m1.6.6.1.cmml" xref="p1.1.m1.6.6.1">
          <times id="p1.1.m1.6.6.1.2.cmml" xref="p1.1.m1.6.6.1.2"/>
          <apply id="p1.1.m1.6.6.1.3.1.cmml" xref="p1.1.m1.6.6.1.3.2">
            <ci id="p1.1.m1.1.1.cmml" xref="p1.1.m1.1.1">Pr</ci>
            <ci id="p1.1.m1.2.2.cmml" xref="p1.1.m1.2.2">𝐷</ci>
          </apply>
          <apply id="p1.1.m1.6.6.1.1.2.cmml" xref="p1.1.m1.6.6.1.1.1">
            <ci id="p1.1.m1.3.3.cmml" xref="p1.1.m1.3.3">Pr</ci>
            <apply id="p1.1.m1.6.6.1.1.1.1.1.cmml" xref="p1.1.m1.6.6.1.1.1.1.1">
              <csymbol cd="latexml" id="p1.1.m1.6.6.1.1.1.1.1.1.cmml" xref="p1.1.m1.6.6.1.1.1.1.1.1">conditional</csymbol>
              <ci id="p1.1.m1.6.6.1.1.1.1.1.2.cmml" xref="p1.1.m1.6.6.1.1.1.1.1.2">𝐿</ci>
              <ci id="p1.1.m1.6.6.1.1.1.1.1.3.cmml" xref="p1.1.m1.6.6.1.1.1.1.1.3">𝐷</ci>
            </apply>
          </apply>
        </apply>
        <apply id="p1.1.m1.8.8.3.cmml" xref="p1.1.m1.8.8.3">
          <times id="p1.1.m1.8.8.3.3.cmml" xref="p1.1.m1.8.8.3.3"/>
          <apply id="p1.1.m1.7.7.2.1.2.cmml" xref="p1.1.m1.7.7.2.1.1">
            <ci id="p1.1.m1.4.4.cmml" xref="p1.1.m1.4.4">Pr</ci>
            <apply id="p1.1.m1.7.7.2.1.1.1.1.cmml" xref="p1.1.m1.7.7.2.1.1.1.1">
              <not id="p1.1.m1.7.7.2.1.1.1.1.1.cmml" xref="p1.1.m1.7.7.2.1.1.1.1.1"/>
              <ci id="p1.1.m1.7.7.2.1.1.1.1.2.cmml" xref="p1.1.m1.7.7.2.1.1.1.1.2">𝐷</ci>
            </apply>
          </apply>
          <apply id="p1.1.m1.8.8.3.2.2.cmml" xref="p1.1.m1.8.8.3.2.1">
            <ci id="p1.1.m1.5.5.cmml" xref="p1.1.m1.5.5">Pr</ci>
            <apply id="p1.1.m1.8.8.3.2.1.1.1.cmml" xref="p1.1.m1.8.8.3.2.1.1.1">
              <csymbol cd="latexml" id="p1.1.m1.8.8.3.2.1.1.1.1.cmml" xref="p1.1.m1.8.8.3.2.1.1.1.1">conditional</csymbol>
              <ci id="p1.1.m1.8.8.3.2.1.1.1.2.cmml" xref="p1.1.m1.8.8.3.2.1.1.1.2">𝐿</ci>
              <apply id="p1.1.m1.8.8.3.2.1.1.1.3.cmml" xref="p1.1.m1.8.8.3.2.1.1.1.3">
                <not id="p1.1.m1.8.8.3.2.1.1.1.3.1.cmml" xref="p1.1.m1.8.8.3.2.1.1.1.3.1"/>
                <ci id="p1.1.m1.8.8.3.2.1.1.1.3.2.cmml" xref="p1.1.m1.8.8.3.2.1.1.1.3.2">𝐷</ci>
              </apply>
            </apply>
          </apply>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.8c">\Pr(D)\times\Pr(L|D)&gt;\Pr(\neg D)\times\Pr(L|\neg D)</annotation>
  </semantics>
</math>
. Now, all we need to know is the prior probability of God existing, and we would know the probability of a life-sustaining universe on the assumption that there is a God. Easier said than done, as they say.
</p>

<p>
Instead, maybe we should rethink the strategy. If I knew how each additional factor affected the probability, then I might be able to assess how low the prior probability of <i>D</i> must be in order for the evidence to <i>not</i> raise 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.2" class="ltx_Math" alttext="\Pr(D|L)" display="inline">
  <semantics id="p1.1.m1.2a">
    <mrow id="p1.1.m1.2.2.1" xref="p1.1.m1.2.2.2.cmml">
      <mi id="p1.1.m1.1.1" xref="p1.1.m1.1.1.cmml">Pr</mi>
      <mo id="p1.1.m1.2.2.1a" xref="p1.1.m1.2.2.2.cmml">⁡</mo>
      <mrow id="p1.1.m1.2.2.1.1" xref="p1.1.m1.2.2.2.cmml">
        <mo stretchy="false" id="p1.1.m1.2.2.1.1.2" xref="p1.1.m1.2.2.2.cmml">(</mo>
        <mrow id="p1.1.m1.2.2.1.1.1" xref="p1.1.m1.2.2.1.1.1.cmml">
          <mi id="p1.1.m1.2.2.1.1.1.2" xref="p1.1.m1.2.2.1.1.1.2.cmml">D</mi>
          <mo fence="false" id="p1.1.m1.2.2.1.1.1.1" xref="p1.1.m1.2.2.1.1.1.1.cmml">|</mo>
          <mi id="p1.1.m1.2.2.1.1.1.3" xref="p1.1.m1.2.2.1.1.1.3.cmml">L</mi>
        </mrow>
        <mo stretchy="false" id="p1.1.m1.2.2.1.1.3" xref="p1.1.m1.2.2.2.cmml">)</mo>
      </mrow>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.2b">
      <apply id="p1.1.m1.2.2.2.cmml" xref="p1.1.m1.2.2.1">
        <ci id="p1.1.m1.1.1.cmml" xref="p1.1.m1.1.1">Pr</ci>
        <apply id="p1.1.m1.2.2.1.1.1.cmml" xref="p1.1.m1.2.2.1.1.1">
          <csymbol cd="latexml" id="p1.1.m1.2.2.1.1.1.1.cmml" xref="p1.1.m1.2.2.1.1.1.1">conditional</csymbol>
          <ci id="p1.1.m1.2.2.1.1.1.2.cmml" xref="p1.1.m1.2.2.1.1.1.2">𝐷</ci>
          <ci id="p1.1.m1.2.2.1.1.1.3.cmml" xref="p1.1.m1.2.2.1.1.1.3">𝐿</ci>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.2c">\Pr(D|L)</annotation>
  </semantics>
</math>
 over 0.5. To do this, we can use the odds version of Bayes&rsquo; theorem: the odds of <i>D</i> given <i>L</i> is equal to the prior odds of <i>D</i> times the likelihood ratio:
</p>

<p>

<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.4" class="ltx_math_unparsed" alttext="O(D|L)=O(D)\times\frac{\Pr(L|D)}{\Pr(L|\neg D}" display="inline">
  <semantics id="p1.1.m1.4a">
    <mrow id="p1.1.m1.4.4">
      <mrow id="p1.1.m1.4.4.1">
        <mi id="p1.1.m1.4.4.1.3">O</mi>
        <mo id="p1.1.m1.4.4.1.2">⁢</mo>
        <mrow id="p1.1.m1.4.4.1.1.1">
          <mo stretchy="false" id="p1.1.m1.4.4.1.1.1.2">(</mo>
          <mrow id="p1.1.m1.4.4.1.1.1.1">
            <mi id="p1.1.m1.4.4.1.1.1.1.2">D</mi>
            <mo fence="false" id="p1.1.m1.4.4.1.1.1.1.1">|</mo>
            <mi id="p1.1.m1.4.4.1.1.1.1.3">L</mi>
          </mrow>
          <mo stretchy="false" id="p1.1.m1.4.4.1.1.1.3">)</mo>
        </mrow>
      </mrow>
      <mo id="p1.1.m1.4.4.2">=</mo>
      <mrow id="p1.1.m1.4.4.3">
        <mrow id="p1.1.m1.4.4.3.2">
          <mi id="p1.1.m1.4.4.3.2.2">O</mi>
          <mo id="p1.1.m1.4.4.3.2.1">⁢</mo>
          <mrow id="p1.1.m1.4.4.3.2.3.2">
            <mo stretchy="false" id="p1.1.m1.4.4.3.2.3.2.1">(</mo>
            <mi id="p1.1.m1.3.3">D</mi>
            <mo rspace="0.055em" stretchy="false" id="p1.1.m1.4.4.3.2.3.2.2">)</mo>
          </mrow>
        </mrow>
        <mo rspace="0.222em" id="p1.1.m1.4.4.3.1">×</mo>
        <mfrac id="p1.1.m1.2.2">
          <mrow id="p1.1.m1.2.2.2.2">
            <mi id="p1.1.m1.1.1.1.1">Pr</mi>
            <mo id="p1.1.m1.2.2.2.2a">⁡</mo>
            <mrow id="p1.1.m1.2.2.2.2.1">
              <mo stretchy="false" id="p1.1.m1.2.2.2.2.1.2">(</mo>
              <mrow id="p1.1.m1.2.2.2.2.1.1">
                <mi id="p1.1.m1.2.2.2.2.1.1.2">L</mi>
                <mo fence="false" id="p1.1.m1.2.2.2.2.1.1.1">|</mo>
                <mi id="p1.1.m1.2.2.2.2.1.1.3">D</mi>
              </mrow>
              <mo stretchy="false" id="p1.1.m1.2.2.2.2.1.3">)</mo>
            </mrow>
          </mrow>
          <mrow id="p1.1.m1.2.2.4">
            <mi id="p1.1.m1.2.2.4.1">Pr</mi>
            <mrow id="p1.1.m1.2.2.4.2">
              <mo stretchy="false" id="p1.1.m1.2.2.4.2.1">(</mo>
              <mi id="p1.1.m1.2.2.4.2.2">L</mi>
              <mo fence="false" rspace="0.167em" stretchy="false" id="p1.1.m1.2.2.4.2.3">|</mo>
              <mo rspace="0.167em" id="p1.1.m1.2.2.4.2.4">¬</mo>
              <mi id="p1.1.m1.2.2.4.2.5">D</mi>
            </mrow>
          </mrow>
        </mfrac>
      </mrow>
    </mrow>
    <annotation encoding="application/x-tex" id="p1.1.m1.4b">O(D|L)=O(D)\times\frac{\Pr(L|D)}{\Pr(L|\neg D}</annotation>
  </semantics>
</math>

</p>

<p>
Now, let&rsquo;s take that 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.2" class="ltx_Math" alttext="\frac{1}{1,060}" display="inline">
  <semantics id="p1.1.m1.2a">
    <mfrac id="p1.1.m1.2.2" xref="p1.1.m1.2.2.cmml">
      <mn id="p1.1.m1.2.2.4" xref="p1.1.m1.2.2.4.cmml">1</mn>
      <mrow id="p1.1.m1.2.2.2.4" xref="p1.1.m1.2.2.2.3.cmml">
        <mn id="p1.1.m1.1.1.1.1" xref="p1.1.m1.1.1.1.1.cmml">1</mn>
        <mo id="p1.1.m1.2.2.2.4.1" xref="p1.1.m1.2.2.2.3.cmml">,</mo>
        <mn id="p1.1.m1.2.2.2.2" xref="p1.1.m1.2.2.2.2.cmml">060</mn>
      </mrow>
    </mfrac>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.2b">
      <apply id="p1.1.m1.2.2.cmml" xref="p1.1.m1.2.2">
        <divide id="p1.1.m1.2.2.3.cmml" xref="p1.1.m1.2.2"/>
        <cn type="integer" id="p1.1.m1.2.2.4.cmml" xref="p1.1.m1.2.2.4">1</cn>
        <list id="p1.1.m1.2.2.2.3.cmml" xref="p1.1.m1.2.2.2.4">
          <cn type="integer" id="p1.1.m1.1.1.1.1.cmml" xref="p1.1.m1.1.1.1.1">1</cn>
          <cn type="integer" id="p1.1.m1.2.2.2.2.cmml" xref="p1.1.m1.2.2.2.2">060</cn>
        </list>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.2c">\frac{1}{1,060}</annotation>
  </semantics>
</math>
 tolerance from above, but let&rsquo;s change it to  
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.2" class="ltx_Math" alttext="\frac{1}{1,001}" display="inline">
  <semantics id="p1.1.m1.2a">
    <mfrac id="p1.1.m1.2.2" xref="p1.1.m1.2.2.cmml">
      <mn id="p1.1.m1.2.2.4" xref="p1.1.m1.2.2.4.cmml">1</mn>
      <mrow id="p1.1.m1.2.2.2.4" xref="p1.1.m1.2.2.2.3.cmml">
        <mn id="p1.1.m1.1.1.1.1" xref="p1.1.m1.1.1.1.1.cmml">1</mn>
        <mo id="p1.1.m1.2.2.2.4.1" xref="p1.1.m1.2.2.2.3.cmml">,</mo>
        <mn id="p1.1.m1.2.2.2.2" xref="p1.1.m1.2.2.2.2.cmml">001</mn>
      </mrow>
    </mfrac>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.2b">
      <apply id="p1.1.m1.2.2.cmml" xref="p1.1.m1.2.2">
        <divide id="p1.1.m1.2.2.3.cmml" xref="p1.1.m1.2.2"/>
        <cn type="integer" id="p1.1.m1.2.2.4.cmml" xref="p1.1.m1.2.2.4">1</cn>
        <list id="p1.1.m1.2.2.2.3.cmml" xref="p1.1.m1.2.2.2.4">
          <cn type="integer" id="p1.1.m1.1.1.1.1.cmml" xref="p1.1.m1.1.1.1.1">1</cn>
          <cn type="integer" id="p1.1.m1.2.2.2.2.cmml" xref="p1.1.m1.2.2.2.2">001</cn>
        </list>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.2c">\frac{1}{1,001}</annotation>
  </semantics>
</math>
. This does two things. First, it favors atheism some, but, more importantly for me, it makes the math much easier, because it makes the likelihood ratio a nice round number:
</p>

<p>

<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.10" class="ltx_math_unparsed" alttext="\frac{\Pr(L|D)}{\Pr(L|\neg D}=\frac{\frac{1,000}{1,001}}{\frac{1}{1,001}}=%&#10;\frac{1,000}{1}" display="inline">
  <semantics id="p1.1.m1.10a">
    <mrow id="p1.1.m1.10.11">
      <mfrac id="p1.1.m1.2.2">
        <mrow id="p1.1.m1.2.2.2.2">
          <mi id="p1.1.m1.1.1.1.1">Pr</mi>
          <mo id="p1.1.m1.2.2.2.2a">⁡</mo>
          <mrow id="p1.1.m1.2.2.2.2.1">
            <mo stretchy="false" id="p1.1.m1.2.2.2.2.1.2">(</mo>
            <mrow id="p1.1.m1.2.2.2.2.1.1">
              <mi id="p1.1.m1.2.2.2.2.1.1.2">L</mi>
              <mo fence="false" id="p1.1.m1.2.2.2.2.1.1.1">|</mo>
              <mi id="p1.1.m1.2.2.2.2.1.1.3">D</mi>
            </mrow>
            <mo stretchy="false" id="p1.1.m1.2.2.2.2.1.3">)</mo>
          </mrow>
        </mrow>
        <mrow id="p1.1.m1.2.2.4">
          <mi id="p1.1.m1.2.2.4.1">Pr</mi>
          <mrow id="p1.1.m1.2.2.4.2">
            <mo stretchy="false" id="p1.1.m1.2.2.4.2.1">(</mo>
            <mi id="p1.1.m1.2.2.4.2.2">L</mi>
            <mo fence="false" rspace="0.167em" stretchy="false" id="p1.1.m1.2.2.4.2.3">|</mo>
            <mo rspace="0.167em" id="p1.1.m1.2.2.4.2.4">¬</mo>
            <mi id="p1.1.m1.2.2.4.2.5">D</mi>
          </mrow>
        </mrow>
      </mfrac>
      <mo id="p1.1.m1.10.11.2">=</mo>
      <mfrac id="p1.1.m1.8.8">
        <mfrac id="p1.1.m1.6.6.4">
          <mrow id="p1.1.m1.4.4.2.2.2.4">
            <mn id="p1.1.m1.3.3.1.1.1.1">1</mn>
            <mo id="p1.1.m1.4.4.2.2.2.4.1">,</mo>
            <mn id="p1.1.m1.4.4.2.2.2.2">000</mn>
          </mrow>
          <mrow id="p1.1.m1.6.6.4.4.4.4">
            <mn id="p1.1.m1.5.5.3.3.3.1">1</mn>
            <mo id="p1.1.m1.6.6.4.4.4.4.1">,</mo>
            <mn id="p1.1.m1.6.6.4.4.4.2">001</mn>
          </mrow>
        </mfrac>
        <mfrac id="p1.1.m1.8.8.6">
          <mn id="p1.1.m1.8.8.6.4">1</mn>
          <mrow id="p1.1.m1.8.8.6.2.2.4">
            <mn id="p1.1.m1.7.7.5.1.1.1">1</mn>
            <mo id="p1.1.m1.8.8.6.2.2.4.1">,</mo>
            <mn id="p1.1.m1.8.8.6.2.2.2">001</mn>
          </mrow>
        </mfrac>
      </mfrac>
      <mo id="p1.1.m1.10.11.3">=</mo>
      <mfrac id="p1.1.m1.10.10">
        <mrow id="p1.1.m1.10.10.2.4">
          <mn id="p1.1.m1.9.9.1.1">1</mn>
          <mo id="p1.1.m1.10.10.2.4.1">,</mo>
          <mn id="p1.1.m1.10.10.2.2">000</mn>
        </mrow>
        <mn id="p1.1.m1.10.10.4">1</mn>
      </mfrac>
    </mrow>
    <annotation encoding="application/x-tex" id="p1.1.m1.10b">\frac{\Pr(L|D)}{\Pr(L|\neg D}=\frac{\frac{1,000}{1,001}}{\frac{1}{1,001}}=%
\frac{1,000}{1}</annotation>
  </semantics>
</math>

</p>

<p>
That means that with each new factor, the odds of the the universe being intentionally fine-tuned increase by a factor of 1,000. With 100 factors, the odds of theism are equal to the prior odds times 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.1" class="ltx_Math" alttext="1\times 10^{300}" display="inline">
  <semantics id="p1.1.m1.1a">
    <mrow id="p1.1.m1.1.1" xref="p1.1.m1.1.1.cmml">
      <mn id="p1.1.m1.1.1.2" xref="p1.1.m1.1.1.2.cmml">1</mn>
      <mo lspace="0.222em" rspace="0.222em" id="p1.1.m1.1.1.1" xref="p1.1.m1.1.1.1.cmml">×</mo>
      <msup id="p1.1.m1.1.1.3" xref="p1.1.m1.1.1.3.cmml">
        <mn id="p1.1.m1.1.1.3.2" xref="p1.1.m1.1.1.3.2.cmml">10</mn>
        <mn id="p1.1.m1.1.1.3.3" xref="p1.1.m1.1.1.3.3.cmml">300</mn>
      </msup>
    </mrow>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.1b">
      <apply id="p1.1.m1.1.1.cmml" xref="p1.1.m1.1.1">
        <times id="p1.1.m1.1.1.1.cmml" xref="p1.1.m1.1.1.1"/>
        <cn type="integer" id="p1.1.m1.1.1.2.cmml" xref="p1.1.m1.1.1.2">1</cn>
        <apply id="p1.1.m1.1.1.3.cmml" xref="p1.1.m1.1.1.3">
          <csymbol cd="ambiguous" id="p1.1.m1.1.1.3.1.cmml" xref="p1.1.m1.1.1.3">superscript</csymbol>
          <cn type="integer" id="p1.1.m1.1.1.3.2.cmml" xref="p1.1.m1.1.1.3.2">10</cn>
          <cn type="integer" id="p1.1.m1.1.1.3.3.cmml" xref="p1.1.m1.1.1.3.3">300</cn>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.1c">1\times 10^{300}</annotation>
  </semantics>
</math>
. This means that, in order for it to be less likely that God exists, given apparent fine-tuning, the prior odds of God existing must be less than 
<math xmlns="http://www.w3.org/1998/Math/MathML" id="p1.1.m1.1" class="ltx_Math" alttext="\frac{1}{10^{300}}" display="inline">
  <semantics id="p1.1.m1.1a">
    <mfrac id="p1.1.m1.1.1" xref="p1.1.m1.1.1.cmml">
      <mn id="p1.1.m1.1.1.2" xref="p1.1.m1.1.1.2.cmml">1</mn>
      <msup id="p1.1.m1.1.1.3" xref="p1.1.m1.1.1.3.cmml">
        <mn id="p1.1.m1.1.1.3.2" xref="p1.1.m1.1.1.3.2.cmml">10</mn>
        <mn id="p1.1.m1.1.1.3.3" xref="p1.1.m1.1.1.3.3.cmml">300</mn>
      </msup>
    </mfrac>
    <annotation-xml encoding="MathML-Content" id="p1.1.m1.1b">
      <apply id="p1.1.m1.1.1.cmml" xref="p1.1.m1.1.1">
        <divide id="p1.1.m1.1.1.1.cmml" xref="p1.1.m1.1.1"/>
        <cn type="integer" id="p1.1.m1.1.1.2.cmml" xref="p1.1.m1.1.1.2">1</cn>
        <apply id="p1.1.m1.1.1.3.cmml" xref="p1.1.m1.1.1.3">
          <csymbol cd="ambiguous" id="p1.1.m1.1.1.3.1.cmml" xref="p1.1.m1.1.1.3">superscript</csymbol>
          <cn type="integer" id="p1.1.m1.1.1.3.2.cmml" xref="p1.1.m1.1.1.3.2">10</cn>
          <cn type="integer" id="p1.1.m1.1.1.3.3.cmml" xref="p1.1.m1.1.1.3.3">300</cn>
        </apply>
      </apply>
    </annotation-xml>
    <annotation encoding="application/x-tex" id="p1.1.m1.1c">\frac{1}{10^{300}}</annotation>
  </semantics>
</math>

</p>

<p>
Now, I admit that I don&rsquo;t know if all the factors have the same odds. I just know that some of them have been estimated to be higher than the value that I used. So, let&rsquo;s just lower the odds by a power of 100. That is, now the degree of tolerance for each factor is a mere 1 in 10. If so, then the prior odds of God existing would still have to be lower than 1 in 1,000 before it would be unlikely that theism were true.
</p>

<p>
At some point, I&rsquo;ll consider some objections and responses.
</p>
</div>
</section>
]]>
</description></item>
<item>
<title>Duplicate Org Beamer Title Slides</title>
<link>https://randyridenour.net/posts/2025-02-12-duplicate-org-beamer-title-slides.html</link>
<pubDate>Wed, 12 Feb 2025 04:08:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2025-02-12-duplicate-org-beamer-title-slides.html</guid>
<description>
<![CDATA[<p>
I recently noticed two problems with my LaTeX Beamer lecture slides that I create using Org mode. First, I suddenly had duplicate title slides. My template began with this:
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-level-3">*** </span>
<span class="org-org-latex-and-related">\maketitle</span>
</code></pre>
</div>

<p>
Deleting that fixed the problem. I guess it just automatically inserts a title slide now. Second, my section and subsection slides weren&rsquo;t being created. Looking at the <code>*.tex</code> file showed that the sections were using the <code>section*</code> variant. Telling the org file to number the sections fixed the problem. Here&rsquo;s the line to use:
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-meta-line">#+OPTIONS: num:t</span>
</code></pre>
</div>

<p>
Modifying my <a href="https://github.com/rlridenour/beamer-themes">Beamer theme</a> also fixed the problem. Evidently, it&rsquo;s pretty simple to specify what should be done with the starred sections in this way:
</p>

<div class="org-src-container">
<pre class="src src-latex"><code><span class="org-font-latex-sedate">\AtBeginSection</span>[&lt;text for starred sections&gt;]{&lt;text for unstarred sections}
</code></pre>
</div>


<div class="tagline" id="org4c0b24b">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/org.html">Org</a> <a href="https://randyridenour.net/posts/../tags/LaTeX.html">Latex</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Who We Ignore</title>
<link>https://randyridenour.net/posts/2025-01-26-who-ignore.html</link>
<pubDate>Sun, 26 Jan 2025 05:31:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2025-01-26-who-ignore.html</guid>
<description>
<![CDATA[<blockquote>
<p>
Two evenings spent at La Scala, Milan, one of them standing up, the other sitting down. On the first evening, I was continuously conscious of the existence of the spectators who were seated. On the second evening, I was completely unconscious of the existence of the spectators who were standing up (and of those who were seated also).
</p>
</blockquote>

<p class="source">
Simone Weil, quoted in W.H. Auden, <i>A Certain World</i>, 1970
</p>

<div class="tagline" id="orgf72f318">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer of Hope</title>
<link>https://randyridenour.net/posts/2016-12-02-prayer-of-hope.html</link>
<pubDate>Fri, 02 Dec 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-12-02-prayer-of-hope.html</guid>
<description>
<![CDATA[<p>
God of Hope,
</p>

<p>
Advent begins with<br>
a single, small flame<br>
on a solitary candle,<br>
a gentle promise<br>
that We are not alone.
</p>

<p>
Here is our hope,<br>
the darkness will pass,<br>
for the light is coming.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orga530a2a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Star Wars</title>
<link>https://randyridenour.net/posts/2010-11-24-star-wars.html</link>
<pubDate>Wed, 24 Nov 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-11-24-star-wars.html</guid>
<description>
<![CDATA[<p>
I thought about watching <i>Star Wars</i> during the break, but this was more fun.
</p>

<p>
[[
</p>
<div class="org-center">
<p>
<iframe width="440" height="335" src="https://www.youtube.com/embed/EBM854BTGL0" frameborder="0" allowfullscreen></iframe>]]
</p>
</div>


<div class="tagline" id="org8429117">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>List Spacing in Org Mode with Enumitem</title>
<link>https://randyridenour.net/posts/2023-02-01-list-spacing-in-org-mode-with-enumitem.html</link>
<pubDate>Wed, 01 Feb 2023 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2023-02-01-list-spacing-in-org-mode-with-enumitem.html</guid>
<description>
<![CDATA[<p>
I like to use the LaTeX package enumitem to eliminate the spacing in lists. To do this globally, add the following to the Org mode headers:
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-meta-line">#+LaTeX_HEADER: \usepackage{enumitem}</span>
<span class="org-org-meta-line">#+LaTeX_HEADER: \setlist{nosep}</span>
</code></pre>
</div>

<p>
If you also don&rsquo;t want your lists to be indented, use 
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-meta-line">#+LaTeX_HEADER: \setlist{nosep,wide}</span>
</code></pre>
</div>

<p>
These global options can be overridden for individual lists by putting something like this immediately before the list begins:
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-meta-line">#+ATTR_LaTeX: :options [itemsep=1em]</span>
</code></pre>
</div>

<p>
This will put a space equal to the width of an upper-case &ldquo;M&rdquo; between each list item. 
</p>


<div class="tagline" id="org30a4135">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/org.html">Org</a> <a href="https://randyridenour.net/posts/../tags/LaTeX.html">Latex</a>
</p>

</div>
]]>
</description></item>
<item>
<title>A Living Mystery</title>
<link>https://randyridenour.net/posts/2011-05-13-to-be-a-witness-does-not-consist-in-engaging-in.html</link>
<pubDate>Fri, 13 May 2011 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2011-05-13-to-be-a-witness-does-not-consist-in-engaging-in.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
To be a witness does not consist in engaging in propaganda or even in stirring people up, but in being a living mystery; it means to live in such a way that one&rsquo;s life would not make sense if God did not exist.
</p>
</blockquote>

<p class="bigquote">
Emmanuel Célestin Suhard
</p>






<div class="tagline" id="org4d95b6a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Updating the Site</title>
<link>https://randyridenour.net/posts/2023-01-24-updating-the-site.html</link>
<pubDate>Tue, 24 Jan 2023 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2023-01-24-updating-the-site.html</guid>
<description>
<![CDATA[<p>
I&rsquo;ve had trouble getting verified as an educator with GitLab. After getting some notification from them that the &ldquo;ultimate&rdquo; status was being downgraded on my site project (not that it really would have mattered for this, since it&rsquo;s a public repository), I decided to move it to GitHub, where I&rsquo;ve had it before. I had moved it to GitLab because GitLab would do the Hugo build for me after I pushed the updated content to them. In the past, GitHub would build a Jekyll site, but any others needed to be built locally. So, I was pleasantly surprised to see that I could set up a Hugo build on GitHub now. Unfortunately, I couldn&rsquo;t get it to work reliably. What did work exceptionally well is to connect the repository to <a href="https://www.netlify.com">Netlify</a>, and let them handle serving the site. I followed the <a href="https://gohugo.io/hosting-and-deployment/hosting-on-netlify/">instructions</a> in the Hugo documentation, and everything went very smoothly. Netlify automatically detected that the repository was a Hugo site. Their instructions for pointing the domain&rsquo;s name servers to Netlify were clear and simple to follow. It&rsquo;s important to note that the site&rsquo;s theme <i>must</i> be installed as a git submodule. It won&rsquo;t work as a simple git clone. The instructions for most Hugo themes that I see specify installing as a submodule, so you likely already have that done.
</p>

<p>
This seemed to be a good opportunity to update the site&rsquo;s theme. I had started with another theme and rewrote it into my own, but lately I&rsquo;ve been happier letting other people do as much of the configuration work as possible, which explains my move back to <a href="https://github.com/doomemacs/doomemacs">Doom Emacs</a>. I picked the <a href="https://github.com/WingLim/hugo-tania">Hugo Tania</a> theme, since it has nice built-in search and tag support.
</p>
<section id="outline-container-org48b01b2" class="outline-2">
<h2 id="org48b01b2">Hugo and Org Mode</h2>
<div class="outline-text-2" id="text-org48b01b2">
<p>
I do most of my writing in Org mode in Emacs. Markdown is the most commonly used simple markup language, and Hugo has always had excellent native support for it. I remember its native support for Org mode to be missing some important things, although I can&rsquo;t really remember what they were. So, I was using <a href="https://ox-hugo.scripter.co">ox-hugo</a> to convert the Org files to Markdown. Evidently, Hugo&rsquo;s parser for Org mode is much more robust than it was, because I haven&rsquo;t had a problem with it parsing native Org files. So, I removed the ox-hugo package and now my posts are written in Org mode and not converted to Markdown. To do so, simply put the Hugo front-matter at the beginning in typical Org fashion. For instance, the front-matter for this post looks like this:
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-document-info-keyword">#+TITLE:</span> <span class="org-org-document-title">Updating the Site
</span><span class="org-org-meta-line">#+draft: false</span>
<span class="org-org-meta-line">#+tags[]: hugo emacs org</span>
<span class="org-org-document-info-keyword">#+date:</span> <span class="org-org-document-info">2023-01-24T06:41:27</span>
</code></pre>
</div>

<p>
Now, that&rsquo;s all that really needs to be done. You can just write posts in Org mode, commit the changes, and push to the repository. Netlify detects that the repository has been changed and rebuilds the site. Of course, since this is Emacs, all of this except the writing can be automated. I modified the scripts that I was using for ox-hugo to make the process simple.
</p>

<p>
First, there is a function that updates the date for the post:
</p>


<div class="org-src-container">
<pre class="src src-elisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">hugo-timestamp</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-doc">"Update existing date: timestamp on a Hugo post."</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">save-excursion</span> <span class="org-rainbow-delimiters-depth-3">(</span>
                   goto-char 1<span class="org-rainbow-delimiters-depth-3">)</span>
                  <span class="org-rainbow-delimiters-depth-3">(</span>re-search-forward <span class="org-string">"^#\\+date:"</span><span class="org-rainbow-delimiters-depth-3">)</span>
                  <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">let</span> <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-rainbow-delimiters-depth-5">(</span>beg <span class="org-rainbow-delimiters-depth-6">(</span>point<span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
                    <span class="org-rainbow-delimiters-depth-4">(</span>end-of-line<span class="org-rainbow-delimiters-depth-4">)</span>
                    <span class="org-rainbow-delimiters-depth-4">(</span>delete-region beg <span class="org-rainbow-delimiters-depth-5">(</span>point<span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span>
                  <span class="org-rainbow-delimiters-depth-3">(</span>insert <span class="org-rainbow-delimiters-depth-4">(</span>concat <span class="org-string">" "</span> <span class="org-rainbow-delimiters-depth-5">(</span>format-time-string <span class="org-string">"%Y-%m-%dT%H:%M:%S"</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
This sets some variables that are used later. The hugo-post-template variable contains the front-matter items that I generally use. 
</p>

<div class="org-src-container">
<pre class="src src-elisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defvar</span> <span class="org-variable-name">hugo-directory</span> <span class="org-string">"~/Sites/blog/"</span> <span class="org-doc">"Path to Hugo blog."</span><span class="org-rainbow-delimiters-depth-1">)</span>
<span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defvar</span> <span class="org-variable-name">hugo-posts-dir</span> <span class="org-string">"content/posts/"</span> <span class="org-doc">"Relative path to posts directory."</span><span class="org-rainbow-delimiters-depth-1">)</span>
<span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defvar</span> <span class="org-variable-name">hugo-post-ext</span> <span class="org-string">".org"</span>  <span class="org-doc">"File extension of Hugo posts."</span><span class="org-rainbow-delimiters-depth-1">)</span>
<span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defvar</span> <span class="org-variable-name">hugo-post-template</span> <span class="org-string">"#+TITLE: </span><span class="org-string"><span class="org-warning">\</span></span><span class="org-string">%s\n#+draft: true\n#+tags[]: \n#+date: \n#+mathjax: \n\n"</span>
  <span class="org-doc">"Default template for Hugo posts. %s will be replace by the post title."</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
These are used to generate the file name:
</p>

<div class="org-src-container">
<pre class="src src-elisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">hugo-make-slug</span> <span class="org-rainbow-delimiters-depth-2">(</span>s<span class="org-rainbow-delimiters-depth-2">)</span> <span class="org-doc">"Turn a string into a slug."</span>
       <span class="org-rainbow-delimiters-depth-2">(</span>replace-regexp-in-string <span class="org-string">" "</span> <span class="org-string">"-"</span>  <span class="org-rainbow-delimiters-depth-3">(</span>downcase <span class="org-rainbow-delimiters-depth-4">(</span>replace-regexp-in-string <span class="org-string">"[</span><span class="org-string"><span class="org-negation-char">^</span></span><span class="org-string">A-Za-z0-9 ]"</span> <span class="org-string">""</span> s<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>

<span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">hugo-yaml-escape</span> <span class="org-rainbow-delimiters-depth-2">(</span>s<span class="org-rainbow-delimiters-depth-2">)</span> <span class="org-doc">"Escape a string for YAML."</span>
       <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">if</span> <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">or</span> <span class="org-rainbow-delimiters-depth-4">(</span>string-match <span class="org-string">":"</span> s<span class="org-rainbow-delimiters-depth-4">)</span> <span class="org-rainbow-delimiters-depth-4">(</span>string-match <span class="org-string">"\""</span> s<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span> <span class="org-rainbow-delimiters-depth-3">(</span>concat <span class="org-string">"\""</span> <span class="org-rainbow-delimiters-depth-4">(</span>replace-regexp-in-string <span class="org-string">"\""</span> <span class="org-string">"\\\\\""</span> s<span class="org-rainbow-delimiters-depth-4">)</span> <span class="org-string">"\""</span><span class="org-rainbow-delimiters-depth-3">)</span> s<span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
This creates the file and puts in the front-matter:
</p>

<div class="org-src-container">
<pre class="src src-elisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">hugo-draft-post</span> <span class="org-rainbow-delimiters-depth-2">(</span>title<span class="org-rainbow-delimiters-depth-2">)</span> <span class="org-doc">"Create a new Hugo blog post."</span>
       <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span> <span class="org-string">"sPost Title: "</span><span class="org-rainbow-delimiters-depth-2">)</span>
       <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">let</span> <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-rainbow-delimiters-depth-4">(</span>draft-file <span class="org-rainbow-delimiters-depth-5">(</span>concat hugo-directory hugo-posts-dir
                                 <span class="org-rainbow-delimiters-depth-6">(</span>format-time-string <span class="org-string">"%Y-%m-%d-"</span><span class="org-rainbow-delimiters-depth-6">)</span>
                                 <span class="org-rainbow-delimiters-depth-6">(</span>hugo-make-slug title<span class="org-rainbow-delimiters-depth-6">)</span>
                                 hugo-post-ext<span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span>
         <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">if</span> <span class="org-rainbow-delimiters-depth-4">(</span>file-exists-p draft-file<span class="org-rainbow-delimiters-depth-4">)</span>
             <span class="org-rainbow-delimiters-depth-4">(</span>find-file draft-file<span class="org-rainbow-delimiters-depth-4">)</span>
           <span class="org-rainbow-delimiters-depth-4">(</span>find-file draft-file<span class="org-rainbow-delimiters-depth-4">)</span>
           <span class="org-rainbow-delimiters-depth-4">(</span>insert <span class="org-rainbow-delimiters-depth-5">(</span>format hugo-post-template <span class="org-rainbow-delimiters-depth-6">(</span>hugo-yaml-escape title<span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
           <span class="org-rainbow-delimiters-depth-4">(</span>hugo-timestamp<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
This sets &ldquo;draft&rdquo; to &ldquo;true&rdquo;, updates the date stamp, and saves the file:
</p>

<div class="org-src-container">
<pre class="src src-elisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">hugo-publish-post</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-doc">"Set draft to false and save."</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">save-excursion</span> <span class="org-rainbow-delimiters-depth-3">(</span>
                   goto-char 1<span class="org-rainbow-delimiters-depth-3">)</span>
                  <span class="org-rainbow-delimiters-depth-3">(</span>re-search-forward <span class="org-string">"^#\\+draft:"</span><span class="org-rainbow-delimiters-depth-3">)</span>
                  <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">let</span> <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-rainbow-delimiters-depth-5">(</span>beg <span class="org-rainbow-delimiters-depth-6">(</span>point<span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
                    <span class="org-rainbow-delimiters-depth-4">(</span>end-of-line<span class="org-rainbow-delimiters-depth-4">)</span>
                    <span class="org-rainbow-delimiters-depth-4">(</span>delete-region beg <span class="org-rainbow-delimiters-depth-5">(</span>point<span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span>
                  <span class="org-rainbow-delimiters-depth-3">(</span>insert <span class="org-string">" false"</span><span class="org-rainbow-delimiters-depth-3">)</span>
                  <span class="org-rainbow-delimiters-depth-3">(</span>hugo-timestamp<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>save-buffer<span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>


<p>
This commits the changes and pushes them to GitHub, using the current date and time as the commit message:
</p>

<div class="org-src-container">
<pre class="src src-elisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defmacro</span> <span class="org-function-name">with-dir</span> <span class="org-rainbow-delimiters-depth-2">(</span>DIR <span class="org-type">&amp;rest</span> FORMS<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-doc">"Execute FORMS in DIR."</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">let</span> <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-rainbow-delimiters-depth-4">(</span>orig-dir <span class="org-rainbow-delimiters-depth-5">(</span>gensym<span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span>
    `<span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">progn</span> <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-keyword">setq</span> ,orig-dir default-directory<span class="org-rainbow-delimiters-depth-4">)</span>
            <span class="org-rainbow-delimiters-depth-4">(</span>cd ,DIR<span class="org-rainbow-delimiters-depth-4">)</span> ,@FORMS <span class="org-rainbow-delimiters-depth-4">(</span>cd ,orig-dir<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>

<span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">hugo-deploy</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-doc">"Push changes upstream."</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>with-dir hugo-directory
            <span class="org-rainbow-delimiters-depth-3">(</span>shell-command <span class="org-string">"git add ."</span><span class="org-rainbow-delimiters-depth-3">)</span>
            <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">--&gt;</span> <span class="org-rainbow-delimiters-depth-4">(</span>current-time-string<span class="org-rainbow-delimiters-depth-4">)</span>
                 <span class="org-rainbow-delimiters-depth-4">(</span>concat <span class="org-string">"git commit -m \""</span> it <span class="org-string">"\""</span><span class="org-rainbow-delimiters-depth-4">)</span>
                 <span class="org-rainbow-delimiters-depth-4">(</span>shell-command it<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span>
            <span class="org-rainbow-delimiters-depth-3">(</span>magit-push-current-to-upstream nil<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
Finally, set some keybindings to make it all easy.
</p>

<div class="org-src-container">
<pre class="src src-elisp"><code><span class="org-rainbow-delimiters-depth-1">(</span>global-set-key <span class="org-rainbow-delimiters-depth-2">(</span>kbd <span class="org-string">"C-c h n"</span><span class="org-rainbow-delimiters-depth-2">)</span> 'hugo-draft-post<span class="org-rainbow-delimiters-depth-1">)</span>
<span class="org-rainbow-delimiters-depth-1">(</span>global-set-key <span class="org-rainbow-delimiters-depth-2">(</span>kbd <span class="org-string">"C-c h p"</span><span class="org-rainbow-delimiters-depth-2">)</span> 'hugo-publish-post<span class="org-rainbow-delimiters-depth-1">)</span>
<span class="org-rainbow-delimiters-depth-1">(</span>global-set-key <span class="org-rainbow-delimiters-depth-2">(</span>kbd <span class="org-string">"C-c h t"</span><span class="org-rainbow-delimiters-depth-2">)</span> 'hugo-timestamp<span class="org-rainbow-delimiters-depth-1">)</span>
<span class="org-rainbow-delimiters-depth-1">(</span>global-set-key <span class="org-rainbow-delimiters-depth-2">(</span>kbd <span class="org-string">"C-c h O"</span><span class="org-rainbow-delimiters-depth-2">)</span> <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">lambda</span> <span class="org-rainbow-delimiters-depth-3">()</span> <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-3">)</span> <span class="org-rainbow-delimiters-depth-3">(</span>find-file <span class="org-string">"~/Sites/blog/"</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
<span class="org-rainbow-delimiters-depth-1">(</span>global-set-key <span class="org-rainbow-delimiters-depth-2">(</span>kbd <span class="org-string">"C-c h P"</span><span class="org-rainbow-delimiters-depth-2">)</span> <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">lambda</span> <span class="org-rainbow-delimiters-depth-3">()</span> <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-3">)</span> <span class="org-rainbow-delimiters-depth-3">(</span>find-file <span class="org-string">"~/Sites/blog/content/post/"</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
<span class="org-rainbow-delimiters-depth-1">(</span>global-set-key <span class="org-rainbow-delimiters-depth-2">(</span>kbd <span class="org-string">"C-c h d"</span><span class="org-rainbow-delimiters-depth-2">)</span> 'hugo-deploy<span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
I have a few more things to do, like create &ldquo;About&rdquo; and tag pages, and adjust the footnote styling. Unfortunately, I need to get ready for the new semester which begins on Thursday.
</p>


<div class="tagline" id="orga9bea92">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a> <a href="https://randyridenour.net/posts/../tags/org.html">Org</a>
</p>

</div>
</div>
</section>
]]>
</description></item>
<item>
<title>Thanksgiving Day Prayer</title>
<link>https://randyridenour.net/posts/2015-01-13-thanksgiving-day-prayer.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-thanksgiving-day-prayer.html</guid>
<description>
<![CDATA[<p>
Gracious God,
</p>

<p>
In the events of this year,<br>
we see how fragile our lives truly are.
</p>

<p>
Daily, we are faced with a choice<br>
to be people who live in cynicism and despair,<br>
or people who live in gratitude and thanksgiving.
</p>

<p>
On this day, we choose gratitude over despair,<br>
and lift our hearts in thanksgiving to you,<br>
the one who is the source of all good things.
</p>

<p>
Thank you<br>
for family and friends,<br>
for life and for love,<br>
and for the beauty that we would see<br>
if we would just open our eyes to you.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org5ae1d38">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Danger of Thinking</title>
<link>https://randyridenour.net/posts/2015-02-22-the-danger-of-thinking.html</link>
<pubDate>Sun, 22 Feb 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-02-22-the-danger-of-thinking.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Anyone who has begun to think, places some portion of the world in jeopardy.
</p>
</blockquote>

<p class="bigquote">
John Dewey
</p>


<div class="tagline" id="org56808be">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Ordination Charge for Brian Warfield</title>
<link>https://randyridenour.net/posts/2015-01-20-ordination-charge-for-brian-warfield.html</link>
<pubDate>Tue, 20 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-20-ordination-charge-for-brian-warfield.html</guid>
<description>
<![CDATA[<p>
I was honored to be asked to deliver the following charge to the minister at the ordination of Brian Warfield, one of our best former students. It was a pleasure to see Brian, Misty, and to meet their children. It was also great to catch up with friends at Spring Creek Baptist Church, where Brian was ordained. The text of my remarks follows:
</p>

<p>
Charge to the Minister<br>
Ordination of Brian Warfield<br>
April 11, 2012
</p>





<p>
Brian, I am honored to have this opportunity to participate in your ordination service. I have often wondered where students have ended up, and to what kind of ministry they were led. Facebook has changed that. Now I generally know even more than I wanted. Sometimes, I&rsquo;m surprised to hear that a former student is now on a church staff, or that someone else is not pastoring somewhere. Sometimes, the proper response is not surprise, but sadness, especially when gifted young ministers feel compelled to leave their own tradition because there is no place there for them to serve. In this case, though, I felt a deep sense of pleasure when I read that one of my best students was being ordained by one of my favorite churches.
</p>

<p>
You have asked me to deliver the charge to the minister. A charge is a kind of challenge that is laid before you, something for you to keep in mind as you walk this path on which God has led you. So, I now charge you to remember these three things.
</p>

<p>
First, remember that the questions are quite often more important than the answers. Too many sermons are answers to questions that no one is asking. As such, they are vain, empty, and useless. One of the most common causes of failed ministries occurs when a minister is called to a new church, and begins proclaiming answers before asking enough of the right questions. Answers that come too quickly tend to show a lack of respect for the question, which is taken to be a lack of respect for the questioner.
</p>

<p>
Jesus understood the importance of questions. When he was asked, &ldquo;Who is my neighbor?&rdquo; he replied, after a story, with another question, &ldquo;Which one of these was the neighbor?&rdquo; Understanding comes not when we are force-fed answers, but rather when we are equipped to answer our own questions. Before that, though, we need to learn how to ask the right questions. That is one of the most valuable things that a minister can do for a congregation.
</p>

<p>
Finally, there are some questions for which there are no sufficient answers. Jesus&rsquo; cry from the cross is one of those, &ldquo;My God, my God, why have you forsaken me?&rdquo; When in the presence of such suffering, the right response is not to provide answers, but, with fear and trembling, recognize that the ground upon which you are standing is holy ground.
</p>

<p>
The second thing I&rsquo;d like you to remember is that Kingdom growth is not the same thing as church growth. I remember having a conversation with someone when we were starting NorthHaven, our church in Norman. He asked me a question that I wasn&rsquo;t quite sure how to answer - &ldquo;What is your market?&rdquo; At first, I laughed and replied “Liberals.” The more I think about the question, the more it disturbs me. If we treat the church as a marketplace, we shouldn’t be surprised that people are engaging in comparison shopping. We have failed to make disciples, instead we are making customers. And in the back of my mind, I hear Jesus’ words in the temple: “You shall not make my Father’s house a house of trade.”
</p>

<p>
The heart of the problem is that we have made church growth the ultimate goal. And when we do so, the church tends to become something that God never intended.  Sometimes I wonder just how much of what we do in church today has anything to do with being the church described in the New Testament. In Acts 2, we get a glimpse of the church as it’s described in the New Testament. Daily activities include taking care of each other, sharing meals, and praising God. Everything, interestingly enough, except for evangelism as we now understand it. Yet, the Scripture says that the Lord daily added to their number.
</p>

<p>
Church growth is wonderful, but it shouldn&rsquo;t be the goal. To make it the goal is to run the risk of compromising the Gospel. The easiest way to achieve church growth is by preaching what Bonhoeffer called &ldquo;cheap grace.&rdquo;  When tempted, think back to chapter  6 of John&rsquo;s Gospel. After Jesus proclaimed a difficult teaching, John said that many of his disciples left him. It is a poignant scene when Jesus turned the twelve, and asked &ldquo;Do you also wish to go away?&rdquo; Making church growth the criterion of a successful ministry is to adopt a model of ministry that would make Jesus&rsquo; ministry on earth a failure.
</p>

<p>
The goal of church growth is going to church. The goal of kingdom growth is <i>being</i> the church, a community of love, the place where the kingdom of God has come into the world.
</p>

<p>
Finally, keep this in mind - remembering where you came from is more important than knowing where you&rsquo;re going. Although we&rsquo;re confident in our ultimate destination, none of us knows what intermediate stops we will have along the way.
</p>

<p>
Why are we here? Why is ordination important? Not so that you can minister. If you had not already shown that you were ministering to those around you, this church would have never considered ordination. We are not a sacramental tradition, so we do not believe that any special grace will flow to you today. So, why do we ordain you? My friend and colleague, Kevin Hall, likes to quote Spurgeon as saying ordination is the laying of empty hands on an empty head. I&rsquo;ve read some of your academic work, so I&rsquo;m confident that it is not an empty head that we lay hands on today. Still, though, why is this important?
</p>

<p>
Paul&rsquo;s letters to Timothy give us a clue. 1 Timothy is primarily instructional. It&rsquo;s about taking care of the business of the church. Things are good, let&rsquo;s get down to work. 2 Timothy, though, has a different tone. After the salutation, Paul writes:
</p>

<blockquote>
<p>
Recalling your tears, I long to see you so that I may be filled with joy. I am reminded of your sincere faith, a faith that lived first in your grandmother Lois and your mother Eunice and now, I am sure, lives in you. For this reason I remind you to rekindle the gift of God that is within you through the laying on of my hands; for God did not give us a spirit of cowardice, but rather a spirit of power and of love and of self- discipline.
</p>
</blockquote>

<p>
What events prompted this change of tone? Why does Paul think it necessary to remind Timothy of the faith of his family and of the time of his ordination? I suspect that it&rsquo;s because Timothy is experiencing one of those times in ministry that we all have. There will come a time when this thought comes to mind. It has happened to me, and I&rsquo;m sure that it has happened to many others. The thought is this: &ldquo;The only mistake that God ever made in history is calling me to ministry.&rdquo; When that thought comes, remember this day.
</p>

<p>
You need to be ordained for the same reason that Jesus needed to hear the voice of the Father at his baptism, saying &ldquo;This is my beloved Son, in whom I am well pleased.&rdquo; The memory of that moment may have been exactly what Jesus needed when it came time to face the trials that lay ahead. Ordination is important for those times that you don&rsquo;t think that you are up to the task, when you don&rsquo;t feel that you have the right skills or the right words. When that time comes that you cannot seem to believe in yourself, remember that today, a church, the Body of Christ, believed in you. That my friend, is surely enough.
</p>

<p>
Amen
</p>


<div class="tagline" id="org8d2d0a1">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Religious Liberty Sunday, 2015</title>
<link>https://randyridenour.net/posts/2015-07-07-religious-liberty-sunday-2015.html</link>
<pubDate>Tue, 07 Jul 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-07-07-religious-liberty-sunday-2015.html</guid>
<description>
<![CDATA[<p>
As I listened to Mitch Randall&rsquo;s sermon last Sunday at NorthHaven Church in Norman, Oklahoma, I couldn&rsquo;t help but reflect on Paul&rsquo;s words in Philippians 2. I hope the prayer for the week reflects that thought.
</p>

<p>
Father,
</p>

<p>
Protect us from the arrogance<br>
of unwarranted certainty,<br>
as it keeps us from hearing<br>
the voice of our neighbor.
</p>

<p>
Cleanse us from the vanity<br>
of inflated self-importance,<br>
as it moves us to see only ourselves.
</p>

<p>
May we never desire a freedom<br>
that forces others to worship as we do,<br>
for that is not the way of the one<br>
who took up, not his rights,<br>
but the cross.
</p>

<p>
In his name,<br>
<i>Amen</i>
</p>


<div class="tagline" id="org2511ff0">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>William Alston, 1921-2009</title>
<link>https://randyridenour.net/posts/2009-09-14-william-alston-1921-20-09.html</link>
<pubDate>Sun, 13 Sep 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-09-14-william-alston-1921-20-09.html</guid>
<description>
<![CDATA[<p>
William Alston died today at the age of 87.
</p>



<div class="tagline" id="org85352d8">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Easy Solutions</title>
<link>https://randyridenour.net/posts/2025-08-29-easy-solutions.html</link>
<pubDate>Fri, 29 Aug 2025 05:44:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-08-29-easy-solutions.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
There is always an easy solution to every human problem – neat, plausible and wrong. 
</p>
</blockquote>

<p class="bigquote">
​H. L. Mencken, <i>Prejudices: Second Series</i>, 1920
</p>


<div class="tagline" id="org9942674">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Hard Thinking</title>
<link>https://randyridenour.net/posts/2015-01-13-hard-thinking.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-hard-thinking.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Rarely do we find men who willingly engage in hard, solid thinking. There is an almost universal quest for easy answers and half-baked solutions. Nothing pains some people more than having to think.
</p>
</blockquote>

<p class="bigquote">
Martin Luther King, Jr.
</p>


<div class="tagline" id="org9de34dc">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Advice for Christian Politicians</title>
<link>https://randyridenour.net/posts/2010-08-11-advice-for-christian-politicians.html</link>
<pubDate>Wed, 11 Aug 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-08-11-advice-for-christian-politicians.html</guid>
<description>
<![CDATA[<p>
<a href="http://www.ethicsdaily.com/news.php?viewStory=16508">Advice for Christian Politicians</a>
</p>

<p>
From Ethics Daily.
</p>


<div class="tagline" id="orgdb4dcf4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Thoughts on COVID-19</title>
<link>https://randyridenour.net/posts/2020-03-19-thoughts-on-covid-19.html</link>
<pubDate>Thu, 19 Mar 2020 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2020-03-19-thoughts-on-covid-19.html</guid>
<description>
<![CDATA[<p>
Here are some thoughts as I reflect on comments about, and available data on, the COVID-19 coronavirus.
</p>

<p>
I have seen some posts pointing out that 700 million people contracted H1N1 Swine Flue without any schools or businesses closing. The posts then go on to infer that COVID-19 has been &ldquo;over-hyped.&rdquo; There are several things to note as people decide how to appropriately respond to the pandemic, using the best numbers that I can find. H1N1 was indeed a serious pandemic, but the 700 million infected is not the only important number. H1N1 resulted in 150,000 fatalities (both of these numbers are minimum estimates), so the mortality rate for H1N1 was a mere 0.02%.
</p>

<p>
The mortality rate for COVID-19 is difficult to estimate, mainly because of the lack of adequate testing. Accurately estimating the mortality rate requires not only a decent estimate of the number of deaths from the infection, but also a good estimate of the total number of people infected. Without readily available tests, the tendency is to underestimate the number of people infected, which leads to an overestimation of the mortality rate. Early estimates were around 2%, then quickly rose to 3.4%, but now appear to be decreasing with more data. The best data comes from countries that tested a higher percentage of residents. So far, only 7 of every million residents of the U.S. have been tested, but South Korea&rsquo;s rate of testing was over 150 times that of the U.S. The mortality rate in South Korea was only 0.6%, far lower than the estimates that we are hearing.
</p>

<p>
Good news for the COVID-19 skeptics? Not really, 0.6% is far lower than 2%, but it is 30 times greater than the mortality rate for H1N1. Even more important, we should only expect to have the 0.6% rate if we take the same steps as South Korea, which immediately set up a central disaster headquarters for a uniform and consistent response across the country, and ordered all schools from kindergarten through high school to postpone their spring semester. The mortality rate for Italy, also a country with a high testing percentage, is much higher. So far, the response to COVID-19 in the United States seems to be more like Italy than South Korea.
</p>

<p>
We should also compare COVID-19 to the SARS coronavirus. SARS killed 774 people in 2003, out of 8,096 known cases. The mortality rate for SARS, then, was a staggering 10%. Does that make SARS worse than COVID-19? We should keep in mind that there were only 8,096 known cases; there have now been over 45,000 known recoveries from COVID-19. The infection rate seems to be far, far greater with COVID-19.
</p>

<p>
Rational risk assessment is a function of two factors: the probability of harm and the degree of harm. Coronavirus wins the risk assessment game compared with both SARS and H1N1. The infection rate is far greater than that of SARS, and the mortality rate is far greater than that of H1N1.
</p>

<p>
Still, these numbers don&rsquo;t apply to every population group. The mortality rate in China for children under 10 was 0%, for non-geriatric adults, it was 0.2–0.4%. The rates appear to significantly increase at 70 to 1.1%, then to 4.9% for those over 80. So, most of us have little or nothing to fear for ourselves from COVID-19, but those in high-risk groups, including the elderly and those with compromised immune systems, may have much to fear. The best way to save those people is to do everything we can to minimize the spreading of the virus, not just to them, but to anyone with whom they may have contact. The experience of other countries shows us that this requires these measures that motivate those negative social media posts.
</p>

<p>
There are those, not in high-risk groups, who may ask, &ldquo;Why should we change our lifestyles if we are not personally at risk? Isn&rsquo;t that just giving in to fear?&rdquo; The answer is simple, we do these things not out of fear, but out of love for our neighbor.
</p>
]]>
</description></item>
<item>
<title>Anne Frank on Hunger</title>
<link>https://randyridenour.net/posts/2025-10-16-anne-frank-hunger.html</link>
<pubDate>Thu, 16 Oct 2025 15:53:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-10-16-anne-frank-hunger.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Hunger is not a problem. It is an obscenity. How wonderful it is that nobody need wait a single moment before starting to improve the world.
</p>
</blockquote>

<p class="bigquote">
<a href="https://baptistnews.com/article/the-early-church-would-be-shocked-weve-stopped-feeding-the-hungry/" class="bigquote">Anne Frank</a>
</p>

<div class="tagline" id="org8035ceb">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Twentieth Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-the-twentieth-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-twentieth-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
I want a faith<br>
that is like<br>
a good pair of shoes.
</p>

<p>
Comfortable,<br>
not too demanding,<br>
painless,<br>
and safe&hellip;
</p>

<p>
Easy to forget&hellip;
</p>

<p>
The kind you never<br>
know is there,<br>
with just a little Jesus,<br>
and not too much of the Spirit.
</p>

<p>
A faith that trusts,<br>
but not too much.<br>
A faith that dreams,<br>
but not too big.
</p>

<p>
But the living God<br>
does not deal in small faith<br>
and small dreams.
</p>

<p>
So, here I am, Lord,<br>
opening up the dry,<br>
dusty corners of my heart.
</p>

<p>
Let the river flow.
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="org43b9c3f">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Let Me Be Known</title>
<link>https://randyridenour.net/posts/2016-08-19-let-me-be-known.html</link>
<pubDate>Fri, 19 Aug 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-08-19-let-me-be-known.html</guid>
<description>
<![CDATA[<p>
Lord,
</p>

<p>
Let me be known,
</p>

<p>
not by what I hate,<br>
but by whom I love;
</p>

<p>
not by whom I exclude,<br>
but by whom I include;
</p>

<p>
not by my enemies,<br>
but by my friends;
</p>

<p>
for an enemy truly loved<br>
is but a friend to be.
</p>


<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgf0ac9cd">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Hildebrand Conference</title>
<link>https://randyridenour.net/posts/2010-02-23-hildebrand-conference.html</link>
<pubDate>Tue, 23 Feb 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-02-23-hildebrand-conference.html</guid>
<description>
<![CDATA[<p>
A conference on the work of Dietrich von Hildebrand is scheduled for May 27-29, 2010 in Rome. There is a student essay contest, and five winners receive lodging, meals, and money for travel expenses to the conference in Rome. The conference website is <a href="http://www.hildebrandlegacy.org">www.hildebrandlegacy.org</a>.
</p>


<div class="tagline" id="org9c236a1">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Memorial Day, 2015</title>
<link>https://randyridenour.net/posts/2015-05-24-prayer-for-memorial-day-2015.html</link>
<pubDate>Sun, 24 May 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-05-24-prayer-for-memorial-day-2015.html</guid>
<description>
<![CDATA[<p>
Holy God,
</p>

<p>
We give thanks today,<br>
not for those who died,
</p>

<p>
but for those who lived<br>
in such a way that they<br>
witnessed to a commitment<br>
to something worth<br>
sacrificing for,
</p>

<p>
something greater than<br>
even their own lives.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org5a56df9">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Easter Prayer</title>
<link>https://randyridenour.net/posts/2015-04-05-easter-prayer.html</link>
<pubDate>Sun, 05 Apr 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-04-05-easter-prayer.html</guid>
<description>
<![CDATA[<p>
Prayer for a rainy Easter Day:
</p>

<p>
The refreshing rain<br>
falls upon the parched land<br>
And brings life to the<br>
cracked, barren earth.
</p>

<p>
In the same way, may the<br>
Spirit of the risen Christ<br>
heal our broken hearts and<br>
restore our barren souls.
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="org7476b9a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Trinity Sunday</title>
<link>https://randyridenour.net/posts/2015-06-01-prayer-for-trinity-sunday.html</link>
<pubDate>Mon, 01 Jun 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-06-01-prayer-for-trinity-sunday.html</guid>
<description>
<![CDATA[<p>
Triune God,
</p>

<p>
In those times<br>
that we feel alone,<br>
lost in the crowd,<br>
and disconnected<br>
from those around us,<br>
we take comfort in knowing<br>
that at the center of reality<br>
is an unending community of love,<br>
and that we, your children,<br>
have been invited into<br>
the eternal fellowship<br>
that is the<br>
Father,<br>
Son,<br>
and Holy Spirit,<br>
three persons,<br>
but one God,<br>
forever and ever.
</p>

<p>
Amen
</p>


<div class="tagline" id="orgf73a1cc">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Monads</title>
<link>https://randyridenour.net/posts/2009-10-25-the-monads.html</link>
<pubDate>Sun, 25 Oct 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-10-25-the-monads.html</guid>
<description>
<![CDATA[<p>
From the &ldquo;<a href="http://tar.weatherson.org/">Thoughts, Arguments, and Rants</a>&rdquo; blog, here is a link to a band called &ldquo;<a href="http://people.umass.edu/phil511/monads/">The Monads</a>&rdquo; and it&rsquo;s reincarnation, &ldquo;The 21st Century Monads.&rdquo; No educated person could resist songs with titles like &ldquo;The Skeptic Song&rdquo; and &ldquo;The Missing Shade of Blues.&rdquo; There&rsquo;s even a song expressing the emotional depths of the academic life: &ldquo;My Paper Was Rejected Again.&rdquo;
</p>


<div class="tagline" id="orgcc04a5b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/music.html">Music</a> <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Cognitive Biases Song</title>
<link>https://randyridenour.net/posts/2010-05-05-this-is-a-song-by-a-hs-psychology-teacher-designed.html</link>
<pubDate>Wed, 05 May 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-05-05-this-is-a-song-by-a-hs-psychology-teacher-designed.html</guid>
<description>
<![CDATA[<p>
This is a song by a HS Psychology teacher designed to help students learn about cognitive biases. Play it in the background as you study for the Critical Thinking final.
</p>


<div class="org-center">
<p>
<iframe width="440" height="335" src="https://www.youtube.com/embed/3RsbmjNLQkc" frameborder="0" allowfullscreen>Cognitive biases song.</iframe>
</p>
</div>


<div class="tagline" id="org39d029e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a> <a href="https://randyridenour.net/posts/../tags/critical-thinking.html">Critical-Thinking</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Using Keynote in Class</title>
<link>https://randyridenour.net/posts/2011-11-30-using-keynote-in-class.html</link>
<pubDate>Wed, 30 Nov 2011 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2011-11-30-using-keynote-in-class.html</guid>
<description>
<![CDATA[<p>
I have been using Keynote for iOS for lecture presentations in classes this semester. The process has been so easy, that this is the first semester that I have consistently used slide presentations during lectures. Most of my presentations were initially prepared on the Mac, then imported into Keynote for iOS on the iPad. Keynote for iOS seems to be fairly adept at importing transitions and effects. My only complaint is that the default font used in my preferred theme is different in the iOS version than in the desktop version of Keynote. 
</p>

<p>
I use the Remote app on the iPhone as a presentation controller. I was a bit apprehensive at first. I have a Bluetooth presentation controller that I preferred to use in the past. I like having the hardware buttons for moving through the slides. That way, I could simply feel the button, change the slide, and never have to look at the controller. I find that I can do the same thing with the Remote app, however. Slide changes occur when the presenter swipes a finger across the screen, exactly like navigating through screens on an iOS device. I found that it is very natural to hold the phone in one hand, and swipe the screen with the index finger of that same hand to change the slide. A swipe in the other direction moves to the previous slide. There is no need to look at the phone to change slides. It is easy, natural, and I have yet to drop the phone after a semester&rsquo;s worth of lectures. I can glance at the phone to see the next slide in the queue, a handy feature that my usual remote lacks.
</p>

<p>
When I first started using the Remote app with Keynote for iOS, the two worked seamlessly. Both the iPad and iPhone were on the same wi-fi network, so the iPhone immediately saw the presentation that was running on the iPad. At some point, though, the two stopped connecting to each other. This began at the same time that I updated devices to iOS. Unfortunately, I don&rsquo;t know if it is related to iOS or if it is a result of changes in the University&rsquo;s network. I have found that connecting the iPad to the iPhone using the personal hotspot works flawlessly. That does require a few extra steps before the presentation can begin.
</p>

<p>
Even so, I am extremely pleased with Keynote for iOS and the companion Remote app. I simply carry in the iPad and the adapter cable, plug it in to the projector cable, and begin the presentation. No boot-up time and not heavy laptop. It&rsquo;s quick, easy, and it just works, assuming you pay AT&amp;amp;T for the privilege of using your phone as a personal hotspot.
</p>



<div class="tagline" id="org2812e60">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a>
</p>

</div>
]]>
</description></item>
<item>
<title>To Speak Truly</title>
<link>https://randyridenour.net/posts/2011-03-25-nothing-true-can-be-said-about-god-from-a-posture.html</link>
<pubDate>Fri, 25 Mar 2011 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2011-03-25-nothing-true-can-be-said-about-god-from-a-posture.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Nothing true can be said about God from a posture of defense.
</p>
</blockquote>

<p class="bigquote">
Marilynne Robinson
</p>






<div class="tagline" id="org66c2547">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Hope Has Two Daughters</title>
<link>https://randyridenour.net/posts/2025-02-23-hope-has-two-daughters.html</link>
<pubDate>Sun, 23 Feb 2025 05:14:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2025-02-23-hope-has-two-daughters.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Hope has two beautiful daughters; their names are Anger and Courage. Anger at the way things are, and Courage to see that they do not remain as they are.
</p>
</blockquote>

<p class="bigquote">
Unknown
</p>

<p>
This is often attributed to Augustine, but I think that&rsquo;s unlikely to be true, since no one apparently knows where in the Augustinian corpus it is found.
</p>

<div class="tagline" id="org449a558">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Who Is My Enemy?</title>
<link>https://randyridenour.net/posts/2015-01-20-who-is-my-enemy.html</link>
<pubDate>Tue, 20 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-20-who-is-my-enemy.html</guid>
<description>
<![CDATA[<p>
The parable of the Good Samaritan is prompted by a lawyer&rsquo;s question in Luke 10:29, &ldquo;But wanting to justify himself, he asked Jesus, &lsquo;And who is my neighbor?&rsquo;&rdquo;   That phrase, &ldquo;But wanting to justify himself&rdquo; plays an important role in a sermon of mine, where I claimed that this places the lawyer on par with the typical caller on a talk-radio show. On this reading, the phrase means something like, &ldquo;In order to impress those listening in,&rdquo; or &ldquo;In order to sound smarter than he really was.&rdquo; 
</p>

<p>
I&rsquo;m no longer confident, though, that I&rsquo;ve been fair to the lawyer. Why would any 1st-century Jew have asked what the greatest commandment was? Everyone would have agreed that it is found in Deuteronomy 6:5, &ldquo;You shall love the Lord your God with all your heart, and with all your soul, and with all your might.&rdquo; 
</p>

<p>
And given the themes in the prophets and the law, Jesus&rsquo; claim that the second greatest commandment was the requirement to love one&rsquo;s neighbor as oneself  in Leviticus 19:18 would also strike listeners as obvious. 
</p>

<p>
So, the lawyer, having just asked a question to which everyone listening would have though the answer was obvious, then proceeded to ask another question with an even more obvious answer, &ldquo;Who is my neighbor?&rdquo;  Maybe the lawyer suspected that God&rsquo;s commandment was more radical than we ever assumed. 
</p>

<p>
Maybe the lawyer was present four chapters earlier, when Jesus uttered these words, &ldquo;But I say to you that listen, Love your enemies, do good to those who hate you, bless those who curse you, pray for those who abuse you.&rdquo;
</p>

<p>
I&rsquo;ve been thinking about this for the past few days after hearing Mitch Randall&rsquo;s sermon at <a href="http://northhavenchurch.net">NorthHaven Church</a> on loving our enemies. What would Jesus have said if the same lawyer were to have asked, &ldquo;Who is my enemy?&rdquo;
</p>

<p>
Sixteen months in a combat zone taught me that identifying enemies can be difficult. It is not in the enemy&rsquo;s best interests to be identifiable as an enemy. It may also be that I am the one who is antagonistic, but self-deceptive about the extent and nature of my antagonism. Even if I have them, it may be difficult for me to see myself as a person who makes enemies.
</p>

<p>
So, how do I begin to understand who my enemy is? Maybe I should begin by answering these questions:
</p>

<ul class="org-ul">
<li>In whose failure would I take pleasure?</li>
<li>At whose expense do I direct my humor?</li>
<li>To whom do I need to feel superior?</li>
</ul>

<p>
Sometimes we feel like we are surrounded by enemies. I fear that they are enemies that we have constructed for our own sake. 
</p>

<p>
Lord have mercy.
</p>


<div class="tagline" id="orgee928d6">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Automating Jekyll with Fish</title>
<link>https://randyridenour.net/posts/2016-07-12-automating-jekyll-with-fish.html</link>
<pubDate>Tue, 12 Jul 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-07-12-automating-jekyll-with-fish.html</guid>
<description>
<![CDATA[<p>
<a href="https://randyridenour.net/posts/2016-06-23-emacs-on-the-ipad.html">Last month</a>, I wrote about my experiment with iOS and a remote server from
<a href="http://wwww.digitalocean.com">Digital Ocean</a>. It&rsquo;s working very well, but Emacs can feel a bit sluggish at times, served up remotely over a crowded public wi-fi network. Vim is speedy, and since I use Evil on Emacs, it&rsquo;s not too painful to switch occasionally. Any pain comes from the loss of the automation with all of those Emacs functions I&rsquo;ve written and collected over the years.
</p>

<p>
I thought about writing some scripts in Elisp, but settled on functions in the <a href="http://fishshell.com/">Fish</a> Shell. The first function
creates an appropriately named Markdown file with YAML front-matter. The important parts come from <a href="https://gist.github.com/marcransome/6096005">Marc Ransome</a>:
</p>


<pre class="example" id="org2d5c85d">
function draft -d "Open default editor with date prepended filename and specified title for jekyll posts."

cd ~/Dropbox/blog-drafts

# Create file
  set title (date +"%Y-%m-%d")

  switch (count $argv)
    case 0
      echo "No post title was specified."
      return 1
    case 1
      set lower_arg (echo $argv[1] | tr A-Z a-z)
      set title $title-$lower_arg.md
    case \*
      for arg in $argv
	set lower_arg (echo $arg | tr A-Z a-z)
	set title $title-$lower_arg
      end
      set title $title.md
  end

# Append YAML
echo "---" &gt;&gt; $title
echo "layout: post" &gt;&gt; $title
echo "title: " $argv &gt;&gt; $title
echo "tags:" &gt;&gt; $title
echo "- " &gt;&gt; $title
echo "comments: true" &gt;&gt; $title
echo "date:" (date +"%Y-%m-%d %H:%M:%S") &gt;&gt; $title
echo "---" &gt;&gt; $title

# Open file in VIM
  EDITOR $title
end
</pre>

<p>
The other two functions were very simple – one to move a completed draft to the _posts folder, and another to commit the new post and push to Github with the imaginative commit message, &ldquo;New post&rdquo;:
</p>


<pre class="example" id="org338aa40">
function post
   mv $argv ~/Sites/rlridenour.github.io/_posts
end

function publish
 cd ~/Sites/rlridenour.github.io
 git add .
 git commit -m "New post."
 git push
end
</pre>


<div class="tagline" id="org4991659">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/shell.html">Shell</a> 
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Compassion</title>
<link>https://randyridenour.net/posts/2015-01-13-prayer-for-compassion.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-prayer-for-compassion.html</guid>
<description>
<![CDATA[<p>
<i>For the Second Sunday of Pentecost</i>
</p>

<p>
Isaiah spoke<br>
Of one who was<br>
Ugly,<br>
Despised,<br>
Rejected,
</p>

<p>
One who knew pain,<br>
And suffering,
</p>

<p>
One upon whom people would look,<br>
Then turn away in disgust.
</p>

<p>
Yet it was our pain he bore,<br>
And our ugliness he assumed,<br>
Taking upon himself<br>
The shameful things inside<br>
That we keep hidden.
</p>

<p>
We are like those<br>
Who saw only a homeless, itinerant Rabbi,<br>
But failed to see the one<br>
In whom the glory of God shone,<br>
When we see those who make us uncomfortable,<br>
And fail to see ones<br>
Whom you love<br>
And created in your image.
</p>

<p>
God of grace and compassion,<br>
Forgive us.<br>
Open our eyes that we may see.<br>
Open our hearts that we may love.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgce4e2f0">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Loyal Dissent Within the Church</title>
<link>https://randyridenour.net/posts/2015-01-13-loyal-dissent-within-the-church.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-loyal-dissent-within-the-church.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
What if Christian colleges and universities &mdash; even those affiliated with traditions with highly literalistic doctrines of creation &mdash; embraced a picture of unity in the body of Christ that included the concept of necessary loyal dissent within a framework of basic respect, transparency, and honest searching for truth?
</p>
</blockquote>

<p class="bigquote">
Ronald E. Osborn, <i>Death Before the Fall: Biblical Literalism and the Problem of Animal Suffering</i>
</p>


<div class="tagline" id="org36c335f">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Twenty-Second Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-twenty-second-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-twenty-second-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
Merciful God,
</p>

<p>
This day marks the end of the war<br>
that was to be the last.<br>
That we thought it so was just<br>
another sign of our arrogance.<br>
</p>

<p>
We use this day now<br>
to give thanks for<br>
those who have served.
</p>

<p>
And as we remember them,<br>
let us not do so<br>
through the eyes of the world,<br>
which values only<br>
security,<br>
power,<br>
and wealth.
</p>

<p>
Let us look instead<br>
through the eyes of<br>
the Crucified One,<br>
who looks upon us<br>
with<br>
humility,<br>
sacrifice,<br>
and love.
</p>

<p>
For it is only then<br>
that we understand<br>
the cost borne<br>
by those who have<br>
&ldquo;No greater love<br>
than this.&rdquo;
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="org6ba0fdb">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>If You Like Bugs...</title>
<link>https://randyridenour.net/posts/2010-03-30-if-you-like-bugs.html</link>
<pubDate>Tue, 30 Mar 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-03-30-if-you-like-bugs.html</guid>
<description>
<![CDATA[<p>
Here are some <a href="https://www.dailymail.co.uk/sciencetech/article-1260946/The-stunning-pictures-sleeping-insects-covered-early-morning-dew.html">very cool pictures</a> of insects covered with droplets of dew.
</p>


<div class="tagline" id="org36853e7">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Updating the Time Stamp</title>
<link>https://randyridenour.net/posts/2025-01-07-updating-time-stamp.html</link>
<pubDate>Tue, 07 Jan 2025 14:24:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2025-01-07-updating-time-stamp.html</guid>
<description>
<![CDATA[<p>
I updated the time stamp so that the feed doesn&rsquo;t look I only post at midnight. Time stamps are easy to adjust using this <a href="https://www.gnu.org/software/emacs/manual/html_node/elisp/Time-Parsing.html">Elisp guide</a>.
</p>

<div class="tagline" id="org710f7ba">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a> <a href="https://randyridenour.net/posts/../tags/blog.html">Blog</a>
</p>

</div>
]]>
</description></item>
<item>
<title>End of the Semester</title>
<link>https://randyridenour.net/posts/2024-12-17-end-semester.html</link>
<pubDate>Tue, 17 Dec 2024 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2024-12-17-end-semester.html</guid>
<description>
<![CDATA[<p>
Final exams have been graded and final grades have been turned in. Unfortunately, there&rsquo;s only a few short weeks to prepare for the next semester.
</p>


<div class="tagline" id="org6fad5ea">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Doom Native Compiler Error</title>
<link>https://randyridenour.net/posts/2023-02-06-doom-native-compiler-error.html</link>
<pubDate>Mon, 06 Feb 2023 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2023-02-06-doom-native-compiler-error.html</guid>
<description>
<![CDATA[<p>
For those of us who live in Emacs, it&rsquo;s always a bad feeling when Emacs won&rsquo;t start, which happened to me today after upgrading my office Mac. I ran <code>doom doctor</code> which ran through a few checks and stopped with 
</p>

<div class="org-src-container">
<pre class="src src-shell"><code>There was an unexpected runtime error
    Message: Native compiler error
    Details: <span class="org-rainbow-delimiters-depth-1">(</span><span class="org-rainbow-delimiters-depth-2">(</span>lambda <span class="org-rainbow-delimiters-depth-3">(</span>arg106 &amp;optional arg107 arg108<span class="org-rainbow-delimiters-depth-3">)</span> <span class="org-rainbow-delimiters-depth-3">(</span>let <span class="org-rainbow-delimiters-depth-4">(</span>...<span class="org-rainbow-delimiters-depth-4">)</span> <span class="org-rainbow-delimiters-depth-4">(</span>funcall f arg106 arg107 arg108<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span> <span class="org-string">"Compiling /Users/rlridenour/.emacs.d/.local/cache/eln/28.2-75f7b60d/subr--trampoline-72657175697265_require_0.eln...\nxcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun\nlibgccjit.so</span>
</code></pre>
</div>

<p>
followed by a bunch of incomprehensible (to me) nonsense. The important part being
</p>

<div class="org-src-container">
<pre class="src src-shell"><code>invalid active developer path <span class="org-rainbow-delimiters-depth-1">(</span>/Library/Developer/CommandLineTools<span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
I always forget that upgrading the OS usually necessitates upgrading the Command Line Developer Tools, so 
</p>

<div class="org-src-container">
<pre class="src src-shell"><code>xcode-select --install
</code></pre>
</div>

<p>
fixed everything.
</p>


<div class="tagline" id="org13f5940">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>After the Election — Love</title>
<link>https://randyridenour.net/posts/2016-11-10-love-one-another.html</link>
<pubDate>Thu, 10 Nov 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-11-10-love-one-another.html</guid>
<description>
<![CDATA[<p>
There are circumstances during which my failure becomes clearly evident, and the events of the past few days have given me needed opportunity to reflect on that failure.
</p>

<p>
God&rsquo;s commandment is to love — a commandment given not to an abstract entity such as government or the church, but a commandment given to me.
</p>

<p>
Even more, God commanded me to love my neighbor — not the world or humanity, but my neighbor, the one who weeps in fear and pain, the one who offends me, the one with whom I disagree, and the one of whom I take no notice.
</p>

<p>
May God have mercy on me, a sinner.
</p>

<p>
God who sustains us,
</p>

<p>
If we are to rejoice together,<br>
may we taste the strength<br>
of your justice and peace.<br>
</p>

<p>
If we are to suffer together,<br>
may we drink deeply<br>
from your sacred tears.<br>
</p>

<p>
If we are to live together,<br>
may we feast on your love,<br>
knowing that there is one rule<br>
at the table of the Lord:
</p>

<p>
&ldquo;Little children, love one another.&rdquo;
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org8a9f298">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Fifth Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-the-fifth-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-fifth-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
Another thought-provoking sermon at <a href="http://northhavenchurch.net">NorthHaven</a> this week - this time, from Bryan Partridge.<br>
</p>

<p>
Here is the prayer for the week:
</p>


<p>
A good actor devotes herself to her role,<br>
and carefully learns her lines;<br>
while constantly studying the finest<br>
performances of the past.<br>
<br>
At first, after many missed cues<br>
and fumbled lines,<br>
she fears she may never get it right.<br>
<br>
But with wise direction,<br>
and hours of rehearsing,<br>
every word,<br>
and every gesture,<br>
eventually seems natural,<br>
as if she has finally become<br>
what she was always meant to be.<br>
<br>
And the role,<br>
performed countless times by others,<br>
is now hers,<br>
something new,<br>
and beautiful -<br>
<br>
A work of art<br>
taken to the stage,<br>
and performed for the pleasure<br>
of the audience.<br>
<br>
<br>
Father,<br>
<br>
We place ourselves<br>
under your direction,<br>
as we seek to grow<br>
into this role,<br>
which you have given us -<br>
to be disciples of Christ.<br>
<br>
And with time,<br>
may we each create something<br>
unique and beautiful<br>
for your good pleasure.<br>
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgb17d190">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Sticking with Hugo</title>
<link>https://randyridenour.net/posts/2022-11-13-sticking-with-hugo.html</link>
<pubDate>Sun, 13 Nov 2022 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2022-11-13-sticking-with-hugo.html</guid>
<description>
<![CDATA[<p>
I have been toying with the idea of blogging entirely with Emacs and Org Mode, but I haven&rsquo;t been able to make it work like I like. I guess I&rsquo;ll stick with Hugo. 
</p>


<div class="tagline" id="org6d4604c">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/org.html">Org</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Comforting Words</title>
<link>https://randyridenour.net/posts/2026-02-21-comforting-words.html</link>
<pubDate>Sat, 21 Feb 2026 06:06:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2026-02-21-comforting-words.html</guid>
<description>
<![CDATA[<p>
From Gabriel Hanotaux, French minister of foreign affairs from 1894 to 1895:
</p>

<blockquote>
<p>
A few precepts to repeat whenever you are in need of comfort,
</p>

<ol class="org-ol">
<li>Anything can happen.</li>
<li>Everything is forgotten.</li>
<li>Every difficulty can be overcome.</li>
<li>No one understands anything.</li>
<li>If everyone knew what everyone said about everyone, no one would speak to anyone.</li>
</ol>

<p>
Above all things, never be afraid. The enemy who forces you to retreat is himself afraid of you at that very moment.
</p>
</blockquote>

<p>
From <a href="https://www.futilitycloset.com/2026/02/21/noted-29/">Futility Closet</a>.
</p>

<div class="tagline" id="org4a8afe2">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>To Love People As They Are</title>
<link>https://randyridenour.net/posts/2016-06-29-to-love-people-as-they-are.html</link>
<pubDate>Wed, 29 Jun 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-06-29-to-love-people-as-they-are.html</guid>
<description>
<![CDATA[<p>
God of grace,
</p>

<p>
You stand and knock,<br>
not demanding that we come to you,<br>
asking only that we open our hearts<br>
that you may come to us.
</p>

<p>
Help me, likewise,<br>
to love others just as<br>
you have loved me —<br>
</p>

<p>
Where they are,<br>
and as they are,<br>
not how I want<br>
them to be.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org3e06ead">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Sixteenth Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-the-sixteenth-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-sixteenth-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
As I was driving to work this morning, the person behind me honked as I was waiting for a pedestrian to cross the street at a marked crosswalk. I was still fuming and telling myself that I wish I could have told them what I really thought as they pulled into the parking space beside me. Fortunately, I had just heard Mitch Randall&rsquo;s sermon on Daniel in the lions&rsquo; den the day before. With that said, here is the prayer for the week:
</p>

<p>
Lord,
</p>

<p>
It seems like I&rsquo;m always in the lions&rsquo; den.
</p>

<p>
I tell myself that I&rsquo;m Daniel,<br>
a man of faith who was slandered by the envious,<br>
the righteous one who was unjustly attacked by his enemies.
</p>

<p>
I can fool myself, Lord,<br>
but surely I&rsquo;m not fooling you.
</p>

<p>
Most of the time,<br>
I&rsquo;m one of the lions.<br>
Ready at any time to open my mouth<br>
to tear down,<br>
to hurt,<br>
to wound,<br>
to destroy.
</p>

<p>
And when I lack the ability to shut my own mouth,<br>
please shut it for me,<br>
until it&rsquo;s filled with words<br>
that proclaim<br>
justice,<br>
healing,<br>
mercy,<br>
and love.
</p>

<p>
Then, loosen my lips,<br>
so that the stream of mercy and love<br>
can flow from you, through me,<br>
and transform the lions&rsquo; den<br>
into a sanctuary of your grace.
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="org5e13f8c">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Ashes of Our Idols</title>
<link>https://randyridenour.net/posts/2016-02-11-the-ashes-of-our-idols.html</link>
<pubDate>Thu, 11 Feb 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-02-11-the-ashes-of-our-idols.html</guid>
<description>
<![CDATA[<p>
<i>A sermon for Ash Wednesday delivered at NorthHaven Church, Norman, OK on February 10, 2016.</i>
</p>

<blockquote>
<p>
I will sprinkle clean water upon you, and you shall be clean from all your uncleannesses, and from all your idols I will cleanse you. A new heart I will give you, and a new spirit I will put within you; and I will remove from your body the heart of stone and give you a heart of flesh. (Ezekiel 36:25-26)
</p>
</blockquote>

<p>
Every year, a scene is portrayed in churches around the world. Sometimes the choir processes in, sometimes not; but one thing will very likely happen — children will march in waving palm branches, as these words are either sung or shouted, &ldquo;Hosanna! Hosanna in the highest! Blessed is he who comes in the name of the Lord!&rdquo;
</p>

<p>
The day, of course, is Palm Sunday, the day that we commemorate the entry of Jesus into Jerusalem. John records the incident in chapter 12 of his Gospel: the crowd had heard that Jesus was coming to Jerusalem. So, John tells us, they took branches of palm trees and went out to meet Jesus, shouting the very same things that we will hear the children shout in a few weeks. In response, the text says that Jesus found a young donkey and sat on it, a fulfillment of the prophecy in Zechariah 9.
</p>

<p>
Then the story takes a puzzling turn. See verse 20:
</p>

<blockquote>
<p>
Now among those who went up to worship at the festival were some Greeks. They came to Philip, who was from Bethsaida in Galilee, and said to him, &ldquo;Sir, we wish to see Jesus.&rdquo; Philip went and told Andrew; then Andrew and Philip went and told Jesus. Jesus answered them, &ldquo;The hour has come for the Son of Man to be glorified.&rdquo;
</p>
</blockquote>

<p>
Over the next thirteen verses, Jesus talks about how his hour to be glorified has come, and it will be by his death. The scene closes in verse 36, &ldquo;After Jesus had said this, he departed and hid from them.&rdquo;
</p>

<p>
Jesus is asked about some Greeks that want to see him. He doesn&rsquo;t say, &ldquo;Bring them to me,&rdquo; or &ldquo;Not now, I have other things on my mind.&rdquo; He doesn&rsquo;t say anything about the Greeks at all! What&rsquo;s puzzling about this passage is not what Jesus said, but how John introduced it. Why not just say something simple, like &ldquo;Jesus turned to his disciples and said&hellip;.&rdquo; Why talk about the Greeks at all?
</p>

<p>
&lt;!&ndash; It&rsquo;s puzzling — almost as puzzling as my talking about Palm Sunday here on Ash Wednesday, in a sermon that&rsquo;s supposed to be on a passage from Ezekiel about idolatry. &ndash;&gt;
</p>

<p>
Of course, there&rsquo;s another puzzle that we don&rsquo;t really talk about. Why do the people go get palm branches? None of the Gospels bother to explain the significance of the branches. Finally, there&rsquo;s the greatest puzzle of all: how can shouts of praises on Sunday so quickly turn to calls for crucifixion on Friday?
</p>

<p>
The Gospels treat these matters as if they were obvious. Well, they <b>were</b> obvious, at least to their original readers, for they knew their Jewish history.
</p>

<p>
After the death of Alexander the Great in 323 BCE, his vast empire was divided between his Greek generals. The Ptolemies ruled the south from Egypt, and the Seleucids ruled the east from Persia. At first, Judea was under the control of the Ptolemies, who gave the Jews a great deal of religious and cultural freedom. In 198 BCE, the Seleucids defeated the Ptolemies, and took control of Judea.  Part of the Seleucid agenda was the Hellenization of the empire, that is, extending Greek culture throughout the empire. This reached a climax in Israel during the reign of Emperor Antiochus IV Epiphanes when a statue of Zeus was erected in the temple at Jerusalem, and a pig was sacrificed on the altar of God.
</p>

<p>
Soldiers were sent to the towns and villages to enforce the Hellenization. In one town, they were met by a country priest named Mattathias, who was ordered to sacrifice an animal to the altar of an idol. Mattathias refused, killing first a Jewish man who volunteered to perform the sacrifice, then killing the officer who gave the order, and then, with his five sons, rallied the people to revolt. The family became known as the Maccabees, or &ldquo;hammer.&rdquo; Under the leadership of one of the sons, Judas Maccabees, the Jews defeated the Seleucids against overwhelming odds. They then cleansed the temple in 164 BCE, an event which is commemorated by the celebration of Hanukkah.
</p>

<p>
Chapter 13 of the apocryphal book 1 Maccabees records the victorious entrance of the Jews into Jerusalem:
</p>

<blockquote>
<p>
On the twenty- third day of the second month, in the one hundred seventy- first year, the Jews entered it with praise and palm branches, and with harps and cymbals and stringed instruments, and with hymns and songs, because a great enemy had been crushed and removed from Israel.
</p>
</blockquote>

<p>
Judas Maccabees was praised as &ldquo;the savior of Israel.&rdquo;
</p>

<p>
Just 100 years later, Pompey the Great took Jerusalem, and Israel was once again subject to foreign rule, not by Greeks this time, but by Romans. So, it is really no surprise that the people waved palm branches and shouted, for they saw in Jesus a new Judas Maccabees, another hammer to pound the enemies of God. Just in case the reader might miss the point, John brought in some Greeks to make it clear. The people wanted a new savior who would drive out the hated foreign tyrant and restore Israel to its glory, someone to fulfill Zechariah 9:13,
</p>

<blockquote>
<p>
For I have bent Judah as my bow;
I have made Ephraim its arrow.
I will arouse your sons, O Zion,
against your sons, O Greece,
and wield you like a warrior’s sword.
</p>
</blockquote>

<p>
They wanted a warrior king who would ride victoriously into Jerusalem on that great symbol of Ancient Near Eastern power, a chariot pulled by a giant warhorse, a messiah bearing the weapons of destruction.
</p>

<p>
Instead, Jesus chose a donkey.
</p>

<p>
You see, Jesus had this unsettling habit of fulfilling all of the Scriptures, not just the ones that we wanted fulfilled. By choosing the donkey, Jesus forces us to look up from Zechariah 9:13 and see verses 9-10:
</p>

<blockquote>
<p>
Rejoice greatly, O daughter Zion!
Shout aloud, O daughter Jerusalem!
Lo, your king comes to you;
triumphant and victorious is he,
humble and riding on a donkey,
on a colt, the foal of a donkey.
He will cut off the chariot from Ephraim
and the war- horse from Jerusalem;
and the battle bow shall be cut off,
and he shall command peace to the nations;
his dominion shall be from sea to sea,
and from the River to the ends of the earth.
</p>
</blockquote>

<p>
The people wanted a warrior, but instead they got a servant. They dreamt of armies and chariots, instead, they got the cross. The cries of hosanna were not praises to the messiah who was in their midst, but acts of worship to an idol of their own creation. The palm branches that they waved were symbols of their idolatrous devotion to the god that they wanted, a god that could be manipulated to achieve their own goals and satisfy their own desires.
</p>

<p>
Jesus, though, refused to be manipulated. Matthew, Mark, and Luke tell us that, just like the Maccabean revolt, the first thing that Jesus did after entering the city was to cleanse the temple. Unlike the time of the Maccabees, though, the temple had not been defiled by foreigners, but by those who claimed, and probably sincerely believed, that they were doing the work of God.
</p>

<p>
The most dangerous idols, like the most dangerous lies, have an element of truth. Sometimes the most destructive idolatry is the idolatry of our own religion.
</p>

<p>
The Scripture readings for Ash Wednesday confront us again and again  with this question: who is the true object of our worship? Is it God, or is ourselves?
</p>

<p>
Does your Jesus want the very same things you want? Does your Jesus love the same people you love? Does your Jesus hate the same people you hate? Does your Jesus have an agenda that fits easily into your own agenda? Does your Jesus never say anything that makes you uncomfortable? If so, then you may well be following the god you created, not the God who created you.
</p>

<p>
Ezekiel&rsquo;s diagnosis is clear — our true idols are ourselves. The people waved their palm branches, not because they wanted to serve Jesus, but because they wanted Jesus to serve them. The objects of our worship are our own hearts, hearts of stone that are cold, hard, dry, brittle, and dead.
</p>

<p>
The ashes that we use on Ash Wednesday were, just a few hours before, the palm branches from the previous year. Once vibrant and green, but after nearly a year, they are cold, hard, dry, brittle, and dead, perfect symbols of our hearts. The good news of the gospel, though, is that the hard heart can be made soft, dry eyes can again be filled with tears, and a dead faith can certainly be made alive. John&rsquo;s vision in Revelation 7 gives us hope:
</p>

<blockquote>
<p>
After this I looked, and there was a great multitude that no one could count, from every nation, from all tribes and peoples and languages, standing before the throne and before the Lamb, robed in white, with palm branches in their hands.
</p>
</blockquote>

<blockquote>
<p>
They cried out in a loud voice, saying,
"Salvation belongs to our God who is seated on the throne, and to the Lamb!”
</p>
</blockquote>

<p>
God will redeem the palm branches, and God will redeem our hearts.
</p>

<p>
So, we come to this place, this evening, to ask God to change our hearts. We come, not with palm branches, but with the ashes of last year&rsquo;s palm branches. We come, not to shout hosannas, but to hear that we are but dust. We come with the ashes of our idols, and we leave bearing the mark of the Cross — a visible testimony that there is nothing that God cannot transform, not even this heart of stone.
</p>


<div class="tagline" id="org331bf7a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for the New Year</title>
<link>https://randyridenour.net/posts/2017-01-03-prayer-for-the-new-year.html</link>
<pubDate>Tue, 03 Jan 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-01-03-prayer-for-the-new-year.html</guid>
<description>
<![CDATA[<p>
Lord,
</p>

<p>
May I not confuse
</p>

<p>
Naive, blind optimism<br>
with true hope,
</p>

<p>
Self-righteous purity<br>
with true holiness,
</p>

<p>
The voice of my own desires<br>
with the voice of the Lord,
</p>

<p>
Or my own country<br>
with the Kingdom of God.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orge1c1d90">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer in Times of Fear</title>
<link>https://randyridenour.net/posts/2018-02-19-prayer-in-times-of-fear.html</link>
<pubDate>Mon, 19 Feb 2018 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2018-02-19-prayer-in-times-of-fear.html</guid>
<description>
<![CDATA[<p>
God of compassion, In this week of violence and tragedy,<br>
we mourn with those who grieve,<br>
cry with those who weep,<br>
and sit in silence with those in pain. 
</p>

<p>
But what should never happen even once<br>
seems to happen over and over again,<br>
until we are left with nothing<br>
but bloodshot eyes and numb hearts. 
</p>

<p>
Even so, Lord, this is our witness: 
</p>

<p>
You are with us,<br>
and in your presence,<br>
We will not be afraid. 
</p>

<p>
We will not fear the world,<br>
for it is your creation. 
</p>

<p>
We will not fear the future,<br>
for you have already redeemed it. 
</p>

<p>
We will not fear the unknown,<br>
for surely you have seen it. 
</p>

<p>
We will not fear the stranger,<br>
for that person was made in your image,<br>
even as we are made. 
</p>

<p>
We will not fear our weakness,<br>
for you will give us strength. 
</p>

<p>
We will not fear the darkness,<br>
For we carry the light with us. 
</p>

<p>
You are there,<br>
and we are not alone. 
</p>

<p>
We will not be afraid. 
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="org76402c9">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>New Friends</title>
<link>https://randyridenour.net/posts/2015-01-13-new-friends.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-new-friends.html</guid>
<description>
<![CDATA[<p>
We met some very interesting people during our stay at the <a href="http://www.ullikana.com">Ullikana Inn</a> in Bar Harbor, Maine. There were two couples there that, generally with some other couples, return every year. Before dinner, everyone met for some refreshments, during which they told about their usual evening activity at the inn. Evidently, the first time that the couples had been at the inn together, they found themselves in that room making the sort of small talk that people do when they don&rsquo;t really know each other. Then, one asked, &ldquo;What should we talk about?&rdquo; Another answered, &ldquo;How about what happens to you when you die.&rdquo;
</p>

<p>
After telling us this, one turned to me and said, &ldquo;You bring the topic this evening. The only rule is that it has to be controversial.&rdquo; Given that the Slender Man violence had been in the news, I asked if artists and writers had moral obligations that should govern how and what kinds of art are made available to the public. It was a very lively conversation that lasted more than two hours. Friends from different backgrounds, all discussing a controversial topic, with no one taking offense&mdash;it was a wonderful time.
</p>


<div class="tagline" id="org02f426e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Praying for Enemies</title>
<link>https://randyridenour.net/posts/2015-01-20-praying-for-enemies.html</link>
<pubDate>Tue, 20 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-20-praying-for-enemies.html</guid>
<description>
<![CDATA[<p>
Mitch Randall&rsquo;s sermon this Sunday was on loving one&rsquo;s enemies, a notion that I believe is the radically distinctive concept in the ethics of Jesus. This week&rsquo;s prayer:
</p>

<p>
In this deeply divided world,<br>
the best we hope for is<br>
tolerance,<br>
absence of conflict,<br>
live and let live.<br>
</p>

<p>
The path that we have taken<br>
is not the way of Jesus,<br>
who said,<br>
&ldquo;Love your enemies and<br>
pray for those who persecute you.&rdquo;
</p>

<p>
It&rsquo;s not that I don&rsquo;t pray, Lord.
</p>

<p>
I pray<br>
that they would get what&rsquo;s coming to them,<br>
that they would see things my way,<br>
that they would realize how wrong they are.
</p>

<p>
Teach me, Lord,<br>
the difference between<br>
&ldquo;praying for&rdquo;<br>
and merely &ldquo;praying that&hellip;.&rdquo;
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orga14eedc">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for the Joy of Advent</title>
<link>https://randyridenour.net/posts/2015-12-16-prayer-for-the-joy-of-advent.html</link>
<pubDate>Wed, 16 Dec 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-12-16-prayer-for-the-joy-of-advent.html</guid>
<description>
<![CDATA[<p>
God of joy,
</p>

<p>
A cacophony of voices<br>
demand our daily attention,<br>
some calling us to<br>
the bitter resignation<br>
of despair, others, to the<br>
sweet, but empty, vanity<br>
of self-righteousness.
</p>

<p>
Joy, though, speaks with<br>
a quiet and unassuming voice,<br>
much like a babe born<br>
to poor parents and<br>
laid in a manger to sleep.
</p>

<p>
Cleanse my heart<br>
of the cynicism that<br>
blocks the empty noise<br>
of the season,<br>
at the expense<br>
of the possibility<br>
of hearing the joy<br>
of Advent.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org0ee8a9b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Formatting Poetry</title>
<link>https://randyridenour.net/posts/2016-06-08-formatting-poetry.html</link>
<pubDate>Wed, 08 Jun 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-06-08-formatting-poetry.html</guid>
<description>
<![CDATA[<p>
I have been browsing <a href="http://jekyllrb.com/">Jekyll</a> themes lately,
and found a very nice theme for academics, the <a href="http://elotroalex.github.io/ed/documentation/#bibliographies">Ed. Theme</a>. Its main purpose seems to be publishing classic texts and poetry on the web, and it includes some very handy tools.
</p>

<p>
Getting indentation right is a problem with poetry on the web. For example, consider these lines from &ldquo;The Code—Heroics&rdquo; by Robert Frost.
</p>

<p>
Here is the Markdown source:
</p>


<pre class="example" id="org58c54df">
What was there wrong?
		     Something you said just now.
What did I say?
	       About our taking pains.


Even though it contains the proper indentation, it renders like this:

What was there wrong?
		     Something you said just now.
What did I say?
	       About our taking pains.
</pre>

<p>
Now, stripping out extra whitespace is generally a good thing, but I don&rsquo;t want it to happen with poetry. With help from the CSS in the .Ed theme, I can get the indentation right.
</p>


<pre class="example" id="orge54c7e8">
- What was there wrong?
- {:.indent-10}Something you said just now.
- What did I say?
- {:.indent-6}About our taking pains.
{:.poetry}
</pre>


<p>
Ed. sets poetry as an unordered list, with each line as a list item. List style is set to &ldquo;none&rdquo; and the indented lines contain an &ldquo;indent-x&rdquo; attribute. This produces these properly indented lines:
</p>

<pre class="example" id="orga11478c">
- What was there wrong?
- {:.indent-10}Something you said just now.
- What did I say?
- {:.indent-65}About our taking pains.
{:.poetry}
</pre>

<p>
Ed. also contains formatting tools for bibliographies. It&rsquo;s built on <a href="https://github.com/poole/lanyon">Lanyon</a>, the theme that I use, so it was easy for me to just add the CSS that I wanted to my existing site.
</p>


<div class="tagline" id="org5d61a97">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/poetry.html">Poetry</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Emacs Literate Config</title>
<link>https://randyridenour.net/posts/2023-07-31-emacs-literate-config.html</link>
<pubDate>Wed, 02 Aug 2023 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2023-07-31-emacs-literate-config.html</guid>
<description>
<![CDATA[<p>
Having some time this summer, I decided to try to convert my very disorganized Emacs config files into one Org-mode file. I have had a literate config in the past, and it went much more easily than I remember. If you&rsquo;re thinking about creating one, here is what I recommend.
</p>

<p>
First, use the same org file to generate both <code>early-init.el</code> and <code>init.el</code>. The file that a section tangles to is specified in the section&rsquo;s properties. My first top-level section heading is this:
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-level-1">* Early init file</span>
<span class="org-org-drawer">:PROPERTIES:</span>
<span class="org-org-special-keyword">:header-args:</span> <span class="org-org-property-value">:tangle early-init.el</span>
<span class="org-org-drawer">:END:</span>
</code></pre>
</div>

<p>
Anything in this section becomes part of <code>early-init.el</code>. All of the other top-level sections specify to tangle to <code>init.el</code>. Both files are created when the Org file is tangled. Lower-level sections inherit their properties from the top-levels. So, only the top-level sections need the properties specified.
</p>

<p>
I recommend beginning by adding just enough to set up package management and installing <a href="https://github.com/yilkalargaw/org-auto-tangle">Org Auto Tangle</a>, and then use <code>C-c C-v t</code> to tangle the file and generate both <code>early-init.el</code> and <code>init.el</code>. After that, Org Auto Tangle will automatically tangle the file every time that the Org file is saved.
</p>

<p>
My <a href="https://github.com/rlridenour/config-files/blob/master/emacs/README.org">Emacs Config</a> is on Github. View the raw file to see all of the properties and src blocks.
</p>
]]>
</description></item>
<item>
<title>The Idol of the Poll</title>
<link>https://randyridenour.net/posts/2016-11-09-the-idol-of-the--poll.html</link>
<pubDate>Wed, 09 Nov 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-11-09-the-idol-of-the--poll.html</guid>
<description>
<![CDATA[<p>
The 11th Commandment of Election Season: thou shalt not put thy faith in polls, for they are deceptive creatures, full of empty promises and false hope.
</p>




<div class="tagline" id="org188f55a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Making Beautiful Things</title>
<link>https://randyridenour.net/posts/2017-06-26-making-beautiful-things.html</link>
<pubDate>Mon, 26 Jun 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-06-26-making-beautiful-things.html</guid>
<description>
<![CDATA[<p>
Yesterday&rsquo;s worship at <a href="http://www.northhavenchurch.net">NorthHaven Church</a> was planned and led by Autumn Lockett, Josh Lockett, and Chris Canary. I was particularly struck by the words of one of the songs: &ldquo;You make beautiful things out of the dust&hellip; You make beautiful things out of us.&rdquo;
</p>

<p>
Those words were exemplified later when the members of the congregation gathered to each put fingerprint leaves on Josh Lockett&rsquo;s sketch of a tree, fingerprints from the young and the old, from those who have been in the community for years, and from those who have been there for only months. Each contributed to the beauty of the painting, just as each has contributed to the beauty that is the NorthHaven community, diverse individuals connected by branches of relationship to a common trunk that is NorthHaven Church. When I widen my perspective, though, I see that what looks like a trunk is just another branch &mdash; one that is connected to other branches through Jesus Christ, and together we form the tree that is the Church, holy and catholic.
</p>

<p>
May God continue to make beautiful things out of all of us.
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="org2581c61">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Finals Week</title>
<link>https://randyridenour.net/posts/2018-12-10-finals-week.html</link>
<pubDate>Sun, 09 Dec 2018 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2018-12-10-finals-week.html</guid>
<description>
<![CDATA[<p>
Time for the semi-annual benediction for finals week:
</p>

<p>
Dear students, May God calm your anxieties,<br>
refresh your minds,<br>
and honor the faithfulness<br>
you have shown this semester. Remember that God has gifted you<br>
more than you can imagine,<br>
and you are capable of more<br>
than you&rsquo;ve ever dreamed. May the great wisdom of the Father,<br>
the incomparable love of the Son,<br>
and the mighty power of the Spirit<br>
be with you all this week.<br>
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org16cc412">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Surrender</title>
<link>https://randyridenour.net/posts/2010-11-19-jesus-does-not-demand-great-actions-from-us-but.html</link>
<pubDate>Fri, 19 Nov 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-11-19-jesus-does-not-demand-great-actions-from-us-but.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Jesus does not demand great actions from us but simply surrender and gratitude.
</p>
</blockquote>

<p class="bigquote">
St. Therese of Lisieux (1873-1897)
</p>


<div class="tagline" id="org9ee7405">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Sleep Deprivation</title>
<link>https://randyridenour.net/posts/2011-03-17-sleep-deprivation.html</link>
<pubDate>Thu, 17 Mar 2011 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2011-03-17-sleep-deprivation.html</guid>
<description>
<![CDATA[<p>
This is for all my students who send me emails at 3:00 in the morning.
</p>


<p>
From Tony Schwarz&rsquo;s post titled &ldquo;Sleep is More Important than Food&rdquo; at the <a href="http://bit.ly/hC4REa">Harvard Business Review</a>:
</p>


<blockquote>
<p>

</p>


<p>
&hellip;In reality, the research suggests that even small amounts of sleep deprivation take a significant toll on our health, our mood, our cognitive capacity and our productivity.
</p>


<p>
Many of the effects we suffer are invisible. Insufficient sleep, for example, deeply impairs our ability to consolidate and stabilize learning that occurs during the waking day. In other words, it wreaks havoc on our memory.
</p>
</blockquote>

<p>
Sleep deprivation doesn&rsquo;t appear to be the best strategy to achieve a fulfilling educational experience. I have some grading to do, but I think I&rsquo;ll take a nap instead.
</p>



<div class="tagline" id="org3190534">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a>
</p>

</div>
]]>
</description></item>
<item>
<title>A Parents Love</title>
<link>https://randyridenour.net/posts/2015-01-13-a-parents-love.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-a-parents-love.html</guid>
<description>
<![CDATA[<p>
Saturday afternoon, protestors lined the bridge at Rogers Avenue and Interstate 44 in Lawton, Oklahoma. They held signs demanding that the children currently detained for illegal immigration be sent back to their home countries.
</p>

<p>
<a href="http://www.npr.org/2014/07/17/332251674/as-immigration-crisis-grows-a-protest-movement-gains-steam">National Public Radio</a> recently reported on another protest:
</p>

<blockquote>
<p>
This week outside the southern Arizona town of Oracle, Marla and Bruce Bemis — along with several dozen of their neighbors — were lined up along a road waving American flags and holding signs, as patriotic music occasionally played in the background. Word had come that the federal government was planning to bring some of the detainees to a local academy for troubled youth.
</p>

<p>
&ldquo;You know it&rsquo;s a shame that they&rsquo;re kids, if they&rsquo;re kids, but I guess their parents didn&rsquo;t care that much to send them on that journey to here,&rdquo; says Marla Bemis.
</p>
</blockquote>

<p>
This brought to mind the story of Moses:
</p>

<blockquote>
<p>
A man from the family of Levi married a Levite woman. The woman became pregnant and had a son. She saw there was something special about him and hid him. She hid him for three months. When she couldn&rsquo;t hide him any longer she got a little basket–boat made of papyrus, waterproofed it with tar and pitch, and placed the child in it. Then she set it afloat in the reeds at the edge of the Nile. (Exodus 2:1-3)
</p>
</blockquote>



<p>
How much love must it take to send one&rsquo;s child into the unknown? These are parents who care very much indeed.
</p>


<p>
God of love,<br>
<br>
Jesus took a little child<br>
into his arms, and said,<br>
&ldquo;Whoever welcomes a child<br>
in my name, welcomes me.&rdquo;<br>
<br>
There are days<br>
when the Kingdom seems so near,<br>
but others when it seems so far.<br>
<br>
Today, as the death toll rises<br>
in the land where<br>
the Prince of Peace once walked,<br>
help me to honor your words<br>
with more than just my lips.<br>
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org3e69f85">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a> <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Testing Jekyll</title>
<link>https://randyridenour.net/posts/2015-01-16-jekyll-test.html</link>
<pubDate>Thu, 15 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-16-jekyll-test.html</guid>
<description>
<![CDATA[<p>
I&rsquo;m moving everything to Jekyll. This is a quick test post.
</p>


<div class="tagline" id="org489450e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Success</title>
<link>https://randyridenour.net/posts/2018-12-12-success.html</link>
<pubDate>Wed, 12 Dec 2018 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2018-12-12-success.html</guid>
<description>
<![CDATA[<p>
From a student essay this morning:
</p>

<blockquote>
<p>
Somewhere in the semester I realized that everything we have gone over in class isn’t just bologna but is actually pretty applicable to life and how I can approach it.
</p>
</blockquote>

<p>
That&rsquo;s definitely a victory in freshman philosophy.
</p>


<div class="tagline" id="orgb34f633">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Memorial Day Prayer</title>
<link>https://randyridenour.net/posts/2015-01-13-memorial-day-prayer.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-memorial-day-prayer.html</guid>
<description>
<![CDATA[<p>
God of creation,
</p>

<p>
You gave us our first breath,<br>
Raised us up as we took our first feeble steps,<br>
Walked with us through the valleys of darkness,<br>
Comforted us during the times of loss,<br>
And you will welcome us into your arms when we pass from this life.<br>
<br>
Today we remember those who have gone before,<br>
Those who have given their lives for their country&rsquo;s sake,<br>
Those who sacrificed their own comfort so that others may prosper,<br>
And those who have cried out with our Lord from Gethsemane:<br>
&ldquo;Not my will, but thine be done.&rdquo;<br>
<br>
<br>
And so,<br>
Gracious God,<br>
We ask for strength,<br>
So that we may live lives<br>
Worthy of those who have gone before.<br>
<br>
And may you accept the gifts we offer<br>
As a material symbol of a spiritual sacrifice,<br>
the sacrifice of our very lives.<br>
<br>
For they are already yours,<br>
Redeemed by the shed blood and broken body<br>
Of our Lord Jesus Christ,<br>
In whose name we pray.<br>
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgfb43911">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer to See What Could Be</title>
<link>https://randyridenour.net/posts/2017-07-04-prayer-to-see-what-could-be.html</link>
<pubDate>Tue, 04 Jul 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-07-04-prayer-to-see-what-could-be.html</guid>
<description>
<![CDATA[<p>
God of Love,
</p>

<p>
When I see a stranger,<br>
do you see a beloved child?
</p>

<p>
When I see an enemy,<br>
do you see a friend?
</p>

<p>
May I see what is,<br>
and not what I fear might be.
</p>

<p>
Even more,<br>
may I see what could be,<br>
if I were to give even a fraction<br>
of the grace that I have received.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgdd216f0">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>the Fourth Sunday after Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-the-fourth-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-fourth-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
Holy God,
</p>

<p>
For those times<br>
when we hear<br>
the ridicule,<br>
the jeers,<br>
the insults,<br>
and see the looks<br>
of pain and loneliness,<br>
yet stand in uncomfortable silence,<br>
and do nothing,
</p>

<p>
Lord have mercy.
</p>

<p>
And for those times<br>
when we strike back<br>
at those who hurt us,<br>
and start another<br>
cycle of violence<br>
that has no end in sight,
</p>

<p>
Christ have mercy.
</p>

<p>
The powerful rested<br>
easy on their thrones,<br>
when the things of God<br>
were bought and sold<br>
on the marketplace;<br>
for the temple<br>
was their palace,<br>
and its religion<br>
was their power.
</p>

<p>
Lord Jesus,<br>
storm into our lives<br>
as you did the temple;<br>
may the chains be broken,<br>
the tables turned,<br>
and our hearts set free.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org2ed83d3">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Ordination Prayer</title>
<link>https://randyridenour.net/posts/2017-12-09-ordination-prayer.html</link>
<pubDate>Sat, 09 Dec 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-12-09-ordination-prayer.html</guid>
<description>
<![CDATA[<p>
<i>This is a prayer for an ordination service at NorthHaven Church on December 9, 2017</i>
</p>

<p>
God of grace and hope,
</p>

<p>
We confess that, sometimes,<br>
we are like Israel in Egypt,<br>
overwhelmed by life and<br>
tempted to believe that<br>
you have abandoned your people.
</p>

<p>
In this, though, we have hope,<br>
though Israel had forgotten you,<br>
you did not abandon her.<br>
Instead, you called Moses<br>
to be her minister.
</p>

<p>
And so, from the desert<br>
of our dry and parched lives,<br>
you continue to call —<br>
not from a burning bush,<br>
but from within,<br>
from a heart aflame<br>
with passion for<br>
the kingdom of God<br>
and for your people.
</p>

<p>
Today, we give thanks for Kim,<br>
a minister with such a heart,<br>
who, like Moses,<br>
has answered your call.
</p>

<p>
Grant her the vision<br>
to see things as they are,<br>
and the spiritual imagination<br>
to recognize what they could be.
</p>

<p>
May her laughter be joyful;<br>
her anger, righteous;<br>
her compassion, gentle;<br>
her witness, bold;<br>
and her love, deep.
</p>

<p>
Fill her with the<br>
power of the Almighty,<br>
who took what was<br>
formless and void<br>
and created the universe,<br>
then declared it good.
</p>

<p>
May her ministry<br>
be the means by which<br>
you continue to take<br>
what is broken and empty,<br>
and create that which is<br>
new, beautiful and good.
</p>

<p>
In the name of the Father<br>
who gives us our mission,<br>
and of the Son,<br>
whose obedience is our model,<br>
and of the Spirit,<br>
who gives us strength<br>
for our task.
</p>

<p>
Three persons,<br>
one God,<br>
forever and ever.
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="orgb5d968e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Christian Literary Underground</title>
<link>https://randyridenour.net/posts/2010-10-22-the-christian-literary-underground.html</link>
<pubDate>Fri, 22 Oct 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-10-22-the-christian-literary-underground.html</guid>
<description>
<![CDATA[<p>
The November issue of <a href="http://www.sojo.net/index.cfm?action=magazine.article&amp;amp;issue=soj1011&amp;amp;article=the-borderlands-of-publishing"><i>Sojourners</i> Magazine</a> has an interesting article by Julie Polter about the &ldquo;Christian literary underground.&rdquo; There is also a <a href="http://blog.sojo.net/2010/10/21/7-essential-tips-for-fitting-in-with-the-christian-literary-underground-scene-near-you/">slightly tongue-in-cheek post</a> on their website by Betsy Shirley titled &ldquo;7 Essential Tips for Fitting in With the Christian Literary Underground Scene Near You!&rdquo; I&rsquo;m pleased to see that the first essential tip is this:
</p>


<blockquote>
<p>
Be seen reading the grittier classics of Christian literature. Though <i>Blue Like Jazz</i> is an almost irresistible first choice, try for something more subtle, like Flannery O’Connor, J.D. Salinger, or T.S. Eliot. And when all else fails, <i>The Brothers Karamazov</i> is a sure-bet.
</p>
</blockquote>


<p>
I&rsquo;m glad to see that we&rsquo;ve gone for the &ldquo;sure-bet&rdquo; in the Existentialism course this semester.
</p>


<div class="tagline" id="org375ad07">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Open Dired From Shell</title>
<link>https://randyridenour.net/posts/2015-07-08-open-dired-from-shell.html</link>
<pubDate>Wed, 08 Jul 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-07-08-open-dired-from-shell.html</guid>
<description>
<![CDATA[<p>
I was browsing the interwebs this morning, looking for a way to open a Dired buffer of the current finder window. There is a lot on going the other way, from Emacs to the Finder, but nothing from the Finder to Emacs.
I got this from <a href="http://datko.net/2013/07/11/open-emacs-dired-buffer-from-dired/%20">Fortune Datko</a>:
</p>

<p>
Add this to your shell rc file (in my case, .zshrc):
</p>

<pre class="example" id="org98c6a73">
# open a dired window for the current directory
dired() {
    emacsclient -e "(dired \"$PWD\")"
}
</pre>

<p>
Then, assuming that Emacs server is running, type &ldquo;`dired`&rdquo; in the shell, and a Dired
buffer of that directory opens in the current Emacs frame.
</p>

<p>
Just out of curiosity, I wondered what typing &ldquo;`emacsclient -c .`&rdquo; would do. It opens a dired buffer in a new frame. I have a shell script called &ldquo;ec&rdquo; that starts a new emacs client, but it&rsquo;s easy to do it with a zsh alias:
</p>

<pre class="example" id="org32b3ef3">
alias ec="emacsclient -c -a ''"
</pre>

<p>
This starts a server if there is not one already, then opens a new client. So, typing `ec .` should then open a Dired buffer in a new frame.
</p>


<div class="tagline" id="orgcbfc95b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a> <a href="https://randyridenour.net/posts/../tags/shell.html">Shell</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Pelikan on Tradition</title>
<link>https://randyridenour.net/posts/2010-02-15-the-only-alternative-to-tradition-is-bad.html</link>
<pubDate>Sun, 14 Feb 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-02-15-the-only-alternative-to-tradition-is-bad.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
The only alternative to tradition is bad tradition.
</p>
</blockquote>

<p class="bigquote">
Jaroslav Pelikan
</p>


<div class="tagline" id="orga93eadb">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Vonnegut on the Presidency</title>
<link>https://randyridenour.net/posts/2016-11-11-vonnegut-on-the-presidency.html</link>
<pubDate>Fri, 11 Nov 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-11-11-vonnegut-on-the-presidency.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
There is a tragic flaw in our precious Constitution, and I don’t know what can be done to fix it. This is it: Only nut cases want to be president.
</p>
</blockquote>

<p class="bigquote">
<a href="http://inthesetimes.com/article/cold_turkey" class="bigquote">Kurt Vonnegut</a>
</p>


<div class="tagline" id="orgab1b4c8">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Hiding in Gods Own Sanctuary</title>
<link>https://randyridenour.net/posts/2015-09-07-2015-09-06-called-church-prayer.html</link>
<pubDate>Mon, 07 Sep 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-09-07-2015-09-06-called-church-prayer.html</guid>
<description>
<![CDATA[<p>
&ldquo;Where are you?&rdquo;
</p>

<p>
The sound of heartbreak<br>
rang through the garden<br>
as the Lord went out<br>
in the cool of the evening<br>
to meet his children,<br>
who hid in the place<br>
that he gave them,<br>
a place made for<br>
fellowship with God.
</p>

<p>
God still calls,<br>
and we still hide,<br>
in places built for<br>
communion with him,<br>
masking our shame and fear<br>
by doing the good while<br>
failing to hear his call<br>
to something great.
</p>

<p>
Father, forgive us.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org74c3196">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>On Passing Judgment</title>
<link>https://randyridenour.net/posts/2017-09-24-on-passing-judgment.html</link>
<pubDate>Sun, 24 Sep 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-09-24-on-passing-judgment.html</guid>
<description>
<![CDATA[<p>
One of last week&rsquo;s lectionary texts was Romans 14:1-12.
</p>

<blockquote>
<p>
Why do you pass judgment on your brother or sister? Or you, why do you despise your brother or sister? For we will all stand before the judgment seat of God. (Rom. 14:10, NRSV)
</p>
</blockquote>

<p>
God of Grace,
</p>

<p>
In belittling others,<br>
I am made small.
</p>

<p>
By doubting their faith,<br>
I cheapen my own.
</p>

<p>
In my haste to judge,<br>
I am the one condemned.
</p>

<p>
The day will come,<br>
when my time on earth<br>
is finally weighed.
</p>

<p>
If I am found wanting,<br>
let it be for my<br>
failure to judge,<br>
and not for my<br>
failure to love.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org99e3504">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Rahner</title>
<link>https://randyridenour.net/posts/2010-09-27-if-gods-incomprehensibility-does-not-grip-us-in-a.html</link>
<pubDate>Mon, 27 Sep 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-09-27-if-gods-incomprehensibility-does-not-grip-us-in-a.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
If God&rsquo;s incomprehensibility does not grip us in a word, if it does not draw us into our super-luminous darkness, if it does not call us out of the little house of our homely, close-hugged truths&hellip; we have misunderstood the words of Christianity.
</p>
</blockquote>

<p class="bigquote">
Karl Rahner
</p>


<div class="tagline" id="orgd0ddba7">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Insurance Woes</title>
<link>https://randyridenour.net/posts/2019-06-08-insurance-woes.html</link>
<pubDate>Sat, 08 Jun 2019 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2019-06-08-insurance-woes.html</guid>
<description>
<![CDATA[<p>
I have often wondered how people with no insurance survive a serious illness. Now, I&rsquo;m beginning to wonder how people who do have insurance can survive a serious illness. Last week, I had a small surgical procedure to determine if the bladder needed to be removed or not. Yesterday, I got an email from Aetna saying there was a response on a new claim. When I opened the site, there was a flag by the claim saying that additional information was required. When I clicked on that link, there was no description of an requested information, just a statement that, of the $19,768.45 billed by the provider, Aetna would pay $0, and I would pay the remaining $19,768.45. Why have I been paying ever more expensive premiums?
</p>



<div class="tagline" id="orgedc8d17">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Ash Wednesday Prayer</title>
<link>https://randyridenour.net/posts/2015-02-18-ash-wednesday-prayer.html</link>
<pubDate>Wed, 18 Feb 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-02-18-ash-wednesday-prayer.html</guid>
<description>
<![CDATA[<p>
Lord, have mercy,<br>
for I have heard the gentle voice of God,<br>
yet speak to others with words that hurt and destroy.
</p>

<p>
Lord, have mercy,<br>
for I have been given more than I could ever use,<br>
yet refuse to see the needs of those around me.
</p>

<p>
Lord, have mercy,<br>
for you have placed me in positions of power and influence,<br>
yet I use those positions for my own gain, and not in service to your children.
</p>

<p>
Lord, have mercy,<br>
for you have placed me as your steward on this earth,<br>
yet I continue to harm your creation by the choices that I make.
</p>

<p>
Lord, have mercy,<br>
for every breath I take is a gift from you,<br>
yet I focus only on the few meaningless things that I lack.
</p>

<p>
Lord, have mercy,<br>
for I have experienced the power of the Resurrection,<br>
yet my thoughts are often as one who has no hope.
</p>

<p>
Lord, have mercy,<br>
for I have have been set free by the Cross,<br>
yet live as one who is still in bondage.
</p>

<p>
Lord, have mercy on me, a sinner.<br>
</p>

<p>
We who are your children,<br>
in humility and penitence,<br>
now seek your face.
</p>

<p>
Lord, have mercy.
</p>

<p>
<i>Amen</i>
</p>

<blockquote>
<p>
Much more surely then, now that we have been justified by his blood, will we be saved through him from the wrath of God. For if while we were enemies, we were reconciled to God through the death of his Son, much more surely, having been reconciled, will we be saved by his life. But more than that, we even boast in God through our Lord Jesus Christ, through whom we have now received reconciliation.
</p>
</blockquote>

<p>
Romans 5:9-11 (NRSV)
</p>





<div class="tagline" id="org6770849">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Badass Philosophers</title>
<link>https://randyridenour.net/posts/2015-01-13-badass-philosophers.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-badass-philosophers.html</guid>
<description>
<![CDATA[<p>
Best line from a student this week: when I pointed out that women have unfortunately been underrepresented in philosophy, she replied &ldquo;True, but the ones who are there are real badasses.&rdquo; She said that with more than a bit of admiration and pride.
</p>

<p>
Anyone who doubts that should read a bit about Elizabeth Anscombe.
</p>





<div class="tagline" id="orgc807925">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Pizza Dude Ethics</title>
<link>https://randyridenour.net/posts/2010-06-10-pizza-dude-ethics.html</link>
<pubDate>Thu, 10 Jun 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-06-10-pizza-dude-ethics.html</guid>
<description>
<![CDATA[<p>
<a href="http://thisibelieve.org/essay/23/">A great essay.</a>
</p>


<div class="tagline" id="org0ce833a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer Before Traveling</title>
<link>https://randyridenour.net/posts/2016-01-06-prayer-before-travelling.html</link>
<pubDate>Wed, 06 Jan 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-01-06-prayer-before-travelling.html</guid>
<description>
<![CDATA[<p>
Prayer for an evening of frantic packing before a trip to Africa. I&rsquo;ll be teaching philosophy of religion at a Baptist seminary in Ghana for the next two weeks.
</p>

<p>
Lord,
</p>

<p>
If I really need it,<br>
help me to remember to pack it.
</p>

<p>
If I really don&rsquo;t need it,<br>
help me to resist the temptation to take it.
</p>

<p>
And if I need it and forget it,<br>
may it be something I would have lost over there anyway.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgee1d77c">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Emacs From Scratch</title>
<link>https://randyridenour.net/posts/2023-04-16-emacs-from-scratch.html</link>
<pubDate>Sun, 16 Apr 2023 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2023-04-16-emacs-from-scratch.html</guid>
<description>
<![CDATA[<p>
Trying out a new Emacs config from scratch. This is a test of all of my Hugo functions.
</p>
]]>
</description></item>
<item>
<title>Who Is My God?</title>
<link>https://randyridenour.net/posts/2017-03-19-who-is-my-god.html</link>
<pubDate>Sun, 19 Mar 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-03-19-who-is-my-god.html</guid>
<description>
<![CDATA[<p>
Does my God<br>
love only what I love,<br>
and hate only what I hate?
</p>

<p>
If so, then who is my God?
</p>

<p>
Does my God<br>
demand nothing of me<br>
that I don&rsquo;t want to give?
</p>

<p>
If not, then what value is this grace?
</p>

<p>
Lead me away from the<br>
altar of my convenience,<br>
and teach me once again<br>
what it means to love you.
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="org81b4778">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Terry Pratchett on Being a Teacher</title>
<link>https://randyridenour.net/posts/2025-05-22-terry-pratchett-being-teacher.html</link>
<pubDate>Thu, 22 May 2025 06:44:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-05-22-terry-pratchett-being-teacher.html</guid>
<description>
<![CDATA[<p>
I found this on the <a href="https://www.facebook.com/groups/583028159792079">Laughing Librarian</a> Facebook page, so I don&rsquo;t know have the specific source, but it&rsquo;s too good not to share.
</p>

<blockquote>
<p>

</p>

<p>
&ldquo;You sound a very educated man for a barbarian,&rdquo; said Rincewind.
</p>

<p>
&ldquo;I didn&rsquo;t start out a barbarian. I used to be a school teacher. But I decided to give it all up and make a living by the sword.&rdquo;
</p>

<p>
&ldquo;After being a teacher all your life?&rdquo;
</p>

<p>
&ldquo;It did mean a change of perspective, yes.&rdquo;
</p>

<p>
&ldquo;But &hellip; well&hellip; surely &hellip; the privation, the terrible hazards, the daily risk of death&hellip;&rdquo;
</p>

<p>
Mr Saveloy brightened up. &ldquo;Oh, you&rsquo;ve been a teacher, have you?&rdquo;
</p>
</blockquote>


<p class="source">
Terry Pratchett
</p>

<div class="tagline" id="org8cc37f4">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Day is Short</title>
<link>https://randyridenour.net/posts/2015-08-11-the-day-is-short.html</link>
<pubDate>Tue, 11 Aug 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-08-11-the-day-is-short.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
The day is short, and the night so long. Why do you work so hard to get what you don&rsquo;t even want?
</p>
</blockquote>

<p class="bigquote">
Garrison Keillor
</p>


<div class="tagline" id="org8b3e330">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for the New Year</title>
<link>https://randyridenour.net/posts/2016-01-02-prayer-for-the-new-year.html</link>
<pubDate>Sat, 02 Jan 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-01-02-prayer-for-the-new-year.html</guid>
<description>
<![CDATA[<p>
A simple prayer for the new year:
</p>

<p>
God of grace and wisdom<br>
create in me a new desire,<br>
that I may be no more, and no less,<br>
than who you created me to be.<br>
</p>

<p>
For that, dear Lord, is surely enough.<br>
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org9d05fb9">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Courage for Transformation</title>
<link>https://randyridenour.net/posts/2015-07-12-courage-for-transformation.html</link>
<pubDate>Sun, 12 Jul 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-07-12-courage-for-transformation.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
&ldquo;What kind of courage does it take for us to be the people of God who want to see this world transformed?&rdquo;
</p>
</blockquote>

<p class="bigquote">
Mike Bumgarner
</p>


<div class="tagline" id="org1e79cc8">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Luxury of Cheap Melancholy</title>
<link>https://randyridenour.net/posts/2010-02-18-the-luxury-of-cheap-melancholy.html</link>
<pubDate>Thu, 18 Feb 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-02-18-the-luxury-of-cheap-melancholy.html</guid>
<description>
<![CDATA[<p>
Every February, Oklahoma Baptist University celebrates Founders&rsquo; Day with a special chapel service. This year&rsquo;s service was particularly special, commemorating the 100th anniversary of the school&rsquo;s founding. The service included a reenactment of W.P. Blake and G. Lee Phelps kneeling in prayer on the site in Shawnee, Oklahoma that was to become Oklahoma Baptist University.
</p>

<p>
To be honest, I can now remember only a single sentence from either prayer, but it is a sentence that I don&rsquo;t think I will ever forget: <i>&ldquo;Deliver us from the luxury of cheap melancholy.&rdquo;</i>
</p>

<p>
These words may be more relevant now than they were at the time of the founding of OBU. We find ourselves struggling to recover from a recession, embroiled in two wars, worried about the future of the environment, and burdened by spiraling health care costs. Melancholy, or depression, seems to be an unavoidable response. As Phelps said, though, it is both cheap and luxurious; cheap because it costs us nothing, and luxurious because it prevents us from doing what is truly costly. Giving in to the luxury of cheap melancholy is an acceptance of the status quo, an admission that we will simply do nothing.
</p>

<p>
The alternative is to remember who we are and what God has called us to be, people of hope and grace. I was reminded of this as I witnessed a baptism at church on Sunday. In our church, before the baptismal candidate leaves the water, she places a finger in a bowl of salt and then touches the salt to her tongue. She then receives a candle, which she carries out of the baptistry. We who are witnesses are reminded that we too are called to be salt and light, to reject the luxury of cheap melancholy, and go into the world believing that we can, by the grace of God, make things better.
</p>

<p>
May it be so.
</p>


<div class="tagline" id="orgbad305f">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>To Listen</title>
<link>https://randyridenour.net/posts/2011-02-14-the-first-duty-of-love-is-to-listen.html</link>
<pubDate>Mon, 14 Feb 2011 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2011-02-14-the-first-duty-of-love-is-to-listen.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
The first duty of love is to listen.
</p>
</blockquote>

<p class="bigquote">
Paul Tillich
</p>







<div class="tagline" id="orgc01ebe8">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Pentecost</title>
<link>https://randyridenour.net/posts/2016-05-15-prayer-for-pentecost.html</link>
<pubDate>Sun, 15 May 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-05-15-prayer-for-pentecost.html</guid>
<description>
<![CDATA[<p>
God of Pentecost,
</p>

<p>
We seek the burning<br>
bush in the desert<br>
of our existence,<br>
never expecting that<br>
the fire that drew Moses<br>
might fall from heaven<br>
into our very own lives.
</p>

<p>
Holy Spirit, come again<br>
to a fragmented people,<br>
so that we may speak<br>
with one voice of the<br>
unending love of God.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgbc03392">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Brueggemann on the Crisis in the Church</title>
<link>https://randyridenour.net/posts/2017-03-08-brueggemann-on-the-crisis-in-the-church.html</link>
<pubDate>Wed, 08 Mar 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-03-08-brueggemann-on-the-crisis-in-the-church.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
For I believe the crisis in the U.S. church has almost nothing to do with being liberal or conservative; it has everything to do with giving up on the faith and discipline of our Christian baptism and settling for a common, generic U.S. identity that is part patriotism, part consumerism, part violence, and part affluence.
</p>
</blockquote>

<p class="bigquote">
Walter Brueggemann, <i>A Way Other Than Our Own: Devotions for Lent</i>
</p>


<div class="tagline" id="orgca98e7b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>MH17 and Gaza</title>
<link>https://randyridenour.net/posts/2015-01-13-mh17-and-gaza.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-mh17-and-gaza.html</guid>
<description>
<![CDATA[<p>
Today, we learn that 298 people were killed when Malaysian Airlines Flight 117 was shot down over Ukraine. News sources also report that Israel launched a ground operation in Gaza.
</p>

<p>
For all who live in fear, we pray.
</p>

<p>
Christ have mercy.
</p>


<div class="tagline" id="org8aec885">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Go Into the Fray</title>
<link>https://randyridenour.net/posts/2015-01-13-go-into-the-fray.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-go-into-the-fray.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
A philosopher who is not taking part in discussions is like a boxer who never goes into the ring.
</p>
</blockquote>

<p class="bigquote">
Ludwig Wittgenstein
</p>


<div class="tagline" id="orgdecce47">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Workflow with Hugo and Org Mode</title>
<link>https://randyridenour.net/posts/2021-07-14-workflow-with-hugo-and-org-mode.html</link>
<pubDate>Wed, 14 Jul 2021 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2021-07-14-workflow-with-hugo-and-org-mode.html</guid>
<description>
<![CDATA[<p>
Setting up the <a href="https://github.com/kaushalmodi/ox-hugo">Ox-hugo</a> package to use Org mode with Hugo was much easier than I expected. Here is how I configured it, the workflow for posting with Doom Emacs, and some things to keep in mind.
</p>
<section id="outline-container-orge3fc1c4" class="outline-2">
<h2 id="orge3fc1c4">Installation and configuration</h2>
<div class="outline-text-2" id="text-orge3fc1c4">
<p>
I&rsquo;m back to using Doom Emacs, so adding Ox-hugo required nothing more than adding the <code>+hugo</code> flag to <code>:lang org</code> in the init.el file. Look for <code>org</code> in init.el, and change it to <code>(org +hugo)</code>. Ox-hugo has excellent <a href="https://ox-hugo.scripter.co/">documentation</a>, and I configured it almost exactly the way that was suggested. I was skeptical that having a single Org file that contained every blog post was a good idea, but after two days, it seems to be the way to go. I have a file called &ldquo;blog.org&rdquo; in a directory named &ldquo;content-org&rdquo; in my hugo project directory. This file has the following settings at the top:
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-meta-line">#+hugo_base_dir: ~/Sites/blog</span>
<span class="org-org-meta-line">#+seq_todo: TODO DRAFT DONE</span>
<span class="org-org-meta-line">#+hugo_front_matter_format: yaml</span>
<span class="org-org-meta-line">#+hugo_weight: auto</span>
<span class="org-org-meta-line">#+hugo_auto_set_lastmod: t</span>
<span class="org-org-document-info-keyword">#+author:</span> <span class="org-org-document-info">Randy Ridenour</span>
</code></pre>
</div>

<p>
Then, there is a top-level heading called &ldquo;Blog Ideas&rdquo;. All other top-level headings are categories. Each second-level heading will be a post under that particular category.
</p>

<p>
Next, &lt;I copied the Org-capture template and made some small modifications. I changed <code>EXPORT_FILE_NAME</code> to format file names with a date string to match my other post file names. I also included a line with some custom front matter that I usually use, mostly because I know I wouldn&rsquo;t remember how to insert it when I needed i&gt;
</p>

<p>
Here is the template:
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-comment-delimiter">;; </span><span class="org-comment">Populates only the EXPORT_FILE_NAME property in the inserted headline.
</span><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">with-eval-after-load</span> 'org-capture
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">defun</span> <span class="org-function-name">org-hugo-new-subtree-post-capture-template</span> <span class="org-rainbow-delimiters-depth-3">()</span>
    <span class="org-doc">"Returns `</span><span class="org-doc"><span class="org-constant">org-capture</span></span><span class="org-doc">' template string for new Hugo post.
See `</span><span class="org-doc"><span class="org-constant">org-capture-templates</span></span><span class="org-doc">' for more information."</span>
    <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">let*</span> <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-rainbow-delimiters-depth-5">(</span>title <span class="org-rainbow-delimiters-depth-6">(</span>read-from-minibuffer <span class="org-string">"Post Title: "</span><span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span> <span class="org-comment-delimiter">;</span><span class="org-comment">Prompt to enter the post title
</span>           <span class="org-rainbow-delimiters-depth-5">(</span>fname <span class="org-rainbow-delimiters-depth-6">(</span>org-hugo-slug title<span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
      <span class="org-rainbow-delimiters-depth-4">(</span>mapconcat #'identity
                 `<span class="org-rainbow-delimiters-depth-5">(</span>
                   ,<span class="org-rainbow-delimiters-depth-6">(</span>concat <span class="org-string">"* TODO "</span> title<span class="org-rainbow-delimiters-depth-6">)</span>
                   <span class="org-string">":PROPERTIES:"</span>
                   ,<span class="org-rainbow-delimiters-depth-6">(</span>concat <span class="org-string">":EXPORT_FILE_NAME: "</span> <span class="org-rainbow-delimiters-depth-7">(</span>format-time-string <span class="org-string">"%Y%m%d-"</span><span class="org-rainbow-delimiters-depth-7">)</span> fname<span class="org-rainbow-delimiters-depth-6">)</span>
<span class="org-string">":EXPORT_HUGO_CUSTOM_FRONT_MATTER: :highlight true :math false"</span>
                   <span class="org-string">":END:"</span>
                   <span class="org-string">"%?\n"</span><span class="org-rainbow-delimiters-depth-5">)</span>          <span class="org-comment-delimiter">;</span><span class="org-comment">Place the cursor here finally
</span>                 <span class="org-string">"\n"</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>

  <span class="org-rainbow-delimiters-depth-2">(</span>add-to-list 'org-capture-templates
               '<span class="org-rainbow-delimiters-depth-3">(</span><span class="org-string">"h"</span>                <span class="org-comment-delimiter">;</span><span class="org-comment">`</span><span class="org-comment"><span class="org-constant">org-capture</span></span><span class="org-comment">' binding + h
</span>                 <span class="org-string">"Hugo post"</span>
                 entry
                 <span class="org-comment-delimiter">;; </span><span class="org-comment">It is assumed that below file is present in `</span><span class="org-comment"><span class="org-constant">org-directory</span></span><span class="org-comment">'
</span>                 <span class="org-comment-delimiter">;; </span><span class="org-comment">and that it has a "Blog Ideas" heading. It can even be a
</span>                 <span class="org-comment-delimiter">;; </span><span class="org-comment">symlink pointing to the actual location of all-posts.org!
</span>                 <span class="org-rainbow-delimiters-depth-4">(</span>file+olp <span class="org-string">"blog.org"</span> <span class="org-string">"Blog Ideas"</span><span class="org-rainbow-delimiters-depth-4">)</span>
                 <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-keyword">function</span> org-hugo-new-subtree-post-capture-template<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>
</div>
</section>
<section id="outline-container-org8a6d33a" class="outline-2">
<h2 id="org8a6d33a">Workflow</h2>
<div class="outline-text-2" id="text-org8a6d33a">
<p>
<code>C-c n n</code> in Doom opens a hydra for Org-capture. Selecting &ldquo;h&rdquo; prompts for a post title in the minibuffer. Enter the title, press the return key, and a new Org-mode window opens with the file settings from the capture template. Enter the desired text, then press <code>C-c C-c</code> to close the window. The post is filed in the site&rsquo;s Org content file under the Blog Ideas section. When ready, move the cursor to a point in the post, and use org-refile to put it in the category that you would like.
</p>

<p>
Add a file called &ldquo;dir-locals.el&rdquo; to the root level of the hugo site directory that has this content:
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-rainbow-delimiters-depth-2">(</span><span class="org-string">"content-org/"</span>
  . <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-rainbow-delimiters-depth-4">(</span>org-mode . <span class="org-rainbow-delimiters-depth-5">(</span><span class="org-rainbow-delimiters-depth-6">(</span>eval . <span class="org-rainbow-delimiters-depth-7">(</span>org-hugo-auto-export-mode<span class="org-rainbow-delimiters-depth-7">)</span><span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
Then, as you write your posts, you can preview them at localhost:1313 as you edit them; just start the Hugo server in your terminal application like this:
</p>

<div class="org-src-container">
<pre class="src src-bash"><code>hugo server -D --navigateToChanged
</code></pre>
</div>

<p>
Now, every the Org file is saved, it automatically exports the correctly formatted Markdown post to the &ldquo;content/posts&rdquo; directory, and Hugo serves up the changed post in your browser.
</p>

<p>
When the draft is finished, change the <code>TODO</code> flag in the post title to <code>DONE</code>, and the date will be updated.
</p>
</div>
</section>
<section id="outline-container-org6e28f87" class="outline-2">
<h2 id="org6e28f87">Miscellaneous discoveries</h2>
<div class="outline-text-2" id="text-org6e28f87">
<p>
So far, I&rsquo;ve found two things to keep in mind. First, headings in the Markdown files will be one level above the headings in the Org file. So, an H2 in the Org file is the post title, sections of the post have a H3 heading. The three stars in the Org file become two octothorpes in the Markdown file.
</p>

<p>
Second, to specify a CSS class, just put this on the line directly preceding the item needing styling:
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-meta-line">#+attr_html: :class classname</span>
</code></pre>
</div>

<p>
For example, here&rsquo;s how I use my style for philosophical arguments.
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-meta-line">#+attr_html: :class arg</span>
1. First premise
2. Second premise
3. Conclusion
</code></pre>
</div>

<p>
produces this:
</p>

<ol class="org-ol arg">
<li>First premise</li>
<li>Second premise</li>
<li>Conclusion</li>
</ol>
</div>
</section>
<section id="outline-container-org06d8b8f" class="outline-2">
<h2 id="org06d8b8f">Conclusion</h2>
<div class="outline-text-2" id="text-org06d8b8f">
<p>
Ox-hugo works amazingly well for producing well-formed Hugo Goldmark markdown from an Org mode source file. Since I write nearly everything in Org mode, this enables me to easily use the same material for posts, handouts, and other formats.
</p>



<div class="tagline" id="org2b61c4e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
</div>
</section>
]]>
</description></item>
<item>
<title>Gifts Both Great and Small</title>
<link>https://randyridenour.net/posts/2016-01-30-gifts-both-great-and-small.html</link>
<pubDate>Sat, 30 Jan 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-01-30-gifts-both-great-and-small.html</guid>
<description>
<![CDATA[<p>
A prayer prompted by praying with friends in Ghana who pray and give thanks for everything, from resting well through the night to waking up the next morning.
</p>

<p>
Gracious God,
</p>

<p>
As I begin the day,<br>
may I remember<br>
to trust in your grace<br>
for what I need,<br>
no matter how great,<br>
no matter how small.
</p>

<p>
And as I end this day,<br>
may I remember to give thanks<br>
for what I have been given,<br>
no matter how great,<br>
no matter how small.
</p>

<p>
For every good thing<br>
is a gift from you,<br>
and even a small gift<br>
is priceless when received<br>
from the hand of God.
</p>

<p>
Amen
</p>


<div class="tagline" id="orgbb438be">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Christian Witness in Time of War</title>
<link>https://randyridenour.net/posts/2025-07-10-christian-witness-time-war.html</link>
<pubDate>Thu, 10 Jul 2025 06:57:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-07-10-christian-witness-time-war.html</guid>
<description>
<![CDATA[<blockquote>
<p>
Christianity demands more than private values or partisan identity. It requires a public witness. And in a time of war, that witness includes a refusal to allow the state to define righteousness on its terms. When we do that, we are not practicing discipleship—we are participating in civil religion. A Christianity that affirms the state’s wars is not Christianity. It is idolatry.
</p>
</blockquote>

<p class="source">
<a href="https://www.christiancentury.org/features/church-cannot-bless-war" class="source">Stanley Hauerwas and C. Andrew Doyle</a>
</p>

<div class="tagline" id="org04e5f78">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Reading Kierkegaard</title>
<link>https://randyridenour.net/posts/2008-06-18-kierkegaard.html</link>
<pubDate>Wed, 18 Jun 2008 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2008-06-18-kierkegaard.html</guid>
<description>
<![CDATA[<p>
I began reading Kierkegaard&rsquo;s <i>Fear and Trembling</i> yesterday. It didn&rsquo;t take long for me to recall what a friend once said:
</p>

<blockquote class="bigquote">
<p>
Don&rsquo;t read Kierkegaard in the bathroom; you can&rsquo;t concentrate on either job.
</p>
</blockquote>

<p class="bigquote">
Riley Ross
</p>


<div class="tagline" id="org6f8f4f8">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a> <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Hands that Crucify</title>
<link>https://randyridenour.net/posts/2016-11-13-hands-that-crucify.html</link>
<pubDate>Sun, 13 Nov 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-11-13-hands-that-crucify.html</guid>
<description>
<![CDATA[<p>
Lord of all,
</p>

<p>
What are these hands<br>
that they should seize<br>
what is offered as a free gift?
</p>

<p>
What are these hands<br>
that they should grasp<br>
what should be shared?
</p>

<p>
What are these hands<br>
that they should clench in anger<br>
at the thought that you<br>
would ever bless anyone else?
</p>

<p>
What are these hands?
</p>

<p>
Just the hands of one<br>
who would once again<br>
crucify the Christ.
</p>

<p>
A sinner,<br>
lost but for<br>
the grace of God.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgfa5c04b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Tenth Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-the-tenth-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-tenth-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
God of Hope,
</p>

<p>
Open my eyes that I may see the world for what it is,<br>
Open my mind that I may dream of what it could be,<br>
Open my hands that I may, with you, make it so.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org969fed4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Happy Labor Day!</title>
<link>https://randyridenour.net/posts/2009-09-04-happy-labor-day.html</link>
<pubDate>Fri, 04 Sep 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-09-04-happy-labor-day.html</guid>
<description>
<![CDATA[<p>
One of the many lasting consequences of the labor movement of the late 19th century.
</p>



<div class="tagline" id="org21b9748">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Introduction to Existentialism</title>
<link>https://randyridenour.net/posts/2023-04-13-introduction-to-existentialism.html</link>
<pubDate>Thu, 13 Apr 2023 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2023-04-13-introduction-to-existentialism.html</guid>
<description>
<![CDATA[<section id="outline-container-org3add75c" class="outline-2">
<h2 id="org3add75c">Introduction</h2>
<div class="outline-text-2" id="text-org3add75c">
<p>
This seems to be our condition:
</p>

<p>
We find ourselves in a malaise, living lives that are out of our control, superficially connected, but ever so disconnected in the ways that matter. Some go on in blissful ignorance, but those who are more self-reflective, ask, &ldquo;What, if anything, is the meaning of life?&rdquo; In response, they hear either the incoherent noise of the mob, or the deafening silence of the abyss.
</p>

<p>
Existentialism is a branch of philosophy that attempts, if not to provide answers, at least to diagnose the problem.
</p>
</div>
<div id="outline-container-orgbe14ddb" class="outline-3">
<h3 id="orgbe14ddb">Who are the Existentialists?</h3>
<div class="outline-text-3" id="text-orgbe14ddb">
<p>
Saying who counts as an existentialist is more difficult than one might think for two reasons:
</p>

<p>
First, almost all of the thinkers who we associate with existentialism expressly rejected the label at some point. As far as I know, only Karl Jaspers gladly claimed to be an existentialist.
</p>

<p>
Second, who is counted as an existentialist depends on how one defines existentialism, and there&rsquo;s no consensus on a simple definition. I tend to think of existentialism in terms of some themes that tend to go together. It&rsquo;s a broad understanding, so my list of existentialists is pretty long. I&rsquo;m willing to include:
</p>

<ul class="org-ul">
<li>The author of Job</li>
<li>The author of Ecclesiastes</li>
<li>Greek Cynics</li>
<li>Augustine</li>
<li>Pascal</li>
</ul>

<p>
Four names are particularly important. Two from the 19th century are Kierkegaard, a Danish philosopher and theologian, and Nietzsche, a German philosopher. From them, we get the two branches of existentialism, a religious branch and an atheistic branch.
</p>

<p>
The other two names are from the 20th century. First is Martin Heidegger, a German philosopher; second is Jean-Paul Sartre, a French philosopher. All of the proposed lists of existentialists differ somewhat, but everyone agrees that those two belong on the list.
</p>
</div>
</div>
</section>
<section id="outline-container-org740d0c4" class="outline-2">
<h2 id="org740d0c4">What is Existentialism?</h2>
<div class="outline-text-2" id="text-org740d0c4">
<p>
Existentialism is about existence, but existence used in a particular way. It&rsquo;s the kind of existence that is had only by human beings, and distinguishes humans from other creatures. What this is will, I hope, become clear as we look at some common existentialist themes.
</p>
</div>
<div id="outline-container-org10ee6fb" class="outline-3">
<h3 id="org10ee6fb">Alienation</h3>
<div class="outline-text-3" id="text-org10ee6fb">
<p>
The first theme is alienation &mdash; alienation from the world, alienation from others, and alienation from oneself. Like the ancient stoics, Heidegger and Sartre thought that this alienation was a result of false beliefs about the world and about human beings. Existentialist philosophy, then, was therapy, a treatment for existential alienation.
</p>
</div>
</div>
<div id="outline-container-orgc165b7d" class="outline-3">
<h3 id="orgc165b7d">Being-in-the-World</h3>
<div class="outline-text-3" id="text-orgc165b7d">
<p>
One of the causes of this alienation is our failure to understand the nature of human existence and our relation to the world. What is the world? The standard way to answer this question is to list the things that the world contains. As I look around, I see a few things that I might want to put on my list: books, clocks, and classrooms. The problem with these lists, according to the existentialists, is not the lists themselves, it is the pretension to objectivity. 
</p>

<p>
To call something a book, clock, or classroom is to have already taken a stand on what that that thing is <i>for</i>. These are examples of what Heidegger calls things &ldquo;ready-to-hand&rdquo;.
To encounter something as ready-to-hand is to see it as useful for some purpose. They have what Sartre calls &rsquo;being-in-itself,&rsquo; that is, there is something that they are. When I tell you that something is a water-bottle, you know what it is for. I&rsquo;ve described its essence, in a sense. That presupposes my previous encounter with water-bottles, though, hence the famous existentialist dictum, &ldquo;Existence precedes essence.&rdquo;
</p>

<p>
We are beings in the world, but the nature of our being is not like those things that are present or ready at hand. Instead, Heidegger calls the being of humans by a technical term, <i>Dasein</i>, Sartre&rsquo;s phrase is &rsquo;being-for-itself.&rsquo; How does the being that we have differ from the being of the things present-at-hand?
</p>

<p>
We are the only creatures that take a stand on what it means to be human. My dog, as far as I know, never considers what it really means to be a dog. There is no list of goals in her puppy school yearbook that says &ldquo;Becoming more fully dog.&rdquo; We though, have Bible studies on being a man or woman, bookstores sell self-help books on capturing our masculine and feminine identities, and we hear people say things like &ldquo;I&rsquo;m trying to discover myself,&rdquo; or &ldquo;I want to pick the major that is right for me,&rdquo; or &ldquo;I&rsquo;m trying to find the person who is perfect for me.&rdquo; That is one of the sources of our alienation. We want to know what we are right now, but we can&rsquo;t have it, for it assumes that we are being-in-itself, but instead we are being-for-itself.
</p>

<p>
Let me explain. First, contrary to another well-used phrase, we don&rsquo;t simply &ldquo;live in the moment.&rdquo; What we are as individuals, is not something that is static in time. In fact, I can&rsquo;t even, in a sense, think of myself as solely in this moment, because I can&rsquo;t separate my current self from my future self. When you ask, &ldquo;Is this the right person for me?&rdquo; you are really asking, &ldquo;Is this the right person for me, given my plans for the future, and who I want to become.&rdquo; We are, whether we want to or not, always in the process of becoming. Sartre uses the language of facticity and transcendence to refer to the static, and to the becoming.
</p>

<p>
Second, to say that there is something that I am, is often used as an excuse. &ldquo;I couldn&rsquo;t help it, that&rsquo;s just what I am.&rdquo; Sartre was drafted into the French army, was captured by the Germans in 1940, and then spent nine months in a German prisoner of war camp. What he has in mind here is the person who says, I can&rsquo;t go to war, because I am a coward. That&rsquo;s just what I am.
</p>
</div>
</div>
<div id="outline-container-org1bdb1fe" class="outline-3">
<h3 id="org1bdb1fe">Rejection of dualisms</h3>
<div class="outline-text-3" id="text-org1bdb1fe">
<p>
Another characteristic theme of existentialism is the rejection, or dissolution, of dualisms. Here are some examples:
</p>

<ul class="org-ul">
<li>The subjective vs. the objective</li>
<li>Mind vs. body</li>
<li>Reason vs. emotions or passions</li>
<li>Fact vs. value: the things we encounter are ready-to-hand, already imbued with value.</li>
</ul>
</div>
</div>
<div id="outline-container-org7002b4d" class="outline-3">
<h3 id="org7002b4d">The self and others</h3>
<div class="outline-text-3" id="text-org7002b4d">
<p>
We fall into the trap of defining ourselves in terms of others, feeling like we must live up to their expectations, or succumb to their demands, or merely do something because &ldquo;that&rsquo;s what one does.&rdquo;
</p>

<p>
Sartre&rsquo;s masterpiece play, <i>No Exit</i> is the perfect illustration. Three people find themselves locked in a room together in Hell. There are no torture devices. I love the scene when one woman, particularly vain, despairs at the lack of a mirror. Another woman, offers to be her mirror and describe to her what she sees. She says, &ldquo;Hello, what&rsquo;s that &mdash; that nasty red spot at the bottom of your cheek? A pimple?&rdquo; The conclusion is that &ldquo;Hell is other people.&rdquo;
</p>

<p>
Incidentally, this refusal to follow the herd is what Nietzsche admired in Jesus. (People are always surprised when I tell them how much Nietzsche admired Jesus, given his attitude towards Christianity. He said, &ldquo;The only true Christian died on a cross.&rdquo;)
</p>
</div>
</div>
<div id="outline-container-org47ebeb7" class="outline-3">
<h3 id="org47ebeb7">Freedom, anxiety, death, and the absurd</h3>
<div class="outline-text-3" id="text-org47ebeb7">
<p>
These are very interconnected, so I&rsquo;ll treat them as one theme.
</p>

<p>
Anxiety is a pivotal concept in existentialist thought. Kierkegaard wrote a whole book titled <i>The Concept of Anxiety.</i> It&rsquo;s not what we usually understand as anxiety, though. Maybe it&rsquo;s better to use the German word, <i>angst</i>, not because of its meaning in German, but because we English speakers can better treat it as a technical term, or term of art, because that is certainly what it is in existentialism. Angst is the disturbing feeling that we have when confronted with our possibilities. Sartre&rsquo;s preferred example is vertigo, that disturbing feeling one has standing at the edge of a cliff. Sartre points out that it can&rsquo;t be the fear of falling, you&rsquo;re not going to fall. So what is it? It must be the knowledge that you could throw yourself over. We always face a choice, and nothing prevents us from taking the choice. We are free, and that is the source of our anxiety, or as Kierkegaard puts it, despair.
</p>

<p>
This freedom is not the same thing as political freedom. Even people who lack political freedom still have this existential freedom. It&rsquo;s also not what philosophers call metaphysical freedom. It&rsquo;s not about determinism or fatalism. Even if we are determined, we must still choose.
</p>

<p>
We often pretend that we don&rsquo;t have a choice, though. I don&rsquo;t want to go to class, but I have to. (That&rsquo;s something that I hear from both students and colleagues.) That&rsquo;s a fiction that we construct, though, an example of what Sartre calls, bad-faith, a kind of self-deception. The man who refuses to join the resistance because he is a coward is living in another kind of bad-faith. There is always a choice.
</p>

<p>
Angst is a result of our freedom, but only because we face death. Given our mortality, our choices have a weight, or importance, that they otherwise would not have. It&rsquo;s only because we face death that our choices have the importance that they do. Otherwise, we could do everything, and it wouldn&rsquo;t matter what we chose now. There would always be another opportunity. Also, it is only because we are mortal that we are individuals. Sartre&rsquo;s response to the man who claims to be a coward is &ldquo;No, you do not do these things because you are a coward, you are a coward because you do these things.&rdquo; We are defined by our choices. If there were an infinite time in which to make choices, we would conceivably make every possible choice, and therefore there would be no choice that individuated us.
</p>

<p>
Finally, there is the absurd. Sartre claims that death is absurd, in that we rarely get to finish our projects. We are absurd, in that we want to pretend to live in facticity, but cannot deny our transcendence. The world is absurd, because it refuses to be what we want it to be. I must choose, and to choose, I must value some things over another, but there is no reason why I should value what I do. In fact, my values, are a result of my choices &mdash; absurd.
</p>
</div>
</div>
<div id="outline-container-org512ae86" class="outline-3">
<h3 id="org512ae86">Authenticity</h3>
<div class="outline-text-3" id="text-org512ae86">
<p>
Because we have a tendency to conform to the leveled-down roles and identities of the public world, the question of authenticity, of being true to oneself, is central to the existentialists. The idea is formulated in many different ways, in terms of being a &rsquo;knight of faith&rsquo; (Kierkegaard), for example, an &rsquo;overman&rsquo; (Nietzsche), a &rsquo;rebel&rsquo; (Camus), or an &rsquo;authentic individual&rsquo; (Heidegger). In this way, existentialists develop the possibility of living a meaningful, committed, and fulfilling life in the face of absurdity and death. The idea of authenticity serves as a powerful rejoinder to the criticism of existentialism as representing a kind of nihilistic, &rsquo;anything goes&rsquo; philosophy.
</p>
</div>
</div>
<div id="outline-container-org7b0bccf" class="outline-3">
<h3 id="org7b0bccf">Responsibility</h3>
<div class="outline-text-3" id="text-org7b0bccf">
<p>
We are free and responsible for who we are and what we do. No moral absolutes, utilitarian calculations, or natural laws that can explain, justify, or rationalize our actions. As Sartre writes, when it comes to human actions, &ldquo;there are no excuses behind us nor justifications before us.&rdquo;
</p>

<p>
Existentialism does not, in itself, require adherence to any normative moral principle. Yet the argument that existentialism is an amoral philosophy is undeserved. Existentialism centers around the most fundamental of moral questions: ‘ What should I do?&rsquo; and &rsquo;How should I live?&rsquo; Moreover, in acknowledging our fundamental freedom, existentialists recognize that we are not free from taking responsibility for our actions or from cultivating the ideal of freedom for others. To this end, existentialism offers a clear vision of what a valuable or praiseworthy way of life is. It is a life that faces up to the inescapable freedom and vulnerability of the human situation, and takes responsibility for the fact that our actions have consequences and impact the lives of others.
</p>


<div class="tagline" id="orgeb2f7e3">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
</div>
</div>
</section>
]]>
</description></item>
<item>
<title>Prayer for Palm Sunday</title>
<link>https://randyridenour.net/posts/2017-04-08-prayer-for-palm-sunday.html</link>
<pubDate>Sat, 08 Apr 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-04-08-prayer-for-palm-sunday.html</guid>
<description>
<![CDATA[<p>
Holy God,
</p>

<p>
Examine my thoughts<br>
on this Palm Sunday.
</p>

<p>
Does my Jesus&hellip;<br>
</p>

<p>
Want the very same things I want?<br>
Love only the same people I love?<br>
Hate all of the same people I hate?<br>
Have an agenda that fits too easily into my own agenda?<br>
Never say anything that makes me uncomfortable?<br>
</p>

<p>
If so, then what is the object of my worship?<br>
Is it a god of my own creation,<br>
or is it the God who created me?
</p>

<p>
Test my heart, O Lord,<br>
and may my innermost desires<br>
be made transparent,
</p>

<p>
Even to myself.
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="org6be2ade">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Genuine American Exceptionalism</title>
<link>https://randyridenour.net/posts/2025-10-23-genuine-american-exceptionalism.html</link>
<pubDate>Thu, 23 Oct 2025 05:49:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-10-23-genuine-american-exceptionalism.html</guid>
<description>
<![CDATA[<blockquote>
<p>
The United States isn’t exceptional because of our common cultural heritage; we’re exceptional because we’ve been able to cohere despite faiths, traditions and languages that set us apart, and sometimes against one another. The drafters of the Constitution tried to create that cohesion by building a government that could transcend our divisions.
</p>
</blockquote>

<p class="source">
<a href="https://www.nytimes.com/2025/10/21/opinion/trump-diversity-culture-founders.html" class="source">Leighton Woodhouse</a>
</p>

<div class="tagline" id="orgb161a17">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Lent 5</title>
<link>https://randyridenour.net/posts/2015-03-26-prayer-for-lent-5.html</link>
<pubDate>Thu, 26 Mar 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-03-26-prayer-for-lent-5.html</guid>
<description>
<![CDATA[<p>
A woman asked Jesus<br>
to heal her daughter,<br>
and Jesus said nothing.
</p>

<p>
Pilate asked Jesus<br>
to defend himself,<br>
and Jesus said nothing.
</p>

<p>
Yet the girl was healed,<br>
and Jesus went to the cross.
</p>

<p>
Forgive me, Lord,<br>
for the sin of<br>
saying everything but<br>
doing nothing.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org77010e9">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Great Quote From Chaplain School</title>
<link>https://randyridenour.net/posts/2010-04-18-great-quote-from-chaplain-school.html</link>
<pubDate>Sun, 18 Apr 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-04-18-great-quote-from-chaplain-school.html</guid>
<description>
<![CDATA[<p>
From a briefing given by an Army Chaplain about the new Inter-service Chaplain Center that is shared by the Army, Navy, and Air Force:
</p>

<blockquote>
<p>
&ldquo;We didn&rsquo;t foresee the challenges that we would have with a building shared by the three services. Each service has its own customs, traditions, and even language. For example, we had to order three different signs for the restrooms - one that said &lsquo;Latrine&rsquo; for the Army, &lsquo;Head&rsquo; for the Navy, and &lsquo;Powder Room&rsquo; for the Air Force.&rdquo;
</p>
</blockquote>


<div class="tagline" id="org7d2a128">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/army.html">Army</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Styled Pages in Canvas</title>
<link>https://randyridenour.net/posts/2021-06-28-styled-pages-in-canvas.html</link>
<pubDate>Tue, 29 Jun 2021 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2021-06-28-styled-pages-in-canvas.html</guid>
<description>
<![CDATA[<p>
My <a href="https://randyridenour.net/posts/2019-01-08-arguments-html.html">method</a> of formatting philosophical arguments in HTML works fine when writing web pages on my own site, but not so well when I don&rsquo;t have access to the site&rsquo;s CSS, or so I thought. I tell students to format arguments in what is usually called &ldquo;standard form&rdquo; &mdash; a list with numbered premises and a line separating the premises from the conclusion. So, it should look like this:
</p>

<ol class="org-ol arg">
<li>First premise</li>
<li>Second premise</li>
<li>Conclusion</li>
</ol>

<p>
This is simple to do in LaTeX with this:
</p>

<div class="org-src-container">
<pre class="src src-tex"><code><span class="org-font-latex-sedate"><span class="org-keyword">\begin</span></span>{<span class="org-function-name">enumerate</span>}
<span class="org-font-latex-sedate"><span class="org-keyword">\item</span></span> First Premise
<span class="org-font-latex-sedate"><span class="org-keyword">\item</span></span> <span class="org-font-latex-sedate"><span class="org-keyword">\underline</span></span>{<span class="org-font-latex-underline">Last Premise</span>}
<span class="org-font-latex-sedate"><span class="org-keyword">\item</span></span> [] Conclusion
<span class="org-font-latex-sedate"><span class="org-keyword">\end</span></span>{<span class="org-function-name">enumerate</span>}
</code></pre>
</div>

<p>
As I explained <a href="https://randyridenour.net/posts/2019-01-08-arguments-html.html">earlier</a>, it&rsquo;s also easy to in HTML by declaring a CSS class. Unfortunately, I see nowhere in Canvas, the learning management system used by our university, to put an external style sheet. So, my options seemed to be, first, to put the premises in a list and the conclusion on a separate line following the list. That would produce something like this:
</p>

<div class="org-src-container">
<pre class="src src-html"><code>&lt;<span class="org-function-name">ol</span>&gt;
    &lt;<span class="org-function-name">li</span>&gt;First premise&lt;/<span class="org-function-name">li</span>&gt;
    &lt;<span class="org-function-name">li</span>&gt;&lt;<span class="org-function-name">u</span>&gt;<span class="org-underline">Second premise</span>&lt;/<span class="org-function-name">u</span>&gt;&lt;/<span class="org-function-name">li</span>&gt;
&lt;/<span class="org-function-name">ol</span>&gt;
</code></pre>
</div>



<p>
Conclusion
</p>

<p>
The premises are fine, but the conclusion is a new paragraph. A better option would be to put the conclusion as a numbered item in the list:
</p>

<div class="org-src-container">
<pre class="src src-html"><code>&lt;<span class="org-function-name">ol</span>&gt;
&lt;<span class="org-function-name">li</span>&gt;First premise&lt;/<span class="org-function-name">li</span>&gt;
&lt;<span class="org-function-name">li</span>&gt;&lt;<span class="org-function-name">u</span>&gt;<span class="org-underline">Second premise</span>&lt;/<span class="org-function-name">u</span>&gt;&lt;/<span class="org-function-name">li</span>&gt;
&lt;<span class="org-function-name">li</span>&gt;Conclusion&lt;/<span class="org-function-name">li</span>&gt;
&lt;/<span class="org-function-name">ol</span>&gt;
</code></pre>
</div>


<p>
This looks better, although I don&rsquo;t really like the separation between the list items. Unfortunately, since the conclusion is also numbered, it&rsquo;s easy to mistake the conclusion for another premise.
</p>

<p>
The best option seemed to be to produce handouts as PDF&rsquo;s with LaTeX. They would be formatted correctly, but difficult to read on small mobile devices. Still, there had to be a better way. Pages in Canvas are just HTML documents, although the rich text editor hides the code from most users. There is an option to use an HTML editor when editing a page, though. My first thought was to reference an external style sheet in a document head in the usual way, like this:
</p>

<div class="org-src-container">
<pre class="src src-html"><code>&lt;<span class="org-keyword">!doctype</span> html&gt;
&lt;<span class="org-function-name">html</span>&gt;
        &lt;<span class="org-function-name">head</span>&gt;
                &lt;<span class="org-function-name">link</span> <span class="org-variable-name">rel</span>=<span class="org-string">"stylesheet"</span> <span class="org-variable-name">href</span>=<span class="org-string">"mystyle.css"</span>&gt;
                &lt;<span class="org-function-name">meta</span> <span class="org-variable-name">charset</span>=<span class="org-string">"utf-8"</span> /&gt;
        &lt;/<span class="org-function-name">head</span>&gt;
        &lt;<span class="org-function-name">body</span>&gt;
                &lt;<span class="org-function-name">ol</span> <span class="org-variable-name">class</span>=<span class="org-string">"arg"</span>&gt;
                        &lt;<span class="org-function-name">li</span>&gt;First premise&lt;/<span class="org-function-name">li</span>&gt;
                        &lt;<span class="org-function-name">li</span>&gt;Second premise&lt;/<span class="org-function-name">li</span>&gt;
                        &lt;<span class="org-function-name">li</span>&gt;Conclusion&lt;/<span class="org-function-name">li</span>&gt;
                &lt;/<span class="org-function-name">ol</span>&gt;
        &lt;/<span class="org-function-name">body</span>&gt;
&lt;/<span class="org-function-name">html</span>&gt;
</code></pre>
</div>

<p>
That would have been nice and simple, if it had worked. I then tried internal CSS:
</p>

<div class="org-src-container">
<pre class="src src-html"><code>&lt;<span class="org-keyword">!doctype</span> html&gt;
&lt;<span class="org-function-name">html</span>&gt;
        &lt;<span class="org-function-name">head</span>&gt;
                &lt;<span class="org-function-name">meta</span> <span class="org-variable-name">charset</span>=<span class="org-string">"utf-8"</span> /&gt;
                &lt;<span class="org-function-name">style</span>&gt;
                 .arg li:last-child {list-style: none;}
                 .arg li:nth-last-child(2) {text-decoration: underline;}
                 .arg li {margin: 0px;}
                &lt;/<span class="org-function-name">style</span>&gt;
        &lt;/<span class="org-function-name">head</span>&gt;
        &lt;<span class="org-function-name">body</span>&gt;
                &lt;<span class="org-function-name">ol</span> <span class="org-variable-name">class</span>=<span class="org-string">"arg"</span>&gt;
                        &lt;<span class="org-function-name">li</span>&gt;First premise&lt;/<span class="org-function-name">li</span>&gt;
                        &lt;<span class="org-function-name">li</span>&gt;Second premise&lt;/<span class="org-function-name">li</span>&gt;
                        &lt;<span class="org-function-name">li</span>&gt;Conclusion&lt;/<span class="org-function-name">li</span>&gt;
                &lt;/<span class="org-function-name">ol</span>&gt;
        &lt;/<span class="org-function-name">body</span>&gt;
&lt;/<span class="org-function-name">html</span>&gt;
</code></pre>
</div>

<p>
Success! That is, until I clicked &ldquo;Edit&rdquo; again, and Canvas stripped away everything outside the body tags. Finally, I tried inline CSS:
</p>

<div class="org-src-container">
<pre class="src src-html"><code>&lt;<span class="org-function-name">ol</span> <span class="org-variable-name">class</span>=<span class="org-string">"arg"</span>&gt;
        &lt;<span class="org-function-name">li</span> <span class="org-variable-name">style</span>=<span class="org-string">"margin: 0px;"</span>&gt;First premise&lt;/<span class="org-function-name">li</span>&gt;
        &lt;<span class="org-function-name">li</span> <span class="org-variable-name">style</span>=<span class="org-string">"margin: 0px; text-decoration: underline;"</span>&gt;Second premise&lt;/<span class="org-function-name">li</span>&gt;
        &lt;<span class="org-function-name">li</span> <span class="org-variable-name">style</span>=<span class="org-string">"margin: 0px; list-style: none;"</span>&gt;Conclusion&lt;/<span class="org-function-name">li</span>&gt;
&lt;/<span class="org-function-name">ol</span>&gt;
</code></pre>
</div>

<p>
That finally worked. Unfortunately, it meant that the CSS had to be explicitly declared on every item that needed styling, every time that the item was used on the page. Then, I discovered CSS Inliners. An inliner is a tool that takes externally styled HTML as input, and outputs HTML with all inline CSS. Evidently, these are used by people who want to control the formatting of their HTML emails. <a href="https://templates.mailchimp.com/resources/inline-css/">Mailchimp&rsquo;s Inline Tool</a> works well. I&rsquo;m using an inliner tool called &ldquo;Juice&rdquo; that can be installed using the Node package manager. That way, I can automate the process with a simple shell script. Here&rsquo;s the function I use in <a href="https://templates.mailchimp.com/resources/inline-css/">fish</a>:
</p>

<div class="org-src-container">
<pre class="src src-shell"><code><span class="org-keyword">function</span> <span class="org-function-name">canvas</span>
        juice canvas.html canvas.html
        find . -type f -name <span class="org-string">"canvas.html"</span> -print0 | xargs -0 sed -i <span class="org-string">''</span> -e <span class="org-string">'s/body&gt;/div&gt;/g'</span>
        pbcopy &lt; <span class="org-string">"canvas.html"</span>
        rm canvas.html
end
</code></pre>
</div>

<p>
Line 2 runs the inliner on a file named &ldquo;canvas.html&rdquo; and overwrites that file. Line 3 changes the body tags to div tags, which prevents Canvas from deleting any text outside the body tags. Finally, line 3 copies the resulting file to the clipboard, ready to be pasted into the Canvas HTML editor, and line 4 then deletes the HTML file. I delete the HTML file, because, since I use Emacs, the handouts themselves are written in Org mode. So, any changes are made to the Org document, which would then need to be exported again to HTML. The Org document header contains these lines:
</p>

<div class="org-src-container">
<pre class="src src-orgmode"><code>#+AUTHOR: Randy Ridenour
#+LANGUAGE: en-us
#+EXPORT_FILE_NAME: canvas.html
#+HTML_DOCTYPE: html5
#+OPTIONS: toc:nil
#+OPTIONS: html-style:nil
#+HTML_HEAD: &lt;link rel="stylesheet" type="text/css" href="https://randyridenour.net/css/canvas.css"/&gt;
</code></pre>
</div>

<p>
Line 3 ensures that the output file is named <code>canvas.html</code>. That makes the shell script easier to write, and it doesn&rsquo;t need a unique name since it will just be deleted immediately after being copied to the clipboard. Line 5 prevents a table of contents from being generated. If the handout is long enough to warrant a TOC, then just change that to <code>toc:true</code>. Line 6 prevents the Org exporter from adding its usual CSS, and line 7 adds the reference to an external stylesheet located on my personal website.
</p>

<p>
Everything is tied together with a very simple Emacs function:
</p>

<div class="org-src-container">
<pre class="src src-elisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">canvas-copy</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-doc">"Copy html for canvas pages"</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>org-html-export-to-html<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>shell-command <span class="org-string">"canvas"</span><span class="org-rainbow-delimiters-depth-2">)</span>
<span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>


<div class="tagline" id="org14df46c">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Rise of Fake News</title>
<link>https://randyridenour.net/posts/2016-12-03-the-rise-of-fake-news.html</link>
<pubDate>Sat, 03 Dec 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-12-03-the-rise-of-fake-news.html</guid>
<description>
<![CDATA[<p>
NPR has a fascinating, if not troubling, <a href="http://www.npr.org/sections/alltechconsidered/2016/11/23/503146770/npr-finds-the-head-of-a-covert-fake-news-operation-in-the-suburbs">interview</a> with a creator of various fake news sites that began to profilerate during the 2016 presidential election. This part of the interview was particularly telling:
</p>

<blockquote>
<p>
Well, this isn&rsquo;t just a Trump-supporter problem. This is a right-wing issue. Sarah Palin&rsquo;s famous blasting of the lamestream media is kind of record and testament to the rise of these kinds of people. The post-fact era is what I would refer to it as. This isn&rsquo;t something that started with Trump. This is something that&rsquo;s been in the works for a while. His whole campaign was this thing of discrediting mainstream media sources, which is one of those dog whistles to his supporters. When we were coming up with headlines it&rsquo;s always kind of about the red meat. Trump really got into the red meat. He knew who his base was. He knew how to feed them a constant diet of this red meat.
</p>

<p>
We&rsquo;ve tried to do similar things to liberals. It just has never worked, it never takes off. You&rsquo;ll get debunked within the first two comments and then the whole thing just kind of fizzles out.
</p>
</blockquote>


<div class="tagline" id="org7f87503">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/critical-thinking.html">Critical-Thinking</a> <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Love as Art</title>
<link>https://randyridenour.net/posts/2015-05-25-love-as-art.html</link>
<pubDate>Mon, 25 May 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-05-25-love-as-art.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
We will make love an art and we will love like artists.
</p>
</blockquote>

<p class="bigquote">
Marianne Williamson
</p>


<div class="tagline" id="org52b7dcf">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Ethics of War Handout</title>
<link>https://randyridenour.net/posts/2017-11-30-ethics-of-war-handout.html</link>
<pubDate>Thu, 30 Nov 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-11-30-ethics-of-war-handout.html</guid>
<description>
<![CDATA[<p>
These are some concepts and terms used in a presentation on the ethics of war, given at Oklahoma Baptist University on December 1, 2017.
</p>
<section id="outline-container-org962e3a4" class="outline-2">
<h2 id="org962e3a4">Pacifism</h2>
<div class="outline-text-2" id="text-org962e3a4">
<dl class="org-dl">
<dt>Consequentialist Pacifism:</dt><dd>Although war is not intrinsically wrong, the benefits of war are always outweighed by the costs.</dd>
<dt>Deontological Pacifism:</dt><dd>War is always intrinsically wrong, regardless of its consequences.</dd>
</dl>
</div>
</section>
<section id="outline-container-orgf4a59bb" class="outline-2">
<h2 id="orgf4a59bb">Doctrine of Double Effect</h2>
<div class="outline-text-2" id="text-orgf4a59bb">
<p>
War could be permissible, even if we know that innocent lives will be lost, if
</p>

<ol class="org-ol">
<li>Taking innocent life is not the reason that we go to war,</li>
<li>The lives that are saved are proportionally greater than the lives that will be lost,</li>
<li>Taking innocent life is not the means to saving lives, and</li>
<li>Saving lives is otherwise permissible.</li>
</ol>
</div>
</section>
<section id="outline-container-org6f570d9" class="outline-2">
<h2 id="org6f570d9">Just War</h2>
<div class="outline-text-2" id="text-org6f570d9">
<dl class="org-dl">
<dt>Jus ad bellum:</dt><dd>Conditions that determine when a state can justly go to war.</dd>
<dt>Jus in bello:</dt><dd>Conditions that specify how a war must be fought</dd>
<dt>Jus post bellum:</dt><dd>Conditions that determine when one can justly end hostilities.</dd>
</dl>
</div>
<div id="outline-container-org5d6b1ec" class="outline-3">
<h3 id="org5d6b1ec">Jus ad bellum</h3>
<div class="outline-text-3" id="text-org5d6b1ec">
<ul class="org-ul">
<li>Just cause</li>
<li>Right intention</li>
<li>Proper authority/declaration</li>
<li>Last resort</li>
<li>Probability of success</li>
<li>Proportionality</li>
</ul>
</div>
</div>
<div id="outline-container-orgc7ab2b7" class="outline-3">
<h3 id="orgc7ab2b7">Jus in bello</h3>
<div class="outline-text-3" id="text-orgc7ab2b7">
<ul class="org-ul">
<li>Obey international law</li>
<li>Discrimination</li>
<li>Proportionality</li>
<li>Humane treatment of POW’s</li>
<li>No means <i>mala in se</i></li>
</ul>
</div>
</div>
<div id="outline-container-org77bc58c" class="outline-3">
<h3 id="org77bc58c">Jus post bellum</h3>
<div class="outline-text-3" id="text-org77bc58c">
<ul class="org-ul">
<li>Just cause</li>
<li>Right intention</li>
<li>Discrimination</li>
<li>Proportionality</li>
<li>No reprisals</li>
</ul>
</div>
</div>
</section>
<section id="outline-container-org1858384" class="outline-2">
<h2 id="org1858384">Just Peacemaking</h2>
<div class="outline-text-2" id="text-org1858384">
<p>
Ten principles of just peacemaking:<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>

<ol class="org-ol">
<li>Support nonviolent direct action.</li>
<li>Take independent initiatives to reduce threat.</li>
<li>Use cooperative conflict resolution.</li>
<li>Acknowledge responsibility for conflict and injustice and seek repentance and forgiveness.</li>
<li>Advance democracy, human rights, and religious liberty.</li>
<li>Foster just and sustainable economic development.</li>
<li>Work with emerging cooperative forces in the international system.</li>
<li>Strengthen the United Nations and international efforts for cooperation and human rights.</li>
<li>Reduce offensive weapons and weapons trade.</li>
<li>Encourage grassroots peacemaking groups and voluntary associations.</li>
</ol>


<div class="tagline" id="orgf971f35">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a> <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
</div>
</section>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
From <i>Just Peacemaking: Ten Practices for Abolishing War</i>, 2d ed., edited by Glen Stassen (Pilgrim Press, 2004).
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Holy Week</title>
<link>https://randyridenour.net/posts/2015-01-13-holy-week.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-holy-week.html</guid>
<description>
<![CDATA[<p>
What is it like<br>
to burn,<br>
but never burn up;<br>
to endure the pain<br>
of the flame,<br>
but never know<br>
the relief of destruction?<br>
<br>
With no hope for the future,<br>
and no memory of their past,<br>
your people endured<br>
the burden of slavery;<br>
people who burn,<br>
but never burn up.<br>
<br>
Then Moses heard a voice,<br>
saying,<br>
<br>
&ldquo;I see their misery;<br>
I hear their cries;<br>
indeed, I know their sufferings.<br>
Take off your shoes,<br>
for you stand on holy ground.&rdquo;<br>
<br>
Father, we confess<br>
that we are not like you.<br>
We see the suffering,<br>
we hear the cries,<br>
yet we do not feel the pain.<br>
<br>
Open our eyes this week<br>
to the suffering<br>
of your world,<br>
and open our ears to the<br>
voice that cries from the cross,<br>
<br>
May we remove our shoes,<br>
for we stand with those who suffer,<br>
in the shadow of the God who suffers with them.<br>
<br>
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgd0e73c3">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Political Engagement — a Prayer</title>
<link>https://randyridenour.net/posts/2017-01-30-political-engagement--a-prayer.html</link>
<pubDate>Mon, 30 Jan 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-01-30-political-engagement--a-prayer.html</guid>
<description>
<![CDATA[<p>
Lord, hear my prayer.
</p>

<p>
For saying that something needs to be done<br>
while refusing to do anything myself,<br>
</p>

<p>
<i>Lord, have mercy.</i>
</p>

<p>
For believing that cries of outrage<br>
were the same as acts of love,
</p>

<p>
<i>Lord, have mercy.</i>
</p>

<p>
For letting my own ego keep me from<br>
reaching out to those with whom I disagree.
</p>

<p>
<i>Lord, have mercy.</i>
</p>

<p>
For pretending that loving humanity<br>
was the same as loving my neighbor,
</p>

<p>
<i>Lord, have mercy.</i>
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org284d3ab">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Tradition and Bad Tradition</title>
<link>https://randyridenour.net/posts/2010-02-15-tradition-and-bad-tradition.html</link>
<pubDate>Mon, 15 Feb 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-02-15-tradition-and-bad-tradition.html</guid>
<description>
<![CDATA[<p>
Recently, I posted a quote on the <a href="http://rlridenour.tumblr.com/">Tumblr</a> page from Jaroslav Pelikan: &ldquo;The only alternative to tradition is bad tradition.&rdquo; At the time, I realized it needed some explanation, but posted it anyway. Some comments show that the quote is meaningless without some context.
</p>

<p>
John Mouracade pointed out that it looks like a false dilemma. A false dilemma is a fallacy committed when one asserts that at least one of two different alternatives must be true, but ignores other alternatives that might also be true. Now, if Pelikan meant to say that the only alternative to <i>good</i> tradition is bad tradition, then it&rsquo;s clearly a false dilemma. Surely, some tradition is neither good nor bad. Pelikan didn&rsquo;t say that, though. He said that the only alternative to tradition (unqualified) is <i>bad tradition</i>.
</p>

<p>
Is that claim a false dilemma? On the surface it looks like it is. The claim is that one is either bound by tradition or by bad tradition. What about breaking from tradition completely? Surely that&rsquo;s an option. Pelikan has asserted two alternatives and ignored a third.
</p>

<p>
Of course, it were a simple logical fallacy, the claim wouldn&rsquo;t be very interesting (and Pelikan probably wouldn&rsquo;t have deserved that prestigious chair at Yale!). Notice that Pelikan has not asserted that one of two different alternatives must be true. Since every instance of bad tradition is an instance of tradition, they are not two different things. Instead, he has asserted simply that there is no escaping tradition. That may be false, but it&rsquo;s not a false dilemma. If it were a false dilemma, then every false assertion commits the fallacy of a false dilemma. To say that either all roses are red or all roses are red is simply to say that all roses are red.
</p>

<p>
In the interview that I quote from (an episode of Public Radio&rsquo;s <a href="http://speakingoffaith.publicradio.org/programs/pelikan//"><i>Speaking of Faith</i></a>), Pelikan is discussing the relationship of belief and church tradition. His claim is directed toward those who deny that tradition should play any role in our belief. A church could decide that tradition should play no role in the context of belief, or &ldquo;We don&rsquo;t let tradition determine what we believe, we decide ourselves.&rdquo; Does this constitute an escape from tradition? In a sense, yes, but it really just constitutes the establishment of a new tradition. &ldquo;It is our tradition not to pay any attention to past traditions&hellip;.&rdquo;
</p>

<p>
It is best to intentionally critically examine one&rsquo;s tradition and keep the best parts of that tradition. There are two other likely alternatives, one is a break with past tradition that simply establishes a new tradition. The other is one that continues to hold on to the less desirable components of past tradition. Neither are likely to result in the best outcome. The latter keeps the things that we should be breaking from, while the former breaks from things that we should be retaining. So, indeed, the only alternative to tradition is bad tradition.
</p>

<p>
For philosophers, that means we shouldn&rsquo;t stop teaching Plato and Aristotle. For Baptists, it means that we ignore the study of Baptist history at our peril. I guess the moral of the story is this: if you are a religion major and one of my advisees, don&rsquo;t ask to be excused from that Baptist History requirement. Keep in mind, though, there&rsquo;s no Baptist History requirement for a philosophy major.
</p>


<div class="tagline" id="org25d45ae">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Strength Enough?</title>
<link>https://randyridenour.net/posts/2015-07-12-strength-enough.html</link>
<pubDate>Sun, 12 Jul 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-07-12-strength-enough.html</guid>
<description>
<![CDATA[<p>
Mike Bumgarner quoted part of this passage in a sermon this morning. It is worth reflecting on:
</p>

<blockquote>
<p>
This is where a tremendous decision takes place: whether we Christians have enough strength to witness before the world that we are not dreamers with our heads in the clouds&hellip; that our faith really is not opium that keeps us content within an unjust world. Instead, and precisely because our minds are set on things above, we are that much more stubborn and purposeful in protesting here on earth&hellip; Does it have to be that Christianity, which began as immensely revolutionary, now has to remain conservative for all time? That every new movement has to blaze its path without the church, and that the church always takes twenty years to see what has actually happened? If it really must be so, then we must not be surprised when, for our church as well, times come when the blood of martyrs will be demanded. But this blood if we truly have the courage and honour and loyalty to shed it, will not be so innocent and shining as that of the first witnesses. Our blood will be overlaid with our own great guilt.
</p>
</blockquote>

<p class="source">
Dietrich Bonhoeffer, <i>DBW</i>, Vol. 11, 446.
</p>


<div class="tagline" id="orgbdc668e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for the Fourth Sunday of Advent</title>
<link>https://randyridenour.net/posts/2017-12-24-prayer-for-the-fourth-sunday-of-advent.html</link>
<pubDate>Sun, 24 Dec 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-12-24-prayer-for-the-fourth-sunday-of-advent.html</guid>
<description>
<![CDATA[<p>
A prayer for Mitch Randall’s last Sunday as pastor of NorthHaven Church, before he takes his new position as executive director of the Baptist Center for Ethics.
</p>

<p>
God of peace and joy,
</p>

<p>
For centuries,<br>
Israel anticipated<br>
the coming of the Messiah;<br>
and as one expectation<br>
was fulfilled,<br>
another was born,<br>
for we still long<br>
for the day when<br>
that same Messiah<br>
will come again.
</p>

<p>
Christmas is still a day<br>
when old dreams are fulfilled,<br>
and new dreams are born.
</p>

<p>
We give thanks for what<br>
this church has become<br>
in the years that Mitch<br>
has been with us:
</p>

<p>
For those who have<br>
been rejected,<br>
it is a place to feel welcome.
</p>

<p>
For those who have<br>
felt constrained,<br>
a place to be free.
</p>

<p>
For those whose gifts<br>
have been denied,<br>
a place to serve.
</p>

<p>
And so it is fitting<br>
that at Christmas<br>
We share with the world.<br>
this gift that we have received,
</p>

<p>
And may we, through our<br>
words, actions, and gifts,<br>
declare to the world<br>
that there is still<br>
good news of glad tidings,<br>
for all people, everywhere.
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="org42b8bc4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>A Chaplain's Ultimate Sacrifice</title>
<link>https://randyridenour.net/posts/2010-12-03-a-chaplains-ultimate-sacrifice.html</link>
<pubDate>Fri, 03 Dec 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-12-03-a-chaplains-ultimate-sacrifice.html</guid>
<description>
<![CDATA[<p>
From the <a href="http://articles.latimes.com/2010/dec/02/nation/la-na-chaplain-20101202">Los Angeles Times</a>, a story about Chaplain (Captain) Dale Goetz, the first Chaplain since the Vietnam War to be killed in Combat. Remember to pray for Chaplains and their Chaplain Assistants, as they continue to minister to those who serve.
</p>


<div class="tagline" id="orgf3570a6">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/army.html">Army</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Whats so funny?</title>
<link>https://randyridenour.net/posts/2010-06-14-whats-so-funny.html</link>
<pubDate>Mon, 14 Jun 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-06-14-whats-so-funny.html</guid>
<description>
<![CDATA[<p>
<a href="http://bit.ly/dpHTYZ">Here.</a>
</p>

<p>
You should see my podcast list.
</p>


<div class="tagline" id="orge8d4935">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Venn Diagrams with LaTeX and TikZ</title>
<link>https://randyridenour.net/posts/2016-04-11-venn-diagrams-with-latex-and-tikz.html</link>
<pubDate>Mon, 11 Apr 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-04-11-venn-diagrams-with-latex-and-tikz.html</guid>
<description>
<![CDATA[<p>
I spent the weekend working on Venn diagrams in LaTeX using TikZ to use when teaching categorical logic. I thought it was a much better use of my time than mowing the lawn, and one never knows when a good Venn diagram will be needed.
</p>
<section id="outline-container-orgfa3d137" class="outline-2">
<h2 id="orgfa3d137">The Initial Diagram</h2>
<div class="outline-text-2" id="text-orgfa3d137">
<p>
First, add the following to the preamble:
</p>


<pre class="example" id="org316f3e4">
\usepackage{tikz}
\usetikzlibrary{shapes,backgrounds}
</pre>

<p>
The next step is to define the three circles in the body of the document. This only needs to to be done once; they can be called repeatedly in the same document. I named them in a way that I could remember which was the subject term, middle term, and predicate term:
</p>

<pre class="example" id="org28cc5b9">
\def\sub{(0,0) circle (1.5cm)}
\def\mid{(-60:2cm) circle (1.5cm)}
\def\pred{(0:2cm) circle (1.5cm)}
</pre>


<p>
Once the circles have been defined, they can be drawn and labeled. I prefer to use a heavier line than the default, that can be called as an option to <code>tikzpicture</code>.
</p>

<pre class="example" id="org942f340">
\begin{tikzpicture}[thick]

  \begin{scope}

    % Draw the circles
    \draw \sub;
    \draw \pred;
    \draw \mid;

    % Label the circles
    \draw (-2,-0) node {$S$};
    \draw (1,-4) node {$M$};
    \draw (4,0) node {$P$};

  \end{scope}

\end{tikzpicture}
</pre>

<p>
This produces the following:
</p>



<div class="org-center">

<figure id="orge3dec4d">
<img src="https://randyridenour.net/posts/../images/posts/venn-labels.png" alt="venn-labels.png" width="75%">

</figure>
</div>
</div>
</section>
<section id="outline-container-org164f40b" class="outline-2">
<h2 id="org164f40b">Shading</h2>
<div class="outline-text-2" id="text-org164f40b">
</div>
<div id="outline-container-orgdffa89d" class="outline-3">
<h3 id="orgdffa89d">Universal Negations</h3>
<div class="outline-text-3" id="text-orgdffa89d">
<p>
Shading is simple with TikZ, and, in most cases, relatively intuitive. To shade an entire circle, use the &ldquo;\fill&rdquo; command. For example, &ldquo;\fill &sub;&rdquo; fills the entire subject circle. To fill the intersection of the subject and predicate circles, we need to tell TikZ to ignore everything that is outside the predicate circle, then fill the subject circle. This is done with the &ldquo;\clip&rdquo; command. This code shades the intersection of <b>S</b> and <b>P</b>:
</p>

<pre class="example" id="org02a63c1">
\begin{tikzpicture}[thick]
  \begin{scope}
    \begin{scope} %Shade intersection of S and P
      \clip \pred;
      \fill[gray] \sub;
    \end{scope}

    \draw \sub;
    \draw \pred;
    \draw \mid;

    \draw (-2,-0) node {$S$};
    \draw (1,-4) node {$M$};
    \draw (4,0) node {$P$};
  \end{scope}
\end{tikzpicture}
</pre>
</div>
</div>
<div id="outline-container-org115cd77" class="outline-3">
<h3 id="org115cd77">Universal Affirmations</h3>
<div class="outline-text-3" id="text-org115cd77">
<p>
Shading everything that is one circle, but not in another is a bit trickier. It involves using something called the &ldquo;even odd rule&rdquo; in TikZ. Since I don&rsquo;t quite understand how the rule works, this involved a bit of trial-and-error on my part. If there is a more efficient way, then please leave a comment. This code shades the portion of the subject circle that is not in the predicate circle:
</p>

<pre class="example" id="org2f4603f">
\begin{tikzpicture}[thick]
  \begin{scope}[even odd rule]% Shade S without P
    \clip \pred (-1.5,-1.5) rectangle (1.5,1.5);
    \fill[gray] \sub;
  \end{scope}

  \draw \sub;
  \draw \pred;
  \draw \mid;

  \draw (-2,-0) node {$S$};
  \draw (1,-4) node {$M$};
  \draw (4,0) node {$P$};
\end{tikzpicture}
</pre>


<p>
To shade <b>S</b> without <b>M</b>:
</p>

<pre class="example" id="orgaf73c7e">
\begin{scope}[even odd rule]% Shade *S* without M
  \clip \mid (-1.5,-1.5) rectangle (1.5,1.5);
  \fill[gray] \sub;
\end{scope}
</pre>


<p>
<b>M</b> without <b>S</b>:
</p>

<pre class="example" id="orgf577fc2">
\begin{scope}[even odd rule]% Shade M without S
  \clip \sub (-0.5,-3.3) rectangle (2.5,0);
  \fill[gray] \mid;
\end{scope}
</pre>


<p>
<b>M</b> without <b>P</b>:
</p>

<pre class="example" id="org707c514">
\begin{scope}[even odd rule]% Shade M without P
  \clip \pred (-0.5,-3.3) rectangle (2.5,0);
  \fill[gray] \mid;
\end{scope}
</pre>

<p>
<b>P</b> without <b>M</b>:
</p>

<pre class="example" id="orgae1ca08">
\begin{scope}[even odd rule]% Shade P without M
  \clip \mid (-0,-1.5) rectangle (3.5,1.5);
  \fill[gray] \pred;
\end{scope}
</pre>


<p>
Finally, to shade <b>P</b> without <b>S</b>:
</p>

<pre class="example" id="orge778527">
\begin{scope}[even odd rule]% Shade P without S
  \clip \sub (0,-1.5) rectangle (3.5,1.5);
  \fill[gray] \pred;
\end{scope}
</pre>
</div>
</div>
</section>
<section id="outline-container-org8833456" class="outline-2">
<h2 id="org8833456">Particulars</h2>
<div class="outline-text-2" id="text-org8833456">
<p>
<b><b>I</b></b> and <b><b>O</b></b> sentences require an ``x&rsquo;&rsquo; to be placed in some region of the diagram. To do that, just draw a node at the desired location. Here are the locations of the seven sections in the diagram:
</p>


<pre class="example" id="org422ec5d">
\draw (-0.5,0.3) node {1};
\draw (1,0.3) node {2};
\draw (2.5,0.3) node {3};
\draw (0.2,-0.9) node {4};
\draw (1,-0.6) node {5};
\draw (1.8,-0.9) node {6};
\draw (1,-2) node {7};
</pre>


<div class="org-center">

<figure id="orge970c08">
<img src="https://randyridenour.net/posts/../images/posts/venn-sections.png" alt="venn-sections.png" width="75%">

</figure>
</div>
</div>
</section>
<section id="outline-container-orgc3275c1" class="outline-2">
<h2 id="orgc3275c1">Examples</h2>
<div class="outline-text-2" id="text-orgc3275c1">
<p>
Here are some examples to show how full arguments are diagrammed.
</p>
</div>
<div id="outline-container-org00ba412" class="outline-3">
<h3 id="org00ba412">Celarent (EAE-1)</h3>
<div class="outline-text-3" id="text-org00ba412">
<p>
Celarent is a classic first-figure argument that uses both a universal negation and a universal affirmation.
</p>

<pre class="example" id="orgfc9f9ec">
\begin{tikzpicture}[thick]

\begin{scope}
    \draw (-2,-0) node {$A$};
    \draw (1,-4) node {$B$};
    \draw (4,0) node {$C$};

\begin{scope}[even odd rule]% Shade S without M
	    \clip \mid (-1.5,-1.5) rectangle (1.5,1.5);
	\fill[gray] \sub;
	\end{scope}

\begin{scope} %Shade intersection of M and P
  \clip \pred;
  \fill[gray] \mid;
\end{scope}

\draw \sub;
\draw \pred;
\draw \mid;
\end{scope}

\end{tikzpicture}
</pre>

<p>
This produces the following:
</p>


<div class="org-center">

<figure id="orgea7f297">
<img src="https://randyridenour.net/posts/../images/posts/venn-celarent.png" alt="venn-celarent.png" width="75%">

</figure>
</div>
</div>
</div>
<div id="outline-container-org3d516dd" class="outline-3">
<h3 id="org3d516dd">Disamis (IAI-3)</h3>
<div class="outline-text-3" id="text-org3d516dd">
<p>
Disamis is a good example of a universal affirmation with a particular affirmation.
</p>


<div class="org-center">

<figure id="orgc4ccf83">
<img src="https://randyridenour.net/posts/../images/posts/venn-disamis.png" alt="venn-disamis.png" width="75%">

</figure>
</div>


<p>
It was made with this code:
</p>

<pre class="example" id="org9f9d9dd">
\begin{tikzpicture}[thick]

  \begin{scope}
    \draw (-2,-0) node {$A$};
    \draw (1,-4) node {$B$};
    \draw (4,0) node {$C$};

    \begin{scope}[even odd rule]% Shade M without S
      \clip \sub (-0.5,-3.3) rectangle (2.5,0);
      \fill[gray] \mid;
    \end{scope}

    \draw (1,-.6) node {X};

    \draw \sub;
    \draw \pred;
    \draw \mid;
  \end{scope}

\end{tikzpicture}

  \caption{Disamis}
  \label{fig:disamis}
\end{figure}
</pre>
</div>
</div>
</section>
<section id="outline-container-org2a03871" class="outline-2">
<h2 id="org2a03871">Scaling</h2>
<div class="outline-text-2" id="text-org2a03871">
<p>
TikZ graphics can be scaled easily with an option to the tikzpicture environment. This doubles the size of the picture:
</p>

<pre class="example" id="org940b1e8">
\begin{tikzpicture}[thick,scale=2]
</pre>

<p>
This reduces the size by half:
</p>

<pre class="example" id="org79f230b">
\begin{tikzpicture}[thick,scale=.5]
</pre>

<p>
Unfortunately, this won&rsquo;t scale the text at the nodes, which will make the labels look ridiculously out of proportion. This can be fixed by adding an option to also scale the nodes. So, this produces a double-size image with proper labels:
</p>

<pre class="example" id="orgce3d085">
\begin{tikzpicture}[thick,scale=2, every node/.style={transform shape}]
</pre>


<div class="tagline" id="org07cd488">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/LaTeX.html">Latex</a> <a href="https://randyridenour.net/posts/../tags/logic.html">Logic</a>
</p>

</div>
</div>
</section>
]]>
</description></item>
<item>
<title>Emacs Blog Test</title>
<link>https://randyridenour.net/posts/2015-01-16-emacs-blog-test.html</link>
<pubDate>Fri, 16 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-16-emacs-blog-test.html</guid>
<description>
<![CDATA[<p>
I&rsquo;m testing blogging to the new Jekyll blog from Emacs using the Lisp code from <a href="https://www.miskatonic.org/2014/01/26/more-about-emacs-and-jekyll/%20">William Denton</a>.
It works extremely well. I had to remap the key definitions since <code>C-c j</code> was already used for something else in my configuration. It&rsquo;s bad Emacs form, but I used <code>C-x j</code> instead. So, <code>C-x j n</code> asks for a post title, then creates a file in the drafts folder with the front matter already inserted. When ready to publish, <code>C-x j t</code> inserts the time stamp, and <code>C-x j p</code> renames the file using the time stamp and moves it into the posts folder. <code>C-x j o</code> opens the site folder in a dired buffer.
</p>


<div class="tagline" id="orga747b65">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Usury in Oklahoma</title>
<link>https://randyridenour.net/posts/2017-03-14-usury-in-oklahoma-.html</link>
<pubDate>Tue, 14 Mar 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-03-14-usury-in-oklahoma-.html</guid>
<description>
<![CDATA[<p>
Yesterday, the House of Representatives of the State of Oklahoma passed <a href="http://www.oklegislature.gov/BillInfo.aspx?Bill=Hb1913&amp;Session=1700">HB 1913</a>, a bill giving lenders the ability to charge an Annual Percentage Rate of 205.92% on a $1,500 loan.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>

<p>
This bill is inconsistent with historical Christian values and should be opposed by conservatives and progressives alike. The practice of taking interest on loans is expressly forbidden in several passages of Scripture:
</p>

<ul class="org-ul">
<li>Exodus 22:25-27</li>
<li>Leviticus 25:35-38</li>
<li>Deuteronomy 23:19-20; 24:6</li>
<li>Psalm 15:5</li>
<li>Ezekiel 18:7-8; 22:12</li>
<li>Nehemiah 5:6-13<sup><a id="fnr.2" class="footref" href="#fn.2" role="doc-backlink">2</a></sup></li>
</ul>

<p>
Before 1500, every Christian writer who discussed the practice expressly condemned the practice of charging interest. Ambrose called it wicked, and Augustine, in the <i>Enarration on Psalm 129</i> said that the person who loaned at interest would &ldquo;&hellip;go into the flame.&rdquo; Like the church fathers, every church council that discussed loaning at interest condemned it. Luther also condemned charging interest, although Calvin did not. Calvin saw interest as a necessity in a fallen world, since the lender is risking non-payment. Interestingly, though, in his <i>Commentary on the First Twenty Chapters of Ezekiel</i>, he said &ldquo;It is always wrong to exact usury from a poor man.&rdquo; For Calvin, it looks like interest can be charged, just not to the poor. One could also appeal to the Founding Fathers. The colonies set an interest cap of 8%. After 1776, most states limited interest at 6%.
</p>

<p>
Note that the Bible and the Church for the first 1600 years of its existence defined usury simply as charging interest on a loan. We now define it as charging excessive interest, which shows a compromise to the modern world. Regardless, taking a stand against this bill is taking a stand for traditional Christian values; something the right should certainly support.
</p>

<div class="tagline" id="org6846dd5">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
The full text of the bill in its various versions can be found <a href="http://www.oklegislature.gov/BillInfo.aspx?Bill=Hb1913&amp;Session=1700">here</a>. It was sponsored by <a href="https://www.facebook.com/pg/Chris-Kannady-for-House-91-1406719546213093/about/?ref=page_internal">Rep. Chris Kannady</a>. It is surprising that a veteran should sponsor a bill like this, given that young soldiers are often targets for predatory lenders. The bill passed <a href="http://www.okhouse.gov/56LEG/OKH00208.TXT">59-31</a>. Note that the bill allows a 17% monthly rate, equivalent to a 206% annual rate.
</p></div></div>

<div class="footdef"><sup><a id="fn.2" class="footnum" href="#fnr.2" role="doc-backlink">2</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Strictly speaking, these passages forbid taking interest from fellow Israelites. Christians should be willing to expand this, given Jesus&rsquo; expansion of our understanding of neighbor.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Why Believe?</title>
<link>https://randyridenour.net/posts/2010-09-17-i-believe-in-christianity-as-i-believe-that-the.html</link>
<pubDate>Fri, 17 Sep 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-09-17-i-believe-in-christianity-as-i-believe-that-the.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
I believe in Christianity as I believe that the sun has risen: not only because I see it, but because by it, I see everything else.
</p>
</blockquote>

<p class="bigquote">
C.S. Lewis
</p>


<div class="tagline" id="org0892739">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>A Sordid Tale of Text Editors</title>
<link>https://randyridenour.net/posts/2012-05-24-a-sordid-tale-of-text-editors.html</link>
<pubDate>Thu, 24 May 2012 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2012-05-24-a-sordid-tale-of-text-editors.html</guid>
<description>
<![CDATA[<p>
For years now, It seems like I have been searching for the perfect text editor. Evidently, there are those who believe that there is one single perfect text editor for everyone. If you need evidence, just search the Internet for &ldquo;Vim vs. Emacs.&rdquo; My experience, though, leads to me believe that, when it comes to text editors, like many other tools, perfection is relative to the individual. What tool is needed depends on how the individual writer works and thinks.
</p>

<p>
I used word processors (beginning with WordPerfect 5.1, which I still think is the best, it&rsquo;s been all downhill for word processors ever since) until I started writing LaTeX documents. I began with TeXShop, which comes bundled with <a href="http://www.tug.org/mactex/2011/">MacTeX</a>. TeXShop is an excellent resource for writing LaTeX. It&rsquo;s free, powerful, and I recommend it with no reservations at all.
</p>

<p>
I don&rsquo;t know why I began experimenting with other editors. I surely didn&rsquo;t need any other editor to edit LaTeX. It may have been when I started writing in <a href="http://fletcherpenney.net/multimarkdown/">MultiMarkdown</a> (MMD). Markdown, created by John Gruber, is a simple way to produce very readable documents and convert them to HTML. Markdown has grown in popularity recently, resulting in an abundance of simple Markdown editors for both OS X and iOS. I can&rsquo;t remember what year I stumbled on it, but at some point I discovered Fletcher Penney&rsquo;s MultiMarkdown. MultiMarkdown adds some features to Markdown, including tables and footnotes, among other things. The most important feature for me, though, was the ability to convert the document to both HTML and to LaTeX. So, I started writing in MultiMarkdown, which then gave me the ability to export the same document in several formats as needed. I could have used TeXShop to write MMD, but it wasn&rsquo;t the best experience.
</p>

<p>
At the time, there was a great deal of excitement about <a href="http://macromates.com/">TextMate</a>. After watching some videos on YouTube showing LaTeX editing with TextMate, I was hooked. Then, I discovered that Fletcher Penney himself had produced a Markdown bundle for TextMate. So, I could use TextMate to easily edit an MMD document, with a quick keyboard shortcut, convert it to a LaTeX file, touch up any TeX code, then build the PDF, all from within TextMate.
</p>

<p>
But then, I started hearing things about Vim. So, I downloaded <a href="http://code.google.com/p/macvim/">MacVim</a>, and then spent a great deal of time learning the Vim commands and configuring my .vimrc. In my opinion, navigating files in Vim is pure magic, and I don&rsquo;t think that there is anything better for editing, that is, making small corrections to an existing document.
</p>

<p>
Although I understand Vim, and can use it competently, it never quite fit the way that I work. Vim is a modal editor, which means that different modes are used for different things. For instance, insert mode is for inserting text.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> Normal mode is used for navigating the document, among other things. The beauty of Vim is how much one can do with very few keystrokes. For instance, pressing <code>dd</code> deletes a sentence, and <code>2dd</code> deletes two sentences. Vim experts look like sorcerers at the keyboard. Unfortunately, Vim just never quite fit for me as a tool to write longer documents, I still use it in the terminal for writing short things like Git commit statements. I would find myself starting to write after a break to think, and suddenly be inserting text in a completely different part of the document. For instance, in normal mode, <code>e</code> moves the cursor to the end of the word, <code>gg</code> moves the cursor to the beginning of the document, and <code>i</code> switches to insert mode. So, in normal mode, if I started typing the word &ldquo;beginning&rdquo; anywhere in the document, I would quickly find myself on the first line having typed <code>ng</code> with no idea where I started.
</p>

<p>
The problem is that I stop often to think about what I&rsquo;m writing, and during these pauses, would forget what mode I was in. Now, I know the mode is clearly labeled at the bottom of the screen, but that didn&rsquo;t help. The other problem is that I tend to edit as I write, which, it seems, eliminates much of the advantage that Vim offers.<sup><a id="fnr.2" class="footref" href="#fn.2" role="doc-backlink">2</a></sup>
</p>


<p>
Then, there was my flirtation with Emacs. Emacs fits the way that I write better than Vim, and I&rsquo;ll keep it around. There are several reasons that Emacs doesn&rsquo;t quite fit for me, though. First, I have trouble remembering the key combinations. I thought Vim&rsquo;s commands were fairly intuitive, Emacs commands never quite clicked. Second, I preferred <a href="http://emacsformacosx.com/">Gnu Emacs</a> over <a href="http://aquamacs.org/">Aquamacs</a> for various reasons, but <a href="http://smilesoftware.com/TextExpander">Textexpander</a> snippets wouldn&rsquo;t work in Gnu Emacs. Finally, configuring both Vim and Emacs can be a long painful process for amateur geeks.
</p>

<p>
So, I kept returning to TextMate, and kept telling myself that there really wasn&rsquo;t anything wrong with TextMate, it worked fine. It was starting to seem a bit slow, and I found it difficult to ignore the arbiters of doom announcing TextMate&rsquo;s demise, given the absence of version 2.0.
</p>

<p>
Then, the heavens opened, and a beta version of TextMate 2 appeared. I downloaded it, and it just doesn&rsquo;t work as well for me as TextMate 1. I&rsquo;ve had <a href="http://www.barebones.com/products/bbedit/">BBEdit</a> ever since it became available in the Mac App Store. It&rsquo;s nice, but it just doesn&rsquo;t have the ease of TextMate for LaTeX editing. Then, I heard <a href="http://brettterpstra.com/">Brett Terpstra</a> on the  <a href="http://macpowerusers.com/">Mac Power Users</a> podcast talk about <a href="http://www.sublimetext.com/2">Sublime Text 2</a>. So, I downloaded a trial version, and showing great restraint (at least, for me) used it for three days before I bought it. It definitely appears to have been inspired by TextMate, but has many improvements over TextMate 1. It is in beta, but it seems to be solidly reliable. It is fast, edits LaTeX like TextMate, easily configurable, and beautiful.
</p>

<p>
So, Sublime Text 2, I think I&rsquo;m in love, but you need to know how fickle I am. I can give you today, we&rsquo;ll just have to see what the future holds.
</p>

<p>
UPDATE: It&rsquo;s 2024 now, and I&rsquo;ve been using Emacs for over a decade. I still like to try out new editors, but I&rsquo;m no longer searching for a new love.
</p>

<div class="tagline" id="org6721239">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Never underestimate the power of the obvious.
</p></div></div>

<div class="footdef"><sup><a id="fn.2" class="footnum" href="#fnr.2" role="doc-backlink">2</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
See Dr. Drang&rsquo;s excellent explanation <a href="http://www.leancrew.com/all-this/2008/07/why-vi/">here</a>.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Prayer for the Fifth Sunday of Epiphany</title>
<link>https://randyridenour.net/posts/2019-02-10-prayer-for-the-fifth-sunday-of-epiphany.html</link>
<pubDate>Sun, 10 Feb 2019 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2019-02-10-prayer-for-the-fifth-sunday-of-epiphany.html</guid>
<description>
<![CDATA[<p>
Lord Jesus,
</p>

<p>
When the disciples heard your voice,<br>
they left everything they had<br>
to follow you.
</p>

<p>
Examine our hearts, Lord,<br>
and show us those things that<br>
we also need to abandon,<br>
those remnants of an earthly kingdom<br>
That have no place in the Kingdom of God:
</p>

<p>
The need to win,
</p>

<p>
The need to get our way,
</p>

<p>
Our feelings of superiority<br>
to our brothers and sisters,
</p>

<p>
Our tendency to seek our own will,<br>
and to call it yours.
</p>

<p>
We have muffled your voice<br>
in the frenzied noise<br>
Of modern life;
</p>

<p>
Lest we hear,<br>
and, like the disciples,<br>
be compelled to follow.
</p>

<p>
Yet in those occasional<br>
moments of stillness,<br>
we find that you still call.
</p>

<p>
We pray to God<br>
that we can still hear.
</p>

<p>
<i>Amen</i>
</p>
]]>
</description></item>
<item>
<title>Philosophy Street</title>
<link>https://randyridenour.net/posts/2010-11-17-from-sctv-a-parody-of-sesame-street-called.html</link>
<pubDate>Wed, 17 Nov 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-11-17-from-sctv-a-parody-of-sesame-street-called.html</guid>
<description>
<![CDATA[<p>
From SCTV: a parody of Sesame Street called &ldquo;Philosophy Street.&rdquo;
</p>


<div class="org-center">
<p>
<iframe width="440" height="335" src="https://www.youtube.com/embed/KuTBbZeSaSc" frameborder="0" allowfullscreen></iframe>
</p>
</div>




<div class="tagline" id="orgae8a8b4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Lent 4</title>
<link>https://randyridenour.net/posts/2015-03-16-prayer-for-lent-4.html</link>
<pubDate>Mon, 16 Mar 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-03-16-prayer-for-lent-4.html</guid>
<description>
<![CDATA[<p>
The best sermons open our eyes to present realities, give us hope for a future in the Kingdom, and challenge us to move forward into that future. Yesterday’s sermon by Mitch Randall​ at NorthHaven Church​ was certainly one of those. Here is the prayer for the week:
</p>

<p>
God of Justice,
</p>

<p>
In 1961,<br>
the Freedom Riders<br>
were beaten with pipes<br>
after their bus was bombed<br>
in a terrorist act.
</p>

<p>
I, Lord, would never<br>
have swung a pipe in anger.
</p>

<p>
Fifty-four years later,<br>
those on another bus<br>
shout ugly chants to<br>
reinforce a false<br>
sense of superiority.
</p>

<p>
I, Lord, would have refused<br>
to utter the reprehensible words.
</p>

<p>
Instead, Lord,<br>
I am the one<br>
who stands in silence,<br>
and does nothing,<br>
but enables everything.
</p>

<p>
Lord have mercy<br>
on my<br>
apathetic,<br>
indifferent,<br>
lukewarm<br>
soul.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orge3f7793">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Twelfth Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-the-twelfth-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-twelfth-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
Loving God,
</p>

<p>
Apathy is a vice<br>
easily disguised<br>
behind veils<br>
of busy lives,<br>
carefully built<br>
to avoid the<br>
demands of love.
</p>

<p>
Forgive me,<br>
not just because<br>
I pretend to care,<br>
but that I<br>
deceive myself -<br>
believing in<br>
the pretending<br>
more than<br>
in the caring.
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="orgce02d5e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Beamer Article and Org Mode</title>
<link>https://randyridenour.net/posts/2024-07-04-beamer-article-and-org-mode.html</link>
<pubDate>Thu, 04 Jul 2024 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2024-07-04-beamer-article-and-org-mode.html</guid>
<description>
<![CDATA[<p>
I generate LaTeX Beamer lecture slides and handouts from a single Org mode data file.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> The handouts include the information on the slides plus some extra explanation. I like to draw a box around the slide information so that students can easily differentiate the slides from the notes. I have scripts that export the Org file, generate the LaTeX files, then create the PDF&rsquo;s. Everything seemed to work well so far, or at least I hadn&rsquo;t noticed anything that wasn&rsquo;t working. I&rsquo;m teaching a course this summer that covers the same material in one day that I usually cover in three days during a regular semester. Ordinarily, I structure the presentation using only sections and slides, but stitching three of them together required adding subsections to keep everything clear. Adding subsections shouldn&rsquo;t have been a problem, it&rsquo;s just a matter of changing one line in the Org header from
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-meta-line">#+OPTIONS: H:3</span>
</code></pre>
</div>

<p>
to
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-meta-line">#+OPTIONS: H:2</span>
</code></pre>
</div>

<p>
Unfortunately, this messed up the nice boxes around the slide material on the handouts. Suddenly, the boxes had completely disappeared. I didn&rsquo;t understand why until I started looking at the LaTeX files. It turned out that I had been using tcolorbox to draw boxes around every block environment. Once I made the change, the slides were in a frame environment on the handouts, as they should have been. Easy fix, or so I thought — just change &ldquo;block&rdquo; to &ldquo;frame&rdquo; in the tcolorbox command. That brought the boxes back, but only around the slide titles, not around the slide contents.
</p>

<p>
After many completely unproductive Internet searches, I stumbled on the problem. Org Beamer exports a slide to this LaTeX code:
</p>

<div class="org-src-container">
<pre class="src src-tex"><code><span class="org-font-latex-sedate"><span class="org-keyword">\begin</span></span>{<span class="org-function-name">frame</span>}[label]{Slide Title}
  Slide contents
<span class="org-font-latex-sedate"><span class="org-keyword">\end</span></span>{<span class="org-function-name">frame</span>}
</code></pre>
</div>

<p>
This is fine for everything except my lecture handouts. I found that a small change to the LaTeX file completely fixed everything, though. All I needed to do was to change the frame environment to look like this:
</p>

<div class="org-src-container">
<pre class="src src-tex"><code><span class="org-font-latex-sedate"><span class="org-keyword">\begin</span></span>{<span class="org-function-name">frame</span>}[label]
  <span class="org-font-latex-sedate">\frametitle</span>{Slide Title}
  Slide contents
<span class="org-font-latex-sedate"><span class="org-keyword">\end</span></span>{<span class="org-function-name">frame</span>}
</code></pre>
</div>

<p>
Now, the problem was getting Org mode to export the subtree to look like that. After many, many more unproductive Internet searches, I learned that new Org exports could be made from pre-existing ones using org-export-define-derived-backend. Unfortunately, I couldn&rsquo;t get it to work. Finally, it struck me that since I only needed to use frametitle for the handouts, a simple search and replace might be best. Adding this function to my compilation script worked:
</p>

<div class="org-src-container">
<pre class="src src-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">rlr/create-frametitle</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-doc">"Convert title to frametitle."</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>interactive<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>goto-char 1<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">ignore-errors</span>
               <span class="org-rainbow-delimiters-depth-4">(</span>re-search-forward <span class="org-string">"begin{frame}.*]"</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>insert <span class="org-string">"\n \\frametitle"</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
This finds a line containing &ldquo;begin{frame}&rdquo;, moves the point after the closing bracket of the label, inserts a new line then puts &ldquo;\frametitle&rdquo; before the slide title.
</p>

<p>
Here&rsquo;s the simple tcolorbox commands that go in the header:
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-meta-line">#+LaTeX_HEADER: \usepackage{tcolorbox}</span>
<span class="org-org-meta-line">#+LaTeX_HEADER: \mode&lt;article&gt;{\setbeamertemplate{frame begin}{\begin{tcolorbox}[colback=white, colframe=gray,]} \setbeamertemplate{frame end}{\end{tcolorbox}}}</span>
</code></pre>
</div>

<p>
Simple enough, and only took four days&hellip;.
</p>

<div class="tagline" id="org25e8697">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/org.html">Org</a> <a href="https://randyridenour.net/posts/../tags/latex.html">Latex</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
I sketched out the process I use in <a href="https://randyridenour.net/posts/2020-06-01-beamer-presentations-with-org-mode.html">this post</a> from 2020. I&rsquo;ve changed a few things since then, but the basic strategy is the same.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Theology on Tap</title>
<link>https://randyridenour.net/posts/2019-01-06-theology-on-tap.html</link>
<pubDate>Sun, 06 Jan 2019 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2019-01-06-theology-on-tap.html</guid>
<description>
<![CDATA[<p>
Theology on Tap OK is a monthly reading group led by Mitch Randall and Randy Ridenour. Each month, we will read and discuss a theological work. The group meets at 6:30 p.m. on some evening when most can attend at Louie&rsquo;s Grill and Bar, 3750 W Robinson St., Norman, OK 73072
</p>
<section id="outline-container-orgb322664" class="outline-2">
<h2 id="orgb322664">Upcoming Book</h2>
<div class="outline-text-2" id="text-orgb322664">
<p>
Our next book is <a href="https://www.amazon.com/Searching-Sunday-Loving-Leaving-Finding-ebook/dp/B00PWOH2CI/ref=sr_1_1?crid=20XO0RS1PW7EZ&amp;keywords=searching+for+sunday+rachel+held+evans&amp;qid=1559954172&amp;s=gateway&amp;sprefix=sear%2Caps%2C157&amp;sr=8-1"><span class="underline">Searching for Sunday</span></a> by Rachel Held Evans. From the cover:
</p>

<blockquote>
<p>
From New York Times bestselling author Rachel Held Evans comes a book that is both a heartfelt ode to the past and hopeful gaze into the future of what it means to be a part of the Church.
</p>
</blockquote>

<p>
Our next meeting is June 13, at 6:30 p.m.
</p>
</div>
</section>
<section id="outline-container-org4b12ad9" class="outline-2">
<h2 id="org4b12ad9">Previous Books</h2>
<div class="outline-text-2" id="text-org4b12ad9">
</div>
<div id="outline-container-org2a2f65d" class="outline-3">
<h3 id="org2a2f65d">2019</h3>
<div class="outline-text-3" id="text-org2a2f65d">
<ul class="org-ul">
<li>February: <a href="https://www.amazon.com/Christ-Culture-Torchbooks-Richard-Niebuhr/dp/0061300039/ref=sr_1_1?ie=UTF8&amp;qid=1549042217&amp;sr=8-1&amp;keywords=christ+and+culture"><i>Christ and Culture</i></a> by Richard Niebuhr.</li>
<li>March: <a href="https://www.amazon.com/Jesus-Disinherited-Howard-Thurman-ebook/dp/B005K98IU0/ref=sr_1_1?ie=UTF8&amp;qid=1549041378&amp;sr=8-1&amp;keywords=jesus+disinherited"><i>Jesus and the Disinherited</i></a> by Howard Thurman.</li>
<li>April: <a href="https://www.amazon.com/Shameless-Sexual-Reformation-Nadia-Bolz-Weber-ebook/dp/B07CWG1719/ref=sr_1_1?keywords=nadia+bolz&amp;qid=1559953715&amp;s=gateway&amp;sr=8-1"><i>Shameless: A Sexual Reformation</i></a> by Nadio Bolz-Weber.</li>
<li>May: <a href="https://www.amazon.com/Economy-Grace-Kathryn-Tanner-ebook/dp/B000SBJM50/ref=sr_1_1?crid=3RWVZCXW1SPF6&amp;keywords=economy+of+grace+kathryn+tanner&amp;qid=1559953844&amp;s=gateway&amp;sprefix=economy+of+grace%2Caps%2C158&amp;sr=8-1"><i>Economy of Grace</i></a> by Kathryn Tanner.</li>
<li>June: <a href="https://www.amazon.com/Searching-Sunday-Loving-Leaving-Finding-ebook/dp/B00PWOH2CI/ref=sr_1_1?crid=20XO0RS1PW7EZ&amp;keywords=searching+for+sunday+rachel+held+evans&amp;qid=1559954172&amp;s=gateway&amp;sprefix=sear%2Caps%2C157&amp;sr=8-1"><i>Searching for Sunday</i></a> by Rachel Held Evans.</li>
</ul>


<div class="tagline" id="orge684879">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
</div>
</div>
</section>
]]>
</description></item>
<item>
<title>Prayer for All Saints Day</title>
<link>https://randyridenour.net/posts/2016-11-06-prayer-for-all-saints-day.html</link>
<pubDate>Sun, 06 Nov 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-11-06-prayer-for-all-saints-day.html</guid>
<description>
<![CDATA[<p>
Prayer for All Saints Day
</p>

<p>
Lord,
</p>

<p>
We search for heroes<br>
among the rich, powerful,<br>
strong and proud —<br>
those who look more<br>
like the crucifiers<br>
than the crucified.<br>
</p>

<p>
But on this day,<br>
we give thanks<br>
for those for whom<br>
loving is more important<br>
than being loved,<br>
and faithfulness more<br>
dear than fame.<br>
</p>

<p>
Not our idols,<br>
instead, your saints.<br>
</p>

<p>
<i>Amen</i>
</p>








<div class="tagline" id="orgeecd680">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Back to School</title>
<link>https://randyridenour.net/posts/2025-01-08-back-school.html</link>
<pubDate>Wed, 08 Jan 2025 05:07:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2025-01-08-back-school.html</guid>
<description>
<![CDATA[<p>
Today is the first day of the spring semester. We used to have a separate term in January that I never taught, so the Christmas break seemed especially short this year. 
</p>

<p>
One wonderful thing about teaching is that every semester is a new beginning, another opportunity to finally get everything right.
</p>

<div class="tagline" id="org204e2ef">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Buechner on Compassion</title>
<link>https://randyridenour.net/posts/2015-12-29-buechner-on-compassion.html</link>
<pubDate>Tue, 29 Dec 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-12-29-buechner-on-compassion.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Compassion is sometimes the fatal capacity for feeling what it is like to live inside somebody else&rsquo;s skin. It is the knowledge that there can never really be any peace and joy for me until there is peace and joy finally for you too.
</p>
</blockquote>

<p class="bigquote">
Frederick Buechner
</p>




<div class="tagline" id="org815f4f9">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Need for Community</title>
<link>https://randyridenour.net/posts/2010-12-01-the-need-for-community.html</link>
<pubDate>Wed, 01 Dec 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-12-01-the-need-for-community.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
In order to give us a precise and clear example of humility in the perfection of love, our Lord took a towel and washed his disciples&rsquo; feet. So what about you, living entirely on your own, how will you ever discover such humility? Whose feet will you wash? Whom will you care for?
</p>
</blockquote>

<p class="bigquote">
Basil the Great (330-379 AD)
</p>


<div class="tagline" id="org52dc7c4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for All Saints Day</title>
<link>https://randyridenour.net/posts/2015-11-03-prayer-for-allsaints-day.html</link>
<pubDate>Tue, 03 Nov 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-11-03-prayer-for-allsaints-day.html</guid>
<description>
<![CDATA[<p>
Lord,<br>
</p>

<p>
We search for heroes<br>
among the rich, powerful,<br>
strong and proud —<br>
those who look more<br>
like the crucifiers<br>
than the crucified.<br>
</p>

<p>
But on this day,<br>
we give thanks<br>
for those for whom<br>
loving is more important<br>
than being loved,<br>
and faithfulness more<br>
dear than fame.<br>
</p>

<p>
Not our idols, Lord,<br>
instead, your saints.<br>
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org8330f9f">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Visit to a National Cemetery</title>
<link>https://randyridenour.net/posts/2015-05-19-visit-to-a-national-cemetery.html</link>
<pubDate>Tue, 19 May 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-05-19-visit-to-a-national-cemetery.html</guid>
<description>
<![CDATA[<div class="org-center">

<figure id="org985f2a7">
<img src="https://randyridenour.net/posts/../images/posts/cemetery.jpg" alt="cemetery.jpg" width="100%">

</figure>
</div>

<p>
<i>A poem for Memorial Day, 2015, written after conducting a funeral at the Dallas-Fort Worth National Cemetery, April 23, 2015.</i>
</p>

<p>
The boy stared, amazed<br>
at the ranks and files<br>
of perfect straight lines.<br>
</p>

<p>
Each member stood<br>
at attention, a silent and still<br>
granite memorial to one<br>
who was a child once
</p>

<p>
before youth was taken,<br>
leaving only scars
</p>

<p>
if anything at all.
</p>


<div class="tagline" id="org146ed68">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/poetry.html">Poetry</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Vanier on Love</title>
<link>https://randyridenour.net/posts/2010-12-10-we-all-know-well-that-we-can-do-things-for-others.html</link>
<pubDate>Fri, 10 Dec 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-12-10-we-all-know-well-that-we-can-do-things-for-others.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
We all know well that we can do things for others and in the process, crush them, making them feel that they are incapable of doing things by themselves. To love someone is to reveal to them their capacities for life, the light that is shining in them.
</p>
</blockquote>

<p class="bigquote">
Jean Vanier
</p>







<div class="tagline" id="org563ac68">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Weve Got Questions!</title>
<link>https://randyridenour.net/posts/2009-11-16-philosophy-program-closed-for-failure-to-find.html</link>
<pubDate>Mon, 16 Nov 2009 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2009-11-16-philosophy-program-closed-for-failure-to-find.html</guid>
<description>
<![CDATA[<p>
<a href="http://www.chaser.com.au/2009/unis-axe-philosophy-departments-for-failing-to-find-answers/">Philosophy Program Closed for Failure to Find Answers</a>.
</p>

<p>
Very funny, in an uncomfortable sort of way.
</p>


<div class="tagline" id="orgeb036dd">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Creating God in Our Own Image</title>
<link>https://randyridenour.net/posts/2015-01-20-creating-god-in-our-own-image.html</link>
<pubDate>Tue, 20 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-20-creating-god-in-our-own-image.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
You can safely assume that you&rsquo;ve created God in your own image when it turns out that God hates all the same people you do.
</p>
</blockquote>

<p class="bigquote">
Anne Lamott, <i>Speech delivered in Washington D.C.</i>
</p>


<div class="tagline" id="org9d75f62">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Labor Day</title>
<link>https://randyridenour.net/posts/2018-09-03-prayer-for-labor-day.html</link>
<pubDate>Mon, 03 Sep 2018 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2018-09-03-prayer-for-labor-day.html</guid>
<description>
<![CDATA[<p>
Father, We pray for those who labor, For those who are blessed<br>
to do what they love, For those who do what they must<br>
in order to simply survive. For those with hands as rough<br>
as the son of a carpenter, For those with backs as bent<br>
as the one who bore a cross<br>
through the streets of Jerusalem, And for those who have been<br>
shamed, despised and humiliated,<br>
while serving at earthly tables,<br>
patiently and humbly waiting<br>
for a seat at the heavenly banquet. 
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="org5b40d17">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>A Simple Emacs Dashboard</title>
<link>https://randyridenour.net/posts/2025-10-05-simple-emacs-dashboard.html</link>
<pubDate>Wed, 22 Oct 2025 05:28:18 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-10-05-simple-emacs-dashboard.html</guid>
<description>
<![CDATA[<p>
<a href="https://github.com/emacs-dashboard/emacs-dashboard">Emacs Dashboard</a> is an elegant start page for Emacs that displays projects, recent files, agenda items, etc. It&rsquo;s very customizable, but not quite in the way that I would like. I do like having a dashboard as my starting page, but I want something that displays the usual agenda view, not just a list of events. This is mainly because I like having a visual representation of the relation between the current time and my next appointment. I first define a function that opens the agenda for today and deletes other windows in the frame. This is assigned to <code>s-d</code> to quickly clear the screen of anything displayed and show the agenda. To display it without deleting other windows, just use the standard <code>C-c a d</code>
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">agenda-home</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>org-agenda-list 1<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>delete-other-windows<span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
Then, I make sure that new frames displayed this when created.
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span>add-hook 'server-after-make-frame-hook #'agenda-home<span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
This function refreshes the agenda. It&rsquo;s run every minute. That&rsquo;s really overkill, but 34 years in the Army made me anal about accurate times.
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">refresh-agenda-periodic-function</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-doc">"Recompute the Org Agenda buffer(s) periodically."</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">ignore-errors</span>
    <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-keyword">when</span> <span class="org-rainbow-delimiters-depth-4">(</span>get-buffer <span class="org-string">"*Org Agenda*"</span><span class="org-rainbow-delimiters-depth-4">)</span>
          <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-keyword">with-selected-window</span> <span class="org-rainbow-delimiters-depth-5">(</span>get-buffer-window <span class="org-string">"*Org Agenda*"</span><span class="org-rainbow-delimiters-depth-5">)</span>
            <span class="org-rainbow-delimiters-depth-5">(</span>org-agenda-redo-all<span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>

<span class="org-comment-delimiter">;; </span><span class="org-comment">Refresh agenda every minute.
</span><span class="org-rainbow-delimiters-depth-1">(</span>run-with-timer 60 60 'refresh-agenda-periodic-function<span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
The line used to designate the current time is a bit too long by default. I didn&rsquo;t like how it wrapped when narrowing the window.
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">setq</span> org-agenda-current-time-string <span class="org-string">"now - - - - - - -"</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
Then change the color to something more noticeable.
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span>custom-set-faces
 '<span class="org-rainbow-delimiters-depth-2">(</span>org-agenda-current-time <span class="org-rainbow-delimiters-depth-3">(</span><span class="org-rainbow-delimiters-depth-4">(</span>t <span class="org-rainbow-delimiters-depth-5">(</span><span class="org-builtin">:foreground</span> <span class="org-string">"red"</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
Now, to make the dashboard links. For that, I use an org file that just contains a table. Each cell contains a link to a directory, file, runs some Elisp, etc. After inserting the file contents, then activate all of the links, that is, make them &ldquo;clickable.&rdquo;
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">rlr/agenda-links</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>end-of-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>insert-file-contents <span class="org-string">"/Path to Org Directory/agenda-links.org"</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-3">(</span>org-activate-links <span class="org-rainbow-delimiters-depth-4">(</span>point-max<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>goto-char <span class="org-rainbow-delimiters-depth-4">(</span>match-end 0<span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>

<span class="org-rainbow-delimiters-depth-1">(</span>add-hook 'org-agenda-finalize-hook #'rlr/agenda-links<span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
I don&rsquo;t like using the mouse, so make sure that pressing enter will work when the point is on the link.
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">setq</span> org-return-follows-link t<span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
This avoids having to confirm that the links that run Elisp are safe. I name them all with my initials to make it easy.
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">setopt</span> org-link-elisp-skip-confirm-regexp <span class="org-string">"rlr.*"</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
The result is this:
</p>

<div class="org-center">

<div id="org7a51c10" class="figure">
<p><img src="https://randyridenour.net/posts/../images/posts/2025-agenda-screenshot.png" alt="2025-agenda-screenshot.png" width="100%" />
</p>
</div>
</div>

<div class="tagline" id="orge65e654">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Our Lives as Art</title>
<link>https://randyridenour.net/posts/2015-06-16-our-lives-as-art.html</link>
<pubDate>Tue, 16 Jun 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-06-16-our-lives-as-art.html</guid>
<description>
<![CDATA[<p>
Great God of beauty and wonder,
</p>

<p>
There are days when I wish<br>
that you had given us<br>
a blueprint for life,<br>
with every step<br>
mapped out in detail,<br>
and every decision<br>
already made.
</p>

<p>
Instead, you gave us<br>
each a life for a canvas,<br>
and gifts and talents<br>
for a palette and brushes,<br>
the Spirit for our guide,<br>
and the Son for our model,<br>
then you sent us out<br>
into the world to paint.
</p>

<p>
Now, with the loving eye<br>
of the great artist who painted<br>
the night sky with stars,<br>
help us to create something beautiful<br>
with you.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org524e487">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for New Life</title>
<link>https://randyridenour.net/posts/2016-02-14-prayer-for-new-life.html</link>
<pubDate>Sun, 14 Feb 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-02-14-prayer-for-new-life.html</guid>
<description>
<![CDATA[<p>
A prayer for the First Sunday of Lent:
</p>

<p>
Father,
</p>

<p>
The dying tree,<br>
desperate to stay alive,<br>
tries to maintain<br>
the illusion of being<br>
healthy and full,<br>
but it cannot<br>
hide the truth,<br>
for it saps life from<br>
everything around it.
</p>

<p>
Forgive me,<br>
for I take much<br>
more than I give,<br>
and like the tree,<br>
never truly live.
</p>

<p>
May these roots<br>
once again taste<br>
the goodness of<br>
your grace, and<br>
these branches<br>
be a blessing<br>
to all that<br>
I encounter.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org7d0cf01">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Dostoevsky on Hell</title>
<link>https://randyridenour.net/posts/2015-09-24-dostoevsky-on-hell.html</link>
<pubDate>Thu, 24 Sep 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-09-24-dostoevsky-on-hell.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Fathers and teachers, I ask myself: &ldquo;What is hell?&rdquo; And I answer thus: &ldquo;The suffering of being no longer able to love.&rdquo;
</p>
</blockquote>

<p class="bigquote">
Fyodor Dostoevsky
</p>


<div class="tagline" id="org7f30a9b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Style Test</title>
<link>https://randyridenour.net/posts/2024-12-22-style-test.html</link>
<pubDate>Tue, 01 Jan 2008 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2024-12-22-style-test.html</guid>
<description>
<![CDATA[<p>
This is a test page for trying out CSS styles.
</p>
<section id="outline-container-orgdfb6539" class="outline-2">
<h2 id="orgdfb6539">Headings</h2>
</section>

<section id="outline-container-orgd6b1771" class="outline-2">
<h2 id="orgd6b1771">H1 Heading</h2>
<div class="outline-text-2" id="text-orgd6b1771">
</div>
<div id="outline-container-org1df81a4" class="outline-3">
<h3 id="org1df81a4">H2 Heading</h3>
<div class="outline-text-3" id="text-org1df81a4">
</div>
<div id="outline-container-org706bd54" class="outline-4">
<h4 id="org706bd54">H3 Heading</h4>
</div>
</div>
</section>
<section id="outline-container-org0a03ee6" class="outline-2">
<h2 id="org0a03ee6">Text</h2>
<div class="outline-text-2" id="text-org0a03ee6">
<p>
Donec id elit non mi porta gravida at eget metus. Donec id elit non mi porta gravida at eget metus. Vestibulum id ligula porta felis euismod semper. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam id dolor id nibh ultricies vehicula ut id elit. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Cras mattis consectetur purus sit amet fermentum.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>

<p>
Donec id elit non mi porta gravida at eget metus. Donec id elit non mi porta gravida at eget metus. Vestibulum id ligula porta felis euismod semper. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam id dolor id nibh ultricies vehicula ut id elit. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Cras mattis consectetur purus sit amet fermentum.<sup><a id="fnr.2" class="footref" href="#fn.2" role="doc-backlink">2</a></sup>
</p>

<p>
This is a link to <a href="https://randyridenour.net">my home page</a>.
</p>
</div>
</section>
<section id="outline-container-org5e77f9e" class="outline-2">
<h2 id="org5e77f9e">Blockquote</h2>
<div class="outline-text-2" id="text-org5e77f9e">
<blockquote>
<p>
Donec id elit non mi porta gravida at eget metus. Donec id elit non mi porta gravida at eget metus. Vestibulum id ligula porta felis euismod semper. Lorem ipsum dolor sit amet, consectetur adipiscing elit. 
</p>

<p>
Nullam id dolor id nibh ultricies vehicula ut id elit. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Cras mattis consectetur purus sit amet fermentum.
</p>
</blockquote>
</div>
</section>
<section id="outline-container-orge5c5b46" class="outline-2">
<h2 id="orge5c5b46">Markup</h2>
<div class="outline-text-2" id="text-orge5c5b46">
<ul class="org-ul">
<li>This is some <b>bold text</b>.</li>
<li>This is some <i>emphasized</i> text.</li>
<li>This is some <span class="underline">underlined</span> text.</li>
<li>This is some <code>code</code>.</li>
<li>This some <code>styled</code> text.</li>
<li>This is some <del>strikethrough text</del>.</li>
<li>These are subscripts and superscripts: H<sub>2</sub>O, x<sup>2</sup>y<sup>3</sup></li>
</ul>
</div>
</section>
<section id="outline-container-org04a9e20" class="outline-2">
<h2 id="org04a9e20">Lists</h2>
<div class="outline-text-2" id="text-org04a9e20">
</div>
<div id="outline-container-orgca81ef2" class="outline-3">
<h3 id="orgca81ef2">Unordered List</h3>
<div class="outline-text-3" id="text-orgca81ef2">
<ul class="org-ul">
<li>Donec id elit non</li>
<li>mi porta gravida at
<ul class="org-ul">
<li>eget metus Donec id</li>
<li>elit non mi porta gravida</li>
</ul></li>
<li>at eget metus</li>
<li>Vestibulum id</li>
<li>ligula porta felis
<ul class="org-ul">
<li>euismod semper</li>
<li>Lorem ipsum dolor
<ul class="org-ul">
<li>sit amet consectetur</li>
<li>adipiscing elit Nullam</li>
<li>id dolor id nibh ultricies</li>
</ul></li>
</ul></li>
<li>vehicula ut</li>
<li>id elit Vivamus</li>
</ul>
</div>
</div>
<div id="outline-container-org8be6fc9" class="outline-3">
<h3 id="org8be6fc9">Ordered List</h3>
<div class="outline-text-3" id="text-org8be6fc9">
<ol class="org-ol">
<li>Donec id elit non</li>
<li>mi porta gravida at
<ol class="org-ol">
<li>eget metus Donec id</li>
<li>elit non mi porta gravida</li>
</ol></li>
<li>at eget metus</li>
<li>Vestibulum id</li>
<li>ligula porta felis
<ol class="org-ol">
<li>euismod semper</li>
<li>Lorem ipsum dolor
<ol class="org-ol">
<li>sit amet consectetur</li>
<li>adipiscing elit Nullam</li>
<li>id dolor id nibh ultricies</li>
</ol></li>
</ol></li>
<li>vehicula ut</li>
<li>id elit Vivamus</li>
</ol>
</div>
</div>
</section>
<section id="outline-container-orgab8c7c5" class="outline-2">
<h2 id="orgab8c7c5">Table</h2>
<div class="outline-text-2" id="text-orgab8c7c5">
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<caption class="t-above"><span class="table-number">Table 1:</span> Table 1</caption>

<colgroup>
<col  class="org-left" />

<col  class="org-left" />

<col  class="org-left" />

<col  class="org-left" />
</colgroup>
<thead>
<tr>
<th scope="col" class="org-left">Column 1</th>
<th scope="col" class="org-left">Column 2</th>
<th scope="col" class="org-left">Column 3</th>
<th scope="col" class="org-left">Column 4</th>
</tr>
</thead>
<tbody>
<tr>
<td class="org-left">One</td>
<td class="org-left">Two</td>
<td class="org-left">Three</td>
<td class="org-left">Four</td>
</tr>

<tr>
<td class="org-left">Five</td>
<td class="org-left">Six</td>
<td class="org-left">Seven</td>
<td class="org-left">Eight</td>
</tr>

<tr>
<td class="org-left">Nine</td>
<td class="org-left">Ten</td>
<td class="org-left">Eleven</td>
<td class="org-left">Twelve</td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="outline-container-org6b843ac" class="outline-2">
<h2 id="org6b843ac">Code</h2>
<div class="outline-text-2" id="text-org6b843ac">
<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">publish-orgblog-draft</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>save-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>copy-file <span class="org-rainbow-delimiters-depth-3">(</span>buffer-file-name<span class="org-rainbow-delimiters-depth-3">)</span> <span class="org-string">"~/sites/orgblog/posts/"</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>delete-file <span class="org-rainbow-delimiters-depth-3">(</span>buffer-file-name<span class="org-rainbow-delimiters-depth-3">)</span> t<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>kill-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>dired <span class="org-string">"~/sites/orgblog/posts"</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>
</div>
</section>
<section id="outline-container-org71e786e" class="outline-2">
<h2 id="org71e786e">Graphics</h2>
<div class="outline-text-2" id="text-org71e786e">
</div>
<div id="outline-container-orgaeba427" class="outline-3">
<h3 id="orgaeba427">Image</h3>
<div class="outline-text-3" id="text-orgaeba427">
<div class="org-center">

<div id="org04d7003" class="figure">
<p><img src="https://randyridenour.net/posts/../images/posts/20170416-weeping-mary.jpg" alt="20170416-weeping-mary.jpg" width="100%" />
</p>
</div>
</div>
</div>
</div>
<div id="outline-container-org775e196" class="outline-3">
<h3 id="org775e196">Video</h3>
<div class="outline-text-3" id="text-org775e196">
<div class="org-center">
<p>
<iframe width="440" height="335" src="https://www.youtube.com/embed/voAntzB7EwE" frameborder="0" allowfullscreen>Change Blindness</iframe>
</p>
</div>

<div class="tagline" id="orgbb3c902">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/blog.html">Blog</a>
</p>

</div>
</div>
</div>
</section>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
This is some footnote text.
</p></div></div>

<div class="footdef"><sup><a id="fn.2" class="footnum" href="#fnr.2" role="doc-backlink">2</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Donec id elit non mi porta gravida at eget metus. Donec id elit non mi porta gravida at eget metus. Vestibulum id ligula porta felis euismod semper.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>LibriVox</title>
<link>https://randyridenour.net/posts/2015-06-12-librivox.html</link>
<pubDate>Fri, 12 Jun 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-06-12-librivox.html</guid>
<description>
<![CDATA[<p>
I just found <a href="https://librivox.org">LibriVox</a>, a collection of audiobooks, all public domain works read by volunteers. What is especially cool is that they can be subscribed to, and played by, your preferred podcast app.
</p>


<div class="tagline" id="org10a1e6f">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>A Christmas Poem</title>
<link>https://randyridenour.net/posts/2015-01-13-a-christmas-poem.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-a-christmas-poem.html</guid>
<description>
<![CDATA[<p>
A hundred mile journey<br>
from Nazareth to Bethlehem,<br>
taken at the whim<br>
of the emperor.<br>
</p>

<p>
And two people,<br>
who never counted to Caesar,<br>
walked for days<br>
to be counted by Caesar.
</p>

<p>
But Caesar rested easily in his palace,<br>
not feeling the earth tremble<br>
as the weight of the universe<br>
was laid in a manger.
</p>





<div class="tagline" id="org3dc90eb">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/poetry.html">Poetry</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Move to WordPress</title>
<link>https://randyridenour.net/posts/2018-02-10-move-to-wordpress.html</link>
<pubDate>Sat, 10 Feb 2018 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2018-02-10-move-to-wordpress.html</guid>
<description>
<![CDATA[<p>
I&rsquo;m trying to use the iPad for more things now. I liked using both Jekyll and Hugo for static sites, but WordPress is much easier to use on iOS. Years ago, I had a blog on <a href="https://wordpress.com">WordPress.com</a> that was still online, so I moved all of my posts there. Importing was a little tricky – I had to install a local copy of Wordpress, and import everything from my RSS feed. I then exported to a WordPress backup file, cleaned that up with Emacs, then re-imported to the local copy of WordPress. Once everything looked reasonably good, I imported it into WordPress.com. There are probably still some posts with formatting problems. I&rsquo;ll clean those up as I notice them.
</p>



<div class="tagline" id="org49daa9a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Freedom</title>
<link>https://randyridenour.net/posts/2016-05-03-prayer-for-freedom.html</link>
<pubDate>Tue, 03 May 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-05-03-prayer-for-freedom.html</guid>
<description>
<![CDATA[<p>
Almighty God,
</p>

<p>
Free us from the prisons<br>
that we have built<br>
with the bricks of<br>
our own expectations,<br>
trapped in cells<br>
with invisible walls<br>
that confine us only<br>
because we let them.
</p>

<p>
Deliver us from the temptation<br>
to trap others by presuming<br>
to know your will for them,<br>
and forgive us for the arrogance<br>
of thinking that we could ever<br>
constrain you with limits<br>
on what you can do,<br>
who you can save,<br>
and who you might call.
</p>

<p>
In the name of Christ,<br>
the one who gives freedom<br>
to all who truly seek it,
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="orgf0245d0">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>An Obscure Emacs Package: Yankpad</title>
<link>https://randyridenour.net/posts/2025-09-21-obscure-emacs-package-yankpad.html</link>
<pubDate>Sun, 21 Sep 2025 15:32:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-09-21-obscure-emacs-package-yankpad.html</guid>
<description>
<![CDATA[<p>
I&rsquo;ve really enjoyed participating in the <a href="https://www.emacswiki.org/emacs/Carnival">Emacs Carnival</a> that&rsquo;s been going on since June this year. I&rsquo;m particularly excited about reading the posts on this month&rsquo;s topic, <a href="https://goritskov.com/posts/obscure_packages.html">&ldquo;Obscure Packages.&rdquo;</a> There are some people who keep their initialization files lean and simple, but I&rsquo;ve never been one of those. I don&rsquo;t really care about Emacs startup time &mdash; as far as I&rsquo;m concerned, finding oneself obseessing over a few fractions of a second is a good sign that it&rsquo;s time to begin some kind of mindfulness practice. Even more, I&rsquo;ve found that adding packages is one of the best ways to leverage the work of others as I continue to make Emacs work for me, so I&rsquo;m always on the lookout for packages that others have found useful.
</p>

<p>
My choice is <a href="https://github.com/Kungsgeten/yankpad">Yankpad</a> by Erik Sjöstrand (<a href="https://github.com/Kungsgeten">Kungsgeten</a> on Github). I don&rsquo;t remember when I first found Yankpad, but I&rsquo;ve been using it for years. I don&rsquo;t really recall seeing it mentioned anywhere, even though I&rsquo;ve found it to be incredibly useful. Yankpad is a simple, but surprisingly powerful, package for inserting snippets. If you&rsquo;ve been using Emacs for any time at all, you&rsquo;re probably already using <a href="https://github.com/joaotavora/yasnippet">YASnippet</a> or <a href="https://github.com/minad/tempel">Tempel</a>, so why recommend another one? First, Sjöstrand never intended Yankpad to be a replacement for something like YASnippet. In fact, if YASnippet is installed, then Yankpad can use some of its features like tab stops and the ability to execute Elisp. The difference between YASnippet and Yankpad is primarily in how snippets are written and organized. 
</p>

<p>
In Yankpad, all snippets are items in one or more Org files. Creating a snippet, then, is as simple as adding some text to <code>yankpad.org</code>. Top-level headings are snippet categories, and a snippet is the body text under a lowest-level heading in the category.  <code>M-x yankpad-insert</code>, which I have bound to <code>&lt;f6&gt;</code>, displays the names of the category&rsquo;s snippets in the minibuffer for selection. Since a snippet is nothing more than a bit of text in an Org file, there&rsquo;s no reason not to make one even if it&rsquo;s only going to be used a few times. It&rsquo;s hardly more effort than saving some text to a register. The difference, though, is that the Yankpad snippet has a meaningful name, not just a single letter.
</p>

<p>
The real value of Yankpad, however, are the snippet categories. In YASnippet, the snippets are categorized by major-mode, so Org buffers have access to the Org mode snippets, LaTeX buffers use the LaTeX snippets, and so on. Yankpad can also use major-mode categories, but, more importantly for me, they can be organized by context or situation. Like Sjöstrand, I teach, and the bane of a professor&rsquo;s existence is writing grading comments. It&rsquo;s something that I don&rsquo;t have to do very often, so I don&rsquo;t really want to clutter up YASnippet with items that are only occasionally used. There&rsquo;s also no need to see all of the snippets for my symbolic logic class when I&rsquo;m grading epistemology papers. So, I have a separate category for a course that has comments pertaining only to that course, and a general &ldquo;grading&rdquo; category that includes comments that are not course-specific. The Yankpad file looks something like this:
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-level-1">* Grading</span>

<span class="org-org-level-2">** Proofread</span>

- Read through carefully for grammar and spelling errors.

<span class="org-org-level-1">* Intro</span>
<span class="org-org-drawer">:PROPERTIES:</span>
<span class="org-org-special-keyword">:INCLUDE:</span>  <span class="org-org-property-value">Grading</span>
<span class="org-org-drawer">:END:</span>

<span class="org-org-level-2">** Dualism</span>

- In the section on the nature of self, you should discuss dualism, materialism, etc.
</code></pre>
</div>

<p>
After selecting the Intro category, <code>&lt;f6&gt;</code> displays snippets from both the intro and the grading categories for selection, since I&rsquo;ve defined the intro category to include the grading category. Categories can also be project-specific for those who use Projectile or Project.el. Yankpad can do many more things than I&rsquo;ve described; if your snippet needs are simple, it may be all that you need. It won&rsquo;t replace YASnippet for me, mainly because of the ability to use <code>yasnippet-expand-snippet</code> in Elisp functions. Neither will YASnippet replace Yankpad, however. I&rsquo;ve found Yankpad to be very beneficial for making my grading workflow more efficient, now if someone would only develop something to motivate me to actually start grading.
</p>




<div class="tagline" id="orge15ea5c">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a> <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Epictetus on Learning</title>
<link>https://randyridenour.net/posts/2010-02-08-what-is-the-first-business-of-him-who.html</link>
<pubDate>Mon, 08 Feb 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-02-08-what-is-the-first-business-of-him-who.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
What is the first business of him who philosophizes? To throw away self-conceit. For it is impossible for anyone to begin to learn that which he thinks that he already knows.
</p>
</blockquote>

<p class="bigquote">
Epictetus, <i>Discourses</i>, Book II, Chapter 17.
</p>


<div class="tagline" id="org5739de0">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Thoughts on Trump and the Johnson Amendment</title>
<link>https://randyridenour.net/posts/2017-05-04-thoughts-on-the-johnson-amendment.html</link>
<pubDate>Thu, 04 May 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-05-04-thoughts-on-the-johnson-amendment.html</guid>
<description>
<![CDATA[<p>
Some thoughts on President Trump&rsquo;s Executive Order on &ldquo;Promoting  Free Speech and Religious Liberty&rdquo; that was recently issued:
</p>

<p>
First of all, the President&rsquo;s executive order doesn&rsquo;t change anything about religious leaders engaging in political action from the pulpit.  This is from section 2, the relevant part of the order:
</p>

<blockquote>
<p>
The Secretary of the Treasury shall ensure, to the extent permitted by law, that the Department of the Treasury does not take any adverse action against any individual, house of worship, or other religious organization on the basis that such individual or organization speaks or has spoken about moral or political issues from a religious perspective, where speech of similar character has, consistent with law, not ordinarily been treated as participation or intervention in a political campaign on behalf of (or in opposition to) a candidate for public office by the Department of the Treasury.
</p>
</blockquote>

<p>
All it says is that speech that has so far been considered consistent with the law should continue to be considered consistent with the law. Nothing changes, so foes of the Johnson Amendment should be severely disappointed. It is, like much of what seems to be coming from Washington these days, Shakespearean: &ldquo;full of sound and fury, signifying nothing.&rdquo;
</p>

<p>
Given recent discussions, it appears that the current law is severely misunderstood by many. Most political activity by churches is, and has always been, completely legal. Churches and leaders have always been allowed to speak on issues, legislation, and most matters of political concern. What pastors are not allowed to do is to campaign, in their role as pastors, for candidates. That is, they are to refrain from partisan campaigning in exchange for the tax-exempt status of their churches.
</p>

<p>
Regardless of Johnson&rsquo;s motivation for desiring this (which, knowing Johnson, was likely not altogether virtuous), it is a good thing. Granting tax-exempt status is subsidizing religious activity – churches, synagogues, and even mosques get services from the city for which they pay nothing, services like police and fire protection. For these free services, only one accommodation is required, that is to refrain from campaigning for candidates. 
</p>

<p>
The law in no way restricts the free speech rights of anyone. Churches are always welcome to give up their tax-exempt status. Churches should just not expect citizens to pay for their campaigning by means of that tax-exempt status. If the current law is changed, then note that citizens will be subsidizing, through the taxes which pay for police, fire departments, etc., the political campaigns of candidates that they do not support.
</p>


<div class="tagline" id="orgac4ec30">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Caring for Pets after the Rapture</title>
<link>https://randyridenour.net/posts/2009-10-23-caring-for-pets-after-the-rapture.html</link>
<pubDate>Fri, 23 Oct 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-10-23-caring-for-pets-after-the-rapture.html</guid>
<description>
<![CDATA[<p>
A colleague sent me this <a href="http://eternal-earthbound-pets.com/">link</a>. Just when I thought I had heard everything&hellip;.
</p>


<div class="tagline" id="org7f5fed9">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Schusterman Lecture</title>
<link>https://randyridenour.net/posts/2009-10-13-schusterman-lecture.html</link>
<pubDate>Tue, 13 Oct 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-10-13-schusterman-lecture.html</guid>
<description>
<![CDATA[<p>
Monday, October 19, is the Ninth Annual Schusterman Lecture in Jewish History and Traditions at Oklahoma Baptist University. Dr. Jacob Neusner will present two different, but related, lectures on comparing Gospels and Rabbinic writings, one at 10 a.m. and another at 7 p.m. Both lectures are in room 220 of the Geiger Center.
</p>

<p>
Dr. Neusner is the Distinguished Service Professor of the History and Theology of Judaism and Senior Fellow at the Institute of Advanced Theology at Bard College. He is also a member of the Institute for Advanced Study at Princeton and a life member of Clare Hall at Cambridge University. The lectures are free and open to the public.
</p>

<p>
He is the most published humanities scholar in the world, having published well over a thousand books and articles, including a twenty-two volume translation and commentary of the Babylonian Talmud.
</p>


<div class="tagline" id="org8818566">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Flannery O'Connor on Grace</title>
<link>https://randyridenour.net/posts/2025-03-27-flannery-oconnor-grace.html</link>
<pubDate>Thu, 27 Mar 2025 18:46:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-03-27-flannery-oconnor-grace.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
All human nature vigorously resists grace because grace changes us and the change is painful.
</p>
</blockquote>

<p class="bigquote">
Flannery O&rsquo;Connor
</p>


<div class="tagline" id="org30b1242">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Duty of A Philosopher</title>
<link>https://randyridenour.net/posts/2015-01-20-the-duty-of-a-philosopher.html</link>
<pubDate>Tue, 20 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-20-the-duty-of-a-philosopher.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Out of love for mankind, and out of despair at my embarrassing situation, seeing that I had accomplished nothing and was unable to make anything easier than it had already been made, and moved by a genuine interest in those who are dedicated to making everything easy, I conceived it as my task [the task of the philosopher] to create difficulties everywhere.
</p>
</blockquote>

<p class="bigquote">
Søren Kierkegaard, <i>Concluding Unscientific Postscript</i>
</p>


<div class="tagline" id="orgf9923a1">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Real Mover</title>
<link>https://randyridenour.net/posts/2016-06-29-the-real-mover.html</link>
<pubDate>Wed, 29 Jun 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-06-29-the-real-mover.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
It is not the horse that draws the cart, but the oats.
</p>
</blockquote>

<p class="bigquote">
Russian proverb
</p>


<div class="tagline" id="orgfd0694e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>John Gray on Science</title>
<link>https://randyridenour.net/posts/2025-08-02-john-gray-science.html</link>
<pubDate>Sat, 02 Aug 2025 05:28:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-08-02-john-gray-science.html</guid>
<description>
<![CDATA[<blockquote>
<p>
Science increases human power &mdash; and magnifies the flaws in human nature. It enables us to live longer and have higher living standards than in the past. At the same time it allows us to wreak destruction &mdash; on each other and the Earth &mdash; on a larger scale than ever before.
</p>
</blockquote>

<p class="source">
John Gray
</p>


<div class="tagline" id="org0cc3dcd">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/science.html">Science</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Betrayer</title>
<link>https://randyridenour.net/posts/2017-04-03-the-betrayer.html</link>
<pubDate>Mon, 03 Apr 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-04-03-the-betrayer.html</guid>
<description>
<![CDATA[<p>
With a kiss,<br>
Judas gave his Lord<br>
one last chance to be<br>
the Messiah of Judas&rsquo; dreams.
</p>

<p>
Am I no better than Judas,<br>
when I twist the words of the Lord<br>
and manipulate them for my own purposes?
</p>

<p>
Willing to betray the Lord,<br>
and for what?
</p>

<p>
Not even thirty pieces of silver.
</p>

<p>
Lord, have mercy.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org4d7709c">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Uselessness of Political Fact-Checking</title>
<link>https://randyridenour.net/posts/2016-10-20-the-uselessness-of-political-factchecking.html</link>
<pubDate>Thu, 20 Oct 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-10-20-the-uselessness-of-political-factchecking.html</guid>
<description>
<![CDATA[<p>
I&rsquo;ve decided that political fact-checking is largely useless. Either people completely ignore the work of fact-checkers, or the fact-checkers ignore the relevant facts. Today, I saw a claim that Clinton had leaked classified information about the nuclear response window. What was curious was that the post included a link to a <a href="http://www.snopes.com/clinton-four-minute-nuclear/">snopes.com</a> story explaining that the supposed leak was not classified, but was already public information. The person evidently failed to read the very story to which they had linked.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>

<p>
Now, I&rsquo;m seeing many claims that only 5.7% of Clinton Foundation donations go to charity.<sup><a id="fnr.2" class="footref" href="#fn.2" role="doc-backlink">2</a></sup> Unlike the claim about the classified leak, this is at least partly true. That is indeed the percentage that is given by the Foundation to other organizations that do charitable work. What it ignores is that most of the money is kept by the Foundation for the charitable work that it does directly. The Foundation spends 12% on overhead costs, compared to the average charity which spends nearly 37%<sup><a id="fnr.3" class="footref" href="#fn.3" role="doc-backlink">3</a></sup>. This earns the Clinton Foundation an &ldquo;A&rdquo; rating by the American Institute of Philanthropy&rsquo;s <a href="https://www.charitywatch.org/ratings-and-metrics/bill-hillary-chelsea-clinton-foundation/478">Charity Watch</a>. That doesn&rsquo;t mean that Clinton&rsquo;s claim that 90% of the Foundation&rsquo;s money goes to charitable causes and work is true, though. According to Charity Watch, it&rsquo;s only 88%. I suppose one could criticize Clinton for rounding up from 88% to 90%. That strikes me as a bit petty, but at least it would be true.
</p>

<div class="tagline" id="org456fa36">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a> <a href="https://randyridenour.net/posts/../tags/critical-thinking.html">Critical-Thinking</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
It is more than a bit ironic that the writers of the many stories expressing shock and outrage over Clinton&rsquo;s broadcast of the response time are broadcasting the time themselves. 
</p></div></div>

<div class="footdef"><sup><a id="fn.2" class="footnum" href="#fnr.2" role="doc-backlink">2</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
The first six pages of results from a Google search of &ldquo;Clinton 5.7%&rdquo; were entirely about this.
</p></div></div>

<div class="footdef"><sup><a id="fn.3" class="footnum" href="#fnr.3" role="doc-backlink">3</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
<a href="http://www.thenonprofittimes.com/news-articles/survey-charities-should-spend-23-on-overhead/">The NonProfit Times</a>.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Prayer for Orlando</title>
<link>https://randyridenour.net/posts/2016-06-12-prayer-for-orlando.html</link>
<pubDate>Sun, 12 Jun 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-06-12-prayer-for-orlando.html</guid>
<description>
<![CDATA[<p>
Lord Jesus,
</p>

<p>
On this day that we mourn<br>
the loss of so many whom you love,<br>
it is tempting to pray<br>
that you would return<br>
and take us from this world.
</p>

<p>
Tempting, because it shifts<br>
the burden to you,<br>
leaving nothing for us<br>
but escape, evasion, and excuse.
</p>

<p>
Yet you are not the God who excuses,<br>
but the God who redeems;<br>
not the God of escape,<br>
but the God of the cross.
</p>

<p>
You are not a passive God,<br>
and neither should we<br>
be a passive people.
</p>

<p>
So we pray,<br>
not because it is<br>
the only thing we can do,<br>
but because it is<br>
the first thing.
</p>

<p>
For what should follow,<br>
give us the wisdom to know it;<br>
grant us the courage to do it.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org95749f4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>International Aid and Religious Freedom</title>
<link>https://randyridenour.net/posts/2008-05-19-international-aid-and-religious-freedom.html</link>
<pubDate>Mon, 19 May 2008 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2008-05-19-international-aid-and-religious-freedom.html</guid>
<description>
<![CDATA[<p>
I am a Baptist who is committed to religious freedom, and I think that the separation of church and state is critical for maintaining religious freedom. I also believe in the value of the classical liberal tradition, in which everyone should have the freedom to choose their own values and act to achieve what they think is good, provided that it does not interfere with another&rsquo;s ability to do the same. So, I am generally suspicious of legislation that interferes with the liberties of other people when my religious beliefs provide the sole reason for favoring the proposed law.
</p>

<p>
I am, however, advocating that the country increase the amount of money that we spend on international aid, specifically aid that is designed to reduce poverty. Yesterday, I claimed that this is consistent with the teachings of Jesus, but even aside from religious motivations, such aid is in our national interest. One could liken it to the rebuilding of Europe and Japan following World War II. Post-war reconstruction was not only the morally right thing to do, it also had immense national security benefits.
</p>

<p>
This same point was made by National Security Advisor Stephen Hadley in an <a href="http://www.whitehouse.gov/news/releases/2008/02/20080204-5.html">address</a> to the Carnegie Endowment for International Peace in February. Let&rsquo;s not simply rest on our past achievements, though.
</p>


<div class="tagline" id="org10a9362">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Habitat</title>
<link>https://randyridenour.net/posts/2009-08-29-the-habitat-for-humanity-build-in-norman-im.html</link>
<pubDate>Sat, 29 Aug 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-08-29-the-habitat-for-humanity-build-in-norman-im.html</guid>
<description>
<![CDATA[<p>
The Habitat for Humanity build in Norman. I&rsquo;m getting lots of advice from David and Mitch.
</p>

<div class="org-center">

<figure id="orgdc77c70">
<img src="https://randyridenour.net/posts/../images/posts/habitat.jpg" alt="habitat.jpg" width="100%">

</figure>
</div>




<div class="tagline" id="org3246746">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Dancing Before God</title>
<link>https://randyridenour.net/posts/2016-01-30-dancing-before-god.html</link>
<pubDate>Sat, 30 Jan 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-01-30-dancing-before-god.html</guid>
<description>
<![CDATA[<p>
After reflecting on my time dancing during the service at Koinonia Baptist Church in Tamale, Ghana. There are pictures, there might even be some video.
</p>

<p>
God of joy,
</p>

<p>
Forgive me for the many times<br>
when what others were thinking<br>
was more important to me<br>
than expressing my praise to you.
</p>

<p>
Remove any inhibition<br>
that stands in my way,<br>
and may my heart be<br>
so filled with joy<br>
that I cannot help<br>
but to dance<br>
before the throne of God.
</p>

<p>
Amen
</p>


<div class="tagline" id="org14d4992">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Third Sunday of Easter</title>
<link>https://randyridenour.net/posts/2015-01-13-the-third-sunday-of-easter.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-third-sunday-of-easter.html</guid>
<description>
<![CDATA[<p>
<i>On the Tenth Anniversary of NorthHaven Church</i>
</p>

<p>
For those who have given much<br>
And have gone on to their eternal rest,<br>
We give thanks.
</p>

<p>
For those who labor joyfully<br>
So that others may see Jesus,<br>
We give thanks.
</p>

<p>
For both laughter and tears,<br>
When shared with those who love deeply,<br>
We give thanks.
</p>

<p>
And for a church where Christ is proclaimed<br>
Yet an Imam feels welcome,<br>
We give thanks.
</p>

<p>
<i>Amen</i>
</p>


<p>
&ldquo;Now that you have purified your souls by your obedience to the truth so that you have genuine mutual love, love one another deeply from the heart.&rdquo; (1 Peter 1:22)
</p>


<div class="tagline" id="orgcdd8147">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>A Baptism Prayer</title>
<link>https://randyridenour.net/posts/2016-04-03-a-baptism-prayer.html</link>
<pubDate>Sun, 03 Apr 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-04-03-a-baptism-prayer.html</guid>
<description>
<![CDATA[<p>
Thank you, Lord,<br>
for showing us that<br>
the Gospel still speaks,<br>
that the Spirit still calls,<br>
and that people still respond,
</p>

<p>
Today, it is one who,<br>
by the act of baptism,<br>
calls us to recover<br>
the excitement and hope<br>
of our first calling.
</p>

<p>
As her faith grows,<br>
so may ours also.
</p>

<p>
We can only dream of what<br>
you have in store for her,<br>
may the Church have the wisdom<br>
to at least not get in the way.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org0790387">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Diversity of Figurines</title>
<link>https://randyridenour.net/posts/2009-11-25-another-figurine-arrived-today-evidently-the.html</link>
<pubDate>Tue, 24 Nov 2009 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2009-11-25-another-figurine-arrived-today-evidently-the.html</guid>
<description>
<![CDATA[<p>
Another figurine arrived today. Evidently, the collection needed a little gender balance. Happy Thanksgiving to all of my extremely thoughtful Aesthetics students.
</p>

<div class="org-center">

<figure id="orgacdeb6b">
<img src="https://randyridenour.net/posts/../images/posts/gender-figurine.png" alt="gender-figurine.png" width="100%">

</figure>
</div>




<div class="tagline" id="org484031b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/aesthetics.html">Aesthetics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Evangelical Atheists</title>
<link>https://randyridenour.net/posts/2008-07-15-evangelical-atheists.html</link>
<pubDate>Mon, 14 Jul 2008 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2008-07-15-evangelical-atheists.html</guid>
<description>
<![CDATA[<p>
There is a very interesting article titled &ldquo;<a href="http://www.axess.se/english/2008/01/theme_scruton.php.htm%22%20title=%22Axess,%20a%20magazine%20for%20the%20liberal%20arts%20and%20social%20sciences">The Return of Religion</a>&rdquo; by <a href="http://www.roger-scruton.com/%22%20title=%22Roger%20Scruton%20-%20Writer%20and%20Philosopher">Roger Scruton</a> today in <i>Axess</i> explaining why the arguments of the the evangelical atheists like Dawkins, Hitchens, and Dennett fail to be persuasive.
</p>


<div class="tagline" id="org7980f14">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Permanent Impermanence</title>
<link>https://randyridenour.net/posts/2015-01-20-permanent-impermanence.html</link>
<pubDate>Mon, 19 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-20-permanent-impermanence.html</guid>
<description>
<![CDATA[<blockquote>
<p>
As I wrote recently, everything in existence is permanently impermanent. 
</p>
</blockquote>

<p class="source">
<a href="http://minimalmac.com/post/14973202531/the-only-standard-is-impermanence%20Minimal%20Mac" class="source">Patrick Rhone</a>
</p>

<p>
I detect shades of Heraclitus here.
</p>

<p>
Question: is this a paradox? Answer: probably not, unless Rhone is committed to the belief that nothing at all, even impermanence, is permanent. It is a good opportunity to do some analytic philosophy, though. 
</p>

<p>
What is permanence? Is it a real property, or is it a derivative analyzed in terms of the real properties of an object? What&rsquo;s the status of self-predication; must permanence itself be permanent? If there is nothing in existence that is permanent, then does that mean that abstract objects (numbers, sets, etc.) do not exist? Does that commit us to something like subsistence for abstract entities? Does permanence mean simply that an object always exists, or does it also mean that an object never changes? If the first, then most, if not all, theists would reject the claim that nothing in existence is permanent. If the second, then we would have to at least reject the doctrine of the immutability of God.
</p>

<p>
Here&rsquo;s my first attempt to symbolize permanence, attempting to say that that an object is permanent just in case for any property that the object has any time, it has that property at all times.
</p>



<p>

<math xmlns="http://www.w3.org/1998/Math/MathML" id="S0.Ex1.m1.1" class="ltx_math_unparsed" alttext="\forall x\{\textrm{Px}\leftrightarrow[\forall\textrm{F}\forall t_{1}(\textrm{F%&#10;}xt_{1}\rightarrow\forall t_{2}\textrm{F}xt_{2})]\}" display="block">
  <semantics id="S0.Ex1.m1.1a">
    <mrow id="S0.Ex1.m1.1b">
      <mo rspace="0.167em" id="S0.Ex1.m1.1.1">∀</mo>
      <mi id="S0.Ex1.m1.1.2">x</mi>
      <mrow id="S0.Ex1.m1.1.3">
        <mo stretchy="false" id="S0.Ex1.m1.1.3.1">{</mo>
        <mtext id="S0.Ex1.m1.1.3.2">Px</mtext>
        <mo stretchy="false" id="S0.Ex1.m1.1.3.3">↔</mo>
        <mrow id="S0.Ex1.m1.1.3.4">
          <mo stretchy="false" id="S0.Ex1.m1.1.3.4.1">[</mo>
          <mo rspace="0.167em" id="S0.Ex1.m1.1.3.4.2">∀</mo>
          <mtext id="S0.Ex1.m1.1.3.4.3">F</mtext>
          <mo lspace="0.167em" rspace="0.167em" id="S0.Ex1.m1.1.3.4.4">∀</mo>
          <msub id="S0.Ex1.m1.1.3.4.5">
            <mi id="S0.Ex1.m1.1.3.4.5.2">t</mi>
            <mn id="S0.Ex1.m1.1.3.4.5.3">1</mn>
          </msub>
          <mrow id="S0.Ex1.m1.1.3.4.6">
            <mo stretchy="false" id="S0.Ex1.m1.1.3.4.6.1">(</mo>
            <mtext id="S0.Ex1.m1.1.3.4.6.2">F</mtext>
            <mi id="S0.Ex1.m1.1.3.4.6.3">x</mi>
            <msub id="S0.Ex1.m1.1.3.4.6.4">
              <mi id="S0.Ex1.m1.1.3.4.6.4.2">t</mi>
              <mn id="S0.Ex1.m1.1.3.4.6.4.3">1</mn>
            </msub>
            <mo stretchy="false" id="S0.Ex1.m1.1.3.4.6.5">→</mo>
            <mo rspace="0.167em" id="S0.Ex1.m1.1.3.4.6.6">∀</mo>
            <msub id="S0.Ex1.m1.1.3.4.6.7">
              <mi id="S0.Ex1.m1.1.3.4.6.7.2">t</mi>
              <mn id="S0.Ex1.m1.1.3.4.6.7.3">2</mn>
            </msub>
            <mtext id="S0.Ex1.m1.1.3.4.6.8">F</mtext>
            <mi id="S0.Ex1.m1.1.3.4.6.9">x</mi>
            <msub id="S0.Ex1.m1.1.3.4.6.10">
              <mi id="S0.Ex1.m1.1.3.4.6.10.2">t</mi>
              <mn id="S0.Ex1.m1.1.3.4.6.10.3">2</mn>
            </msub>
            <mo stretchy="false" id="S0.Ex1.m1.1.3.4.6.11">)</mo>
          </mrow>
          <mo stretchy="false" id="S0.Ex1.m1.1.3.4.7">]</mo>
        </mrow>
        <mo stretchy="false" id="S0.Ex1.m1.1.3.5">}</mo>
      </mrow>
    </mrow>
    <annotation encoding="application/x-tex" id="S0.Ex1.m1.1c">\forall x\{\textrm{Px}\leftrightarrow[\forall\textrm{F}\forall t_{1}(\textrm{F%
}xt_{1}\rightarrow\forall t_{2}\textrm{F}xt_{2})]\}</annotation>
  </semantics>
</math>

</p>


<p>
This is why people hate analytic philosophers.
</p>



<div class="tagline" id="org5521ae5">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a> <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Academic Reference Software</title>
<link>https://randyridenour.net/posts/2008-10-24-academic-reference-software.html</link>
<pubDate>Fri, 24 Oct 2008 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2008-10-24-academic-reference-software.html</guid>
<description>
<![CDATA[<p>
If you have writing projects that require footnotes, endnotes, bibliographies, or other kinds of references, you should consider getting some kind of reference manager software. Short papers with a few references are easy enough to manage with a word processor alone, but significant projects can easily be overwhelming. There is enough pain in academic writing that one does not need the extra suffering caused by having to make sure that every work cited is included in the bibliography, that the entries are all in alphabetical order, and that the notes and bibliography entries are all in the right format. A reference manager can do all of this automatically. Unfortunately, they&rsquo;re generally very expensive.
</p>

<p>
The good news is that <a href="http://www.thirdstreetsoftware.com/site/introduction.html%22%20title=%22The%20Academic%20Reference%20Manager%20for%20Mac%20OS%20X">Third Street Software</a> just released an undergraduate edition of its reference manager software, Sente. The individual library size is limited to 250 entries, but that should be sufficient for most student writing. It&rsquo;s also Mac OS X only, but now you have one more way to convince you parents that you really need that new Mac notebook: &ldquo;I know it seems more expensive now, but I promise that it will save you money in the long run&hellip;.&rdquo; Good luck, let me know if it works.
</p>


<div class="tagline" id="org9b82809">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Calculating the End — Again and Again</title>
<link>https://randyridenour.net/posts/2011-05-13-calculating-the-end-again-and-again.html</link>
<pubDate>Fri, 13 May 2011 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2011-05-13-calculating-the-end-again-and-again.html</guid>
<description>
<![CDATA[<p>
Apparently, there are many discussing what to expect on May 21. Of course, it&rsquo;s not the first time that the end of the world has been predicted. Bill Leonard, professor of church history at Wake Forest, recently posted an article at <a href="http://www.abpnews.com/content/view/6387/9/">Associated Baptist Press</a>  reviewing past mistaken predictions. Note the final two paragraphs:
</p>

<blockquote>
<p>
For now, let’s keep last things last. The end will come, for individuals and ultimately for the entire enterprise, but perhaps the answers lie, not in escapist theories, but with dying whales, vanishing forests, polluted water and rising ozone, “the fire next time.” We recalculate yet another “Great Disappointment,” but refuse to listen to what the world and its non-human inhabitants are telling us. We hope for “peace and security,” plotting our escape as the planet cries in pain, edging toward its own end.
</p>

<p>
So if there is an ounce of Jesus in any of us, let’s opt out of the Rapture and stay right here to the bitter end, because there is still justice to be done and too much good to be accomplished to forsake this world, even in Jesus’ name. For Jesus’ sake let’s stay behind, loving God with all our hearts, and if we can muster it, loving our neighbors as ourselves.  What Rapture!
</p>
</blockquote>

<p>
Well said.
</p>


<div class="tagline" id="org512883c">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>National Procrastination Week</title>
<link>https://randyridenour.net/posts/2010-03-04-national-procrastination-week.html</link>
<pubDate>Thu, 04 Mar 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-03-04-national-procrastination-week.html</guid>
<description>
<![CDATA[<p>
It&rsquo;s National Procrastination Week. Of course, I&rsquo;ve put this post off until Thursday.
</p>


<div class="tagline" id="org6fa6d81">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for a Life that Affirms</title>
<link>https://randyridenour.net/posts/2015-02-11-prayer-for-a-life-that-affirms.html</link>
<pubDate>Wed, 11 Feb 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-02-11-prayer-for-a-life-that-affirms.html</guid>
<description>
<![CDATA[<p>
Casie Trotter sent me a link to a wonderful passage from Nietzsche&rsquo;s 1882 book, <i>The Gay Science</i>. This is aphorism 276, his resolution for that year:
</p>

<blockquote>
<p>
I want to learn more and more how to see what is necessary in things as what is beautiful in them — thus I will be one of those who make things beautiful&hellip; I do not want to wage war against ugliness. I do not want to accuse; I do not even want to accuse the accusers&hellip; And all in all and on the whole: some day I want only to be a Yes-sayer!
</p>
</blockquote>

<p>
I&rsquo;m not sure what Nietzsche would think of his work prompting this week&rsquo;s prayer, but here it is anyway:
</p>

<p>
God of beauty and wonder,
</p>

<p>
Let me be known<br>
not for what I found ugly,<br>
but for what I found beautiful.
</p>

<p>
Not for what was harmed,<br>
but for what was healed.
</p>

<p>
Not for what I tore down,<br>
but for what I built up.
</p>

<p>
Not for what I despised,<br>
but for all that I loved.
</p>

<p>
In the name of the one<br>
who sees the beauty in us all,
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org19574f1">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Danto on Warhol</title>
<link>https://randyridenour.net/posts/2009-09-29-the-article-quotes-danto-calling-warhol-the.html</link>
<pubDate>Tue, 29 Sep 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-09-29-the-article-quotes-danto-calling-warhol-the.html</guid>
<description>
<![CDATA[<p>
<a href="https://www.nybooks.com/articles/23153">This article</a> quotes Danto calling Warhol &ldquo;the nearest thing to a philosophical genius the history of art has produced.&rdquo;
</p>


<div class="tagline" id="orgf155945">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/aesthetics.html">Aesthetics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Lola and the Avocado</title>
<link>https://randyridenour.net/posts/2009-09-07-the-dog-just-swallowed-a-whole-avocado-pit-i-feel.html</link>
<pubDate>Mon, 07 Sep 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-09-07-the-dog-just-swallowed-a-whole-avocado-pit-i-feel.html</guid>
<description>
<![CDATA[<p>
The dog just swallowed a whole avocado pit. I feel an expensive vet bill in my future.
</p>



<div class="tagline" id="org43a4b54">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Charge to the Church</title>
<link>https://randyridenour.net/posts/2015-01-13-charge-to-the-church.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-charge-to-the-church.html</guid>
<description>
<![CDATA[<p>
<i>For the NorthHaven Church Deacon Ordination Service</i><br>
<i>April 27, 2014</i>
</p>

<p>
I have been asked to deliver a charge to the congregation on this occasion. A reasonable question to ask is why should the church be tasked with anything in the event of a deacon ordination? It is the new deacons that have been tasked to do something; the church is simply the recipient of those actions, isn&rsquo;t it? So, what is the point of a charge to the church?
</p>

<p>
Every charge to the church that I&rsquo;ve heard has contained two important components, the charge to pray for deacons and their families and to support them in their ministry. Prayer is important to mention, but I won&rsquo;t dwell on it, for I know that you have already begun to pray for these new deacons, just as you have been praying for our deacons ever since we established NorthHaven&rsquo;s deacon ministry.
</p>

<p>
Instead, I&rsquo;d like to focus on the second aspect of the charge, the charge to support the deacons in their ministry. How, besides prayer, do we support those who minister, especially when they are ministering to us?
</p>

<p>
There are two crucial ways, both exemplified by events in the life of Jesus. In John chapter 12, Mary, the sister of Martha and Lazarus, anointed Jesus&rsquo; feet with a pound of costly perfume. When one of the disciples objected, Jesus defended her action. Jesus allowed Mary to minister to him. Too often, though, we are like Peter, who, when Jesus knelt before him to wash his feet, initially refused Jesus the opportunity to minister. We refuse ministry for many reasons, sometimes pride, sometimes a sense of unworthiness, but often, I suspect, because of a feeling of self-sufficiency.
</p>

<p>
The most important way to support those who minister is to allow them to be what God has called them to be. Despite our pride, none of us are ever really self-sufficient. If we were honest, we would have to confess that we are all, at different times, broken people in need of ministry. When we refuse ministry from one who has been called by God to serve, we, like Peter, refuse ministry from the Lord himself.
</p>

<p>
So, we best support our deacons by allowing them to minister to our needs, but we must also lovingly help them understand those needs. In Mark 10, as Jesus was leaving Jericho on his final journey to Jerusalem, a blind man called out &ldquo;Son of David, have mercy on me.&rdquo; Jesus commanded the disciples to bring the man to him, then asked him directly, &ldquo;What do you want me to do for you?&rdquo; The man was neither too afraid, nor too embarrassed, to reply. James was speaking of other things when he said this, but his advice applies to ministry as well — you have not because you ask not. I have always been grateful for those who gently taught me how I should pray for them, and showed me the ways I could encourage them. Their guidance turned my fumbling attempts at ministry into something that we both needed.
</p>

<p>
We tend to think of ministry as something that one person does for another, in other words, we think that there is one that actively gives and another that passively receives.  True ministry, though, depends as much on the one who receives as the one who provides. True ministry occurs when broken people together find healing in a community through which flows love, grace, hope, and faith. When we empower people to become what God has called them to be, a miracle happens, the Lord himself comes to us, walks among us, touches and heals us. May we, by God&rsquo;s grace, be a community in which he is welcome. Let this be the charge. Will you accept?
</p>



<div class="tagline" id="orgdc4dfa7">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Stay Warm!</title>
<link>https://randyridenour.net/posts/2025-01-05-stay-warm.html</link>
<pubDate>Sun, 05 Jan 2025 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2025-01-05-stay-warm.html</guid>
<description>
<![CDATA[<p>
A huge winter storm stretching from Kansas to the Atlantic coast begins today. Homelessness is an every-increasing condition in the country &mdash; praying that everyone can stay warm and safe.
</p>

<div class="tagline" id="org5ff5aab">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Thanksgiving Prayer</title>
<link>https://randyridenour.net/posts/2015-11-26-thanksgiving-prayer.html</link>
<pubDate>Thu, 26 Nov 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-11-26-thanksgiving-prayer.html</guid>
<description>
<![CDATA[<p>
Gracious Father,
</p>

<p>
There are those today<br>
who struggle to give thanks<br>
because of loss,<br>
illness,<br>
separation,<br>
or grief.
</p>

<p>
May their spirits<br>
be comforted with<br>
the knowledge that<br>
our thoughts and prayers<br>
are with them today.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org8da29f1">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Back to Emacs Prelude</title>
<link>https://randyridenour.net/posts/2015-06-02-back-to-emacs-prelude.html</link>
<pubDate>Tue, 02 Jun 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-06-02-back-to-emacs-prelude.html</guid>
<description>
<![CDATA[<p>
As I said a few days ago, I switch my Emacs config files to Kieran Healy&rsquo;s Starter Kit. I really liked the use of Org-mode for the config, and especially the LaTeX and RefTeX configuration. I still like Batsov&rsquo;s Prelude, though, and there were certainly some things that I missed greatly.
</p>

<p>
This afternoon, I found Mike McFarland&rsquo;s <a href="http://thrownforaloop.com/posts/emacs-configuration/">Emacs configuration</a> online. He uses Prelude with a personal configuration in Org-mode. I have switched back, and brought in much of Kieran&rsquo;s LaTeX configuration.
</p>

<div class="tagline" id="orgee90bb4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Happy Birthday, Sheri!</title>
<link>https://randyridenour.net/posts/2015-06-23-happy-birthday-sheri.html</link>
<pubDate>Tue, 23 Jun 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-06-23-happy-birthday-sheri.html</guid>
<description>
<![CDATA[<p>
As the moon revolves around the earth,<br>
and the earth around the sun,<br>
so my life revolves around you,<br>
my love.
</p>



<pre class="example" id="org22f6856">

 .----------------.
| .--------------. |
| |  ____  ____  | |
| | |_   ||   _| | |
| |   | |__| |   | |
| |   |  __  |   | |
| |  _| |  | |_  | |
| | |____||____| | |
| |              | |
| '--------------' |
 '----------------'
 .----------------.
| .--------------. |
| |      __      | |
| |     /  \     | |
| |    / /\ \    | |
| |   / ____ \   | |
| | _/ /    \ \_ | |
| ||____|  |____|| |
| |              | |
| '--------------' |
 '----------------'
 .----------------.
| .--------------. |
| |   ______     | |
| |  |_   __ \   | |
| |    | |__) |  | |
| |    |  ___/   | |
| |   _| |_      | |
| |  |_____|     | |
| |              | |
| '--------------' |
 '----------------'
 .----------------.
| .--------------. |
| |   ______     | |
| |  |_   __ \   | |
| |    | |__) |  | |
| |    |  ___/   | |
| |   _| |_      | |
| |  |_____|     | |
| |              | |
| '--------------' |
 '----------------'
 .----------------.
| .--------------. |
| |  ____  ____  | |
| | |_  _||_  _| | |
| |   \ \  / /   | |
| |    \ \/ /    | |
| |    _|  |_    | |
| |   |______|   | |
| |              | |
| '--------------' |
'----------------'



 .----------------.
| .--------------. |
| |   ______     | |
| |  |_   _ \    | |
| |    | |_) |   | |
| |    |  __'.   | |
| |   _| |__) |  | |
| |  |_______/   | |
| |              | |
| '--------------' |
 '----------------'
 .----------------.
| .--------------. |
| |     _____    | |
| |    |_   _|   | |
| |      | |     | |
| |      | |     | |
| |     _| |_    | |
| |    |_____|   | |
| |              | |
| '--------------' |
 '----------------'
 .----------------.
| .--------------. |
| |  _______     | |
| | |_   __ \    | |
| |   | |__) |   | |
| |   |  __ /    | |
| |  _| |  \ \_  | |
| | |____| |___| | |
| |              | |
| '--------------' |
 '----------------'
 .----------------.
| .--------------. |
| |  _________   | |
| | |  _   _  |  | |
| | |_/ | | \_|  | |
| |     | |      | |
| |    _| |_     | |
| |   |_____|    | |
| |              | |
| '--------------' |
 '----------------'
 .----------------.
| .--------------. |
| |  ____  ____  | |
| | |_   ||   _| | |
| |   | |__| |   | |
| |   |  __  |   | |
| |  _| |  | |_  | |
| | |____||____| | |
| |              | |
| '--------------' |
 '----------------'
 .----------------.
| .--------------. |
| |  ________    | |
| | |_   ___ `.  | |
| |   | |   `. \ | |
| |   | |    | | | |
| |  _| |___.' / | |
| | |________.'  | |
| |              | |
| '--------------' |
 '----------------'
 .----------------.
| .--------------. |
| |      __      | |
| |     /  \     | |
| |    / /\ \    | |
| |   / ____ \   | |
| | _/ /    \ \_ | |
| ||____|  |____|| |
| |              | |
| '--------------' |
 '----------------'
 .----------------.
| .--------------. |
| |  ____  ____  | |
| | |_  _||_  _| | |
| |   \ \  / /   | |
| |    \ \/ /    | |
| |    _|  |_    | |
| |   |______|   | |
| |              | |
| '--------------' |
 '----------------'
 .----------------.
| .--------------. |
| |              | |
| |      _       | |
| |     | |      | |
| |     | |      | |
| |     | |      | |
| |     |_|      | |
| |     (_)      | |
| '--------------' |
 '----------------'
</pre>


<div class="tagline" id="org20d7a41">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>For Losses Endured</title>
<link>https://randyridenour.net/posts/2015-01-13-for-losses-endured.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-for-losses-endured.html</guid>
<description>
<![CDATA[<p>
Heartbreak and hope<br>
Must travel the same road,<br>
Walking hand in hand,<br>
Searching for the promised land.
</p>


<div class="tagline" id="orgaf9d04b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/poetry.html">Poetry</a>
</p>

</div>
]]>
</description></item>
<item>
<title>On Not Understanding Prayer</title>
<link>https://randyridenour.net/posts/2010-12-01-on-not-understanding-prayer.html</link>
<pubDate>Tue, 30 Nov 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-12-01-on-not-understanding-prayer.html</guid>
<description>
<![CDATA[<p>
From <a href="http://www.ethicsdaily.com/news.php?viewStory=17082">EthicsDaily.com</a>
</p>


<div class="tagline" id="org8304bd2">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Favorite Bad Amazon Review</title>
<link>https://randyridenour.net/posts/2017-05-18-favorite-bad-amazon-review.html</link>
<pubDate>Thu, 18 May 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-05-18-favorite-bad-amazon-review.html</guid>
<description>
<![CDATA[<p>
This is now my favorite 1-star book review on Amazon. It&rsquo;s a review of <i>R For Dummies</i>, a book on the R statistics programming language: 
</p>

<blockquote>
<p>
If you&rsquo;re looking for a book to explain the letter &ldquo;R&rdquo; to you, keep looking, this isn&rsquo;t it.
</p>
</blockquote>

<p>
I hope that person eventually found what they needed.
</p>


<div class="tagline" id="org7776f70">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>For Those Who Are Labeled</title>
<link>https://randyridenour.net/posts/2016-04-26-rejecting-labels.html</link>
<pubDate>Tue, 26 Apr 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-04-26-rejecting-labels.html</guid>
<description>
<![CDATA[<p>
Almighty God,<br>
Lord of all,<br>
both the actual<br>
and the possible,
</p>

<p>
I am indignant when<br>
labeled by others,<br>
put into a box<br>
built by those<br>
with no idea of<br>
who I really am.
</p>

<p>
And so I define myself,<br>
enjoying my freedom<br>
to choose my own labels,<br>
but even I have no idea<br>
of what you will create<br>
with me in the future.<br>
</p>

<p>
Lord, help me see that<br>
labels that are chosen<br>
are no less limiting than<br>
those that are imposed,
</p>

<p>
And what I am is<br>
far less important<br>
than what I can be<br>
by the grace of God.
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="org2100c38">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Apostolic Living</title>
<link>https://randyridenour.net/posts/2015-03-08-apostolic-living.html</link>
<pubDate>Sun, 08 Mar 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-03-08-apostolic-living.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
We profess to be strangers and pilgrims, seeking after a country of our own, yet we settle down in the most un-stranger-like fashion, exactly as if we were quite at home and meant to stay as long as we could. I don&rsquo;t wonder apostolic miracles have died. Apostolic living certainly has.
</p>
</blockquote>

<p class="bigquote">
Amy Carmichael, <i>Side by Side</i>
</p>


<div class="tagline" id="orgf5ce88f">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Please!</title>
<link>https://randyridenour.net/posts/2010-03-29-people-have-always-wanted-philosophers-to-provide.html</link>
<pubDate>Mon, 29 Mar 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-03-29-people-have-always-wanted-philosophers-to-provide.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
People have always wanted philosophers to provide digestible wisdom, yet it is as true now as it was in Plato’s time that disciplined thinking is hard. So next time you sit next to a philosopher on a plane, talk about the movie, not the meaning of life.
</p>
</blockquote>

<p class="bigquote">
<a href="http://www.moreintelligentlife.com/content/ideas/anthony-gottlieb/what-do-philosophers-believe" class="bigquote">Anthony Gottlieb</a>
</p>


<div class="tagline" id="org2242646">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Change Blindness</title>
<link>https://randyridenour.net/posts/2009-12-14-another-change-blindness-demonstration-i-have-to.html</link>
<pubDate>Mon, 14 Dec 2009 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2009-12-14-another-change-blindness-demonstration-i-have-to.html</guid>
<description>
<![CDATA[<p>
Another change blindness demonstration. I have to admit that this one fooled me.
</p>

<div class="org-center">
<p>
<iframe width="440" height="335" src="https://www.youtube.com/embed/voAntzB7EwE" frameborder="0" allowfullscreen>Change Blindness</iframe>
</p>
</div>


<div class="tagline" id="org4073ea4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/critical-thinking.html">Critical-Thinking</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Seeing Christ</title>
<link>https://randyridenour.net/posts/2025-12-01-seeing-christ.html</link>
<pubDate>Mon, 01 Dec 2025 05:21:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2025-12-01-seeing-christ.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Those who cannot see Christ in the poor are atheists indeed.
</p>
</blockquote>

<p class="bigquote">
Dorothy Day
</p>


<div class="tagline" id="orgbd58e94">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Messianic Delusions</title>
<link>https://randyridenour.net/posts/2010-06-09-messianic-delusions.html</link>
<pubDate>Wed, 09 Jun 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-06-09-messianic-delusions.html</guid>
<description>
<![CDATA[<p>
From <i>Slate</i>, <a href="http://www.slate.com/id/2255105/">interesting book</a> about treating three men who each believed they were Jesus.
</p>


<div class="tagline" id="org090696b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Doubt and Defense</title>
<link>https://randyridenour.net/posts/2025-07-10-doubt-defense.html</link>
<pubDate>Thu, 10 Jul 2025 08:10:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-07-10-doubt-defense.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
We are sometimes most pious in the ways we doubt our beliefs, and most blasphemous in the ways we defend them.
</p>
</blockquote>

<p class="bigquote">
<a href="https://www.chronicle.com/article/were-the-1980s-a-golden-age-of-religious-art?" class="bigquote">Phil Christman</a>
</p>


<div class="tagline" id="org6e84afb">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for the Kingdom</title>
<link>https://randyridenour.net/posts/2015-07-12-prayer-for-the-kingdom.html</link>
<pubDate>Sun, 12 Jul 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-07-12-prayer-for-the-kingdom.html</guid>
<description>
<![CDATA[<p>
God of Hope,
</p>

<p>
My lips say,<br>
&ldquo;Thy Kingdom come,<br>
Thy will be done&hellip;,&rdquo;
</p>

<p>
But my heart says,
</p>

<p>
&ldquo;My will,<br>
my world,<br>
and my way.&rdquo;
</p>

<p>
How can I pray for your Kingdom,<br>
when I am not yet willing<br>
to relinquish my own?
</p>

<p>
Loosen my grip on myself,<br>
that I may open my arms<br>
to embrace your vision<br>
for this world.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgae650b1">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>On the Use of Political Pejoratives</title>
<link>https://randyridenour.net/posts/2020-07-29-on-the-use-of-political-pejoratives.html</link>
<pubDate>Wed, 29 Jul 2020 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2020-07-29-on-the-use-of-political-pejoratives.html</guid>
<description>
<![CDATA[<p>
Reading <a href="https://twitter.com/thedocfile/status/1288116751083790339?s=20">this tweet</a> by Luke Dockery prompted some thoughts on uses of the terms &rsquo;liberal&rsquo; and &rsquo;conservative&rsquo;.
</p>

<p>
Claims like &ldquo;racism has deeply-rooted, ongoing effects&rdquo; and &ldquo;masks are helpful in limiting the spread of COVID&rdquo; are true or false, not liberal or conservative. Assuming realism, the position that reality is what it is, independent of our beliefs, desires, etc., believing one of these claims does not, in itself, make a person either liberal or conservative, but only right or wrong with respect to the relevant facts.
</p>

<p>
Uses of the terms, &rsquo;liberal&rsquo; and &rsquo;conservative&rsquo; seem to me to be so different now than what they traditionally were, that I&rsquo;m not sure what they even mean anymore. Maybe it&rsquo;s best to think of them as frameworks of fundamental commitments used to justify normative claims about political structures. If so, what makes one a liberal or conservative is not so much the normative beliefs that are held, but the reasons one has for holding those beliefs.
</p>

<p>
I&rsquo;m confident that there are normative claims that are logically incompatible with a given set of reasons, but it&rsquo;s important to understand that many normative claims can be justified on several different sets of reasons. So, both a conservative can reasonably believe something that is traditionally associated with liberalism, but believe it for different reasons than a liberal might. A good example is the belief that we should preserve the environment. A traditionally conservative reason for environmentalism would be the commitment to a Burkean social contract that includes, not just the present generation, but past and future ones as well, such that no single generation is a tyrant over others.
</p>

<p>
A rational conservative is unlikely to ever advocate abolishing the police, because another traditional central conservative doctrine is a commitment to established laws and institutions, insofar as they have served us well in the past. A conservative could, however, advocate &ldquo;defunding&rdquo; the police, on some proposed meanings of defunding — that is, making changes to existing police forces insofar as they have not served us well. (I grant that &rsquo;defunding&rsquo; is an unfortunate term, but to assume that everyone means &ldquo;completely defunding&rdquo;, especially when it has been made clear that they do not, is to commit a straw man fallacy.)
</p>

<p>
That means that, for most normative claims, one cannot know if a person who holds them is a liberal or conservative unless one knows the reasons for which the claims are believed. Which means that inferences like &ldquo;You believe X, therefore you are a Z&rdquo; are rarely, if ever, examples of good reasoning. What is needed is &ldquo;You believe X for the reason that Y, therefore you are a Z.&rdquo; Unfortunately, even when we reason like this, the reasons are often simply attributed to the interlocutor, not gained from them in dialogue. A memorable line from a former colleague is relevant here: &ldquo;Labels are libel.&rdquo;
</p>

<p>
For non-normative claims, like the ones above about racism and the use of masks, the important question is not whether holding them makes one a conservative or liberal. The important question is whether they are true. Our responses to the facts may be liberal or conservative, but the facts themselves are neither. So, in both cases, the normative and the non-normative, the reasonable thing to do when a person claims something is not to immediately label them, the reasonable thing to do is to engage in dialogue, to discover the reasons, or evidence, for the claim.
</p>

<p>
What is going on when a person says, &ldquo;You believe X, therefore you are a Z&rdquo;? I can think of three possibilities, ranging from the best to the worst, although none are good:
</p>

<ol class="org-ol">
<li>It is a charge of cognitive bias. There is no doubt that features of our particular psychologies, such as our beliefs, desires, emotional attitudes, etc., incline us to believe certain things. We consider these things to be cognitive biases to the extent that they incline us to believe falsehoods. So, again, the important question is not, ultimately, what biases tend to result in this belief, but whether the belief is true. Even more, imagine that you believe something only because you are biased to do so. That, in itself, does not give me good reason to dismiss your belief as false. Just because you have no good reasons for the belief does not imply that there are no good reasons for it. (Incidentally, one of the best ways to diminish the role that our biases are playing is to engage in honest, open dialogue with people who disagree with us.)</li>
<li>It is a case of an ad hominem fallacy. &ldquo;Since you believe X, you are a Z, and I shouldn&rsquo;t believe anything that a Z says, include your claim of X.&rdquo; Dismissing someone&rsquo;s belief by labeling the person as a liberal or conservative is an often persuasive ad hominem, but it is an hominem nonetheless. Ad hominems have their usefulness, however, especially when one doesn&rsquo;t have good evidence for one&rsquo;s own position.</li>
<li>A third reason for dismissing a claim as false by labeling the speaker as liberal or conservative is because it&rsquo;s simply not the way I want the world to be. This, unfortunately, seems to me to be more and more common. Consider one of the claims above, &ldquo;masks are helpful in limiting the spread of COVID.&rdquo; Evaluating a hypothesis is a function of two things, initial plausibility and confirmation by evidence. I&rsquo;ll go out on a limb here and say that any reasonable person should assess the initial plausibility of the claim as very high for two reasons. First, it&rsquo;s a relatively weak claim — it does not claim that mask-wearing completely prevents COVID, but only that it is helpful in limiting its spread. Second, COVID is a respiratory disease; does it not make sense that wearing masks covering our noses and mouths would limit the spread of respiratory diseases? If not, then why cover our mouths when we sneeze, simply because it is polite? A high initial plausibility of a hypothesis does not guarantee that the hypothesis is true, but it does mean that greater evidence would be required to show that it is false. So, responses like, &ldquo;this can&rsquo;t be true, because one respectable scientist is saying that&hellip;&rdquo; or &ldquo;this can&rsquo;t be true, becuase there is one study showing that&hellip;&rdquo; are simply not enough. It strikes me as more likely that claims like this are rejected because we simply don&rsquo;t like the inconvenience of wearing masks. This, however, is a kind of naïve anti-realism, demanding that the world conform to the way I want it to be. This is especially unfortunate for conservatives, for one thing that conservatives formerly prided themselves on was their commitment to realism, by recognizing that we have to deal with the world as it is, not simply the world as we want it to be.</li>
</ol>

<p>
A final point: it is useful to be able to sort beliefs, positions, etc. into typological categories. Such categories help us to predict behavior and better understand each other. It&rsquo;s important to realize that these categories, though, are simply models, and that models are, at best, approximations of the landscape of reality, and, as approximations, will always have exceptions. Once those category terms become pejoratives, it strikes me that they are no longer useful for anything except for asserting power — the power to create a world that conforms to my desires, or the power to make others believe what I want them to, regardless of the evidence. The first is not a power that we finite beings have. The second is something we might have, but shouldn&rsquo;t exercise.
</p>
]]>
</description></item>
<item>
<title>Reloading zshrc</title>
<link>https://randyridenour.net/posts/2015-01-13-reloading-zshrc.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-reloading-zshrc.html</guid>
<description>
<![CDATA[<p>
I use zsh instead of bash. If that doesn&rsquo;t mean anything to you, then just skip the rest of this post. I&rsquo;ve been restarting the terminal after every change to my zshrc file. I knew there had to be a way to quickly reload the file without restarting the terminal.
</p>

<p>
It turns out that typing &ldquo;. ~/.zshrc&rdquo; will do it. The problem is that I&rsquo;m not likely to remember it. I found this nice tip at <a href="http://www.codem0nk3y.com/2012/12/how-to-reload-zsh-config/">codeM0nK3Y.com</a>: add the following to your zshconfig:
</p>

<pre class="example" id="org625edac">
alias reload=". ~/.zshrc &amp;&amp; echo 'ZSH config reloaded from ~/.zshrc'"
</pre>

<p>
Now, just type &ldquo;reload&rdquo; and you&rsquo;re all set.
</p>


<div class="tagline" id="org4ac7135">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/shell.html">Shell</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Walls</title>
<link>https://randyridenour.net/posts/2016-12-28-walls.html</link>
<pubDate>Wed, 28 Dec 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-12-28-walls.html</guid>
<description>
<![CDATA[<p>
In light of the recent political discussion concerning building walls, here is a devotional that I wrote in 2009 when the church assisted on a Habitat for Humanity project.
</p>

<p>
I&rsquo;m usually in favor of building walls, but not when it just becomes another way to burn bridges.
</p>
<section id="outline-container-orge4e71f7" class="outline-2">
<h2 id="orge4e71f7">Prayer</h2>
<div class="outline-text-2" id="text-orge4e71f7">
<p>
Almighty God, 
</p>

<p>
I give thanks for those who are here today to help build this house, for those who have already worked to bring us to this point, and for those who will be here in the future. May you watch over all that happens here, filling us all with the joy of doing your work.
</p>

<p>
We pray also that your blessings will fill this house and those who will live here. May the sounds of laughter echo from these walls, and may love fill these rooms.
</p>

<p>
<i>Amen</i>
</p>
</div>
</section>
<section id="outline-container-orgcbb0892" class="outline-2">
<h2 id="orgcbb0892">Devotional</h2>
<div class="outline-text-2" id="text-orgcbb0892">
<p>
Even though the ones that we see here are far from finished, we should never underestimate the importance of building walls. Nehemiah left the court of the Persian king to rebuild the walls of Jerusalem. For the people of Jerusalem, walls represented safety, security, and an opportunity to be the people of God free from oppression by the enemies that surrounded them.
</p>

<p>
Not all walls are good, though. I&rsquo;m speaking of the walls that we build that separate communities, that keep us apart, those invisible walls that we erect to protect our own comfort zones. In some ways, these are the walls that we cherish the most, but it is these walls that God wants torn down. As Paul says in 1 Corinthians 1:10, &ldquo;Now I appeal to you, brothers and sisters,​ by the name of our Lord Jesus Christ, that all of you be in agreement and that there be no divisions among you, but that you be united in the same mind and the same purpose.&rdquo;
</p>

<p>
We come here from different backgrounds, different families, and different churches. This is an opportunity to build some very important walls, but also maybe to tear down a few walls. May what we do here express that great truth of the Gospel expressed in Galatians 3:28, &ldquo;There is no longer Jew or Greek, there is no longer slave or free, there is no longer male and female; for all of you are one in Christ Jesus.&rdquo;
</p>

<p>
So go now, building those walls that need to go up, and tearing down those walls that need to come down. 
</p>

<p>
In the name of Jesus, 
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org1b2ccc0">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
</div>
</section>
]]>
</description></item>
<item>
<title>De Unamuno on Arguments</title>
<link>https://randyridenour.net/posts/2010-08-27-a-lot-of-good-arguments-are-spoiled-by-some-fool.html</link>
<pubDate>Fri, 27 Aug 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-08-27-a-lot-of-good-arguments-are-spoiled-by-some-fool.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
A lot of good arguments are spoiled by some fool who knows what he is talking about.
</p>
</blockquote>

<p class="bigquote">
Miguel De Unamuno
</p>


<div class="tagline" id="org3e2bd4a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>What Are You Afraid Of?</title>
<link>https://randyridenour.net/posts/2015-10-15-what-are-you-afraid-of.html</link>
<pubDate>Thu, 15 Oct 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-10-15-what-are-you-afraid-of.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
I can&rsquo;t understand why people are frightened of new ideas. I&rsquo;m frightened of the old ones.
</p>
</blockquote>

<p class="bigquote">
John Cage
</p>


<div class="tagline" id="org7c16d3a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>No True Patriot</title>
<link>https://randyridenour.net/posts/2025-04-04-true-patriot.html</link>
<pubDate>Fri, 04 Apr 2025 17:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-04-04-true-patriot.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
&rsquo;My country, right or wrong,&rsquo; is a thing that no true patriot would think of saying. . . . It is like saying, &rsquo;My
mother, drunk or sober&rsquo;.
</p>
</blockquote>

<p class="bigquote">
G. K. Chesterton
</p>

<div class="tagline" id="org19b756c">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>English Only</title>
<link>https://randyridenour.net/posts/2010-04-08-english-only.html</link>
<pubDate>Thu, 08 Apr 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-04-08-english-only.html</guid>
<description>
<![CDATA[<p>
<a href="http://leiterreports.typepad.com/blog/2010/04/englishonly-please.html">From Brian Leiter&rsquo;s site.</a>
</p>


<div class="tagline" id="org00a2d4f">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Family Separation at the Borders</title>
<link>https://randyridenour.net/posts/2018-06-19-family-separation-at-the-borders.html</link>
<pubDate>Tue, 19 Jun 2018 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2018-06-19-family-separation-at-the-borders.html</guid>
<description>
<![CDATA[<p>
I tend to find most political issues to be difficult and intricate, requiring complex and nuanced responses. So, I believe that there is generally room for rational disagreement when evaluating particular policy decisions. This, however, is not the case with the current administration&rsquo;s family separation policy — it is simply heinous, cruel, inhumane, and contrary to the teachings of Jesus. We should not return to the Obama administration&rsquo;s lesser evil of locking up children with their mothers. It is past time for Congress to undertake the difficult task of immigration reform. If God is both just and good, then justice and goodness are not incompatible. We could develop an immigration policy that is both just and good, if we were but willing to do the work. I expressed this today to the offices of my congressional representatives. To find yours, go to [whoismyrepresentative.com](<a href="https://whoismyrepresentative.com/">https://whoismyrepresentative.com/</a>).
</p>



<div class="tagline" id="orgffb2966">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Fifteenth Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-the-fifteenth-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-fifteenth-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
In response to a sermon on Daniel 3:
</p>

<p>
How shall we respond to the furnaces of life?<br>
We make empty promises, saying that God must deliver,<br>
Mere feeble attempts to bind God&rsquo;s will<br>
With pledges that we cannot guarantee.
</p>

<p>
Instead, we are called to be strong and courageous,<br>
And if rescue is promised,<br>
Then of what value is courage?
</p>

<p>
Lord,<br>
Give us the strength to face the flames<br>
Like the three in Babylon,<br>
Who dared not promise to show what God would do for them,<br>
But promised instead to show what they would do for God.
</p>


<div class="tagline" id="org36fc820">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Disaster in Haiti</title>
<link>https://randyridenour.net/posts/2010-01-13-pictures-from-haiti.html</link>
<pubDate>Wed, 13 Jan 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-01-13-pictures-from-haiti.html</guid>
<description>
<![CDATA[<p>
These are <a href="http://www.boston.com/bigpicture/2010/01/earthquake_in_haiti.html">terrible pictures</a> from Boston.com of the devastation in Haiti.
</p>

<p>
The Haitian consul-general to the UN reports that at least 100,000 are dead, possibly several times that number. See this <a href="http://www.cnn.com/2010/WORLD/americas/01/13/haiti.earthquake/index.html">CNN</a> link.
</p>


<div class="tagline" id="orga320190">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Emacs Writing Experience</title>
<link>https://randyridenour.net/posts/2025-07-28-emacs-writing-experience.html</link>
<pubDate>Mon, 28 Jul 2025 13:44:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-07-28-emacs-writing-experience.html</guid>
<description>
<![CDATA[<p>
I&rsquo;ve enjoyed reading the posts in this month&rsquo;s <a href="https://gregnewman.io/blog/emacs-carnival-2025-07-writing-experience/">Emacs Carnival</a> on the topic of &ldquo;Writing Experience.&rdquo; It&rsquo;s given me an opportunity to reflect not only on how I use Emacs to write, but also on why I continue to use Emacs despite the many alternatives that are available. I don&rsquo;t consider myself to be the typical Emacs user, if there is such a person. I&rsquo;m certainly not a coder; anything I learned in my single FORTRAN class thirty-five years ago is long gone by now.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> Instead, I&rsquo;m a philosophy professor at a small liberal arts university, which means that I live in a Microsoft world. It&rsquo;s very likely that I am the only Emacs user on campus. I&rsquo;m also a retired Army Reserve chaplain. I&rsquo;m sure that Emacs users are a minority in technical fields, but they are almost non-existent in the humanities. One can only imagine how few Emacs users there are in ministry.
</p>

<p>
Everything that I produced during my undergraduate and graduate studies, including my dissertation,  was written with a word processor, either WordPerfect 5.1 or MS Word 6.0. As I began working more with formal logic, I began to be aware of the power and beautiful output of LaTeX, and that led me to look for the best way to edit LaTeX files. It turns out that there&rsquo;s no agreement on the internet for the best way to do anything, so my search let me down many paths.  In 2012, I wrote a blog post about my experience, titled &ldquo;<a href="https://randyridenour.net/posts/2012-05-24-a-sordid-tale-of-text-editors.html">A Sordid Tale of Text Editors</a>.&rdquo; It documents a journey from TextMate to Vim, a brief interlude with Emacs, then back to TextMate, then to Sublime Text 2.<sup><a id="fnr.2" class="footref" href="#fn.2" role="doc-backlink">2</a></sup> What I now find particularly interesting about that post are the three reasons why I rejected Emacs at the time:
</p>

<ol class="org-ol">
<li>The complex, arcane key combinations,</li>
<li>The inability to use Textexpander snippets in Gnu Emacs, and</li>
<li>The pain of configuring Emacs for amateurs.</li>
</ol>

<p>
The second no longer applies — at the time, Emacs just wasn&rsquo;t a well-behaved Mac app, but that has changed over the years. The first and third, though, are still common reasons that people cite for giving up Emacs. Shortly after I wrote that, however, I gave Emacs another try, and over a decade later, I&rsquo;m still using it. More that that, though, I can&rsquo;t imagine an alternative.
</p>

<p>
The mistake that I made in my earlier flirtation with Emacs was, in my opinion, treating it as just another text editor. Every other text editor that I tried demanded that I conform to  its way of editing. When I realized that Emacs, with a bit of configuration work, was quite willing to conform to the way that I wanted to work, the search was over. Don&rsquo;t like the keybindings? Then change them! Prefer modal editing? Emacs can do that. Do you want a file tree window to the side as with VSCode? Emacs can do that, too. The initialization files may look complicated at first, but Lisp is very straightforward and remarkably easy to follow, even for a philosopher like me. When I got stuck, I found the community to be remarkably gracious and helpful.
</p>

<p>
I do write some papers for presentation and possible publication, but our primary responsibility as faculty at my institution is teaching. So, most of my writing is for lecture notes, presentation slides, and handouts. Given our heavy teaching load (normally four courses per semester), it helps to be able to produce these as efficiently as possible. With Emacs, I&rsquo;m able to write one document and, from that, produce a PDF of notes for me, slides to show in class, and and HTML handout to post in the learning management system. In short, a function creates four files: one that exports a notes PDF for me, one that exports to a LaTeX Beamer document, one that exports to HTML for posting, and a data file used by the other three. The Org headers are automatically inserted into each file, and the only file that I actually edit is the data file. Two Yasnippet snippets make it easy to specify text that appears only in the presenter&rsquo;s notes in the slides and more detailed notes that appear in the lecture notes. The HTML handout includes everything in the lecture notes. An export function generates the HTML and copies it to the clipboard for pasting to the LMS. (The code for everything is in the <a href="https://github.com/rlridenour/emacs-elpaca-config?tab=readme-ov-file#teaching">teaching</a> section of my configuration file.)
</p>

<p>
I use many packages, but there are some that are particularly useful for my everyday writing. 
</p>

<ul class="org-ul">
<li><a href="https://github.com/minad/jinx">Jinx</a> for spell checking.</li>
<li>I&rsquo;ve already mentioned <a href="https://github.com/joaotavora/yasnippet">Yasnippet</a>. I also find <a href="https://github.com/Kungsgeten/yankpad">Yankpad</a> can be useful for inserting snippets that are used only occasionally.</li>
<li><a href="https://github.com/aaronjensen/emacs-orgonomic">Orgonomic</a> helps me quickly enter lists and headings in Org mode.</li>
<li><a href="https://github.com/oantolin/math-delimiters">Math-Delimiters</a> for quickly entering LaTeX math mode.</li>
<li><a href="https://github.com/emacs-citar/citar">Citar</a> makes citations simple.</li>
</ul>

<p>
Finally, I should point out that I can&rsquo;t use Emacs for everything. Although everything begins in Org mode, some of it must, unfortunately, end up in Microsoft Word. I have a collaborative book project with a colleague who only uses Word, and most publishers in the humanities, including those in my particular fields of philosophy and religion, expect Word documents. That&rsquo;s no problem, provided that I am the sole author. Any changes can be made to the original Org document, with a final export to a docx file. If I&rsquo;m collaborating with someone else, then eventually I just have to start working in Word.
</p>

<p>
In the end, the best thing about the Emacs writing experience is that there is no such thing as <i>the</i> Emacs writing experience. Emacs provides a canvas and tools from which each user crafts their own editing environment. Simple or complex, modal or non-modal, Emacs can provide the writing experience you want, not merely something that just approximates it. That&rsquo;s why I&rsquo;m still using it.
</p>

<div class="tagline" id="org5386785">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
The only thing that remains is a vague recollection of the pain of counting columns when debugging a program. 
</p></div></div>

<div class="footdef"><sup><a id="fn.2" class="footnum" href="#fnr.2" role="doc-backlink">2</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
The list is actually much longer than that and it includes some editors whose names I can&rsquo;t even remember now.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>The Eyes of Faith</title>
<link>https://randyridenour.net/posts/2016-09-27-the-eyes-of-faith.html</link>
<pubDate>Tue, 27 Sep 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-09-27-the-eyes-of-faith.html</guid>
<description>
<![CDATA[<p>
Creator God,
</p>

<p>
I gaze out from my fortress,<br>
and see a dangerous, hostile place,<br>
with dangers on all sides,<br>
forcing me to defend my territory<br>
against my many enemies.
</p>

<p>
Sometimes, I see a cold, unfeeling place,<br>
that demands that I care only for myself,<br>
since no one else will care for me.
</p>

<p>
Tell me what I would see, Lord,<br>
if only I could replace these<br>
grimy panes of doubt and fear,<br>
and see your creation through<br>
the clear windows of hope and love.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orge40fb05">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Christianity and Partisan Politics</title>
<link>https://randyridenour.net/posts/2025-05-13-christianity-partisan-politics.html</link>
<pubDate>Tue, 13 May 2025 06:44:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-05-13-christianity-partisan-politics.html</guid>
<description>
<![CDATA[<blockquote>
<p>
But Christians should as a rule be skeptical of versions of the faith that are informed overly much by partisan politics, which always have something other than Jesus at their core.
</p>
</blockquote>

<p class="source">
Elizabeth Bruenig in <i><a href="https://www.theatlantic.com/ideas/archive/2025/05/anti-christian-bias-task-force/682755/" class="source">The Atlantic </a></i>
</p>

<div class="tagline" id="org385b6d6">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Perfection in Weakness</title>
<link>https://randyridenour.net/posts/2010-11-03-a-life-in-prayer-is-a-life-in-open-hands-where-you.html</link>
<pubDate>Wed, 03 Nov 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-11-03-a-life-in-prayer-is-a-life-in-open-hands-where-you.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
A life in prayer is a life in open hands where you are not ashamed of your weakness but realize that it is more perfect for you to be led by the other than to seek to hold everything in your own hand.
</p>
</blockquote>

<p class="bigquote">
Henri Nouwen
</p>


<div class="tagline" id="orgeeed3af">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Creating an RSS Feed</title>
<link>https://randyridenour.net/posts/2025-01-07-creating-rss-feed.html</link>
<pubDate>Tue, 07 Jan 2025 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2025-01-07-creating-rss-feed.html</guid>
<description>
<![CDATA[<p>
I struggled with ox-rss for my blog feed and really could never get it working. It would generate an RSS file, but for some reason, the feed readers wouldn&rsquo;t get anything. I don&rsquo;t know enough about XML to fix it, and I had neither the time right now nor the inclination to learn.
</p>

<p>
So, I stumbled across <a href="https://github.com/emacsmirror/webfeeder">Emacs Webfeeder</a>, which creates a feed from the HTML files. After adding it with use-package, I removed the RSS component of my <code>publish.el</code> file, and changed by blog build function to this:
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">orgblog-build</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">progn</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>find-file <span class="org-string">"~/sites/orgblog/publish.el"</span><span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>eval-buffer<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>org-publish-all<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>webfeeder-build <span class="org-string">"atom.xml"</span>
                           <span class="org-string">"./docs"</span>
                           <span class="org-string">"https://randyridenour.net/"</span>
                           <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-keyword">let</span> <span class="org-rainbow-delimiters-depth-5">(</span><span class="org-rainbow-delimiters-depth-6">(</span>default-directory <span class="org-rainbow-delimiters-depth-7">(</span>expand-file-name <span class="org-string">"./docs"</span><span class="org-rainbow-delimiters-depth-7">)</span><span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span>
                               <span class="org-rainbow-delimiters-depth-5">(</span>remove <span class="org-string">"posts/index.html"</span>
                                         <span class="org-rainbow-delimiters-depth-6">(</span>directory-files-recursively <span class="org-string">"posts"</span>
                                                                            <span class="org-string">".*\\.html$"</span><span class="org-rainbow-delimiters-depth-6">)</span><span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span>
                           <span class="org-builtin">:title</span> <span class="org-string">"Randy Ridenour"</span>
                           <span class="org-builtin">:description</span> <span class="org-string">"Blog posts by Randy Ridenour"</span><span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>kill-buffer<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>message <span class="org-string">"Build complete!"</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>


<p>
After building the site, Webfeeder generated an <code>atom.rss</code> file, and everything works fine. That was the last critical component of my endeavor to blog with Emacs only.
</p>

<div class="tagline" id="org37c24fb">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/blog.html">Blog</a> <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Org Mode Footnotes in Hugo</title>
<link>https://randyridenour.net/posts/2023-01-25-org-mode-footnotes-in-hugo.html</link>
<pubDate>Wed, 25 Jan 2023 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2023-01-25-org-mode-footnotes-in-hugo.html</guid>
<description>
<![CDATA[<p>
I mentioned yesterday that I couldn&rsquo;t remember what I didn&rsquo;t like about Hugo&rsquo;s parsing of Org mode in the past. When I viewed the published post, I quickly remembered what it was: footnotes. If I remember correctly, at the time that I first tried using native Org mode parsing, Hugo didn&rsquo;t parse the footnotes at all. Now, it does, but they render in an odd way. The footnote number is in subscript on one line, followed by a blank line, followed by the footnote text on another line. So, instead of getting something like this:
</p>

<div class="org-src-container">
<pre class="src src-nil"><code>1. Footnote text.
</code></pre>
</div>

<p>
We get this:
</p>

<div class="org-src-container">
<pre class="src src-nil"><code>1.

Footnote text.
</code></pre>
</div>

<p>
A Google search resulted in one question on the <a href="https://discourse.gohugo.io/t/footnotes-rendered-different-for-org-files-compared-to-markdown-source/20415/">Hugo help forum</a>, but no good answer. The problem is the way that Hugo renders the HTML. In a Markdown post, this content
</p>

<div class="org-src-container">
<pre class="src src-markdown"><code>This is a footnote test.<span class="org-markdown-markup">[^</span><span class="org-markdown-footnote-marker">1</span><span class="org-markdown-markup">]</span>

<span class="org-markdown-markup">[^</span><span class="org-markdown-footnote-marker">1</span><span class="org-markdown-markup">]:</span> <span class="org-markdown-url">Footnote content.</span>
</code></pre>
</div>

<p>
results in this HTML code:
</p>

<div class="org-src-container">
<pre class="src src-html"><code>&lt;<span class="org-function-name">div</span> <span class="org-variable-name">class</span>=<span class="org-string">"article-post"</span>&gt;
    &lt;<span class="org-function-name">p</span>&gt;This is a footnote test.&lt;<span class="org-function-name">sup</span> <span class="org-variable-name">id</span>=<span class="org-string">"fnref:1"</span>&gt;&lt;<span class="org-function-name">a</span> <span class="org-variable-name">href</span>=<span class="org-string">"#fn:1"</span> <span class="org-variable-name">class</span>=<span class="org-string">"footnote-ref"</span> <span class="org-variable-name">role</span>=<span class="org-string">"doc-noteref"</span>&gt;1&lt;/<span class="org-function-name">a</span>&gt;&lt;/<span class="org-function-name">sup</span>&gt;&lt;/<span class="org-function-name">p</span>&gt;
    &lt;<span class="org-function-name">div</span> <span class="org-variable-name">class</span>=<span class="org-string">"footnotes"</span> <span class="org-variable-name">role</span>=<span class="org-string">"doc-endnotes"</span>&gt;
        &lt;<span class="org-function-name">hr</span>&gt;
        &lt;<span class="org-function-name">ol</span>&gt;
            &lt;<span class="org-function-name">li</span> <span class="org-variable-name">id</span>=<span class="org-string">"fn:1"</span>&gt;
                &lt;<span class="org-function-name">p</span>&gt;Footnote content.&amp;#160;&lt;<span class="org-function-name">a</span> <span class="org-variable-name">href</span>=<span class="org-string">"#fnref:1"</span> <span class="org-variable-name">class</span>=<span class="org-string">"footnote-backref"</span> <span class="org-variable-name">role</span>=<span class="org-string">"doc-backlink"</span>&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/<span class="org-function-name">a</span>&gt;&lt;/<span class="org-function-name">p</span>&gt;
            &lt;/<span class="org-function-name">li</span>&gt;
        &lt;/<span class="org-function-name">ol</span>&gt;
    &lt;/<span class="org-function-name">div</span>&gt;

&lt;/<span class="org-function-name">div</span>&gt;
</code></pre>
</div>

<p>
This turns the footnotes into numbered list items that end with a nice return character that is linked to the footnote number in the text.
</p>

<p>
This Org mode content, however,
</p>

<div class="org-src-container">
<pre class="src src-org"><code>This is a footnote test.<span class="org-org-footnote">[fn:1]</span>

<span class="org-org-footnote">[fn:1]</span> Footnote content. 
</code></pre>
</div>

<p>
renders like this:
</p>

<div class="org-src-container">
<pre class="src src-html"><code>&lt;<span class="org-function-name">div</span> <span class="org-variable-name">class</span>=<span class="org-string">"article-post"</span>&gt;
    &lt;<span class="org-function-name">p</span>&gt;
        This is a footnote test.&lt;<span class="org-function-name">sup</span> <span class="org-variable-name">class</span>=<span class="org-string">"footnote-reference"</span>&gt;&lt;<span class="org-function-name">a</span> <span class="org-variable-name">id</span>=<span class="org-string">"footnote-reference-1"</span> <span class="org-variable-name">href</span>=<span class="org-string">"#footnote-1"</span>&gt;1&lt;/<span class="org-function-name">a</span>&gt;&lt;/<span class="org-function-name">sup</span>&gt;&lt;/<span class="org-function-name">p</span>&gt;
    &lt;<span class="org-function-name">div</span> <span class="org-variable-name">class</span>=<span class="org-string">"footnotes"</span>&gt;
        &lt;<span class="org-function-name">hr</span> <span class="org-variable-name">class</span>=<span class="org-string">"footnotes-separatator"</span>&gt;
        &lt;<span class="org-function-name">div</span> <span class="org-variable-name">class</span>=<span class="org-string">"footnote-definitions"</span>&gt;
            &lt;<span class="org-function-name">div</span> <span class="org-variable-name">class</span>=<span class="org-string">"footnote-definition"</span>&gt;
                &lt;<span class="org-function-name">sup</span> <span class="org-variable-name">id</span>=<span class="org-string">"footnote-1"</span>&gt;&lt;<span class="org-function-name">a</span> <span class="org-variable-name">href</span>=<span class="org-string">"#footnote-reference-1"</span>&gt;1&lt;/<span class="org-function-name">a</span>&gt;&lt;/<span class="org-function-name">sup</span>&gt;
                &lt;<span class="org-function-name">div</span> <span class="org-variable-name">class</span>=<span class="org-string">"footnote-body"</span>&gt;
                    &lt;<span class="org-function-name">p</span>&gt;Footnote content. &lt;/<span class="org-function-name">p</span>&gt;
                &lt;/<span class="org-function-name">div</span>&gt;
            &lt;/<span class="org-function-name">div</span>&gt;
        &lt;/<span class="org-function-name">div</span>&gt;
    &lt;/<span class="org-function-name">div</span>&gt;

&lt;/<span class="org-function-name">div</span>&gt;
</code></pre>
</div>

<p>
Notice that there is no list, instead the footnote text is separated from the number by a <code>&lt;div&gt;</code>, which is normally rendered as an empty line.
</p>

<p>
Hacking around with some CSS, I managed to get the number and the text on the same line.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> Here&rsquo;s the CSS code:
</p>

<div class="org-src-container">
<pre class="src src-css"><code><span class="org-css-selector">.footnote-definition</span> <span class="org-rainbow-delimiters-depth-1">{</span>
  <span class="org-css-property">display</span>: block;
<span class="org-rainbow-delimiters-depth-1">}</span>

<span class="org-css-selector">.footnote-body</span> <span class="org-rainbow-delimiters-depth-1">{</span>
  <span class="org-css-property">display</span>: inline-block;
<span class="org-rainbow-delimiters-depth-1">}</span>
</code></pre>
</div>



<p>
I&rsquo;m not quite satisfied with the superscript number in the footnote, but I haven&rsquo;t found a good fix for that yet.
</p>



<div class="tagline" id="org03fbb3b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/org.html">Org</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Like this. 
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Baptist Millenials</title>
<link>https://randyridenour.net/posts/2010-10-25-baptist-millenials.html</link>
<pubDate>Mon, 25 Oct 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-10-25-baptist-millenials.html</guid>
<description>
<![CDATA[<p>
This is a <a href="http://www.ethicsdaily.com/news.php?viewStory=16900">nice article</a> by a daughter of two of my fellow church-members. Together they founded <a href="http://hisnets.org">His Nets</a>, an organization devoted to stopping the spread of malaria.
</p>


<div class="tagline" id="orgb0ce6d3">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Kierkegaard's Mission</title>
<link>https://randyridenour.net/posts/2009-11-24-out-of-love-of-mankind-as-well-as-despair-at-my.html</link>
<pubDate>Tue, 24 Nov 2009 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2009-11-24-out-of-love-of-mankind-as-well-as-despair-at-my.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Out of love of mankind, as well as despair at my embarrassing situation, seeing I had not accomplished anything and had been unable to make anything easier than it had already been made, from a genuine interest in those who make everything easy, I conceived it my task to make difficulties everywhere.
</p>
</blockquote>

<p class="bigquote">
Kierkegaard, <i>Concluding Unscientific Postscript</i>
</p>


<div class="tagline" id="org639dd95">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Ash Wednesday</title>
<link>https://randyridenour.net/posts/2016-02-10-prayer-for-ash-wednesday.html</link>
<pubDate>Wed, 10 Feb 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-02-10-prayer-for-ash-wednesday.html</guid>
<description>
<![CDATA[<p>
Holy God,
</p>

<p>
You call us into the night,<br>
into the darkness,<br>
to a place without distraction<br>
where we can see only ourselves,<br>
not as we wish we were,<br>
but as we truly are.
</p>

<p>
We come hesitantly,<br>
for we are afraid<br>
to acknowledge<br>
what we have become.
</p>

<p>
We come trembling,<br>
knowing that hearts<br>
that are hard<br>
must somehow be broken.
</p>

<p>
We come with hope,<br>
knowing that what<br>
is broken can<br>
again be made whole<br>
by the unending<br>
love of God.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org36d8a54">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Benediction</title>
<link>https://randyridenour.net/posts/2018-02-20-benediction.html</link>
<pubDate>Mon, 19 Feb 2018 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2018-02-20-benediction.html</guid>
<description>
<![CDATA[<p>
The benediction from last Sunday&rsquo;s sermon: 
</p>

<p>
The almighty God who made you<br>
from the dust of this earth,<br>
now sends you out into the world. 
</p>

<p>
Go with faith, hope, and courage,<br>
knowing that he is with you. 
</p>

<p>
He has called you by name,<br>
and you are his.
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="orgc88dd2d">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Elfeed Test</title>
<link>https://randyridenour.net/posts/2025-03-09-elfeed-test.html</link>
<pubDate>Sun, 09 Mar 2025 18:46:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-03-09-elfeed-test.html</guid>
<description>
<![CDATA[<p>
I need a new post to test Elfeed.
</p>

<div class="tagline" id="orgd0bf1f7">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>An Ancient Christian Epitaph</title>
<link>https://randyridenour.net/posts/2018-08-31-an-ancient-christian-epitaph.html</link>
<pubDate>Fri, 31 Aug 2018 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2018-08-31-an-ancient-christian-epitaph.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Here rests C. Pompeius Trimalchio Maecenatianus. The rank of sexvir was given him in absentia. While he could have been a member of all the clubs in Rome, nevertheless he didn&rsquo;t want to. Pious, strong, faithful, he rose from little, left behind three hundred sesterces, <i>and never listened to a philosopher</i>.
</p>
</blockquote>



<div class="tagline" id="orgaa455ce">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Publishing to Jekyll with Editorial on iOS</title>
<link>https://randyridenour.net/posts/2017-06-21-jekyll-ios-workflow.html</link>
<pubDate>Wed, 21 Jun 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-06-21-jekyll-ios-workflow.html</guid>
<description>
<![CDATA[<p>
As a blog platform, Jekyll has a number of positive features: 
</p>

<ol class="org-ol">
<li>The speed and security of a static site,</li>
<li>The convenience and future-proofing of plain text, and most importantly for educators,</li>
<li>Free hosting on GitHub.</li>
</ol>

<p>
For me, the one drawback has been finding a convenient way to post using my iPad. There are a number of good Markdown editors for iOS, so writing posts is very easy, but publishing them can be a challenge.
 <a href="https://appsto.re/us/xONC1.i">Working Copy</a> works well to manage the Git repository, but it doesn&rsquo;t have the convenience that I wanted, and I really don&rsquo;t need to store my whole Jekyll repository on the iPad.
 I can post using <a href="https://appsto.re/us/PTVR2.i">Prompt 2</a> and my 
Linux server on <a href="https://www.digitalocean.com/">Digital Ocean</a>.  Neither of these are the simple write-and-post workflows that the iPad calls for, though.
</p>

<p>
Yesterday, I found this <a href="http://www.editorial-workflows.com/workflow/5838419494174720/XyeFJfsyXwE">workflow</a> by Max Jacobson. The first time it is run, it takes you to GitHub to generate an access token. After giving it the access token, the workflow will generate a file name in the correct format, prepare a commit message, and push the post to GitHub.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>

<p>
Now, I&rsquo;m one step closer to being able to use the iPad as a desktop replacement.
</p>



<div class="tagline" id="org1374542">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
I did have to slightly modify the workflow by changing the &ldquo;Request commit message from user&rdquo; step to require a single line entry.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Dostoevsky, Suffering, and the Prayer for the Week</title>
<link>https://randyridenour.net/posts/2015-04-15-dostoevsky-suffering-and-the-prayer-for-the-week.html</link>
<pubDate>Wed, 15 Apr 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-04-15-dostoevsky-suffering-and-the-prayer-for-the-week.html</guid>
<description>
<![CDATA[<p>
This past weekend  was a weekend of funerals — two very different people, both with lives that had been cut tragically short. Then, on Tuesday, I learned of two more tragedies involving families in the Army units that I serve. Coincidentally, all of this happens as one of my classes is studying one of the central works on the problem of suffering, the chapter titled in &ldquo;Rebellion&rdquo; in Dostoevsky&rsquo;s masterpiece, <i>The Brothers Karamazov</i>.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> In the novel, Ivan argued that moral decency and the love of humanity demand that we should refuse to live in what he thought to be a clearly unjust world. The only decent thing to do would be to, in his words, &ldquo;return one&rsquo;s ticket.&rdquo;
</p>

<p>
Ivan makes two related mistakes here. First, he believes that he can judge the world from an objective position. This, though, ignores the fact that we are embedded and entangled, part of the world that we presume to judge. The second mistake is assuming that the world that we now experience is morally static, that is, assuming that the suffering of the innocent has always, and will always, occur, and if God created this world, he created it to be an unjust world.
</p>

<p>
As I said, these mistakes are related. I am not an innocent, objective judge. The level of justice or injustice in the world is, in an important way, partly a function of my action or inaction. The world that we experience, then, is one of our own creation; not one that we have created ex nihilo, but rather through our perversion of God&rsquo;s good creation. God, though, can redeem even that which we have corrupted. So, instead of maintaining, like Ivan, that we cannot accept this world of God&rsquo;s, we should instead strive, by God&rsquo;s grace, to make his world into that which he always planned for it to be, and promised that it would in fact someday be. We do this, not by loving humanity, but by loving our neighbors, wherever and whoever they may be.
</p>

<p>
Father,
</p>

<p>
Grant us the faith to be<br>
your redeemed people,<br>
who announce to the world<br>
by word and deed<br>
the miracle of your<br>
reconciling love.
</p>

<p>
<i>Amen</i>
</p>

<div class="tagline" id="orgee4743a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
My favorite novel, in case there is still anyone who knows me that doesn&rsquo;t realize it.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Another One for the Brothers</title>
<link>https://randyridenour.net/posts/2011-04-16-another-one-for-the-brothers.html</link>
<pubDate>Sat, 16 Apr 2011 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2011-04-16-another-one-for-the-brothers.html</guid>
<description>
<![CDATA[<p>
Sheri finished <i>The Brothers Karamazov</i> yesterday. Pancakes are on the menu for breakfast this morning.
</p>


<div class="tagline" id="org8fd4ff8">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Ice-T and Politics</title>
<link>https://randyridenour.net/posts/2015-03-02-icet-and-politics.html</link>
<pubDate>Mon, 02 Mar 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-03-02-icet-and-politics.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
People ask me, &ldquo;Ice, why don’t you get into politics?&rdquo; I’m like, &ldquo;I got out of crime!&rdquo;
</p>
</blockquote>

<p class="bigquote">
Ice-T
</p>


<div class="tagline" id="orgde34d19">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Pie in the Sky</title>
<link>https://randyridenour.net/posts/2015-08-03-pie-in-the-sky.html</link>
<pubDate>Mon, 03 Aug 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-08-03-pie-in-the-sky.html</guid>
<description>
<![CDATA[<p>
Another thought-provoking sermon this morning by Mitch Randall​ at <a href="http://northhavenchurch.net/">NorthHaven Church</a>​.
</p>
<div class="tagline" id="orgd4443d2">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Twenty-First Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-twenty-first-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-twenty-first-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
Lord,
</p>

<p>
Stay with me<br>
for a moment<br>
while I divide<br>
up my life.
</p>

<p>
I&rsquo;ll give you Sunday,<br>
but I&rsquo;m keeping<br>
Monday through Saturday.
</p>

<p>
I&rsquo;ll give you ten percent,<br>
so long as you don&rsquo;t<br>
ask what I do with<br>
the other ninety.
</p>

<p>
I&rsquo;ll do whatever you ask,<br>
just don&rsquo;t make any<br>
unreasonable demands.
</p>

<p>
Then, in the stillness,<br>
I hear a quiet voice<br>
whisper the question<br>
I&rsquo;m afraid to answer:
</p>

<p>
&ldquo;Why do you call me &lsquo;Lord?&rsquo;&rdquo;
</p>

<p>
Lord, have mercy.
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="org003d19d">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Offensive Jesus</title>
<link>https://randyridenour.net/posts/2016-12-13-the-offensive-jesus.html</link>
<pubDate>Tue, 13 Dec 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-12-13-the-offensive-jesus.html</guid>
<description>
<![CDATA[<p>
The Gospel text for the third Sunday of Advent in year A is Matthew 11:2-11, which, on the surface, seems like an odd choice for the Christmas season, especially for a day known as the &ldquo;Sunday of joy.&rdquo; It opens with what is apparently some doubt on the part of John the Baptist: &ldquo;When John heard in prison what the Messiah was doing, he sent word by his disciples and said to him, &lsquo;Are you the one who is to come, or are we to wait for another?&rsquo;&rdquo;
</p>

<p>
The third chapter of Matthew records John speaking of the wrath to come and the unquenchable fire that will be used to burn the chaff. It appears that the messiah that John got did not look much like the messiah that John expected.<br>
</p>

<p>
Too often, our celebration of Christmas shows that we, like John, also would prefer another messiah. To paraphrase Ricky Bobby in Talladega Nights, we like the Christmas Jesus best – the sweet, calm, beautiful, inoffensive, unchallenging, non-threatening Jesus of the carol &ldquo;Silent Night.&rdquo; This Jesus doesn&rsquo;t call us to follow him, for he never leaves the manger, and certainly doesn&rsquo;t go to the cross. We are like John Updike&rsquo;s title character in <i>Rabbit, Run</i>, who &ldquo;&hellip;has no taste for the dark, tangled, visceral aspect of Christianity, the going through quality of it, the passage into death and suffering that redeems and inverts these things.&rdquo;
</p>

<p>
The babe born in Bethlehem, though, would soon become the one who offended religious sensibilities and challenged the power structures of the day. In his own words, he came to preach good news to the poor and to liberate the oppressed. He was perceived by the Romans to be such a political threat that he was executed on a cross. It could very well be the case that the only person in Matthew&rsquo;s birth narrative to truly understand the implications of the event was Herod.
</p>

<p>
We feel happy at the manger, but joy is found on the road beyond — even if that road leads to the cross. So, as we search for meaning this Christmas season, may we look beyond the birth narratives to consider the Christ-hymn of Philippians 2; that this Jesus
</p>

<blockquote>
<p>
&hellip;who, though he was in the form of God,<br>
did not regard equality with God<br>
as something to be exploited,<br>
but emptied himself,<br>
taking the form of a slave,<br>
being born in human likeness.<br>
And being found in human form,<br>
he humbled himself<br>
and became obedient to the point of death —<br>
even death on a cross.<br>
</p>
</blockquote>



<p>
Prayer:
</p>

<p>
May I come to Christmas this year<br>
seeking not the image I have created,<br>
but the Christ begotten of the Father,<br>
recognizing that the manger of Bethlehem<br>
was but the first stop on the journey to the cross.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org7046041">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Talk or Talk About</title>
<link>https://randyridenour.net/posts/2010-10-19-today-it-is-fashionable-to-talk-about-the-poor.html</link>
<pubDate>Tue, 19 Oct 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-10-19-today-it-is-fashionable-to-talk-about-the-poor.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Today it is fashionable to talk about the poor. Unfortunately, it is not fashionable to talk with them.
</p>
</blockquote>

<p class="bigquote">
Mother Teresa
</p>


<div class="tagline" id="org0035927">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Free Shows in the Hospital</title>
<link>https://randyridenour.net/posts/2019-08-01-free-shows-in-the-hospital.html</link>
<pubDate>Thu, 01 Aug 2019 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2019-08-01-free-shows-in-the-hospital.html</guid>
<description>
<![CDATA[<p>
The RN today told me a story about a 90 year old man he was supposed to take down the hall in the hospital. The man got out of bed himself and started walking down the hall in his hospital gown. The nurse ran up to him and said &ldquo;Your back door is open!&rdquo; The man replied, &ldquo;That&rsquo;s why there&rsquo;s a pocket on the gown &mdash; for all the tips.&rdquo;
</p>

<p>
I won&rsquo;t discuss the situation today that prompted his telling me that story though.
</p>
]]>
</description></item>
<item>
<title>Fixing Emacs Doom Upgrade</title>
<link>https://randyridenour.net/posts/2023-02-06-fixing-emacs-doom-upgrade.html</link>
<pubDate>Mon, 06 Feb 2023 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2023-02-06-fixing-emacs-doom-upgrade.html</guid>
<description>
<![CDATA[<p>
I had this problem on another machine a few weeks ago, researched it, fixed it, and apparently I&rsquo;ve already forgotten what to do. When <code>doom upgrade</code> fails, it&rsquo;s likely to be because someone changed the name of a branch in the repository. The easiest thing to do is to delete <code>~/.emacs.d/.local/straight/repos</code>. Run <code>doom sync</code> to rebuild the repositories, and everything should work fine.
</p>


<div class="tagline" id="orgd71bc35">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a> 
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Times of Grief</title>
<link>https://randyridenour.net/posts/2017-11-19-prayer-for-times-of-grief.html</link>
<pubDate>Sun, 19 Nov 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-11-19-prayer-for-times-of-grief.html</guid>
<description>
<![CDATA[<p>
God of compassion,
</p>

<p>
There are times when it<br>
seems impossible to give thanks,<br>
for the loss is too recent<br>
and the pain is too great.
</p>

<p>
But in this, we have hope,<br>
That even in the darkest valley,<br>
we are not alone, for you are there
</p>

<p>
And our hope is not in vain,<br>
for we see your presence in<br>
the church, the body of Christ,<br>
which walks beside us.
</p>

<p>
Give us the grace and love<br>
to maintain this community,<br>
so that our hope may be proclaimed,<br>
again, and again, and again,<br>
until that day when Christ himself<br>
will wipe every tear from every eye.
</p>

<p>
<i>Amen</i>
</p>






<div class="tagline" id="org3dfe6da">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for the Nation</title>
<link>https://randyridenour.net/posts/2016-07-09-prayer-for-the-nation.html</link>
<pubDate>Sat, 09 Jul 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-07-09-prayer-for-the-nation.html</guid>
<description>
<![CDATA[<p>
Eternal God, you whose image lies in the hearts of all people,<br>
Hear our prayer, as we pray for our nation.
</p>

<p>
Help us to remember that you love all with your great love,<br>
that all faith is an attempt to respond to you,<br>
and that the desires of other hearts are known by you,<br>
just as our desires are known.
<br>
Lead us to use what you have given us<br>
for freedom, justice, and equality;<br>
Not only for our own sake,<br>
but for those to whom these things have been denied.
</p>

<p>
In our pride, teach us humility;<br>
In our strength, teach us grace;<br>
In our callousness, teach us compassion;<br>
In our riches, teach us generosity,<br>
In our ignorance, give us wisdom;<br>
In our fear, give us courage;<br>
In our anxiety, give us peace.
</p>

<p>
May we be a source of love in the midst of hatred,<br>
And an instrument of peace in the midst of conflict.<br>
We pray these things in the name of the most high,<br>
The source of all that is good, holy, and true.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org466ca03">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Beamer Presentations with Org Mode</title>
<link>https://randyridenour.net/posts/2020-06-01-beamer-presentations-with-org-mode.html</link>
<pubDate>Mon, 01 Jun 2020 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2020-06-01-beamer-presentations-with-org-mode.html</guid>
<description>
<![CDATA[<p>
When we moved all courses online for the semester because of the COVID-19 pandemic, I found myself having to make many more presentation slide-decks than I normally do, especially when I normally don&rsquo;t do any at all. Keynote produces some beautiful slides, but it requires using the mouse more than I like. I wanted something that I could use to make slides with just a few keystrokes. I settled on exporting an Org mode document to Beamer slides. This is an explanation of the challenges that I had and the solutions that I found.
</p>
<section id="outline-container-org92e53bd" class="outline-2">
<h2 id="org92e53bd">Beamer</h2>
<div class="outline-text-2" id="text-org92e53bd">
<p>
The Beamer class is a tool used to produce presentations with LaTeX. It provides the same advantages for presentations that standard LaTeX provides for other document types, including elegant mathematical formulas, transportability between computing platforms, and the ability focus on content when writing. There are disadvantages, though. Writing LaTeX can be cumbersome, since it is not a simple markup language. After gaining a certain proficiency, it is possible to write it fairly easily. Even so, it is never as simple as using something like Markdown.
</p>
</div>
</section>
<section id="outline-container-org6fa8c7e" class="outline-2">
<h2 id="org6fa8c7e">Solution</h2>
<div class="outline-text-2" id="text-org6fa8c7e">
<p>
The solution that I found was Org mode, a very powerful system that includes a simple markup language and the ability to export to LaTeX. Producing the slide deck was easy, and there were many great examples online. Producing an article was also easy, again with great examples. Producing both a slide presentation and an article, using the same contents file should have been easy, since the official guide to Beamer explains how to do that in LaTeX. Unfortunately, I couldn&rsquo;t find much guidance on how to do this with Org Mode. The only article I could find was this on the official <a href="https://orgmode.org/worg/exporters/beamer/beamer-dual-format.html">Org mode site</a>. It seemed too complicated to me, and I was tempted to just go back to directly writing LaTeX. I decided to try anyway, but I quickly ran into a series of problems:
</p>

<ol class="org-ol">
<li>The Org Beamer export automatically inserted a title slide with <code>\maketitle</code>. Unfortunately, using the same content for the presentation and notes requires using the <code>ignorenonframetext</code> switch in the document class declaration. Since the export didn&rsquo;t place the command in a frame, there was no title slide.</li>
<li>I attempted to fix this by beginning the contents file with a title-less frame that included the <code>\maketitle</code> command. That generated a title page, but it came <i>after</i> the table of contents slide.</li>
<li>The article export did not treat headings correctly, and failed to recognize the Beamer-specific commands.</li>
</ol>

<p>
This was enough to make me want to scrap the project, especially when I looked at the site linked above. The author fixed the title issue by hacking the Beamer export file, something that I certainly didn&rsquo;t want to do. So, as is often the case, after hours of searching for solutions, I began to wonder if the solution could be much simpler than I (or anyone else, it seems) was thinking.
</p>
</div>
</section>
<section id="outline-container-orgf717bfe" class="outline-2">
<h2 id="orgf717bfe">Details</h2>
<div class="outline-text-2" id="text-orgf717bfe">
<p>
I&rsquo;ll spare any reader the record of attempts, mistakes, other attempts, more mistakes, etc., and just get to the final workflow. I wrote a small script (in my case a function in Fish) that creates three files. One for the presentation, one for the article, and one for shared content. After creating the files, it opens a Dired buffer of the relevant folder in Emacs.
</p>

<p>
For those who use the Fish shell, here is the function:
</p>

<div class="org-src-container">
<pre class="src src-shell"><code><span class="org-keyword">function</span> <span class="org-function-name">lecture</span>
    touch <span class="org-rainbow-delimiters-depth-1">{</span>$<span class="org-variable-name">argv</span><span class="org-rainbow-delimiters-depth-1">}</span>.org
    <span class="org-builtin">echo</span> -e <span class="org-string">'#+startup: beamer'</span> \n<span class="org-string">'#+TITLE: '</span> \n<span class="org-string">'#+AUTHOR: Dr. Ridenour'</span> \n<span class="org-string">'#+DATE: '</span> &gt;&gt;<span class="org-rainbow-delimiters-depth-1">{</span>$<span class="org-variable-name">argv</span><span class="org-rainbow-delimiters-depth-1">}</span>.org
    touch <span class="org-rainbow-delimiters-depth-1">{</span>$<span class="org-variable-name">argv</span><span class="org-rainbow-delimiters-depth-1">}</span>-beamer.org
    cat /Users/rlridenour/Dropbox/emacs/beamer/lecture-beamer.org &gt;<span class="org-rainbow-delimiters-depth-1">{</span>$<span class="org-variable-name">argv</span><span class="org-rainbow-delimiters-depth-1">}</span>-beamer.org
    <span class="org-builtin">echo</span> -e <span class="org-string">'#+include: "'</span><span class="org-rainbow-delimiters-depth-1">{</span>$<span class="org-variable-name">argv</span><span class="org-rainbow-delimiters-depth-1">}</span><span class="org-string">'.org" :minlevel 1'</span> &gt;&gt;<span class="org-rainbow-delimiters-depth-1">{</span>$<span class="org-variable-name">argv</span><span class="org-rainbow-delimiters-depth-1">}</span>-beamer.org
    touch <span class="org-rainbow-delimiters-depth-1">{</span>$<span class="org-variable-name">argv</span><span class="org-rainbow-delimiters-depth-1">}</span>-notes.org
    cat /Users/rlridenour/Dropbox/emacs/beamer/lecture-notes.org &gt;<span class="org-rainbow-delimiters-depth-1">{</span>$<span class="org-variable-name">argv</span><span class="org-rainbow-delimiters-depth-1">}</span>-notes.org
    <span class="org-builtin">echo</span> -e <span class="org-string">'#+include: "'</span><span class="org-rainbow-delimiters-depth-1">{</span>$<span class="org-variable-name">argv</span><span class="org-rainbow-delimiters-depth-1">}</span><span class="org-string">'.org" :minlevel 1'</span> &gt;&gt;<span class="org-rainbow-delimiters-depth-1">{</span>$<span class="org-variable-name">argv</span><span class="org-rainbow-delimiters-depth-1">}</span>-notes.org
    dired
end 
</code></pre>
</div>

<p>
So, entering &ldquo;lecture kant&rdquo; in the shell will open a Dired buffer containg the files kant.org, kant-beamer.org, and kant-notes.org.
</p>
</div>
<div id="outline-container-org55069f1" class="outline-3">
<h3 id="org55069f1">Contents File</h3>
<div class="outline-text-3" id="text-org55069f1">
<p>
The contents file is a standard org file. Initially, I had it containing nothing in the header, except for possibly one line containing `#+startup: beamer`, which makes it easier to insert some Beamer-specific commands. After getting tired of entering the same data twice in the other files, I wondered if shared header information could just be placed in the contents file. Occasionally things work exactly how hoped they would, so no the function adds the following lines at the top of the contents file:
</p>

<pre class="example" id="org12829b4">
#+startup: beamer
#+TITLE:
#+AUTHOR: Dr. Ridenour
#+DATE: 
</pre>

<p>
You will need to decide what heading level will designate a slide. Don&rsquo;t worry, you&rsquo;ll still be able to use that heading level in the article, as I&rsquo;ll explain later. I use h3, so slides begin with a line like this in the contents file:
</p>

<pre class="example" id="org6e23a76">
*** Slide Title
</pre>

<p>
To add notes, you need to structurally separate the note content, which should only be printed on the article, from the preceding slide. To do this, add another h3 heading (I creatively title it &ldquo;Notes&rdquo;) with instructions to ignore the heading:
</p>


<pre class="example" id="org35c5321">
*** Notes :B_ignoreheading:
:PROPERTIES:
:BEAMER_env: ignoreheading
:END:
</pre>

<p>
Any text that follows will only appear in the article, not in the presentation. This does not have to be done for every successive note paragraph, it only needs to be done after a slide. So, any paragraphs that are in the scope of an h1 or h2 heading won&rsquo;t need that.
</p>
</div>
</div>
<div id="outline-container-org13efd13" class="outline-3">
<h3 id="org13efd13">Presentation File</h3>
<div class="outline-text-3" id="text-org13efd13">
<p>
The magic happens with two small files. The first is the presentation file. At the top, put your preferred Beamer export header, but be sure to include <code>#+latex_CLASS_options: [ignorenonframetext]</code> and <code>#+OPTIONS: toc:nil</code> . The latter is to ensure that Beamer export doesn&rsquo;t make the contents slide before the presentation title slide. Then, make the title page like this:
</p>


<pre class="example" id="org426fad1">
***
\maketitle 
</pre>


<p>
If you want a table of contents slide, you can do the same thing except use `\tableofcontents`. Finally, include the contents file with this line:
</p>

<pre class="example" id="org1c7780a">
#+include: "contents.org" :minlevel 1 
</pre>

<p>
I keep the header information in two files in Dropbox. The Fish function adds the header, the title and table of contents lines, and the link to the contents file 
</p>
</div>
</div>
<div id="outline-container-orga5f7880" class="outline-3">
<h3 id="orga5f7880">Article File</h3>
<div class="outline-text-3" id="text-orga5f7880">
<p>
For the article, use your preferred header with all of the packages declared, but be sure to add this line: <code>#+latex_HEADER: \usepackage{beamerarticle}</code>. After the export header lines, include the contents file, again using `#+include: &ldquo;contents.org&rdquo; :minlevel 1`. When exporting, be sure to export with the one of the Beamer-specific exports. Otherwise, things just won&rsquo;t look right.
</p>
</div>
</div>
</section>
<section id="outline-container-orge9e999b" class="outline-2">
<h2 id="orge9e999b">Conclusion</h2>
<div class="outline-text-2" id="text-orge9e999b">
<p>
There is one remaining problem that I have: the verse environment won&rsquo;t work in beamerarticle. That&rsquo;s a relatively small problem, though. I&rsquo;m certainly not an Org mode expert, so if anyone has questions or suggestions, please let me know. I hope this saves at least one person some time.
</p>

<p>
A sample can be found on <a href="https://github.com/rlridenour/beamer-sample">Github</a>.
</p>
</div>
</section>
]]>
</description></item>
<item>
<title>Cardboard Solicitation Signs</title>
<link>https://randyridenour.net/posts/2009-09-18-cardboard-solicitation-signs.html</link>
<pubDate>Fri, 18 Sep 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-09-18-cardboard-solicitation-signs.html</guid>
<description>
<![CDATA[<p>
<a href="http://freakonomics.blogs.nytimes.com/2009/09/18/freak-shots-how-effective-is-your-cardboard-sign/">Here</a>. I especially like the one that reads, &ldquo;Ninja&rsquo;s killed my family &mdash; Need money for Kung-Fu lessons.&rdquo;
</p>


<div class="tagline" id="org9625628">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Eleventh Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-the-eleventh-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-eleventh-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
I hear reports of violence and injustice,<br>
and give thanks that I do not live in those places.
</p>

<p>
I see images of the hungry and ill,<br>
and rejoice in my satisfaction and plenty.
</p>

<p>
My prayers are just fervent enough,<br>
my compassion just tender enough,<br>
my charity just generous enough,<br>
my heart just cold enough.
</p>

<p>
Father,
</p>

<p>
forgive me,<br>
and cleanse me of the sin<br>
of being just enough.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org249fb3c">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Thoughts on Burwell vs. Hobby Lobby</title>
<link>https://randyridenour.net/posts/2015-01-13-thoughts-on-burwell-vs-hobby-lobby.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-thoughts-on-burwell-vs-hobby-lobby.html</guid>
<description>
<![CDATA[<p>
Social media was certainly inundated with  reactions to yesterday&rsquo;s Supreme Court ruling in <i>Burwell vs. Hobby Lobby</i>. The majority were at the two extremes &mdash; either this was a great victory for religious liberty and a stunning blow to the Obama administration, or it was an unprecedented power-grab by religious conservatives and wealthy corporate America that will only prevent women from getting the health care that they need.
</p>

<p>
As is generally the case, neither extreme position is correct. The <i>Affordable Care Act</i> is safe, and only certain corporations will be exempt from providing health coverage in very limited instances, provided that the government can easily provide such coverage. So, I don&rsquo;t think that the situation is as bad as some progressives have concluded.
</p>

<p>
That&rsquo;s not to say that I think that the situation is good. I fear that the Supreme Court has placed the government in the position of having to determine what counts as a sincerely held religious belief, which may have more far-reaching implications for religious liberty than simply having to provide comprehensive health coverage.
</p>

<p>
In any case, this is just one of the problems with linking health-coverage and employment. The solution to this and other problems, including the exorbitantly high cost of health care in the United States compared to other countries, is to adopt a single-payer system. 
</p>




<div class="tagline" id="orgaa487f0">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Dorothy Day on Love</title>
<link>https://randyridenour.net/posts/2026-02-16-dorothy-day-love.html</link>
<pubDate>Mon, 16 Feb 2026 06:18:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2026-02-16-dorothy-day-love.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
I really only love God as much as I love the person I love the least.  
</p>
</blockquote>

<p class="bigquote">
Dorothy Day
</p>


<div class="tagline" id="org1219a0c">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Inserting Bible Passages With Emacs</title>
<link>https://randyridenour.net/posts/2025-08-10-inserting-bible-text-with-emacs.html</link>
<pubDate>Sun, 10 Aug 2025 15:23:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-08-10-inserting-bible-text-with-emacs.html</guid>
<description>
<![CDATA[<p>
Much of my writing requires quoting biblical passages, which always involved opening another application, searching for the passage, copying and pasting, then cleaning up the pasted text. Here is a function that I now use to automate the process in Emacs. My preferred translation is the New Revised Standard Version, which is available online using the <a href="https://bible.oremus.org">oremus Bible Browser</a>. They have a convenient API which is documented <a href="https://bible.oremus.org/api.html">here</a>. The function asks for a passage reference, formats the inputted string properly for the API, retrieves the passage, strips the HTML, then inserts the resulting plain text. The passage can either be an entire chapter or selected verses from a chapter. If preferred, The book name can be abbreviated using the standard abbreviations. 
</p>

<p>
Here is the function:
</p>

<div class="org-src-container">
<pre class="src src-emacs-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">nrsv-insert-passage</span> <span class="org-rainbow-delimiters-depth-2">()</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">interactive</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">setq</span> oremus-passage <span class="org-rainbow-delimiters-depth-3">(</span>read-string <span class="org-string">"Passage: "</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">setq</span> oremus-passage <span class="org-rainbow-delimiters-depth-3">(</span>s-replace <span class="org-string">" "</span> <span class="org-string">"%20"</span> oremus-passage<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">setq</span> oremus-link <span class="org-rainbow-delimiters-depth-3">(</span>concat <span class="org-string">"https://bible.oremus.org/?version=NRSV&amp;passage="</span> oremus-passage <span class="org-string">"&amp;vnum=NO&amp;fnote=NO&amp;omithidden=YES"</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>switch-to-buffer <span class="org-rainbow-delimiters-depth-3">(</span>url-retrieve-synchronously oremus-link<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>search-forward <span class="org-string">"passageref\"&gt;"</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>kill-region <span class="org-rainbow-delimiters-depth-3">(</span>point<span class="org-rainbow-delimiters-depth-3">)</span> 1<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>search-forward <span class="org-string">"&lt;/div&gt;&lt;!-- class=\"bibletext\" --&gt;"</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>beginning-of-line<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>kill-region <span class="org-rainbow-delimiters-depth-3">(</span>point<span class="org-rainbow-delimiters-depth-3">)</span> <span class="org-rainbow-delimiters-depth-3">(</span>point-max<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-3">(</span>re-search-forward <span class="org-string">"&lt;p&gt;"</span> nil t<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>replace-match <span class="org-string">"\n"</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-3">(</span>re-search-forward <span class="org-string">"&lt;!.+?-&gt;"</span> nil t<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>replace-match <span class="org-string">""</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-3">(</span>re-search-forward <span class="org-string">"&lt;.+?&gt;"</span> nil t<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>replace-match <span class="org-string">""</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-3">(</span>re-search-forward <span class="org-string">"&amp;nbsp;"</span> nil t<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>replace-match <span class="org-string">" "</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-3">(</span>re-search-forward <span class="org-string">"&amp;#147;"</span> nil t<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>replace-match <span class="org-string">"\""</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-3">(</span>re-search-forward <span class="org-string">"&amp;#148;"</span> nil t<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>replace-match <span class="org-string">"\""</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-3">(</span>re-search-forward <span class="org-string">"&amp;#145;"</span> nil t<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>replace-match <span class="org-string">"</span><span class="org-string"><span class="org-warning">\</span></span><span class="org-string">'"</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-3">(</span>re-search-forward <span class="org-string">"&amp;#146;"</span> nil t<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>replace-match <span class="org-string">"</span><span class="org-string"><span class="org-warning">\</span></span><span class="org-string">'"</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>beginning-of-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-keyword">while</span> <span class="org-rainbow-delimiters-depth-3">(</span>re-search-forward <span class="org-string">"&amp;#151;"</span> nil t<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">(</span>replace-match <span class="org-string">"---"</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>delete-extra-blank-lines<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>clipboard-kill-ring-save <span class="org-rainbow-delimiters-depth-3">(</span>point-min<span class="org-rainbow-delimiters-depth-3">)</span> <span class="org-rainbow-delimiters-depth-3">(</span>point-max<span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>kill-buffer<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>yank<span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
If another translation is preferred, there are other sites that also have API&rsquo;s. I have to add my usual disclaimer &mdash; I really don&rsquo;t know what I&rsquo;m doing; I just keep messing with it until I get the result I wanted. Surely, there are more elegant ways of solving the problem, and I&rsquo;d welcome hearing about them. This is definitely the sort of thing that will be useful to only a handful of people in the world, if that. It is, however, an example of how useful Emacs can be, even for those of us non-programming types.
</p>

<div class="tagline" id="orgb91e7c2">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Second Sunday of Easter</title>
<link>https://randyridenour.net/posts/2015-01-13-the-second-sunday-of-easter.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-second-sunday-of-easter.html</guid>
<description>
<![CDATA[<p>
<i>A prayer prompted by the deacon ordination service at NorthHaven Church, April 27, 2014.</i>
</p>

<p>
Lord Jesus,
</p>

<p>
Children take what is given them<br>
With joy and gratitude,<br>
Without pretense,<br>
Never second-guessing<br>
The motives of the giver.
</p>

<p>
You told us that we must<br>
Receive the Kingdom as a little child,<br>
Yet our pride keeps us from accepting<br>
That which you offer by the hands of your servants.<br>
Teach us to receive the gifts of ministry<br>
That you so graciously provide.
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="org0442d90">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Third Sunday of Advent</title>
<link>https://randyridenour.net/posts/2015-01-13-third-sunday-of-advent.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-third-sunday-of-advent.html</guid>
<description>
<![CDATA[<p>
This is a prayer I wrote for the Christmas special at NorthHaven Church today:
</p>

<p>
Holy God,
</p>

<p>
Once again,<br>
the angels invite us<br>
to come,<br>
behold,<br>
and adore.
</p>

<p>
Now may your spirit of peace<br>
quiet our minds,<br>
prepare our hearts,<br>
and open our eyes<br>
this Christmas season<br>
that we may see<br>
the beauty of the Savior<br>
as if for the very first time.
</p>

<p>
And then, as we run to Bethlehem in joy<br>
to worship the newborn King,<br>
may we do so<br>
knowing that the tiny arms<br>
that reached out to Mary<br>
are the same arms that were stretched out<br>
to redeem the world;
</p>

<p>
And the song that the angels sang<br>
is but a shadow of the one<br>
that all creation will sing<br>
in the world to come:
</p>

<p>
Gloria in excelsis Deo,
</p>

<p>
Glory,<br>
Glory,<br>
Glory to God in the highest!
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="org7644607">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Sublime Text Build for MultiMarkdown</title>
<link>https://randyridenour.net/posts/2015-01-13-sublime-text-build-for-multimarkdown.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-sublime-text-build-for-multimarkdown.html</guid>
<description>
<![CDATA[<p>
I added some variants to Brett Terpstra&rsquo;s Marked.sublime-build file, which is part of the Marked <a href="http://brettterpstra.com/introducing-the-marked-bonus-pack/">Bonus Pack</a>. It adds options for building tex, opml, and odf files. To build a tex file, open the command palette and search for &ldquo;MMD to LaTeX.&rdquo; The file is saved as &ldquo;Marked.sublime-build&rdquo; in <code>/Users/YourUserName/Library/Application Support/Sublime Text 3/Packages</code>. Here is the complete build file:
</p>


<pre class="example" id="orga53a662">
{
	"cmd": ["open","-a","/Applications/Marked.app","$file"],
	"selector": "text.html.markdown",

	"variants": [
		{
			"cmd": ["mmd2tex", "$file"],
			"path": "/usr/local/bin",
			"name": "MMD to LaTeX"
		},

		{
			"cmd": ["mmd2odf", "$file"],
			"path": "/usr/local/bin",
			"name": "MMD to ODF"
		},

		{
			"cmd": ["mmd2opml", "$file"],
			"path": "/usr/local/bin",
			"name": "MMD to OPML"
		}

	]
}
</pre>

<p>
Happy New Year!
</p>


<div class="tagline" id="org23e9803">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Humility</title>
<link>https://randyridenour.net/posts/2009-09-05-brookhaven-5k-this-morning-i-was-passed-by-some.html</link>
<pubDate>Sat, 05 Sep 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-09-05-brookhaven-5k-this-morning-i-was-passed-by-some.html</guid>
<description>
<![CDATA[<p>
Brookhaven 5K this morning. I was passed by some ten year old kids.
</p>



<div class="tagline" id="org30d8a72">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Body Just Quits</title>
<link>https://randyridenour.net/posts/2016-01-30-the-body-just-quits.html</link>
<pubDate>Sat, 30 Jan 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-01-30-the-body-just-quits.html</guid>
<description>
<![CDATA[<p>
We left Accra, Ghana at 2300 last Saturday night. After thirty hours of traveling, we arrived in Oklahoma City. Monday night, I had to go visit my father at his hospital. Tuesday and Wednesday, I taught a Bible study on forgiveness at First Baptist Church, Sparks, OK. Thursday night, I had my three hour political philosophy class. Finally, on Friday, I came down with a stomach bug, for which I should be thankful — I went to bed and slept for eighteen hours.
</p>


<div class="tagline" id="org1c7e8b2">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Immersed in Love</title>
<link>https://randyridenour.net/posts/2015-01-13-immersed-in-love.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-immersed-in-love.html</guid>
<description>
<![CDATA[<p>
Mitch Randall’s sermon Sunday was beautiful, the thought of being immersed in God’s love brought to mind both the final scene of Bergman’s <i>Through A Glass Darkly</i> and the end of the &ldquo;Cana of Galilee&rdquo; chapter in <i>The Brothers Karamazov</i>.
</p>

<p>
Father,
</p>

<p>
I remember wearing a white robe,<br>
when I felt the water<br>
slipping over my face.
</p>

<p>
Even through the water,<br>
I could hear the voice say,<br>
&ldquo;Buried with him in baptism,<br>
and raised to walk in new life.&rdquo;
</p>

<p>
But it seems that the well of grace<br>
has since run dry,<br>
and the springs of faith<br>
have ceased to flow.
</p>

<p>
Nothing is left<br>
but a dry, dusty heart<br>
and an old and bitter soul.
</p>

<p>
But a heart can be cleansed,<br>
and a soul can be restored,<br>
indeed, all things become new<br>
when immersed in the ocean of your love.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgeeb0e07">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Strength and Wisdom</title>
<link>https://randyridenour.net/posts/2016-01-30-strength-and-wisdom.html</link>
<pubDate>Sat, 30 Jan 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-01-30-strength-and-wisdom.html</guid>
<description>
<![CDATA[<p>
A prayer after a week in which I had made prior commitments for four straight evenings following the thirty hour trip back from Ghana:
</p>

<p>
Grant us, Lord,<br>
the strength and energy<br>
to do those things<br>
that we&rsquo;ve agreed to do,<br>
and the wisdom to know<br>
when to agree to something<br>
in the first place.
</p>

<p>
Amen
</p>



<div class="tagline" id="org646602a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Stories and Community</title>
<link>https://randyridenour.net/posts/2015-05-13-stories-and-community.html</link>
<pubDate>Wed, 13 May 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-05-13-stories-and-community.html</guid>
<description>
<![CDATA[<p>
Thanks to AJ Lopez for sharing this quote with me.
</p>

<blockquote>
<p>
Instead of telling our vulnerable stories, we seek safety in abstractions, speaking to each other about our opinions, ideas and beliefs rather than about our lives. Academic culture blesses this practice by insisting that the more abstract our speech, the more likely we are to touch the universal truths that unite us. But what happens is exactly the reverse: as our discourse becomes more abstract, the less connected we feel. There is less sense community among intellectuals than in the most &ldquo;primitive&rdquo; society of storytellers.
</p>
</blockquote>

<p class="source">
Parker Palmer
</p>


<div class="tagline" id="orgab15cfb">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for a Busy Week</title>
<link>https://randyridenour.net/posts/2016-04-24-prayer-for-a-busy-week.html</link>
<pubDate>Sun, 24 Apr 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-04-24-prayer-for-a-busy-week.html</guid>
<description>
<![CDATA[<p>
Father,
</p>

<p>
We live in a world<br>
with walls both<br>
visible and invisible;<br>
some protect us from harm,<br>
and others protect<br>
us from inconvenience,<br>
hearing only the voices<br>
that reinforce our fears.
</p>

<p>
Open a window in the walls,<br>
so that we may hear the voice<br>
of the one who needs to be heard,<br>
who speaks in a still, small voice<br>
so often drowned out by our noisy lives.
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="orged6c9e4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Voices of the Marginalized</title>
<link>https://randyridenour.net/posts/2017-03-09-voices-of-the-marginalized.html</link>
<pubDate>Thu, 09 Mar 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-03-09-voices-of-the-marginalized.html</guid>
<description>
<![CDATA[<p>
I began teaching the thought of the 12th century philosopher Abelard in medieval philosophy today, and had to tell the story of his relationship with Heloise. Her letters reveal a deep intelligence, a quick wit, and brilliant insight.<br>
</p>

<p>
<i>How many other brilliant voices have been marginalized over the years?</i>
</p>

<p>
<i>What wisdom have we missed by silencing them?</i>
</p>


<div class="tagline" id="org841156f">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Homily for Maundy Thursday</title>
<link>https://randyridenour.net/posts/2018-03-30-homily-for-maundy-thursday.html</link>
<pubDate>Fri, 30 Mar 2018 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2018-03-30-homily-for-maundy-thursday.html</guid>
<description>
<![CDATA[<p>
With the end of every semester comes the last day of class. It&rsquo;s the perfect opportunity to sum up everything that is important about the subject, and leave students with a final word, something so profound that they will remember it the rest of their lives. In over 20 years of teaching philosophy at the university level, I&rsquo;ve never been able to do it. One of two things tend to happen. Generally, I&rsquo;m so far behind that I spend the last class period cramming material in that they need to know for the final exam. At the end of an hour, which I spent talking as fast as I could, and they spent writing as fast as they could, I say something like, &ldquo;We&rsquo;re out of time. Good luck on the final, and may God have mercy on your souls.&rdquo; At other times, I&rsquo;m just worn out at the end of the semester, and halfway through the last class, just say, &ldquo;I guess that&rsquo;s enough.&rdquo; To borrow a phrase from T.S. Elliot, this is way the class ends, not with a profundity, but with a whimper. Over the past few days, I&rsquo;ve had the opportunity to think about the context of John chapter 13. My father will be admitted to hospice care tomorrow. He is expected to live for, at most, another week. He is now non-responsive — he cannot speak, and we do not know if he can understand anything we say. So, I am confronted with the realization that, for all I know, my dad and I have already had our last conversation. There is always one chance that is the last chance, but we hardly ever know that it was indeed the last chance. We want our final words to be meaningful, but, because of the ignorance of our human condition, they rarely are. Fortunately, Jesus had an insight that I lacked. Chapters 13 through 17 of the Gospel of John are called the &ldquo;Farewell Discourse,&rdquo; and record his final words to his disciples before the events of Good Friday. John tells us that Jesus got up from the table, took off his robe, and tied a towel around himself. He poured water into a washbasin, then knelt and began to wash the feet of his disciples. When he had finished, he said this to them, &ldquo;Do you know what I have done to you? You call me Teacher and Lord — and you are right, for that is what I am. So if I, your Lord and Teacher, have washed your feet, you also ought to wash one another&rsquo;s feet. For I have set you an example, that you also should do as I have done to you.&rdquo; Then, after he foretold his upcoming betrayal, he got to the heart of the matter. John 13:33–35 records what I believe to be some of the most important words in the Bible:
</p>

<blockquote>
<p>
Little children, I am with you only a little longer. You will look for me; and as I said to the Jews so now I say to you, &ldquo;Where I am going, you cannot come.&rdquo; I give you a new commandment, that you love one another. Just as I have loved you, you also should love one another. By this everyone will know that you are my disciples, if you have love for one another.
</p>
</blockquote>

<p>
From this phrase, &rsquo;A new commandment,&rsquo; or in Latin, <i>mandatum novum</i>, we get the name for this day in the church calendar, Maundy Thursday. I can picture the disciples nodding their heads in assent as Jesus said these words, for a commandment to love was nothing new. It was already something that every Jew meditated on, and knew by heart: &ldquo;Thou shalt love the Lord thy God with all thy heart, and with all thy soul, and with all thy mind&rdquo; and &ldquo;Thou shalt love thy neighbor as thyself.&rdquo; Jesus though, did not command his disciples to love their neighbors as themselves; instead, he commanded them to love each other as <i>he</i> loves them. This might have looked easy on Thursday, but it became practically impossible once the events of Friday unfolded. If we are so commanded, it must be possible to fulfill that command. How, though, can we ever hope to love like Jesus? If we only open our eyes to see, Jesus himself shows us what must be done. When a Jew dies, a small group of people who are known as <i>chevra kadisha</i> prepare the body for the upcoming burial. The body is first, very reverently undressed, and any wounds on the body are carefull cleansed. Any rings, bracelets, and jewelry are removed. The body is then bathed and purified with water, then wrapped in a white sheet and maybe a prayer cloth. The sheet is tied with a sash that is fastened with a sacred symbol. Only then, is this body ready to meet the living God. When I think of this ritual, I think of Jesus who laid aside his robe and tied a towel around his waist. Today, he is stripped to serve, but tomorrow, he will be stripped to die. Dietrich Bonhoeffer, facing his own impending death, wrote this in his letters from prison: &ldquo;I think that even in this place we ought to live as if we had no wishes and no future, and just be our true selves.&rdquo; That is the key, we must strip away all of our pretensions and our pride. We must even, for a moment, forget that there will be a future, and be only who we truly are at this single moment in our lives, with all of our failures, pain, and loss. It is then, and only then, that we can truly love and be truly loved. If we were to live like this, we would find that we never miss a chance for those final words, for we will have been saying them our entire lives. 
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="org77e8e19">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Seventh Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-the-seventh-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-seventh-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
We say that God helps those who help themselves,<br>
that cleanliness is next to godliness,<br>
that money is the root of all evil,<br>
that God will not give us more than we can handle,<br>
and that he works in mysterious ways.
</p>

<p>
Father,
</p>

<p>
Open our eyes to the Scripture you have given us,<br>
and free us from the temptation<br>
to turn it into the one that we want.
</p>

<p>
<i>Amen</i>
</p>




<div class="tagline" id="orgbca4012">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Faith and Doubt</title>
<link>https://randyridenour.net/posts/2015-02-02-faith-and-doubt.html</link>
<pubDate>Mon, 02 Feb 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-02-02-faith-and-doubt.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Faith which does not doubt is dead faith.
</p>
</blockquote>

<p class="bigquote">
Miguel de Unamuno
</p>


<div class="tagline" id="orgf7bec54">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Org, Diary, and Dashboard</title>
<link>https://randyridenour.net/posts/2024-01-21-emacs-diary-and-dashboard.html</link>
<pubDate>Wed, 24 Jan 2024 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2024-01-21-emacs-diary-and-dashboard.html</guid>
<description>
<![CDATA[<p>
When I&rsquo;m not in class, most of my time is spent at my desk, with stacks of books, writing in Emacs. I also have a tendency to lose track of time when I&rsquo;m focused on a problem. So, it would be nice to have something in Emacs to remind me of the start times of meetings and classes. That sent me down a two-day rabbit hole exploring the Emacs diary and getting deeper into Org mode.
</p>

<p>
I won&rsquo;t bother detailing all of the options that I tried, but here are the highlights:
</p>

<ol class="org-ol">
<li>I first tried putting all of my appointments in Org mode. That seemed the natural thing to do, since I was already using it for task management. Unfortunately, I couldn&rsquo;t figure out how to do simple things like creating recurring appointments that ended by a certain date, much less complex ones like a class that meets every Tuesday and Thursday except for Spring Break, conference breaks, etc.</li>
<li>I then explored using the diary. The <a href="https://www.gnu.org/software/emacs/manual/html_node/emacs/Format-of-Diary-File.html">diary file</a> has an extremely simple format; simple appointments are made just by listing the date, time, and appointment title on a line. Complex appointments are made by using special <a href="https://www.gnu.org/software/emacs/manual/html_node/emacs/Special-Diary-Entries.html">sexp entries</a>, which allowed me to create the appointments for my courses. It is also very easy to display these appointments in org-agenda, which very conveniently marks the current time with a line across the agenda, providing a nice visual representation of the relative time before my next appointment. I didn&rsquo;t quite like how the appointments were displayed in emphasized text, but everything else worked great. A reminder pops up in the minibuffer several minutes before the appointment. The pop-up reminder soon disappears, but the modeline continues to list, and update, the number of minutes until the appointment.</li>
<li>Finally, as I researched how to form complex sexp appointments, I saw that Org mode is able to use the sexp appointment format. So, it was back to Org mode. Here is what I used in the end.</li>
</ol>
<section id="outline-container-org771a110" class="outline-2">
<h2 id="org771a110">Init Settings</h2>
<div class="outline-text-2" id="text-org771a110">
<p>
I created an agenda display for just the current day:
</p>

<div class="org-src-container">
<pre class="src src-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span>setq org-agenda-custom-commands
    '<span class="org-rainbow-delimiters-depth-2">(</span><span class="org-rainbow-delimiters-depth-3">(</span><span class="org-string">"d"</span> <span class="org-string">"Agenda for today"</span> agenda <span class="org-string">""</span>
          <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-rainbow-delimiters-depth-5">(</span>org-agenda-overriding-header <span class="org-string">"Today's agenda"</span><span class="org-rainbow-delimiters-depth-5">)</span>
           <span class="org-rainbow-delimiters-depth-5">(</span>org-agenda-span 'day<span class="org-rainbow-delimiters-depth-5">)</span>
          <span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
Next is to clear the existing appointment list when Emacs starts:
</p>

<div class="org-src-container">
<pre class="src src-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span>setq appt-time-msg-list nil<span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
Then generate the appointment list from the Org agenda files and update it hourly:
</p>

<div class="org-src-container">
<pre class="src src-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span>org-agenda-to-appt<span class="org-rainbow-delimiters-depth-1">)</span>
<span class="org-rainbow-delimiters-depth-1">(</span>run-at-time <span class="org-string">"24:01"</span> 3600 'org-agenda-to-appt<span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
Finally, update the appointment list every time that an agenda is viewed:
</p>

<div class="org-src-container">
<pre class="src src-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span>add-hook 'org-finalize-agenda-hook 'org-agenda-to-appt<span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
An alert is issued 12 minutes before every appointment. This can be changed with <code>(setq appt-message-warning-time 'n)</code>, where <code>n</code> is the number of minutes desired. There are ways to generate system alerts using the <a href="https://github.com/spegoraro/org-alert">Org Alert</a> package and others, but I only want something visible that counts down the time until I need to be somewhere. For this, the default appointment system works just fine.
</p>

<p>
I use the <a href="https://github.com/emacs-dashboard/emacs-dashboard">Emacs Dashboard</a> package. To display appointments, I found this function from <a href="https://github.com/KaratasFurkan">Furkan Karataş</a> to insert the agenda view for the day:
</p>

<div class="org-src-container">
<pre class="src src-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-keyword">defun</span> <span class="org-function-name">dashboard-insert-agenda</span> <span class="org-rainbow-delimiters-depth-2">(</span><span class="org-type">&amp;rest</span> _<span class="org-rainbow-delimiters-depth-2">)</span>
  <span class="org-doc">"Insert a copy of org-agenda buffer."</span>
  <span class="org-rainbow-delimiters-depth-2">(</span>insert <span class="org-rainbow-delimiters-depth-3">(</span>save-window-excursion
            <span class="org-rainbow-delimiters-depth-4">(</span>org-agenda nil <span class="org-string">"d"</span><span class="org-rainbow-delimiters-depth-4">)</span>
            <span class="org-rainbow-delimiters-depth-4">(</span><span class="org-keyword">prog1</span> <span class="org-rainbow-delimiters-depth-5">(</span>buffer-string<span class="org-rainbow-delimiters-depth-5">)</span>
              <span class="org-rainbow-delimiters-depth-5">(</span>kill-buffer<span class="org-rainbow-delimiters-depth-5">)</span><span class="org-rainbow-delimiters-depth-4">)</span><span class="org-rainbow-delimiters-depth-3">)</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
I don&rsquo;t need to see the time grid, just the current time and the appointment times:
</p>

<div class="org-src-container">
<pre class="src src-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span>setq org-agenda-time-grid
  '<span class="org-rainbow-delimiters-depth-2">(</span><span class="org-rainbow-delimiters-depth-3">(</span>daily today require-timed remove-match<span class="org-rainbow-delimiters-depth-3">)</span>
    <span class="org-rainbow-delimiters-depth-3">()</span>
    <span class="org-string">"......"</span>
    <span class="org-string">""</span><span class="org-rainbow-delimiters-depth-2">)</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>
</div>
</section>
<section id="outline-container-org4e6a9c5" class="outline-2">
<h2 id="org4e6a9c5">The Agenda File</h2>
<div class="outline-text-2" id="text-org4e6a9c5">
<p>
I have two separate agenda files, one for tasks and another for events. Here&rsquo;s how the event file is currently structured with an example or two in each category.
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-level-1">* Birthdays and Anniversaries</span>

<span class="org-org-sexp-date">%%(org-anniversary 2019 12 19) Lucy's %d%s birthday</span>

<span class="org-org-level-1">* Classes</span>

<span class="org-org-level-2">** Intro 12:30-13:45</span>
&lt;%%(and (memq (calendar-day-of-week date) '(2 4))
   (diary-block 1 25 2024 5 10 2024)
   (not (or
        (diary-block 3 18 2024 3 22 2024)
        (diary-date 3 29 2024))))&gt;

<span class="org-org-level-1">* Recurring</span>

<span class="org-org-level-2">** Edward 15:00</span>
<span class="org-org-sexp-date">&lt;%%(memq (calendar-day-of-week date) '(3))&gt;</span>

<span class="org-org-level-1">* Future</span>

<span class="org-org-level-2">** Total Eclipse </span><span class="org-org-level-2"><span class="org-org-date">&lt;2024-04-08 Mon&gt;</span></span>
<span class="org-org-level-2">** Colloquium </span><span class="org-org-level-2"><span class="org-org-date">&lt;2024-02-09 Fri 15:00&gt;</span></span>

<span class="org-org-level-1">* Past</span>
</code></pre>
</div>

<p>
All one-time appointments go under the future heading. Each appointment is simply a level-two heading that contains the appointment name and a timestamp. I haven&rsquo;t yet decided whether I&rsquo;ll later archive them or send them to &ldquo;Past&rdquo; with org-refile.
</p>

<p>
The first example is for our dog&rsquo;s birthday. The &ldquo;%d&rdquo; prints the number and the &ldquo;%s&rdquo; adds the ordinal ending. So, the agenda for December 19, 2023 contained &ldquo;Lucy&rsquo;s 4th birthday&rdquo;. I also have entries for family birthdays and anniversaries.
</p>

<p>
The second example is one of my classes this semester. At first, I struggled with where to put the time, until I realized that it doesn&rsquo;t go in the sexp. Just put the appointment name and time in the sub-heading with the sexp below. In my file, I have the sexp formulas on one line, but I&rsquo;ve split it up here to make it more readable. The first line means that this appointment is on Tuesdays and Thursdays. (Sunday=0, Monday=1, and so on.) The second line says that the appointment occurs only between January 25 and May 10, 2024, which are the beginning and end dates for our Spring semester. Conjoining these with &ldquo;and&rdquo; gives us all Tuesdays and Thursdays in the Spring semester. Next are lines with the exclusions, signified with &ldquo;not&rdquo;. The first exclusion is a block for spring break, and the second is one day that classes are cancelled. Note that these are in the scope of an &ldquo;or&rdquo; operator, meaning that a date is excluded if it meets at least one of these conditions.
</p>

<p>
The recurring section is for any recurring appointment that is not a class. Note that this could have been done with something like this, if the appointment never changes:
</p>

<div class="org-src-container">
<pre class="src src-org"><code><span class="org-org-level-2">** Edward </span><span class="org-org-level-2"><span class="org-org-date">&lt;2024-01-24 Wed 15:00 +1w&gt;</span></span>
</code></pre>
</div>

<p>
I used the slightly more complicated formula because we will probably not meet in the summer, so it will be easy to add an exception block to the sexp.
</p>

<p>
Finally, I added an org-capture template for easily creating simple appointments:
</p>

<div class="org-src-container">
<pre class="src src-lisp"><code><span class="org-rainbow-delimiters-depth-1">(</span><span class="org-string">"e"</span> <span class="org-string">"Event"</span> entry <span class="org-rainbow-delimiters-depth-2">(</span>file+headline <span class="org-string">"path to events.org"</span> <span class="org-string">"Future"</span><span class="org-rainbow-delimiters-depth-2">)</span>
             <span class="org-string">"** %? %T"</span><span class="org-rainbow-delimiters-depth-1">)</span>
</code></pre>
</div>

<p>
This creates the appointment entry with a timestamp and puts the mark where the appointment name will go.
</p>

<p>
There are many examples that can be found online, but few were of the type that I needed to see. I hope this helps someone else.
</p>
</div>
</section>
]]>
</description></item>
<item>
<title>Sliding Down the Banister of Life</title>
<link>https://randyridenour.net/posts/2017-03-28-sliding-down-the-bannister-of-life.html</link>
<pubDate>Tue, 28 Mar 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-03-28-sliding-down-the-bannister-of-life.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
As you slide down the banister of life, may the splinters never point your way.
</p>
</blockquote>

<p class="bigquote">
Micah Wakefield
</p>


<div class="tagline" id="org4eac173">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>My Emacs Elevator Pitch</title>
<link>https://randyridenour.net/posts/2025-08-10-emacs-elevator-pitch.html</link>
<pubDate>Sun, 10 Aug 2025 17:07:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-08-10-emacs-elevator-pitch.html</guid>
<description>
<![CDATA[<p>
This is my post for this month&rsquo;s <a href="https://www.emacswiki.org/emacs/Carnival">Emacs Carnival</a>, &ldquo;Your Elevator Pitch for Emacs.&rdquo; 
</p>

<p>
It&rsquo;s very simple. There is one thing that I have <i>never</i> heard an Emacs user say:
</p>

<blockquote>
<p>
I&rsquo;m forced to use Emacs for this particular task, but I sure wish I could use something else.
</p>
</blockquote>

<p>
Why would you not want to at least <i>try</i> something that its users love that much?
</p>


<div class="tagline" id="orga868286">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Sadly So Often True</title>
<link>https://randyridenour.net/posts/2015-01-13-sadly-so-often-true.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-sadly-so-often-true.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
The only good argument against Christianity is Christians.
</p>
</blockquote>

<ol class="org-ol bigquote">
<li>K. Chesterton</li>
</ol>


<div class="tagline" id="org2c0ee89">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Emacs on OS X</title>
<link>https://randyridenour.net/posts/2015-06-23-emacs-on-os-x.html</link>
<pubDate>Tue, 23 Jun 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-06-23-emacs-on-os-x.html</guid>
<description>
<![CDATA[<section id="outline-container-org72cc939" class="outline-2">
<h2 id="org72cc939">Homebrew</h2>
<div class="outline-text-2" id="text-org72cc939">
<p>
I install Emacs with <a href="http://brew.sh">Homebrew</a>. After installing Homebrew, just type the following in Terminal:
</p>

<p>
<code>brew install emacs --cocoa</code>
</p>

<p>
This makes upgrading very easy, `brew upgrade` updates everything that you&rsquo;ve installed in Homebrew. It also keeps things nicely organized in <i>usr/local/Cellar</i> and puts symbolic links in <i>usr/local/bin</i>. After installation, you have two options for getting Emacs into your Applications directory. First, Homebrew can put a link there with `brew linkapps Emacs`. Second, you can copy Emacs to /Applications with
</p>

<p>
<code>cp -r /usr/local/Cellar/emacs/24.5/Emacs.app /Applications/</code>
</p>
</div>
</section>
<section id="outline-container-org193f0c8" class="outline-2">
<h2 id="org193f0c8">Prelude</h2>
<div class="outline-text-2" id="text-org193f0c8">
<p>
I use <a href="http://batsov.com/prelude/">Emacs Prelude</a>, a starter kit by Bozhidar Batsov. There are many Emacs users that advocate setting up your own configuration from scratch, and I&rsquo;ve done that many times. I keep coming back to Prelude, though, it just makes the initial work so much easier. Prelude includes a personal directory for individual configuration files. I keep all of those files in a git repository located in Dropbox with symbolic links in the Prelude personal directory. That way, I can use Github for version control, but have all machines in sync with no effort.
</p>

<p>
There are two important files in my personal directory. The first is an emacs-lisp file containing this:
</p>


<pre class="example" id="org1c6f255">
;;Load emacs personal settings via org
(prelude-require-package 'org)
(org-babel-load-file
(expand-file-name "personal/settings.org" user-emacs-directory))
</pre>

<p>
This file loads an org-mode file that contains the actual configuration.
</p>
</div>
</section>
<section id="outline-container-org414e25d" class="outline-2">
<h2 id="org414e25d">Starting Emacs</h2>
<div class="outline-text-2" id="text-org414e25d">
<p>
I like to start Emacs using the daemon, which keeps an Emacs server running in the background, then connect to that server with Emacs Client. This makes opening Emacs nearly instantaneous.
</p>

<p>
In the past, I&rsquo;ve done this from the terminal by putting with these aliases in my zshrc:
</p>


<ul class="org-ul">
<li><code>alias daemon</code>&ldquo;emacs &ndash;daemon&rdquo;=</li>
<li><code>alias ec</code>&ldquo;emacsclient -c -a &lsquo;&rsquo;&rdquo;=</li>
<li><code>alias ef</code>&ldquo;emacsclient -c -a &lsquo;&rsquo; -F &rsquo;((fullscreen . maximized))&rsquo;&rdquo;=</li>
<li><code>alias e</code>&ldquo;emacsclient -t&rdquo;=</li>
</ul>

<p>
The first simply starts the server. I never used it, because the second would connect to the server one were already running, otherwise, it would start one, then connect to it. The third does the same thing, but starts an Emacs client with a maximized frame.
</p>

<p>
This worked well, but I usually use Alfred to start applications, not the terminal. After trying many options, I ran across these instructions by <a href="http://blog.haberkucharsky.com/tech/2015/01/26/emacs-on-osx.html%20">Jesse Haber-Kucharsky</a>. I created the Emacs Daemon application with one change, instead of using Emacs in <i>Applications, I had the script point directly to /usr/local/bin</i> instead. I created the three shell scripts as directed, but instead of the Emacs-Cocoa application, I created one called &ldquo;Emacs Client&rdquo; that started the &ldquo;ec&rdquo; script. The daemon runs at startup, then I call Emacs Client from Alfred whenever I want to start Emacs.
</p>

<p>
There are parts of this that I really didn&rsquo;t need to do, but too much is better than not enough, I suppose.
</p>


<div class="tagline" id="orgcbd7a1a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
</div>
</section>
]]>
</description></item>
<item>
<title>Fixing a HomePod Stuck in Configuration</title>
<link>https://randyridenour.net/posts/2023-12-26-fixing-a-homepod-stuck-in-configuration.html</link>
<pubDate>Tue, 26 Dec 2023 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2023-12-26-fixing-a-homepod-stuck-in-configuration.html</guid>
<description>
<![CDATA[<p>
I&rsquo;ve had a HomePod Mini in my home office for about six months now that has been working great. I&rsquo;m really impressed with the audio produced by such a small speaker. I&rsquo;ve been wanting another one to try out a stereo pair, so I put it on my Christmas list. Installing the first one was simple, but installing the second was frustrating. I connected it to power, and scanned the light with my iPhone. The HomePod went through a set-up process, offered to pair to the first, but the stereo pairing never worked. I noticed that the Home app said that the new HomePod was being configured and full functionality would be available shortly, but it never finished. I also notice that the old HomePod was on version 17.2 of the HomePod software, but the new one was still on version 16.0. So, as one does in such cases, I turned to the Internet for solutions. Evidently, this is a common problem, especially with HomePods on version 16.0 of the software. and here are some of the potential solutions that I found.
</p>

<ul class="org-ul">
<li>Unplug for at least ten seconds, then reconnect to power. The HomePod should update. (It didn&rsquo;t).</li>
<li>Change your location setting in iCloud to something else, update the HomePod, and then change the location to the original setting. (I found that you can&rsquo;t change your location setting until you first cancel Apple One and other subscriptions, which I did not want to until I was absolutely desperate.)</li>
<li>Install the HomePod into a temporary new home in the Home app.</li>
<li>Connect the new HomePod to a Mac and update in the Finder.</li>
</ul>

<p>
A combination of the last two worked. Here are the steps that I remember doing, if you ever find yourself in the same position:
</p>

<ol class="org-ol">
<li>Connect the HomePod to a Mac. Select it when it shows up in the Finder sidebar, and choose to restore it. It will then update to the latest version of the software.</li>
<li>Remove the old HomePod from the Home app by selecting it in the Home app, selecting &ldquo;Reset HomePod&hellip;&rdquo;, and then selecting &ldquo;Remove Accessory&rdquo;. (I don&rsquo;t know if this was necessary, but it&rsquo;s what I did.)</li>
<li>Add a new home in the Home app by first clicking on the circle with three little dots inside in the top right corner. In the &ldquo;Home Settings&rdquo; page, you&rsquo;ll find &ldquo;Add Home&rdquo; in the top left. Name it anything you like.</li>
<li>Add the new HomePod to the new home. After the installation process is finally complete, move the new HomePod to the old home, by selecting the HomePod and choosing &ldquo;Remove Accessory&rdquo;.</li>
<li>Add the new HomePod to the original home. Then, I added the old Homepod as a stereo pair. After everything was working, I then deleted the new temporary home from the Home app.</li>
</ol>

<p>
Hope this helps someone.
</p>
]]>
</description></item>
<item>
<title>Triumph Over Democracy</title>
<link>https://randyridenour.net/posts/2015-03-30-triumph-over-democracy.html</link>
<pubDate>Mon, 30 Mar 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-03-30-triumph-over-democracy.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
In the Soviet Union, capitalism triumphed over communism; in this country, capitalism triumphed over democracy.
</p>
</blockquote>

<p class="bigquote">
Fran Lebowitz
</p>


<div class="tagline" id="org5616d67">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>A New Law</title>
<link>https://randyridenour.net/posts/2011-05-20-rats-and-roaches-live-by-competition-under-the.html</link>
<pubDate>Fri, 20 May 2011 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2011-05-20-rats-and-roaches-live-by-competition-under-the.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Rats and roaches live by competition under the laws of supply and demand; it is the privilege of human beings to live under the laws of justice and mercy.
</p>
</blockquote>

<p class="bigquote">
Wendell Berry
</p>




<div class="tagline" id="orgbadcd6d">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Cancer</title>
<link>https://randyridenour.net/posts/2019-06-05-cancer.html</link>
<pubDate>Wed, 05 Jun 2019 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2019-06-05-cancer.html</guid>
<description>
<![CDATA[<p>
In March, I started to notice blood in my urine. At Sheri&rsquo;s insistence, I made an appointment to see our family doctor. After waiting two weeks for approval from the insurance company, I was referred to a urologist, Dr. Archer in Oklahoma City. After another two weeks of waiting for approval, the urologist performed a procedure to see if anything was wrong with the bladder. He noticed tumors, and diagnosed it as an invasive bladder cancer.
</p>

<p>
He then referred me to Dr. Stratton at the Stephenson Cancer Center at OU. Dr. Stratton scheduled the same procedure, since Dr. Archer was not able to go very deep. He told us that the treatment options were dependent on the depth of the tumor. If the tumor extended into the muscle, then the only option is to remove the bladder. If not, then the cancer is treated with BCG, the vaccine for tuberculosis.
</p>

<p>
The results were good – I do not now need to have the bladder removed, and I have been admitted to a clinical trial of BCG. My first treatment is on Thursday, June 6.
</p>



<div class="tagline" id="orgf7d01e7">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Frailty of Love</title>
<link>https://randyridenour.net/posts/2016-12-08-the-frailty-of-love.html</link>
<pubDate>Thu, 08 Dec 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-12-08-the-frailty-of-love.html</guid>
<description>
<![CDATA[<p>
Love left its throne,<br>
to join us in our<br>
weakness and frailty,<br>
divine majesty<br>
in a helpless babe,
</p>

<p>
To walk,<br>
and laugh,<br>
and cry<br>
with us,
</p>

<p>
To show us what love<br>
was willing to risk<br>
for our sake.
</p>

<p>
And no matter<br>
how much we tried,<br>
even we could not<br>
destroy its power.
</p>

<p>
Today, may love again<br>
walk with my feet and<br>
speak through my mouth.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org5175761">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Triumph of the Will</title>
<link>https://randyridenour.net/posts/2009-08-28-triumph-of-the-will.html</link>
<pubDate>Fri, 28 Aug 2009 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2009-08-28-triumph-of-the-will.html</guid>
<description>
<![CDATA[<p>
<i>Triumph of the Will</i>, directed by Leni Riefenstahl, is the film that I couldn&rsquo;t remember in Aesthetics this morning. Roger Ebert, in his 1994 <a href="http://rogerebert.suntimes.com/apps/pbcs.dll/article?AID=/19940624/REVIEWS/406240302/1023">review</a> of a documentary about Riefenstahl asks exactly the right question:
</p>

<blockquote>
<p>
&ldquo;These are by general consent two of the best documentaries ever made. But because they reflect the ideology of a monstrous movement, they pose a classic question of the contest between art and morality: Is there such a thing as pure art, or does all art make a political statement?&rdquo;
</p>
</blockquote>


<div class="tagline" id="orgf632edd">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/aesthetics.html">Aesthetics</a> <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>A Mosque in NYC</title>
<link>https://randyridenour.net/posts/2010-08-16-a-mosque-in-nyc.html</link>
<pubDate>Mon, 16 Aug 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-08-16-a-mosque-in-nyc.html</guid>
<description>
<![CDATA[<p>
I&rsquo;ve been following the debate over the proposed Mosque near the site of the World Trade Center in New York City. Baptists have historically been champions of religious liberty, and denying Muslims the right to build a house of worship is contrary to historic Baptist principles.
</p>

<p>
The question to ask is this - would you be happy with a Christian Church at the same location? If so, then do not deny Muslim-Americans the same rights that you are willing to give Christian-Americans.
</p>

<p>
It is relevant to consider the setting for the proposed Mosque. This is not a Mosque on the grounds of a tranquil place for reflection dedicated to the memory of those who perished. Instead, this is a Mosque in a neighborhood where people live, work, and deserve to have places to worship as their conscience demands. For pictures of the neighborhood, see this post from <a href="https://randyridenour.net/posts/file://daryllang.com/blog/4421">Daryl Lang</a>.
</p>


<div class="tagline" id="orga9784e0">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Friends in the Darkness</title>
<link>https://randyridenour.net/posts/2016-09-17-friends-in-the-darkness.html</link>
<pubDate>Sat, 17 Sep 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-09-17-friends-in-the-darkness.html</guid>
<description>
<![CDATA[<p>
I&rsquo;m sitting in the USO at the Portland airport with some time to write the prayer for the week. The week of 9/11 is always a time of reflection for me. In past years, I&rsquo;ve generally thought about the cost to military families, compared to a country that mostly feels inconvenienced at the airport. This year, I thought instead about the wonderful friends I made during two deployments. Although I do wish that the conflict had never happened, those friends are gifts from God that I will always cherish.
</p>

<p>
This week&rsquo;s prayer:
</p>

<p>
Thank you for<br>
the precious ones<br>
who walk through<br>
the valleys with us,<br>
surrounding us<br>
with your love,<br>
and reminding us<br>
that your grace can<br>
redeem every moment.
</p>

<p>
<i>Amen</i>
</p>






<div class="tagline" id="orgf075c7e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Pittsburgh</title>
<link>https://randyridenour.net/posts/2018-11-04-prayer-for-pittsburgh.html</link>
<pubDate>Sun, 04 Nov 2018 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2018-11-04-prayer-for-pittsburgh.html</guid>
<description>
<![CDATA[<p>
God of Grace, God of Mercy, We pray today for the people<br>
of the Tree of Life congregation<br>
in Pittsburgh. We pray for all those<br>
who suffer from violence,<br>
for those who grieve,<br>
and for those who have died<br>
because of a hatred that<br>
has no point,<br>
and makes no sense. May they find comfort in<br>
the knowledge of your love,<br>
and healing in the support<br>
of the community. We ask forgiveness<br>
for the ways in which<br>
your word has been twisted<br>
to support acts of evil. Give us the courage<br>
to challenge the evil rhetoric<br>
that supports hatred and violence,<br>
and to speak the truth boldly,<br>
that your love, grace, and mercy<br>
extend to all without limit. May the love of your people do the same.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orge95d521">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for the Fight</title>
<link>https://randyridenour.net/posts/2017-01-21-prayer-for-the-fight.html</link>
<pubDate>Sat, 21 Jan 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-01-21-prayer-for-the-fight.html</guid>
<description>
<![CDATA[<p>
We thank God<br>
that we are not<br>
like the ones<br>
who fight<br>
with violence<br>
and bloodshed.
</p>

<p>
Instead, we fight<br>
with words and images,<br>
tweets and memes,<br>
dollars and budgets.
</p>

<p>
The weapons are different,<br>
but the pain is just as real.
</p>

<p>
Lord,
</p>

<p>
If we are to fight,<br>
may we fight for something<br>
worth fighting for,
</p>

<p>
Not our ideologies,<br>
nor our egos,
</p>

<p>
But for what is right,<br>
and for those who have no voice.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org05cc47a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Bruised for the Gospel</title>
<link>https://randyridenour.net/posts/2010-06-14-we-went-to-the-confidence-course-at-ft-sill-on.html</link>
<pubDate>Mon, 14 Jun 2010 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2010-06-14-we-went-to-the-confidence-course-at-ft-sill-on.html</guid>
<description>
<![CDATA[<p>
We went to the Confidence Course at Ft. Sill on Saturday. I came back with a black eye, multiple bruises, and a sprained knee. I also had a soldier come to chapel on Sunday who had never attended before. What&rsquo;s a few bruises for the sake of the Gospel?
</p>


<div class="org-center">

<figure id="orgfe3ca25">
<img src="https://randyridenour.net/posts/../images/posts/confidence-course.png" alt="confidence-course.png" width="100%">

</figure>
</div>


<div class="tagline" id="org31f23c4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/army.html">Army</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer in Times of Change</title>
<link>https://randyridenour.net/posts/2017-01-15-prayer-in-times-of-change.html</link>
<pubDate>Sun, 15 Jan 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-01-15-prayer-in-times-of-change.html</guid>
<description>
<![CDATA[<p>
Gracious God,
</p>

<p>
We live in a time of change,<br>
sometimes inspiring and exciting,<br>
sometimes distressing and frightening,<br>
but always challenging.
</p>

<p>
Yet even in the midst of upheaval,<br>
we can be sure of this:
</p>

<p>
The Father still loves us,<br>
the Son still calls us,<br>
The Spirit still leads us,<br>
and we must still follow –<br>
</p>

<p>
Together,<br>
one body,<br>
one faith.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org9d5ad1a">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Still Cancer Free in 2023</title>
<link>https://randyridenour.net/posts/2023-07-26-still-cancer-free-in-2003.html</link>
<pubDate>Wed, 26 Jul 2023 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2023-07-26-still-cancer-free-in-2003.html</guid>
<description>
<![CDATA[<p>
Yesterday, I had my semi-annual exam with my oncologist. All the tests came back negative, and I feel better than I have in years.
</p>
]]>
</description></item>
<item>
<title>Blogging with Org Mode in Hugo</title>
<link>https://randyridenour.net/posts/2021-07-12-blogging-with-org-mode-in-hugo.html</link>
<pubDate>Mon, 12 Jul 2021 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2021-07-12-blogging-with-org-mode-in-hugo.html</guid>
<description>
<![CDATA[<p>
Like most Emacs users, I tend to use Org Mode as much as I can. Hugo has native support for Org files, but it&rsquo;s not as thorough as I would like. It seems that most people who blog using Emacs and Hugo use Ox-Hugo to export their Org files to the Markdown format that is best supported by Hugo. I&rsquo;ll experiment with some test posts over the next few days, then come back and post my thoughts.
</p>



<div class="tagline" id="org9568aeb">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/emacs.html">Emacs</a>
</p>

</div>
]]>
</description></item>
<item>
<title>A Franciscan Blessing</title>
<link>https://randyridenour.net/posts/2025-08-17-franciscan-blessing.html</link>
<pubDate>Sun, 17 Aug 2025 19:36:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-08-17-franciscan-blessing.html</guid>
<description>
<![CDATA[<p>
This is often called &ldquo;A Franciscan Blessing.&rdquo;
</p>

<blockquote>
<p>
May God bless you with discomfort,<br />
at easy answers, half-truths,<br />
and superficial relationships<br />
so that you may live<br />
deep within your heart.
</p>

<p>
May God bless you with anger<br />
at injustice, oppression,<br />
and exploitation of people,<br />
so that you may work for<br />
justice, freedom and peace.
</p>

<p>
May God bless you with tears,<br />
to shed for those who suffer pain,<br />
rejection, hunger, and war,<br />
so that you may reach out your hand<br />
to comfort them and<br />
to turn their pain to joy.
</p>

<p>
And may God bless you<br />
with enough foolishness<br />
to believe that you can<br />
make a difference in the world,<br />
so that you can do<br />
what others claim cannot be done,<br />
to bring justice and kindness<br />
to all our children and the poor.
</p>

<p>
Amen
</p>
</blockquote>

<p>
<a href="https://www.thesacredbraid.com/2016/07/22/a-non-traditional-blessing/">Dan Miller</a> traced it to Sister Ruth Fox, OSB, who was kind of enough to share with him her original version:
</p>

<blockquote>
<p>
<b>A Non-traditional Blessing</b>
</p>

<p>
May God bless you with discontent with easy answers, half-truths, superficial relationships, so that you will live from deep within your heart.
</p>

<p>
May God bless you with anger at injustice, oppression, abuse, and exploitation of people, so that you will work for justice, equality, and  peace.
</p>

<p>
May God bless you with tears to shed for those who suffer from pain, rejection, starvation and war, so that you will reach out your hand to comfort  them and to change their pain to joy.
</p>

<p>
May God bless you with the foolishness to think you can make a difference in this world, so that you will do the things which others tell you cannot be done.
</p>

<p>
If you have the courage to accept these blessings, then God will also bless you with:
</p>

<p>
happiness—because you will know that you have made life better for others
</p>

<p>
inner peace—because you will have worked to secure an outer peace for others
</p>

<p>
laughter—because your heart will be light
</p>

<p>
faithful friends—because they will recognize your worth as a person.
</p>

<p>
These blessings are yours—not for the asking, but for the giving—from One who wants to be your companion, our God, who lives and reigns, forever and ever. Amen.
</p>
</blockquote>

<p class="source">
Sister Ruth Fox, OSB
</p>

<div class="tagline" id="org3e4414f">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Jane Austen Specials</title>
<link>https://randyridenour.net/posts/2010-02-15-the-jane-austen-specials.html</link>
<pubDate>Sun, 14 Feb 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-02-15-the-jane-austen-specials.html</guid>
<description>
<![CDATA[<p>
My darling wife, Sheri, is watching the PBS version of Jane Austen&rsquo;s <i>Northanger Abbey</i> this evening. I have a set of wireless headphones that I call the &ldquo;Jane Austen Specials&rdquo; to wear at such times. Unfortunately, I didn&rsquo;t make sure that they were charged this afternoon. A great mistake on my part.
</p>


<div class="tagline" id="org665d478">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Concern for the Middle Class and Matthew 25</title>
<link>https://randyridenour.net/posts/2008-10-08-concern-for-the-middle-class-and-matthew-25.html</link>
<pubDate>Wed, 08 Oct 2008 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2008-10-08-concern-for-the-middle-class-and-matthew-25.html</guid>
<description>
<![CDATA[<p>
Both presidential candidates seem to be stressing the importance of adopting policies that are good for the middle class. I have to admit that such talk resonates with me, probably because I am a member of the middle class. Today, though, I saw a title of a <a href="http://www.sojo.net/blog/godspolitics/?p=2741">blog post</a> by Adam Taylor that is making me rethink my assumptions about the priority of the middle class.
</p>

<p>
It was titled &ldquo;Just as You Did for the Middle Class, You Also Did for Me.&rdquo;
</p>

<p>
Ouch&hellip;
</p>


<div class="tagline" id="orgc3d81fd">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Modern Social Condition</title>
<link>https://randyridenour.net/posts/2025-07-17-modern-social-condition.html</link>
<pubDate>Thu, 17 Jul 2025 05:21:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-07-17-modern-social-condition.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Never in our history have we known more people less.
</p>
</blockquote>

<p class="bigquote">
<a href="https://mastodon.social/@rands/114863439834897283" class="bigquote">Rands Schwag</a>
</p>


<div class="tagline" id="org0f2aa29">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for the Silenced</title>
<link>https://randyridenour.net/posts/2017-02-09-prayer-for-the-silenced.html</link>
<pubDate>Thu, 09 Feb 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-02-09-prayer-for-the-silenced.html</guid>
<description>
<![CDATA[<p>
Am I so wise<br>
that I have nothing<br>
left to learn,<br>
or just afraid of<br>
what I might hear?
</p>

<p>
Though others cannot,<br>
the voice of God still speaks,<br>
warning that justice comes,<br>
both for me<br>
and for those<br>
I have silenced.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org657cb90">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Guns, Cakes, and Gay Weddings</title>
<link>https://randyridenour.net/posts/2015-07-07-guns-cakes-and-gay-weddings.html</link>
<pubDate>Tue, 07 Jul 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-07-07-guns-cakes-and-gay-weddings.html</guid>
<description>
<![CDATA[<p>
Internet memes rarely constitute a high level of discourse, but they can sometimes prompt interesting conversations. This morning, a friend posted one that read,
</p>

<blockquote>
<p>
If selling a gay couple a wedding cake means a &ldquo;christian&rdquo; baker participated in their marriage, does selling a gun to a murderer mean a &ldquo;christian&rdquo; gun store owner participated in the murder?
</p>
</blockquote>

<p>
The gun store owner does indeed participate in the murder, though not in a way that makes him<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup> morally responsible for the murder. He is even more of a participant in the murder than the baker is a participant in the marriage, because the actions of the gun store owner, however unwitting, are causally significant in a way that the actions of the baker are not. All other things being equal, without the gun, there would have been no murder. All other things being equal, without the cake, the couple would still be married.
</p>

<p>
The important question with respect to the gun store owner is what kind of participation is required for moral culpability. Although negligence complicates things, let&rsquo;s assume that one is morally responsible for what one knowingly participates in. Since the gun dealer is not aware, (nor negligently unware — that is, there&rsquo;s no sign posted saying &ldquo;If you plan to commit a murder with this firearm, please do not tell me&hellip;&rdquo;) then the store owner is not morally responsible.
</p>

<p>
From what some service providers have said, though, it&rsquo;s not participation <i>per se</i> that is the problem, it&rsquo;s that their participation could be viewed as tacit approval. I don&rsquo;t understand why that&rsquo;s the case — we wouldn&rsquo;t take a Bar Mitzvah cake baked by a Christian baker to imply approval of Judaism, an <i>Eid-al-Fitr</i> cake to be an approval of Islam, or a Super Bowl cake to imply approval of professional sports.
</p>

<p>
Maybe the gun case is not close enough to be a good analogy. Maybe we should instead ask if the Christian restaurant owner is a culpable participant in my act of gluttony by selling me overly large portions with the full expectation that I will eat it all on the spot.
</p>

<div class="tagline" id="org4babecc">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
I usually mix masculine and feminine pronouns to avoid sexist language, but in this case, I think it&rsquo;s reasonable to assume that most gun store owners are male.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Truth Tables in LaTeX</title>
<link>https://randyridenour.net/posts/2018-02-10-truth-tables-in-latex.html</link>
<pubDate>Sat, 10 Feb 2018 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2018-02-10-truth-tables-in-latex.html</guid>
<description>
<![CDATA[<p>
Typesetting truth tables has never been easy. LaTeX is the gold standard for displaying logic and mathematics, but tables are awkward to edit at best. Tables are much simpler in Microsoft Word, but displaying formulas is a horrible experience.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
Here is my current workflow.
</p>

<p>
The text that I&rsquo;m using this semester is <a href="https://global.oup.com/ushe/product/introduction-to-formal-logic-with-philosophical-applications-9780199386482?cc=us&amp;lang=en&amp;">Introduction to Formal Logic with Philosophical Applications</a> by Russell Marcus. Instead of arrows and the ampersand, it uses the horseshoe, triple bar, and dot. So, I add the following lines to my LaTeX preamble to simplify entering the symbols.<sup><a id="fnr.2" class="footref" href="#fn.2" role="doc-backlink">2</a></sup>
</p>


<div class="org-src-container">
<pre class="src src-latex"><code><span class="org-font-latex-sedate"><span class="org-keyword">\newcommand</span></span>{<span class="org-font-latex-sedate"><span class="org-function-name">\lneg</span></span>}{<span class="org-font-latex-sedate"><span class="org-function-name">\mathord</span></span><span class="org-function-name">{</span><span class="org-font-latex-sedate"><span class="org-function-name">\sim</span></span><span class="org-function-name">}</span>}
<span class="org-font-latex-sedate"><span class="org-keyword">\renewcommand</span></span>{<span class="org-font-latex-sedate"><span class="org-function-name">\land</span></span>}{<span class="org-font-latex-sedate"><span class="org-function-name">\bullet</span></span>}
<span class="org-font-latex-sedate"><span class="org-keyword">\newcommand</span></span>{<span class="org-font-latex-sedate"><span class="org-function-name">\lif</span></span>}{<span class="org-font-latex-sedate"><span class="org-function-name">\supset</span></span>}
<span class="org-font-latex-sedate"><span class="org-keyword">\newcommand</span></span>{<span class="org-font-latex-sedate"><span class="org-function-name">\liff</span></span>}{<span class="org-font-latex-sedate"><span class="org-function-name">\equiv</span></span>}
</code></pre>
</div>


<p>
Then, I enter the truth table in either Excel or Numbers. For example, this would be a simple one line table determining the truth value of a formula for a given valuation:
</p>

<div class="org-center">

<figure id="orgb0e5936">
<img src="https://randyridenour.net/posts/../images/posts/20180210-numbers-truth-table1.png" alt="20180210-numbers-truth-table1.png" width="100%">

</figure>
</div>

<p>
Copy the cells that you want included in the truth table. Go to <a href="http://www.tablesgenerator.com">Tables Generator</a> and select &ldquo;LaTeX Tables&rdquo; from the top menu bar. Below the top menu bar is a drop-down menu bar. Click on &ldquo;File&rdquo; then &ldquo;Paste table data&hellip;&rdquo; and paste the table data. Table Generator will generate a nicely formatted LaTeX table; be sure to uncheck &ldquo;Escape special TeX symbols&rdquo; and select the option to remove all borders.
</p>

<div class="org-src-container">
<pre class="src src-latex"><code><span class="org-font-latex-sedate"><span class="org-keyword">\begin</span></span>{<span class="org-function-name">table</span>}[]
<span class="org-font-latex-sedate"><span class="org-keyword">\begin</span></span>{<span class="org-function-name">tabular</span>}{cccccccc}
<span class="org-font-latex-sedate"><span class="org-keyword">\hline</span></span>
P <span class="org-font-latex-warning">&amp;</span> Q <span class="org-font-latex-warning">&amp;</span> R <span class="org-font-latex-warning">&amp;</span> P <span class="org-font-latex-warning">&amp;</span> <span class="org-font-latex-sedate">\lif</span> <span class="org-font-latex-warning">&amp;</span> (<span class="org-font-latex-sedate">\lneg</span> Q <span class="org-font-latex-warning">&amp;</span> <span class="org-font-latex-sedate">\land</span> <span class="org-font-latex-warning">&amp;</span> R) <span class="org-font-latex-warning">\\</span>
1 <span class="org-font-latex-warning">&amp;</span> 1 <span class="org-font-latex-warning">&amp;</span> 1 <span class="org-font-latex-warning">&amp;</span> 1 <span class="org-font-latex-warning">&amp;</span> 0    <span class="org-font-latex-warning">&amp;</span> 0        <span class="org-font-latex-warning">&amp;</span> 0     <span class="org-font-latex-warning">&amp;</span> 1  <span class="org-font-latex-warning">\\</span>
<span class="org-font-latex-sedate"><span class="org-keyword">\end</span></span>{<span class="org-function-name">tabular</span>}
<span class="org-font-latex-sedate"><span class="org-keyword">\end</span></span>{<span class="org-function-name">table</span>}
</code></pre>
</div>

<p>
I delete the first and last line, leaving just the table data and the lines declaring the tabular environment: 
</p>

<div class="org-src-container">
<pre class="src src-latex"><code><span class="org-font-latex-sedate"><span class="org-keyword">\begin</span></span>{<span class="org-function-name">tabular</span>}{cccccccc}
<span class="org-font-latex-sedate"><span class="org-keyword">\hline</span></span>
P <span class="org-font-latex-warning">&amp;</span> Q <span class="org-font-latex-warning">&amp;</span> R <span class="org-font-latex-warning">&amp;</span> P <span class="org-font-latex-warning">&amp;</span> <span class="org-font-latex-sedate">\lif</span> <span class="org-font-latex-warning">&amp;</span> (<span class="org-font-latex-sedate">\lneg</span> Q <span class="org-font-latex-warning">&amp;</span> <span class="org-font-latex-sedate">\land</span> <span class="org-font-latex-warning">&amp;</span> R) <span class="org-font-latex-warning">\\</span>
1 <span class="org-font-latex-warning">&amp;</span> 1 <span class="org-font-latex-warning">&amp;</span> 1 <span class="org-font-latex-warning">&amp;</span> 1 <span class="org-font-latex-warning">&amp;</span> 0    <span class="org-font-latex-warning">&amp;</span> 0        <span class="org-font-latex-warning">&amp;</span> 0     <span class="org-font-latex-warning">&amp;</span> 1  <span class="org-font-latex-warning">\\</span>
<span class="org-font-latex-sedate"><span class="org-keyword">\end</span></span>{<span class="org-function-name">tabular</span>}
</code></pre>
</div>


<p>
At this point, typesetting will fail because the symbols need to be in math mode. So, I&rsquo;ve found two options. The first is to put all the commands for the symbols in math mode: 
</p>

<div class="org-src-container">
<pre class="src src-latex"><code><span class="org-font-latex-sedate"><span class="org-keyword">\begin</span></span>{<span class="org-function-name">tabular</span>}{cccccccc}
<span class="org-font-latex-sedate"><span class="org-keyword">\hline</span></span>
P <span class="org-font-latex-warning">&amp;</span> Q <span class="org-font-latex-warning">&amp;</span> R <span class="org-font-latex-warning">&amp;</span> P <span class="org-font-latex-warning">&amp;</span> <span class="org-font-latex-sedate"><span class="org-font-latex-math">\(\lif\)</span></span> <span class="org-font-latex-warning">&amp;</span> (<span class="org-font-latex-sedate"><span class="org-font-latex-math">\(\lneg\)</span></span> Q <span class="org-font-latex-warning">&amp;</span> <span class="org-font-latex-sedate"><span class="org-font-latex-math">\(\land\)</span></span> <span class="org-font-latex-warning">&amp;</span> R) <span class="org-font-latex-warning">\\</span>
1 <span class="org-font-latex-warning">&amp;</span> 1 <span class="org-font-latex-warning">&amp;</span> 1 <span class="org-font-latex-warning">&amp;</span> 1 <span class="org-font-latex-warning">&amp;</span> 0    <span class="org-font-latex-warning">&amp;</span> 0        <span class="org-font-latex-warning">&amp;</span> 0     <span class="org-font-latex-warning">&amp;</span> 1  <span class="org-font-latex-warning">\\</span>
<span class="org-font-latex-sedate"><span class="org-keyword">\end</span></span>{<span class="org-function-name">tabular</span>}
</code></pre>
</div>

<p>
The second option is to change &ldquo;tabular&rdquo; to &ldquo;array&rdquo; and put the entire table into math mode:
</p>

<div class="org-src-container">
<pre class="src src-latex"><code><span class="org-font-latex-math">\[
  </span><span class="org-font-latex-sedate"><span class="org-font-latex-math"><span class="org-keyword">\begin</span></span></span><span class="org-font-latex-math">{</span><span class="org-font-latex-math"><span class="org-function-name">array</span></span><span class="org-font-latex-math">}{cccccccc}
    </span><span class="org-font-latex-sedate"><span class="org-font-latex-math"><span class="org-keyword">\hline</span></span></span><span class="org-font-latex-math">
    P </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> Q </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> R </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> P </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> </span><span class="org-font-latex-sedate"><span class="org-font-latex-math">\lif</span></span><span class="org-font-latex-math"> </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> (</span><span class="org-font-latex-sedate"><span class="org-font-latex-math">\lneg</span></span><span class="org-font-latex-math"> Q </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> </span><span class="org-font-latex-sedate"><span class="org-font-latex-math">\land</span></span><span class="org-font-latex-math"> </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> R) </span><span class="org-font-latex-math"><span class="org-font-latex-warning">\\</span></span><span class="org-font-latex-math">
    1 </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> 1 </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> 1 </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> 1 </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> 0    </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> 0        </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> 0     </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> 1  </span><span class="org-font-latex-math"><span class="org-font-latex-warning">\\</span></span><span class="org-font-latex-math">
    </span><span class="org-font-latex-sedate"><span class="org-font-latex-math"><span class="org-keyword">\end</span></span></span><span class="org-font-latex-math">{</span><span class="org-font-latex-math"><span class="org-function-name">array</span></span><span class="org-font-latex-math">}
  \]</span>
</code></pre>
</div>



<p>
Arrays are centered on the page. If you would prefer them printed at the left margin, add &ldquo;fleqn&rdquo; to the document class options: <code>\documentclass[fleqn]{article}</code>. Since the array is in math mode, the letters will be italicized. I use the newtxmath font package, and it has a &ldquo;frenchmath&rdquo; option that sets the math font to non-italic. Other math fonts may have a similar option. Finally, whichever option is used, we need to add two lines. Adding a vertical line character to the table or array formatting options will place a vertical line between the valuation section and the rest of the truth table. Adding the booktabs package to the preamble will allow us to separate the sentence letters from the rest of the truth table with a &ldquo;|&rdquo; and, if desired, add a border line under the first row of the table.. This gives us the final version, 
</p>

<div class="org-src-container">
<pre class="src src-latex"><code><span class="org-font-latex-math">\[
  </span><span class="org-font-latex-sedate"><span class="org-font-latex-math"><span class="org-keyword">\begin</span></span></span><span class="org-font-latex-math">{</span><span class="org-font-latex-math"><span class="org-function-name">array</span></span><span class="org-font-latex-math">}{cc|cccccc}
    </span><span class="org-font-latex-sedate"><span class="org-font-latex-math"><span class="org-keyword">\hline</span></span></span><span class="org-font-latex-math">
    P </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> Q </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> R </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> P </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> </span><span class="org-font-latex-sedate"><span class="org-font-latex-math">\lif</span></span><span class="org-font-latex-math"> </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> (</span><span class="org-font-latex-sedate"><span class="org-font-latex-math">\lneg</span></span><span class="org-font-latex-math"> Q </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> </span><span class="org-font-latex-sedate"><span class="org-font-latex-math">\land</span></span><span class="org-font-latex-math"> </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> R) </span><span class="org-font-latex-math"><span class="org-font-latex-warning">\\</span></span><span class="org-font-latex-math"> </span><span class="org-font-latex-sedate"><span class="org-font-latex-math">\midrule</span></span><span class="org-font-latex-math">
    1 </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> 1 </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> 1 </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> 1 </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> 0    </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> 0        </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> 0     </span><span class="org-font-latex-math"><span class="org-font-latex-warning">&amp;</span></span><span class="org-font-latex-math"> 1  </span><span class="org-font-latex-math"><span class="org-font-latex-warning">\\</span></span><span class="org-font-latex-math"> 
    </span><span class="org-font-latex-sedate"><span class="org-font-latex-math"><span class="org-keyword">\end</span></span></span><span class="org-font-latex-math">{</span><span class="org-font-latex-math"><span class="org-function-name">array</span></span><span class="org-font-latex-math">}
  \]</span>
</code></pre>
</div>

<p>
which produces this: 
</p>

<div class="org-center">

<figure id="org36e78ab">
<img src="https://randyridenour.net/posts/../images/posts/20180210-truth-table.png" alt="20180210-truth-table.png" width="50%">

</figure>
</div>


<div class="tagline" id="orgb268106">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/LaTeX.html">Latex</a> <a href="https://randyridenour.net/posts/../tags/logic.html">Logic</a> <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Apple&rsquo;s Pages now allows users to <a href="https://support.apple.com/en-us/HT207569">add formulas</a> with LaTeX. It&rsquo;s looking like a good solution for those who like more traditional word processors.
</p></div></div>

<div class="footdef"><sup><a id="fn.2" class="footnum" href="#fnr.2" role="doc-backlink">2</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
The AMS LaTeX packages already include a command called &ldquo;&or;&rdquo; for entering the vee or wedge.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Copying Files with Fish</title>
<link>https://randyridenour.net/posts/2022-05-14-copying-files-with-fish.html</link>
<pubDate>Sat, 14 May 2022 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2022-05-14-copying-files-with-fish.html</guid>
<description>
<![CDATA[<p>
I needed to copy certain files from a bunch of subfolders to another folder. This turned out to be an easy way to do in Fish shell. 
</p>

<div class="org-src-container">
<pre class="src src-shell"><code><span class="org-function-name">cp</span> <span class="org-rainbow-delimiters-depth-1">(</span>find . -name <span class="org-string">'&lt;name&gt;'</span><span class="org-rainbow-delimiters-depth-1">)</span> &lt;target folder&gt;
</code></pre>
</div>



<div class="tagline" id="orged595ba">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/shell.html">Shell</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Reinstalling Apps from the App Store</title>
<link>https://randyridenour.net/posts/2011-11-23-reinstalling-apps-from-the-app-store.html</link>
<pubDate>Wed, 23 Nov 2011 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2011-11-23-reinstalling-apps-from-the-app-store.html</guid>
<description>
<![CDATA[<p>
I was having some trouble with BBEdit on one of my machines, so I decided to delete and reinstall the application. That’s not very difficult in ordinary circumstances, but since I bought from the App Store, it should have been even easier. There should be no need to enter any license information, just a click and install.
</p>

<p>
First, I deleted the app. I deleted BBEdit from the applications folder. Somehow, it was still in Launchpad. So, I deleted it from Launchpad. Surely that would be enough.
</p>

<p>
Unfortunately, after I deleted the application, the App Store still thought that it was installed and wouldn’t let me download another copy. With the aid of a great little application called <a href="http://apps.tempel.org/FindAnyFile/">Find Any File</a>, I removed every trace of BBEdit from the machine, including all preference files and application support files.
</p>

<p>
The App Store was still convinced that it was installed.
</p>

<p>
Then, I began searching the internet, which revealed some frustrated App Store customers, who were mostly frustrated with their Xcode experience. The search didn’t help.
</p>

<p>
For some reason, I decided to go back to Launchpad and saw the BBEdit icon there. I clicked it and BBEdit started right up, though without my usual color scheme since I had deleted the application support folder. So, where was the file? On a whim, I disconnected my backup drive, opened the App Store, and BBEdit was finally gone with the option to install. I Pressed the install button, and BBEdit was automatically installed.
</p>

<p>
Lesson: Launchpad sees apps on external drives, so disconnect any external drives to install a deleted app to your main drive. Then, reinstalling <i>should</i> be the quick and easy process that it’s supposed to be.
</p>



<div class="tagline" id="orgb1fe009">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/org.html">Org</a> <a href="https://randyridenour.net/posts/../tags/mac.html">Mac</a>
</p>

</div>
]]>
</description></item>
<item>
<title>For Sheri</title>
<link>https://randyridenour.net/posts/2015-01-13-for-sheri.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-for-sheri.html</guid>
<description>
<![CDATA[<p>
For Sheri on her birthday:
</p>

<p>
&ldquo;Did you get<br>
a good-morning<br>
kiss?&rdquo;<br>
</p>

<p>
I ask.
</p>

<p>
&ldquo;No, I don&rsquo;t think so.&rdquo;
</p>

<p>
You reply,<br>
even though I<br>
know that&rsquo;s not true.
</p>

<p>
Some couples won&rsquo;t<br>
speak for years<br>
because of some<br>
small lie.
</p>

<p>
So, how do<br>
I feel?
</p>

<p>
Like a kid<br>
who just heard
</p>

<p>
&ldquo;No school - it&rsquo;s<br>
a snow day today.&rdquo;<br>
</p>

<p>
Like a person<br>
who reached into<br>
his jacket pocket<br>
on the first day<br>
of fall,
</p>

<p>
and pulled out<br>
two twenty-dollar<br>
bills.
</p>

<p>
Those people just<br>
think they have<br>
all the luck.
</p>

<p>
I know better<br>
though,<br>
</p>

<p>
because it&rsquo;s<br>
been over<br>
thirty years,<br>
</p>

<p>
and
</p>

<p>
just one kiss<br>
is still<br>
not enough.
</p>


<div class="tagline" id="orga12813d">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/poetry.html">Poetry</a>
</p>

</div>
]]>
</description></item>
<item>
<title>To America</title>
<link>https://randyridenour.net/posts/2015-06-19-to-america.html</link>
<pubDate>Fri, 19 Jun 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-06-19-to-america.html</guid>
<description>
<![CDATA[<p>
A poem by James Weldon Johnson (June 17, 1871 – June 26, 1938), American author, educator, lawyer, diplomat, and civil rights activist.
</p>

<p>
Nine people were shot in a historic church in Charleston, South Carolina, this week, and the evidence points to it being a racist hate-crime. So, 144 years and 1 day after his birth, we are reminded that some things, unfortunately have not changed.
</p>

<blockquote>
<p>
<b>America</b>
</p>

<p>
How would you have us, as we are?<br>
Or sinking &rsquo;neath the load we bear?<br>
Our eyes fixed forward on a star?<br>
Or gazing empty at despair?
</p>

<p>
Rising or falling? Men or things?<br>
With dragging pace or footsteps fleet?<br>
Strong, willing sinews in your wings?<br>
Or tightening chains about your feet?
</p>
</blockquote>

<p class="source">
From <i>Fifty Years &amp; Other Poems</i> (1917)
</p>


<div class="tagline" id="org5c2a330">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/poetry.html">Poetry</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for the Twenty-Two</title>
<link>https://randyridenour.net/posts/2016-06-22-prayer-for-the-twentytwo.html</link>
<pubDate>Wed, 22 Jun 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-06-22-prayer-for-the-twentytwo.html</guid>
<description>
<![CDATA[<p>
On average, twenty-two veterans commit suicide every day.
</p>

<p>
God of peace,
</p>

<p>
We pray for those who<br>
bear the scars of war,<br>
both visible and invisible,<br>
for wounds that cannot be seen<br>
are no less painful to bear,<br>
and peace is but a distant dream<br>
when the war is within one&rsquo;s own soul.
</p>

<p>
Give them the courage to speak,<br>
and give us to grace to listen.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org69f6bdb">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a> <a href="https://randyridenour.net/posts/../tags/army.html">Army</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Bob Feller (1918-2010)</title>
<link>https://randyridenour.net/posts/2010-12-16-bob-feller-1918-20-10.html</link>
<pubDate>Thu, 16 Dec 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-12-16-bob-feller-1918-20-10.html</guid>
<description>
<![CDATA[<p>
Bob Feller, who pitched for the Cleveland Indians from 1936 to 1956, <a href="http://www.nytimes.com/2010/12/16/sports/baseball/16feller.html?scp=1&amp;amp;sq=%22bob%20feller%22&amp;amp;st=cse">died Wednesday</a> in Cleveland. In Alan Schwarz&rsquo;s 2006 book, <i>Once Upon a Game: Baseball&rsquo;s Greatest Memories</i>, he spoke of his decision to leave professional baseball after the 1941 attack on Pearl Harbor and enlist in the United States Navy.
</p>

<blockquote>
<p>
A lot of folks say that had I not missed those almost four seasons to World War II — during what was probably my physical prime — I might have had 370 or even 400 wins. But I have no regrets. None at all. I did what any American could and should do: serve his country in its time of need. The world’s time of need.
</p>

<p>
I knew then, and I know today, that winning World War II was the most important thing to happen to this country in the last 100 years. I’m just glad I was a part of it.
</p>
</blockquote>




<div class="tagline" id="org268fad0">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a> <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Relativism and the Rights of Women in Afghanistan</title>
<link>https://randyridenour.net/posts/2015-01-20-relativism-and-the-rights-of-women-in-afghanistan.html</link>
<pubDate>Tue, 20 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-20-relativism-and-the-rights-of-women-in-afghanistan.html</guid>
<description>
<![CDATA[<section id="outline-container-org0cc8f4f" class="outline-2">
<h2 id="org0cc8f4f">Cultural Relativism</h2>
<div class="outline-text-2" id="text-org0cc8f4f">
<p>
For many of those that hold the position, cultural relativism is motivated by a belief that we should be tolerant of the moral beliefs of other cultures. Most of the time, this is expressed in a way that is simply inconsistent, that is, given that there are no objective, universal moral truths, we <i>ought</i> to be tolerant of the moral beliefs of other cultures. Unfortunately, one cannot consistently assert both that there are no objective, universal, moral truths and that we have a moral obligation to be tolerant, especially since our culture is often intolerant.
</p>
</div>
</section>
<section id="outline-container-orgb40a3ae" class="outline-2">
<h2 id="orgb40a3ae">Options for the Relativist</h2>
<div class="outline-text-2" id="text-orgb40a3ae">
<p>
Even though relativists often are inconsistent, they need not be. Here are some ways that that one could try to assert a consistent relativism:
</p>

<ol class="org-ol">
<li>When the relativist asserts that we ought to be tolerant, the assertion should not be understood as a moral claim. Instead, it should be understood as a pragmatic claim. That is, we ought to be tolerant, not because we are morally obligated to, but because it is in our best interests as a way of minimizing conflict.</li>
<li>We shouldn&rsquo;t adopt relativism because we have a moral duty to be tolerant, of course that is inconsistent. Rather, once our culture comes to realize the truth of cultural relativism, we would naturally come to adopt an ethic of tolerance. Then, it would be true that we ought to be tolerant, since it would be part of our moral code.</li>
<li>When the relativist claims that we ought to be tolerant, she means simply that tolerance is a good. There is no need to understand this as a claim that tolerance is a -moral- good. A good is simply something that is worth pursuing, and there are several reasons why tolerance would be something worth pursuing.</li>
</ol>
</div>
</section>
<section id="outline-container-orgcce3876" class="outline-2">
<h2 id="orgcce3876">Tolerance Only to a Point?</h2>
<div class="outline-text-2" id="text-orgcce3876">
<p>
I have argued elsewhere that tolerance is not as good as one might think, since it implies an attitude of superiority toward the one being tolerated. Even so, I think it is psychologically impossible for relativists to adopt an attitude of genuine tolerance toward the moral beliefs of cultures that are radically different from our own.
</p>

<p>
For example, an Afghan woman reported that she was raped by her cousin&rsquo;s husband two years ago, and she was subsequently sentenced to twelve years in prison (<a href="http://www.cnn.com/2011/12/01/world/asia/afghanistan-rape-victim/index.html)">see CNN&rsquo;s coverage</a>. At first, it was reported that she would be released if she were to agree to marry her attacker, but authorities later said that the marriage was not a condition for her release. Even so, the imprisonment of a rape victim, who was then forced to care for her child in prison, is an unconscionable action according to most cultural relativists. That is, there are cultural beliefs and practices that should be changed, not simply tolerated.
</p>

<p>
So, what moral beliefs should be tolerated? I suspect that the level of tolerance would be highly correlated with the degree of similarity to our own moral beliefs and practices. That is, the relativist would maintain that we ought to tolerate the beliefs and practices of other cultures so long as they are not too different from our own.
</p>

<p>
That, however, is neither tolerance nor relativism. Instead, it is simply a thinly disguised moral realism.
</p>


<div class="tagline" id="org1ba4ed9">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a>
</p>

</div>
</div>
</section>
]]>
</description></item>
<item>
<title>Indifference</title>
<link>https://randyridenour.net/posts/2008-10-25-indifference.html</link>
<pubDate>Sat, 25 Oct 2008 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2008-10-25-indifference.html</guid>
<description>
<![CDATA[<p>
I passed a church this morning that had this statement on the sign: &ldquo;Indifference Not Hate.&rdquo; I&rsquo;m curious what is meant by this, is it supposed to be a statement of reassurance to the community? &ldquo;It&rsquo;s not that we hate you, we really just don&rsquo;t care&hellip;.&rdquo; Would you rather be hated or simply ignored? At least hate is an acknowledgment of the existence and importance of the other person.
</p>


<div class="tagline" id="org2faa5fe">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Christmas Prayer</title>
<link>https://randyridenour.net/posts/2015-01-20-christmas-prayer.html</link>
<pubDate>Tue, 20 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-20-christmas-prayer.html</guid>
<description>
<![CDATA[<p>
This was a prayer I delivered at NorthHaven Church in Norman for the Christmas Day service on December 25, 2011.<br>
</p>

<p>
Gracious Father,
</p>

<p>
We gather here in this place to celebrate the day the world changed.<br>
On that day, one who was pure spirit became incarnate;<br>
The eternal Word became clothed in a frail human body;<br>
That which no human had ever touched was laid by a gentle mother&rsquo;s hand into a simple manger;<br>
The eternal and timeless now had a beginning;<br>
The infinite became finite;<br>
On that day, God became human.
</p>

<p>
While still in the garden, we began to build a wall;<br>
A wall that separated ourselves from you;<br>
A wall which we built, but could never tear down.<br>
</p>

<p>
You tore down the wall when you brought your firstborn into the world,<br>
and said to that babe in the manger,<br>
</p>

<p>
&ldquo;You are my son; this day I have begotten you.&rdquo;
</p>

<p>
You have spoken to us in many ways, through the prophets, through the beauty of nature, and through the voice of conscience.
</p>

<p>
On that first Christmas day, though, you spoke has you had never spoken before.
</p>

<p>
Lord, here we are,<br>
Help us to listen,<br>
Help us to hear.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org905d4df">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>What We Need</title>
<link>https://randyridenour.net/posts/2019-06-10-what-we-need.html</link>
<pubDate>Mon, 10 Jun 2019 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2019-06-10-what-we-need.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
People can be entertained on devices 24 hours a day; they do not need a church for that. They need a church for silence, reverence, community, ancient wisdom, the opportunity to be of service, the real presence of God.
</p>
</blockquote>

<p class="bigquote">
Anna Keating<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>

<div class="tagline" id="org98d7075">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
”<a href="https://www.americamagazine.org/faith/2019/05/02/why-evangelical-megachurches-are-embracing-some-catholic-traditions">Why Evangelical Megachurches Are Embracing (Some) Catholic Traditions</a>” 
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Prayer for a Unified Church</title>
<link>https://randyridenour.net/posts/2015-10-11-prayer-for-a-unified-church.html</link>
<pubDate>Sun, 11 Oct 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-10-11-prayer-for-a-unified-church.html</guid>
<description>
<![CDATA[<p>
Holy God,
</p>

<p>
Forgive us for those times<br>
</p>

<p>
When individuality was more<br>
important to us than community&hellip;
</p>

<p>
When being right was more<br>
important to us than being loving&hellip;
</p>

<p>
When our own agendas were more<br>
important to us than your Kingdom&hellip;
</p>

<p>
When our own labels were more<br>
important to us than the name of Christ.
</p>

<p>
Give us now a new vision<br>
of that which binds us together,
</p>

<p>
The same baptism,<br>
in response to the same call,<br>
to fulfill the same mission,<br>
in service to the same Lord.
</p>

<p>
For then, we sill see in others,<br>
not differences to be feared,<br>
but diversity to be embraced,
</p>

<p>
Modeling before the world,<br>
the beauty of the Triune God,<br>
</p>

<p>
Father, Son, and Spirit,<br>
</p>

<p>
Three persons,<br>
but one God,<br>
</p>

<p>
Forever and ever,
</p>

<p>
<i>Amen</i>
</p>





<div class="tagline" id="orge63d07d">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>the Fifth Sunday of Lent</title>
<link>https://randyridenour.net/posts/2015-01-13-the-fifth-sunday-of-lent.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-fifth-sunday-of-lent.html</guid>
<description>
<![CDATA[<p>
Lord Jesus,<br>
<br>
What kind of king are you?<br>
</p>

<p>
The kingdoms of this earth<br>
Pride themselves on their power,<br>
Their majesty,<br>
Their influence,<br>
And their wealth.<br>
</p>

<p>
Yet you say that your kingdom is like<br>
A small seed,<br>
Yeast,<br>
And a net.<br>
</p>

<p>
May your kingdom fill our lives<br>
As the yeast permeates the dough.<br>
As we grow from this small seed<br>
May we provide shelter and shade to those in need,<br>
Yet remaining rooted in you,<br>
And drawing nourishment from your compassion.<br>
</p>

<p>
And when the day comes,<br>
We pray that you will<br>
Catch us in your net of love,<br>
Drawing us to our eternal home<br>
In your arms.<br>
<br>
<i>Amen</i>
</p>


<div class="tagline" id="orgf979bb4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Rights of Women in Afghanistan</title>
<link>https://randyridenour.net/posts/2011-12-07-the-rights-of-women-in-afghanistan.html</link>
<pubDate>Wed, 07 Dec 2011 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2011-12-07-the-rights-of-women-in-afghanistan.html</guid>
<description>
<![CDATA[<section id="outline-container-org7e8cc83" class="outline-2">
<h2 id="org7e8cc83">Cultural Relativism</h2>
<div class="outline-text-2" id="text-org7e8cc83">
<p>
For many of those that hold the position, cultural relativism is motivated by a belief that we should be tolerant of the moral beliefs of other cultures. Most of the time, this is expressed in a way that is simply inconsistent, that is, given that there are no objective, universal moral truths, we <i>ought</i> to be tolerant of the moral beliefs of other cultures. Unfortunately, one cannot consistently assert both that there are no objective, universal, moral truths and that we have a moral obligation to be tolerant, especially since our culture is often intolerant.
</p>
</div>
</section>
<section id="outline-container-org6fcfe16" class="outline-2">
<h2 id="org6fcfe16">Options for the Relativist</h2>
<div class="outline-text-2" id="text-org6fcfe16">
<p>
Even though relativists often are inconsistent, they need not be. Here are some ways that that one could try to assert a consistent relativism:
</p>


<ul class="org-ul">
<li>When the relativist asserts that we ought to be tolerant, the assertion should not be understood as a moral claim. Instead, it should be understood as a pragmatic claim. That is, we ought to be tolerant, not because we are morally obligated to, but because it is in our best interests as a way of minimizing conflict.</li>
<li>We shouldn&rsquo;t adopt relativism because we have a moral duty to be tolerant, of course that is inconsistent. Rather, once our culture comes to realize the truth of cultural relativism, we would naturally come to adopt an ethic of tolerance. Then, it would be true that we ought to be tolerant, since it would be part of our moral code.</li>
<li>When the relativist claims that we ought to be tolerant, she means simply that tolerance is a good. There is no need to understand this as a claim that tolerance is a <i>moral</i> good. A good is simply something that is worth pursuing, and there are several reasons why tolerance would be something worth pursuing.</li>
</ul>
</div>
</section>
<section id="outline-container-orgf145ae0" class="outline-2">
<h2 id="orgf145ae0">Tolerance Only to a Point?</h2>
<div class="outline-text-2" id="text-orgf145ae0">
<p>
I have argued elsewhere that tolerance is not as good as one might think, since it implies an attitude of superiority toward the one being tolerated. Even so, I think it is psychologically impossible for relativists to adopt an attitude of genuine tolerance toward the moral beliefs of cultures that are radically different from our own.
</p>

<p>
For example, an Afghan woman reported that she was raped by her cousin&rsquo;s husband two years ago, and she was subsequently sentenced to twelve years in prison (<a href="http://www.cnn.com/2011/12/01/world/asia/afghanistan-rape-victim/index.html">see CNN&rsquo;s coverage</a>). At first, it was reported that she would be released if she were to agree to marry her attacker, but authorities later said that the marriage was not a condition for her release. Even so, the imprisonment of a rape victim, who was then forced to care for her child in prison, is an unconscionable action according to most cultural relativists. That is, there are cultural beliefs and practices that should be changed, not simply tolerated.
</p>

<p>
So, what moral beliefs should be tolerated? I suspect that the level of tolerance would be highly correlated with the degree of similarity to our own moral beliefs and practices. That is, the relativist would maintain that we ought to tolerate the beliefs and practices of other cultures so long as they are not too different from our own.
</p>

<p>
That, however, is neither tolerance nor relativism. Instead, it is simply a thinly disguised moral realism.
</p>



<div class="tagline" id="org1c3e6f5">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/org.html">Org</a> <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a>
</p>

</div>
</div>
</section>
]]>
</description></item>
<item>
<title>Harmony of the Gospels</title>
<link>https://randyridenour.net/posts/2022-06-06-harmony-of-the-gospels.html</link>
<pubDate>Sat, 21 Jan 2023 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2022-06-06-harmony-of-the-gospels.html</guid>
<description>
<![CDATA[<p>
This is a schedule for a study of the Gospels in our Sunday School Class at NorthHaven Church.
</p>

<table>


<colgroup>
<col  class="org-left">

<col  class="org-left">

<col  class="org-left">
</colgroup>
<tbody>
<tr>
<td class="org-left">Date</td>
<td class="org-left">Subject</td>
<td class="org-left">Text</td>
</tr>

<tr>
<td class="org-left">6/19</td>
<td class="org-left">Introduction</td>
<td class="org-left">&nbsp;</td>
</tr>

<tr>
<td class="org-left">6/26</td>
<td class="org-left">Jesus&rsquo; Genealogy</td>
<td class="org-left">Matthew 1:1-17, Luke 3:23-38</td>
</tr>

<tr>
<td class="org-left">7/3</td>
<td class="org-left">Leaving Egypt and Settling in Nazareth</td>
<td class="org-left">Matthew 2:19-23, Luke 2:39</td>
</tr>

<tr>
<td class="org-left">7/10</td>
<td class="org-left">John the Baptist&rsquo;s Ministry</td>
<td class="org-left">Matthew 3:1-12, Mark 1:1-8, Luke 3:1-18</td>
</tr>

<tr>
<td class="org-left">7/17</td>
<td class="org-left">The Baptism of Jesus</td>
<td class="org-left">Matthew 3:13-17, Mark 1:9-11, Luke 3:21-22</td>
</tr>

<tr>
<td class="org-left">7/24</td>
<td class="org-left">Jesus&rsquo; Temptation in the Wilderness</td>
<td class="org-left">Matthew 4:1-11, Mark 1:12-13, Luke 4:1-13</td>
</tr>

<tr>
<td class="org-left">7/31</td>
<td class="org-left">Jesus&rsquo; Arrival and Early Ministry in Galilee</td>
<td class="org-left">Matthew 4:12, Mark 1:14-15, Luke 4:14-15, John 4:43-45</td>
</tr>

<tr>
<td class="org-left">8/7</td>
<td class="org-left">Jesus Calls Four Disciples</td>
<td class="org-left">Matthew 4:18-22, Mark 1:16-20</td>
</tr>

<tr>
<td class="org-left">8/14</td>
<td class="org-left">Jesus Authenticates His Teaching in Capernaum by Healing a Demoniac</td>
<td class="org-left">Mark 1:21-28, Luke 4:31-37</td>
</tr>

<tr>
<td class="org-left">8/21</td>
<td class="org-left">Jesus Heals Peter&rsquo;s Mother-in-Law and Others</td>
<td class="org-left">Matthew 8:14-17, Mark 1:29-34, Luke 4:38-41</td>
</tr>

<tr>
<td class="org-left">8/28</td>
<td class="org-left">Jesus&rsquo; Preaching Tour of Galilee with Simon and Others</td>
<td class="org-left">Matthew 4:23-25, Mark 1:35-39, Luke 4:42-44</td>
</tr>

<tr>
<td class="org-left">8/28</td>
<td class="org-left">A Leper Healed by Jesus</td>
<td class="org-left">Matthew 8:1-4, Mark 1:40-45, Luke 5:12-16</td>
</tr>

<tr>
<td class="org-left">9/4</td>
<td class="org-left">A Paralytic is Forgiven and Healed</td>
<td class="org-left">Matthew 9:1-8, Mark 2:1-12, Luke 5:17-26</td>
</tr>

<tr>
<td class="org-left">9/11</td>
<td class="org-left">Levi/Matthew is Called to be a Disciple</td>
<td class="org-left">Matthew 9:9-13, Mark 2:13-17, Luke 5:27-32</td>
</tr>

<tr>
<td class="org-left">9/18</td>
<td class="org-left">Jesus is Questioned About Fasting</td>
<td class="org-left">Matthew 9:14-17, Mark 2:18-22, Luke 5:33-39</td>
</tr>

<tr>
<td class="org-left">9/25</td>
<td class="org-left">Jesus&rsquo; Disciples Pluck Grain on a Sabbath</td>
<td class="org-left">Matthew 12:1-8, Mark 2:23-28, Luke 6:1-5</td>
</tr>

<tr>
<td class="org-left">10/2</td>
<td class="org-left">Jesus Heals a Man&rsquo;s Withered Hand on a Sabbath</td>
<td class="org-left">Matthew 12:9-14, Mark 3:1-6, Luke 6:6-11</td>
</tr>

<tr>
<td class="org-left">10/9</td>
<td class="org-left">Jesus&rsquo; Popularity Grows</td>
<td class="org-left">Matthew 12:15-21, Mark 3:7-12</td>
</tr>

<tr>
<td class="org-left">10/16</td>
<td class="org-left">The Twelve Disciples Chosen and Named</td>
<td class="org-left">Mark 3:13-19, Luke 6:12-16</td>
</tr>

<tr>
<td class="org-left">10/23</td>
<td class="org-left">Characteristics of the Godly</td>
<td class="org-left">Matthew 5:1-16, Luke 6:17-26</td>
</tr>

<tr>
<td class="org-left">10/30</td>
<td class="org-left">Jesus Practically Applies the Meaning of the Law</td>
<td class="org-left">Matthew 5:21-48, Luke 6:27-36</td>
</tr>

<tr>
<td class="org-left">11/6</td>
<td class="org-left">Wise Words on Judging</td>
<td class="org-left">Matthew 7:1-6, Luke 6:37-42</td>
</tr>

<tr>
<td class="org-left">11/13</td>
<td class="org-left">Jesus&rsquo; Words on Righteous Living</td>
<td class="org-left">Matthew 7:13-27, Luke 6:43-49</td>
</tr>

<tr>
<td class="org-left">11/20</td>
<td class="org-left">The Centurion&rsquo;s Servant Healed</td>
<td class="org-left">Matthew 8:5-13, Luke 7:1-10</td>
</tr>

<tr>
<td class="org-left">11/27</td>
<td class="org-left">Messages From and About John the Baptist</td>
<td class="org-left">Matthew 11:2-30, Luke 7:18-35</td>
</tr>

<tr>
<td class="org-left">12/4</td>
<td class="org-left">Jesus Responds to Accusations of Casting Out Demons by Beelzebub</td>
<td class="org-left">Matthew 12:22-45, Mark 3:20-30</td>
</tr>

<tr>
<td class="org-left">12/11</td>
<td class="org-left">Jesus&rsquo; True Family is Spiritual</td>
<td class="org-left">Matthew 12:46-50, Mark 3:31-35, Luke 8:19-21</td>
</tr>

<tr>
<td class="org-left">12/18</td>
<td class="org-left">The Parable of the Soils</td>
<td class="org-left">Matthew 13:1-9, Mark 4:1-9, Luke 8:4-8</td>
</tr>

<tr>
<td class="org-left">1/8</td>
<td class="org-left">The Reason for the Parables</td>
<td class="org-left">Matthew 13:10-17, Mark 4:10-12, Luke 8:9-10</td>
</tr>

<tr>
<td class="org-left">1/15</td>
<td class="org-left">Parable of the Soils Explained</td>
<td class="org-left">Matthew 13:18-23, Mark 4:13-20, Luke 8:11-15</td>
</tr>

<tr>
<td class="org-left">1/22</td>
<td class="org-left">Jesus Speaks on the Use of Parables</td>
<td class="org-left">Mark 4:21-25, Luke 8:16-18</td>
</tr>

<tr>
<td class="org-left">1/22</td>
<td class="org-left">The Parable of the Mustard Seed and Tree</td>
<td class="org-left">Matthew 13:31-32, Mark 4:30-32</td>
</tr>

<tr>
<td class="org-left">1/29</td>
<td class="org-left">Jesus&rsquo; Custom of Speaking in Parables</td>
<td class="org-left">Matthew 13:34-35, Mark 4:33-34</td>
</tr>

<tr>
<td class="org-left">2/5</td>
<td class="org-left">Jesus Calms the Storm</td>
<td class="org-left">Matthew 8:18-27, Mark 4:35-41, Luke 8:22-25</td>
</tr>

<tr>
<td class="org-left">2/12</td>
<td class="org-left">Healing the Gerasene Demoniacs</td>
<td class="org-left">Matthew 8:28-34, Mark 5:1-20, Luke 8:26-39</td>
</tr>

<tr>
<td class="org-left">2/26</td>
<td class="org-left">The Raising of Jairus&rsquo; Daughter, and Other Acts of Healing</td>
<td class="org-left">Matthew 9:18-34, Mark 5:21-43, Luke 8:40-56</td>
</tr>

<tr>
<td class="org-left">3/5</td>
<td class="org-left">A Final Visit to Unbelieving Nazareth</td>
<td class="org-left">Matthew 13:54-58, Mark 6:1-6</td>
</tr>

<tr>
<td class="org-left">&nbsp;</td>
<td class="org-left">Shortage of Laborers</td>
<td class="org-left">Matthew 9:35-38, Mark 6:6</td>
</tr>

<tr>
<td class="org-left">3/12</td>
<td class="org-left">Jesus Sends Forth the Twelve for Ministry</td>
<td class="org-left">Matthew 10:1-42, Mark 6:7-11, Luke 9:1-5</td>
</tr>

<tr>
<td class="org-left">3/19</td>
<td class="org-left">The Departure of Jesus and the Disciples</td>
<td class="org-left">Matthew 11:1, Mark 6:12-13, Luke 9:6</td>
</tr>

<tr>
<td class="org-left">&nbsp;</td>
<td class="org-left">The Death of John the Baptist</td>
<td class="org-left">Matthew 14:1-12, Mark 6:14-29, Luke 9:7-9</td>
</tr>

<tr>
<td class="org-left">3/26</td>
<td class="org-left">Return of the Disciples</td>
<td class="org-left">Mark 6:30, Luke 9:10</td>
</tr>

<tr>
<td class="org-left">&nbsp;</td>
<td class="org-left">Jesus Feeds Five Thousand</td>
<td class="org-left">Matthew 14:13-21, Mark 6:31-44, Luke 9:10-17, John 6:1-15</td>
</tr>

<tr>
<td class="org-left">4/2</td>
<td class="org-left">Jesus Walks on the Sea</td>
<td class="org-left">Matthew 14:22-33, Mark 6:45-52, John 6:16-21</td>
</tr>

<tr>
<td class="org-left">4/9</td>
<td class="org-left">Healings at Gennesaret</td>
<td class="org-left">Matthew 14:34-36, Mark 6:53-56</td>
</tr>

<tr>
<td class="org-left">4/9</td>
<td class="org-left">Traditions and Commandments</td>
<td class="org-left">Matthew 15:1-20, Mark 7:1-23, John 7:1</td>
</tr>

<tr>
<td class="org-left">4/16</td>
<td class="org-left">The Syrophoenician Woman&rsquo;s Faith</td>
<td class="org-left">Matthew 15:21-28, Mark 7:24-30</td>
</tr>

<tr>
<td class="org-left">4/23</td>
<td class="org-left">Jesus Returns to the Sea of Galilee</td>
<td class="org-left">Matthew 15:29-31, Mark 7:31-37</td>
</tr>

<tr>
<td class="org-left">4/23</td>
<td class="org-left">Jesus Feeds Four Thousand</td>
<td class="org-left">Matthew 15:32-39, Mark 8:1-10</td>
</tr>

<tr>
<td class="org-left">4/30</td>
<td class="org-left">Pharisees Demand a Sign from Jesus</td>
<td class="org-left">Matthew 16:1-12, Mark 8:11-21</td>
</tr>

<tr>
<td class="org-left">5/7</td>
<td class="org-left">Peter&rsquo;s Confession of Jesus as the Christ</td>
<td class="org-left">Matthew 16:13-20, Mark 8:27-30, Luke 9:18-21</td>
</tr>

<tr>
<td class="org-left">5/7</td>
<td class="org-left">Jesus Foretells His Death</td>
<td class="org-left">Matthew 16:21-28, Mark 8:31-9:1, Luke 9:22-27</td>
</tr>

<tr>
<td class="org-left">5/14</td>
<td class="org-left">The Transfiguration</td>
<td class="org-left">Matthew 17:1-13, Mark 9:2-13, Luke 9:28-36</td>
</tr>

<tr>
<td class="org-left">5/21</td>
<td class="org-left">Healing of a Demoniac Boy</td>
<td class="org-left">Matthew 17:14-21, Mark 9:14-29, Luke 9:37-43</td>
</tr>

<tr>
<td class="org-left">5/28</td>
<td class="org-left">Jesus Foretells His Death Again</td>
<td class="org-left">Matthew 17:22-23, Mark 9:30-32, Luke 9:43-45</td>
</tr>

<tr>
<td class="org-left">5/28</td>
<td class="org-left">Who is Greatest in God&rsquo;s Kingdom?</td>
<td class="org-left">Matthew 18:1-5, Mark 9:33-37, Luke 9:46-48</td>
</tr>

<tr>
<td class="org-left">6/4</td>
<td class="org-left">Warning Against Being a Stumbling Block</td>
<td class="org-left">Matthew 18:6-14, Mark 9:38-50, Luke 9:49-50</td>
</tr>

<tr>
<td class="org-left">6/11</td>
<td class="org-left">The Departure from Galilee</td>
<td class="org-left">Matthew 19:1-2, Mark 10:1, Luke 9:51-56, John 7:10</td>
</tr>

<tr>
<td class="org-left">6/11</td>
<td class="org-left">Jesus&rsquo; Teaching on Divorce</td>
<td class="org-left">Matthew 19:3-12, Mark 10:2-12</td>
</tr>

<tr>
<td class="org-left">6/18</td>
<td class="org-left">Jesus Blesses the Little Children</td>
<td class="org-left">Matthew 19:13-15, Mark 10:13-16, Luke 18:15-17</td>
</tr>

<tr>
<td class="org-left">6/25</td>
<td class="org-left">The Rich Young Man</td>
<td class="org-left">Matthew 19:16-30, Mark 10:17-31, Luke 18:18-30</td>
</tr>

<tr>
<td class="org-left">7/2</td>
<td class="org-left">Jesus Predicts His Death Again</td>
<td class="org-left">Matthew 20:17-19, Mark 10:32-34, Luke 18:31-34</td>
</tr>

<tr>
<td class="org-left">7/9</td>
<td class="org-left">Warning Against Ambitious Pride</td>
<td class="org-left">Matthew 20:20-28, Mark 10:35-45</td>
</tr>

<tr>
<td class="org-left">7/16</td>
<td class="org-left">Blind Bartimaeus and Companion Healed</td>
<td class="org-left">Matthew 20:29-34, Mark 10:46-52, Luke 18:35-43</td>
</tr>

<tr>
<td class="org-left">7/23</td>
<td class="org-left">Mary&rsquo;s Anointing of Jesus for Burial</td>
<td class="org-left">Matthew 26:6-13, Mark 14:3-9, John 12:2-8</td>
</tr>

<tr>
<td class="org-left">7/30</td>
<td class="org-left">The Triumphal Entry</td>
<td class="org-left">Matthew 21:1-11, Mark 11:1-11, Luke 19:29-44, John 12:12-19</td>
</tr>

<tr>
<td class="org-left">8/6</td>
<td class="org-left">The Cursing of the Fig Tree</td>
<td class="org-left">Matthew 21:18-19, Mark 11:12-14</td>
</tr>

<tr>
<td class="org-left">8/6</td>
<td class="org-left">Second Cleansing of the Temple</td>
<td class="org-left">Matthew 21:12-17, Mark 11:15-19, Luke 19:45-48</td>
</tr>

<tr>
<td class="org-left">8/13</td>
<td class="org-left">The Lesson of the Withered Fig Tree</td>
<td class="org-left">Matthew 21:18-22, Mark 11:20-25</td>
</tr>

<tr>
<td class="org-left">8/20</td>
<td class="org-left">Jesus&rsquo; Authority Challenged</td>
<td class="org-left">Matthew 21:23-27, Mark 11:27-33, Luke 20:1-8</td>
</tr>

<tr>
<td class="org-left">8/27</td>
<td class="org-left">Parable of the Tenants</td>
<td class="org-left">Matthew 21:33-46, Mark 12:1-12, Luke 20:9-19</td>
</tr>

<tr>
<td class="org-left">8/27</td>
<td class="org-left">Paying Taxes to Caesar</td>
<td class="org-left">Matthew 22:15-22, Mark 12:13-17, Luke 20:20-26</td>
</tr>

<tr>
<td class="org-left">9/3</td>
<td class="org-left">Marriage and the Resurrection</td>
<td class="org-left">Matthew 22:23-33, Mark 12:18-27, Luke 20:27-38</td>
</tr>

<tr>
<td class="org-left">9/10</td>
<td class="org-left">The Greatest Commandment</td>
<td class="org-left">Matthew 22:34-40, Mark 12:28-34, Luke 20:39-40</td>
</tr>

<tr>
<td class="org-left">9/17</td>
<td class="org-left">Question About the Son of David</td>
<td class="org-left">Matthew 22:41-46, Mark 12:35-37, Luke 20:41-44</td>
</tr>

<tr>
<td class="org-left">9/24</td>
<td class="org-left">Listen to the Pharisees, but Don&rsquo;t Follow Their Deeds</td>
<td class="org-left">Matthew 23:1-12, Mark 12:38-40, Luke 20:45-47</td>
</tr>

<tr>
<td class="org-left">10/1</td>
<td class="org-left">The Poor Widow&rsquo;s Offering</td>
<td class="org-left">Mark 12:41-44, Luke 21:1-4</td>
</tr>

<tr>
<td class="org-left">10/8</td>
<td class="org-left">Destruction of the Temple Foretold by Jesus</td>
<td class="org-left">Matthew 24:1-2, Mark 13:1-2, Luke 21:5-6</td>
</tr>

<tr>
<td class="org-left">10/15</td>
<td class="org-left">Signs of the End of the Age</td>
<td class="org-left">Matthew 24:3-14, Mark 13:3-13, Luke 21:7-19</td>
</tr>

<tr>
<td class="org-left">10/22</td>
<td class="org-left">The Abomination of Desolation</td>
<td class="org-left">Matthew 24:15-28, Mark 13:14-23, Luke 21:20-24</td>
</tr>

<tr>
<td class="org-left">10/29</td>
<td class="org-left">The Coming of the Son of Man</td>
<td class="org-left">Matthew 24:29-31, Mark 13:24-27, Luke 21:25-28</td>
</tr>

<tr>
<td class="org-left">11/5</td>
<td class="org-left">The Unknown Day and Hour</td>
<td class="org-left">Matthew 24:32-44, Mark 13:28-37, Luke 21:29-33</td>
</tr>

<tr>
<td class="org-left">11/5</td>
<td class="org-left">The Faithful or the Unfaithful Slave</td>
<td class="org-left">Matthew 24:45-51, Luke 21:34-36</td>
</tr>

<tr>
<td class="org-left">11/12</td>
<td class="org-left">The Chief Priests Plot to Kill Jesus</td>
<td class="org-left">Matthew 26:1-5, Mark 14:1-2, Luke 22:1-2</td>
</tr>

<tr>
<td class="org-left">11/19</td>
<td class="org-left">Judas Bargains to Betray Jesus</td>
<td class="org-left">Matthew 26:14-16, Mark 14:10-11, Luke 22:3-6</td>
</tr>

<tr>
<td class="org-left">11/26</td>
<td class="org-left">Passover Meal Preparation</td>
<td class="org-left">Matthew 26:17-19, Mark 14:12-16, Luke 22:7-13</td>
</tr>

<tr>
<td class="org-left">11/26</td>
<td class="org-left">Beginning of the Passover Meal</td>
<td class="org-left">Matthew 26:20, Mark 14:17, Luke 22:14-16</td>
</tr>

<tr>
<td class="org-left">11/26</td>
<td class="org-left">Jesus&rsquo; Betrayer Identified</td>
<td class="org-left">Matthew 26:21-25, Mark 14:18-21, Luke 22:21-23, John 13:21-30</td>
</tr>

<tr>
<td class="org-left">12/3</td>
<td class="org-left">Jesus Predicts Peter&rsquo;s Denial</td>
<td class="org-left">Luke 22:31-38, John 13:31-38</td>
</tr>

<tr>
<td class="org-left">12/10</td>
<td class="org-left">Lord&rsquo;s Supper Instituted</td>
<td class="org-left">Matthew 26:26-29, Mark 14:22-25, Luke 22:17-20</td>
</tr>

<tr>
<td class="org-left">12/17</td>
<td class="org-left">Second Prediction of Peter&rsquo;s Denial</td>
<td class="org-left">Matthew 26:30-35, Mark 14:26-31</td>
</tr>

<tr>
<td class="org-left">12/31</td>
<td class="org-left">Jesus&rsquo; Prayer in Gethsemane</td>
<td class="org-left">Matthew 26:36-46, Mark 14:32-42, Luke 22:39-46</td>
</tr>

<tr>
<td class="org-left">1/7</td>
<td class="org-left">The Betrayal and Arrest</td>
<td class="org-left">Matthew 26:47-56, Mark 14:43-52, Luke 22:47-53, John 18:1-12</td>
</tr>

<tr>
<td class="org-left">1/14</td>
<td class="org-left">Jesus&rsquo; Trial Before the Sanhedrin</td>
<td class="org-left">Matthew 26:57-68, Mark 14:53-65, Luke 22:54</td>
</tr>

<tr>
<td class="org-left">1/21</td>
<td class="org-left">Peter Denies Jesus</td>
<td class="org-left">Matthew 26:69-75, Mark 14:66-72, Luke 22:55-62, John 18:25-27</td>
</tr>

<tr>
<td class="org-left">1/28</td>
<td class="org-left">Jesus Still Before the Sanhedrin</td>
<td class="org-left">Matthew 27:1, Mark 15:1, Luke 22:63-71</td>
</tr>

<tr>
<td class="org-left">2/4</td>
<td class="org-left">Jesus Before Pilate</td>
<td class="org-left">Matthew 27:2, 11-14, Mark 15:1-5, Luke 23:1-5, John 18:28-38</td>
</tr>

<tr>
<td class="org-left">2/11</td>
<td class="org-left">Jesus Back Before Pilate</td>
<td class="org-left">Matthew 27:15-26, Mark 15:6-15, Luke 23:13-25, John 18:39-19:16</td>
</tr>

<tr>
<td class="org-left">2/18</td>
<td class="org-left">Roman Soldiers Mock Jesus</td>
<td class="org-left">Matthew 27:27-31, Mark 15:16-20</td>
</tr>

<tr>
<td class="org-left">2/25</td>
<td class="org-left">The Crucifixion</td>
<td class="org-left">Matthew 27:32-56, Mark 15:21-41, Luke 23:26-49, John 19:17-37</td>
</tr>

<tr>
<td class="org-left">3/3</td>
<td class="org-left">The Burial of Jesus</td>
<td class="org-left">Matthew 27:57-61, Mark 15:42-47, Luke 23:50-56, John 19:38-42</td>
</tr>

<tr>
<td class="org-left">3/10</td>
<td class="org-left">The Resurrection Morning</td>
<td class="org-left">Matthew 28:1-10, Mark 16:1-11, Luke 24:1-12, John 20:1-18</td>
</tr>

<tr>
<td class="org-left">3/17</td>
<td class="org-left">The Walk to Emmaus</td>
<td class="org-left">Mark 16:12-13, Luke 24:13-35</td>
</tr>

<tr>
<td class="org-left">3/24</td>
<td class="org-left">Jesus Appears to Ten Disciples</td>
<td class="org-left">Mark 16:14, Luke 24:36-49, John 20:19-25</td>
</tr>
</tbody>
</table>


<div class="tagline" id="orga4dac86">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Frankl on Self-Actualization</title>
<link>https://randyridenour.net/posts/2025-11-14-frankl-selfactualization.html</link>
<pubDate>Fri, 14 Nov 2025 14:45:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2025-11-14-frankl-selfactualization.html</guid>
<description>
<![CDATA[<blockquote>
<p>
By declaring that man is responsible and must actualize the potential meaning of his life, I wish to stress that the true meaning of life is to be discovered in the world rather than within man or his own psyche, as though it were a closed system. I have termed this constitutive characteristic &ldquo;the self-transcendence of human existence.&rdquo; It denotes the fact that being human always points, and is directed, to something, or someone, other than oneself—be it a meaning to fulfill or another human being to encounter. The more one forgets himself—by giving himself to a cause to serve or another person to love—the more human he is and the more he actualizes himself. What is called self-actualization is not an attainable aim at all, for the simple reason that the more one would strive for it, the more he would miss it. In other words, self-actualization is possible only as a side-effect of self-transcendence.
</p>
</blockquote>

<p class="source">
Frankl, Viktor E., <i>Man&rsquo;s Search for Meaning</i>
</p>

<div class="tagline" id="orgb1a04bd">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/ethics.html">Ethics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Growth</title>
<link>https://randyridenour.net/posts/2019-01-08-growth.html</link>
<pubDate>Tue, 08 Jan 2019 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2019-01-08-growth.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Growth for the sake of growth is the ideology of the cancer cell.
</p>
</blockquote>

<p class="bigquote">
Edward Abbey
</p>
]]>
</description></item>
<item>
<title>Gregory of Nyssa</title>
<link>https://randyridenour.net/posts/2025-03-09-gregory-nyssa.html</link>
<pubDate>Sun, 09 Mar 2025 19:13:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-03-09-gregory-nyssa.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Concepts create idols; only wonder comprehends anything. People kill one another over idols. Wonder makes us fall to our knees.
</p>
</blockquote>

<p class="bigquote">
Gregory of Nyssa
</p>


<div class="tagline" id="orge922b3c">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Vanity of Our Hope</title>
<link>https://randyridenour.net/posts/2015-06-21-the-vanity-of-our-hope.html</link>
<pubDate>Sun, 21 Jun 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-06-21-the-vanity-of-our-hope.html</guid>
<description>
<![CDATA[<p>
A reflection on the lives lost this week in Charleston, and the responsibility that we bear, either explicitly or implicitly:
</p>

<p>
God of justice,
</p>

<p>
We are told that heaven rejoices<br>
over what has been found,<br>
does heaven also weep for<br>
what has been lost?<br>
<br>
For the one whose heart<br>
was lost in hatred,<br>
and whose mind was<br>
filled with empty lies?<br>
<br>
For the nine lives that<br>
were taken in an act<br>
of unspeakable horror?<br>
<br>
Does heaven also mourn<br>
at the loss of our hope,<br>
or does heaven simply sigh,<br>
for that hope was<br>
always vain and self-serving?<br>
<br>
For we hoped that<br>
things would get better<br>
as time passed,<br>
with no effort, and no cost,<br>
<br>
We hoped to measure our lives<br>
by the things that we have,<br>
and not by the people that we ignore,<br>
<br>
We hoped that it would<br>
be enough to just not hate,<br>
even if we could not really love.<br>
<br>
Forgive us, Lord,<br>
for the sin of settling for<br>
something less than than<br>
the full Kingdom of God,<br>
<br>
But even more for the<br>
greater sin of never<br>
really wanting it at all.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org7470604">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Eighteenth Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-the-eighteenth-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-the-eighteenth-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
Holy God,
</p>

<p>
Examine our hearts,<br>
and test our wills<br>
against your own.<br>
</p>

<p>
We pray for the coming of your Kingdom<br>
here, on earth,<br>
even as it is in heaven.<br>
</p>

<p>
Yet we confess that sometimes,<br>
these are just sounds made with our voices,<br>
not reflections of the desires of our hearts.<br>
For in that day,<br>
the high shall be brought down<br>
and the low shall be lifted up<br>
and compared to most,<br>
we live in power, prestige, and comfort.
</p>

<p>
At other times, the words are sincere,<br>
a promise that we fear can never be fulfilled,<br>
for the death, sickness, pain, and loss often<br>
seem more real to us than the words that we pray.<br>
</p>

<p>
Yet you know this, Lord,<br>
You know our deepest secrets, frailties, and deceits,<br>
and ask us to pray anyway,<br>
for our prayers may<br>
turn to hopes,<br>
our hopes, to dreams,<br>
and our dreams,<br>
to a new vision of what can truly be.
</p>

<p>
May it begin, here, in this place,<br>
with us, your people,<br>
by the power of the Spirit,<br>
the abundant grace of the Father,<br>
and the sacrificial love of the Son.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org132425f">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Resurrection and Hope</title>
<link>https://randyridenour.net/posts/2015-04-05-resurrection-and-hope.html</link>
<pubDate>Sun, 05 Apr 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-04-05-resurrection-and-hope.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Believing in the resurrection does not just mean assenting to a dogma and noting a historical fact. It means participating in this creative act of God. Resurrection is not a consoling opium, soothing us with the promise of a better world in the hereafter. It is the energy for a rebirth of this life. The hope doesn’t point to another world. It is focused on the redemption of this one.
</p>
</blockquote>

<p class="bigquote">
Jürgen Moltmann
</p>


<div class="tagline" id="org040c2fe">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Gun Violence — A Prayer</title>
<link>https://randyridenour.net/posts/2015-10-04-gun-violence--a-prayer.html</link>
<pubDate>Sun, 04 Oct 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-10-04-gun-violence--a-prayer.html</guid>
<description>
<![CDATA[<p>
Grieving for the lives lost in Oregon, a<br>
prayer for World Communion Sunday, 2015:
</p>

<p>
Merciful God,
</p>

<p>
At least three while<br>
we sit in worship,
</p>

<p>
Eighty today,<br>
as we rest<br>
on the Sabbath,
</p>

<p>
Thirty thousand lives<br>
lost in a single year.
</p>

<p>
Some were taken<br>
by their own hand,<br>
some by accident,<br>
still others by strangers.
</p>

<p>
All were lost in<br>
brutal acts of violence,<br>
sacrificed on the altar<br>
of our rights.
</p>

<p>
Christ gave up everything<br>
so that I might have life,<br>
what am I willing to give up
so that others may live?
</p>

<p>
Lord, have mercy.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org854c196">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>DuoLingo</title>
<link>https://randyridenour.net/posts/2015-06-12-duolingo.html</link>
<pubDate>Fri, 12 Jun 2015 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2015-06-12-duolingo.html</guid>
<description>
<![CDATA[<p>
Speaking of interesting, free resources, <a href="https://www.duolingo.com/">DuoLingo</a> is a site reminiscent of Rosetta Stone. I&rsquo;ve started the German course for review, and it seems to be very well done so far. I notice that they have Danish — maybe it&rsquo;s time to get serious about studying Kierkegaard.
</p>


<div class="tagline" id="orge0212a2">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/teaching.html">Teaching</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Baldwin</title>
<link>https://randyridenour.net/posts/2025-07-05-baldwin.html</link>
<pubDate>Sat, 05 Jul 2025 09:33:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-07-05-baldwin.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
You think your pain and your heartbreak are unprecedented in the history of the world, but then you read.
</p>
</blockquote>

<p class="bigquote">
James Baldwin
</p>


<div class="tagline" id="orgc953e50">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Listening to Those Who Left</title>
<link>https://randyridenour.net/posts/2025-05-01-listening-those-who-left.html</link>
<pubDate>Thu, 01 May 2025 15:52:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-05-01-listening-those-who-left.html</guid>
<description>
<![CDATA[<p>
It&rsquo;s important to listen to the voices of those who have left the church. Here is one of those voices:
</p>

<blockquote>
<p>
I consider myself one of those who have left the American evangelical church, unable to recognize as legitimate a belief system that doesn’t worship Jesus’ example to help the poor, the sick and the hungry. A church system that doesn’t recognize Jesus’ love and empathy, but rather worships money and power for money’s and power’s sake.
</p>
</blockquote>

<p class="source">
<a href="https://www.washingtonpost.com/opinions/2025/04/30/african-spirituality-in-sinners/?carta-url=https%3A%2F%2Fs2.washingtonpost.com%2Fcar-ln-tr%2F4257637%2F6813462add86c91e54cfe1b1%2F596a35569bbc0f0e09e8239c%2F34%2F64%2F6813462add86c91e54cfe1b1" class="source">Karen Attiah</a>
</p>

<div class="tagline" id="org23fdcf1">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>A Mothers Day Prayer</title>
<link>https://randyridenour.net/posts/2016-05-08-a-mothers-day-prayer.html</link>
<pubDate>Sun, 08 May 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-05-08-a-mothers-day-prayer.html</guid>
<description>
<![CDATA[<p>
Gracious God,
</p>

<p>
Thank you for the precious people<br>
who, quietly and humbly, have<br>
been the hands and feet of Jesus for us,<br>
who have celebrated our joys,<br>
wept in our sorrows,<br>
and sacrificed to help us<br>
become everything you<br>
have created us to be;<br>
each one a gift of love<br>
from your gracious hand.<br>
</p>

<p>
May we also be a gift to others,<br>
who need to see your grace, especially<br>
the many women around the world<br>
whose voices have been silenced,<br>
some, sadly, by the church herself.
</p>

<p>
Give us the grace<br>
to listen to those<br>
who are rarely heard,<br>
and to empower them<br>
to share their gifts,<br>
whatever they may be.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="orgb29ce02">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Hitchens</title>
<link>https://randyridenour.net/posts/2009-11-15-what-can-be-asserted-without-proof-can-be-rejected.html</link>
<pubDate>Sun, 15 Nov 2009 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2009-11-15-what-can-be-asserted-without-proof-can-be-rejected.html</guid>
<description>
<![CDATA[<blockquote>
<p>
What can be asserted without proof can be rejected without proof.
</p>
</blockquote>

<p class="source">
Christopher Hitchens
</p>

<p>
What proof does he have for this claim? Is it self-referentially incoherent?
</p>


<div class="tagline" id="org63dcb0b">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/philosophy.html">Philosophy</a> <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Obama's Economic Record</title>
<link>https://randyridenour.net/posts/2017-03-16-obamas-economic-record.html</link>
<pubDate>Thu, 16 Mar 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-03-16-obamas-economic-record.html</guid>
<description>
<![CDATA[<p>
In a recent discussion, one participant claimed that the &ldquo;last eight years of Obamanomics has crippled our struggling state,&rdquo; which I suspect is supported more by a political narrative than an analysis of the data.
</p>

<p>
The new administration is at least fortunate that the problems handed to them are not at the same level as those handed to the previous administration. During the Obama administration, economic growth was admittedly slow, but considering that he took office on the precipice of what could have been the second great depression, these national numbers look pretty good:
</p>

<ul class="org-ul">
<li>Longest streak in US history of private sector job growth, the difference can be noted by comparing 2008 and 2016 numbers:
<ul class="org-ul">
<li>In November 2008, the economy lost 533,000 jobs.</li>
<li>In November 2016, the economy gained 178,000 jobs.</li>
</ul></li>
<li>Unemployment dropped from 10% to 4.6%.</li>
<li>800 billion dollar decrease in deficit.</li>
<li>Deficit as percentage of GDP dropped from 9.8% to 3.2% with no increase in middle class taxes.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup></li>
</ul>

<p>
To be fair, the economic numbers for the Obama administration are not all rosy, however. A significant worry is the increase in the national debt. Obama&rsquo;s policies added 983 billion dollars to the national debt. The budget deficits under his administration increased the debt by 6.5 trillion.<sup><a id="fnr.2" class="footref" href="#fn.2" role="doc-backlink">2</a></sup>
</p>

<p>
If the economy of Oklahoma has been crippled, surely the state government, dominated by the right, has played a significant role. 
</p>

<div class="tagline" id="org02668f9">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
I originally saw these numbers <a href="http://www.voices4hillary.com/when-trump-voters-say-they-suffered-for-8-years-under-obama-heres-the--2280512289.html">here</a>. Since the article contained no citations of sources, I corroborated and made some adjustments to them using this piece by <a href="https://www.nytimes.com/2016/12/02/business/economy/jobs-report.html">Patricia Cohen</a>.
</p></div></div>

<div class="footdef"><sup><a id="fn.2" class="footnum" href="#fnr.2" role="doc-backlink">2</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Determining how much of the national debt a president is responsible for is a tricky matter. One could just look at the total increase in the national debt, but that unfairly saddles a president with a debt increase during the first year that results from the previous president&rsquo;s final-year budget. One could also add up the deficits of the president&rsquo;s budgets, which is fairer than the first method, but saddles the president with deficit spending that was either out of the president&rsquo;s  control or not a result of the administration&rsquo;s policies. The third method, which is the most meaningful but hardest to calculate, is to determine how much the president&rsquo;s policies contributed to the national debt. 
Kimberly Amadeo provides a clear explanation of these methods, along with the resulting numbers, <a href="https://www.thebalance.com/national-debt-under-obama-3306293">here</a>.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>A New School Year</title>
<link>https://randyridenour.net/posts/2017-08-17-a-new-school-year.html</link>
<pubDate>Thu, 17 Aug 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-08-17-a-new-school-year.html</guid>
<description>
<![CDATA[<p>
As this year&rsquo;s chairperson of the Faculty Council, I am privileged to open our first employee meeting with a reading from Scripture and a prayer. This year, our academic year begins one week after the horrific display of racism and violence in Charlottesville, Virginia. That event prompted my reflection on the following text.
</p>
<section id="outline-container-orga938112" class="outline-2">
<h2 id="orga938112">Colossians 3:1-15</h2>
<div class="outline-text-2" id="text-orga938112">
<blockquote>
<p>
So if you have been raised with Christ, seek the things that are above, where Christ is, seated at the right hand of God. Set your minds on things that are above, not on things that are on earth, for you have died, and your life is hidden with Christ in God. When Christ who is your life is revealed, then you also will be revealed with him in glory.
</p>

<p>
Put to death, therefore, whatever in you is earthly: fornication, impurity, passion, evil desire, and greed (which is idolatry). On account of these the wrath of God is coming on those who are disobedient. These are the ways you also once followed, when you were living that life. But now you must get rid of all such things—anger, wrath, malice, slander, and abusive language from your mouth. Do not lie to one another, seeing that you have stripped off the old self with its practices and have clothed yourselves with the new self, which is being renewed in knowledge according to the image of its creator. In that renewal there is no longer Greek and Jew, circumcised and uncircumcised, barbarian, Scythian, slave and free; but Christ is all and in all!
</p>

<p>
As God’s chosen ones, holy and beloved, clothe yourselves with compassion, kindness, humility, meekness, and patience. Bear with one another and, if anyone has a complaint against another, forgive each other; just as the Lord has forgiven you, so you also must forgive. Above all, clothe yourselves with love, which binds everything together in perfect harmony. And let the peace of Christ rule in your hearts, to which indeed you were called in the one body. And be thankful.
</p>
</blockquote>
</div>
</section>
<section id="outline-container-org8610f64" class="outline-2">
<h2 id="org8610f64">Prayer</h2>
<div class="outline-text-2" id="text-org8610f64">
<p>
God of hope and Lord of life,
</p>

<p>
Thank you for this time<br>
to gather together<br>
as friends and colleagues<br>
to kindle the excitement<br>
and hope of a new beginning.
</p>

<p>
We give thanks and pray for our students,<br>
for they come here with hopes and dreams,<br>
and believe that this is the place where<br>
those hopes and dreams can become reality.
</p>

<p>
May they never leave thinking<br>
that their dreams were too big,<br>
but instead go from here<br>
with a new vision of their role<br>
in the redemptive story<br>
that is far greater than<br>
even they had ever dared to dream.
</p>

<p>
We pray for ourselves,<br>
that you would protect us from the temptations<br>
to answer too quickly,<br>
to respond with cynicism,<br>
and to serve the spirit that crushes hope,<br>
instead of our God who makes all things possible.
</p>

<p>
We pray for our nation,<br>
still reeling in shock<br>
from what we have seen this week.
</p>

<p>
The temptation is to despair,<br>
asking who are we,<br>
and what can we do<br>
when anger, wrath, and malice<br>
appear to win the day?
</p>

<p>
But we are those who have been raised with Christ,<br>
and of all people we should have hope,<br>
for we have been to the cross,<br>
and we have seen what love can do.
</p>

<p>
May our lives bear witness to that love<br>
and to the resurrection power<br>
that the darkness, as hard as it may try,<br>
can never overcome.
</p>

<p>
In the name<br>
of the Father,<br>
and of the Son,<br>
and of the Holy Spirit.
</p>

<p>
Three persons,
One God,<br>
forever and ever.
</p>

<p>
<i>Amen</i>
</p>



<div class="tagline" id="org20ec4c6">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
</div>
</section>
]]>
</description></item>
<item>
<title>Prayer for the Medicated Preacher</title>
<link>https://randyridenour.net/posts/2015-01-13-prayer-for-the-medicated-preacher.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-prayer-for-the-medicated-preacher.html</guid>
<description>
<![CDATA[<p>
To commemorate Mitch Randall&rsquo;s fine, although heavily drugged, preaching on May 11, 2014:
</p>

<p>
Loving Father,
</p>

<p>
We give thanks for the one who,<br>
although (relatively) young,<br>
complimented &ldquo;Sarah&rdquo;<br>
even though her name is Laura;
</p>

<p>
Who, despite years of theological education,<br>
urged the congregation to turn to the &ldquo;Book of Moses;&rdquo;
</p>

<p>
Who, having been unable to find Sarah<br>
in the congregation,<br>
tried in vain to find her in the Exodus story.
</p>

<p>
And so, just as your power was demonstrated by the<br>
babbling of those accused of imbibing on Pentecost,<br>
may your love and grace shine through the<br>
fumbling of the one who may be<br>
over-medicated,<br>
but is<br>
much appreciated.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org085bcc6">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Real Riches</title>
<link>https://randyridenour.net/posts/2017-05-07-real-riches.html</link>
<pubDate>Sun, 07 May 2017 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2017-05-07-real-riches.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
A propensity to hope and joy is real riches; one to fear and sorrow, real poverty.
</p>
</blockquote>

<p class="bigquote">
David Hume, <i>Essays, Moral, Political, and Literary</i>, Part I, Essay 18
</p>


<div class="tagline" id="org0563449">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Holy Saturday</title>
<link>https://randyridenour.net/posts/2015-01-13-holy-saturday.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-holy-saturday.html</guid>
<description>
<![CDATA[<p>
Happiness,<br>
joy,<br>
peace,<br>
comfort.<br>
<br>
They seem somehow<br>
to be just beyond<br>
our reach today.<br>
<br>
And as one<br>
who lay in the tomb,<br>
we wait<br>
for that moment<br>
when the Father<br>
comes to us<br>
in our darkness.<br>
<br>
Lord Jesus come quickly,<br>
<br>
<i>Amen</i>
</p>


<div class="tagline" id="org8999818">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Fighting for Servitude</title>
<link>https://randyridenour.net/posts/2026-03-03-fighting-for-servitude.html</link>
<pubDate>Tue, 03 Mar 2026 14:49:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2026-03-03-fighting-for-servitude.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
The fundamental problem of political philosophy: Why do men fight for their servitude as stubbornly as though it were their salvation?
</p>
</blockquote>

<p class="bigquote">
Gilles Deleuze
</p>

<div class="tagline" id="org505c476">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a> <a href="https://randyridenour.net/posts/../tags/political.html">Political</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Twenty-Third Sunday After Pentecost</title>
<link>https://randyridenour.net/posts/2015-01-13-twenty-third-sunday-after-pentecost.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-twenty-third-sunday-after-pentecost.html</guid>
<description>
<![CDATA[<p>
Actors of old wore masks<br>
to hide their true selves,<br>
with smiles and frowns<br>
frozen into place.<br>
<br>
They wore expressions,<br>
not of who they really were,<br>
but of who someone thought they should be.
<br>
We call our masks<br>
by different names:<br>
Facebook,<br>
Twitter,<br>
Social media;<br>
still used to<br>
project an image,<br>
one that even we ourselves<br>
can eventually come to believe.
<br>
Lord Jesus, you summed up the law and<br>
the prophets in one simple statement:<br>
do to others what you would<br>
want them to do to you.
<br>
But how can I do that<br>
if I cannot face who I really am?
<br>
Holy Spirit, cleanse me of<br>
the sin of self-deception<br>
and open my eyes to<br>
who I truly am<br>
and what I truly want,<br>
that I may truly serve.
</p>

<p>
<i>Amen</i>
</p>





<div class="tagline" id="org17049ba">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Consumer Pornography</title>
<link>https://randyridenour.net/posts/2008-10-22-consumer-pornography.html</link>
<pubDate>Wed, 22 Oct 2008 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2008-10-22-consumer-pornography.html</guid>
<description>
<![CDATA[<p>
Prophetic thought for the day from Mark Woods, editor of Britain&rsquo;s <i>Baptist Times</i>, in a column for <a href="http://www.ethicsdaily.com/article_detail.cfm?AID=11221">Ethics Daily.com</a>:
</p>

<blockquote>
<p>
The glossy lifestyle magazines which are such a feature of weekend papers are consumer pornography, designed to titillate us with longings for what most of us can never have, and those of us who can will never need.
</p>
</blockquote>


<div class="tagline" id="orgaf1b0f9">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Some Thoughts on Mass Shootings</title>
<link>https://randyridenour.net/posts/2019-08-06-some-thoughts-on-mass-shootings.html</link>
<pubDate>Tue, 06 Aug 2019 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2019-08-06-some-thoughts-on-mass-shootings.html</guid>
<description>
<![CDATA[<section id="outline-container-org96ceb02" class="outline-2">
<h2 id="org96ceb02">The Second Amendment</h2>
<div class="outline-text-2" id="text-org96ceb02">
<p>
Despite the Supreme Court’s 2008 Heller <a href="https://www.oyez.org/cases/2007/07-290">decision</a>, I have never thought that a reasonable reading of the 2nd Amendment guaranteed an individual’s unequivocal right to possess firearms. In fact, the only Supreme Court decision that focused on the 2nd Amendment, <a href="https://www.oyez.org/cases/1900-1940/307us174">US vs. Miller</a> in 1939, found that there is no individual right to bear arms independent of the nation’s self-defense interests. There is also reason to believe that Madison wrote the 2nd Amendment to protect the rights of southern states to have militias that they could use to put down slave revolts.<sup><a id="fnr.1" class="footref" href="#fn.1" role="doc-backlink">1</a></sup>
</p>

<p>
I do believe, however, that every person has an inherent right to self-defense.<sup><a id="fnr.2" class="footref" href="#fn.2" role="doc-backlink">2</a></sup>  I take this to not be a civil right enshrined in law, but as a basic human right. Although there are weapons that are designed to be used for defensive roles, assault rifles, by definition, are not. I have no sympathy for those who argue that their guns are necessary for defense against a tyrannical government. I have seen four <a href="https://www.youtube.com/watch?v=bGrNkl8HzPw&amp;app=desktop">Apache helicopters</a> on an attack run at a range in Fort Hood. If you think that your AR-15 will defend you, you’ve been watching too many bad action movies.<sup><a id="fnr.3" class="footref" href="#fn.3" role="doc-backlink">3</a></sup>
</p>
</div>
</section>
<section id="outline-container-orgae2a968" class="outline-2">
<h2 id="orgae2a968">Good Guys with Guns</h2>
<div class="outline-text-2" id="text-orgae2a968">
<p>
Lately, there have been demands to arm teachers to prevent school shootings. This is a variation on the idea that the only solution to gun violence is more good guys with guns. There are obvious reasons why this is untenable. We had problems with active shooters when I was in Afghanistan. The solution was not to have more people carrying guns, since everyone except me and the other two chaplains were already armed. The solution was to have a soldier standing at the ready at every meeting, doing nothing but looking for signs of hostility, prepared to shoot as soon as a weapon was drawn. That&rsquo;s what the only &ldquo;more guns&rdquo; solution looks like – an armed guard standing with weapon drawn in every classroom, in every corridor of the mall, covering every line of sight in every public venue, etc.<sup><a id="fnr.4" class="footref" href="#fn.4" role="doc-backlink">4</a></sup>  That&rsquo;s not a country where I want to live.
</p>
</div>
</section>
<section id="outline-container-orgddf3507" class="outline-2">
<h2 id="orgddf3507">Possible Solutions</h2>
<div class="outline-text-2" id="text-orgddf3507">
<p>
Mass shootings are a complex problem, but not irreducibly complex. We shouldn’t pretend that our only options are an impossible perfect solution and doing nothing. So, what should be done? There are some means that, I believe, would help reduce the level of gun violence.
</p>

<ol class="org-ol">
<li>Treating sources of terrorism consistently would be a good first step. White nationalism has always been an ideology associated with terrorism, from the lynchings of Reconstruction to the mass shooting in El Paso. As a terrorist ideology, white nationalist demands for racial purity are no different than demands for religious purity from other movements that we rightly label as terrorists.</li>
<li>Ban assault weapons &mdash; that has already been shown to be effective.</li>
<li>Ban high capacity magazines. Otherwise, thirty people are dead before the “good guy with a gun” has an opportunity to respond.</li>
</ol>

<p>
May God forgive me, if I ever demand my rights at the possible expense of another human being’s life.
</p>

<div class="tagline" id="org10442ad">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
</div>
</section>
<div id="footnotes">
<h2 class="footnotes">Footnotes</h2>
<div id="text-footnotes">

<div class="footdef"><sup><a id="fn.1" class="footnum" href="#fnr.1" role="doc-backlink">1</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Conservatives had no problem with gun control when the Black Panthers were taking up arms to press for equal civil rights. As Governor of California, Ronald Reagan signed an act in 1967 banning the carrying by members of the public of loaded firearms in cities. He <a href="https://books.google.com/books?id=5PRABAAAQBAJ&amp;pg=PT73&amp;lpg=PT73&amp;dq=%E2%80%9Cwould+work+no+hardship+on+the+honest+citizen.%E2%80%9D+reagan&amp;source=bl&amp;ots=cq6Kl3wRXB&amp;sig=AaCua1410lGebtc18y0CD85uRok&amp;hl=en&amp;sa=X&amp;ved=0ahUKEwjvivOHxNfWAhUn4IMKHYaDAuYQ6AEINzAD#v=onepage&amp;q=%E2%80%9Cwould%20work%20no%20hardship%20on%20the%20honest%20citizen.%E2%80%9D%20reagan&amp;f=false">said</a> there is “no reason why on the street today a citizen should be carrying loaded weapons.” It&rsquo;s also curious how reticent the NRA is to come to the defense of registered African-American gun owners.
</p></div></div>

<div class="footdef"><sup><a id="fn.2" class="footnum" href="#fnr.2" role="doc-backlink">2</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
Specifying this right will, by no means, be simple. I do not believe that people have the right to do <i>anything</i> that will result in saving their lives. I also do not believe that the right to self-defense is automatically a right to kill, if there are other effective means available. There are also tricky questions about prisoners on death row, etc. This is also a right that implies certain duties, like the duty to ensure, as much as possible, that no innocent people are harmed. This means that gun-owners have a duty to acquire and maintain a high level of skill. This could mean that the public has a right to demand that those who wish to carry firearms in public be tested and certified. 
</p></div></div>

<div class="footdef"><sup><a id="fn.3" class="footnum" href="#fnr.3" role="doc-backlink">3</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
I’ve also recently heard that when criminals get semi-automatic weapons, then citizens need full-auto. In my infantry days, the only situation in which fully automatic fire was used was to spray a room with bullets before entering. So, saying this is the same as saying “When criminals get semi-auto, then citizens kill indiscriminately.”
</p></div></div>

<div class="footdef"><sup><a id="fn.4" class="footnum" href="#fnr.4" role="doc-backlink">4</a></sup> <div class="footpara" role="doc-footnote"><p class="footpara">
That doesn’t mean that a member of the public with a gun will not occasionally act to prevent, or minimize, some tragedy. That will have to be weighed against members of the public misidentifying a target or harm done by negligent discharges, a particular problem that we had in Iraq.
</p></div></div>


</div>
</div>]]>
</description></item>
<item>
<title>Give Me Words of Grace</title>
<link>https://randyridenour.net/posts/2017-02-23-give-me-words-of-grace.html</link>
<pubDate>Thu, 23 Feb 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-02-23-give-me-words-of-grace.html</guid>
<description>
<![CDATA[<p>
Thinking a lot about the power of language this week. Here&rsquo;s my prayer for the week:
</p>

<p>
In arrogant blindness,<br>
I fail to see that<br>
what does not offend me<br>
may still be offensive<br>
to those around me.
</p>

<p>
Our words are keys,<br>
with the power to<br>
both lock and unlock.<br>
They can open doors<br>
to future conversations<br>
or close them forever.<br>
They can be vehicles of grace<br>
or weapons of hate and destruction.
</p>

<p>
Help me choose grace.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org71083fc">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Interesting Times</title>
<link>https://randyridenour.net/posts/2016-11-09-interesting-times.html</link>
<pubDate>Tue, 08 Nov 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-11-09-interesting-times.html</guid>
<description>
<![CDATA[<p>
There are three statements that have become known as the &ldquo;Chinese&rdquo; curses, although I should point out that there is no record of any Chinese equivalents. They are three things to wish upon one&rsquo;s enemies. Three things that, on the surface, seem like things that a person should surely want; but appearances, as we all know, are often deceiving.
</p>

<p>
The first, and the mildest: &ldquo;May you live in interesting times.&rdquo; 
</p>

<p>
There are worse things, however, than simply living in interesting times. It is far worse to be at the center of those interesting events. Hence, the more severe curse: &ldquo;May you come to the attention of powerful people.&rdquo; 
</p>

<p>
There are times, though, when even that is not enough. For those times, you need the most severe curse, something devilishly cruel and viciously twisted: &ldquo;May you find what you are looking for.&rdquo;
</p>

<p>
Early this morning, Donald Trump delivered his acceptance speech after winning the 2016 United States presidential election. 
</p>

<p>
These are interesting times indeed.
</p>



<div class="tagline" id="orgbde5e4e">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/politics.html">Politics</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Testing Some Functions</title>
<link>https://randyridenour.net/posts/2023-02-05-testing-some-functions.html</link>
<pubDate>Sun, 05 Feb 2023 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2023-02-05-testing-some-functions.html</guid>
<description>
<![CDATA[<p>
I&rsquo;m testing some a couple of new functions. One is to add a tag to a post by selecting from a list of tags used on the site, like <a href="https://randyridenour.net/posts/2023-02-04-venn-diagrams-in-latex!.html">this</a>. Another is for inserting links to other pages on the site using <code>org-insert-link</code>. The last updates the last modified date when a post is published.
</p>

<p>
Everything seems to be working fine.
</p>


<div class="tagline" id="org75bfafe">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/misc.html">Misc</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer of St. Thomas</title>
<link>https://randyridenour.net/posts/2016-11-12-prayer-of-st-thomas.html</link>
<pubDate>Sat, 12 Nov 2016 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2016-11-12-prayer-of-st-thomas.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
Grant me, O Lord my God,<br>
a mind to know you,<br>
a heart to seek you,<br>
conduct pleasing to you,<br>
faithful perseverance in waiting for you,<br>
and a hope of finally embracing you.
</p>
</blockquote>

<p class="bigquote">
St. Thomas Aquinas
</p>


<div class="tagline" id="org1febaac">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Prayer for Ash Wednesday</title>
<link>https://randyridenour.net/posts/2017-03-01-prayer-for-ash-wednesday.html</link>
<pubDate>Wed, 01 Mar 2017 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2017-03-01-prayer-for-ash-wednesday.html</guid>
<description>
<![CDATA[<p>
Holy God,
</p>

<p>
Shall this year be like the past,<br>
giving up that which brings joy,<br>
so that my self-imposed poverty may be<br>
a sign of spiritual superiority?
</p>

<p>
Instead, Lord,<br>
by your grace,<br>
may I give up<br>
bitterness, arrogance,<br>
animosity, and the<br>
unwarranted certainty<br>
that keeps me from<br>
loving my neighbor.
</p>

<p>
Cover me with your ashes,<br>
and raise me again<br>
to walk anew<br>
in your kingdom.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org09a1000">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>The Idol of Security</title>
<link>https://randyridenour.net/posts/2015-12-10-the-idol-of-security.html</link>
<pubDate>Thu, 10 Dec 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-12-10-the-idol-of-security.html</guid>
<description>
<![CDATA[<p>
God of Peace,
</p>

<p>
There was a time when<br>
we built idols of stone<br>
that separated us from you.
</p>

<p>
Now, we are tempted<br>
to build new idols,<br>
walls that separate us<br>
from those created<br>
in your own image.
</p>

<p>
Forgive us, Lord,<br>
for loving our own safety<br>
more than we love the gospel,<br>
and for sacrificing<br>
the dream of true peace<br>
on the altar of a<br>
false sense of security.
</p>

<p>
<i>Amen</i>
</p>


<div class="tagline" id="org5209bae">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Rabbi Lustig on Pope Francis</title>
<link>https://randyridenour.net/posts/2025-04-29-rabbi-lustig-pope-francis.html</link>
<pubDate>Tue, 29 Apr 2025 05:51:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2025-04-29-rabbi-lustig-pope-francis.html</guid>
<description>
<![CDATA[<p>
Rabbi M. Bruce Lustig writing about a conversation with Pope Francis:
</p>

<blockquote>
<p>
It was quite the experience to have a private audience with the pope.
</p>

<p>
I began to tell him: “I am Rabbi Lustig, the child of a Holocaust survivor. I grew up in Nashville, Tennessee.” Francis interrupted and said, “Bruce, may I call you that, I know who you are, you would not be here if I did not know. Now, tell me, what keeps you up at night?”
I said “hate speech,” and for the next hour, we came up with strategies to end hate speech. He listened to me, challenged my views and agreed with me that God spoke the world into being, so speech has the power to create or destroy worlds.
I left our audience with a critical lesson learned at the feet of an important teacher. There is only one voice that matters in the end: your own.
</p>
</blockquote>

<p class="source">
<a href="https://www.washingtonpost.com/opinions/2025/04/28/francis-vance-ordo-amoris-women-priests/?carta-url=https%3A%2F%2Fs2.washingtonpost.com%2Fcar-ln-tr%2F424fdb8%2F6810a3267f8d4e1ed0f71525%2F596a35569bbc0f0e09e8239c%2F31%2F64%2F6810a3267f8d4e1ed0f71525" class="source">The Washington Post</a> (April 28, 2025)
</p>

<div class="tagline" id="org4d2b58f">
<p>
Tagged:  <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Planting a Tree</title>
<link>https://randyridenour.net/posts/2016-10-12-planting-a-tree.html</link>
<pubDate>Wed, 12 Oct 2016 00:00:00 -0500</pubDate>
<guid>https://randyridenour.net/posts/2016-10-12-planting-a-tree.html</guid>
<description>
<![CDATA[<p>
God of Hope,
</p>

<p>
I plant this tree in faith,<br>
trusting in your gracious care.
</p>

<p>
If such a slender trunk<br>
can weather the Oklahoma wind,<br>
then surely we too can weather<br>
these storms of our own making.
</p>

<p>
May our roots reach down<br>
into your sustaining love,<br>
our branches reach out<br>
to shelter those in need,<br>
then reach up to the heavens<br>
to bid your Kingdom come,<br>
and your will be done.
</p>

<p>
<i>Amen</i>
</p>







<div class="tagline" id="org19034d8">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/prayer.html">Prayer</a> <a href="https://randyridenour.net/posts/../tags/religion.html">Religion</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Links in Army Enterprise Email</title>
<link>https://randyridenour.net/posts/2015-01-13-links-in-army-enterprise-email.html</link>
<pubDate>Tue, 13 Jan 2015 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2015-01-13-links-in-army-enterprise-email.html</guid>
<description>
<![CDATA[<p>
This will probably be useful to only a few people, but maybe it will help someone who is frantically searching the internet for an answer.
</p>

<p>
Roughly a year ago, the Army changed its email service to an Exchange Enterprise system. The old address, which I have had for years (decades?) forwards to the new address, which I never can seem to easily remember. It seems, though, that links in forwarded emails are stripped out for security purposes. This is not a problem if the url is visible in the message, like this:
</p>

<p>
<code>http://google.com</code>
</p>

<p>
One can simply copy and paste the url into the browser. If the link is embedded into text or a graphic, though, there is nothing to copy. Any link seems to go to
</p>

<p>
<code>https://web-cols01.mail.mil/owa/UrlBlockedError.aspx</code>
</p>

<p>
This makes it impossible to retrieve the original linked URL.
</p>

<p>
The problem that I had was with the Microsoft Home Use Program (HUP), which sells copies of Microsoft Office to military members at a very low price. For various reasons, I don&rsquo;t like using Office, but it&rsquo;s what the military uses, and I occasionally need it. Of course, to verify eligibility, the email had to be sent to a .mil address, and the link couldn&rsquo;t be opened. I tried forwarding the email to a Gmail account, but the links were still broken.
</p>

<p>
The solution was to select &ldquo;Options&rdquo; for the message, and forward it <i>as an attachment</i> to Gmail. The links were still broken, but broken in a way that the original URL could be retrieved. After forwarding as an attachment, the link to Google would be
</p>

<p>
<code>blockedhttp://google.com</code>
</p>

<p>
Just copy the link, paste it in, and delete the word &ldquo;blocked&rdquo; before pressing the enter key.
</p>

<p>
It only took two months to figure that out. It might be better if I&rsquo;d simply learn the new Enterprise address.
</p>


<div class="tagline" id="org71463d4">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/army.html">Army</a>
</p>

</div>
]]>
</description></item>
<item>
<title>Perfect Christianity</title>
<link>https://randyridenour.net/posts/2010-12-14-this-is-the-rule-of-most-perfect-christianity.html</link>
<pubDate>Tue, 14 Dec 2010 00:00:00 -0600</pubDate>
<guid>https://randyridenour.net/posts/2010-12-14-this-is-the-rule-of-most-perfect-christianity.html</guid>
<description>
<![CDATA[<blockquote class="bigquote">
<p>
This is the rule of most perfect Christianity, it&rsquo;s the most exact definition, its highest point, namely, the seeking of the common  good. For nothing can so make people imitators of Christ as caring for their neighbors.
</p>
</blockquote>

<p class="bigquote">
John  Chrysostom
</p>







<div class="tagline" id="orgf652909">
<p>
Tagged: <a href="https://randyridenour.net/posts/../tags/quotes.html">Quotes</a>
</p>

</div>
]]>
</description></item>
</channel>
</rss>
