Skip to content

Instantly share code, notes, and snippets.

View ErikSwan's full-sized avatar

Erik Swan ErikSwan

View GitHub Profile
@ErikSwan
ErikSwan / # zsh - 2020-05-11_12-27-36.txt
Created May 11, 2020 18:44
zsh on "Red Hat Enterprise Linux Workstation release 6.8 (Santiago)" - Homebrew build logs
Homebrew build logs for zsh on "Red Hat Enterprise Linux Workstation release 6.8 (Santiago)"
Build date: 2020-05-11 12:27:36
@ErikSwan
ErikSwan / The American Inferno.md
Last active March 17, 2023 03:21
Text of "The American Inferno", a book by (fictional) author Evelyn Miller in the game Red Dead Redemption 2. Actual author unknown.

The American Inferno

Chapter II

In the end, what has a man but his thoughts? I would postulate further, what has a man to stand for, but his thoughts? His actions, perhaps? I know precious little of actions. Lions, donkeys, hyenas. They all act. So is that what we are? No. We are more and less than the beasts. We are thoughts. We are actions and the reflections upon those actions. Yet, we are also not merely reflections. We are not mirrors.

That is the preserve of spirits, of the gods. We are actions and the thoughts upon actions. Neither one nor other. We are free neither from action, nor from thought. Our humanity can only be understood if we embrace both the animal and the god within us. As humans, we must nourish both, yet America is a land of action. A place fixated not on ideas, not on the redemptive power of thought but on the obliteration of the intellect.

It is a place wherein mankind has attempted to deny half of his being, and in pursuing freedom has attempted to split himself. Much like the

#!/bin/sh
PATH=$PATH:. && export PATH
if [ $# == 1 ]; then
BASE=`echo $1 | sed -e 's/.c//g'`
gcc -Wall -Werror -lm $1 -o $BASE && $BASE
else
echo "Must pass in single argument (path of .c file)"
fi