From 048333ef0e5e319d25955cfb1806b4a48242ef7b Mon Sep 17 00:00:00 2001 From: Miguel Pimentel Date: Thu, 14 Mar 2024 13:42:10 -0700 Subject: [PATCH] Pull-Request [ariasae-vault-backup-3-14-2024] from Obsidian (#60) --- content/Quotes.md | 22 +++++++++++++--------- content/Zola.md | 28 +++++++--------------------- 2 files changed, 20 insertions(+), 30 deletions(-) diff --git a/content/Quotes.md b/content/Quotes.md index e2264f4e3..6c0a88f59 100644 --- a/content/Quotes.md +++ b/content/Quotes.md @@ -10,20 +10,12 @@ Collection of quotes I like. > "Always demand a deadline. A deadline weeds out the extraneous and the ordinary. It prevents you from trying to make it perfect, so you have to make it different. Different is better." -> [!quote] -> > "Always demand a deadline. A deadline weeds out the extraneous and the ordinary. It prevents you from trying to make it perfect, so you have to make it different. Different is better." -> [!quote] -> > "Better done than perfect." Perfectionism is nothing but _fear_. Conquer it. -> [!quote] -> > "Clarity requires thinking. Thinking requires writing." -> [!quote] -> > "Action is not just the _effect_ of motivation, but also the _cause_ of motivation." ## Ajahn Chah @@ -59,7 +51,11 @@ Collection of quotes I like. ## G. K. Chesterton -> It is really not so repulsive to see the poor asking for money as to see the rich asking for more money. And advertisement is the rich asking for more money. A man would be annoyed if he found himself in a mob of millionaires, all holding out their silk hats for a penny; or all shouting with one voice, "Give me money." Yet advertisement does really assault the eye very much as such a shout would assault the ear. "Budge's Boots are the Best" simply means "Give me money"; "Use Seraphic Soap" simply means "Give me money." It is a complete mistake to suppose that common people make our towns commonplace, with unsightly things like advertisements. Most of those whose wares are thus placarded everywhere are very wealthy gentlemen with coronets and country seats, men who are probably very particular about the artistic adornment of their own homes. They disfigure their towns in order to decorate their houses. +> It is really not so repulsive to see the poor asking for money as to see the rich asking for more money. And advertisement is the rich asking for more money. +> +> A man would be annoyed if he found himself in a mob of millionaires, all holding out their silk hats for a penny; or all shouting with one voice, "Give me money." Yet advertisement does really assault the eye very much as such a shout would assault the ear. "Budge's Boots are the Best" simply means "Give me money"; "Use Seraphic Soap" simply means "Give me money." +> +> It is a complete mistake to suppose that common people make our towns commonplace, with unsightly things like advertisements. Most of those whose wares are thus placarded everywhere are very wealthy gentlemen with coronets and country seats, men who are probably very particular about the artistic adornment of their own homes. They disfigure their towns in order to decorate their houses. ## Dean Bokhari (unconfirmed) @@ -153,3 +149,11 @@ Collection of quotes I like. > To put that in perspective, it takes about five milliseconds for the fastest nerve impulse to travel the length of the arm. That means that when your arm is still rotating toward the correct position, the signal to release the ball is already at your wrist. > > In terms of timing, this is like a drummer dropping a drumstick from the tenth story and hitting a drum on the ground on the correct beat." + +> **Throwing is hard.** +> +> "In order to deliver a baseball to a batter, a pitcher has to release the ball at exactly the right point in the throw. A timing error of half a millisecond in either direction is enough to cause the ball to miss the strike zone. +> +> To put that in perspective, it takes about five milliseconds for the fastest nerve impulse to travel the length of the arm. That means that when your arm is still rotating toward the correct position, the signal to release the ball is already at your wrist. +> +> In terms of timing, this is like a drummer dropping a drumstick from the tenth story and hitting a drum on the ground on the correct beat." diff --git a/content/Zola.md b/content/Zola.md index 57b68897d..1d6f9d72f 100644 --- a/content/Zola.md +++ b/content/Zola.md @@ -12,30 +12,16 @@ SSGs use dynamic templates to transform content into static HTML pages. Static s ## Useful Commands -```bash -zola build --base-url $DEPLOY_URL -``` - -```bash -zola build --output-dir $DOCUMENT_ROOT -``` - -```bash -zola --config config.staging.toml build -``` - -```bash -zola --root /path/to/project build -``` - -```bash +```sh +# Initiate Zola project zola init -``` -```bash +# Serve Zola website zola serve -``` -```bash +# Build check zola check + +# Build w/ Options +zola --root /path/to/project --config config.staging.toml build --base-url $DEPLOY_URL --output-dir $DOCUMENT_ROOT ```