├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── issue.md ├── .gitignore ├── .hugo_build.lock ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── config.yaml ├── content ├── _index.html ├── archive │ └── _index.md ├── blog │ ├── 2021-01-16-assorted-links │ │ └── index.md │ ├── 28-for-28 │ │ └── index.md │ ├── _index.md │ ├── a-minimal-hugo-blog-layout │ │ └── index.md │ ├── a-shell-script-wrapper-for-pgdump │ │ └── index.md │ ├── adam-knew-eve │ │ └── index.md │ ├── add-a-git-commit-hook-to-run-prettier-on-only-staged-files-in-a-nodejs-project │ │ └── index.md │ ├── add-search-functionality-to-your-blog-listing-page │ │ └── index.md │ ├── add-your-account-as-a-sudoer-on-mac │ │ └── index.md │ ├── aliases-in-windows-command-prompt │ │ └── index.md │ ├── an-unchronological-photo-album │ │ ├── img │ │ │ ├── beach_3.jpg │ │ │ ├── chicken.jpg │ │ │ └── sleepy_1.jpg │ │ └── index.md │ ├── anna-mcclain-1st-birthday │ │ ├── img │ │ │ ├── bricks.jpeg │ │ │ ├── brother.jpeg │ │ │ ├── cake.jpeg │ │ │ ├── cousin.jpeg │ │ │ ├── mom.jpeg │ │ │ ├── tractor.jpeg │ │ │ └── tricycle.jpeg │ │ └── index.md │ ├── apache-groovy-tidbits │ │ └── index.md │ ├── aristotle-on-marriage-and-trust-as-the-foundation-of-civilization │ │ └── index.md │ ├── attention-is-my-most-valuable-asset-for-productivity-as-a-software-developer │ │ └── index.md │ ├── autodial-a-phone-extension-on-ios │ │ └── index.md │ ├── barbell-training-to-get-me-through-the-day │ │ └── index.md │ ├── base64-tool │ │ ├── index.css │ │ ├── index.html │ │ └── index.ts │ ├── bash-date-time-format-specifiers │ │ └── index.md │ ├── bash-function-to-delete-all-local-git-branches-except-for-those-you-want-to-keep │ │ └── index.md │ ├── bash-reference │ │ └── index.md │ ├── bash-shell-script-template │ │ ├── index.md │ │ └── template.sh │ ├── bash-shell-scripting-for-developers │ │ └── index.md │ ├── bash-utility-functions │ │ └── index.md │ ├── beef-jerky-recipe │ │ ├── img │ │ │ ├── jerky-1.jpg │ │ │ ├── jerky-2.jpg │ │ │ ├── jerky-3.jpg │ │ │ ├── jerky-4.jpg │ │ │ ├── jerky-caribbean-jerk.jpg │ │ │ ├── jerky-sweet-chili.jpg │ │ │ ├── walmart-beef-eye-of-round.jpg │ │ │ ├── walmart-beef-milanesa.jpg │ │ │ ├── walmart-beef-sizzle-steak.jpg │ │ │ └── walmart-sweet-chili-wing-seasoning-mix.png │ │ └── index.md │ ├── beyond-the-western-malcolm-gladwell-on-the-four-categories-of-law-and-order-art │ │ └── index.md │ ├── book-snippets-the-subtle-art-of-not-giving-a-fuck │ │ └── index.md │ ├── bootstrap-4-with-bootstrap-3-styles │ │ └── index.md │ ├── boredom-as-a-human-drive │ │ └── index.md │ ├── bret-weinstein-on-metaphorical-truth │ │ └── index.md │ ├── buffalo-chicken-dip-recipe │ │ └── index.md │ ├── bug-report-disney-plus-app-on-amazon-fire-tablet-does-not-stay-logged-in │ │ └── index.md │ ├── build-a-search-bar-for-your-hugo-blog-with-a-json-index-and-some-vanilla-js │ │ └── index.md │ ├── by-value-vs-by-reference-in-javascript │ │ └── index.md │ ├── cajun-ninjas-pastalaya-recipe │ │ └── index.md │ ├── cajun-ninjas-smothered-pork-chops-and-onion-gravy-recipe │ │ └── index.md │ ├── camellias-famous-new-orleans-style-red-beans-recipe │ │ └── index.md │ ├── change-mac-default-screenshot-save-location │ │ └── index.md │ ├── change-terminal-prompt-on-mac │ │ └── index.md │ ├── check-flyway-migration-filename-prefix-for-uniqueness-at-build-time │ │ └── index.md │ ├── check-if-a-program-exists-from-your-bash-script │ │ ├── index.md │ │ └── script.sh │ ├── check-if-an-element-exists-in-an-array-in-bash │ │ ├── index.md │ │ └── script.sh │ ├── chicken-shawarma-recipe │ │ └── index.md │ ├── client-side-vs-server-side-analytics-data-comparison │ │ └── index.md │ ├── cold-pasta-salad-recipe │ │ └── index.md │ ├── combine-images-using-imagemagick │ │ └── index.md │ ├── coming-from-java-or-a-c-like-language-to-hugo-go-templates │ │ └── index.md │ ├── conflict-is-information │ │ └── index.md │ ├── connect-to-a-postgresql-database-and-run-a-query-from-a-bash-script │ │ └── index.md │ ├── connect-to-an-oracle-database-and-run-a-query-from-a-bash-script │ │ └── index.md │ ├── convert-a-blob-to-a-base64-string-with-a-javascript-promise │ │ └── index.md │ ├── convert-a-pdf-file-to-png-or-jpg-with-imagemagick-on-mac │ │ └── index.md │ ├── convert-heic-images-to-jpg-part-2-mac-automator │ │ ├── index.md │ │ └── screenshot-1.png │ ├── convert-heic-images-to-jpg │ │ └── index.md │ ├── convert-your-plain-old-html-site-to-hugo │ │ └── index.md │ ├── copy-command-line-output-to-the-clipboard-on-mac-and-windows │ │ └── index.md │ ├── crazy-johnnies-chicken-and-sausage-gumbo-recipe │ │ ├── img │ │ │ └── gumbo-1.jpg │ │ └── index.md │ ├── creamy-chicken-taco-soup-recipe │ │ └── index.md │ ├── create-a-random-pleasing-color-with-pleasejs │ │ ├── index.css │ │ ├── index.html │ │ └── index.ts │ ├── create-a-text-file-in-memory-then-download-it-on-button-click-with-vanilla-js │ │ ├── index.css │ │ ├── index.md │ │ └── index.ts │ ├── create-an-html-table-from-a-toml-data-file-in-hugo │ │ └── index.md │ ├── create-header-links-hugo-vs-javascript │ │ └── index.md │ ├── create-react-app-show-current-git-branch-and-commit-hash-from-any-os │ │ ├── index.md │ │ └── screenshot.png │ ├── crockers-rules │ │ └── index.md │ ├── dads-boiled-crawfish-recipe │ │ └── index.md │ ├── default-param-value-in-java │ │ └── index.md │ ├── deploy-a-site-to-github-pages │ │ └── index.md │ ├── discreet-drafts-in-hugo │ │ └── index.md │ ├── do-you-really-know-whats-best-for-a-person │ │ └── index.md │ ├── document-your-postgres-database-with-schemaspy-and-github-pages │ │ └── index.md │ ├── dont-have-flyway-teams-roll-your-own-version-of-output-query-results │ │ └── index.md │ ├── download-a-file-over-https-using-apache-commons-fileutils-copyurltofile │ │ └── index.md │ ├── download-chromedriver-binary-and-add-to-your-PATH-for-automated-functional-testing │ │ └── index.md │ ├── eerie-art │ │ ├── dawid-planeta-face-of-fear.jpg │ │ ├── dawid-planeta-the-great-learning.jpg │ │ ├── index.md │ │ ├── simon-stalenhag-bio_thehost.jpg │ │ ├── simon-stalenhag-by_crossing.jpg │ │ ├── simon-stalenhag-by_localservers.jpg │ │ ├── simon-stalenhag-by_localservers2.jpg │ │ ├── simon-stalenhag-by_procession.jpg │ │ ├── simon-stalenhag-by_upload2.jpg │ │ ├── simon-stalenhag-by_warmachines4.jpg │ │ ├── simon-stalenhag-by_wipers.jpg │ │ ├── simon-stalenhag-l_ash_cr_01.jpg │ │ ├── simon-stalenhag-l_fb_09.jpg │ │ ├── simon-stalenhag-thelan.jpg │ │ ├── zdislav-beksinski-untitled-106.jpg │ │ ├── zdislav-beksinski-untitled-14.jpg │ │ ├── zdislav-beksinski-untitled-158.jpg │ │ ├── zdislav-beksinski-untitled-168.jpg │ │ ├── zdislav-beksinski-untitled-17.jpg │ │ ├── zdislav-beksinski-untitled-219.jpg │ │ ├── zdislav-beksinski-untitled-264.jpg │ │ ├── zdislav-beksinski-untitled-49.jpg │ │ └── zdislav-beksinski-untitled-50.jpg │ ├── encourage-your-children │ │ └── index.md │ ├── end-to-end-testing-rules │ │ ├── index.md │ │ └── test-pyramid.png │ ├── export-timed-query-results-from-sqlplus │ │ └── index.md │ ├── file-variables-in-hugo │ │ └── index.md │ ├── find-all-tables-that-do-not-have-a-given-column-in-postgres │ │ └── index.md │ ├── fix-the-white-flash-on-page-load-when-using-a-dark-theme-on-a-static-site │ │ └── index.md │ ├── foil-chicken-recipe │ │ └── index.md │ ├── from-loose-leaf-to-email-a-journey-of-jots │ │ └── index.md │ ├── from-sql-to-java-string-and-back │ │ └── index.md │ ├── generate-a-random-string-in-hugo │ │ └── index.md │ ├── generate-lorem-ipsum-with-a-hugo-shortcode │ │ └── index.md │ ├── get-the-approximate-size-of-a-js-object-in-bytes │ │ ├── index.md │ │ └── script.js │ ├── get-your-feet-wet-with-java-parallel-streams │ │ ├── index.md │ │ └── src │ │ │ ├── App.java │ │ │ └── task_run.sh │ ├── git-reference │ │ └── index.md │ ├── grant-current-and-future-objects-to-user-in-postgres │ │ └── index.md │ ├── hit-localhost-on-macos-from-virtualbox-win7-vm │ │ └── index.md │ ├── how-to-add-a-binary-to-your-path-on-macos-linux-windows │ │ └── index.md │ ├── how-to-add-an-apple-touch-icon-to-a-squarespace-site │ │ └── index.md │ ├── how-to-change-your-zsh-shell-prompt │ │ └── index.md │ ├── how-to-find-a-used-tcp-port-and-kill-the-associated-process-on-your-mac │ │ └── index.md │ ├── how-to-show-docker-memory-usage │ │ └── index.md │ ├── how-to-symlink-python-to-python3-on-mac │ │ └── index.md │ ├── how-to-use-purgecss-with-hugo │ │ └── index.md │ ├── huberman-on-eliminating-the-phone-distraction │ │ └── index.md │ ├── i-asked-if-you-saw-an-issue-and-you-answered │ │ └── index.md │ ├── i-believe-in-you-by-don-williams │ │ ├── img │ │ │ └── catfishing.jpg │ │ └── index.md │ ├── install-docker-on-mac │ │ └── index.md │ ├── install-gradle-on-mac │ │ └── index.md │ ├── install-java-on-mac │ │ └── index.md │ ├── install-nodejs-on-mac │ │ └── index.md │ ├── install-nodejs-on-windows-without-admin-access │ │ └── index.md │ ├── install-psql-on-mac │ │ └── index.md │ ├── install-python-on-windows-without-admin-access │ │ └── index.md │ ├── install-ruby-version-manager-on-mac │ │ └── index.md │ ├── install-sqlplus-on-a-mac │ │ └── index.md │ ├── install-sqlplus-on-linux │ │ └── index.md │ ├── install-yarn-on-mac │ │ └── index.md │ ├── ios-app-shout-out-contacts-sync-for-google-gmail │ │ └── index.md │ ├── java-list-cheatsheet │ │ ├── index.md │ │ └── src │ │ │ ├── App.java │ │ │ └── task_run.sh │ ├── javascript-array-vs-java-list-common-actions │ │ └── index.md │ ├── jbs-fried-fish-recipe │ │ └── index.md │ ├── jocko-motivation-good │ │ └── index.md │ ├── john-vervaeke-on-platos-cave │ │ └── index.md │ ├── just-enough-tmux-to-do-what-i-need │ │ └── index.md │ ├── just-enough-vi-to-open-a-file-edit-it-and-quit │ │ └── index.md │ ├── keeping-my-iphone-6-alive-without-replacing-the-battery │ │ └── index.md │ ├── kind-words │ │ └── index.md │ ├── kylynns-chicken-salad-recipe │ │ └── index.md │ ├── kylynns-oatmeal-chocolate-chip-cookies-recipe │ │ └── index.md │ ├── kylynns-pumpkin-bread-recipe │ │ └── index.md │ ├── linear-search-vs-binary-search-explained-with-javascript │ │ └── index.md │ ├── log-docker-stats-to-a-file │ │ └── index.md │ ├── mac-and-linux-environment-variables-in-terminal │ │ └── index.md │ ├── mac-to-windows-command-line-mappings │ │ └── index.md │ ├── macbook-tweaks │ │ └── index.md │ ├── make-a-beep-sound-when-console-outputs-certain-text │ │ └── index.md │ ├── make-a-hugo-blog-from-scratch │ │ └── index.md │ ├── make-pretty-json-output-in-nodejs │ │ ├── index.md │ │ └── script.js │ ├── mallory-ervin-easy-chili-recipe │ │ └── index.md │ ├── massage-a-json-file-with-a-nodejs-script │ │ └── index.md │ ├── maui-trip │ │ ├── img │ │ │ ├── DSC_0538.jpg │ │ │ ├── DSC_0549.jpg │ │ │ ├── DSC_0568.jpg │ │ │ ├── DSC_0601.jpg │ │ │ ├── DSC_0615.jpg │ │ │ ├── DSC_0636.jpg │ │ │ ├── DSC_0652.jpg │ │ │ ├── DSC_0675.jpg │ │ │ ├── DSC_0723.jpg │ │ │ ├── DSC_0812.jpg │ │ │ ├── DSC_0818.jpg │ │ │ ├── DSC_0823.jpg │ │ │ ├── IMG_5532.jpg │ │ │ ├── IMG_5537.jpg │ │ │ ├── IMG_5545.jpg │ │ │ ├── IMG_5570.jpg │ │ │ ├── IMG_5571-PANO.jpg │ │ │ ├── IMG_5577.jpg │ │ │ ├── IMG_5582.jpg │ │ │ ├── IMG_5665.jpg │ │ │ └── IMG_5671.jpg │ │ └── index.md │ ├── mawmaw-bettys-milky-way-ice-cream-recipe │ │ └── index.md │ ├── mawmaw-bettys-strawberry-pie-recipe │ │ └── index.md │ ├── mawmaw-maurice-four-layer-dessert-recipe │ │ ├── img │ │ │ ├── four-layer-dessert-side.jpg │ │ │ └── four-layer-dessert-top.jpg │ │ └── index.md │ ├── michael-levin-and-john-vervaeke-on-free-will-and-character-formation │ │ └── index.md │ ├── mkdocs-template-the-no-excuses-template-to-document-your-project │ │ └── index.md │ ├── my-collection-of-useful-bash-functions │ │ └── index.md │ ├── naming-environment-variables │ │ └── index.md │ ├── nature-gazing-henry-david-thoreau-shows-us-how-to-keep-our-ordinary-surroundings-perpetually-interesting │ │ └── index.md │ ├── nightwatchjs-template │ │ └── index.md │ ├── nodejs-scripting-reference │ │ └── index.md │ ├── on-being-comfortable │ │ └── index.md │ ├── one-constructive-criticism-one-good-thing │ │ └── index.md │ ├── open-a-new-google-chrome-tab-or-window-via-command-line-on-mac │ │ └── index.md │ ├── optimize-images-and-reduce-page-load-times-with-imagemagick │ │ └── index.md │ ├── override-a-hugo-theme │ │ └── index.md │ ├── overthinker │ │ └── index.md │ ├── parse-a-url-in-hugo │ │ └── index.md │ ├── partially-script-the-same-change-in-multiple-git-repos │ │ └── index.md │ ├── passing-input-to-a-bash-function-via-arguments-or-stdin │ │ ├── index.md │ │ └── script.sh │ ├── personal-docs-on-the-find-command │ │ └── index.md │ ├── playing-with-background-images │ │ ├── img │ │ │ └── federico-bottos-Z3NceSeZqgI-unsplash.jpg │ │ ├── index.css │ │ ├── index.md │ │ └── index.ts │ ├── playing-with-java-optional │ │ └── index.md │ ├── pretty-print-github-markdown │ │ ├── chrome-bookmark.png │ │ └── index.md │ ├── prevent-the-display-system-and-disk-from-sleeping-on-mac │ │ └── index.md │ ├── preview-your-site-from-any-device-on-your-network-with-these-hugo-server-options │ │ └── index.md │ ├── quickbooks-windows-desktop-development-docs │ │ └── index.md │ ├── quotes-on-endurance │ │ └── index.md │ ├── quotes-on-resistance │ │ └── index.md │ ├── ramsey-solutions-core-values │ │ └── index.md │ ├── read-an-sql-query-from-a-file-and-run-it-on-startup-of-a-spring-boot-app │ │ └── index.md │ ├── rebuild-your-docker-compose-stack │ │ └── index.md │ ├── recursively-edit-files-in-place-using-nodejs │ │ ├── demo │ │ │ ├── dir-1 │ │ │ │ ├── dir-2 │ │ │ │ │ ├── dir-3 │ │ │ │ │ │ └── file-3.txt │ │ │ │ │ └── file-2.txt │ │ │ │ └── file-1.txt │ │ │ └── script.js │ │ └── index.md │ ├── recursively-rename-file-extensions-with-a-bash-script │ │ └── index.md │ ├── resources-for-learning-to-code │ │ └── index.md │ ├── reuse-the-gradle-dependency-cache-with-docker │ │ └── index.md │ ├── revive-your-old-computer-with-lubuntu-linux │ │ └── index.md │ ├── rosetta-stone-cli-write-the-same-option-parser-script-in-multiple-languages │ │ └── index.md │ ├── routines-are-boring-right │ │ ├── before-and-after.jpg │ │ └── index.md │ ├── run-hugo-server-with-custom-config-options │ │ └── index.md │ ├── sample-draft │ │ └── index.md │ ├── scrabble-attitude │ │ └── index.md │ ├── script-to-add-a-page-level-variable-to-content-front-matter-in-hugo │ │ └── index.md │ ├── script-to-install-latest-hugo-release-on-linux-and-mac │ │ └── index.md │ ├── search-all-database-table-columns │ │ └── index.md │ ├── selfies-in-the-road │ │ └── index.md │ ├── set-environment-variables-in-your-bash-shell-from-a-env-file-version-2 │ │ ├── .env │ │ ├── index.md │ │ └── setenv.sh │ ├── set-environment-variables-in-your-bash-shell-from-a-env-file │ │ ├── .env │ │ ├── index.md │ │ └── setenv.sh │ ├── setup-and-run-sonarqube-on-mac │ │ └── index.md │ ├── shell-config-file-on-mac │ │ └── index.md │ ├── show-and-hide-lines-of-text-via-css-line-clamping │ │ ├── index.css │ │ ├── index.md │ │ └── index.ts │ ├── show-hidden-files-in-mac-finder-by-default │ │ └── index.md │ ├── simon-sinek-on-performance-vs-trust │ │ └── index.md │ ├── simple-pleasures │ │ └── index.md │ ├── site-redesign-every-kilobyte-counts │ │ └── index.md │ ├── snippets-from-the-book-clean-code │ │ └── index.md │ ├── someone-can-explain-the-theory-of-bike-riding-badly-yet-still-ride-a-bike-well │ │ └── index.md │ ├── speed-up-a-fedora-linux-vm-on-virtualbox │ │ └── index.md │ ├── sql-query-pagination-with-spring-boot-and-jdbctemplate │ │ └── index.md │ ├── strawberry-ice-cream-recipe │ │ └── index.md │ ├── style-a-markdown-table-with-bootstrap-classes-in-hugo │ │ └── index.md │ ├── surprising-search-results-unintentionally-getting-on-the-1st-page-of-google │ │ └── index.md │ ├── sweet-heat │ │ └── index.md │ ├── syntax-highlighting-in-hugo-with-chroma │ │ └── index.md │ ├── the-documentation-prerequisite-problem │ │ └── index.md │ ├── the-foyer-phone-method │ │ └── index.md │ ├── the-microsoft-console-colortool │ │ └── index.md │ ├── the-mystery-of-the-expired-jwt │ │ └── index.md │ ├── the-os-stat-function-in-hugo │ │ └── index.md │ ├── there-is-a-richness-and-complexity-that-is-completely-inexhaustible-right-at-hand │ │ └── index.md │ ├── things-i-like │ │ └── index.md │ ├── those-people-who-answer-your-question-as-a-gift │ │ └── index.md │ ├── to-take-a-trip-or-to-increase-the-baseline-qality-of-your-life │ │ └── index.md │ ├── townes-6-ish-months-photos │ │ ├── img │ │ │ ├── TownesBetzMilestone-AshleyLandryPhotography-201.jpg │ │ │ ├── TownesBetzMilestone-AshleyLandryPhotography-215.jpg │ │ │ ├── TownesBetzMilestone-AshleyLandryPhotography-224.jpg │ │ │ ├── TownesBetzMilestone-AshleyLandryPhotography-227.jpg │ │ │ ├── TownesBetzMilestone-AshleyLandryPhotography-239.jpg │ │ │ ├── TownesBetzMilestone-AshleyLandryPhotography-248.jpg │ │ │ ├── TownesBetzMilestone-AshleyLandryPhotography-254.jpg │ │ │ ├── TownesBetzMilestone-AshleyLandryPhotography-259.jpg │ │ │ ├── TownesBetzMilestone-AshleyLandryPhotography-261.jpg │ │ │ ├── TownesBetzMilestone-AshleyLandryPhotography-264.jpg │ │ │ ├── TownesBetzMilestone-AshleyLandryPhotography-274.jpg │ │ │ ├── TownesBetzMilestone-AshleyLandryPhotography-276.jpg │ │ │ ├── TownesBetzMilestone-AshleyLandryPhotography-280.jpg │ │ │ ├── TownesBetzMilestone-AshleyLandryPhotography-282.jpg │ │ │ └── TownesBetzMilestone-AshleyLandryPhotography-283.jpg │ │ └── index.md │ ├── unable-to-access-github-on-tp-link-deco-mesh-wifi │ │ └── index.md │ ├── use-a-centos-docker-image-to-build-and-deploy-a-hugo-modules-site-to-gitlab-pages │ │ └── index.md │ ├── use-extra-properties-to-consolidate-dependency-versions-in-your-build-gradle-file │ │ └── index.md │ ├── use-grep-to-recursively-search-for-text-for-a-given-file-extension │ │ └── index.md │ ├── use-hugo-templating-in-your-external-css │ │ └── index.md │ ├── use-snap-to-install-the-hugo-edge-version-on-fedora-and-ubuntu │ │ └── index.md │ ├── use-vscode-as-your-default-text-editor-for-git │ │ └── index.md │ ├── wait-for-an-element-to-be-enabled-in-nightwatchjs │ │ └── index.md │ ├── wait-for-element-text-to-equal-a-specific-value-in-nightwatchjs │ │ └── index.md │ ├── well-done-westworld │ │ └── index.md │ ├── what-joe-mooring-can-teach-us-about-top-notch-forum-support │ │ └── index.md │ ├── why-is-my-gradle-build-in-docker-so-slow │ │ └── index.md │ ├── windows-environment-variables-in-command-prompt │ │ └── index.md │ ├── write-your-own-short-and-long-option-parser-in-bash │ │ └── index.md │ └── you-cannot-selectively-numb-emotions │ │ └── index.md ├── built-with │ └── index.md ├── contact │ └── index.md ├── disclaimer │ └── index.md ├── family │ ├── family.jpg │ └── index.md ├── headshot.jpg ├── license │ └── index.md ├── links │ └── index.md ├── photo │ ├── index.md │ └── photo.jpg ├── projects │ └── index.md └── search │ └── index.html ├── data └── sample.toml ├── hugo_stats.json ├── layouts └── shortcodes │ ├── file-var.html │ ├── loremGen.html │ ├── os-stat.html │ └── tomlTable.html ├── local_git_config.sh ├── netlify.toml ├── package.json ├── postcss.config.js ├── resources └── _gen │ ├── assets │ └── css │ │ ├── bundled.css_5d1ae7b26729580b7c0ef1c83fb083f3.content │ │ ├── bundled.css_5d1ae7b26729580b7c0ef1c83fb083f3.json │ │ ├── bundled.css_e03652540c5bbc68d359e86d9fc1015a.content │ │ └── bundled.css_e03652540c5bbc68d359e86d9fc1015a.json │ └── images │ ├── an-unchronological-photo-album │ └── img │ │ ├── beach_3_hu12673002941914697512.jpg │ │ ├── chicken_hu14133901298592067162.jpg │ │ └── sleepy_1_hu4364510671264565657.jpg │ ├── anna-mcclain-1st-birthday │ └── img │ │ ├── bricks_hu825242905847551331.jpeg │ │ ├── brother_hu11115128987505570869.jpeg │ │ ├── cake_hu11914256433205352060.jpeg │ │ ├── cousin_hu3508372049864311453.jpeg │ │ ├── mom_hu1682110851967459226.jpeg │ │ ├── tractor_hu17887201849489074839.jpeg │ │ └── tricycle_hu10052788127818269050.jpeg │ ├── beef-jerky-recipe │ └── img │ │ ├── jerky-1_hu16190423642614131095.jpg │ │ ├── jerky-2_hu12202226692382008431.jpg │ │ ├── jerky-3_hu4349347239447683865.jpg │ │ ├── jerky-4_hu16935284278265665985.jpg │ │ ├── jerky-caribbean-jerk_hu7476006373265331870.jpg │ │ ├── jerky-sweet-chili_hu12505988260116670665.jpg │ │ ├── walmart-beef-eye-of-round_hu5755190469295358565.jpg │ │ ├── walmart-beef-milanesa_hu8740766888860633974.jpg │ │ ├── walmart-beef-sizzle-steak_hu1471663446458556979.jpg │ │ └── walmart-sweet-chili-wing-seasoning-mix_hu9082510355955986471.png │ ├── convert-heic-images-to-jpg-part-2-mac-automator │ └── screenshot-1_hu17660813846970918619.png │ ├── crazy-johnnies-chicken-and-sausage-gumbo-recipe │ └── img │ │ └── gumbo-1_hu4384878696865311409.jpg │ ├── create-react-app-show-current-git-branch-and-commit-hash-from-any-os │ └── screenshot_hu618910845772841058.png │ ├── eerie-art │ ├── dawid-planeta-face-of-fear_hu9458338173710498651.jpg │ ├── dawid-planeta-the-great-learning_hu13138054749767941341.jpg │ ├── simon-stalenhag-bio_thehost_hu5112638575671657291.jpg │ ├── simon-stalenhag-by_crossing_hu596741631048876738.jpg │ ├── simon-stalenhag-by_localservers2_hu2444819085477647438.jpg │ ├── simon-stalenhag-by_localservers_hu2249983997306848473.jpg │ ├── simon-stalenhag-by_procession_hu5870451039926750513.jpg │ ├── simon-stalenhag-by_upload2_hu6934659302649433938.jpg │ ├── simon-stalenhag-by_warmachines4_hu14840469760128780888.jpg │ ├── simon-stalenhag-by_wipers_hu12187665721371353546.jpg │ ├── simon-stalenhag-l_ash_cr_01_hu10947001815171040472.jpg │ ├── simon-stalenhag-l_fb_09_hu6002183452730696152.jpg │ ├── simon-stalenhag-thelan_hu7732757907233283872.jpg │ ├── zdislav-beksinski-untitled-106_hu508344411528774811.jpg │ ├── zdislav-beksinski-untitled-14_hu7683037552805298629.jpg │ ├── zdislav-beksinski-untitled-158_hu7153378329034015843.jpg │ ├── zdislav-beksinski-untitled-168_hu10068962535566187967.jpg │ ├── zdislav-beksinski-untitled-17_hu8101247338608398882.jpg │ ├── zdislav-beksinski-untitled-219_hu8625253953253157979.jpg │ ├── zdislav-beksinski-untitled-264_hu15376965607293924026.jpg │ ├── zdislav-beksinski-untitled-49_hu7785661209895240625.jpg │ └── zdislav-beksinski-untitled-50_hu12405184654148619388.jpg │ ├── end-to-end-testing-rules │ └── test-pyramid_hu13220415479467282220.png │ ├── family │ └── family_hu8376358628323943883.jpg │ ├── headshot_hu11190685744697928293.jpg │ ├── i-believe-in-you-by-don-williams │ └── img │ │ └── catfishing_hu17807107761218364721.jpg │ ├── maui-trip │ └── img │ │ ├── DSC_0538_hu3471479262048294885.jpg │ │ ├── DSC_0549_hu9429154969700294220.jpg │ │ ├── DSC_0568_hu448165374884778944.jpg │ │ ├── DSC_0601_hu5122018719664149122.jpg │ │ ├── DSC_0615_hu4973995261011229253.jpg │ │ ├── DSC_0636_hu11489864970868887427.jpg │ │ ├── DSC_0652_hu15081995201492954500.jpg │ │ ├── DSC_0675_hu9624050321162607628.jpg │ │ ├── DSC_0723_hu5021429123410174519.jpg │ │ ├── DSC_0812_hu18055909818628942807.jpg │ │ ├── DSC_0818_hu14462462610177322914.jpg │ │ ├── DSC_0823_hu12693359875057683179.jpg │ │ ├── IMG_5532_hu2977884218953109953.jpg │ │ ├── IMG_5537_hu4714460926844719849.jpg │ │ ├── IMG_5545_hu16590213016475876209.jpg │ │ ├── IMG_5570_hu16050030171790236312.jpg │ │ ├── IMG_5571-PANO_hu14827693204172597073.jpg │ │ ├── IMG_5577_hu11541605887599518180.jpg │ │ ├── IMG_5582_hu12207461207646872118.jpg │ │ ├── IMG_5665_hu9511931302849046095.jpg │ │ └── IMG_5671_hu10584589230281050894.jpg │ ├── mawmaw-maurice-four-layer-dessert-recipe │ └── img │ │ ├── four-layer-dessert-side_hu16143416688084344334.jpg │ │ └── four-layer-dessert-top_hu1278724035998818463.jpg │ ├── photo │ └── photo_hu10183960507910235608.jpg │ ├── pretty-print-github-markdown │ └── chrome-bookmark_hu12606516808970227673.png │ ├── routines-are-boring-right │ └── before-and-after_hu14143272382914136018.jpg │ └── townes-6-ish-months-photos │ └── img │ ├── TownesBetzMilestone-AshleyLandryPhotography-201_hu2029880516555523423.jpg │ ├── TownesBetzMilestone-AshleyLandryPhotography-215_hu14375175730176672654.jpg │ ├── TownesBetzMilestone-AshleyLandryPhotography-224_hu370341945928937939.jpg │ ├── TownesBetzMilestone-AshleyLandryPhotography-227_hu1603273221304723881.jpg │ ├── TownesBetzMilestone-AshleyLandryPhotography-239_hu12601552724117337736.jpg │ ├── TownesBetzMilestone-AshleyLandryPhotography-248_hu17330282832581756408.jpg │ ├── TownesBetzMilestone-AshleyLandryPhotography-254_hu16373477688167450005.jpg │ ├── TownesBetzMilestone-AshleyLandryPhotography-259_hu7996524219202241146.jpg │ ├── TownesBetzMilestone-AshleyLandryPhotography-261_hu9876959335369108915.jpg │ ├── TownesBetzMilestone-AshleyLandryPhotography-264_hu11472162227454367951.jpg │ ├── TownesBetzMilestone-AshleyLandryPhotography-274_hu4939108901177885029.jpg │ ├── TownesBetzMilestone-AshleyLandryPhotography-276_hu11354000684528779047.jpg │ ├── TownesBetzMilestone-AshleyLandryPhotography-280_hu4293220163709217955.jpg │ ├── TownesBetzMilestone-AshleyLandryPhotography-282_hu13372115121112210999.jpg │ └── TownesBetzMilestone-AshleyLandryPhotography-283_hu14754000731185022118.jpg ├── static ├── BingSiteAuth.xml ├── ads.txt ├── google392f4b9db0259ce1.html ├── img │ ├── green-team.svg │ └── nasa_earth_1280x1280.jpeg └── resume │ ├── index.html │ ├── resume.html │ ├── resume.json │ └── resume.pdf ├── task_hugo_install.sh ├── task_resume_get.sh ├── task_resume_sync.sh ├── task_site_build.sh ├── task_site_serve.sh ├── task_various_add_front_matter.sh ├── task_various_refactor_pages_to_page_bundles.sh └── themes └── feather ├── archetypes └── default.md ├── assets ├── css │ ├── bootstrap.css │ └── custom.css └── js │ ├── debug-modal.ts │ ├── search │ ├── fuse.d.ts │ ├── fuse.mjs │ └── search.ts │ └── theme.ts ├── layouts ├── 404.html ├── _default │ ├── _markup │ │ └── render-heading.html │ ├── baseof.html │ └── single.html ├── archive │ ├── list.html │ └── list.json.json ├── blog │ ├── list.html │ ├── list.json.json │ └── single.html ├── index.html ├── links │ └── single.html ├── partials │ ├── datestamp.html │ ├── debug-items │ │ ├── file.html │ │ ├── git-info.html │ │ ├── hugo.html │ │ ├── os-stat.html │ │ ├── page.html │ │ └── site.html │ ├── debug-modal-button.html │ ├── debug-modal.html │ ├── debug-table.html │ ├── feather-icons │ │ ├── archive.html │ │ ├── box.html │ │ ├── calendar.html │ │ ├── check.html │ │ ├── code.html │ │ ├── coffee.html │ │ ├── crosshair.html │ │ ├── custom-x-circle.html │ │ ├── edit.html │ │ ├── eye.html │ │ ├── file-text.html │ │ ├── file.html │ │ ├── folder.html │ │ ├── heart.html │ │ ├── help-circle.html │ │ ├── home.html │ │ ├── info.html │ │ ├── link.html │ │ ├── list.html │ │ ├── mail.html │ │ ├── message-circle.html │ │ ├── message-square.html │ │ ├── search.html │ │ ├── settings.html │ │ ├── smile.html │ │ ├── tool.html │ │ ├── umbrella.html │ │ ├── x-circle.html │ │ └── x.html │ ├── footer-nav.html │ ├── footer.html │ ├── head.html │ ├── header.html │ ├── internal-css.html │ ├── internal-js.html │ ├── page-title.html │ ├── reply-by-email.html │ ├── script-goatcounter.html │ ├── theme-js.html │ ├── theme-toggle.html │ └── toc.html ├── projects │ └── single.html ├── search │ └── single.html └── shortcodes │ ├── blockquote.html │ ├── current-date.html │ ├── figure.html │ ├── gallery.html │ └── table.html └── static ├── apple-touch-icon.png ├── favicon.ico └── favicon.svg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/.github/ISSUE_TEMPLATE/issue.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/.gitignore -------------------------------------------------------------------------------- /.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/config.yaml -------------------------------------------------------------------------------- /content/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/_index.html -------------------------------------------------------------------------------- /content/archive/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/archive/_index.md -------------------------------------------------------------------------------- /content/blog/2021-01-16-assorted-links/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/2021-01-16-assorted-links/index.md -------------------------------------------------------------------------------- /content/blog/28-for-28/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/28-for-28/index.md -------------------------------------------------------------------------------- /content/blog/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/_index.md -------------------------------------------------------------------------------- /content/blog/a-minimal-hugo-blog-layout/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/a-minimal-hugo-blog-layout/index.md -------------------------------------------------------------------------------- /content/blog/a-shell-script-wrapper-for-pgdump/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/a-shell-script-wrapper-for-pgdump/index.md -------------------------------------------------------------------------------- /content/blog/adam-knew-eve/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/adam-knew-eve/index.md -------------------------------------------------------------------------------- /content/blog/add-a-git-commit-hook-to-run-prettier-on-only-staged-files-in-a-nodejs-project/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/add-a-git-commit-hook-to-run-prettier-on-only-staged-files-in-a-nodejs-project/index.md -------------------------------------------------------------------------------- /content/blog/add-search-functionality-to-your-blog-listing-page/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/add-search-functionality-to-your-blog-listing-page/index.md -------------------------------------------------------------------------------- /content/blog/add-your-account-as-a-sudoer-on-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/add-your-account-as-a-sudoer-on-mac/index.md -------------------------------------------------------------------------------- /content/blog/aliases-in-windows-command-prompt/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/aliases-in-windows-command-prompt/index.md -------------------------------------------------------------------------------- /content/blog/an-unchronological-photo-album/img/beach_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/an-unchronological-photo-album/img/beach_3.jpg -------------------------------------------------------------------------------- /content/blog/an-unchronological-photo-album/img/chicken.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/an-unchronological-photo-album/img/chicken.jpg -------------------------------------------------------------------------------- /content/blog/an-unchronological-photo-album/img/sleepy_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/an-unchronological-photo-album/img/sleepy_1.jpg -------------------------------------------------------------------------------- /content/blog/an-unchronological-photo-album/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/an-unchronological-photo-album/index.md -------------------------------------------------------------------------------- /content/blog/anna-mcclain-1st-birthday/img/bricks.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/anna-mcclain-1st-birthday/img/bricks.jpeg -------------------------------------------------------------------------------- /content/blog/anna-mcclain-1st-birthday/img/brother.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/anna-mcclain-1st-birthday/img/brother.jpeg -------------------------------------------------------------------------------- /content/blog/anna-mcclain-1st-birthday/img/cake.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/anna-mcclain-1st-birthday/img/cake.jpeg -------------------------------------------------------------------------------- /content/blog/anna-mcclain-1st-birthday/img/cousin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/anna-mcclain-1st-birthday/img/cousin.jpeg -------------------------------------------------------------------------------- /content/blog/anna-mcclain-1st-birthday/img/mom.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/anna-mcclain-1st-birthday/img/mom.jpeg -------------------------------------------------------------------------------- /content/blog/anna-mcclain-1st-birthday/img/tractor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/anna-mcclain-1st-birthday/img/tractor.jpeg -------------------------------------------------------------------------------- /content/blog/anna-mcclain-1st-birthday/img/tricycle.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/anna-mcclain-1st-birthday/img/tricycle.jpeg -------------------------------------------------------------------------------- /content/blog/anna-mcclain-1st-birthday/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/anna-mcclain-1st-birthday/index.md -------------------------------------------------------------------------------- /content/blog/apache-groovy-tidbits/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/apache-groovy-tidbits/index.md -------------------------------------------------------------------------------- /content/blog/aristotle-on-marriage-and-trust-as-the-foundation-of-civilization/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/aristotle-on-marriage-and-trust-as-the-foundation-of-civilization/index.md -------------------------------------------------------------------------------- /content/blog/attention-is-my-most-valuable-asset-for-productivity-as-a-software-developer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/attention-is-my-most-valuable-asset-for-productivity-as-a-software-developer/index.md -------------------------------------------------------------------------------- /content/blog/autodial-a-phone-extension-on-ios/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/autodial-a-phone-extension-on-ios/index.md -------------------------------------------------------------------------------- /content/blog/barbell-training-to-get-me-through-the-day/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/barbell-training-to-get-me-through-the-day/index.md -------------------------------------------------------------------------------- /content/blog/base64-tool/index.css: -------------------------------------------------------------------------------- 1 | #error { 2 | color: #dc3545; 3 | } 4 | -------------------------------------------------------------------------------- /content/blog/base64-tool/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/base64-tool/index.html -------------------------------------------------------------------------------- /content/blog/base64-tool/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/base64-tool/index.ts -------------------------------------------------------------------------------- /content/blog/bash-date-time-format-specifiers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/bash-date-time-format-specifiers/index.md -------------------------------------------------------------------------------- /content/blog/bash-function-to-delete-all-local-git-branches-except-for-those-you-want-to-keep/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/bash-function-to-delete-all-local-git-branches-except-for-those-you-want-to-keep/index.md -------------------------------------------------------------------------------- /content/blog/bash-reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/bash-reference/index.md -------------------------------------------------------------------------------- /content/blog/bash-shell-script-template/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/bash-shell-script-template/index.md -------------------------------------------------------------------------------- /content/blog/bash-shell-script-template/template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/bash-shell-script-template/template.sh -------------------------------------------------------------------------------- /content/blog/bash-shell-scripting-for-developers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/bash-shell-scripting-for-developers/index.md -------------------------------------------------------------------------------- /content/blog/bash-utility-functions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/bash-utility-functions/index.md -------------------------------------------------------------------------------- /content/blog/beef-jerky-recipe/img/jerky-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/beef-jerky-recipe/img/jerky-1.jpg -------------------------------------------------------------------------------- /content/blog/beef-jerky-recipe/img/jerky-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/beef-jerky-recipe/img/jerky-2.jpg -------------------------------------------------------------------------------- /content/blog/beef-jerky-recipe/img/jerky-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/beef-jerky-recipe/img/jerky-3.jpg -------------------------------------------------------------------------------- /content/blog/beef-jerky-recipe/img/jerky-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/beef-jerky-recipe/img/jerky-4.jpg -------------------------------------------------------------------------------- /content/blog/beef-jerky-recipe/img/jerky-caribbean-jerk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/beef-jerky-recipe/img/jerky-caribbean-jerk.jpg -------------------------------------------------------------------------------- /content/blog/beef-jerky-recipe/img/jerky-sweet-chili.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/beef-jerky-recipe/img/jerky-sweet-chili.jpg -------------------------------------------------------------------------------- /content/blog/beef-jerky-recipe/img/walmart-beef-eye-of-round.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/beef-jerky-recipe/img/walmart-beef-eye-of-round.jpg -------------------------------------------------------------------------------- /content/blog/beef-jerky-recipe/img/walmart-beef-milanesa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/beef-jerky-recipe/img/walmart-beef-milanesa.jpg -------------------------------------------------------------------------------- /content/blog/beef-jerky-recipe/img/walmart-beef-sizzle-steak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/beef-jerky-recipe/img/walmart-beef-sizzle-steak.jpg -------------------------------------------------------------------------------- /content/blog/beef-jerky-recipe/img/walmart-sweet-chili-wing-seasoning-mix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/beef-jerky-recipe/img/walmart-sweet-chili-wing-seasoning-mix.png -------------------------------------------------------------------------------- /content/blog/beef-jerky-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/beef-jerky-recipe/index.md -------------------------------------------------------------------------------- /content/blog/beyond-the-western-malcolm-gladwell-on-the-four-categories-of-law-and-order-art/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/beyond-the-western-malcolm-gladwell-on-the-four-categories-of-law-and-order-art/index.md -------------------------------------------------------------------------------- /content/blog/book-snippets-the-subtle-art-of-not-giving-a-fuck/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/book-snippets-the-subtle-art-of-not-giving-a-fuck/index.md -------------------------------------------------------------------------------- /content/blog/bootstrap-4-with-bootstrap-3-styles/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/bootstrap-4-with-bootstrap-3-styles/index.md -------------------------------------------------------------------------------- /content/blog/boredom-as-a-human-drive/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/boredom-as-a-human-drive/index.md -------------------------------------------------------------------------------- /content/blog/bret-weinstein-on-metaphorical-truth/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/bret-weinstein-on-metaphorical-truth/index.md -------------------------------------------------------------------------------- /content/blog/buffalo-chicken-dip-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/buffalo-chicken-dip-recipe/index.md -------------------------------------------------------------------------------- /content/blog/bug-report-disney-plus-app-on-amazon-fire-tablet-does-not-stay-logged-in/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/bug-report-disney-plus-app-on-amazon-fire-tablet-does-not-stay-logged-in/index.md -------------------------------------------------------------------------------- /content/blog/build-a-search-bar-for-your-hugo-blog-with-a-json-index-and-some-vanilla-js/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/build-a-search-bar-for-your-hugo-blog-with-a-json-index-and-some-vanilla-js/index.md -------------------------------------------------------------------------------- /content/blog/by-value-vs-by-reference-in-javascript/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/by-value-vs-by-reference-in-javascript/index.md -------------------------------------------------------------------------------- /content/blog/cajun-ninjas-pastalaya-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/cajun-ninjas-pastalaya-recipe/index.md -------------------------------------------------------------------------------- /content/blog/cajun-ninjas-smothered-pork-chops-and-onion-gravy-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/cajun-ninjas-smothered-pork-chops-and-onion-gravy-recipe/index.md -------------------------------------------------------------------------------- /content/blog/camellias-famous-new-orleans-style-red-beans-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/camellias-famous-new-orleans-style-red-beans-recipe/index.md -------------------------------------------------------------------------------- /content/blog/change-mac-default-screenshot-save-location/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/change-mac-default-screenshot-save-location/index.md -------------------------------------------------------------------------------- /content/blog/change-terminal-prompt-on-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/change-terminal-prompt-on-mac/index.md -------------------------------------------------------------------------------- /content/blog/check-flyway-migration-filename-prefix-for-uniqueness-at-build-time/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/check-flyway-migration-filename-prefix-for-uniqueness-at-build-time/index.md -------------------------------------------------------------------------------- /content/blog/check-if-a-program-exists-from-your-bash-script/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/check-if-a-program-exists-from-your-bash-script/index.md -------------------------------------------------------------------------------- /content/blog/check-if-a-program-exists-from-your-bash-script/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/check-if-a-program-exists-from-your-bash-script/script.sh -------------------------------------------------------------------------------- /content/blog/check-if-an-element-exists-in-an-array-in-bash/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/check-if-an-element-exists-in-an-array-in-bash/index.md -------------------------------------------------------------------------------- /content/blog/check-if-an-element-exists-in-an-array-in-bash/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/check-if-an-element-exists-in-an-array-in-bash/script.sh -------------------------------------------------------------------------------- /content/blog/chicken-shawarma-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/chicken-shawarma-recipe/index.md -------------------------------------------------------------------------------- /content/blog/client-side-vs-server-side-analytics-data-comparison/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/client-side-vs-server-side-analytics-data-comparison/index.md -------------------------------------------------------------------------------- /content/blog/cold-pasta-salad-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/cold-pasta-salad-recipe/index.md -------------------------------------------------------------------------------- /content/blog/combine-images-using-imagemagick/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/combine-images-using-imagemagick/index.md -------------------------------------------------------------------------------- /content/blog/coming-from-java-or-a-c-like-language-to-hugo-go-templates/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/coming-from-java-or-a-c-like-language-to-hugo-go-templates/index.md -------------------------------------------------------------------------------- /content/blog/conflict-is-information/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/conflict-is-information/index.md -------------------------------------------------------------------------------- /content/blog/connect-to-a-postgresql-database-and-run-a-query-from-a-bash-script/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/connect-to-a-postgresql-database-and-run-a-query-from-a-bash-script/index.md -------------------------------------------------------------------------------- /content/blog/connect-to-an-oracle-database-and-run-a-query-from-a-bash-script/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/connect-to-an-oracle-database-and-run-a-query-from-a-bash-script/index.md -------------------------------------------------------------------------------- /content/blog/convert-a-blob-to-a-base64-string-with-a-javascript-promise/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/convert-a-blob-to-a-base64-string-with-a-javascript-promise/index.md -------------------------------------------------------------------------------- /content/blog/convert-a-pdf-file-to-png-or-jpg-with-imagemagick-on-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/convert-a-pdf-file-to-png-or-jpg-with-imagemagick-on-mac/index.md -------------------------------------------------------------------------------- /content/blog/convert-heic-images-to-jpg-part-2-mac-automator/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/convert-heic-images-to-jpg-part-2-mac-automator/index.md -------------------------------------------------------------------------------- /content/blog/convert-heic-images-to-jpg-part-2-mac-automator/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/convert-heic-images-to-jpg-part-2-mac-automator/screenshot-1.png -------------------------------------------------------------------------------- /content/blog/convert-heic-images-to-jpg/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/convert-heic-images-to-jpg/index.md -------------------------------------------------------------------------------- /content/blog/convert-your-plain-old-html-site-to-hugo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/convert-your-plain-old-html-site-to-hugo/index.md -------------------------------------------------------------------------------- /content/blog/copy-command-line-output-to-the-clipboard-on-mac-and-windows/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/copy-command-line-output-to-the-clipboard-on-mac-and-windows/index.md -------------------------------------------------------------------------------- /content/blog/crazy-johnnies-chicken-and-sausage-gumbo-recipe/img/gumbo-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/crazy-johnnies-chicken-and-sausage-gumbo-recipe/img/gumbo-1.jpg -------------------------------------------------------------------------------- /content/blog/crazy-johnnies-chicken-and-sausage-gumbo-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/crazy-johnnies-chicken-and-sausage-gumbo-recipe/index.md -------------------------------------------------------------------------------- /content/blog/creamy-chicken-taco-soup-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/creamy-chicken-taco-soup-recipe/index.md -------------------------------------------------------------------------------- /content/blog/create-a-random-pleasing-color-with-pleasejs/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/create-a-random-pleasing-color-with-pleasejs/index.css -------------------------------------------------------------------------------- /content/blog/create-a-random-pleasing-color-with-pleasejs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/create-a-random-pleasing-color-with-pleasejs/index.html -------------------------------------------------------------------------------- /content/blog/create-a-random-pleasing-color-with-pleasejs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/create-a-random-pleasing-color-with-pleasejs/index.ts -------------------------------------------------------------------------------- /content/blog/create-a-text-file-in-memory-then-download-it-on-button-click-with-vanilla-js/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/create-a-text-file-in-memory-then-download-it-on-button-click-with-vanilla-js/index.css -------------------------------------------------------------------------------- /content/blog/create-a-text-file-in-memory-then-download-it-on-button-click-with-vanilla-js/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/create-a-text-file-in-memory-then-download-it-on-button-click-with-vanilla-js/index.md -------------------------------------------------------------------------------- /content/blog/create-a-text-file-in-memory-then-download-it-on-button-click-with-vanilla-js/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/create-a-text-file-in-memory-then-download-it-on-button-click-with-vanilla-js/index.ts -------------------------------------------------------------------------------- /content/blog/create-an-html-table-from-a-toml-data-file-in-hugo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/create-an-html-table-from-a-toml-data-file-in-hugo/index.md -------------------------------------------------------------------------------- /content/blog/create-header-links-hugo-vs-javascript/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/create-header-links-hugo-vs-javascript/index.md -------------------------------------------------------------------------------- /content/blog/create-react-app-show-current-git-branch-and-commit-hash-from-any-os/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/create-react-app-show-current-git-branch-and-commit-hash-from-any-os/index.md -------------------------------------------------------------------------------- /content/blog/create-react-app-show-current-git-branch-and-commit-hash-from-any-os/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/create-react-app-show-current-git-branch-and-commit-hash-from-any-os/screenshot.png -------------------------------------------------------------------------------- /content/blog/crockers-rules/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/crockers-rules/index.md -------------------------------------------------------------------------------- /content/blog/dads-boiled-crawfish-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/dads-boiled-crawfish-recipe/index.md -------------------------------------------------------------------------------- /content/blog/default-param-value-in-java/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/default-param-value-in-java/index.md -------------------------------------------------------------------------------- /content/blog/deploy-a-site-to-github-pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/deploy-a-site-to-github-pages/index.md -------------------------------------------------------------------------------- /content/blog/discreet-drafts-in-hugo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/discreet-drafts-in-hugo/index.md -------------------------------------------------------------------------------- /content/blog/do-you-really-know-whats-best-for-a-person/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/do-you-really-know-whats-best-for-a-person/index.md -------------------------------------------------------------------------------- /content/blog/document-your-postgres-database-with-schemaspy-and-github-pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/document-your-postgres-database-with-schemaspy-and-github-pages/index.md -------------------------------------------------------------------------------- /content/blog/dont-have-flyway-teams-roll-your-own-version-of-output-query-results/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/dont-have-flyway-teams-roll-your-own-version-of-output-query-results/index.md -------------------------------------------------------------------------------- /content/blog/download-a-file-over-https-using-apache-commons-fileutils-copyurltofile/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/download-a-file-over-https-using-apache-commons-fileutils-copyurltofile/index.md -------------------------------------------------------------------------------- /content/blog/download-chromedriver-binary-and-add-to-your-PATH-for-automated-functional-testing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/download-chromedriver-binary-and-add-to-your-PATH-for-automated-functional-testing/index.md -------------------------------------------------------------------------------- /content/blog/eerie-art/dawid-planeta-face-of-fear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/dawid-planeta-face-of-fear.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/dawid-planeta-the-great-learning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/dawid-planeta-the-great-learning.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/index.md -------------------------------------------------------------------------------- /content/blog/eerie-art/simon-stalenhag-bio_thehost.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/simon-stalenhag-bio_thehost.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/simon-stalenhag-by_crossing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/simon-stalenhag-by_crossing.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/simon-stalenhag-by_localservers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/simon-stalenhag-by_localservers.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/simon-stalenhag-by_localservers2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/simon-stalenhag-by_localservers2.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/simon-stalenhag-by_procession.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/simon-stalenhag-by_procession.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/simon-stalenhag-by_upload2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/simon-stalenhag-by_upload2.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/simon-stalenhag-by_warmachines4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/simon-stalenhag-by_warmachines4.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/simon-stalenhag-by_wipers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/simon-stalenhag-by_wipers.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/simon-stalenhag-l_ash_cr_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/simon-stalenhag-l_ash_cr_01.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/simon-stalenhag-l_fb_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/simon-stalenhag-l_fb_09.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/simon-stalenhag-thelan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/simon-stalenhag-thelan.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/zdislav-beksinski-untitled-106.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/zdislav-beksinski-untitled-106.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/zdislav-beksinski-untitled-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/zdislav-beksinski-untitled-14.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/zdislav-beksinski-untitled-158.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/zdislav-beksinski-untitled-158.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/zdislav-beksinski-untitled-168.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/zdislav-beksinski-untitled-168.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/zdislav-beksinski-untitled-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/zdislav-beksinski-untitled-17.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/zdislav-beksinski-untitled-219.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/zdislav-beksinski-untitled-219.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/zdislav-beksinski-untitled-264.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/zdislav-beksinski-untitled-264.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/zdislav-beksinski-untitled-49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/zdislav-beksinski-untitled-49.jpg -------------------------------------------------------------------------------- /content/blog/eerie-art/zdislav-beksinski-untitled-50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/eerie-art/zdislav-beksinski-untitled-50.jpg -------------------------------------------------------------------------------- /content/blog/encourage-your-children/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/encourage-your-children/index.md -------------------------------------------------------------------------------- /content/blog/end-to-end-testing-rules/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/end-to-end-testing-rules/index.md -------------------------------------------------------------------------------- /content/blog/end-to-end-testing-rules/test-pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/end-to-end-testing-rules/test-pyramid.png -------------------------------------------------------------------------------- /content/blog/export-timed-query-results-from-sqlplus/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/export-timed-query-results-from-sqlplus/index.md -------------------------------------------------------------------------------- /content/blog/file-variables-in-hugo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/file-variables-in-hugo/index.md -------------------------------------------------------------------------------- /content/blog/find-all-tables-that-do-not-have-a-given-column-in-postgres/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/find-all-tables-that-do-not-have-a-given-column-in-postgres/index.md -------------------------------------------------------------------------------- /content/blog/fix-the-white-flash-on-page-load-when-using-a-dark-theme-on-a-static-site/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/fix-the-white-flash-on-page-load-when-using-a-dark-theme-on-a-static-site/index.md -------------------------------------------------------------------------------- /content/blog/foil-chicken-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/foil-chicken-recipe/index.md -------------------------------------------------------------------------------- /content/blog/from-loose-leaf-to-email-a-journey-of-jots/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/from-loose-leaf-to-email-a-journey-of-jots/index.md -------------------------------------------------------------------------------- /content/blog/from-sql-to-java-string-and-back/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/from-sql-to-java-string-and-back/index.md -------------------------------------------------------------------------------- /content/blog/generate-a-random-string-in-hugo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/generate-a-random-string-in-hugo/index.md -------------------------------------------------------------------------------- /content/blog/generate-lorem-ipsum-with-a-hugo-shortcode/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/generate-lorem-ipsum-with-a-hugo-shortcode/index.md -------------------------------------------------------------------------------- /content/blog/get-the-approximate-size-of-a-js-object-in-bytes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/get-the-approximate-size-of-a-js-object-in-bytes/index.md -------------------------------------------------------------------------------- /content/blog/get-the-approximate-size-of-a-js-object-in-bytes/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/get-the-approximate-size-of-a-js-object-in-bytes/script.js -------------------------------------------------------------------------------- /content/blog/get-your-feet-wet-with-java-parallel-streams/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/get-your-feet-wet-with-java-parallel-streams/index.md -------------------------------------------------------------------------------- /content/blog/get-your-feet-wet-with-java-parallel-streams/src/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/get-your-feet-wet-with-java-parallel-streams/src/App.java -------------------------------------------------------------------------------- /content/blog/get-your-feet-wet-with-java-parallel-streams/src/task_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/get-your-feet-wet-with-java-parallel-streams/src/task_run.sh -------------------------------------------------------------------------------- /content/blog/git-reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/git-reference/index.md -------------------------------------------------------------------------------- /content/blog/grant-current-and-future-objects-to-user-in-postgres/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/grant-current-and-future-objects-to-user-in-postgres/index.md -------------------------------------------------------------------------------- /content/blog/hit-localhost-on-macos-from-virtualbox-win7-vm/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/hit-localhost-on-macos-from-virtualbox-win7-vm/index.md -------------------------------------------------------------------------------- /content/blog/how-to-add-a-binary-to-your-path-on-macos-linux-windows/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/how-to-add-a-binary-to-your-path-on-macos-linux-windows/index.md -------------------------------------------------------------------------------- /content/blog/how-to-add-an-apple-touch-icon-to-a-squarespace-site/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/how-to-add-an-apple-touch-icon-to-a-squarespace-site/index.md -------------------------------------------------------------------------------- /content/blog/how-to-change-your-zsh-shell-prompt/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/how-to-change-your-zsh-shell-prompt/index.md -------------------------------------------------------------------------------- /content/blog/how-to-find-a-used-tcp-port-and-kill-the-associated-process-on-your-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/how-to-find-a-used-tcp-port-and-kill-the-associated-process-on-your-mac/index.md -------------------------------------------------------------------------------- /content/blog/how-to-show-docker-memory-usage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/how-to-show-docker-memory-usage/index.md -------------------------------------------------------------------------------- /content/blog/how-to-symlink-python-to-python3-on-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/how-to-symlink-python-to-python3-on-mac/index.md -------------------------------------------------------------------------------- /content/blog/how-to-use-purgecss-with-hugo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/how-to-use-purgecss-with-hugo/index.md -------------------------------------------------------------------------------- /content/blog/huberman-on-eliminating-the-phone-distraction/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/huberman-on-eliminating-the-phone-distraction/index.md -------------------------------------------------------------------------------- /content/blog/i-asked-if-you-saw-an-issue-and-you-answered/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/i-asked-if-you-saw-an-issue-and-you-answered/index.md -------------------------------------------------------------------------------- /content/blog/i-believe-in-you-by-don-williams/img/catfishing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/i-believe-in-you-by-don-williams/img/catfishing.jpg -------------------------------------------------------------------------------- /content/blog/i-believe-in-you-by-don-williams/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/i-believe-in-you-by-don-williams/index.md -------------------------------------------------------------------------------- /content/blog/install-docker-on-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/install-docker-on-mac/index.md -------------------------------------------------------------------------------- /content/blog/install-gradle-on-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/install-gradle-on-mac/index.md -------------------------------------------------------------------------------- /content/blog/install-java-on-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/install-java-on-mac/index.md -------------------------------------------------------------------------------- /content/blog/install-nodejs-on-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/install-nodejs-on-mac/index.md -------------------------------------------------------------------------------- /content/blog/install-nodejs-on-windows-without-admin-access/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/install-nodejs-on-windows-without-admin-access/index.md -------------------------------------------------------------------------------- /content/blog/install-psql-on-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/install-psql-on-mac/index.md -------------------------------------------------------------------------------- /content/blog/install-python-on-windows-without-admin-access/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/install-python-on-windows-without-admin-access/index.md -------------------------------------------------------------------------------- /content/blog/install-ruby-version-manager-on-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/install-ruby-version-manager-on-mac/index.md -------------------------------------------------------------------------------- /content/blog/install-sqlplus-on-a-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/install-sqlplus-on-a-mac/index.md -------------------------------------------------------------------------------- /content/blog/install-sqlplus-on-linux/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/install-sqlplus-on-linux/index.md -------------------------------------------------------------------------------- /content/blog/install-yarn-on-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/install-yarn-on-mac/index.md -------------------------------------------------------------------------------- /content/blog/ios-app-shout-out-contacts-sync-for-google-gmail/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/ios-app-shout-out-contacts-sync-for-google-gmail/index.md -------------------------------------------------------------------------------- /content/blog/java-list-cheatsheet/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/java-list-cheatsheet/index.md -------------------------------------------------------------------------------- /content/blog/java-list-cheatsheet/src/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/java-list-cheatsheet/src/App.java -------------------------------------------------------------------------------- /content/blog/java-list-cheatsheet/src/task_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/java-list-cheatsheet/src/task_run.sh -------------------------------------------------------------------------------- /content/blog/javascript-array-vs-java-list-common-actions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/javascript-array-vs-java-list-common-actions/index.md -------------------------------------------------------------------------------- /content/blog/jbs-fried-fish-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/jbs-fried-fish-recipe/index.md -------------------------------------------------------------------------------- /content/blog/jocko-motivation-good/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/jocko-motivation-good/index.md -------------------------------------------------------------------------------- /content/blog/john-vervaeke-on-platos-cave/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/john-vervaeke-on-platos-cave/index.md -------------------------------------------------------------------------------- /content/blog/just-enough-tmux-to-do-what-i-need/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/just-enough-tmux-to-do-what-i-need/index.md -------------------------------------------------------------------------------- /content/blog/just-enough-vi-to-open-a-file-edit-it-and-quit/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/just-enough-vi-to-open-a-file-edit-it-and-quit/index.md -------------------------------------------------------------------------------- /content/blog/keeping-my-iphone-6-alive-without-replacing-the-battery/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/keeping-my-iphone-6-alive-without-replacing-the-battery/index.md -------------------------------------------------------------------------------- /content/blog/kind-words/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/kind-words/index.md -------------------------------------------------------------------------------- /content/blog/kylynns-chicken-salad-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/kylynns-chicken-salad-recipe/index.md -------------------------------------------------------------------------------- /content/blog/kylynns-oatmeal-chocolate-chip-cookies-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/kylynns-oatmeal-chocolate-chip-cookies-recipe/index.md -------------------------------------------------------------------------------- /content/blog/kylynns-pumpkin-bread-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/kylynns-pumpkin-bread-recipe/index.md -------------------------------------------------------------------------------- /content/blog/linear-search-vs-binary-search-explained-with-javascript/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/linear-search-vs-binary-search-explained-with-javascript/index.md -------------------------------------------------------------------------------- /content/blog/log-docker-stats-to-a-file/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/log-docker-stats-to-a-file/index.md -------------------------------------------------------------------------------- /content/blog/mac-and-linux-environment-variables-in-terminal/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/mac-and-linux-environment-variables-in-terminal/index.md -------------------------------------------------------------------------------- /content/blog/mac-to-windows-command-line-mappings/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/mac-to-windows-command-line-mappings/index.md -------------------------------------------------------------------------------- /content/blog/macbook-tweaks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/macbook-tweaks/index.md -------------------------------------------------------------------------------- /content/blog/make-a-beep-sound-when-console-outputs-certain-text/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/make-a-beep-sound-when-console-outputs-certain-text/index.md -------------------------------------------------------------------------------- /content/blog/make-a-hugo-blog-from-scratch/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/make-a-hugo-blog-from-scratch/index.md -------------------------------------------------------------------------------- /content/blog/make-pretty-json-output-in-nodejs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/make-pretty-json-output-in-nodejs/index.md -------------------------------------------------------------------------------- /content/blog/make-pretty-json-output-in-nodejs/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/make-pretty-json-output-in-nodejs/script.js -------------------------------------------------------------------------------- /content/blog/mallory-ervin-easy-chili-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/mallory-ervin-easy-chili-recipe/index.md -------------------------------------------------------------------------------- /content/blog/massage-a-json-file-with-a-nodejs-script/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/massage-a-json-file-with-a-nodejs-script/index.md -------------------------------------------------------------------------------- /content/blog/maui-trip/img/DSC_0538.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/DSC_0538.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/DSC_0549.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/DSC_0549.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/DSC_0568.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/DSC_0568.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/DSC_0601.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/DSC_0601.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/DSC_0615.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/DSC_0615.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/DSC_0636.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/DSC_0636.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/DSC_0652.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/DSC_0652.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/DSC_0675.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/DSC_0675.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/DSC_0723.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/DSC_0723.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/DSC_0812.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/DSC_0812.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/DSC_0818.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/DSC_0818.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/DSC_0823.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/DSC_0823.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/IMG_5532.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/IMG_5532.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/IMG_5537.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/IMG_5537.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/IMG_5545.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/IMG_5545.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/IMG_5570.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/IMG_5570.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/IMG_5571-PANO.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/IMG_5571-PANO.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/IMG_5577.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/IMG_5577.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/IMG_5582.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/IMG_5582.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/IMG_5665.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/IMG_5665.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/img/IMG_5671.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/img/IMG_5671.jpg -------------------------------------------------------------------------------- /content/blog/maui-trip/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/maui-trip/index.md -------------------------------------------------------------------------------- /content/blog/mawmaw-bettys-milky-way-ice-cream-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/mawmaw-bettys-milky-way-ice-cream-recipe/index.md -------------------------------------------------------------------------------- /content/blog/mawmaw-bettys-strawberry-pie-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/mawmaw-bettys-strawberry-pie-recipe/index.md -------------------------------------------------------------------------------- /content/blog/mawmaw-maurice-four-layer-dessert-recipe/img/four-layer-dessert-side.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/mawmaw-maurice-four-layer-dessert-recipe/img/four-layer-dessert-side.jpg -------------------------------------------------------------------------------- /content/blog/mawmaw-maurice-four-layer-dessert-recipe/img/four-layer-dessert-top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/mawmaw-maurice-four-layer-dessert-recipe/img/four-layer-dessert-top.jpg -------------------------------------------------------------------------------- /content/blog/mawmaw-maurice-four-layer-dessert-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/mawmaw-maurice-four-layer-dessert-recipe/index.md -------------------------------------------------------------------------------- /content/blog/michael-levin-and-john-vervaeke-on-free-will-and-character-formation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/michael-levin-and-john-vervaeke-on-free-will-and-character-formation/index.md -------------------------------------------------------------------------------- /content/blog/mkdocs-template-the-no-excuses-template-to-document-your-project/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/mkdocs-template-the-no-excuses-template-to-document-your-project/index.md -------------------------------------------------------------------------------- /content/blog/my-collection-of-useful-bash-functions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/my-collection-of-useful-bash-functions/index.md -------------------------------------------------------------------------------- /content/blog/naming-environment-variables/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/naming-environment-variables/index.md -------------------------------------------------------------------------------- /content/blog/nature-gazing-henry-david-thoreau-shows-us-how-to-keep-our-ordinary-surroundings-perpetually-interesting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/nature-gazing-henry-david-thoreau-shows-us-how-to-keep-our-ordinary-surroundings-perpetually-interesting/index.md -------------------------------------------------------------------------------- /content/blog/nightwatchjs-template/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/nightwatchjs-template/index.md -------------------------------------------------------------------------------- /content/blog/nodejs-scripting-reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/nodejs-scripting-reference/index.md -------------------------------------------------------------------------------- /content/blog/on-being-comfortable/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/on-being-comfortable/index.md -------------------------------------------------------------------------------- /content/blog/one-constructive-criticism-one-good-thing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/one-constructive-criticism-one-good-thing/index.md -------------------------------------------------------------------------------- /content/blog/open-a-new-google-chrome-tab-or-window-via-command-line-on-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/open-a-new-google-chrome-tab-or-window-via-command-line-on-mac/index.md -------------------------------------------------------------------------------- /content/blog/optimize-images-and-reduce-page-load-times-with-imagemagick/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/optimize-images-and-reduce-page-load-times-with-imagemagick/index.md -------------------------------------------------------------------------------- /content/blog/override-a-hugo-theme/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/override-a-hugo-theme/index.md -------------------------------------------------------------------------------- /content/blog/overthinker/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/overthinker/index.md -------------------------------------------------------------------------------- /content/blog/parse-a-url-in-hugo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/parse-a-url-in-hugo/index.md -------------------------------------------------------------------------------- /content/blog/partially-script-the-same-change-in-multiple-git-repos/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/partially-script-the-same-change-in-multiple-git-repos/index.md -------------------------------------------------------------------------------- /content/blog/passing-input-to-a-bash-function-via-arguments-or-stdin/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/passing-input-to-a-bash-function-via-arguments-or-stdin/index.md -------------------------------------------------------------------------------- /content/blog/passing-input-to-a-bash-function-via-arguments-or-stdin/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/passing-input-to-a-bash-function-via-arguments-or-stdin/script.sh -------------------------------------------------------------------------------- /content/blog/personal-docs-on-the-find-command/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/personal-docs-on-the-find-command/index.md -------------------------------------------------------------------------------- /content/blog/playing-with-background-images/img/federico-bottos-Z3NceSeZqgI-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/playing-with-background-images/img/federico-bottos-Z3NceSeZqgI-unsplash.jpg -------------------------------------------------------------------------------- /content/blog/playing-with-background-images/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/playing-with-background-images/index.css -------------------------------------------------------------------------------- /content/blog/playing-with-background-images/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/playing-with-background-images/index.md -------------------------------------------------------------------------------- /content/blog/playing-with-background-images/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/playing-with-background-images/index.ts -------------------------------------------------------------------------------- /content/blog/playing-with-java-optional/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/playing-with-java-optional/index.md -------------------------------------------------------------------------------- /content/blog/pretty-print-github-markdown/chrome-bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/pretty-print-github-markdown/chrome-bookmark.png -------------------------------------------------------------------------------- /content/blog/pretty-print-github-markdown/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/pretty-print-github-markdown/index.md -------------------------------------------------------------------------------- /content/blog/prevent-the-display-system-and-disk-from-sleeping-on-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/prevent-the-display-system-and-disk-from-sleeping-on-mac/index.md -------------------------------------------------------------------------------- /content/blog/preview-your-site-from-any-device-on-your-network-with-these-hugo-server-options/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/preview-your-site-from-any-device-on-your-network-with-these-hugo-server-options/index.md -------------------------------------------------------------------------------- /content/blog/quickbooks-windows-desktop-development-docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/quickbooks-windows-desktop-development-docs/index.md -------------------------------------------------------------------------------- /content/blog/quotes-on-endurance/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/quotes-on-endurance/index.md -------------------------------------------------------------------------------- /content/blog/quotes-on-resistance/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/quotes-on-resistance/index.md -------------------------------------------------------------------------------- /content/blog/ramsey-solutions-core-values/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/ramsey-solutions-core-values/index.md -------------------------------------------------------------------------------- /content/blog/read-an-sql-query-from-a-file-and-run-it-on-startup-of-a-spring-boot-app/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/read-an-sql-query-from-a-file-and-run-it-on-startup-of-a-spring-boot-app/index.md -------------------------------------------------------------------------------- /content/blog/rebuild-your-docker-compose-stack/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/rebuild-your-docker-compose-stack/index.md -------------------------------------------------------------------------------- /content/blog/recursively-edit-files-in-place-using-nodejs/demo/dir-1/dir-2/dir-3/file-3.txt: -------------------------------------------------------------------------------- 1 | AFTER 2 | -------------------------------------------------------------------------------- /content/blog/recursively-edit-files-in-place-using-nodejs/demo/dir-1/dir-2/file-2.txt: -------------------------------------------------------------------------------- 1 | AFTER 2 | -------------------------------------------------------------------------------- /content/blog/recursively-edit-files-in-place-using-nodejs/demo/dir-1/file-1.txt: -------------------------------------------------------------------------------- 1 | AFTER 2 | -------------------------------------------------------------------------------- /content/blog/recursively-edit-files-in-place-using-nodejs/demo/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/recursively-edit-files-in-place-using-nodejs/demo/script.js -------------------------------------------------------------------------------- /content/blog/recursively-edit-files-in-place-using-nodejs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/recursively-edit-files-in-place-using-nodejs/index.md -------------------------------------------------------------------------------- /content/blog/recursively-rename-file-extensions-with-a-bash-script/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/recursively-rename-file-extensions-with-a-bash-script/index.md -------------------------------------------------------------------------------- /content/blog/resources-for-learning-to-code/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/resources-for-learning-to-code/index.md -------------------------------------------------------------------------------- /content/blog/reuse-the-gradle-dependency-cache-with-docker/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/reuse-the-gradle-dependency-cache-with-docker/index.md -------------------------------------------------------------------------------- /content/blog/revive-your-old-computer-with-lubuntu-linux/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/revive-your-old-computer-with-lubuntu-linux/index.md -------------------------------------------------------------------------------- /content/blog/rosetta-stone-cli-write-the-same-option-parser-script-in-multiple-languages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/rosetta-stone-cli-write-the-same-option-parser-script-in-multiple-languages/index.md -------------------------------------------------------------------------------- /content/blog/routines-are-boring-right/before-and-after.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/routines-are-boring-right/before-and-after.jpg -------------------------------------------------------------------------------- /content/blog/routines-are-boring-right/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/routines-are-boring-right/index.md -------------------------------------------------------------------------------- /content/blog/run-hugo-server-with-custom-config-options/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/run-hugo-server-with-custom-config-options/index.md -------------------------------------------------------------------------------- /content/blog/sample-draft/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/sample-draft/index.md -------------------------------------------------------------------------------- /content/blog/scrabble-attitude/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/scrabble-attitude/index.md -------------------------------------------------------------------------------- /content/blog/script-to-add-a-page-level-variable-to-content-front-matter-in-hugo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/script-to-add-a-page-level-variable-to-content-front-matter-in-hugo/index.md -------------------------------------------------------------------------------- /content/blog/script-to-install-latest-hugo-release-on-linux-and-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/script-to-install-latest-hugo-release-on-linux-and-mac/index.md -------------------------------------------------------------------------------- /content/blog/search-all-database-table-columns/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/search-all-database-table-columns/index.md -------------------------------------------------------------------------------- /content/blog/selfies-in-the-road/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/selfies-in-the-road/index.md -------------------------------------------------------------------------------- /content/blog/set-environment-variables-in-your-bash-shell-from-a-env-file-version-2/.env: -------------------------------------------------------------------------------- 1 | # Some comment 2 | FULL_NAME="First Middle Last" 3 | FOO=bar 4 | -------------------------------------------------------------------------------- /content/blog/set-environment-variables-in-your-bash-shell-from-a-env-file-version-2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/set-environment-variables-in-your-bash-shell-from-a-env-file-version-2/index.md -------------------------------------------------------------------------------- /content/blog/set-environment-variables-in-your-bash-shell-from-a-env-file-version-2/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/set-environment-variables-in-your-bash-shell-from-a-env-file-version-2/setenv.sh -------------------------------------------------------------------------------- /content/blog/set-environment-variables-in-your-bash-shell-from-a-env-file/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/set-environment-variables-in-your-bash-shell-from-a-env-file/.env -------------------------------------------------------------------------------- /content/blog/set-environment-variables-in-your-bash-shell-from-a-env-file/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/set-environment-variables-in-your-bash-shell-from-a-env-file/index.md -------------------------------------------------------------------------------- /content/blog/set-environment-variables-in-your-bash-shell-from-a-env-file/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/set-environment-variables-in-your-bash-shell-from-a-env-file/setenv.sh -------------------------------------------------------------------------------- /content/blog/setup-and-run-sonarqube-on-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/setup-and-run-sonarqube-on-mac/index.md -------------------------------------------------------------------------------- /content/blog/shell-config-file-on-mac/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/shell-config-file-on-mac/index.md -------------------------------------------------------------------------------- /content/blog/show-and-hide-lines-of-text-via-css-line-clamping/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/show-and-hide-lines-of-text-via-css-line-clamping/index.css -------------------------------------------------------------------------------- /content/blog/show-and-hide-lines-of-text-via-css-line-clamping/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/show-and-hide-lines-of-text-via-css-line-clamping/index.md -------------------------------------------------------------------------------- /content/blog/show-and-hide-lines-of-text-via-css-line-clamping/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/show-and-hide-lines-of-text-via-css-line-clamping/index.ts -------------------------------------------------------------------------------- /content/blog/show-hidden-files-in-mac-finder-by-default/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/show-hidden-files-in-mac-finder-by-default/index.md -------------------------------------------------------------------------------- /content/blog/simon-sinek-on-performance-vs-trust/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/simon-sinek-on-performance-vs-trust/index.md -------------------------------------------------------------------------------- /content/blog/simple-pleasures/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/simple-pleasures/index.md -------------------------------------------------------------------------------- /content/blog/site-redesign-every-kilobyte-counts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/site-redesign-every-kilobyte-counts/index.md -------------------------------------------------------------------------------- /content/blog/snippets-from-the-book-clean-code/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/snippets-from-the-book-clean-code/index.md -------------------------------------------------------------------------------- /content/blog/someone-can-explain-the-theory-of-bike-riding-badly-yet-still-ride-a-bike-well/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/someone-can-explain-the-theory-of-bike-riding-badly-yet-still-ride-a-bike-well/index.md -------------------------------------------------------------------------------- /content/blog/speed-up-a-fedora-linux-vm-on-virtualbox/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/speed-up-a-fedora-linux-vm-on-virtualbox/index.md -------------------------------------------------------------------------------- /content/blog/sql-query-pagination-with-spring-boot-and-jdbctemplate/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/sql-query-pagination-with-spring-boot-and-jdbctemplate/index.md -------------------------------------------------------------------------------- /content/blog/strawberry-ice-cream-recipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/strawberry-ice-cream-recipe/index.md -------------------------------------------------------------------------------- /content/blog/style-a-markdown-table-with-bootstrap-classes-in-hugo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/style-a-markdown-table-with-bootstrap-classes-in-hugo/index.md -------------------------------------------------------------------------------- /content/blog/surprising-search-results-unintentionally-getting-on-the-1st-page-of-google/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/surprising-search-results-unintentionally-getting-on-the-1st-page-of-google/index.md -------------------------------------------------------------------------------- /content/blog/sweet-heat/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/sweet-heat/index.md -------------------------------------------------------------------------------- /content/blog/syntax-highlighting-in-hugo-with-chroma/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/syntax-highlighting-in-hugo-with-chroma/index.md -------------------------------------------------------------------------------- /content/blog/the-documentation-prerequisite-problem/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/the-documentation-prerequisite-problem/index.md -------------------------------------------------------------------------------- /content/blog/the-foyer-phone-method/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/the-foyer-phone-method/index.md -------------------------------------------------------------------------------- /content/blog/the-microsoft-console-colortool/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/the-microsoft-console-colortool/index.md -------------------------------------------------------------------------------- /content/blog/the-mystery-of-the-expired-jwt/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/the-mystery-of-the-expired-jwt/index.md -------------------------------------------------------------------------------- /content/blog/the-os-stat-function-in-hugo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/the-os-stat-function-in-hugo/index.md -------------------------------------------------------------------------------- /content/blog/there-is-a-richness-and-complexity-that-is-completely-inexhaustible-right-at-hand/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/there-is-a-richness-and-complexity-that-is-completely-inexhaustible-right-at-hand/index.md -------------------------------------------------------------------------------- /content/blog/things-i-like/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/things-i-like/index.md -------------------------------------------------------------------------------- /content/blog/those-people-who-answer-your-question-as-a-gift/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/those-people-who-answer-your-question-as-a-gift/index.md -------------------------------------------------------------------------------- /content/blog/to-take-a-trip-or-to-increase-the-baseline-qality-of-your-life/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/to-take-a-trip-or-to-increase-the-baseline-qality-of-your-life/index.md -------------------------------------------------------------------------------- /content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-201.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-201.jpg -------------------------------------------------------------------------------- /content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-215.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-215.jpg -------------------------------------------------------------------------------- /content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-224.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-224.jpg -------------------------------------------------------------------------------- /content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-227.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-227.jpg -------------------------------------------------------------------------------- /content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-239.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-239.jpg -------------------------------------------------------------------------------- /content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-248.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-248.jpg -------------------------------------------------------------------------------- /content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-254.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-254.jpg -------------------------------------------------------------------------------- /content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-259.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-259.jpg -------------------------------------------------------------------------------- /content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-261.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-261.jpg -------------------------------------------------------------------------------- /content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-264.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-264.jpg -------------------------------------------------------------------------------- /content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-274.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-274.jpg -------------------------------------------------------------------------------- /content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-276.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-276.jpg -------------------------------------------------------------------------------- /content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-280.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-280.jpg -------------------------------------------------------------------------------- /content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-282.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-282.jpg -------------------------------------------------------------------------------- /content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-283.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-283.jpg -------------------------------------------------------------------------------- /content/blog/townes-6-ish-months-photos/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/townes-6-ish-months-photos/index.md -------------------------------------------------------------------------------- /content/blog/unable-to-access-github-on-tp-link-deco-mesh-wifi/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/unable-to-access-github-on-tp-link-deco-mesh-wifi/index.md -------------------------------------------------------------------------------- /content/blog/use-a-centos-docker-image-to-build-and-deploy-a-hugo-modules-site-to-gitlab-pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/use-a-centos-docker-image-to-build-and-deploy-a-hugo-modules-site-to-gitlab-pages/index.md -------------------------------------------------------------------------------- /content/blog/use-extra-properties-to-consolidate-dependency-versions-in-your-build-gradle-file/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/use-extra-properties-to-consolidate-dependency-versions-in-your-build-gradle-file/index.md -------------------------------------------------------------------------------- /content/blog/use-grep-to-recursively-search-for-text-for-a-given-file-extension/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/use-grep-to-recursively-search-for-text-for-a-given-file-extension/index.md -------------------------------------------------------------------------------- /content/blog/use-hugo-templating-in-your-external-css/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/use-hugo-templating-in-your-external-css/index.md -------------------------------------------------------------------------------- /content/blog/use-snap-to-install-the-hugo-edge-version-on-fedora-and-ubuntu/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/use-snap-to-install-the-hugo-edge-version-on-fedora-and-ubuntu/index.md -------------------------------------------------------------------------------- /content/blog/use-vscode-as-your-default-text-editor-for-git/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/use-vscode-as-your-default-text-editor-for-git/index.md -------------------------------------------------------------------------------- /content/blog/wait-for-an-element-to-be-enabled-in-nightwatchjs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/wait-for-an-element-to-be-enabled-in-nightwatchjs/index.md -------------------------------------------------------------------------------- /content/blog/wait-for-element-text-to-equal-a-specific-value-in-nightwatchjs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/wait-for-element-text-to-equal-a-specific-value-in-nightwatchjs/index.md -------------------------------------------------------------------------------- /content/blog/well-done-westworld/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/well-done-westworld/index.md -------------------------------------------------------------------------------- /content/blog/what-joe-mooring-can-teach-us-about-top-notch-forum-support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/what-joe-mooring-can-teach-us-about-top-notch-forum-support/index.md -------------------------------------------------------------------------------- /content/blog/why-is-my-gradle-build-in-docker-so-slow/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/why-is-my-gradle-build-in-docker-so-slow/index.md -------------------------------------------------------------------------------- /content/blog/windows-environment-variables-in-command-prompt/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/windows-environment-variables-in-command-prompt/index.md -------------------------------------------------------------------------------- /content/blog/write-your-own-short-and-long-option-parser-in-bash/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/write-your-own-short-and-long-option-parser-in-bash/index.md -------------------------------------------------------------------------------- /content/blog/you-cannot-selectively-numb-emotions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/blog/you-cannot-selectively-numb-emotions/index.md -------------------------------------------------------------------------------- /content/built-with/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/built-with/index.md -------------------------------------------------------------------------------- /content/contact/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/contact/index.md -------------------------------------------------------------------------------- /content/disclaimer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/disclaimer/index.md -------------------------------------------------------------------------------- /content/family/family.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/family/family.jpg -------------------------------------------------------------------------------- /content/family/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/family/index.md -------------------------------------------------------------------------------- /content/headshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/headshot.jpg -------------------------------------------------------------------------------- /content/license/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/license/index.md -------------------------------------------------------------------------------- /content/links/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/links/index.md -------------------------------------------------------------------------------- /content/photo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/photo/index.md -------------------------------------------------------------------------------- /content/photo/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/photo/photo.jpg -------------------------------------------------------------------------------- /content/projects/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/projects/index.md -------------------------------------------------------------------------------- /content/search/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/content/search/index.html -------------------------------------------------------------------------------- /data/sample.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/data/sample.toml -------------------------------------------------------------------------------- /hugo_stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/hugo_stats.json -------------------------------------------------------------------------------- /layouts/shortcodes/file-var.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/layouts/shortcodes/file-var.html -------------------------------------------------------------------------------- /layouts/shortcodes/loremGen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/layouts/shortcodes/loremGen.html -------------------------------------------------------------------------------- /layouts/shortcodes/os-stat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/layouts/shortcodes/os-stat.html -------------------------------------------------------------------------------- /layouts/shortcodes/tomlTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/layouts/shortcodes/tomlTable.html -------------------------------------------------------------------------------- /local_git_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/local_git_config.sh -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/postcss.config.js -------------------------------------------------------------------------------- /resources/_gen/assets/css/bundled.css_5d1ae7b26729580b7c0ef1c83fb083f3.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/assets/css/bundled.css_5d1ae7b26729580b7c0ef1c83fb083f3.content -------------------------------------------------------------------------------- /resources/_gen/assets/css/bundled.css_5d1ae7b26729580b7c0ef1c83fb083f3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/assets/css/bundled.css_5d1ae7b26729580b7c0ef1c83fb083f3.json -------------------------------------------------------------------------------- /resources/_gen/assets/css/bundled.css_e03652540c5bbc68d359e86d9fc1015a.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/assets/css/bundled.css_e03652540c5bbc68d359e86d9fc1015a.content -------------------------------------------------------------------------------- /resources/_gen/assets/css/bundled.css_e03652540c5bbc68d359e86d9fc1015a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/assets/css/bundled.css_e03652540c5bbc68d359e86d9fc1015a.json -------------------------------------------------------------------------------- /resources/_gen/images/an-unchronological-photo-album/img/beach_3_hu12673002941914697512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/an-unchronological-photo-album/img/beach_3_hu12673002941914697512.jpg -------------------------------------------------------------------------------- /resources/_gen/images/an-unchronological-photo-album/img/chicken_hu14133901298592067162.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/an-unchronological-photo-album/img/chicken_hu14133901298592067162.jpg -------------------------------------------------------------------------------- /resources/_gen/images/an-unchronological-photo-album/img/sleepy_1_hu4364510671264565657.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/an-unchronological-photo-album/img/sleepy_1_hu4364510671264565657.jpg -------------------------------------------------------------------------------- /resources/_gen/images/anna-mcclain-1st-birthday/img/bricks_hu825242905847551331.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/anna-mcclain-1st-birthday/img/bricks_hu825242905847551331.jpeg -------------------------------------------------------------------------------- /resources/_gen/images/anna-mcclain-1st-birthday/img/brother_hu11115128987505570869.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/anna-mcclain-1st-birthday/img/brother_hu11115128987505570869.jpeg -------------------------------------------------------------------------------- /resources/_gen/images/anna-mcclain-1st-birthday/img/cake_hu11914256433205352060.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/anna-mcclain-1st-birthday/img/cake_hu11914256433205352060.jpeg -------------------------------------------------------------------------------- /resources/_gen/images/anna-mcclain-1st-birthday/img/cousin_hu3508372049864311453.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/anna-mcclain-1st-birthday/img/cousin_hu3508372049864311453.jpeg -------------------------------------------------------------------------------- /resources/_gen/images/anna-mcclain-1st-birthday/img/mom_hu1682110851967459226.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/anna-mcclain-1st-birthday/img/mom_hu1682110851967459226.jpeg -------------------------------------------------------------------------------- /resources/_gen/images/anna-mcclain-1st-birthday/img/tractor_hu17887201849489074839.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/anna-mcclain-1st-birthday/img/tractor_hu17887201849489074839.jpeg -------------------------------------------------------------------------------- /resources/_gen/images/anna-mcclain-1st-birthday/img/tricycle_hu10052788127818269050.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/anna-mcclain-1st-birthday/img/tricycle_hu10052788127818269050.jpeg -------------------------------------------------------------------------------- /resources/_gen/images/beef-jerky-recipe/img/jerky-1_hu16190423642614131095.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/beef-jerky-recipe/img/jerky-1_hu16190423642614131095.jpg -------------------------------------------------------------------------------- /resources/_gen/images/beef-jerky-recipe/img/jerky-2_hu12202226692382008431.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/beef-jerky-recipe/img/jerky-2_hu12202226692382008431.jpg -------------------------------------------------------------------------------- /resources/_gen/images/beef-jerky-recipe/img/jerky-3_hu4349347239447683865.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/beef-jerky-recipe/img/jerky-3_hu4349347239447683865.jpg -------------------------------------------------------------------------------- /resources/_gen/images/beef-jerky-recipe/img/jerky-4_hu16935284278265665985.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/beef-jerky-recipe/img/jerky-4_hu16935284278265665985.jpg -------------------------------------------------------------------------------- /resources/_gen/images/beef-jerky-recipe/img/jerky-caribbean-jerk_hu7476006373265331870.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/beef-jerky-recipe/img/jerky-caribbean-jerk_hu7476006373265331870.jpg -------------------------------------------------------------------------------- /resources/_gen/images/beef-jerky-recipe/img/jerky-sweet-chili_hu12505988260116670665.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/beef-jerky-recipe/img/jerky-sweet-chili_hu12505988260116670665.jpg -------------------------------------------------------------------------------- /resources/_gen/images/beef-jerky-recipe/img/walmart-beef-eye-of-round_hu5755190469295358565.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/beef-jerky-recipe/img/walmart-beef-eye-of-round_hu5755190469295358565.jpg -------------------------------------------------------------------------------- /resources/_gen/images/beef-jerky-recipe/img/walmart-beef-milanesa_hu8740766888860633974.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/beef-jerky-recipe/img/walmart-beef-milanesa_hu8740766888860633974.jpg -------------------------------------------------------------------------------- /resources/_gen/images/beef-jerky-recipe/img/walmart-beef-sizzle-steak_hu1471663446458556979.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/beef-jerky-recipe/img/walmart-beef-sizzle-steak_hu1471663446458556979.jpg -------------------------------------------------------------------------------- /resources/_gen/images/beef-jerky-recipe/img/walmart-sweet-chili-wing-seasoning-mix_hu9082510355955986471.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/beef-jerky-recipe/img/walmart-sweet-chili-wing-seasoning-mix_hu9082510355955986471.png -------------------------------------------------------------------------------- /resources/_gen/images/convert-heic-images-to-jpg-part-2-mac-automator/screenshot-1_hu17660813846970918619.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/convert-heic-images-to-jpg-part-2-mac-automator/screenshot-1_hu17660813846970918619.png -------------------------------------------------------------------------------- /resources/_gen/images/crazy-johnnies-chicken-and-sausage-gumbo-recipe/img/gumbo-1_hu4384878696865311409.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/crazy-johnnies-chicken-and-sausage-gumbo-recipe/img/gumbo-1_hu4384878696865311409.jpg -------------------------------------------------------------------------------- /resources/_gen/images/create-react-app-show-current-git-branch-and-commit-hash-from-any-os/screenshot_hu618910845772841058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/create-react-app-show-current-git-branch-and-commit-hash-from-any-os/screenshot_hu618910845772841058.png -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/dawid-planeta-face-of-fear_hu9458338173710498651.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/dawid-planeta-face-of-fear_hu9458338173710498651.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/dawid-planeta-the-great-learning_hu13138054749767941341.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/dawid-planeta-the-great-learning_hu13138054749767941341.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/simon-stalenhag-bio_thehost_hu5112638575671657291.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/simon-stalenhag-bio_thehost_hu5112638575671657291.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/simon-stalenhag-by_crossing_hu596741631048876738.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/simon-stalenhag-by_crossing_hu596741631048876738.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/simon-stalenhag-by_localservers2_hu2444819085477647438.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/simon-stalenhag-by_localservers2_hu2444819085477647438.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/simon-stalenhag-by_localservers_hu2249983997306848473.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/simon-stalenhag-by_localservers_hu2249983997306848473.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/simon-stalenhag-by_procession_hu5870451039926750513.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/simon-stalenhag-by_procession_hu5870451039926750513.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/simon-stalenhag-by_upload2_hu6934659302649433938.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/simon-stalenhag-by_upload2_hu6934659302649433938.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/simon-stalenhag-by_warmachines4_hu14840469760128780888.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/simon-stalenhag-by_warmachines4_hu14840469760128780888.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/simon-stalenhag-by_wipers_hu12187665721371353546.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/simon-stalenhag-by_wipers_hu12187665721371353546.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/simon-stalenhag-l_ash_cr_01_hu10947001815171040472.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/simon-stalenhag-l_ash_cr_01_hu10947001815171040472.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/simon-stalenhag-l_fb_09_hu6002183452730696152.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/simon-stalenhag-l_fb_09_hu6002183452730696152.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/simon-stalenhag-thelan_hu7732757907233283872.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/simon-stalenhag-thelan_hu7732757907233283872.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/zdislav-beksinski-untitled-106_hu508344411528774811.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/zdislav-beksinski-untitled-106_hu508344411528774811.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/zdislav-beksinski-untitled-14_hu7683037552805298629.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/zdislav-beksinski-untitled-14_hu7683037552805298629.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/zdislav-beksinski-untitled-158_hu7153378329034015843.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/zdislav-beksinski-untitled-158_hu7153378329034015843.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/zdislav-beksinski-untitled-168_hu10068962535566187967.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/zdislav-beksinski-untitled-168_hu10068962535566187967.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/zdislav-beksinski-untitled-17_hu8101247338608398882.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/zdislav-beksinski-untitled-17_hu8101247338608398882.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/zdislav-beksinski-untitled-219_hu8625253953253157979.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/zdislav-beksinski-untitled-219_hu8625253953253157979.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/zdislav-beksinski-untitled-264_hu15376965607293924026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/zdislav-beksinski-untitled-264_hu15376965607293924026.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/zdislav-beksinski-untitled-49_hu7785661209895240625.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/zdislav-beksinski-untitled-49_hu7785661209895240625.jpg -------------------------------------------------------------------------------- /resources/_gen/images/eerie-art/zdislav-beksinski-untitled-50_hu12405184654148619388.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/eerie-art/zdislav-beksinski-untitled-50_hu12405184654148619388.jpg -------------------------------------------------------------------------------- /resources/_gen/images/end-to-end-testing-rules/test-pyramid_hu13220415479467282220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/end-to-end-testing-rules/test-pyramid_hu13220415479467282220.png -------------------------------------------------------------------------------- /resources/_gen/images/family/family_hu8376358628323943883.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/family/family_hu8376358628323943883.jpg -------------------------------------------------------------------------------- /resources/_gen/images/headshot_hu11190685744697928293.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/headshot_hu11190685744697928293.jpg -------------------------------------------------------------------------------- /resources/_gen/images/i-believe-in-you-by-don-williams/img/catfishing_hu17807107761218364721.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/i-believe-in-you-by-don-williams/img/catfishing_hu17807107761218364721.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/DSC_0538_hu3471479262048294885.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/DSC_0538_hu3471479262048294885.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/DSC_0549_hu9429154969700294220.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/DSC_0549_hu9429154969700294220.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/DSC_0568_hu448165374884778944.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/DSC_0568_hu448165374884778944.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/DSC_0601_hu5122018719664149122.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/DSC_0601_hu5122018719664149122.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/DSC_0615_hu4973995261011229253.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/DSC_0615_hu4973995261011229253.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/DSC_0636_hu11489864970868887427.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/DSC_0636_hu11489864970868887427.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/DSC_0652_hu15081995201492954500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/DSC_0652_hu15081995201492954500.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/DSC_0675_hu9624050321162607628.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/DSC_0675_hu9624050321162607628.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/DSC_0723_hu5021429123410174519.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/DSC_0723_hu5021429123410174519.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/DSC_0812_hu18055909818628942807.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/DSC_0812_hu18055909818628942807.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/DSC_0818_hu14462462610177322914.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/DSC_0818_hu14462462610177322914.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/DSC_0823_hu12693359875057683179.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/DSC_0823_hu12693359875057683179.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/IMG_5532_hu2977884218953109953.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/IMG_5532_hu2977884218953109953.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/IMG_5537_hu4714460926844719849.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/IMG_5537_hu4714460926844719849.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/IMG_5545_hu16590213016475876209.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/IMG_5545_hu16590213016475876209.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/IMG_5570_hu16050030171790236312.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/IMG_5570_hu16050030171790236312.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/IMG_5571-PANO_hu14827693204172597073.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/IMG_5571-PANO_hu14827693204172597073.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/IMG_5577_hu11541605887599518180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/IMG_5577_hu11541605887599518180.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/IMG_5582_hu12207461207646872118.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/IMG_5582_hu12207461207646872118.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/IMG_5665_hu9511931302849046095.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/IMG_5665_hu9511931302849046095.jpg -------------------------------------------------------------------------------- /resources/_gen/images/maui-trip/img/IMG_5671_hu10584589230281050894.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/maui-trip/img/IMG_5671_hu10584589230281050894.jpg -------------------------------------------------------------------------------- /resources/_gen/images/mawmaw-maurice-four-layer-dessert-recipe/img/four-layer-dessert-side_hu16143416688084344334.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/mawmaw-maurice-four-layer-dessert-recipe/img/four-layer-dessert-side_hu16143416688084344334.jpg -------------------------------------------------------------------------------- /resources/_gen/images/mawmaw-maurice-four-layer-dessert-recipe/img/four-layer-dessert-top_hu1278724035998818463.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/mawmaw-maurice-four-layer-dessert-recipe/img/four-layer-dessert-top_hu1278724035998818463.jpg -------------------------------------------------------------------------------- /resources/_gen/images/photo/photo_hu10183960507910235608.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/photo/photo_hu10183960507910235608.jpg -------------------------------------------------------------------------------- /resources/_gen/images/pretty-print-github-markdown/chrome-bookmark_hu12606516808970227673.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/pretty-print-github-markdown/chrome-bookmark_hu12606516808970227673.png -------------------------------------------------------------------------------- /resources/_gen/images/routines-are-boring-right/before-and-after_hu14143272382914136018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/routines-are-boring-right/before-and-after_hu14143272382914136018.jpg -------------------------------------------------------------------------------- /resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-201_hu2029880516555523423.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-201_hu2029880516555523423.jpg -------------------------------------------------------------------------------- /resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-215_hu14375175730176672654.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-215_hu14375175730176672654.jpg -------------------------------------------------------------------------------- /resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-224_hu370341945928937939.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-224_hu370341945928937939.jpg -------------------------------------------------------------------------------- /resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-227_hu1603273221304723881.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-227_hu1603273221304723881.jpg -------------------------------------------------------------------------------- /resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-239_hu12601552724117337736.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-239_hu12601552724117337736.jpg -------------------------------------------------------------------------------- /resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-248_hu17330282832581756408.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-248_hu17330282832581756408.jpg -------------------------------------------------------------------------------- /resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-254_hu16373477688167450005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-254_hu16373477688167450005.jpg -------------------------------------------------------------------------------- /resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-259_hu7996524219202241146.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-259_hu7996524219202241146.jpg -------------------------------------------------------------------------------- /resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-261_hu9876959335369108915.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-261_hu9876959335369108915.jpg -------------------------------------------------------------------------------- /resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-264_hu11472162227454367951.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-264_hu11472162227454367951.jpg -------------------------------------------------------------------------------- /resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-274_hu4939108901177885029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-274_hu4939108901177885029.jpg -------------------------------------------------------------------------------- /resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-276_hu11354000684528779047.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-276_hu11354000684528779047.jpg -------------------------------------------------------------------------------- /resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-280_hu4293220163709217955.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-280_hu4293220163709217955.jpg -------------------------------------------------------------------------------- /resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-282_hu13372115121112210999.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-282_hu13372115121112210999.jpg -------------------------------------------------------------------------------- /resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-283_hu14754000731185022118.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/resources/_gen/images/townes-6-ish-months-photos/img/TownesBetzMilestone-AshleyLandryPhotography-283_hu14754000731185022118.jpg -------------------------------------------------------------------------------- /static/BingSiteAuth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/static/BingSiteAuth.xml -------------------------------------------------------------------------------- /static/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-8477004626877733, DIRECT, f08c47fec0942fa0 2 | -------------------------------------------------------------------------------- /static/google392f4b9db0259ce1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/static/google392f4b9db0259ce1.html -------------------------------------------------------------------------------- /static/img/green-team.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/static/img/green-team.svg -------------------------------------------------------------------------------- /static/img/nasa_earth_1280x1280.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/static/img/nasa_earth_1280x1280.jpeg -------------------------------------------------------------------------------- /static/resume/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/static/resume/index.html -------------------------------------------------------------------------------- /static/resume/resume.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/static/resume/resume.html -------------------------------------------------------------------------------- /static/resume/resume.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/static/resume/resume.json -------------------------------------------------------------------------------- /static/resume/resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/static/resume/resume.pdf -------------------------------------------------------------------------------- /task_hugo_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/task_hugo_install.sh -------------------------------------------------------------------------------- /task_resume_get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/task_resume_get.sh -------------------------------------------------------------------------------- /task_resume_sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/task_resume_sync.sh -------------------------------------------------------------------------------- /task_site_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/task_site_build.sh -------------------------------------------------------------------------------- /task_site_serve.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | hugo server --disableFastRender 4 | -------------------------------------------------------------------------------- /task_various_add_front_matter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/task_various_add_front_matter.sh -------------------------------------------------------------------------------- /task_various_refactor_pages_to_page_bundles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/task_various_refactor_pages_to_page_bundles.sh -------------------------------------------------------------------------------- /themes/feather/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/archetypes/default.md -------------------------------------------------------------------------------- /themes/feather/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/assets/css/bootstrap.css -------------------------------------------------------------------------------- /themes/feather/assets/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/assets/css/custom.css -------------------------------------------------------------------------------- /themes/feather/assets/js/debug-modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/assets/js/debug-modal.ts -------------------------------------------------------------------------------- /themes/feather/assets/js/search/fuse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/assets/js/search/fuse.d.ts -------------------------------------------------------------------------------- /themes/feather/assets/js/search/fuse.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/assets/js/search/fuse.mjs -------------------------------------------------------------------------------- /themes/feather/assets/js/search/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/assets/js/search/search.ts -------------------------------------------------------------------------------- /themes/feather/assets/js/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/assets/js/theme.ts -------------------------------------------------------------------------------- /themes/feather/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/404.html -------------------------------------------------------------------------------- /themes/feather/layouts/_default/_markup/render-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/_default/_markup/render-heading.html -------------------------------------------------------------------------------- /themes/feather/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/_default/baseof.html -------------------------------------------------------------------------------- /themes/feather/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/_default/single.html -------------------------------------------------------------------------------- /themes/feather/layouts/archive/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/archive/list.html -------------------------------------------------------------------------------- /themes/feather/layouts/archive/list.json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/archive/list.json.json -------------------------------------------------------------------------------- /themes/feather/layouts/blog/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/blog/list.html -------------------------------------------------------------------------------- /themes/feather/layouts/blog/list.json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/blog/list.json.json -------------------------------------------------------------------------------- /themes/feather/layouts/blog/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/blog/single.html -------------------------------------------------------------------------------- /themes/feather/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/index.html -------------------------------------------------------------------------------- /themes/feather/layouts/links/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/links/single.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/datestamp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/datestamp.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/debug-items/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/debug-items/file.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/debug-items/git-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/debug-items/git-info.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/debug-items/hugo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/debug-items/hugo.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/debug-items/os-stat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/debug-items/os-stat.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/debug-items/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/debug-items/page.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/debug-items/site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/debug-items/site.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/debug-modal-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/debug-modal-button.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/debug-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/debug-modal.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/debug-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/debug-table.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/archive.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/box.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/box.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/calendar.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/check.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/code.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/coffee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/coffee.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/crosshair.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/crosshair.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/custom-x-circle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/custom-x-circle.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/edit.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/eye.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/eye.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/file-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/file-text.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/file.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/folder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/folder.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/heart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/heart.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/help-circle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/help-circle.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/home.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/info.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/link.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/list.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/mail.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/message-circle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/message-circle.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/message-square.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/message-square.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/search.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/settings.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/smile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/smile.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/tool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/tool.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/umbrella.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/umbrella.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/x-circle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/x-circle.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/feather-icons/x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/feather-icons/x.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/footer-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/footer-nav.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/footer.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/head.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/header.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/internal-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/internal-css.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/internal-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/internal-js.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/page-title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/page-title.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/reply-by-email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/reply-by-email.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/script-goatcounter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/script-goatcounter.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/theme-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/theme-js.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/theme-toggle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/theme-toggle.html -------------------------------------------------------------------------------- /themes/feather/layouts/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/partials/toc.html -------------------------------------------------------------------------------- /themes/feather/layouts/projects/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/projects/single.html -------------------------------------------------------------------------------- /themes/feather/layouts/search/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/search/single.html -------------------------------------------------------------------------------- /themes/feather/layouts/shortcodes/blockquote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/shortcodes/blockquote.html -------------------------------------------------------------------------------- /themes/feather/layouts/shortcodes/current-date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/shortcodes/current-date.html -------------------------------------------------------------------------------- /themes/feather/layouts/shortcodes/figure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/shortcodes/figure.html -------------------------------------------------------------------------------- /themes/feather/layouts/shortcodes/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/shortcodes/gallery.html -------------------------------------------------------------------------------- /themes/feather/layouts/shortcodes/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/layouts/shortcodes/table.html -------------------------------------------------------------------------------- /themes/feather/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/static/apple-touch-icon.png -------------------------------------------------------------------------------- /themes/feather/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/static/favicon.ico -------------------------------------------------------------------------------- /themes/feather/static/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwbetz-gh/zwbetz/HEAD/themes/feather/static/favicon.svg --------------------------------------------------------------------------------