From 3e8887a7a59287bcb5d88c39c4bcb7e2f69f5b9f Mon Sep 17 00:00:00 2001 From: franklin <2730246+devsecfranklin@users.noreply.github.com> Date: Mon, 13 May 2024 15:38:37 -0600 Subject: [PATCH 01/10] update book generation tool --- .gitignore | 1 + ...37-Noms-The-Hacker-Cookbook.code-workspace | 8 +++ admin/bin/generate_book.sh | 59 +++++++++++-------- admin/cookbook/Makefile.am | 2 +- admin/cookbook/frontmatter/frontmatter.tex | 4 ++ admin/cookbook/frontmatter/header.tex | 6 ++ 6 files changed, 56 insertions(+), 24 deletions(-) create mode 100644 admin/1337-Noms-The-Hacker-Cookbook.code-workspace mode change 100644 => 100755 admin/bin/generate_book.sh create mode 100644 admin/cookbook/frontmatter/frontmatter.tex create mode 100644 admin/cookbook/frontmatter/header.tex diff --git a/.gitignore b/.gitignore index e96da72..10d8965 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ *.swp *.pdf _build/ +admin/logs/ AUTHORS COPYING diff --git a/admin/1337-Noms-The-Hacker-Cookbook.code-workspace b/admin/1337-Noms-The-Hacker-Cookbook.code-workspace new file mode 100644 index 0000000..bab1b7f --- /dev/null +++ b/admin/1337-Noms-The-Hacker-Cookbook.code-workspace @@ -0,0 +1,8 @@ +{ + "folders": [ + { + "path": ".." + } + ], + "settings": {} +} \ No newline at end of file diff --git a/admin/bin/generate_book.sh b/admin/bin/generate_book.sh old mode 100644 new mode 100755 index 9b70142..0b37133 --- a/admin/bin/generate_book.sh +++ b/admin/bin/generate_book.sh @@ -4,7 +4,7 @@ # # SPDX-License-Identifier: GPL-3.0-or-later -Set -euo pipefail +set -euo pipefail #IFS=$'\n\t' #Black 0;30 Dark Gray 1;30 @@ -28,35 +28,48 @@ NC='\033[0m' # No Color # --- Some config Variables ---------------------------------------- CATEGORIES=("APPETIZERS" "BREAKFAST" "COOKWARE" "DESSERTS" "DRINKS" "ENTREES" "SAUCES" "SIDES" "SNACKS") MY_DATE=$(date '+%Y-%m-%d-%H') -RAW_OUTPUT="cookbook/hacker_cookbook.tex" +RAW_OUTPUT="generate_cookbook_${MY_DATE}.txt" # log file name +TEX_OUTPUT="cookbook/hacker_cookbook.tex" +function path_setup() { + # path madness + CURRENT_DIR="${PWD}" + #echo -e "${LGREEN}Current dir: ${LCYAN}${CURRENT_DIR}${NC}" | tee -a "${RAW_OUTPUT}" + PROG_DIR="$0" -function header() { - - cat < ${RAW_OUTPUT} -% !TeX encoding = UTF-8 -% !TeX root = hacker_cookbook.tex -% !TeX TXS-program:compile = txs:///pdflatex/[--shell-escape] + SCRIPT_DIR=$(echo $PROG_DIR | sed 's|\(.*\)/.*|\1|') + #echo -e "${LGREEN}Found script dir: ${LCYAN}${SCRIPT_DIR}${NC}" | tee -a "${RAW_OUTPUT}" + SUB_DIR=$(echo $SCRIPT_DIR | rev | cut -d'/' -f2- | rev) + #echo "Sub dir: $SUB_DIR" + if [ "$SUB_DIR" != "bin" ]; then + LOGGING_DIR="$CURRENT_DIR/$SUB_DIR/logs" + DATA_DIR="$CURRENT_DIR/$SUB_DIR/data" + else + LOGGING_DIR="$CURRENT_DIR/logs" + DATA_DIR="$CURRENT_DIR/data" + fi -\include{preamble} -\begin{document} - -EOF + if [ -d "${LOGGING_DIR}" ]; then + RAW_OUTPUT="${LOGGING_DIR}/${RAW_OUTPUT}" + echo -e "\n${LCYAN}------------------ Starting Backup Tool ------------------${NC}" | tee -a "${RAW_OUTPUT}" + echo -e "${LGREEN}Found log dir: ${LCYAN}${LOGGING_DIR}${NC}" | tee -a "${RAW_OUTPUT}" + echo -e "${LGREEN}Log file path is: ${LCYAN}${RAW_OUTPUT}${NC}" | tee -a "${RAW_OUTPUT}" + echo -e "${LGREEN}LaTeX file path is: ${LCYAN}${TEX_OUTPUT}${NC}" | tee -a "${RAW_OUTPUT}" + else + echo -e "${LRED}Did not find log dir: ${LCYAN}${RAW_OUTPUT}${NC}" + LOGGING_DIR="." + RAW_OUTPUT="${LOGGING_DIR}/${RAW_OUTPUT}" + fi } -function frontmatter(){ - cat < ${RAW_OUTPUT} -% frontmatter: half title, title page, colophon (copyright page), epigraph, toc, preface, acknowledgements -\tableofcontents -\listoffigures -\listoftables - -EOF - +function frontmatter() { + cat ${CURRENT_DIR}/cookbook/frontmatter/header.tex \ + ${CURRENT_DIR}/cookbook/frontmatter/frontmatter.tex } - -function main() { +function main() { + path_setup + frontmatter } main "$@" diff --git a/admin/cookbook/Makefile.am b/admin/cookbook/Makefile.am index ff27156..e7bc0cc 100644 --- a/admin/cookbook/Makefile.am +++ b/admin/cookbook/Makefile.am @@ -9,7 +9,7 @@ clean: if [ -f "$$trash" ]; then rm -rf $$trash ; fi ; \ done -paper: +cookbook: latexmk -pdf -file-line-error -interaction=nonstopmode -synctex=1 -shell-escape hacker_cookbook bibtex hacker_cookbook latexmk -pdf -file-line-error -interaction=nonstopmode -synctex=1 -shell-escape hacker_cookbook diff --git a/admin/cookbook/frontmatter/frontmatter.tex b/admin/cookbook/frontmatter/frontmatter.tex new file mode 100644 index 0000000..71fcf6c --- /dev/null +++ b/admin/cookbook/frontmatter/frontmatter.tex @@ -0,0 +1,4 @@ +% frontmatter: half title, title page, colophon (copyright page), epigraph, toc, preface, acknowledgements +\tableofcontents +\listoffigures +\listoftables \ No newline at end of file diff --git a/admin/cookbook/frontmatter/header.tex b/admin/cookbook/frontmatter/header.tex new file mode 100644 index 0000000..8552d72 --- /dev/null +++ b/admin/cookbook/frontmatter/header.tex @@ -0,0 +1,6 @@ +% !TeX encoding = UTF-8 +% !TeX root = hacker_cookbook.tex +% !TeX TXS-program:compile = txs:///pdflatex/[--shell-escape] + +\include{preamble} +\begin{document} \ No newline at end of file From f7742e3425cb9f60ad796a49d57ce6d4895ffca3 Mon Sep 17 00:00:00 2001 From: franklin <2730246+devsecfranklin@users.noreply.github.com> Date: Mon, 13 May 2024 16:15:49 -0600 Subject: [PATCH 02/10] update book generation tool --- admin/bin/convert_rst_md.sh | 5 +- admin/bin/format_shell.sh | 14 +++ admin/bin/generate_book.sh | 23 +++- admin/bootstrap.sh | 137 ++++++++++----------- admin/configure.ac | 2 + admin/cookbook/backmatter/backmatter.tex | 4 + admin/cookbook/backmatter/end.tex | 3 + admin/cookbook/frontmatter/frontmatter.tex | 1 + admin/cookbook/hacker_cookbook.tex | 37 ++++++ admin/cookbook/mainmatter/mainmatter.tex | 1 + 10 files changed, 146 insertions(+), 81 deletions(-) create mode 100755 admin/bin/format_shell.sh create mode 100644 admin/cookbook/backmatter/backmatter.tex create mode 100644 admin/cookbook/backmatter/end.tex create mode 100644 admin/cookbook/mainmatter/mainmatter.tex diff --git a/admin/bin/convert_rst_md.sh b/admin/bin/convert_rst_md.sh index 9ddde90..33cddad 100755 --- a/admin/bin/convert_rst_md.sh +++ b/admin/bin/convert_rst_md.sh @@ -7,9 +7,8 @@ # v0.1 02/25/2022 Maintainer script FILES=*.rst -for f in $FILES -do +for f in $FILES; do filename="${f%.*}" echo "Converting $f to $filename.md" - `pandoc $f -f rst -t markdown -o $filename.md` + $(pandoc $f -f rst -t markdown -o $filename.md) done diff --git a/admin/bin/format_shell.sh b/admin/bin/format_shell.sh new file mode 100755 index 0000000..1e388fa --- /dev/null +++ b/admin/bin/format_shell.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash +# +# SPDX-FileCopyrightText: 2023 DE:AD:10:C5 +# +# SPDX-License-Identifier: GPL-3.0-or-later + +# v0.1 | 02/15/2024 | initial version | franklin + +set -euo pipefail +IFS=$'\n\t' + +shfmt -i 2 -l -w ../bootstrap.sh +shfmt -i 2 -l -w convert_rst_md.sh +shfmt -i 2 -l -w generate_book.sh diff --git a/admin/bin/generate_book.sh b/admin/bin/generate_book.sh index 0b37133..a10b7ef 100755 --- a/admin/bin/generate_book.sh +++ b/admin/bin/generate_book.sh @@ -58,18 +58,35 @@ function path_setup() { else echo -e "${LRED}Did not find log dir: ${LCYAN}${RAW_OUTPUT}${NC}" LOGGING_DIR="." - RAW_OUTPUT="${LOGGING_DIR}/${RAW_OUTPUT}" - fi + RAW_OUTPUT="${LOGGING_DIR}/${RAW_OUTPUT}" + fi } function frontmatter() { cat ${CURRENT_DIR}/cookbook/frontmatter/header.tex \ - ${CURRENT_DIR}/cookbook/frontmatter/frontmatter.tex + ${CURRENT_DIR}/cookbook/frontmatter/frontmatter.tex | tee -a "${TEX_OUTPUT}" +} + +function mainmatter() { + cat ${CURRENT_DIR}/cookbook/mainmatter/mainmatter.tex | tee -a "${TEX_OUTPUT}" + for i in ${CATEGORIES[@]}; do + THESE_FILES=$(ls ../${i}/*.md) + for j in $THESE_FILES; do + echo "\markdownInput{../${j}}" + done + done +} + +function backmatter() { + cat ${CURRENT_DIR}/cookbook/backmatter/backmatter.tex \ + ${CURRENT_DIR}/cookbook/backmatter/end.tex | tee -a "${TEX_OUTPUT}" } function main() { path_setup frontmatter + mainmatter + backmatter } main "$@" diff --git a/admin/bootstrap.sh b/admin/bootstrap.sh index e5f3f2d..8c5931b 100755 --- a/admin/bootstrap.sh +++ b/admin/bootstrap.sh @@ -56,7 +56,7 @@ function check_docker() { function detect_os() { # check for the /etc/os-release file if [ -f "/etc/os-release" ]; then - OS_RELEASE=`cat /etc/os-release | grep "^ID=" | cut -d"=" -f2` + OS_RELEASE=$(cat /etc/os-release | grep "^ID=" | cut -d"=" -f2) fi if [ -n "${OS_RELEASE}" ]; then @@ -64,30 +64,24 @@ function detect_os() { fi # Check uname (Linux, OpenBSD, Darwin) - MY_UNAME=`uname` + MY_UNAME=$(uname) if [ -n "${OS_RELEASE}" ]; then echo -e "${CYAN}Found uname: ${MY_UNAME}${NC}" fi - - if [ "${MY_UNAME}" == "OpenBSD" ] - then + if [ "${MY_UNAME}" == "OpenBSD" ]; then echo -e "${CYAN}Detected OpenBSD${NC}" MY_OS="openbsd" - elif [ "${MY_UNAME}" == "Darwin" ] - then + elif [ "${MY_UNAME}" == "Darwin" ]; then echo -e "${CYAN}Detected MacOS${NC}" MY_OS="mac" - elif [ -f "/etc/redhat-release" ] - then + elif [ -f "/etc/redhat-release" ]; then echo -e "${CYAN}Detected Red Hat/CentoOS/RHEL${NC}" MY_OS="rh" - elif [ "$(grep -Ei 'debian|buntu|mint' /etc/*release)" ] - then + elif [ "$(grep -Ei 'debian|buntu|mint' /etc/*release)" ]; then echo -e "${CYAN}Detected Debian/Ubuntu/Mint${NC}" MY_OS="deb" - elif grep -q Microsoft /proc/version - then + elif grep -q Microsoft /proc/version; then echo -e "${CYAN}Detected Windows pretending to be Linux${NC}" MY_OS="win" else @@ -98,18 +92,18 @@ function detect_os() { function run_autopoint() { echo -e "${CYAN}Checking autopoint version...${NC}" - ver=`autopoint --version | awk '{print $NF; exit}'` - ap_maj=`echo $ver | sed 's;\..*;;g'` - ap_min=`echo $ver | sed -e 's;^[0-9]*\.;;g' -e 's;\..*$;;g'` - ap_teeny=`echo $ver | sed -e 's;^[0-9]*\.[0-9]*\.;;g'` + ver=$(autopoint --version | awk '{print $NF; exit}') + ap_maj=$(echo $ver | sed 's;\..*;;g') + ap_min=$(echo $ver | sed -e 's;^[0-9]*\.;;g' -e 's;\..*$;;g') + ap_teeny=$(echo $ver | sed -e 's;^[0-9]*\.[0-9]*\.;;g') echo " $ver" - + case $ap_maj in - 0) - if test $ap_min -lt 14 ; then - echo "You must have gettext >= 0.14.0 but you seem to have $ver" - exit 1 - fi + 0) + if test $ap_min -lt 14; then + echo "You must have gettext >= 0.14.0 but you seem to have $ver" + exit 1 + fi ;; esac echo "Running autopoint..." @@ -118,39 +112,38 @@ function run_autopoint() { function run_libtoolize() { echo "Checking libtoolize version..." - libtoolize --version 2>&1 > /dev/null + libtoolize --version 2>&1 >/dev/null rc=$? - if test $rc -ne 0 ; then + if test $rc -ne 0; then echo "Could not determine the version of libtool on your machine" echo "libtool --version produced:" libtool --version exit 1 fi - lt_ver=`libtoolize --version | awk '{print $NF; exit}'` - lt_maj=`echo $lt_ver | sed 's;\..*;;g'` - lt_min=`echo $lt_ver | sed -e 's;^[0-9]*\.;;g' -e 's;\..*$;;g'` - lt_teeny=`echo $lt_ver | sed -e 's;^[0-9]*\.[0-9]*\.;;g'` + lt_ver=$(libtoolize --version | awk '{print $NF; exit}') + lt_maj=$(echo $lt_ver | sed 's;\..*;;g') + lt_min=$(echo $lt_ver | sed -e 's;^[0-9]*\.;;g' -e 's;\..*$;;g') + lt_teeny=$(echo $lt_ver | sed -e 's;^[0-9]*\.[0-9]*\.;;g') echo " $lt_ver" - + case $lt_maj in - 0) + 0) + echo "You must have libtool >= 1.4.0 but you seem to have $lt_ver" + exit 1 + ;; + + 1) + if test $lt_min -lt 4; then echo "You must have libtool >= 1.4.0 but you seem to have $lt_ver" exit 1 + fi ;; - - 1) - if test $lt_min -lt 4 ; then - echo "You must have libtool >= 1.4.0 but you seem to have $lt_ver" - exit 1 - fi - ;; - - 2) - ;; - - *) - echo "You are running a newer libtool than gerbv has been tested with." - echo "It will probably work, but this is a warning that it may not." + + 2) ;; + + *) + echo "You are running a newer libtool than gerbv has been tested with." + echo "It will probably work, but this is a warning that it may not." ;; esac echo "Running libtoolize..." @@ -160,9 +153,9 @@ function run_libtoolize() { function run_aclocal() { if [ "${MY_OS}" != "openbsd" ]; then echo -e "${LBLUE}Checking aclocal version...${NC}" - acl_ver=`aclocal --version | awk '{print $NF; exit}'` + acl_ver=$(aclocal --version | awk '{print $NF; exit}') echo " $acl_ver" - + echo -e "${CYAN}Running aclocal...${NC}" #aclocal -I m4 $ACLOCAL_FLAGS || exit 1 aclocal -I config || exit 1 @@ -174,9 +167,9 @@ function run_aclocal() { function run_autoheader() { echo "Checking autoheader version..." - ah_ver=`autoheader --version | awk '{print $NF; exit}'` + ah_ver=$(autoheader --version | awk '{print $NF; exit}') echo " $ah_ver" - + echo "Running autoheader..." autoheader || exit 1 echo "... done with autoheader." @@ -185,9 +178,9 @@ function run_autoheader() { function run_automake() { if [ "${MY_OS}" != "openbsd" ]; then echo "Checking automake version..." - am_ver=`automake --version | awk '{print $NF; exit}'` + am_ver=$(automake --version | awk '{print $NF; exit}') echo " $am_ver" - + echo "Running automake..." automake -a -c --add-missing || exit 1 #automake --force --copy --add-missing || exit 1 @@ -200,7 +193,7 @@ function run_automake() { function run_autoconf() { if [ "${MY_OS}" != "openbsd" ]; then echo -e "${LGREEN}Checking autoconf version...${NC}" - ac_ver=`autoconf --version | awk '{print $NF; exit}'` + ac_ver=$(autoconf --version | awk '{print $NF; exit}') echo -e "${LGREEN}Autoconf version: $ac_ver${NC}" echo "Running autoconf..." autoreconf -i || exit 1 @@ -214,8 +207,7 @@ function run_autoconf() { } function check_installed() { - if ! command -v ${1} &> /dev/null - then + if ! command -v ${1} &>/dev/null; then echo "${1} could not be found" exit fi @@ -225,7 +217,7 @@ function install_macos() { echo -e "${CYAN}Updating brew for MacOS (this may take a while...)${NC}" brew cleanup brew upgrade - + echo -e "${CYAN}Setting up autools for MacOS (this may take a while...)${NC}" # brew install libtool brew install automake @@ -237,20 +229,19 @@ function install_debian() { # sudo apt install gnuplot gawk libtool psutils make autopoint #declare -a Packages=( "doxygen" "gawk" "doxygen-latex" "automake" ) # sudo apt install gnuplot gawk libtool psutils make autoconf automake texlive-latex-extra fig2dev - declare -a Packages=( "git" "make" "automake" "libtool" ) # "python3-pygit2" ) - + declare -a Packages=("git" "make" "automake" "libtool") # "python3-pygit2" ) + # Container package installs will fail unless you do an initial update, the upgrade is optional if [ "${CONTAINER}" = true ]; then apt-get update && apt-get upgrade -y fi - - for i in ${Packages[@]}; - do - PKG_OK=$(dpkg-query -W --showformat='${Status}\n' ${i}|grep "install ok installed") &> /dev/null + + for i in ${Packages[@]}; do + PKG_OK=$(dpkg-query -W --showformat='${Status}\n' ${i} | grep "install ok installed") &>/dev/null # echo -e "${LBLUE}Checking for ${i}: ${PKG_OK}${NC}" if [ "" = "${PKG_OK}" ]; then echo -e "${LBLUE}Installing ${i} since it is not found.${NC}" - + # If we are in a container there is no sudo in Debian if [ "${CONTAINER}" = true ]; then apt-get --yes install ${i} @@ -268,12 +259,10 @@ function install_redhat() { fi } -function required_files() -{ +function required_files() { declare -a required_files=("AUTHORS" "ChangeLog" "NEWS") - - for xx in ${required_files[@]}; - do + + for xx in ${required_files[@]}; do if [ ! -f "${xx}" ]; then echo -e "${LGREEN}Creating required file ${xx} since it is not found.${NC}" #touch "${xx}" @@ -282,32 +271,31 @@ function required_files() echo -e "${LBLUE}Found required file ${xx}.${NC}" fi done - + if [ ! -d "config/m4" ]; then mkdir -p config/m4; fi } - function main() { check_docker detect_os #check_installed doxygen required_files - + if [ ! -d "config/m4" ]; then mkdir -p config/m4; fi - + if [ "${MY_OS}" == "mac" ]; then check_installed brew install_macos fi - + if [ "${MY_OS}" == "rh" ]; then install_redhat fi - + if [ "${MY_OS}" == "deb" ]; then install_debian fi - + if [ ! -d "aclocal" ]; then mkdir aclocal; fi run_aclocal run_autoconf @@ -317,4 +305,3 @@ function main() { } main "$@" - diff --git a/admin/configure.ac b/admin/configure.ac index 6187444..460f356 100644 --- a/admin/configure.ac +++ b/admin/configure.ac @@ -16,6 +16,8 @@ AC_CONFIG_COMMANDS([franklin-build], # Checks for programs. AC_PROG_CXX +AC_PATH_PROG([SHFMT], [shfmt], [na]) + AM_PATH_PYTHON(3.9 ) # minimum version of Python PY39="python$PYTHON_VERSION" # define the python interpreter dnl LDFLAGS="$LDFLAGS -l$PY39" diff --git a/admin/cookbook/backmatter/backmatter.tex b/admin/cookbook/backmatter/backmatter.tex new file mode 100644 index 0000000..2c7fb3d --- /dev/null +++ b/admin/cookbook/backmatter/backmatter.tex @@ -0,0 +1,4 @@ +% backmatter: appendix, bibliography, index, postface +\backmatter{} +\printindex +\nocite{*} diff --git a/admin/cookbook/backmatter/end.tex b/admin/cookbook/backmatter/end.tex new file mode 100644 index 0000000..c7bd103 --- /dev/null +++ b/admin/cookbook/backmatter/end.tex @@ -0,0 +1,3 @@ +%%% front cover, spline, back cover +% front_cover +\end{document} diff --git a/admin/cookbook/frontmatter/frontmatter.tex b/admin/cookbook/frontmatter/frontmatter.tex index 71fcf6c..63ca6e3 100644 --- a/admin/cookbook/frontmatter/frontmatter.tex +++ b/admin/cookbook/frontmatter/frontmatter.tex @@ -1,4 +1,5 @@ % frontmatter: half title, title page, colophon (copyright page), epigraph, toc, preface, acknowledgements +\frontmatter{} \tableofcontents \listoffigures \listoftables \ No newline at end of file diff --git a/admin/cookbook/hacker_cookbook.tex b/admin/cookbook/hacker_cookbook.tex index 7db5cb8..6355960 100644 --- a/admin/cookbook/hacker_cookbook.tex +++ b/admin/cookbook/hacker_cookbook.tex @@ -5,3 +5,40 @@ \include{preamble} \markdownInput{../../} +% !TeX encoding = UTF-8 +% !TeX root = hacker_cookbook.tex +% !TeX TXS-program:compile = txs:///pdflatex/[--shell-escape] + +\include{preamble} +\begin{document}% frontmatter: half title, title page, colophon (copyright page), epigraph, toc, preface, acknowledgements +\frontmatter{} +\tableofcontents +\listoffigures +\listoftables\mainmatter{} +% backmatter: appendix, bibliography, index, postface +\backmatter{} +\printindex +\nocite{*} +%%% front cover, spline, back cover +% front_cover +\end{document} +% !TeX encoding = UTF-8 +% !TeX root = hacker_cookbook.tex +% !TeX TXS-program:compile = txs:///pdflatex/[--shell-escape] + +\include{preamble} +\begin{document}% frontmatter: half title, title page, colophon (copyright page), epigraph, toc, preface, acknowledgements +\frontmatter{} +\tableofcontents +\listoffigures +\listoftables\mainmatter{} +% !TeX encoding = UTF-8 +% !TeX root = hacker_cookbook.tex +% !TeX TXS-program:compile = txs:///pdflatex/[--shell-escape] + +\include{preamble} +\begin{document}% frontmatter: half title, title page, colophon (copyright page), epigraph, toc, preface, acknowledgements +\frontmatter{} +\tableofcontents +\listoffigures +\listoftables\mainmatter{} diff --git a/admin/cookbook/mainmatter/mainmatter.tex b/admin/cookbook/mainmatter/mainmatter.tex new file mode 100644 index 0000000..c4dd90b --- /dev/null +++ b/admin/cookbook/mainmatter/mainmatter.tex @@ -0,0 +1 @@ +\mainmatter{} From 430ef9e00383d43a6e9cd363e7562b916df7dabd Mon Sep 17 00:00:00 2001 From: franklin <2730246+devsecfranklin@users.noreply.github.com> Date: Mon, 13 May 2024 16:21:55 -0600 Subject: [PATCH 03/10] convert all rst to md --- BREAKFAST/Marler_quick_migas.md | 55 ++++++++ BREAKFAST/Marler_quick_migas.rst | 58 -------- BREAKFAST/_section.md | 5 + BREAKFAST/_section.rst | 7 - ..._the_king_hashbrownpatty_bacon_sandwich.md | 33 +++++ ...the_king_hashbrownpatty_bacon_sandwich.rst | 37 ----- BREAKFAST/{n1cfury_AES.rst => n1cfury_AES.md} | 33 ++--- COOKWARE/_section.md | 3 + COOKWARE/_section.rst | 4 - COOKWARE/aaron_the_king_tea_tasting_can.md | 48 +++++++ COOKWARE/aaron_the_king_tea_tasting_can.rst | 53 ------- DESSERTS/Breaking_Bad_Blackhat_Brownies.md | 53 +++++++ DESSERTS/Breaking_Bad_Blackhat_Brownies.rst | 57 -------- ...eam_Cheese_Roll_Out_Cookies_With_Orange.md | 69 +++++++++ ...am_Cheese_Roll_Out_Cookies_With_Orange.rst | 75 ---------- DESSERTS/TailPufft_Vegan_Carrot_Cake.md | 32 +++++ DESSERTS/TailPufft_Vegan_Carrot_Cake.rst | 35 ----- ...lPufft_Whiskey_caramel_Apple_Hand_Pies.md} | 110 +++++++-------- .../TunnyTraffic_Foolproof_Victoria_Sponge.md | 97 +++++++++++++ ...TunnyTraffic_Foolproof_Victoria_Sponge.rst | 100 ------------- ...all.rst => WireGhost_Key_Lime_Pyrewall.md} | 53 ++++--- DESSERTS/keto_marbled_turtle_cheesecake.md | 85 +++++++++++ DESSERTS/keto_marbled_turtle_cheesecake.rst | 93 ------------ DESSERTS/wishperactual_peppernuts.md | 26 ++++ DESSERTS/wishperactual_peppernuts.rst | 30 ---- DRINKS/Dual_Core-Faderade.md | 17 +++ DRINKS/Dual_Core-Faderade.rst | 20 --- DRINKS/Dual_Core-Macaulay.md | 27 ++++ DRINKS/Dual_Core-Macaulay.rst | 31 ---- DRINKS/Dual_Core-Plausible_Deniability.md | 34 +++++ DRINKS/Dual_Core-Plausible_Deniability.rst | 38 ----- DRINKS/Dual_Core-Vodka_Redbull.md | 16 +++ DRINKS/Dual_Core-Vodka_Redbull.rst | 19 --- DRINKS/_section.md | 5 + DRINKS/_section.rst | 9 -- .../ashmastaflash-grandpappys_turnt_juice.md | 45 ++++++ .../ashmastaflash-grandpappys_turnt_juice.rst | 49 ------- DRINKS/b1ack0wl-holiday-drink.md | 104 ++++++++++++++ DRINKS/b1ack0wl-holiday-drink.rst | 111 --------------- DRINKS/iHeartMalwares_THE_Purple_Drink.md | 15 ++ DRINKS/iHeartMalwares_THE_Purple_Drink.rst | 18 --- DRINKS/iHeartMalwares_rocket_league.md | 30 ++++ DRINKS/iHeartMalwares_rocket_league.rst | 32 ----- DRINKS/iHeartMalwares_sweet_tart.md | 23 +++ DRINKS/iHeartMalwares_sweet_tart.rst | 25 ---- ...ashioned.rst => moonbas3_new_fashioned.md} | 66 ++++----- DRINKS/tiptone-mexican-martini.md | 26 ++++ DRINKS/tiptone-mexican-martini.rst | 28 ---- ENTREES/0xrnair_monster_chicken_burrito.md | 43 ++++++ ENTREES/0xrnair_monster_chicken_burrito.rst | 47 ------- ENTREES/BenHeise_Bangers_and_Mash.md | 93 ++++++++++++ ENTREES/BenHeise_Bangers_and_Mash.rst | 112 --------------- ENTREES/Dual_Core-Mom-s_Spaghetti.md | 31 ++++ ENTREES/Dual_Core-Mom-s_Spaghetti.rst | 35 ----- ENTREES/_section.md | 5 + ENTREES/_section.rst | 9 -- ENTREES/aaron_the_king_dishwasher_salmon.md | 24 ++++ ENTREES/aaron_the_king_dishwasher_salmon.rst | 28 ---- ...gringo.rst => boredsillys_baked_gringo.md} | 27 ++-- ...ys_excuse_to_eat_bacon_avocado_sandwich.md | 39 +++++ ...s_excuse_to_eat_bacon_avocado_sandwich.rst | 42 ------ ENTREES/da_667s_cheesy_chicken_chili.md | 30 ++++ ENTREES/da_667s_cheesy_chicken_chili.rst | 34 ----- ...k.rst => deviant_ollam_sous_vide_steak.md} | 62 ++++---- ...heese_Bacon_Potato_and_Cauliflower_Soup.md | 59 ++++++++ ...eese_Bacon_Potato_and_Cauliflower_Soup.rst | 62 -------- ENTREES/elegin_balsamic_tempeh.md | 46 ++++++ ENTREES/elegin_balsamic_tempeh.rst | 55 -------- ENTREES/elegin_cauliflower_steaks.md | 18 +++ ENTREES/elegin_cauliflower_steaks.rst | 21 --- ENTREES/elegin_chickpea_tacos.md | 30 ++++ ENTREES/elegin_chickpea_tacos.rst | 33 ----- ENTREES/elegin_one_pot_thai_peanut.md | 29 ++++ ENTREES/elegin_one_pot_thai_peanut.rst | 32 ----- ...terhacker_crispy_parmesan_baked_walleye.md | 39 +++++ ...erhacker_crispy_parmesan_baked_walleye.rst | 42 ------ ...dwaterhacker_grilled_cedar_plank_salmon.md | 54 +++++++ ...waterhacker_grilled_cedar_plank_salmon.rst | 47 ------- ENTREES/iHeartMalware_NC_Pulled_Pork.md | 31 ++++ ENTREES/iHeartMalware_NC_Pulled_Pork.rst | 34 ----- ENTREES/miss_gif_crock-pot-meatshield.md | 34 +++++ ENTREES/miss_gif_crock-pot-meatshield.rst | 36 ----- ...bas3_bbq_ribs.rst => moonbas3_bbq_ribs.md} | 133 ++++++++---------- ENTREES/moonbas3_mississippi_pot_roast.md | 43 ++++++ ENTREES/moonbas3_mississippi_pot_roast.rst | 52 ------- ENTREES/panaderos_sausage_balls.md | 15 ++ ENTREES/panaderos_sausage_balls.rst | 17 --- ...ist_slow_cooker_chorizo_black_bean_stew.md | 44 ++++++ ...st_slow_cooker_chorizo_black_bean_stew.rst | 49 ------- ENTREES/sl3dges_low-carb_sticky_pork_belly.md | 40 ++++++ .../sl3dges_low-carb_sticky_pork_belly.rst | 45 ------ ENTREES/slufs_seared_tuna_pasta.md | 48 +++++++ ENTREES/slufs_seared_tuna_pasta.rst | 51 ------- ENTREES/travelars_southwest_porkchops.md | 33 +++++ ENTREES/travelars_southwest_porkchops.rst | 36 ----- ...mzkl_caramelized-onion-mushroom-stuffin.md | 86 +++++++++++ ...zkl_caramelized-onion-mushroom-stuffin.rst | 95 ------------- ...eadlance_grandmothers_chicken_and_gravy.md | 39 +++++ ...adlance_grandmothers_chicken_and_gravy.rst | 42 ------ SAUCES/_section.md | 6 + SAUCES/_section.rst | 9 -- SAUCES/elegin_vegan_tarter_sauce.md | 21 +++ SAUCES/elegin_vegan_tarter_sauce.rst | 25 ---- SAUCES/iHeartMalware_buffalo_sauce.md | 23 +++ SAUCES/iHeartMalware_buffalo_sauce.rst | 26 ---- .../jcase_LowCarb_Alabama_white_BBQ_sauce.md | 18 +++ .../jcase_LowCarb_Alabama_white_BBQ_sauce.rst | 21 --- .../jcase_LowCarb_NorthCarolina_BBQ_sauce.md | 24 ++++ .../jcase_LowCarb_NorthCarolina_BBQ_sauce.rst | 27 ---- SIDES/_section.md | 5 + SIDES/_section.rst | 9 -- ...is0wn-Whiskey_Cranberry_Brussel_Sprouts.md | 52 +++++++ ...s0wn-Whiskey_Cranberry_Brussel_Sprouts.rst | 59 -------- ...HeartMalware_fermented_cranberry_relish.md | 44 ++++++ ...eartMalware_fermented_cranberry_relish.rst | 46 ------ SIDES/iHeartMalware_fermented_sauerkraut.md | 33 +++++ SIDES/iHeartMalware_fermented_sauerkraut.rst | 36 ----- SIDES/thedevilsvoice_jangajji.md | 62 ++++++++ SIDES/thedevilsvoice_jangajji.rst | 69 --------- SNACKS/WireGhost_Eclectic_Freedom_Fries.md | 34 +++++ SNACKS/WireGhost_Eclectic_Freedom_Fries.rst | 38 ----- SNACKS/_section.md | 5 + SNACKS/_section.rst | 9 -- SNACKS/aaron_the_king-chicken_parm_nachos.md | 58 ++++++++ SNACKS/aaron_the_king-chicken_parm_nachos.rst | 51 ------- ...st => hardwaterhacker_smoked_whitefish.md} | 58 ++++---- SNACKS/iHeartMalwares_kettle_corn.md | 37 +++++ SNACKS/iHeartMalwares_kettle_corn.rst | 39 ----- admin/configure.ac | 1 + admin/cookbook/hacker_cookbook.tex | 10 ++ 130 files changed, 2477 insertions(+), 2748 deletions(-) create mode 100644 BREAKFAST/Marler_quick_migas.md delete mode 100644 BREAKFAST/Marler_quick_migas.rst create mode 100644 BREAKFAST/_section.md delete mode 100644 BREAKFAST/_section.rst create mode 100644 BREAKFAST/aaron_the_king_hashbrownpatty_bacon_sandwich.md delete mode 100644 BREAKFAST/aaron_the_king_hashbrownpatty_bacon_sandwich.rst rename BREAKFAST/{n1cfury_AES.rst => n1cfury_AES.md} (70%) create mode 100644 COOKWARE/_section.md delete mode 100644 COOKWARE/_section.rst create mode 100644 COOKWARE/aaron_the_king_tea_tasting_can.md delete mode 100644 COOKWARE/aaron_the_king_tea_tasting_can.rst create mode 100644 DESSERTS/Breaking_Bad_Blackhat_Brownies.md delete mode 100644 DESSERTS/Breaking_Bad_Blackhat_Brownies.rst create mode 100644 DESSERTS/TailPufft_Cream_Cheese_Roll_Out_Cookies_With_Orange.md delete mode 100644 DESSERTS/TailPufft_Cream_Cheese_Roll_Out_Cookies_With_Orange.rst create mode 100644 DESSERTS/TailPufft_Vegan_Carrot_Cake.md delete mode 100644 DESSERTS/TailPufft_Vegan_Carrot_Cake.rst rename DESSERTS/{TailPufft_Whiskey_caramel_Apple_Hand_Pies.rst => TailPufft_Whiskey_caramel_Apple_Hand_Pies.md} (58%) create mode 100644 DESSERTS/TunnyTraffic_Foolproof_Victoria_Sponge.md delete mode 100644 DESSERTS/TunnyTraffic_Foolproof_Victoria_Sponge.rst rename DESSERTS/{WireGhost_Key_Lime_Pyrewall.rst => WireGhost_Key_Lime_Pyrewall.md} (54%) create mode 100644 DESSERTS/keto_marbled_turtle_cheesecake.md delete mode 100644 DESSERTS/keto_marbled_turtle_cheesecake.rst create mode 100644 DESSERTS/wishperactual_peppernuts.md delete mode 100644 DESSERTS/wishperactual_peppernuts.rst create mode 100644 DRINKS/Dual_Core-Faderade.md delete mode 100644 DRINKS/Dual_Core-Faderade.rst create mode 100644 DRINKS/Dual_Core-Macaulay.md delete mode 100644 DRINKS/Dual_Core-Macaulay.rst create mode 100644 DRINKS/Dual_Core-Plausible_Deniability.md delete mode 100644 DRINKS/Dual_Core-Plausible_Deniability.rst create mode 100644 DRINKS/Dual_Core-Vodka_Redbull.md delete mode 100644 DRINKS/Dual_Core-Vodka_Redbull.rst create mode 100644 DRINKS/_section.md delete mode 100644 DRINKS/_section.rst create mode 100644 DRINKS/ashmastaflash-grandpappys_turnt_juice.md delete mode 100644 DRINKS/ashmastaflash-grandpappys_turnt_juice.rst create mode 100644 DRINKS/b1ack0wl-holiday-drink.md delete mode 100644 DRINKS/b1ack0wl-holiday-drink.rst create mode 100644 DRINKS/iHeartMalwares_THE_Purple_Drink.md delete mode 100644 DRINKS/iHeartMalwares_THE_Purple_Drink.rst create mode 100644 DRINKS/iHeartMalwares_rocket_league.md delete mode 100644 DRINKS/iHeartMalwares_rocket_league.rst create mode 100644 DRINKS/iHeartMalwares_sweet_tart.md delete mode 100644 DRINKS/iHeartMalwares_sweet_tart.rst rename DRINKS/{moonbas3_new_fashioned.rst => moonbas3_new_fashioned.md} (52%) create mode 100644 DRINKS/tiptone-mexican-martini.md delete mode 100644 DRINKS/tiptone-mexican-martini.rst create mode 100644 ENTREES/0xrnair_monster_chicken_burrito.md delete mode 100644 ENTREES/0xrnair_monster_chicken_burrito.rst create mode 100644 ENTREES/BenHeise_Bangers_and_Mash.md delete mode 100644 ENTREES/BenHeise_Bangers_and_Mash.rst create mode 100644 ENTREES/Dual_Core-Mom-s_Spaghetti.md delete mode 100644 ENTREES/Dual_Core-Mom-s_Spaghetti.rst create mode 100644 ENTREES/_section.md delete mode 100644 ENTREES/_section.rst create mode 100644 ENTREES/aaron_the_king_dishwasher_salmon.md delete mode 100644 ENTREES/aaron_the_king_dishwasher_salmon.rst rename ENTREES/{boredsillys_baked_gringo.rst => boredsillys_baked_gringo.md} (66%) create mode 100644 ENTREES/boredsillys_excuse_to_eat_bacon_avocado_sandwich.md delete mode 100644 ENTREES/boredsillys_excuse_to_eat_bacon_avocado_sandwich.rst create mode 100644 ENTREES/da_667s_cheesy_chicken_chili.md delete mode 100644 ENTREES/da_667s_cheesy_chicken_chili.rst rename ENTREES/{deviant_ollam_sous_vide_steak.rst => deviant_ollam_sous_vide_steak.md} (62%) create mode 100644 ENTREES/dis0wn-TwoCheese_Bacon_Potato_and_Cauliflower_Soup.md delete mode 100644 ENTREES/dis0wn-TwoCheese_Bacon_Potato_and_Cauliflower_Soup.rst create mode 100644 ENTREES/elegin_balsamic_tempeh.md delete mode 100644 ENTREES/elegin_balsamic_tempeh.rst create mode 100644 ENTREES/elegin_cauliflower_steaks.md delete mode 100644 ENTREES/elegin_cauliflower_steaks.rst create mode 100644 ENTREES/elegin_chickpea_tacos.md delete mode 100644 ENTREES/elegin_chickpea_tacos.rst create mode 100644 ENTREES/elegin_one_pot_thai_peanut.md delete mode 100644 ENTREES/elegin_one_pot_thai_peanut.rst create mode 100644 ENTREES/hardwaterhacker_crispy_parmesan_baked_walleye.md delete mode 100644 ENTREES/hardwaterhacker_crispy_parmesan_baked_walleye.rst create mode 100644 ENTREES/hardwaterhacker_grilled_cedar_plank_salmon.md delete mode 100644 ENTREES/hardwaterhacker_grilled_cedar_plank_salmon.rst create mode 100644 ENTREES/iHeartMalware_NC_Pulled_Pork.md delete mode 100644 ENTREES/iHeartMalware_NC_Pulled_Pork.rst create mode 100644 ENTREES/miss_gif_crock-pot-meatshield.md delete mode 100644 ENTREES/miss_gif_crock-pot-meatshield.rst rename ENTREES/{moonbas3_bbq_ribs.rst => moonbas3_bbq_ribs.md} (51%) create mode 100644 ENTREES/moonbas3_mississippi_pot_roast.md delete mode 100644 ENTREES/moonbas3_mississippi_pot_roast.rst create mode 100644 ENTREES/panaderos_sausage_balls.md delete mode 100644 ENTREES/panaderos_sausage_balls.rst create mode 100644 ENTREES/rahlquist_slow_cooker_chorizo_black_bean_stew.md delete mode 100644 ENTREES/rahlquist_slow_cooker_chorizo_black_bean_stew.rst create mode 100644 ENTREES/sl3dges_low-carb_sticky_pork_belly.md delete mode 100644 ENTREES/sl3dges_low-carb_sticky_pork_belly.rst create mode 100644 ENTREES/slufs_seared_tuna_pasta.md delete mode 100644 ENTREES/slufs_seared_tuna_pasta.rst create mode 100644 ENTREES/travelars_southwest_porkchops.md delete mode 100644 ENTREES/travelars_southwest_porkchops.rst create mode 100644 ENTREES/wimzkl_caramelized-onion-mushroom-stuffin.md delete mode 100644 ENTREES/wimzkl_caramelized-onion-mushroom-stuffin.rst create mode 100644 ENTREES/wireheadlance_grandmothers_chicken_and_gravy.md delete mode 100644 ENTREES/wireheadlance_grandmothers_chicken_and_gravy.rst create mode 100644 SAUCES/_section.md delete mode 100644 SAUCES/_section.rst create mode 100644 SAUCES/elegin_vegan_tarter_sauce.md delete mode 100644 SAUCES/elegin_vegan_tarter_sauce.rst create mode 100644 SAUCES/iHeartMalware_buffalo_sauce.md delete mode 100644 SAUCES/iHeartMalware_buffalo_sauce.rst create mode 100644 SAUCES/jcase_LowCarb_Alabama_white_BBQ_sauce.md delete mode 100644 SAUCES/jcase_LowCarb_Alabama_white_BBQ_sauce.rst create mode 100644 SAUCES/jcase_LowCarb_NorthCarolina_BBQ_sauce.md delete mode 100644 SAUCES/jcase_LowCarb_NorthCarolina_BBQ_sauce.rst create mode 100644 SIDES/_section.md delete mode 100644 SIDES/_section.rst create mode 100644 SIDES/dis0wn-Whiskey_Cranberry_Brussel_Sprouts.md delete mode 100644 SIDES/dis0wn-Whiskey_Cranberry_Brussel_Sprouts.rst create mode 100644 SIDES/iHeartMalware_fermented_cranberry_relish.md delete mode 100644 SIDES/iHeartMalware_fermented_cranberry_relish.rst create mode 100644 SIDES/iHeartMalware_fermented_sauerkraut.md delete mode 100644 SIDES/iHeartMalware_fermented_sauerkraut.rst create mode 100644 SIDES/thedevilsvoice_jangajji.md delete mode 100644 SIDES/thedevilsvoice_jangajji.rst create mode 100644 SNACKS/WireGhost_Eclectic_Freedom_Fries.md delete mode 100644 SNACKS/WireGhost_Eclectic_Freedom_Fries.rst create mode 100644 SNACKS/_section.md delete mode 100644 SNACKS/_section.rst create mode 100644 SNACKS/aaron_the_king-chicken_parm_nachos.md delete mode 100644 SNACKS/aaron_the_king-chicken_parm_nachos.rst rename SNACKS/{hardwaterhacker_smoked_whitefish.rst => hardwaterhacker_smoked_whitefish.md} (50%) create mode 100644 SNACKS/iHeartMalwares_kettle_corn.md delete mode 100644 SNACKS/iHeartMalwares_kettle_corn.rst diff --git a/BREAKFAST/Marler_quick_migas.md b/BREAKFAST/Marler_quick_migas.md new file mode 100644 index 0000000..d60497c --- /dev/null +++ b/BREAKFAST/Marler_quick_migas.md @@ -0,0 +1,55 @@ +# Marler's Quick Migas + +This is the migas that I make for me and my wife when I'm being lazy and +don't want to cook anything complicated, but want more than just +scrambled eggs. You can adjust up and down to make more if you are +feeding more than just yourself. I find that one single serving bag of +fritos is good for up to a half dozen eggs. If you are making more than +that, start doubling the recipe accordingly. It's just migas ... it +won't blow up if you do it wrong, though I will if you add cheese. + +## Ingredients + +- 2-3 eggs +- 1/2 link of cheap chorizo (Get the cheapest stuff your grocer has. + Ignore the artisan, localvore, hipster Chorizo.) +- 1 single serving size bag of Fritos (or a handful of corn chips, + stale or fresh) +- Salsa (Use whatever is in your fridge, and as much as you can + handle) +- Bacon (for eating while cooking, or to put in the Migas. I won't + judge you either way.) + +## Optional + +- Potatoes (If you have some in the fridge, season liberally and throw + them in) +- Fresh veggies (Tomato, jalapeno peppers, mushrooms, whatever you + have and/or like) +- Mushrooms (I hate mushrooms, but you might not) +- More meat (If you have leftover BBQ, chicken, or anything else you + don't know what to do with, throw it in there) +- Cheese + +## Instructions + +1. Use your favorite skillet for cooking eggs and heat it up +2. Take the chorizo out of it's inedible wrapper (you bought the cheap + stuff, right? That casing is not edible) and put it in the pan +3. Chop up the chorizo with a spatula while it cooks until you get it + into small chunks +4. Crack the eggs and put them into a plastic cup +5. Season the eggs with salt and pepper in the cup +6. Stir up the eggs with a fork until they are as blended as you like + them to be +7. When the chorizo is done, pour in the eggs +8. Crush the fritos in the bag, then open the bag over the skillet and + dump them in +9. Add the salsa to the skillet +10. Add anything else you want to add to cook with the eggs +11. Stir and chop with the spatula until the eggs are cooked as far as + you like them cooked (I like my eggs dry as a Texas drought) +12. Remove skillet from heat and divide accordingly onto plates +13. If you have any fresh veggies you want to add for garnish, now is + your chance to do so +14. Enjoy! diff --git a/BREAKFAST/Marler_quick_migas.rst b/BREAKFAST/Marler_quick_migas.rst deleted file mode 100644 index 2f4fd35..0000000 --- a/BREAKFAST/Marler_quick_migas.rst +++ /dev/null @@ -1,58 +0,0 @@ -Marler’s Quick Migas -==================== - -This is the migas that I make for me and my wife when I’m being lazy and -don’t want to cook anything complicated, but want more than just -scrambled eggs. You can adjust up and down to make more if you are -feeding more than just yourself. I find that one single serving bag of -fritos is good for up to a half dozen eggs. If you are making more than -that, start doubling the recipe accordingly. It’s just migas … it won’t -blow up if you do it wrong, though I will if you add cheese. - -Ingredients ------------ - -- 2-3 eggs -- 1/2 link of cheap chorizo (Get the cheapest stuff your grocer has. - Ignore the artisan, localvore, hipster Chorizo.) -- 1 single serving size bag of Fritos (or a handful of corn chips, - stale or fresh) -- Salsa (Use whatever is in your fridge, and as much as you can handle) -- Bacon (for eating while cooking, or to put in the Migas. I won’t - judge you either way.) - -Optional --------- - -- Potatoes (If you have some in the fridge, season liberally and throw - them in) -- Fresh veggies (Tomato, jalapeno peppers, mushrooms, whatever you have - and/or like) -- Mushrooms (I hate mushrooms, but you might not) -- More meat (If you have leftover BBQ, chicken, or anything else you - don’t know what to do with, throw it in there) -- Cheese - -Instructions ------------- - -1. Use your favorite skillet for cooking eggs and heat it up -2. Take the chorizo out of it’s inedible wrapper (you bought the cheap - stuff, right? That casing is not edible) and put it in the pan -3. Chop up the chorizo with a spatula while it cooks until you get it - into small chunks -4. Crack the eggs and put them into a plastic cup -5. Season the eggs with salt and pepper in the cup -6. Stir up the eggs with a fork until they are as blended as you like - them to be -7. When the chorizo is done, pour in the eggs -8. Crush the fritos in the bag, then open the bag over the skillet and - dump them in -9. Add the salsa to the skillet -10. Add anything else you want to add to cook with the eggs -11. Stir and chop with the spatula until the eggs are cooked as far as - you like them cooked (I like my eggs dry as a Texas drought) -12. Remove skillet from heat and divide accordingly onto plates -13. If you have any fresh veggies you want to add for garnish, now is - your chance to do so -14. Enjoy! diff --git a/BREAKFAST/_section.md b/BREAKFAST/_section.md new file mode 100644 index 0000000..2c57bd1 --- /dev/null +++ b/BREAKFAST/_section.md @@ -0,0 +1,5 @@ +# Breakfast + +- Can't be a daytime hacker without a good breakfast + +![](https://images.pexels.com/photos/101533/pexels-photo-101533.jpeg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb) diff --git a/BREAKFAST/_section.rst b/BREAKFAST/_section.rst deleted file mode 100644 index db010a2..0000000 --- a/BREAKFAST/_section.rst +++ /dev/null @@ -1,7 +0,0 @@ -Breakfast -========= - -- Can’t be a daytime hacker without a good breakfast - -.. figure:: https://images.pexels.com/photos/101533/pexels-photo-101533.jpeg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb - :alt: foods diff --git a/BREAKFAST/aaron_the_king_hashbrownpatty_bacon_sandwich.md b/BREAKFAST/aaron_the_king_hashbrownpatty_bacon_sandwich.md new file mode 100644 index 0000000..a0f8489 --- /dev/null +++ b/BREAKFAST/aaron_the_king_hashbrownpatty_bacon_sandwich.md @@ -0,0 +1,33 @@ +# Hashbrownpatty Bacon Sandwich + +Play with your food and then eat it! + +## Ingredients + +- 2x Standard issue Hashbrownpatties +- A few strips of bacon + +## Instructions + +- Place the hashbrownpatties adjacent to one another as if they were + slices of bread (keep in mind the context : you are about to make a + sandwich) +- Tear the strips of bacon into smaller pieces so that if one slice is + placed lengthwise across a hashbrownpatty there isn't too much + overflow (hacker discretion is advised only at the advice of a + hacker) +- Place your bacon kilobytes (these are much larger than bacon bits) + on the bottom hashbrownpatty +- Place the top hashbrownpatty on top of the bacon kilobytes + +## Tips n' Tricks + +- Please don't put ketchup on it. + +![image](images/aaron_the_king_hashbrownpatty_bacon_sandwich_0.jpg) + +![image](images/aaron_the_king_hashbrownpatty_bacon_sandwich_1.jpg) + +![image](images/aaron_the_king_hashbrownpatty_bacon_sandwich_2.jpg) + +![image](images/aaron_the_king_hashbrownpatty_bacon_sandwich_3.jpg) diff --git a/BREAKFAST/aaron_the_king_hashbrownpatty_bacon_sandwich.rst b/BREAKFAST/aaron_the_king_hashbrownpatty_bacon_sandwich.rst deleted file mode 100644 index 560f618..0000000 --- a/BREAKFAST/aaron_the_king_hashbrownpatty_bacon_sandwich.rst +++ /dev/null @@ -1,37 +0,0 @@ -Hashbrownpatty Bacon Sandwich -============================= - -Play with your food and then eat it! - -Ingredients ------------ - -- 2x Standard issue Hashbrownpatties -- A few strips of bacon - -Instructions ------------- - -- Place the hashbrownpatties adjacent to one another as if they were - slices of bread (keep in mind the context : you are about to make a - sandwich) -- Tear the strips of bacon into smaller pieces so that if one slice is - placed lengthwise across a hashbrownpatty there isn’t too much - overflow (hacker discretion is advised only at the advice of a - hacker) -- Place your bacon kilobytes (these are much larger than bacon bits) on - the bottom hashbrownpatty -- Place the top hashbrownpatty on top of the bacon kilobytes - -Tips n’ Tricks --------------- - -- Please don’t put ketchup on it. - -.. image:: images/aaron_the_king_hashbrownpatty_bacon_sandwich_0.jpg - -.. image:: images/aaron_the_king_hashbrownpatty_bacon_sandwich_1.jpg - -.. image:: images/aaron_the_king_hashbrownpatty_bacon_sandwich_2.jpg - -.. image:: images/aaron_the_king_hashbrownpatty_bacon_sandwich_3.jpg \ No newline at end of file diff --git a/BREAKFAST/n1cfury_AES.rst b/BREAKFAST/n1cfury_AES.md similarity index 70% rename from BREAKFAST/n1cfury_AES.rst rename to BREAKFAST/n1cfury_AES.md index 46fbcbc..39fe486 100644 --- a/BREAKFAST/n1cfury_AES.rst +++ b/BREAKFAST/n1cfury_AES.md @@ -1,37 +1,32 @@ -n1cfury’s AES (Avocado, Eggs, Sriracha) -======================================= +# n1cfury's AES (Avocado, Eggs, Sriracha) Being on a tight budget in between jobs and wanting to get in the habit of eating breakfast I wanted to come up with an easy and filling breakfast. This meal takes minimal effort and will keep you satisfied until lunch. -Resources ---------- +## Resources -A `small cast-iron -skillet `__ +A [small cast-iron +skillet](https://www.amazon.com/Lodge-L3SK3-Skillet-Pre-Seasoned-6-5-inch/dp/B00063RWT8/ref=sr_1_1?ie=UTF8&qid=1487463235&sr=8-1&keywords=small+cast+iron+skillet) -Ingredients ------------ +## Ingredients -2 eggs 1 ripe Avocado Sriracha `Olive -oil `__ - I use +2 eggs 1 ripe Avocado Sriracha [Olive +oil](http://www.humbleoliveoils.com/infused/garlic-olive-oil) - I use Humble Olive Oils Sea Salt Black Pepper -Preparation ------------ +## Preparation If you have refrigerated the Avocado, make sure you take it out the -night before. It’s not a deal breaker, but it will work better if its +night before. It's not a deal breaker, but it will work better if its already at room temperature. Before you start cooking, slice the Avocado -in half the long way and ‘unscrew’ it maintaining the half with the pit. +in half the long way and 'unscrew' it maintaining the half with the pit. Inside the half without the pit, dice it up in the skin so it is easier -to spread. Unless you’re really hungry, save the half with the pit for +to spread. Unless you're really hungry, save the half with the pit for later and put it in the fridge. YES, LEAVE THE SEED INSIDE. Trust me. -Instructions ------------- +## Instructions Turn on the stove at low heat. If you have a gas stove, the flame should be barely visible. Put a few drops of olive oil on the skillet to coat @@ -53,5 +48,5 @@ without overdoing it. I did this without toast because its not as messy and less carbs if you care about that sort of thing. Enjoy! -`My GitHub page `__ `Follow me on -Twitter `__ +[My GitHub page](https://github.com/n1cfury) [Follow me on +Twitter](https://twitter.com/n1c_fury) diff --git a/COOKWARE/_section.md b/COOKWARE/_section.md new file mode 100644 index 0000000..ab940f6 --- /dev/null +++ b/COOKWARE/_section.md @@ -0,0 +1,3 @@ +# Cookware + +- These are the things that are used for cooking diff --git a/COOKWARE/_section.rst b/COOKWARE/_section.rst deleted file mode 100644 index 9658465..0000000 --- a/COOKWARE/_section.rst +++ /dev/null @@ -1,4 +0,0 @@ -Cookware -======== - -- These are the things that are used for cooking diff --git a/COOKWARE/aaron_the_king_tea_tasting_can.md b/COOKWARE/aaron_the_king_tea_tasting_can.md new file mode 100644 index 0000000..20d7e96 --- /dev/null +++ b/COOKWARE/aaron_the_king_tea_tasting_can.md @@ -0,0 +1,48 @@ +# Tea Tasting Can + +Make loose leaf tea without a fancy teacup or teapot! + +This hardware hack is for those times when you want to make tea but you +have no teapot. One common solution is a tea tasting cup, which is a cup +that lets you brew proper tea in a cup and then remove the leaves +afterwards. + +## Supplies + +- Soda can +- Sharp pokey thing +- Can opener + +## How to make + +1. Drain all liquid from the soda can +2. Remove the lid of the soda can using the can opener +3. Poke many holes in the soda can with regular spacing using your + sharp pokey thing + +## Crafting Tips n' Tricks + +- If you aren't make sure to have proper adult supervision before + doing this. +- Poke holes with discretion. Don't stab yourself. +- Don't be afraid to take the can opener off the can a few times while + removing the lid. You'll probably get a cleaner cut if you do many + small twists and reposition the can opener more often. + +## How to Brew + +1. Put the Tea Tasting Can (TTC) into your mug of choice +2. Place your tea leaves directly into the middle of the TTC +3. Blanch the tea leaves (optional, see Tips n' Tricks) +4. Pour hot water into the TTC over the tea leaves +5. Wait until the tea is brewed to your preference +6. Lift the TTC straight upwards out of your mug + +## Brewing Tips n' Tricks + +- When lifting the TTC out of your mug don't go too fast. Otherwise + the tea will gush out of the holes and shoot past the sides of your + mug. +- Use the same amount of leaves and water each time for more consitent + brews. Overflowing the cup slightly might feel messy but it ensures + you always have the same amount of water. diff --git a/COOKWARE/aaron_the_king_tea_tasting_can.rst b/COOKWARE/aaron_the_king_tea_tasting_can.rst deleted file mode 100644 index fcb3233..0000000 --- a/COOKWARE/aaron_the_king_tea_tasting_can.rst +++ /dev/null @@ -1,53 +0,0 @@ -Tea Tasting Can -=============== - -Make loose leaf tea without a fancy teacup or teapot! - -This hardware hack is for those times when you want to make tea but you -have no teapot. One common solution is a tea tasting cup, which is a cup -that lets you brew proper tea in a cup and then remove the leaves -afterwards. - -Supplies --------- - -- Soda can -- Sharp pokey thing -- Can opener - -How to make ------------ - -1. Drain all liquid from the soda can -2. Remove the lid of the soda can using the can opener -3. Poke many holes in the soda can with regular spacing using your sharp - pokey thing - -Crafting Tips n’ Tricks ------------------------ - -- If you aren’t make sure to have proper adult supervision before doing - this. -- Poke holes with discretion. Don’t stab yourself. -- Don’t be afraid to take the can opener off the can a few times while - removing the lid. You’ll probably get a cleaner cut if you do many - small twists and reposition the can opener more often. - -How to Brew ------------ - -1. Put the Tea Tasting Can (TTC) into your mug of choice -2. Place your tea leaves directly into the middle of the TTC -3. Blanch the tea leaves (optional, see Tips n’ Tricks) -4. Pour hot water into the TTC over the tea leaves -5. Wait until the tea is brewed to your preference -6. Lift the TTC straight upwards out of your mug - -Brewing Tips n’ Tricks ----------------------- - -- When lifting the TTC out of your mug don’t go too fast. Otherwise the - tea will gush out of the holes and shoot past the sides of your mug. -- Use the same amount of leaves and water each time for more consitent - brews. Overflowing the cup slightly might feel messy but it ensures - you always have the same amount of water. diff --git a/DESSERTS/Breaking_Bad_Blackhat_Brownies.md b/DESSERTS/Breaking_Bad_Blackhat_Brownies.md new file mode 100644 index 0000000..3e55587 --- /dev/null +++ b/DESSERTS/Breaking_Bad_Blackhat_Brownies.md @@ -0,0 +1,53 @@ +# Breaking Bad BlackHat Brownies + +A nice pick-me-up mocha-ish treat. Versatile. I suggest using the +strongest most wicked coffee you can. I use Death Wish Coffee, at twice +the caffeine, but for taste, you may want to use whatever brand you +prefer tastes better. + +## Ingredients + +- 1/2 Pound Butter Melted (choice of butter here is optional + salted/unsalted) Also please check and abide by State Laws if adding + any "alternative" butter. +- 4 Tablespoons Dark Cocoa +- 1 Cup Water +- 2 Cups Flour +- 2 Cups Sugar +- 1 Teaspoon Baking Soda +- 1/2 Teaspoon Salt +- 1/2 Cup Buttermilk +- 2 Eggs +- 1 Teaspoon Vanila +- 2-4 Shots Espresso (as thick as possible, or just add less water if + over 4 shots) + +## Frosting + +- ¼ Pound Butter (again, what butter you use is at your discretion) +- 4 Tablespoons Dark Cocoa +- 8 Tablespoons Buttermilk +- 1 Teaspoon Vanilla +- 1 Box Confectioners Sugar + +Optional = 1 Cup chopped Nuts of your choice (be mindful of those with +nut allergies) + +## Instructions + +1. Preheat Oven to 350 Degrees Fahrenheit (177 Celsius) +2. Add Cocoa & Water to Butter. +3. Add Espresso shots and bring to a boil. +4. Mix together Flour, Sugar, Soda & Salt. +5. Add boiling Cocoa mixture & stir until blended. +6. Add Buttermilk, Eggs & Vanilla. Stir Until smooth. +7. Pour into a greased baking pan of suitable shape. + +## Making the Frosting: + +1. Add Cocoa & Buttermilk to Butter and bring to a boil in a medium + sauce pan. +2. Add Sugar & Vanilla, stirring until smooth consistency. +3. Pour over the warmed cooked brownies. Optionally adding chopped + Nuts. +4. Enjoy. diff --git a/DESSERTS/Breaking_Bad_Blackhat_Brownies.rst b/DESSERTS/Breaking_Bad_Blackhat_Brownies.rst deleted file mode 100644 index 675e53a..0000000 --- a/DESSERTS/Breaking_Bad_Blackhat_Brownies.rst +++ /dev/null @@ -1,57 +0,0 @@ -Breaking Bad BlackHat Brownies -============================== - -A nice pick-me-up mocha-ish treat. Versatile. I suggest using the -strongest most wicked coffee you can. I use Death Wish Coffee, at twice -the caffeine, but for taste, you may want to use whatever brand you -prefer tastes better. - -Ingredients ------------ - -- 1/2 Pound Butter Melted (choice of butter here is optional - salted/unsalted) Also please check and abide by State Laws if adding - any “alternative” butter. -- 4 Tablespoons Dark Cocoa -- 1 Cup Water -- 2 Cups Flour -- 2 Cups Sugar -- 1 Teaspoon Baking Soda -- 1/2 Teaspoon Salt -- 1/2 Cup Buttermilk -- 2 Eggs -- 1 Teaspoon Vanila -- 2-4 Shots Espresso (as thick as possible, or just add less water if - over 4 shots) - -Frosting --------- - -- ¼ Pound Butter (again, what butter you use is at your discretion) -- 4 Tablespoons Dark Cocoa -- 8 Tablespoons Buttermilk -- 1 Teaspoon Vanilla -- 1 Box Confectioners Sugar - -Optional = 1 Cup chopped Nuts of your choice (be mindful of those with -nut allergies) - -Instructions ------------- - -1. Preheat Oven to 350 Degrees Fahrenheit (177 Celsius) -2. Add Cocoa & Water to Butter. -3. Add Espresso shots and bring to a boil. -4. Mix together Flour, Sugar, Soda & Salt. -5. Add boiling Cocoa mixture & stir until blended. -6. Add Buttermilk, Eggs & Vanilla. Stir Until smooth. -7. Pour into a greased baking pan of suitable shape. - -Making the Frosting: --------------------- - -1. Add Cocoa & Buttermilk to Butter and bring to a boil in a medium - sauce pan. -2. Add Sugar & Vanilla, stirring until smooth consistency. -3. Pour over the warmed cooked brownies. Optionally adding chopped Nuts. -4. Enjoy. diff --git a/DESSERTS/TailPufft_Cream_Cheese_Roll_Out_Cookies_With_Orange.md b/DESSERTS/TailPufft_Cream_Cheese_Roll_Out_Cookies_With_Orange.md new file mode 100644 index 0000000..5e360ee --- /dev/null +++ b/DESSERTS/TailPufft_Cream_Cheese_Roll_Out_Cookies_With_Orange.md @@ -0,0 +1,69 @@ +# TailPufft's Cream Cheese Roll Out Cookies with Orange + +## Cookies + +- 1 cup butter - close to room tempterature +- 1 8 pz. package of cream cheese - room temperature +- 2 cups granulated sugar +- 2 eggs +- 4 tsp. frozen orange juice concentrate +- Zest of 1 orange +- 1 tsp. vanilla extract +- 1 tsp. almond extract +- 2 tsp. baking powder +- 5 cups flour +- Extra flour for dusting + +## Icing Recipe + +- 1 cup powdered sugar +- 1 tbsp. milk +- 1 tbsp. light corn syrup +- 1 drop lemon juice + +## Directions + +A. Pre-heat oven to 350 1. Cream together butter and sugar. Don't rush +the creaming together of the butter and sugar step, otherwise the pastry +gods will find you and they will punish you. Whisk in cream cheese. +Whisk in eggs. Add all the other wet stuff. Add in the orange zest too. +You now have a bucket o' orange smelling buttery wet stuff 2. Mix all +the dry stuff seperately. 3. Slowly incorporate the dry mixture into the +wet mixture. Go ahead and curse a bit for not doing this in a larger +sized bowl and go find a larger bowl. I'll wait. B. Do not do this in +your Kitchenaid mixer as 5 cups of flour is too much for it and I will +not bring you Kleenex for your tears when you fry your Kitchenaid motor. +(at most, mix up to 3 cups of flour in the wet mixture using the paddle +kitchenaid attachment, but then mix the last two cups of flour in by +hand.) 4. Take this lovely smelling rather firm lump of dough, divide it +into two squirrel sized lumps and chill. 5. After about 20-30 minutes, +take out chilly dough squirrel number 1 and dust the counter with flour. +Roll out the dough to about 1 fat centimeter of thickness. Use lots of +sprinkles of flour to keep the dough from sticking to your rolling pin +and / or the counter. This dough gets stickier the warmer it gets, so +try to keep it nice and cold, like my heart. 6. Go nuts with the cookie +cutters. Don't let anyone give you any crap for owning too many cookie +cutters. This recipe holds shapes well throughout baking. C. This will +make more cookies than you have patience to clean up after. This will +make more cookies than your children will have the attention span to +decorate. D. If you decide to freeze chilly dough squirrel number 2 for +later, have at it. This dough freezes very well. + +## Baking + +1. Either grease cookie sheets or use parchment paper. Is the oven on? + Put the whiskey down and turn the oven on. +2. Keep an eye on these suckers as it is a pretty quick bake. I would + check them after 8 minutes, but usually take about 10 minutes for a + variety of sizes. We make little bats for Christmas. Christmas bats + take about 8 minutes. Very lightely golden at the edges means they + are done. +3. Enjoy watching various stages of cookies take over every single + horizontal surface of your house. + +## Icing + +1. Let the cookies cool, as putting icing on hot cookies will cause the + icing to make a mess. +2. Mix everything together, then put on cookies. Or just dip the + cookies in the icing. diff --git a/DESSERTS/TailPufft_Cream_Cheese_Roll_Out_Cookies_With_Orange.rst b/DESSERTS/TailPufft_Cream_Cheese_Roll_Out_Cookies_With_Orange.rst deleted file mode 100644 index ebc5423..0000000 --- a/DESSERTS/TailPufft_Cream_Cheese_Roll_Out_Cookies_With_Orange.rst +++ /dev/null @@ -1,75 +0,0 @@ -TailPufft’s Cream Cheese Roll Out Cookies with Orange -===================================================== - -Cookies -------- - -- 1 cup butter - close to room tempterature -- 1 8 pz. package of cream cheese - room temperature -- 2 cups granulated sugar -- 2 eggs -- 4 tsp. frozen orange juice concentrate -- Zest of 1 orange -- 1 tsp. vanilla extract -- 1 tsp. almond extract -- 2 tsp. baking powder -- 5 cups flour -- Extra flour for dusting - -Icing Recipe ------------- - -- 1 cup powdered sugar -- 1 tbsp. milk -- 1 tbsp. light corn syrup -- 1 drop lemon juice - -Directions ----------- - -A. Pre-heat oven to 350 1. Cream together butter and sugar. Don’t rush -the creaming together of the butter and sugar step, otherwise the pastry -gods will find you and they will punish you. Whisk in cream cheese. -Whisk in eggs. Add all the other wet stuff. Add in the orange zest too. -You now have a bucket o’ orange smelling buttery wet stuff 2. Mix all -the dry stuff seperately. 3. Slowly incorporate the dry mixture into the -wet mixture. Go ahead and curse a bit for not doing this in a larger -sized bowl and go find a larger bowl. I’ll wait. B. Do not do this in -your Kitchenaid mixer as 5 cups of flour is too much for it and I will -not bring you Kleenex for your tears when you fry your Kitchenaid motor. -(at most, mix up to 3 cups of flour in the wet mixture using the paddle -kitchenaid attachment, but then mix the last two cups of flour in by -hand.) 4. Take this lovely smelling rather firm lump of dough, divide it -into two squirrel sized lumps and chill. 5. After about 20-30 minutes, -take out chilly dough squirrel number 1 and dust the counter with flour. -Roll out the dough to about 1 fat centimeter of thickness. Use lots of -sprinkles of flour to keep the dough from sticking to your rolling pin -and / or the counter. This dough gets stickier the warmer it gets, so -try to keep it nice and cold, like my heart. 6. Go nuts with the cookie -cutters. Don’t let anyone give you any crap for owning too many cookie -cutters. This recipe holds shapes well throughout baking. C. This will -make more cookies than you have patience to clean up after. This will -make more cookies than your children will have the attention span to -decorate. D. If you decide to freeze chilly dough squirrel number 2 for -later, have at it. This dough freezes very well. - -Baking ------- - -1. Either grease cookie sheets or use parchment paper. Is the oven on? - Put the whiskey down and turn the oven on. -2. Keep an eye on these suckers as it is a pretty quick bake. I would - check them after 8 minutes, but usually take about 10 minutes for a - variety of sizes. We make little bats for Christmas. Christmas bats - take about 8 minutes. Very lightely golden at the edges means they - are done. -3. Enjoy watching various stages of cookies take over every single - horizontal surface of your house. - -Icing ------ - -1. Let the cookies cool, as putting icing on hot cookies will cause the - icing to make a mess. -2. Mix everything together, then put on cookies. Or just dip the cookies - in the icing. diff --git a/DESSERTS/TailPufft_Vegan_Carrot_Cake.md b/DESSERTS/TailPufft_Vegan_Carrot_Cake.md new file mode 100644 index 0000000..3a82eec --- /dev/null +++ b/DESSERTS/TailPufft_Vegan_Carrot_Cake.md @@ -0,0 +1,32 @@ +# TailPufft's Vegan Carrot Cake + +## Ingredients + +- 3 cups flour +- 2 tsp. baking soda +- 1 tsp. salt +- 2 cups sugar +- 3 cups grated fresh carrots +- 1 tbsp. cinnamon +- 1 1/2 cups vegetable oil +- 1 cup chopped walnuts +- 1 cup pureed banana (or alternate egg substitue to replace the + equivelant of 4 eggs) + +## Directions + +A. Pre-heat oven to 350 1. Mix all the dry ingredients (including sugar) +2. Mix the wet items (stop giggling) including the walnuts 3. Stir +together 4. Try to trick the cat into eating the grated carrot on the +floor 5. Bribe the Roomba to clean up said carrots all over the floor. +6. NO ONE gracefully shreds carrots, so I know they are down there 7. +Prepare pan (9x13 pan, muffin tin, rounds, meh whatev.) with either a +crap ton of pan spray or parchment 8. Wax paper is not the same thing as +parchment. Stop that. 9. Oven should be on by now. 10. Bake that sucker. +11. Check it after 20 minutes. IT should not wiggle in the middle. This +is a moist cake. MOIST. VERY VERY MOIST. ........ moist. 12. Classic +carrot cake usually goes with cream cheese frosting. Vegan chream +cheeses exists but can be tricky on flavor, so don't hold back from +whipping it (whip it real good) with extra vanilla extract and powdered +sugar. Good ole vegan buttercream is good too. 13. Or skip the frosting +and face plant into your delicious cake. We've all been there. diff --git a/DESSERTS/TailPufft_Vegan_Carrot_Cake.rst b/DESSERTS/TailPufft_Vegan_Carrot_Cake.rst deleted file mode 100644 index 9ffb411..0000000 --- a/DESSERTS/TailPufft_Vegan_Carrot_Cake.rst +++ /dev/null @@ -1,35 +0,0 @@ -TailPufft’s Vegan Carrot Cake -============================= - -Ingredients ------------ - -- 3 cups flour -- 2 tsp. baking soda -- 1 tsp. salt -- 2 cups sugar -- 3 cups grated fresh carrots -- 1 tbsp. cinnamon -- 1 1/2 cups vegetable oil -- 1 cup chopped walnuts -- 1 cup pureed banana (or alternate egg substitue to replace the - equivelant of 4 eggs) - -Directions ----------- - -A. Pre-heat oven to 350 1. Mix all the dry ingredients (including sugar) -2. Mix the wet items (stop giggling) including the walnuts 3. Stir -together 4. Try to trick the cat into eating the grated carrot on the -floor 5. Bribe the Roomba to clean up said carrots all over the floor. -6. NO ONE gracefully shreds carrots, so I know they are down there 7. -Prepare pan (9x13 pan, muffin tin, rounds, meh whatev.) with either a -crap ton of pan spray or parchment 8. Wax paper is not the same thing as -parchment. Stop that. 9. Oven should be on by now. 10. Bake that sucker. -11. Check it after 20 minutes. IT should not wiggle in the middle. This -is a moist cake. MOIST. VERY VERY MOIST. …….. moist. 12. Classic carrot -cake usually goes with cream cheese frosting. Vegan chream cheeses -exists but can be tricky on flavor, so don’t hold back from whipping it -(whip it real good) with extra vanilla extract and powdered sugar. Good -ole vegan buttercream is good too. 13. Or skip the frosting and face -plant into your delicious cake. We’ve all been there. diff --git a/DESSERTS/TailPufft_Whiskey_caramel_Apple_Hand_Pies.rst b/DESSERTS/TailPufft_Whiskey_caramel_Apple_Hand_Pies.md similarity index 58% rename from DESSERTS/TailPufft_Whiskey_caramel_Apple_Hand_Pies.rst rename to DESSERTS/TailPufft_Whiskey_caramel_Apple_Hand_Pies.md index 0214e30..e5b1576 100644 --- a/DESSERTS/TailPufft_Whiskey_caramel_Apple_Hand_Pies.rst +++ b/DESSERTS/TailPufft_Whiskey_caramel_Apple_Hand_Pies.md @@ -1,41 +1,35 @@ -TailPufft’s Vegan Carrot Cake -============================= +# TailPufft's Vegan Carrot Cake -Ingredients ------------ +## Ingredients -- 1 bottle of whiskey -- Hand pie press or empanada press or hey, just wing it. -- Digital scale +- 1 bottle of whiskey +- Hand pie press or empanada press or hey, just wing it. +- Digital scale -Crust ------ +## Crust -- 2 1/2 cups flower -- 1 cup grease (1/2 butter, 1/2 shortening) -- 1 tsp. salt -- 2 tbsp. sugar -- Some of the whiskey +- 2 1/2 cups flower +- 1 cup grease (1/2 butter, 1/2 shortening) +- 1 tsp. salt +- 2 tbsp. sugar +- Some of the whiskey -Filling -------- +## Filling -- About 12 apples -- 1 1/2 tbsp. cinnamon -- 1/2 cup sugar -- some of the whiskey -- 2 eggs for egg wash +- About 12 apples +- 1 1/2 tbsp. cinnamon +- 1/2 cup sugar +- some of the whiskey +- 2 eggs for egg wash -Caramel -------- +## Caramel -- 1 cup sugar -- 2 oz. water -- 4 oz. cream -- 2 oz. whiskey +- 1 cup sugar +- 2 oz. water +- 4 oz. cream +- 2 oz. whiskey -Directions ----------- +## Directions 1. Crust first because you gotta chill it. 2. Dump flour, salt, and sugar into a bowl and mix together. @@ -46,22 +40,22 @@ Directions butter chunks into the flour. Keep going until each bit of floury butter bit is no bigger than a pea. 6. Take your chilled whiskey and slowly dribble it into the dough. Mix - it together by hand, but don’t squish it too much. This is more of a + it together by hand, but don't squish it too much. This is more of a shred and stack game. Too much Play Doh style squishing and your crust will not be flakey. No flakes on your crust == SHAME. 7. After about 1/2 cup or so of the chilled whsieky, your dough should be coming together. -8. Form into an overweight frisbee and ut it in the freezer. You don’t +8. Form into an overweight frisbee and ut it in the freezer. You don't roll out warm pie crust, only cold. 9. Alcohol is better than ice water for pastry crusts because the - alcohol causes better seperation of the dough layers when it’s + alcohol causes better seperation of the dough layers when it's baking. 10. No, the alcohol does not bake out. This is just the most FANTASTIC lie. 11. Wash, peel, and dice the apples. 12. Cook until soft on the stove with some sugar, cinnamon, and more - whiskey to taste. Y’all do what you want with your cinnamon / - whiskey levels but…go big or go home. + whiskey to taste. Y'all do what you want with your cinnamon / + whiskey levels but...go big or go home. 13. Roll out pie dough to make small circles, use your pie press a sa template 14. Now turn on your oven to 400 @@ -70,44 +64,40 @@ Directions DAMNIT) vents, and brush with egg wash 17. Bake for 18-22 minutes -Caramel Cooking ---------------- - -- Go watch a YouTube vide oon how to make caramel. -- Go watch another YouTube video on what sugar burns do to you -- At this point maybe excuse children or accident-prone adults out of - the kitchen. Kick them the hell out. -- This is oht work and I’m not joking around when I csay you can really - f@#!@$ yourself up. -- This is not impossible and it is do-able, even for a novice. But give - it the respect it deserves. -- Yay, time t omake caramel now! Wheee! -- Weigh out all ingredients before you turn any burners on -- Use a tough saucepot for this, nothing with teflon. Wooden spoons - usually do not melt, grab one. - -- DO. NOT. STIR. THE. SUGARWATER. +## Caramel Cooking + +- Go watch a YouTube vide oon how to make caramel. +- Go watch another YouTube video on what sugar burns do to you +- At this point maybe excuse children or accident-prone adults out of + the kitchen. Kick them the hell out. +- This is oht work and I'm not joking around when I csay you can + really f@#!@\$ yourself up. +- This is not impossible and it is do-able, even for a novice. But + give it the respect it deserves. +- Yay, time t omake caramel now! Wheee! +- Weigh out all ingredients before you turn any burners on +- Use a tough saucepot for this, nothing with teflon. Wooden spoons + usually do not melt, grab one. +- DO. NOT. STIR. THE. SUGARWATER. 1. Pour granulated sugar into cold saucepan. 2. Gently pour your 2 oz. of water over the sugar, do not splash it and - don’t let any sugar water bounce up the sides of the pot. + don't let any sugar water bounce up the sides of the pot. 3. Do not stir it. Seriously. 4. Ya pour water in and LEAVE IT. Even if there are dry looking bits of - sugar, don’t stur. + sugar, don't stur. 5. Turn on the burner to medium high heat. 6. You are now tied to the stove. 7. Stand there and watch it like a Russian on Facebook. 8. It will start to bubble as it cookes. - 9. Once part of the mixture starts turning golden, you slowly stir in - the cream and turn the heat to low. (Yes, NOW stir.) Don’t let it + the cream and turn the heat to low. (Yes, NOW stir.) Don't let it turn brown, you will smell it right away if you burned it. If you burn it, start over. - -10. Step 9 is by tself because that’s the dramatic part of this. Once - the cream hits the hot sugar, it’s goign to bubble up and hiss at +10. Step 9 is by tself because that's the dramatic part of this. Once + the cream hits the hot sugar, it's goign to bubble up and hiss at you. Right when its scaring you is when I also want you to turn the - heat down. But it’s okay, you got this. You are going to slowly pour + heat down. But it's okay, you got this. You are going to slowly pour in that cream, slowly stir the hissing firt that results, and you are going to reach over and turn the heat down. 11. Once the major drama subsides, slowly pour in the whiskey. It may @@ -115,7 +105,7 @@ Caramel Cooking hot enough to ignite. 12. Turn the heat off, move to a cold burner, and keep gently stiring. If any hard lumps of sugar occur (damn sea monsters) just fish those - out and toss ’em. + out and toss 'em. 13. Let your caramel cool enough to handle and drizzle it over your pies. 14. Have a shot. You earned it! diff --git a/DESSERTS/TunnyTraffic_Foolproof_Victoria_Sponge.md b/DESSERTS/TunnyTraffic_Foolproof_Victoria_Sponge.md new file mode 100644 index 0000000..388eda2 --- /dev/null +++ b/DESSERTS/TunnyTraffic_Foolproof_Victoria_Sponge.md @@ -0,0 +1,97 @@ +# Foolproof Victoria Sponge + +This is a light sponge that is impossible (E&EO) to get too wrong. Use +it as a birthday cake, sit in your underwear and gorge on it, feed it to +your cats. I don't care, I'm not your mum. Some variants are listed at +the end. + +## Ingredients + +Weights for some ingredients are not listed here, check the Instructions + +For the cake: + +- 4 eggs +- Caster sugar +- Unsalted butter +- Self-raising flour +- 1 teaspoon of vanilla extract + +For the decoration: + +- Strawberry jam +- 150g icing sugar +- 75g unsalted butter - at room temperature to make it easier to work + +## Equipment + +- 20cm high-sided cake tin (if using sandwich tins split between two + 20cm tins and skip the cutting in step 13) +- Large mixing bowl +- A spoon +- An electric hand whisk while make life easier but if you can do this + by hand too +- An oven +- Wire cooling rack + +## Instructions + +For the cake: + +1. Pre-heat the oven to 180C/350F +2. Either line the tin with parchment paper or to save having to do + complex geometry get a little butter on your fingers, grease the + tin, drop in a spoonful of flour and shake it around until the + inside if covered. Tip out and discard any loose flour. +3. Weigh the eggs and set aside. +4. Weigh out the same amount of butter, sugar, and flour as the eggs. +5. In the mixing bowl beat the butter until it is smooth and creamy +6. Into the butter beat the sugar +7. Add the eggs one at a time, beating into the creamed sugar. You can + use the electric hand whisk on a slow setting to work the eggs into + the mix. +8. Sift the flour and beat into the mixture one spoonful at a time + making sure there are no lumps. +9. Beat in the vanilla extract. +10. Check the consistency of the cake mix, it should drop smoothly off a + spoon. If it looks a little too thick add some milk to loosen to + mixture. +11. Spoon the mixture into the tin. Allow to settle and bang the bottom + of the tin on the work surface to knock out any bubbles. +12. Bake for 25-30 minutes until either the top of the cake springs back + when pushed gently or a skewer/knife comes out clean. +13. Tip out onto the wire rack to cool. + +Decoration: + +1. Beat the icing sugar into the butter to make a buttercream +2. When the sponge has cooled down sit it on its side and cut it half + with a bread knife. If you try this when it's warm it'll break + apart. +3. On the bottom half spoon on the strawberry jam and spread with a + knife until it is even. +4. On the top half spoon on the buttercream and spread until even. +5. Gently flip the top half and reassemble the cake. Push it down a + little to glue the halves together +6. Sift some icing sugar over the top. +7. Serve with tea. + +## Variants + +The sponge is nice but it's made even better with a few adjustments, +skip the decoration listed in the main recipe. + +- Raspberry and White Chocolate: When the cake mix is complete in step + 8 gently fold in a handful of raspberries and as much white + chocolate as you conscience allows. This can be greasy if you add + too much chocolate; in which case leave out the same weight of + butter as the chocolate you add. +- Lemon Drizzle - into the mix at step 7 add the zest of one lemon, + being careful not to include the pith as it's unpleasant. Mix the + juice of the lemon with 80g of caster sugar. Cook the sponge as + instructed then when cooked prick it with a skewer and pour the + lemon syrup mixture slowly over the cake making sure it gets + absorbed while allowing a little to run down the sides. +- St Clements - As per Lemon Drizzle but add some orange juice to the + drizzle, adjust the amount of sugar to maintain a syrupy + consistency. diff --git a/DESSERTS/TunnyTraffic_Foolproof_Victoria_Sponge.rst b/DESSERTS/TunnyTraffic_Foolproof_Victoria_Sponge.rst deleted file mode 100644 index 303886b..0000000 --- a/DESSERTS/TunnyTraffic_Foolproof_Victoria_Sponge.rst +++ /dev/null @@ -1,100 +0,0 @@ -Foolproof Victoria Sponge -========================= - -This is a light sponge that is impossible (E&EO) to get too wrong. Use -it as a birthday cake, sit in your underwear and gorge on it, feed it to -your cats. I don’t care, I’m not your mum. Some variants are listed at -the end. - -Ingredients ------------ - -Weights for some ingredients are not listed here, check the Instructions - -For the cake: - -- 4 eggs -- Caster sugar -- Unsalted butter -- Self-raising flour -- 1 teaspoon of vanilla extract - -For the decoration: - -- Strawberry jam -- 150g icing sugar -- 75g unsalted butter - at room temperature to make it easier to work - -Equipment ---------- - -- 20cm high-sided cake tin (if using sandwich tins split between two - 20cm tins and skip the cutting in step 13) -- Large mixing bowl -- A spoon -- An electric hand whisk while make life easier but if you can do this - by hand too -- An oven -- Wire cooling rack - -Instructions ------------- - -For the cake: - -1. Pre-heat the oven to 180C/350F -2. Either line the tin with parchment paper or to save having to do - complex geometry get a little butter on your fingers, grease the - tin, drop in a spoonful of flour and shake it around until the - inside if covered. Tip out and discard any loose flour. -3. Weigh the eggs and set aside. -4. Weigh out the same amount of butter, sugar, and flour as the eggs. -5. In the mixing bowl beat the butter until it is smooth and creamy -6. Into the butter beat the sugar -7. Add the eggs one at a time, beating into the creamed sugar. You can - use the electric hand whisk on a slow setting to work the eggs into - the mix. -8. Sift the flour and beat into the mixture one spoonful at a time - making sure there are no lumps. -9. Beat in the vanilla extract. -10. Check the consistency of the cake mix, it should drop smoothly off a - spoon. If it looks a little too thick add some milk to loosen to - mixture. -11. Spoon the mixture into the tin. Allow to settle and bang the bottom - of the tin on the work surface to knock out any bubbles. -12. Bake for 25-30 minutes until either the top of the cake springs back - when pushed gently or a skewer/knife comes out clean. -13. Tip out onto the wire rack to cool. - -Decoration: - -1. Beat the icing sugar into the butter to make a buttercream -2. When the sponge has cooled down sit it on its side and cut it half - with a bread knife. If you try this when it’s warm it’ll break apart. -3. On the bottom half spoon on the strawberry jam and spread with a - knife until it is even. -4. On the top half spoon on the buttercream and spread until even. -5. Gently flip the top half and reassemble the cake. Push it down a - little to glue the halves together -6. Sift some icing sugar over the top. -7. Serve with tea. - -Variants --------- - -The sponge is nice but it’s made even better with a few adjustments, -skip the decoration listed in the main recipe. - -- Raspberry and White Chocolate: When the cake mix is complete in step - 8 gently fold in a handful of raspberries and as much white chocolate - as you conscience allows. This can be greasy if you add too much - chocolate; in which case leave out the same weight of butter as the - chocolate you add. -- Lemon Drizzle - into the mix at step 7 add the zest of one lemon, - being careful not to include the pith as it’s unpleasant. Mix the - juice of the lemon with 80g of caster sugar. Cook the sponge as - instructed then when cooked prick it with a skewer and pour the lemon - syrup mixture slowly over the cake making sure it gets absorbed while - allowing a little to run down the sides. -- St Clements - As per Lemon Drizzle but add some orange juice to the - drizzle, adjust the amount of sugar to maintain a syrupy consistency. diff --git a/DESSERTS/WireGhost_Key_Lime_Pyrewall.rst b/DESSERTS/WireGhost_Key_Lime_Pyrewall.md similarity index 54% rename from DESSERTS/WireGhost_Key_Lime_Pyrewall.rst rename to DESSERTS/WireGhost_Key_Lime_Pyrewall.md index a053718..2788867 100644 --- a/DESSERTS/WireGhost_Key_Lime_Pyrewall.rst +++ b/DESSERTS/WireGhost_Key_Lime_Pyrewall.md @@ -1,29 +1,25 @@ -Key Lime Pyrewall (bow to it) -============================= +# Key Lime Pyrewall (bow to it) -Ingredients ------------ +## Ingredients -- 2/3 cup graham cracker crumbs -- 2 tablespoons sugar -- 3 tablespoons butter, melted +- 2/3 cup graham cracker crumbs +- 2 tablespoons sugar +- 3 tablespoons butter, melted -Filling -------- +## Filling -- 1/2 cup sugar -- 2 tablespoons all-purpose flour -- 1 tablespoon plus 1-1/2 teaspoons cornstarch -- 1/8 teaspoon salt -- 1 cup water -- 1 drop green food coloring, optional -- 2 egg yolks, beaten -- 2 tablespoons key lime juice -- 1 teaspoon butter -- 1/2 teaspoon grated lime peel +- 1/2 cup sugar +- 2 tablespoons all-purpose flour +- 1 tablespoon plus 1-1/2 teaspoons cornstarch +- 1/8 teaspoon salt +- 1 cup water +- 1 drop green food coloring, optional +- 2 egg yolks, beaten +- 2 tablespoons key lime juice +- 1 teaspoon butter +- 1/2 teaspoon grated lime peel -Directions ----------- +## Directions 1. In a small bowl, mix cracker crumbs and sugar. Stir in butter. 2. Press onto the bottom and up the sides of a 7-inch pie plate coated @@ -43,14 +39,13 @@ Directions 13. Refrigerate for 1-2 hours or until it sets up & congeals. 14. Garnish with whipped cream if you want. -Serving -------- +## Serving Best part: -1. Cut a wedge. -2. Place on a rather size-able plate (NOT PAPER!) -3. Drizzle a ring of White Rum or Citrus vodka (or your favorite citrusy - moonshine? around the wedge in a circle. -4. Light her up. Serve to guests. -5. Try not to burn down your space. +1. Cut a wedge. +2. Place on a rather size-able plate (NOT PAPER!) +3. Drizzle a ring of White Rum or Citrus vodka (or your favorite + citrusy moonshine? around the wedge in a circle. +4. Light her up. Serve to guests. +5. Try not to burn down your space. diff --git a/DESSERTS/keto_marbled_turtle_cheesecake.md b/DESSERTS/keto_marbled_turtle_cheesecake.md new file mode 100644 index 0000000..5154d2f --- /dev/null +++ b/DESSERTS/keto_marbled_turtle_cheesecake.md @@ -0,0 +1,85 @@ +# Keto Marbled Turtle Cheesecake + +sl3dge in partnership with TheKetoBaker + +Some tips for keeping a cheesecake from cracking on top: Don't open the +oven, and don't over bake it! Opening the oven will cause a draft and in +turn cause irregularities in the temperature, which makes the cheesecake +crack. Over baking will dry it out and also make it crack. + +Nutritional Information: + +Per Slice- + +5g Net Carbs 50g Fat 10g Protein + +Recipe: Makes 12 Slices + +![image](images/keto_marbled_turtle_cheesecake.jpg){.align-center} + +## Ingredients + +**You will need a 9″ Springform pan** + +### crust + +6 Tbsp of Butter 1/3 Cup of Swerve 2 Cups of Almond Flour 3 Tbsp of +Cocoa Baking Powder (A very small) Pinch of Salt + +### Filling + +4 Eggs 1 Cup of Swerve 1 Tsp of Vanilla Extract 3 8oz Packs of Cream +Cheese 1/3 Cup of Sour Cream 2 Tbsp of Cocoa Baking Powder + +### Caramel + +4 Tbsp of Butter 1 Tbsp of Coconut Oil 4 Tbsp of Heavy Cream 1 tsp of +Vanilla Extract 3 Tbsp of Swerve A Pinch of Salt 1 Cup Pecans, roughly +chopped + +## Recipe + +1. Crust- Preheat oven to 375 Degrees +2. Combine all ingredients well (I just used my hands to mix it because + it's easier than using a mixer or hand mixer) +3. Press the mix firmly into the bottom of your springform pan. +4. Bake for 8 minutes then let cool + +### Filling Directions + +Preheat oven to 350 Degrees, lightly grease the sides of your springform +pan and place on baking sheet + +1. Beat the cream cheese until it is nice and fluffy (about 3 minutes) +2. Beat in the sweetener, sour cream, and vanilla. Mix for about 3 + minutes. +3. Gently add one egg at a time, mixing for about 1 minute in between + each egg. +4. separate out 1 -- 1 1/2 Cups of the filling into a separate bowl and + add 2 Tbsp of Cocoa baking powder, mixing for about 1 minute. +5. Pour the regular mix into the springform pan. Add the chocolate mix + in portions around the pan. Use a butter knife to carefully swirl + the chocolate mix through the regular mix to create a marbled + effect. +6. Bake for 40 -- 45 minutes, or until it is puffy and golden around + the edges. +7. Run a knife around the inside of the rim to loosen the cake, but let + it cool for a while before removing the rim! +8. Cool the cake for 1-2 hours on a wire rack. + +### Caramel Directions + +Make sure to consistently whisk your caramel throughout the cooking +process so it doesn't burn! + +1. Melt the butter in a small pan on medium heat and cook until it is + golden brown. Add in the coconut oil and stir well. +2. Add in the heavy cream and stir until it is combined. lower the heat + and simmer for about 1 minute. +3. Add in the sweetener, vanilla, and salt. Cook until it starts to get + thicker and stickier. +4. Remove from heat and stir to make sure it isn't separated, then pour + over the cooled cheesecake. Sprinkle on the chopped pecans. +5. Chill in the fridge for at least 4 hours, then enjoy! + +Also seen on theketobaker.com diff --git a/DESSERTS/keto_marbled_turtle_cheesecake.rst b/DESSERTS/keto_marbled_turtle_cheesecake.rst deleted file mode 100644 index 7ed6674..0000000 --- a/DESSERTS/keto_marbled_turtle_cheesecake.rst +++ /dev/null @@ -1,93 +0,0 @@ -Keto Marbled Turtle Cheesecake -============================== - -sl3dge in partnership with TheKetoBaker - -Some tips for keeping a cheesecake from cracking on top: Don’t open the -oven, and don’t over bake it! Opening the oven will cause a draft and in -turn cause irregularities in the temperature, which makes the cheesecake -crack. Over baking will dry it out and also make it crack. - -Nutritional Information: - -Per Slice- - -5g Net Carbs 50g Fat 10g Protein - -Recipe: Makes 12 Slices - -.. image:: images/keto_marbled_turtle_cheesecake.jpg - :align: center - -Ingredients ------------ - -**You will need a 9″ Springform pan** - -crust -~~~~~ - -6 Tbsp of Butter 1/3 Cup of Swerve 2 Cups of Almond Flour 3 Tbsp of -Cocoa Baking Powder (A very small) Pinch of Salt - -Filling -~~~~~~~ - -4 Eggs 1 Cup of Swerve 1 Tsp of Vanilla Extract 3 8oz Packs of Cream -Cheese 1/3 Cup of Sour Cream 2 Tbsp of Cocoa Baking Powder - -Caramel -~~~~~~~ - -4 Tbsp of Butter 1 Tbsp of Coconut Oil 4 Tbsp of Heavy Cream 1 tsp of -Vanilla Extract 3 Tbsp of Swerve A Pinch of Salt 1 Cup Pecans, roughly -chopped - -Recipe ------- - -1. Crust- Preheat oven to 375 Degrees -2. Combine all ingredients well (I just used my hands to mix it because - it’s easier than using a mixer or hand mixer) -3. Press the mix firmly into the bottom of your springform pan. -4. Bake for 8 minutes then let cool - -Filling Directions -~~~~~~~~~~~~~~~~~~ - -Preheat oven to 350 Degrees, lightly grease the sides of your springform -pan and place on baking sheet - -1. Beat the cream cheese until it is nice and fluffy (about 3 minutes) -2. Beat in the sweetener, sour cream, and vanilla. Mix for about 3 - minutes. -3. Gently add one egg at a time, mixing for about 1 minute in between - each egg. -4. separate out 1 – 1 1/2 Cups of the filling into a separate bowl and - add 2 Tbsp of Cocoa baking powder, mixing for about 1 minute. -5. Pour the regular mix into the springform pan. Add the chocolate mix - in portions around the pan. Use a butter knife to carefully swirl the - chocolate mix through the regular mix to create a marbled effect. -6. Bake for 40 – 45 minutes, or until it is puffy and golden around the - edges. -7. Run a knife around the inside of the rim to loosen the cake, but let - it cool for a while before removing the rim! -8. Cool the cake for 1-2 hours on a wire rack. - -Caramel Directions -~~~~~~~~~~~~~~~~~~ - -Make sure to consistently whisk your caramel throughout the cooking -process so it doesn’t burn! - -1. Melt the butter in a small pan on medium heat and cook until it is - golden brown. Add in the coconut oil and stir well. -2. Add in the heavy cream and stir until it is combined. lower the heat - and simmer for about 1 minute. -3. Add in the sweetener, vanilla, and salt. Cook until it starts to get - thicker and stickier. -4. Remove from heat and stir to make sure it isn’t separated, then pour - over the cooled cheesecake. Sprinkle on the chopped pecans. -5. Chill in the fridge for at least 4 hours, then enjoy! - -Also seen on theketobaker.com diff --git a/DESSERTS/wishperactual_peppernuts.md b/DESSERTS/wishperactual_peppernuts.md new file mode 100644 index 0000000..80da2ba --- /dev/null +++ b/DESSERTS/wishperactual_peppernuts.md @@ -0,0 +1,26 @@ +# Wishper's Peppernuts + +## Description + +Peppernuts, a multigenerational autumn treat + +## Ingredients + +- 3/4 cup sugar +- 1 cup light corn syrup (Karo) +- 1 egg +- 1/4 cup shortening +- 1/4 cup milk +- 1/2 tsp baking powder +- 1 tsp cinnamon +- 1/4 tsp salt +- 1/4 tsp mace +- 1 tsp anise flavoring +- Enough flour to make a very stiff dough + +## Directions + +1. Knead in flour then roll into ropes, about the diameter of your + finger. +2. Cut into 1/2 - 3/4 inch pieces, then place onto a cookie sheet. +3. Bake in 359-375F oven until golden brown. diff --git a/DESSERTS/wishperactual_peppernuts.rst b/DESSERTS/wishperactual_peppernuts.rst deleted file mode 100644 index 1dadefc..0000000 --- a/DESSERTS/wishperactual_peppernuts.rst +++ /dev/null @@ -1,30 +0,0 @@ -Wishper’s Peppernuts -==================== - -Description ------------ - -Peppernuts, a multigenerational autumn treat - -Ingredients ------------ - -- 3/4 cup sugar -- 1 cup light corn syrup (Karo) -- 1 egg -- 1/4 cup shortening -- 1/4 cup milk -- 1/2 tsp baking powder -- 1 tsp cinnamon -- 1/4 tsp salt -- 1/4 tsp mace -- 1 tsp anise flavoring -- Enough flour to make a very stiff dough - -Directions ----------- - -1. Knead in flour then roll into ropes, about the diameter of your - finger. -2. Cut into 1/2 - 3/4 inch pieces, then place onto a cookie sheet. -3. Bake in 359-375F oven until golden brown. diff --git a/DRINKS/Dual_Core-Faderade.md b/DRINKS/Dual_Core-Faderade.md new file mode 100644 index 0000000..6bdabb9 --- /dev/null +++ b/DRINKS/Dual_Core-Faderade.md @@ -0,0 +1,17 @@ +# Dual Core's Faderade + +**Serving Size**: Yes, **Calories**: (0cal \* Cans of RedBull Zero) + +(97cal \* Shots of vodka) + (150cal \* 20oz Bottles of Gatorade) + +## Ingredients + +- 1 part Vodka +- 1 part RedBull Zero +- 1 part Gatorade + +## Recipe + +1. Cut a hole in the box +2. Fill a 16oz glass with ice +3. Pour vodka, followed by RedBull Zero, followed by Gatorade +4. Stir and enjoy diff --git a/DRINKS/Dual_Core-Faderade.rst b/DRINKS/Dual_Core-Faderade.rst deleted file mode 100644 index f1a4ddc..0000000 --- a/DRINKS/Dual_Core-Faderade.rst +++ /dev/null @@ -1,20 +0,0 @@ -Dual Core’s Faderade -==================== - -**Serving Size**: Yes, **Calories**: (0cal \* Cans of RedBull Zero) + -(97cal \* Shots of vodka) + (150cal \* 20oz Bottles of Gatorade) - -Ingredients ------------ - -- 1 part Vodka -- 1 part RedBull Zero -- 1 part Gatorade - -Recipe ------- - -1. Cut a hole in the box -2. Fill a 16oz glass with ice -3. Pour vodka, followed by RedBull Zero, followed by Gatorade -4. Stir and enjoy diff --git a/DRINKS/Dual_Core-Macaulay.md b/DRINKS/Dual_Core-Macaulay.md new file mode 100644 index 0000000..b8ea09c --- /dev/null +++ b/DRINKS/Dual_Core-Macaulay.md @@ -0,0 +1,27 @@ +# Dual Core's Macaulay + +**Serving Size:** 1, **Calories:** \> 9000 + +## Ingredients + +- 2 tsp Sugar +- Mint +- Fresh pineapple juice +- Lime +- Vodka + +## Recipe + +1. Cut lime into eights +2. Muddle sugar, some mint, and two 1/8 wedges of lime together in a + shaker +3. Add ice to shaker +4. Pour desired amount of vodka into shaker (long 4- or 5-count) +5. Pour 2-4 shots of pineapple juice into shaker +6. Close lid and shake well +7. Pour shaker contents into pint glass, drink with straw + +## Greetz + +Shouts out to RoadSec and Casa do Mancha where I first had this drink in +São Paulo. diff --git a/DRINKS/Dual_Core-Macaulay.rst b/DRINKS/Dual_Core-Macaulay.rst deleted file mode 100644 index a3cf3ff..0000000 --- a/DRINKS/Dual_Core-Macaulay.rst +++ /dev/null @@ -1,31 +0,0 @@ -Dual Core’s Macaulay -==================== - -**Serving Size:** 1, **Calories:** > 9000 - -Ingredients ------------ - -- 2 tsp Sugar -- Mint -- Fresh pineapple juice -- Lime -- Vodka - -Recipe ------- - -1. Cut lime into eights -2. Muddle sugar, some mint, and two 1/8 wedges of lime together in a - shaker -3. Add ice to shaker -4. Pour desired amount of vodka into shaker (long 4- or 5-count) -5. Pour 2-4 shots of pineapple juice into shaker -6. Close lid and shake well -7. Pour shaker contents into pint glass, drink with straw - -Greetz ------- - -Shouts out to RoadSec and Casa do Mancha where I first had this drink in -São Paulo. diff --git a/DRINKS/Dual_Core-Plausible_Deniability.md b/DRINKS/Dual_Core-Plausible_Deniability.md new file mode 100644 index 0000000..8f1bfbc --- /dev/null +++ b/DRINKS/Dual_Core-Plausible_Deniability.md @@ -0,0 +1,34 @@ +# Dual Core's Plausible Deniability + +**Serving Size:** Time Travel, **Calories:** Hackerman + +## Ingredients + +- Sugar +- Grapefruit +- Pomegranate juice +- Tonic +- Vodka + +## Recipe + +1. Place ice into a shaker +2. Cut grapefruit into quarters +3. Squeeze 1/4 grapefruit into shaker +4. Rim a pint glass using the piece of grapefruit still in your hand +5. Create a sugar-coated rim of the pint glass by dipping the glass + upside down onto a plate of sugar +6. Pour desired amount of vodka into shaker (long 4- or 5-count) +7. Pour \~1 shot of pomegranate juice into shaker +8. Close lid and shake well +9. After shaking, add \~1 shot of tonic and stir +10. Pour shaker contents into sugar-coated pint glass + +## Warnings + +- The first time a friend had this drink, he woke up with a broken rib + in the morning. Unsolved mystery. +- Another friend woke up with bruises the next morning. Unsolved + mystery. +- **DO NOT** get clever and substitute the grapefruit juice with + grapefruit vodka. #REKT diff --git a/DRINKS/Dual_Core-Plausible_Deniability.rst b/DRINKS/Dual_Core-Plausible_Deniability.rst deleted file mode 100644 index d2663d2..0000000 --- a/DRINKS/Dual_Core-Plausible_Deniability.rst +++ /dev/null @@ -1,38 +0,0 @@ -Dual Core’s Plausible Deniability -================================= - -**Serving Size:** Time Travel, **Calories:** Hackerman - -Ingredients ------------ - -- Sugar -- Grapefruit -- Pomegranate juice -- Tonic -- Vodka - -Recipe ------- - -1. Place ice into a shaker -2. Cut grapefruit into quarters -3. Squeeze 1/4 grapefruit into shaker -4. Rim a pint glass using the piece of grapefruit still in your hand -5. Create a sugar-coated rim of the pint glass by dipping the glass - upside down onto a plate of sugar -6. Pour desired amount of vodka into shaker (long 4- or 5-count) -7. Pour ~1 shot of pomegranate juice into shaker -8. Close lid and shake well -9. After shaking, add ~1 shot of tonic and stir -10. Pour shaker contents into sugar-coated pint glass - -Warnings --------- - -- The first time a friend had this drink, he woke up with a broken rib - in the morning. Unsolved mystery. -- Another friend woke up with bruises the next morning. Unsolved - mystery. -- **DO NOT** get clever and substitute the grapefruit juice with - grapefruit vodka. #REKT diff --git a/DRINKS/Dual_Core-Vodka_Redbull.md b/DRINKS/Dual_Core-Vodka_Redbull.md new file mode 100644 index 0000000..d1dd67d --- /dev/null +++ b/DRINKS/Dual_Core-Vodka_Redbull.md @@ -0,0 +1,16 @@ +# Dual Core's Vodka RedBull + +**Serving Size:** Yes, **Calories:** (5cal \* Cans of sugar-free +RedBull) + (97cal \* Shots of vodka) + +## Ingredients + +- 1 part Vodka +- 1 part RedBull + +## Recipe + +1. Drink all the booze. +2. Hack all the things. + +Best served on the rocks. diff --git a/DRINKS/Dual_Core-Vodka_Redbull.rst b/DRINKS/Dual_Core-Vodka_Redbull.rst deleted file mode 100644 index 0ef49bc..0000000 --- a/DRINKS/Dual_Core-Vodka_Redbull.rst +++ /dev/null @@ -1,19 +0,0 @@ -Dual Core’s Vodka RedBull -========================= - -**Serving Size:** Yes, **Calories:** (5cal \* Cans of sugar-free -RedBull) + (97cal \* Shots of vodka) - -Ingredients ------------ - -- 1 part Vodka -- 1 part RedBull - -Recipe ------- - -1. Drink all the booze. -2. Hack all the things. - -Best served on the rocks. diff --git a/DRINKS/_section.md b/DRINKS/_section.md new file mode 100644 index 0000000..27672ba --- /dev/null +++ b/DRINKS/_section.md @@ -0,0 +1,5 @@ +# Drinks + +- In order to hack all the things, one must drink all the booze + +![foods](https://images.pexels.com/photos/274131/pexels-photo-274131.jpeg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb) diff --git a/DRINKS/_section.rst b/DRINKS/_section.rst deleted file mode 100644 index 9ecbeaa..0000000 --- a/DRINKS/_section.rst +++ /dev/null @@ -1,9 +0,0 @@ -Drinks -====== - -- In order to hack all the things, one must drink all the booze - -.. figure:: https://images.pexels.com/photos/274131/pexels-photo-274131.jpeg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb - :alt: foods - - foods diff --git a/DRINKS/ashmastaflash-grandpappys_turnt_juice.md b/DRINKS/ashmastaflash-grandpappys_turnt_juice.md new file mode 100644 index 0000000..385273d --- /dev/null +++ b/DRINKS/ashmastaflash-grandpappys_turnt_juice.md @@ -0,0 +1,45 @@ +# Grandpappy's Turnt Juice + +## A cocktail inspired by October in Southeast Tennessee. + +There's a chill in the air. The smell of the season's first blaze in the +fireplace is on the breeze. Winter is coming to the Appalachian +foothills. Put down the axe and pack some cherry blend into your burl +wood pipe. Let's sip on some of Grandpappy's Turnt Juice. + +Not for the faint of heart, or the faint of pancreas. If you need to +shoot your blood sugar through the roof and take the edge way off, this +is the drink for you. + +![Grandpappy's Turnt +Juice](images/ashmastaflash-grandpappys_turnt_juice.jpg) + +Tools: + +- Martini shaker +- Mason jar + +Ingredients: + +- Woodford Reserve bourbon +- Woodford Reserve cherries +- Dolin dry vermouth +- Crushed ice +- Unsulphured molasses +- Angostura bitters + +Directions: + +1. Put a tablespoon of molasses into the shaker along with a handful of + crushed ice +2. Put a dash or two of bitters into the the shaker, along with a + splash of the Woodford reserve cherry juice. Drop in a cherry. +3. Put 3oz of bourbon and 1oz of dry vermouth into the shaker. +4. Cap the shaker and shake the hell out of it. It'll take some effort + to get the molasses to mix. +5. Strain out the turnt juice into the jar. Take the cherry out of the + shaker and drop it into the turnt juice. + +Enjoy! + +\_@ashmastaflash\_ diff --git a/DRINKS/ashmastaflash-grandpappys_turnt_juice.rst b/DRINKS/ashmastaflash-grandpappys_turnt_juice.rst deleted file mode 100644 index 22e42f2..0000000 --- a/DRINKS/ashmastaflash-grandpappys_turnt_juice.rst +++ /dev/null @@ -1,49 +0,0 @@ -Grandpappy’s Turnt Juice -======================== - -A cocktail inspired by October in Southeast Tennessee. ------------------------------------------------------- - -There’s a chill in the air. The smell of the season’s first blaze in the -fireplace is on the breeze. Winter is coming to the Appalachian -foothills. Put down the axe and pack some cherry blend into your burl -wood pipe. Let’s sip on some of Grandpappy’s Turnt Juice. - -Not for the faint of heart, or the faint of pancreas. If you need to -shoot your blood sugar through the roof and take the edge way off, this -is the drink for you. - -.. figure:: images/ashmastaflash-grandpappys_turnt_juice.jpg - :alt: Grandpappy’s Turnt Juice - - Grandpappy’s Turnt Juice - -Tools: - -- Martini shaker -- Mason jar - -Ingredients: - -- Woodford Reserve bourbon -- Woodford Reserve cherries -- Dolin dry vermouth -- Crushed ice -- Unsulphured molasses -- Angostura bitters - -Directions: - -1. Put a tablespoon of molasses into the shaker along with a handful of - crushed ice -2. Put a dash or two of bitters into the the shaker, along with a splash - of the Woodford reserve cherry juice. Drop in a cherry. -3. Put 3oz of bourbon and 1oz of dry vermouth into the shaker. -4. Cap the shaker and shake the hell out of it. It’ll take some effort - to get the molasses to mix. -5. Strain out the turnt juice into the jar. Take the cherry out of the - shaker and drop it into the turnt juice. - -Enjoy! - -\_@ashmastaflash\_ diff --git a/DRINKS/b1ack0wl-holiday-drink.md b/DRINKS/b1ack0wl-holiday-drink.md new file mode 100644 index 0000000..6569a5e --- /dev/null +++ b/DRINKS/b1ack0wl-holiday-drink.md @@ -0,0 +1,104 @@ +# b1ack0wl's Holiday Drink + +**Serving Size**: 2, **Calories**: bout tree-fiddy + +## Ingredients + +- 1/3 cup unsweetened cocoa powder +- 1/2 cup of sugar +- 1 tsp of salt \|\| to taste +- 1/3 cup of boiling water +- 3.5 cups of milk +- 3/4 tsp vanilla extract +- 1/2 cup of half and half +- Coffee (nom) +- Liquor of choice: + - Vodka + - Peppermint Schnapps \[Suggested\] + - Whatever just don't fuck it up + +### (Optional) + +- Whipped Cream +- Cinnamon powder +- Sprinkles +- Marshmallows + +## Recipe + +- Mix all of the dry ingredients first +- Boil some water +- Take out a deep saucepan (Enough to hold to liquid ingredients + without spilling.) +- Mix in the dry ingredients and boiling water within the saucepan. + (Use Med/Low heat since you do not want to burn the sugar cause + it'll taste like ew.) +- Stir for about 2 minutes. The mixture should smell real nice and the + texture should look almost like molasses. +- Slowly pour and mix the milk into the saucepan. Increase heat if + needed but be careful the milk should not boil! +- Once you're satisfied remove the saucepan from the heat. +- Mix in the vanilla extract into the saucepan +- Split the hot cocoa between two mugs +- Add half and half to each mug +- Add your Liquor + +## (Optional Steps) + +- Add marshmallows to each mug +- Apply whipped cream in a circular fashion to each mug +- Take a small amount of cocoa powder onto a spoon and tap the spoon + slightly to sprinkle cocoa powder on top of the whipped cream. +- Repeat the above step but for cinnamon powder. +- Add sprinkles!! :D +- Enjoy! + +: + + o$$$$$$oo + o$" "$oo + $ o""""$o "$o + "$ o "o "o $ + "$ $o $ $ o$ + "$ o$"$ o$ + "$ooooo$$ $ o$ + o$ """ $ " $$$ " $ + o$ $o $$" " " + $$ $ " $ $$$o"$ o o$" + $" o "" $ $" " o" $$ + $o " " $ o$" o" o$" + "$o $$ $ o" o$$" + ""o$o"$" $oo" o$" + o$$ $ $$$ o$$ + o" o oo"" "" "$o + o$o" "" $ + $" " o" " " " "o + $$ " " o$ o$o " $ + o$ $ $ o$$ " " "" + o $ $" " "o o$ + $ o $o$oo$"" + $o $ o o o"$$ + $o o $ $ "$o + $o $ o $ $ "o + $ $ "o $ "o"$o + $ " o $ o $$ + $o$o$o$o$$o$$$o$$o$o$$o$$o$$$o$o$o$o$o$o$o$o$o$ooo + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$o + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ " $$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ "$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ + $$$$$$$$$$$$$$$$$$nom$$$$$$$$$$$$$$$$$$$$$$ o$$$$" + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ooooo$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$""""" + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" + "$o$o$o$o$o$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" + "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" + "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$""" + """"""""""""""""""""""""""""""""""""""""""""""""""""" diff --git a/DRINKS/b1ack0wl-holiday-drink.rst b/DRINKS/b1ack0wl-holiday-drink.rst deleted file mode 100644 index aef1075..0000000 --- a/DRINKS/b1ack0wl-holiday-drink.rst +++ /dev/null @@ -1,111 +0,0 @@ -b1ack0wl’s Holiday Drink -======================== - -**Serving Size**: 2, **Calories**: bout tree-fiddy - -Ingredients ------------ - -- 1/3 cup unsweetened cocoa powder -- 1/2 cup of sugar -- 1 tsp of salt \|\| to taste -- 1/3 cup of boiling water -- 3.5 cups of milk -- 3/4 tsp vanilla extract -- 1/2 cup of half and half -- Coffee (nom) -- Liquor of choice: - - - Vodka - - Peppermint Schnapps [Suggested] - - Whatever just don’t fuck it up - -(Optional) -~~~~~~~~~~ - -- Whipped Cream -- Cinnamon powder -- Sprinkles -- Marshmallows - -Recipe ------- - -- Mix all of the dry ingredients first -- Boil some water -- Take out a deep saucepan (Enough to hold to liquid ingredients - without spilling.) -- Mix in the dry ingredients and boiling water within the saucepan. - (Use Med/Low heat since you do not want to burn the sugar cause it’ll - taste like ew.) -- Stir for about 2 minutes. The mixture should smell real nice and the - texture should look almost like molasses. -- Slowly pour and mix the milk into the saucepan. Increase heat if - needed but be careful the milk should not boil! -- Once you’re satisfied remove the saucepan from the heat. -- Mix in the vanilla extract into the saucepan -- Split the hot cocoa between two mugs -- Add half and half to each mug -- Add your Liquor - -(Optional Steps) ----------------- - -- Add marshmallows to each mug -- Apply whipped cream in a circular fashion to each mug -- Take a small amount of cocoa powder onto a spoon and tap the spoon - slightly to sprinkle cocoa powder on top of the whipped cream. -- Repeat the above step but for cinnamon powder. -- Add sprinkles!! :D -- Enjoy! - -:: - - - o$$$$$$oo - o$" "$oo - $ o""""$o "$o - "$ o "o "o $ - "$ $o $ $ o$ - "$ o$"$ o$ - "$ooooo$$ $ o$ - o$ """ $ " $$$ " $ - o$ $o $$" " " - $$ $ " $ $$$o"$ o o$" - $" o "" $ $" " o" $$ - $o " " $ o$" o" o$" - "$o $$ $ o" o$$" - ""o$o"$" $oo" o$" - o$$ $ $$$ o$$ - o" o oo"" "" "$o - o$o" "" $ - $" " o" " " " "o - $$ " " o$ o$o " $ - o$ $ $ o$$ " " "" - o $ $" " "o o$ - $ o $o$oo$"" - $o $ o o o"$$ - $o o $ $ "$o - $o $ o $ $ "o - $ $ "o $ "o"$o - $ " o $ o $$ - $o$o$o$o$$o$$$o$$o$o$$o$$o$$$o$o$o$o$o$o$o$o$o$ooo - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$o - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ " $$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ "$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ - $$$$$$$$$$$$$$$$$$nom$$$$$$$$$$$$$$$$$$$$$$ o$$$$" - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ooooo$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$""""" - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" - "$o$o$o$o$o$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" - "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" - "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$""" - """"""""""""""""""""""""""""""""""""""""""""""""""""" diff --git a/DRINKS/iHeartMalwares_THE_Purple_Drink.md b/DRINKS/iHeartMalwares_THE_Purple_Drink.md new file mode 100644 index 0000000..5855f54 --- /dev/null +++ b/DRINKS/iHeartMalwares_THE_Purple_Drink.md @@ -0,0 +1,15 @@ +# iHeartMalware's THE Purple Drink + +This is one of those drinks that is very strong but tastes +really...really good. Wonderful fruity drink, good as a shooter + +## Ingredients + +- 1 Part Kinky Pink Vodka +- 1 part Hypnotiq +- 1 Part Vodka + +## Instructions + +1. Mix into equal parts in a shot glass. Drink +2. Really like it? Mix a shot each into a glass. diff --git a/DRINKS/iHeartMalwares_THE_Purple_Drink.rst b/DRINKS/iHeartMalwares_THE_Purple_Drink.rst deleted file mode 100644 index 13fecb7..0000000 --- a/DRINKS/iHeartMalwares_THE_Purple_Drink.rst +++ /dev/null @@ -1,18 +0,0 @@ -iHeartMalware’s THE Purple Drink -================================ - -This is one of those drinks that is very strong but tastes really…really -good. Wonderful fruity drink, good as a shooter - -Ingredients ------------ - -- 1 Part Kinky Pink Vodka -- 1 part Hypnotiq -- 1 Part Vodka - -Instructions ------------- - -1. Mix into equal parts in a shot glass. Drink -2. Really like it? Mix a shot each into a glass. diff --git a/DRINKS/iHeartMalwares_rocket_league.md b/DRINKS/iHeartMalwares_rocket_league.md new file mode 100644 index 0000000..36f6ac1 --- /dev/null +++ b/DRINKS/iHeartMalwares_rocket_league.md @@ -0,0 +1,30 @@ +# iHeartMalware's Rocket League + +Lots of rocket league was played while drinking this. This is also a +good all-around-fruity drink that is...dangerous. Like a +rocket...league. + +## Ingredients + +- 16 oz glass +- Blue raspberry vodka (I like Svedka) +- Blue curacao +- Mango / peach juice +- Pineapple Juice +- Orange Bitters + +## Instructions + +1. Fill glass 3/4 of the way with ice. +2. Fill glass between 1/3 and 1/2 with raspberry vodka. (depending on + taste) +3. Splash of blue curacao. Don't go too heavy! +4. Fill \< 1/4 of the way with mango / peach juice. +5. Fill \> 1/4 of pineapple juice. (You'll want a smidge more pineapple + than the mango / peach) +6. Add 7 dashes of orange bitters, and stir +7. Stir and drink! It should be somewhere between green and blue. If + it's green...you did it right. If blue...go lighter on the curacao! + +Note: This is one of those "you don't taste the alcohol" drinks, but it +still has a high content. So be careful. :) diff --git a/DRINKS/iHeartMalwares_rocket_league.rst b/DRINKS/iHeartMalwares_rocket_league.rst deleted file mode 100644 index 707ad61..0000000 --- a/DRINKS/iHeartMalwares_rocket_league.rst +++ /dev/null @@ -1,32 +0,0 @@ -iHeartMalware’s Rocket League -============================= - -Lots of rocket league was played while drinking this. This is also a -good all-around-fruity drink that is…dangerous. Like a rocket…league. - -Ingredients ------------ - -- 16 oz glass -- Blue raspberry vodka (I like Svedka) -- Blue curacao -- Mango / peach juice -- Pineapple Juice -- Orange Bitters - -Instructions ------------- - -1. Fill glass 3/4 of the way with ice. -2. Fill glass between 1/3 and 1/2 with raspberry vodka. (depending on - taste) -3. Splash of blue curacao. Don’t go too heavy! -4. Fill < 1/4 of the way with mango / peach juice. -5. Fill > 1/4 of pineapple juice. (You’ll want a smidge more pineapple - than the mango / peach) -6. Add 7 dashes of orange bitters, and stir -7. Stir and drink! It should be somewhere between green and blue. If - it’s green…you did it right. If blue…go lighter on the curacao! - -Note: This is one of those “you don’t taste the alcohol” drinks, but it -still has a high content. So be careful. :) diff --git a/DRINKS/iHeartMalwares_sweet_tart.md b/DRINKS/iHeartMalwares_sweet_tart.md new file mode 100644 index 0000000..07d2bcd --- /dev/null +++ b/DRINKS/iHeartMalwares_sweet_tart.md @@ -0,0 +1,23 @@ +# iHeartMalware's Sweet Tart Drink + +Want a good cheap party drink? This is it. + +## Ingredients + +- 3 2-liters of Sunkist +- 3 packets of grape kool-aid +- 3 packets of cherry kool-aid +- 1 fifth of 190 proof Everclear (151 proof works too, or vodka, + depending on what's legal in your state) + +## Instructions + +1. Pour out enough Sunkist of each bottle down to the label. +2. Add 1 packet of grape and 1 packet of cherry kool-aid to each + bottle. +3. Split bottle of everclear between the 3 bottles. +4. Put top back on, and give it a quick turn. This is a very strong + party drink, so keep that in mind. + +Note: You can also add the Sunkist back to the containers and use this +as a mixer. Tastes just like a sweet tart! diff --git a/DRINKS/iHeartMalwares_sweet_tart.rst b/DRINKS/iHeartMalwares_sweet_tart.rst deleted file mode 100644 index 2682671..0000000 --- a/DRINKS/iHeartMalwares_sweet_tart.rst +++ /dev/null @@ -1,25 +0,0 @@ -iHeartMalware’s Sweet Tart Drink -================================ - -Want a good cheap party drink? This is it. - -Ingredients ------------ - -- 3 2-liters of Sunkist -- 3 packets of grape kool-aid -- 3 packets of cherry kool-aid -- 1 fifth of 190 proof Everclear (151 proof works too, or vodka, - depending on what’s legal in your state) - -Instructions ------------- - -1. Pour out enough Sunkist of each bottle down to the label. -2. Add 1 packet of grape and 1 packet of cherry kool-aid to each bottle. -3. Split bottle of everclear between the 3 bottles. -4. Put top back on, and give it a quick turn. This is a very strong - party drink, so keep that in mind. - -Note: You can also add the Sunkist back to the containers and use this -as a mixer. Tastes just like a sweet tart! diff --git a/DRINKS/moonbas3_new_fashioned.rst b/DRINKS/moonbas3_new_fashioned.md similarity index 52% rename from DRINKS/moonbas3_new_fashioned.rst rename to DRINKS/moonbas3_new_fashioned.md index 63626b1..80da2dc 100644 --- a/DRINKS/moonbas3_new_fashioned.rst +++ b/DRINKS/moonbas3_new_fashioned.md @@ -1,13 +1,8 @@ -Moonbas3’s New Fashioned -======================== +# Moonbas3's New Fashioned -.. figure:: https://i.imgur.com/HqXth1P.jpg - :alt: Moonbas3 New Fashioned +![Moonbas3 New Fashioned](https://i.imgur.com/HqXth1P.jpg) - Moonbas3 New Fashioned - -Discussion ----------- +## Discussion As a long time fan of the Old Fashioned, I was sitting in a bar in Birmingham one day and ordering them by the score while talking to some @@ -18,7 +13,7 @@ complementary drink for lighter non-red meat dishes. I have since made my own amaretto and use that in this recipe, but it is far from required.. -Making Old and New Fashioned’s is fun for an aspiring amateur bartender. +Making Old and New Fashioned's is fun for an aspiring amateur bartender. You get to muddle and mix, slice and stir. Something about it incorporates everything that is good in being a mixologist while still preserving the basics. I love serving these when people come over, it @@ -28,31 +23,28 @@ The only difference between this and a traditional Old Fashioned is the addition of the amaretto. Some people also use 1 tsp of wild flower honey instead of the sugar cube, but I enjoy proper muddling. -Required Equipment ------------------- - -- Muddler -- Whiskey Glass -- Big Ol’ Ice Cubes (optional) - -Ingredients ------------ - -- 3oz (1 shots) of Wild Roses Bourbon -- 1oz Amaretto -- 2 dashes of Angostura Bitters -- Big Ol’ Ice Ball -- Orange Round -- Sugar Cube -- Seltzer Water - -Directions ----------- - -1. Put sugar cube into whiskey glass, add a splash of seltzer water, and - muddle until smooth. -2. Slice the orange round, put it and the big ol’ ice ball into the - whiskey glass. -3. Add Bourbon, Amaretto and Bitters to the glass. -4. Stir stir stir, and serve. -5. (Optional) Add maraschino cherry. +## Required Equipment + +- Muddler +- Whiskey Glass +- Big Ol' Ice Cubes (optional) + +## Ingredients + +- 3oz (1 shots) of Wild Roses Bourbon +- 1oz Amaretto +- 2 dashes of Angostura Bitters +- Big Ol' Ice Ball +- Orange Round +- Sugar Cube +- Seltzer Water + +## Directions + +1. Put sugar cube into whiskey glass, add a splash of seltzer water, + and muddle until smooth. +2. Slice the orange round, put it and the big ol' ice ball into the + whiskey glass. +3. Add Bourbon, Amaretto and Bitters to the glass. +4. Stir stir stir, and serve. +5. (Optional) Add maraschino cherry. diff --git a/DRINKS/tiptone-mexican-martini.md b/DRINKS/tiptone-mexican-martini.md new file mode 100644 index 0000000..c28ebad --- /dev/null +++ b/DRINKS/tiptone-mexican-martini.md @@ -0,0 +1,26 @@ +# tiptone's Mexican Martini + +**Serving Size**: Two Cocktails, **Calories**: Yes, definitely + +::: {.images alt="Mexican Martini"} +images/tiptone-mexican-martini. +::: + +## Ingredients + +- 3oz Hornitos Reposado +- 2oz Sprite +- 1oz Cointreau +- 1oz Fresh lime juice +- 1oz Fresh orange juice +- 1tbsp olive juice + +## Recipe + +1. Salt the rim of two cocktail glasses +2. Fill a cocktail shaker with ice and ingredients +3. Shake vigorously +4. Strain into cocktail glasses and garnish with olive(s)\* +5. Enjoy + +**mrstiptone insists this should be jalapeno stuffed olives** diff --git a/DRINKS/tiptone-mexican-martini.rst b/DRINKS/tiptone-mexican-martini.rst deleted file mode 100644 index b3944b1..0000000 --- a/DRINKS/tiptone-mexican-martini.rst +++ /dev/null @@ -1,28 +0,0 @@ -tiptone’s Mexican Martini -========================= - -**Serving Size**: Two Cocktails, **Calories**: Yes, definitely - -.. images:: images/tiptone-mexican-martini. - :alt: Mexican Martini - -Ingredients ------------ - -- 3oz Hornitos Reposado -- 2oz Sprite -- 1oz Cointreau -- 1oz Fresh lime juice -- 1oz Fresh orange juice -- 1tbsp olive juice - -Recipe ------- - -1. Salt the rim of two cocktail glasses -2. Fill a cocktail shaker with ice and ingredients -3. Shake vigorously -4. Strain into cocktail glasses and garnish with olive(s)\* -5. Enjoy - -**mrstiptone insists this should be jalapeno stuffed olives** diff --git a/ENTREES/0xrnair_monster_chicken_burrito.md b/ENTREES/0xrnair_monster_chicken_burrito.md new file mode 100644 index 0000000..3b519df --- /dev/null +++ b/ENTREES/0xrnair_monster_chicken_burrito.md @@ -0,0 +1,43 @@ +# Monster Chicken Burrito (Extra Hot) + +A quick way to get a large meal ready with the least amount of effort. + +## Ingredients + +- 1/2 Can Pinto Beans/ Black Beans +- 1 Boneless Chicken Breast +- 3 Tablespoon Sriracha Sauce +- 1 Avocado (Per your prefernce More = Juicy ) +- Couple of Flakes of Scorpion Pepper (Spice it up) *Optional* +- Vinegar (White) +- 3/4 Tablespoon salt +- Old Bay seasoning +- 1 tsp Red Chilli Powder (Optional) +- 1/2 Lemon +- 1 Large (very) Tortilla + +## Preparation + +The preparation is pretty straightforward. Wash/Drain your chicken then +add in salt, generous amounts of Oldbay seasoning (2 fistful) , red +chilli powder and mix them well. Then add in half lemon and a 4 +tablespoons of white vinegar. Keep it overnight. *Poking some holes into +the chicken helps too* + +## Instructions + +1. Season with Pepper heavily and then microwave the chicken breast for + 8-11 minutes (Depending on the power of your microwave), most large + microwaves cook it around 8.45 minutes; also let it rest for 4 + minutes in the microwave. Use a spoon and blast the chicken to thin + shreds. +2. Get the tortilla heated and then plaster half the avocado as the + base, Add in the chicken shreds, 4 tablespoon of beans, 3 tablespoon + sriracha sauce, flakes, remaining avocado and wrap it (the hard + part). + +Have fun stuffing yourself. + +In case stuffing all the ingredients into a single tortilla seems too +much for you, you can split the above into 2 burritos but will lose the +"monster" tag. diff --git a/ENTREES/0xrnair_monster_chicken_burrito.rst b/ENTREES/0xrnair_monster_chicken_burrito.rst deleted file mode 100644 index c51c600..0000000 --- a/ENTREES/0xrnair_monster_chicken_burrito.rst +++ /dev/null @@ -1,47 +0,0 @@ -Monster Chicken Burrito (Extra Hot) -=================================== - -A quick way to get a large meal ready with the least amount of effort. - -Ingredients ------------ - -- 1/2 Can Pinto Beans/ Black Beans -- 1 Boneless Chicken Breast -- 3 Tablespoon Sriracha Sauce -- 1 Avocado (Per your prefernce More = Juicy ) -- Couple of Flakes of Scorpion Pepper (Spice it up) *Optional* -- Vinegar (White) -- 3/4 Tablespoon salt -- Old Bay seasoning -- 1 tsp Red Chilli Powder (Optional) -- 1/2 Lemon -- 1 Large (very) Tortilla - -Preparation ------------ - -The preparation is pretty straightforward. Wash/Drain your chicken then -add in salt, generous amounts of Oldbay seasoning (2 fistful) , red -chilli powder and mix them well. Then add in half lemon and a 4 -tablespoons of white vinegar. Keep it overnight. *Poking some holes into -the chicken helps too* - -Instructions ------------- - -1. Season with Pepper heavily and then microwave the chicken breast for - 8-11 minutes (Depending on the power of your microwave), most large - microwaves cook it around 8.45 minutes; also let it rest for 4 - minutes in the microwave. Use a spoon and blast the chicken to thin - shreds. -2. Get the tortilla heated and then plaster half the avocado as the - base, Add in the chicken shreds, 4 tablespoon of beans, 3 tablespoon - sriracha sauce, flakes, remaining avocado and wrap it (the hard - part). - -Have fun stuffing yourself. - -In case stuffing all the ingredients into a single tortilla seems too -much for you, you can split the above into 2 burritos but will lose the -“monster” tag. diff --git a/ENTREES/BenHeise_Bangers_and_Mash.md b/ENTREES/BenHeise_Bangers_and_Mash.md new file mode 100644 index 0000000..1faec45 --- /dev/null +++ b/ENTREES/BenHeise_Bangers_and_Mash.md @@ -0,0 +1,93 @@ +# English-style Bangers and Mash + +If you are in some country other than England, you're going to have to +do some substitution because the exact kind of sausage traditionally +used for bangers and mash isn't readily available in the US. I've used +Andouille sausage for this recipe as its contents (pork) are the closest +packaged meat I can find in the US, however it lacks the spices that +bangers are traditionally made with. You'll want to experiment to find +the best flavor for your needs. This recipe as written feeds 4-6 (or 1-2 +Americans). + +## Ingredients + +- 3+ Lbs of Yukon Gold potatoes +- 1 pack Andouille brautwurst +- 1 can of Bush's country style baked beans +- 1 pack of french onion gravy mix +- Kosher salt +- Whatever freshly ground pepper you can scrounge +- 1 stick of unsalted butter +- 4 ounces of heavy cream (or creme fraiche if you live in a country + with a working economy) +- 1/2 cup of whole milk +- Parsley for garnish (optional) + +## Equipment + +- An oversized pot for boiling potatoes +- Two smaller pots +- An oven +- A stovetop or other cooking range +- A flat oven pan (with raised sides so juice doesn't spill) +- A baking rack +- A colander +- A meat thermometer (I prefer this one ) + +## Instructions + +1. If you prefer to have bits of potatoe skin left in your mashed + potatoes, don't peel them. Otherwise, peel and cut 3 Lbs of potatoes + into about 1 inch cubes. Don't cut potatoes with hate in your heart, + cut thinking pure thoughts or you'll end up cutting yourself and + bleeding all over everything and dying and going straight down to + Oracle. +2. Preheat your oven to 425. Pour \~8 cups of water to into your + oversized pot and bring it to a roiling boil. +3. While the water is coming to a boil, put your bangers on a baking + rack on a pan in the oven for 18-20 minutes. +4. Once your bangers are in the oven, add about a tablespoon of salt + and your spuds to the boiling water. Boil the potatoes for 15-25 + mins, they are done when they are tender all the way through. Test + this by skewering it with a fork against the side of the pot, the + fork should slide through the cooked potatoe easily. +5. Open your can of top shelf, high quality, freedom legumes (aka baked + beans). Use one of the smaller pots to simmer the beans on a + stovetop burner until they stop cursing. If your beans were not + cursing, you got the wrong ones. You want the really salty ones. +6. After the bangers are done cooking, turn your bangers over. Put the + bangers back in the oven for another 2-4 minutes to brown evenly. +7. Pull the bangers out of the oven and get your meat monitoring stick. + Ensure the center of the bangers is hotter than 160F (e.coli dies at + this temperature), turn the oven off, put the bangers back in to + warm because other projects are taking up your kitchen counter space + and in hindsight you probably should've cleared those off first. + +\" + +8. Look for a colander for your potatoes, fail to find one, realize + colanders are probably how the French spy on most Americans and that + you're better off without one. Carefully drain the water from the + pot. +9. Once the water is drained, add salt & pepper to taste to the pot, + pour 1/2 cup of milk and heavy cream because creme fraiche isn't a + thing in your country apparently. Mash the potatoes. +10. Use one of the smaller pots and follow the recipe on the back of the + mix to make your French onion gravy. Making French onion gravy from + scratch is out of the scope of this recipe. +11. Plate the mash, put the bangers on top of the mash, scoop a bunch of + the onion gravy over the bangers, put a big spoonful of freedom + legumes on the side of the mash, and eat because you started off + this venture already hungry and following instructions with low + blood sugar is hard. +12. Garnish with Parsley + +![image](images/DS-aV05WkAAfTjd.jpg){.align-center} + +![image](images/DS-ez01WAAAjwCY.jpg){.align-center} + +![image](images/DS-hKTvW4AAP118.jpg){.align-center} + +![image](images/DS-p7YYWkAMlRRK.jpg){.align-center} + +![image](images/DS-rKFAWkAIUih1.jpg){.align-center} diff --git a/ENTREES/BenHeise_Bangers_and_Mash.rst b/ENTREES/BenHeise_Bangers_and_Mash.rst deleted file mode 100644 index 7c7d086..0000000 --- a/ENTREES/BenHeise_Bangers_and_Mash.rst +++ /dev/null @@ -1,112 +0,0 @@ -English-style Bangers and Mash -============================== - -If you are in some country other than England, you’re going to have to -do some substitution because the exact kind of sausage traditionally -used for bangers and mash isn’t readily available in the US. I’ve used -Andouille sausage for this recipe as its contents (pork) are the closest -packaged meat I can find in the US, however it lacks the spices that -bangers are traditionally made with. You’ll want to experiment to find -the best flavor for your needs. This recipe as written feeds 4-6 (or 1-2 -Americans). - -Ingredients ------------ - -- 3+ Lbs of Yukon Gold potatoes -- 1 pack Andouille brautwurst -- 1 can of Bush’s country style baked beans -- 1 pack of french onion gravy mix -- Kosher salt -- Whatever freshly ground pepper you can scrounge -- 1 stick of unsalted butter -- 4 ounces of heavy cream (or creme fraiche if you live in a country - with a working economy) -- 1/2 cup of whole milk -- Parsley for garnish (optional) - -Equipment ---------- - -- An oversized pot for boiling potatoes -- Two smaller pots -- An oven -- A stovetop or other cooking range -- A flat oven pan (with raised sides so juice doesn’t spill) -- A baking rack -- A colander -- A meat thermometer (I prefer this one https://amzn.to/2BnCx5g) - -Instructions ------------- - -1. If you prefer to have bits of potatoe skin left in your mashed - potatoes, don’t peel them. Otherwise, peel and cut 3 Lbs of potatoes - into about 1 inch cubes. Don’t cut potatoes with hate in your heart, - cut thinking pure thoughts or you’ll end up cutting yourself and - bleeding all over everything and dying and going straight down to - Oracle. - -2. Preheat your oven to 425. Pour ~8 cups of water to into your - oversized pot and bring it to a roiling boil. - -3. While the water is coming to a boil, put your bangers on a baking - rack on a pan in the oven for 18-20 minutes. - -4. Once your bangers are in the oven, add about a tablespoon of salt and - your spuds to the boiling water. Boil the potatoes for 15-25 mins, - they are done when they are tender all the way through. Test this by - skewering it with a fork against the side of the pot, the fork should - slide through the cooked potatoe easily. - -5. Open your can of top shelf, high quality, freedom legumes (aka baked - beans). Use one of the smaller pots to simmer the beans on a stovetop - burner until they stop cursing. If your beans were not cursing, you - got the wrong ones. You want the really salty ones. - -6. After the bangers are done cooking, turn your bangers over. Put the - bangers back in the oven for another 2-4 minutes to brown evenly. - -7. Pull the bangers out of the oven and get your meat monitoring stick. - Ensure the center of the bangers is hotter than 160F (e.coli dies at - this temperature), turn the oven off, put the bangers back in to warm - because other projects are taking up your kitchen counter space and - in hindsight you probably should’ve cleared those off first. - -" - -8. Look for a colander for your potatoes, fail to find one, realize - colanders are probably how the French spy on most Americans and that - you’re better off without one. Carefully drain the water from the - pot. - -9. Once the water is drained, add salt & pepper to taste to the pot, - pour 1/2 cup of milk and heavy cream because creme fraiche isn’t a - thing in your country apparently. Mash the potatoes. - -10. Use one of the smaller pots and follow the recipe on the back of the - mix to make your French onion gravy. Making French onion gravy from - scratch is out of the scope of this recipe. - -11. Plate the mash, put the bangers on top of the mash, scoop a bunch of - the onion gravy over the bangers, put a big spoonful of freedom - legumes on the side of the mash, and eat because you started off - this venture already hungry and following instructions with low - blood sugar is hard. - -12. Garnish with Parsley - -.. image:: images/DS-aV05WkAAfTjd.jpg - :align: center - -.. image:: images/DS-ez01WAAAjwCY.jpg - :align: center - -.. image:: images/DS-hKTvW4AAP118.jpg - :align: center - -.. image:: images/DS-p7YYWkAMlRRK.jpg - :align: center - -.. image:: images/DS-rKFAWkAIUih1.jpg - :align: center diff --git a/ENTREES/Dual_Core-Mom-s_Spaghetti.md b/ENTREES/Dual_Core-Mom-s_Spaghetti.md new file mode 100644 index 0000000..4b0733d --- /dev/null +++ b/ENTREES/Dual_Core-Mom-s_Spaghetti.md @@ -0,0 +1,31 @@ +# Dual Core's Mom's Spaghetti + +His palm's spaghetti, knees weak, arms spaghetti. There's vomit on his +sweater spaghetti. Mom's spaghetti. + +## Ingredients + +- 3 cans chopped clams (minced also fine) +- 1/3 cup olive oil +- 1/4 cup unsalted butter +- 2 cloves garlic, crushed `xor` 2 tsp minced garlic +- 2 Tbsp chopped fresh parsley `xor` 2 tsp dried parsley +- 1 tsp salt +- 16oz spaghetti, cooked and drained + +## Instructions + +1. Drain clams while reserving 3/4 cup liquid; set aside. +2. In a medium skillet, slowly heat olive oil and butter. +3. Add garlic and sauté until golden brown. Remove from heat. +4. Stir in clam liquid, parsley, and salt; bring to boiling. +5. Reduce heat: simmer uncovered for 10 minutes. +6. Add clams, simmer 3 minutes. + +Serve over hot spaghetti. Makes 3-4 servings. Salad and Italian bread +complete this meal. + +## Obligatory Meme Reference + +You better lose yourself in your Mom's spaghetti, it's ready. + diff --git a/ENTREES/Dual_Core-Mom-s_Spaghetti.rst b/ENTREES/Dual_Core-Mom-s_Spaghetti.rst deleted file mode 100644 index 7026a49..0000000 --- a/ENTREES/Dual_Core-Mom-s_Spaghetti.rst +++ /dev/null @@ -1,35 +0,0 @@ -Dual Core’s Mom’s Spaghetti -=========================== - -His palm’s spaghetti, knees weak, arms spaghetti. There’s vomit on his -sweater spaghetti. Mom’s spaghetti. - -Ingredients ------------ - -- 3 cans chopped clams (minced also fine) -- 1/3 cup olive oil -- 1/4 cup unsalted butter -- 2 cloves garlic, crushed ``xor`` 2 tsp minced garlic -- 2 Tbsp chopped fresh parsley ``xor`` 2 tsp dried parsley -- 1 tsp salt -- 16oz spaghetti, cooked and drained - -Instructions ------------- - -1. Drain clams while reserving 3/4 cup liquid; set aside. -2. In a medium skillet, slowly heat olive oil and butter. -3. Add garlic and sauté until golden brown. Remove from heat. -4. Stir in clam liquid, parsley, and salt; bring to boiling. -5. Reduce heat: simmer uncovered for 10 minutes. -6. Add clams, simmer 3 minutes. - -Serve over hot spaghetti. Makes 3-4 servings. Salad and Italian bread -complete this meal. - -Obligatory Meme Reference -------------------------- - -You better lose yourself in your Mom’s spaghetti, it’s ready. -https://youtu.be/zg-ypZqXAYQ diff --git a/ENTREES/_section.md b/ENTREES/_section.md new file mode 100644 index 0000000..ae6217e --- /dev/null +++ b/ENTREES/_section.md @@ -0,0 +1,5 @@ +# Entrees + +- This is a collection of main courses provided by the community + +![foods](https://images.pexels.com/photos/461198/pexels-photo-461198.jpeg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb) diff --git a/ENTREES/_section.rst b/ENTREES/_section.rst deleted file mode 100644 index 203ab7f..0000000 --- a/ENTREES/_section.rst +++ /dev/null @@ -1,9 +0,0 @@ -Entrees -======= - -- This is a collection of main courses provided by the community - -.. figure:: https://images.pexels.com/photos/461198/pexels-photo-461198.jpeg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb - :alt: foods - - foods diff --git a/ENTREES/aaron_the_king_dishwasher_salmon.md b/ENTREES/aaron_the_king_dishwasher_salmon.md new file mode 100644 index 0000000..6fb52fd --- /dev/null +++ b/ENTREES/aaron_the_king_dishwasher_salmon.md @@ -0,0 +1,24 @@ +# Dishwasher Salmon + +Poached salmon done with your dishes! + +## Ingredients + +- Salmon +- Metal foil of your choice +- Spices (optional) +- Extra Virgin Olive Oil (optional) + +## Instructions + +1. Place the salmon on a large sheet of metal foil +2. Put the spices and oil on the salmon +3. Fold the metal foil around the salmon; make sure it is watertight +4. Place the wrapped salmon in your dishwasher +5. Run the dishwasher +6. Unwrap the salmon and enjoy + +## Tips n' Tricks! + +- Serve the salmon on some of your freshly cleaned dishes. +- This recipie is great for dinner parties. diff --git a/ENTREES/aaron_the_king_dishwasher_salmon.rst b/ENTREES/aaron_the_king_dishwasher_salmon.rst deleted file mode 100644 index 7ecc96f..0000000 --- a/ENTREES/aaron_the_king_dishwasher_salmon.rst +++ /dev/null @@ -1,28 +0,0 @@ -Dishwasher Salmon -================= - -Poached salmon done with your dishes! - -Ingredients ------------ - -- Salmon -- Metal foil of your choice -- Spices (optional) -- Extra Virgin Olive Oil (optional) - -Instructions ------------- - -1. Place the salmon on a large sheet of metal foil -2. Put the spices and oil on the salmon -3. Fold the metal foil around the salmon; make sure it is watertight -4. Place the wrapped salmon in your dishwasher -5. Run the dishwasher -6. Unwrap the salmon and enjoy - -Tips n’ Tricks! ---------------- - -- Serve the salmon on some of your freshly cleaned dishes. -- This recipie is great for dinner parties. diff --git a/ENTREES/boredsillys_baked_gringo.rst b/ENTREES/boredsillys_baked_gringo.md similarity index 66% rename from ENTREES/boredsillys_baked_gringo.rst rename to ENTREES/boredsillys_baked_gringo.md index 2271481..6dd32b6 100644 --- a/ENTREES/boredsillys_baked_gringo.rst +++ b/ENTREES/boredsillys_baked_gringo.md @@ -1,30 +1,27 @@ -Boredsilly’s Baked Gringo -========================= +# Boredsilly's Baked Gringo -by @boredsilly +by \@boredsilly -Why is it called a Baked Gringo? It’s full of white cheese, mild Spanish +Why is it called a Baked Gringo? It's full of white cheese, mild Spanish chilies, and is 420 friendly (quick, easy, and gloriously cheesy). This is a family favorite for comfort food. -Ingredients ------------ +## Ingredients -- 20 to 24 slices of thinly sliced smoked ham -- 2 pounds of Monterrey Jack (block form) -- 3 small cans of whole green chilies or fresh roasted, skinned, and - deseeded Anaheim chilies (fresh takes longer but is worth it) -- 1 package of small flour tortillas (10 to 12 count) -- 3 cups of finely shredded cheddar cheese (sharp or mild) +- 20 to 24 slices of thinly sliced smoked ham +- 2 pounds of Monterrey Jack (block form) +- 3 small cans of whole green chilies or fresh roasted, skinned, and + deseeded Anaheim chilies (fresh takes longer but is worth it) +- 1 package of small flour tortillas (10 to 12 count) +- 3 cups of finely shredded cheddar cheese (sharp or mild) -Instructions ------------- +## Instructions 1. Preheat oven to 350 degrees Fahrenheit 2. Cut the cheese blocks into 1/2 to 3/4 inch rectangular slices 3. Open and slice the whole green chilies length wise into 1 to 2 inch wide -4. Take two slices of ham and roll/fold them up so they’re only a few +4. Take two slices of ham and roll/fold them up so they're only a few inches across and lay them down the center of a tortilla 5. Place a straight line of chilies along the center on top of the ham 6. Top the ham and chilies with one or more slabs of the white cheese diff --git a/ENTREES/boredsillys_excuse_to_eat_bacon_avocado_sandwich.md b/ENTREES/boredsillys_excuse_to_eat_bacon_avocado_sandwich.md new file mode 100644 index 0000000..6920a2a --- /dev/null +++ b/ENTREES/boredsillys_excuse_to_eat_bacon_avocado_sandwich.md @@ -0,0 +1,39 @@ +# "Excuse to Eat Bacon" Avocado Sandwich + +by \@boredsilly + +My wife used to crave avocado sandwiches while she was pregnant but they +were too plain for me. That inspired me to kick them up to an unhealthy +level so I could enjoy them too. It also gave me another delivery +mechanism for bacon. + +## Ingredients + +- Bacon +- Cracked black pepper +- 1 ripe avocado +- 1 small red onion +- Alfalfa sprouts +- Mayonnaise +- Hot sauce (Like Tapatio) +- 2 slices of your favorite bread or toast +- Salt (optional) + +## Instructions + +1. Crack the black pepper over several slices of bacon (at least 2) and + cook until crispy. +2. Mix the hot sauce into the mayonnaise and spread evenly over both + slices of bread. +3. Cut the avocado in half, remove pit, and then slice the flesh into + 1/2 inch slices. +4. Scoop the slices out of the avocado shell and cover the first slice + of bread with them. +5. Cut the red onion into thin slices and put those atop the avocado + slices. +6. Add the bacon. **Do it now.** +7. Rinse and dry the alfalfa sprouts then make a thin blanket over the + bacon. +8. **Optional** - Dust the sprouts with salt to amplify your blood + pressure increase from the bacon. +9. Top with the other slice of bread and enjoy. diff --git a/ENTREES/boredsillys_excuse_to_eat_bacon_avocado_sandwich.rst b/ENTREES/boredsillys_excuse_to_eat_bacon_avocado_sandwich.rst deleted file mode 100644 index 443b183..0000000 --- a/ENTREES/boredsillys_excuse_to_eat_bacon_avocado_sandwich.rst +++ /dev/null @@ -1,42 +0,0 @@ -“Excuse to Eat Bacon” Avocado Sandwich -====================================== - -by @boredsilly - -My wife used to crave avocado sandwiches while she was pregnant but they -were too plain for me. That inspired me to kick them up to an unhealthy -level so I could enjoy them too. It also gave me another delivery -mechanism for bacon. - -Ingredients ------------ - -- Bacon -- Cracked black pepper -- 1 ripe avocado -- 1 small red onion -- Alfalfa sprouts -- Mayonnaise -- Hot sauce (Like Tapatio) -- 2 slices of your favorite bread or toast -- Salt (optional) - -Instructions ------------- - -1. Crack the black pepper over several slices of bacon (at least 2) and - cook until crispy. -2. Mix the hot sauce into the mayonnaise and spread evenly over both - slices of bread. -3. Cut the avocado in half, remove pit, and then slice the flesh into - 1/2 inch slices. -4. Scoop the slices out of the avocado shell and cover the first slice - of bread with them. -5. Cut the red onion into thin slices and put those atop the avocado - slices. -6. Add the bacon. **Do it now.** -7. Rinse and dry the alfalfa sprouts then make a thin blanket over the - bacon. -8. **Optional** - Dust the sprouts with salt to amplify your blood - pressure increase from the bacon. -9. Top with the other slice of bread and enjoy. diff --git a/ENTREES/da_667s_cheesy_chicken_chili.md b/ENTREES/da_667s_cheesy_chicken_chili.md new file mode 100644 index 0000000..6926bd4 --- /dev/null +++ b/ENTREES/da_667s_cheesy_chicken_chili.md @@ -0,0 +1,30 @@ +# \@da_667's Cheesy Chicken Chili + +A quick crock pot meal, because lord knows you don't have time to cook. + +## Ingredients + +- 1 Can of Pinto Beans +- 1 Can of Great White Northern Beans +- 1 Jar of Salsa +- 1 can of cream of chicken soup +- 1-2 boneless skinless chicken breast, cut up into bite-sized pieces, + or if you're lazy, you can use \~2 handfuls of frozen boneless + skinless chicken breast pieces + +## Optional + +- Shredded Cheese +- Tortilla Chips + +## Instructions + +1. Open the cans of beans and drain them, then dump the chicken, salsa, + cream of chicken, and beans into the crock pot. Mix the ingredients + if you're feeling fancy, if not, just let it go 4 hours on high or 8 + hours on low. +2. When ready to serve, serve into a bowl, top with shredded cheese. + You can also crush up tortilla chips (like you would saltine + crackers) to top the chili. Pairs well with hot sauce. +3. Serves about 2-3 people, refrigerates fairly well (will be really + thick) diff --git a/ENTREES/da_667s_cheesy_chicken_chili.rst b/ENTREES/da_667s_cheesy_chicken_chili.rst deleted file mode 100644 index 041ff2e..0000000 --- a/ENTREES/da_667s_cheesy_chicken_chili.rst +++ /dev/null @@ -1,34 +0,0 @@ -@da_667’s Cheesy Chicken Chili -============================== - -A quick crock pot meal, because lord knows you don’t have time to cook. - -Ingredients ------------ - -- 1 Can of Pinto Beans -- 1 Can of Great White Northern Beans -- 1 Jar of Salsa -- 1 can of cream of chicken soup -- 1-2 boneless skinless chicken breast, cut up into bite-sized pieces, - or if you’re lazy, you can use ~2 handfuls of frozen boneless - skinless chicken breast pieces - -Optional --------- - -- Shredded Cheese -- Tortilla Chips - -Instructions ------------- - -1. Open the cans of beans and drain them, then dump the chicken, salsa, - cream of chicken, and beans into the crock pot. Mix the ingredients - if you’re feeling fancy, if not, just let it go 4 hours on high or 8 - hours on low. -2. When ready to serve, serve into a bowl, top with shredded cheese. You - can also crush up tortilla chips (like you would saltine crackers) to - top the chili. Pairs well with hot sauce. -3. Serves about 2-3 people, refrigerates fairly well (will be really - thick) diff --git a/ENTREES/deviant_ollam_sous_vide_steak.rst b/ENTREES/deviant_ollam_sous_vide_steak.md similarity index 62% rename from ENTREES/deviant_ollam_sous_vide_steak.rst rename to ENTREES/deviant_ollam_sous_vide_steak.md index 10877dd..3689068 100644 --- a/ENTREES/deviant_ollam_sous_vide_steak.rst +++ b/ENTREES/deviant_ollam_sous_vide_steak.md @@ -1,38 +1,34 @@ -Deviant Ollam’s Sous Vide Steak -=============================== +# Deviant Ollam's Sous Vide Steak a simple set of details, but created after loads of testing and tweaking -over time, often in hotel rooms. see also “The Hotel Room Gourmet” here… -http://deviating.net/nom/ +over time, often in hotel rooms. see also "The Hotel Room Gourmet" +here... -Supplies --------- +## Supplies -- Sous vide immersion circulator (the Anova and the Joule are my two - favorites) -- Heavy duty zip-loc bags (freezer bag thickness) -- Searzall or cast iron over hot stove +- Sous vide immersion circulator (the Anova and the Joule are my two + favorites) +- Heavy duty zip-loc bags (freezer bag thickness) +- Searzall or cast iron over hot stove -Ingredients ------------ +## Ingredients -- Ribeye steaks (ideally ribeye cap, ideally USDA prime) -- Large grain french grey sea salt -- Cracked and ground black pepper -- Bay leaves -- Liquid aminos -- Butter from grass-fed cows -- High smoke point oil such as avocado oil or extra light olive oil - (optional) +- Ribeye steaks (ideally ribeye cap, ideally USDA prime) +- Large grain french grey sea salt +- Cracked and ground black pepper +- Bay leaves +- Liquid aminos +- Butter from grass-fed cows +- High smoke point oil such as avocado oil or extra light olive oil + (optional) -Instructions ------------- +## Instructions 1. Bring your water bath up to 126.5 degrees Fahrenheit (52.5 decrees Celsius). -2. Remove steak from butcher’s packaging and, while still cold, apply +2. Remove steak from butcher's packaging and, while still cold, apply heat (either Searzall or via stove top cast iron with high smoke - point oil) to sear all sides (this is known as the “pre-sear” + point oil) to sear all sides (this is known as the "pre-sear" method). 3. Place pre-seared (but still uncooked) steak into heavy duty ziploc bag, along with a pinch of french grey sea salt, one pinch of @@ -40,17 +36,17 @@ Instructions leaves, and three squirts of liquid aminos. (optional: a small drizzle of your oil can go in the bag, mostly to help with heat transfer and eliminating air pockets). -4. Use the “sous vide water immersion technique” to remove air from the - bag… slowly lower the bagged food into your water bath, letting the - pressure of the water force the air out through the top of the bag. - once the air is out of the bag, carefully seal it just above the - water line. +4. Use the "sous vide water immersion technique" to remove air from the + bag... slowly lower the bagged food into your water bath, letting + the pressure of the water force the air out through the top of the + bag. once the air is out of the bag, carefully seal it just above + the water line. 5. The temperature of your water bath may drop slightly as the cold meat bag is exposed to the water, but allow the immersion circulator to bring the water bath back up to temperature. once the target temperature is reached, keep the bag in the bath for a duration - calculated as “30 minutes for each finger of thickness of steak” … - that is to say, if you have a three-finger steak, you’d keep it + calculated as "30 minutes for each finger of thickness of steak" ... + that is to say, if you have a three-finger steak, you'd keep it rolling in the sous vide bath for 90 minutes. (NOTE: these times are just a minimum. it is entirely safe to keep a sous vide cook process running for hours or even days as long as the temperature is above @@ -61,8 +57,8 @@ Instructions you use tongs to remove your now-cooked steak. take care to not bring any large peppercorns or bay leaves with the steak. (NOTE: if you cooked for more than six hours, there is a chance that much of - the steak has broken down and is extra tender… take caution that it - doesn’t fall apart… use quality tongs). + the steak has broken down and is extra tender... take caution that + it doesn't fall apart... use quality tongs). 7. Bonus pro step: place whatever dishes will be used for serving and dining into the still-hot water bath to allow them to warm up while you finish the steak execution. diff --git a/ENTREES/dis0wn-TwoCheese_Bacon_Potato_and_Cauliflower_Soup.md b/ENTREES/dis0wn-TwoCheese_Bacon_Potato_and_Cauliflower_Soup.md new file mode 100644 index 0000000..e9d9435 --- /dev/null +++ b/ENTREES/dis0wn-TwoCheese_Bacon_Potato_and_Cauliflower_Soup.md @@ -0,0 +1,59 @@ +# dis0wn's Two-Cheese Bacon Potato and Cauliflower Soup + +My variation of a traditional Irish soup. Serve with a hearty bread to +dip. + +![image](images/dis0wn-TwoCheese_Bacon_Potato_and_Cauliflower_Soup.png){.align-center} + +## Ingredients + +- 1-2 Tbsp Butter +- 1/2 pound of bacon. Cooked and chopped finely. European-style bacon + tends to be more lean. +- 1 cup of chopped onions, pick your fav +- 2 cloves of garlic, roasted and chopped fine. add more if you like + garlic. See below for roasted garlic recipe. +- 5 cups of whole milk, 2% and skim won't work here. Sub in 1 cup of + heavy whipping cream for thickness. +- 1 pound of Yukon Gold potatoes, peeled and diced. +- 1 pound of cauliflower +- 1.5 cups of shredded sharp cheddar cheese (I prefer extra sharp) +- 1/2 cup crumbled feta cheese +- 1 Tbsp Tarragon +- 1.5 Tsp of salt + +## Instructions + +1. Melt the butter in a large sauce or pasta pan over medium-high heat. + If the butter starts getting dark, it's too hot. turn it down. Add + onion. Cook for 5-6 minutes, stirring frequently. +2. Add garlic and stir for a minute. Add milk, cauliflower, potatoes, + and salt. Bring to a boil. Stir occasionally +3. Reduce heat to low, cover and simmer for 15 minutes or until + potatoes are tender. Stir occasionally but be sure to scrape the + bottom of the pan to get the tasty bits of onion and garlic into the + mix. +4. Working 2 cups at a time, process the soup in a food processor or + blender. Optionally, you can use a stick blender and leave it in the + pan. Blend until smooth. Return it to the saucepan and heat it + through over medium heat. +5. Remove from heat and stir in cheddar cheese and half of the feta. + Stir until melted. +6. Ladel into a bowl for serving. Sprinkle tarragon over the top. Place + a small amount of feta in the middle and sprinkle bacon over the + top. + +## Roasted Garlic + +1. Pre-heat oven to 375F +2. Cut just the top off the garlic bulb. +3. Place bulb on a small sheet of aluminum foil and drizzle olive oil + over the top. Try to let it soak into the middle of the bulb. +4. Close the foil around the bulb and place it in the oven on a cookie + sheet or right on the rack. +5. Bake for about an hour. +6. Remove from foil and remove all the garlic casings. Squeezing from + the bottom of the clove will usually allow the garlic meat to come + out in one piece. +7. Keep in a tupperware in the fridge. Good for several weeks. Add + olive oil if it starts to dry out. diff --git a/ENTREES/dis0wn-TwoCheese_Bacon_Potato_and_Cauliflower_Soup.rst b/ENTREES/dis0wn-TwoCheese_Bacon_Potato_and_Cauliflower_Soup.rst deleted file mode 100644 index 0ef2e69..0000000 --- a/ENTREES/dis0wn-TwoCheese_Bacon_Potato_and_Cauliflower_Soup.rst +++ /dev/null @@ -1,62 +0,0 @@ -dis0wn’s Two-Cheese Bacon Potato and Cauliflower Soup -===================================================== - -My variation of a traditional Irish soup. Serve with a hearty bread to -dip. - -.. image:: images/dis0wn-TwoCheese_Bacon_Potato_and_Cauliflower_Soup.png - :align: center - -Ingredients ------------ - -- 1-2 Tbsp Butter -- 1/2 pound of bacon. Cooked and chopped finely. European-style bacon - tends to be more lean. -- 1 cup of chopped onions, pick your fav -- 2 cloves of garlic, roasted and chopped fine. add more if you like - garlic. See below for roasted garlic recipe. -- 5 cups of whole milk, 2% and skim won’t work here. Sub in 1 cup of - heavy whipping cream for thickness. -- 1 pound of Yukon Gold potatoes, peeled and diced. -- 1 pound of cauliflower -- 1.5 cups of shredded sharp cheddar cheese (I prefer extra sharp) -- 1/2 cup crumbled feta cheese -- 1 Tbsp Tarragon -- 1.5 Tsp of salt - -Instructions ------------- - -1. Melt the butter in a large sauce or pasta pan over medium-high heat. - If the butter starts getting dark, it’s too hot. turn it down. Add - onion. Cook for 5-6 minutes, stirring frequently. -2. Add garlic and stir for a minute. Add milk, cauliflower, potatoes, - and salt. Bring to a boil. Stir occasionally -3. Reduce heat to low, cover and simmer for 15 minutes or until potatoes - are tender. Stir occasionally but be sure to scrape the bottom of the - pan to get the tasty bits of onion and garlic into the mix. -4. Working 2 cups at a time, process the soup in a food processor or - blender. Optionally, you can use a stick blender and leave it in the - pan. Blend until smooth. Return it to the saucepan and heat it - through over medium heat. -5. Remove from heat and stir in cheddar cheese and half of the feta. - Stir until melted. -6. Ladel into a bowl for serving. Sprinkle tarragon over the top. Place - a small amount of feta in the middle and sprinkle bacon over the top. - -Roasted Garlic --------------- - -1. Pre-heat oven to 375F -2. Cut just the top off the garlic bulb. -3. Place bulb on a small sheet of aluminum foil and drizzle olive oil - over the top. Try to let it soak into the middle of the bulb. -4. Close the foil around the bulb and place it in the oven on a cookie - sheet or right on the rack. -5. Bake for about an hour. -6. Remove from foil and remove all the garlic casings. Squeezing from - the bottom of the clove will usually allow the garlic meat to come - out in one piece. -7. Keep in a tupperware in the fridge. Good for several weeks. Add olive - oil if it starts to dry out. diff --git a/ENTREES/elegin_balsamic_tempeh.md b/ENTREES/elegin_balsamic_tempeh.md new file mode 100644 index 0000000..e234435 --- /dev/null +++ b/ENTREES/elegin_balsamic_tempeh.md @@ -0,0 +1,46 @@ +# Elegin's Balsamic Tempeh + +This is the template to view your awesome recipe. If you view it as raw, +you can see the markup for it and use this as a template + +## Ingredients + +-1 package of tempeh (8oz) -1/2 cup of balsamic vinegar (125mL) -4 +teaspoons tamari or soy sauce (20mL) -1 tablespoon maple syrup (15mL) -1 +tablespoon olive oil (15mL) + +## Instructions + +- Cut tempheh in to desired shape +- In baking dish add all ingredients +- Add tempeh and let marinade in fridge for a 2 to 12 hours. Toss + tempeh a few times. +- Preheat oven to 350C (180C) +- Bake covered for 20 minutes +- Remove cover, flip tempeh, and cook for 30 minutes +- Remove from oven and let set to absorbe marinade + +Depending on baking dish size it is usually easier to double the recipe. +Use this as protien replacement in dish where flavor profile fits or +have as snacks. + +## Notes + +- you can get away with 2 hours of marinating but longer can be better + if time permits. I have personally not been able to differentiate + between like 6 and 12 hours. I usually prep this in morning and put + it in fridge. +- might want make sure the dish is at roomish temperature before + putting in oven. +- clean dish sooner than later + +Quick prep and only oven time for cooking. For a quick meal add some +quinoa or wild rice with a vegetable of choice. + +![image](images/elegin_balsamic_tempeh_1.jpg){.align-center} + +![image](images/elegin_balsamic_tempeh_2.jpg){.align-center} + +![image](images/elegin_balsamic_tempeh_3.jpg){.align-center} + +![image](images/elegin_balsamic_tempeh_4.jpg){.align-center} diff --git a/ENTREES/elegin_balsamic_tempeh.rst b/ENTREES/elegin_balsamic_tempeh.rst deleted file mode 100644 index bf21495..0000000 --- a/ENTREES/elegin_balsamic_tempeh.rst +++ /dev/null @@ -1,55 +0,0 @@ -Elegin’s Balsamic Tempeh -======================== - -This is the template to view your awesome recipe. If you view it as raw, -you can see the markup for it and use this as a template - -Ingredients ------------ - --1 package of tempeh (8oz) -1/2 cup of balsamic vinegar (125mL) -4 -teaspoons tamari or soy sauce (20mL) -1 tablespoon maple syrup (15mL) -1 -tablespoon olive oil (15mL) - -Instructions ------------- - -- Cut tempheh in to desired shape -- In baking dish add all ingredients -- Add tempeh and let marinade in fridge for a 2 to 12 hours. Toss - tempeh a few times. -- Preheat oven to 350C (180C) -- Bake covered for 20 minutes -- Remove cover, flip tempeh, and cook for 30 minutes -- Remove from oven and let set to absorbe marinade - -Depending on baking dish size it is usually easier to double the recipe. -Use this as protien replacement in dish where flavor profile fits or -have as snacks. - -Notes ------ - -- you can get away with 2 hours of marinating but longer can be better - if time permits. I have personally not been able to differentiate - between like 6 and 12 hours. I usually prep this in morning and put - it in fridge. -- might want make sure the dish is at roomish temperature before - putting in oven. -- clean dish sooner than later - -Quick prep and only oven time for cooking. For a quick meal add some -quinoa or wild rice with a vegetable of choice. - - -.. image:: images/elegin_balsamic_tempeh_1.jpg - :align: center - -.. image:: images/elegin_balsamic_tempeh_2.jpg - :align: center - -.. image:: images/elegin_balsamic_tempeh_3.jpg - :align: center - -.. image:: images/elegin_balsamic_tempeh_4.jpg - :align: center diff --git a/ENTREES/elegin_cauliflower_steaks.md b/ENTREES/elegin_cauliflower_steaks.md new file mode 100644 index 0000000..ba499d3 --- /dev/null +++ b/ENTREES/elegin_cauliflower_steaks.md @@ -0,0 +1,18 @@ +# Elegin's Cauliflower Steak or Rubbed Roots + +This works well with cauliflower florets along with any root vegetable +really. Great for pairing rub/blend with other parts of dish. This can +be an entrée or side. + +## Ingredients + +- 1 head of Cauliflower +- Mustard French herb blend (or any dam rub/blend you want) + +## Instructions + +1. Cut Cauliflower in thick slices. (as best you can should be at least + half inch to inch thick) +2. coat with oil(dealer choice.. I prefer spray or pump oil to coat + just enoough) and rub the rub +3. 15-20 minutes at 400 degrees F (200 degrees C). diff --git a/ENTREES/elegin_cauliflower_steaks.rst b/ENTREES/elegin_cauliflower_steaks.rst deleted file mode 100644 index 598e10e..0000000 --- a/ENTREES/elegin_cauliflower_steaks.rst +++ /dev/null @@ -1,21 +0,0 @@ -Elegin’s Cauliflower Steak or Rubbed Roots -========================================== - -This works well with cauliflower florets along with any root vegetable -really. Great for pairing rub/blend with other parts of dish. This can -be an entrée or side. - -Ingredients ------------ - -- 1 head of Cauliflower -- Mustard French herb blend (or any dam rub/blend you want) - -Instructions ------------- - -1. Cut Cauliflower in thick slices. (as best you can should be at least - half inch to inch thick) -2. coat with oil(dealer choice.. I prefer spray or pump oil to coat just - enoough) and rub the rub -3. 15-20 minutes at 400 degrees F (200 degrees C). diff --git a/ENTREES/elegin_chickpea_tacos.md b/ENTREES/elegin_chickpea_tacos.md new file mode 100644 index 0000000..104ddf5 --- /dev/null +++ b/ENTREES/elegin_chickpea_tacos.md @@ -0,0 +1,30 @@ +# Elegin's Chickpea Taco bowl + +Can be a healthy alt for a taco's and a quick prep meal. + +## Ingredients + +- 1 can chickpeas +- 1 avocado +- 1 lime +- 1 cup cashews +- 1 lemon +- 2 teaspoon apple cider vinegar +- 1 can refried beans +- taco shells +- non-dairy chedder cheese +- salsa of choice +- 1 of anything you would put on a taco + +## Instructions + +1. Add avocado to bowl and mash it +2. Add juice from 1 lime to mashed avocado +3. Add Drain and rinse chickpeas to bowl and mix +4. Set avocado lime chicpea bowl aside +5. prepare refried beans +6. add cashews , 1/2 cup of water, juice from 1 lemon, 2 teaspoons of + apple cider vinegar, a bit of salt (up to you) to blender +7. Boom vegan sour cream. Adjust lemon,vinegar, and salt to taste +8. Get bowl crumble taco shells in bowl and add everying to it. +9. EAT! diff --git a/ENTREES/elegin_chickpea_tacos.rst b/ENTREES/elegin_chickpea_tacos.rst deleted file mode 100644 index 5ddb80e..0000000 --- a/ENTREES/elegin_chickpea_tacos.rst +++ /dev/null @@ -1,33 +0,0 @@ -Elegin’s Chickpea Taco bowl -=========================== - -Can be a healthy alt for a taco’s and a quick prep meal. - -Ingredients ------------ - -- 1 can chickpeas -- 1 avocado -- 1 lime -- 1 cup cashews -- 1 lemon -- 2 teaspoon apple cider vinegar -- 1 can refried beans -- taco shells -- non-dairy chedder cheese -- salsa of choice -- 1 of anything you would put on a taco - -Instructions ------------- - -1. Add avocado to bowl and mash it -2. Add juice from 1 lime to mashed avocado -3. Add Drain and rinse chickpeas to bowl and mix -4. Set avocado lime chicpea bowl aside -5. prepare refried beans -6. add cashews , 1/2 cup of water, juice from 1 lemon, 2 teaspoons of - apple cider vinegar, a bit of salt (up to you) to blender -7. Boom vegan sour cream. Adjust lemon,vinegar, and salt to taste -8. Get bowl crumble taco shells in bowl and add everying to it. -9. EAT! diff --git a/ENTREES/elegin_one_pot_thai_peanut.md b/ENTREES/elegin_one_pot_thai_peanut.md new file mode 100644 index 0000000..70c200a --- /dev/null +++ b/ENTREES/elegin_one_pot_thai_peanut.md @@ -0,0 +1,29 @@ +# Elegin's One Pot Thai Peanut Mess + +Another super simple quick dish..just chop..add to pot..and drink till +done. + +## Ingredients + +- 3 cups of your favorite veggies (carrots, red bell pepper, broccoli, + mushrooms or celery) +- 4 cups veggie broth (l liter) +- 4 garlic cloves minced +- 1 Tbsp. Braggs liquid aminos (15mL) +- 1/2 tsp red pepper flakes (2.5ml) +- 2\" piece of ginger, sliced (large slices..you will remove these + later) (5cm) +- 2 Tbsp. peanut butter (30mL) +- 1 Tbsp. brown sugar or maple (15mL) +- 2 servings of rice pasta (use your best judgement) +- 1 package of cubed tofu (baked the tofu and add to near end or just + dump it in at beginning dealers choice) + +## Instructions + +1. Add all ingredients to pot +2. Cook on medium till simmer then reduce to low until veggies are soft +3. Dig around and remove ginger +4. Eat + +Change up any part of dish. Nice and easy dish. Chopping and waiting. diff --git a/ENTREES/elegin_one_pot_thai_peanut.rst b/ENTREES/elegin_one_pot_thai_peanut.rst deleted file mode 100644 index 0fe5b19..0000000 --- a/ENTREES/elegin_one_pot_thai_peanut.rst +++ /dev/null @@ -1,32 +0,0 @@ -Elegin’s One Pot Thai Peanut Mess -================================= - -Another super simple quick dish..just chop..add to pot..and drink till -done. - -Ingredients ------------ - -- 3 cups of your favorite veggies (carrots, red bell pepper, broccoli, - mushrooms or celery) -- 4 cups veggie broth (l liter) -- 4 garlic cloves minced -- 1 Tbsp. Braggs liquid aminos (15mL) -- 1/2 tsp red pepper flakes (2.5ml) -- 2" piece of ginger, sliced (large slices..you will remove these - later) (5cm) -- 2 Tbsp. peanut butter (30mL) -- 1 Tbsp. brown sugar or maple (15mL) -- 2 servings of rice pasta (use your best judgement) -- 1 package of cubed tofu (baked the tofu and add to near end or just - dump it in at beginning dealers choice) - -Instructions ------------- - -1. Add all ingredients to pot -2. Cook on medium till simmer then reduce to low until veggies are soft -3. Dig around and remove ginger -4. Eat - -Change up any part of dish. Nice and easy dish. Chopping and waiting. diff --git a/ENTREES/hardwaterhacker_crispy_parmesan_baked_walleye.md b/ENTREES/hardwaterhacker_crispy_parmesan_baked_walleye.md new file mode 100644 index 0000000..94dc3eb --- /dev/null +++ b/ENTREES/hardwaterhacker_crispy_parmesan_baked_walleye.md @@ -0,0 +1,39 @@ +# \@hardwaterhacker's Crispy Parmesan Baked Walleye + +This recipe works great for walleye, crappie/sunfish/bluegill (a.k.a. +bream), northern pike, or any other similar freshwater, non-oily white +meat fish. + +Serves: 2-4 + +## Ingredients + +- 2 lbs. (.9 kg) walleye fillets +- 2 cups (300 g) panko bread crumbs +- 1 packet dry Italian dressing mix (I use Good Seasons) +- 1/4 cup (38 g) garlic powder +- Pinch of kosher salt +- Fresh ground black pepper to taste +- 2 Tbsp (30 mL) butter +- 2 egg whites +- 1/2 cup (120 mL) skim milk +- 1/2 cup (45 g) finely-grated quality parmesan cheese + +## Preparation + +Preheat oven to 450 degrees F (232 C) + +1. Line a cookie sheet with parchment paper. Tinfoil can be used, but + fish may stick. +2. Mix panko crubs, seasoning packet, garlic powder, salt, and pepper + in a bowl until mixed well. +3. Beat egg whites and skim milk in a bowl until blended. +4. Dunk fillet pieces in egg & milk mixture and then dredge in breading + mixture. Make sure each piece is thoroughly coated and place on + parchment paper. +5. Bake fillets for 15 minutes. + +While fillets are baking, melt butter in a pan. After 15 minutes, remove +fish from oven and spoon a small amount of butter on each fillet. +Sprinkle grated parmesan on each fillet. Place fish back in oven for 3-4 +minutes until parmesan is melted. diff --git a/ENTREES/hardwaterhacker_crispy_parmesan_baked_walleye.rst b/ENTREES/hardwaterhacker_crispy_parmesan_baked_walleye.rst deleted file mode 100644 index 4b8ccf5..0000000 --- a/ENTREES/hardwaterhacker_crispy_parmesan_baked_walleye.rst +++ /dev/null @@ -1,42 +0,0 @@ -@hardwaterhacker’s Crispy Parmesan Baked Walleye -================================================ - -This recipe works great for walleye, crappie/sunfish/bluegill (a.k.a. -bream), northern pike, or any other similar freshwater, non-oily white -meat fish. - -Serves: 2-4 - -Ingredients ------------ - -- 2 lbs. (.9 kg) walleye fillets -- 2 cups (300 g) panko bread crumbs -- 1 packet dry Italian dressing mix (I use Good Seasons) -- 1/4 cup (38 g) garlic powder -- Pinch of kosher salt -- Fresh ground black pepper to taste -- 2 Tbsp (30 mL) butter -- 2 egg whites -- 1/2 cup (120 mL) skim milk -- 1/2 cup (45 g) finely-grated quality parmesan cheese - -Preparation ------------ - -Preheat oven to 450 degrees F (232 C) - -1. Line a cookie sheet with parchment paper. Tinfoil can be used, but - fish may stick. -2. Mix panko crubs, seasoning packet, garlic powder, salt, and pepper in - a bowl until mixed well. -3. Beat egg whites and skim milk in a bowl until blended. -4. Dunk fillet pieces in egg & milk mixture and then dredge in breading - mixture. Make sure each piece is thoroughly coated and place on - parchment paper. -5. Bake fillets for 15 minutes. - -While fillets are baking, melt butter in a pan. After 15 minutes, remove -fish from oven and spoon a small amount of butter on each fillet. -Sprinkle grated parmesan on each fillet. Place fish back in oven for 3-4 -minutes until parmesan is melted. diff --git a/ENTREES/hardwaterhacker_grilled_cedar_plank_salmon.md b/ENTREES/hardwaterhacker_grilled_cedar_plank_salmon.md new file mode 100644 index 0000000..056451b --- /dev/null +++ b/ENTREES/hardwaterhacker_grilled_cedar_plank_salmon.md @@ -0,0 +1,54 @@ +# \@hardwaterhacker's Grilled Cedar Plank Salmon + +This recipe works great for any salmonid. I've used it on Alaskan red +salmon, lake trout, chinook and coho salmon, but should work well with +other trout or salmon species. + +Serves: 3-4 + +## Ingredients + +- (1) 2 lb. (900 g) salmon fillet, skin left on + +- 1/2 c (90 g) brown sugar, packed + +- 2 Tbsp (30 mL) extra virgin olive oil + +- 1 Tbsp (6.8 g) dried italian seasoning mix (basil, marjoram, organo, + parsley, rosemary, thyme) + +- 1 Tsp (2.3 g) smoked paprika + +- 1/2 tsp (3 g) kosher salt + +- Fresh ground black pepper + +- (2) lemons + +- (1) Cedar plank + +## Preparation + +Soak cedar plank in water for at least one hour prior to grilling. + +Preheat gas grill to medium. + +Slice lemons with rind on as thinly as possible. + +1. Cover cedar plank with lemon slices. +2. Place fillet on plank on top of lemon slices. +3. Season fillet with black pepper. +4. Combine brown sugar, italian seasoning, paprika, and kosher salt in + a mixing bowl. Add olive oil and mix until mixture is like a paste. +5. Spread brown sugar mixture over fillet. Ensure fillet is fully + covered. Try to cover exposed end of fillet. +6. Grill fillet for 25 minutes or until thickest part of fillet reaches + 135 degrees F (57 C) internal temperature. + +Keep a close eye on the grill during cooking. The brown sugar mixture is +likely to flare up. Knock down flames with a spray bottle filled with +water. + +::: {.imagee alt="Grilled Cedar Plank Salmon"} +images/hardwaterhacker_grilled_cedar_plank_salmon.jpg +::: diff --git a/ENTREES/hardwaterhacker_grilled_cedar_plank_salmon.rst b/ENTREES/hardwaterhacker_grilled_cedar_plank_salmon.rst deleted file mode 100644 index 1b647a9..0000000 --- a/ENTREES/hardwaterhacker_grilled_cedar_plank_salmon.rst +++ /dev/null @@ -1,47 +0,0 @@ -@hardwaterhacker’s Grilled Cedar Plank Salmon -============================================= - -This recipe works great for any salmonid. I’ve used it on Alaskan red -salmon, lake trout, chinook and coho salmon, but should work well with -other trout or salmon species. - -Serves: 3-4 - -Ingredients ------------ - -- (1) 2 lb. (900 g) salmon fillet, skin left on -- 1/2 c (90 g) brown sugar, packed -- 2 Tbsp (30 mL) extra virgin olive oil -- 1 Tbsp (6.8 g) dried italian seasoning mix (basil, marjoram, organo, parsley, rosemary, thyme) -- 1 Tsp (2.3 g) smoked paprika -- 1/2 tsp (3 g) kosher salt -- Fresh ground black pepper -- (2) lemons -- (1) Cedar plank - -Preparation ------------ - -Soak cedar plank in water for at least one hour prior to grilling. - -Preheat gas grill to medium. - -Slice lemons with rind on as thinly as possible. - -1. Cover cedar plank with lemon slices. -2. Place fillet on plank on top of lemon slices. -3. Season fillet with black pepper. -4. Combine brown sugar, italian seasoning, paprika, and kosher salt in a - mixing bowl. Add olive oil and mix until mixture is like a paste. -5. Spread brown sugar mixture over fillet. Ensure fillet is fully - covered. Try to cover exposed end of fillet. -6. Grill fillet for 25 minutes or until thickest part of fillet reaches - 135 degrees F (57 C) internal temperature. - -Keep a close eye on the grill during cooking. The brown sugar mixture is -likely to flare up. Knock down flames with a spray bottle filled with -water. - -.. imagee:: images/hardwaterhacker_grilled_cedar_plank_salmon.jpg - :alt: Grilled Cedar Plank Salmon diff --git a/ENTREES/iHeartMalware_NC_Pulled_Pork.md b/ENTREES/iHeartMalware_NC_Pulled_Pork.md new file mode 100644 index 0000000..8170dd1 --- /dev/null +++ b/ENTREES/iHeartMalware_NC_Pulled_Pork.md @@ -0,0 +1,31 @@ +# iHeartMalware's NC Style Pulled Pork Recipe + +This is \@iHeartMalware's NC Style pulled pork...cooked in a crock pot. +This recipe has taken around 9 years to get it to this point, and has +gone through many years of reverse engineering. I wanted to take the +medium of a crock pot as I didn't have a smoker, nor did I have the time +to sit and watch it. + +## Ingredients + +- 1 Boston Butt +- Dry Rub (pork rub) +- Yuengling, half bottle (or an IPA, drink the rest) +- 6 oz braggs apple cider vinegar +- BBQ Sauce (I usually use a SC bbq sauce, mustard based) +- Liquid smoke +- Plastic wrap + +## Instructions + +1. The night before, rub the butt down with the dry rub. Once covered, + wrap with plastic wrap and store over night. +2. Put the pork butt in the crock pot and cook fat-side up. Next, split + 6 oz of beer on each side, 6 oz of braggs on each side, and sprinkle + with liquid smoke. cook for 8 hours on low or until easily pulled + away with a fork. +3. After 8 hours, pull pork, separating the fat, bone, and meat. Save ¼ + cup of the juice from cooking. Once pulled, empty the crock pot, + then add the meat back in and toss with the ¼ cup of juice, ¼ cup of + bbq sauce, and ¼ cup of apple cider vinegar. Place on low for 30 + minutes, then warm for another 30. (if you can stand it) diff --git a/ENTREES/iHeartMalware_NC_Pulled_Pork.rst b/ENTREES/iHeartMalware_NC_Pulled_Pork.rst deleted file mode 100644 index ad86758..0000000 --- a/ENTREES/iHeartMalware_NC_Pulled_Pork.rst +++ /dev/null @@ -1,34 +0,0 @@ -iHeartMalware’s NC Style Pulled Pork Recipe -=========================================== - -This is @iHeartMalware’s NC Style pulled pork…cooked in a crock pot. -This recipe has taken around 9 years to get it to this point, and has -gone through many years of reverse engineering. I wanted to take the -medium of a crock pot as I didn’t have a smoker, nor did I have the time -to sit and watch it. - -Ingredients ------------ - -- 1 Boston Butt -- Dry Rub (pork rub) -- Yuengling, half bottle (or an IPA, drink the rest) -- 6 oz braggs apple cider vinegar -- BBQ Sauce (I usually use a SC bbq sauce, mustard based) -- Liquid smoke -- Plastic wrap - -Instructions ------------- - -1. The night before, rub the butt down with the dry rub. Once covered, - wrap with plastic wrap and store over night. -2. Put the pork butt in the crock pot and cook fat-side up. Next, split - 6 oz of beer on each side, 6 oz of braggs on each side, and sprinkle - with liquid smoke. cook for 8 hours on low or until easily pulled - away with a fork. -3. After 8 hours, pull pork, separating the fat, bone, and meat. Save ¼ - cup of the juice from cooking. Once pulled, empty the crock pot, then - add the meat back in and toss with the ¼ cup of juice, ¼ cup of bbq - sauce, and ¼ cup of apple cider vinegar. Place on low for 30 minutes, - then warm for another 30. (if you can stand it) diff --git a/ENTREES/miss_gif_crock-pot-meatshield.md b/ENTREES/miss_gif_crock-pot-meatshield.md new file mode 100644 index 0000000..2f169ba --- /dev/null +++ b/ENTREES/miss_gif_crock-pot-meatshield.md @@ -0,0 +1,34 @@ +# Miss Gif's Crock Pot Meatshield^H^H^H^H^H^hloaf + +Author: \@miss_gif + +In honor of our favorite anime loving, pink mohawk wearing, haxor of the +frozen north, I present - the Crock Pot Meatshield...er +loaf...Meatloaf... Pretty simple and tasty dinner entre that can be made +ahead of time and frozen, until your ready to cook it while you are at +work... + +## Ingredients + +- 2 eggs (beaten like a red headed step child) +- 1/2 cup organic non gmo pasture fed free range milk +- 2/3 cup wonder bread crumbs...you figure out how to get them +- 1/2 chopped onion +- 1/4 tsp pepper (Tee spoon...not a table spoon) +- 1 tsp salt +- 1 and 1/2 lbs lean ground beef...aka Da Meat +- Catsup...or BBQ sauce...or Ketchup for the rest of you folks... + +## Instructions + +1. Label freezer bags with cooking directions and date. +2. Mix all the things, together, and place into freezer safe bags. +3. Place in freezer. +4. On Cooking day, put frozen meatloaf in crockpot, cover with ketchup + or BBQ sauce (use as little or as much as you want). +5. Cook on low for 8-10 hours (Our frozen meatloaf was ready in 8 + hours) + +## Obligatory Meme Reference + + diff --git a/ENTREES/miss_gif_crock-pot-meatshield.rst b/ENTREES/miss_gif_crock-pot-meatshield.rst deleted file mode 100644 index 5712d9c..0000000 --- a/ENTREES/miss_gif_crock-pot-meatshield.rst +++ /dev/null @@ -1,36 +0,0 @@ -Miss Gif’s Crock Pot Meatshield\ :sup:`H`\ H\ :sup:`H`\ H\ :sup:`H`\ hloaf -========================================================================== - -Author: @miss_gif - -In honor of our favorite anime loving, pink mohawk wearing, haxor of the -frozen north, I present - the Crock Pot Meatshield…er loaf…Meatloaf… -Pretty simple and tasty dinner entre that can be made ahead of time and -frozen, until your ready to cook it while you are at work… - -Ingredients ------------ - -- 2 eggs (beaten like a red headed step child) -- 1/2 cup organic non gmo pasture fed free range milk -- 2/3 cup wonder bread crumbs…you figure out how to get them -- 1/2 chopped onion -- 1/4 tsp pepper (Tee spoon…not a table spoon) -- 1 tsp salt -- 1 and 1/2 lbs lean ground beef…aka Da Meat -- Catsup…or BBQ sauce…or Ketchup for the rest of you folks… - -Instructions ------------- - -1. Label freezer bags with cooking directions and date. -2. Mix all the things, together, and place into freezer safe bags. -3. Place in freezer. -4. On Cooking day, put frozen meatloaf in crockpot, cover with ketchup - or BBQ sauce (use as little or as much as you want). -5. Cook on low for 8-10 hours (Our frozen meatloaf was ready in 8 hours) - -Obligatory Meme Reference -------------------------- - -https://pbs.twimg.com/profile_images/611339636141649920/alBSIgct_400x400.jpg diff --git a/ENTREES/moonbas3_bbq_ribs.rst b/ENTREES/moonbas3_bbq_ribs.md similarity index 51% rename from ENTREES/moonbas3_bbq_ribs.rst rename to ENTREES/moonbas3_bbq_ribs.md index a958939..f342bff 100644 --- a/ENTREES/moonbas3_bbq_ribs.rst +++ b/ENTREES/moonbas3_bbq_ribs.md @@ -1,16 +1,12 @@ -Moonbas3 St. Louis Style Barbecue Ribs -====================================== +# Moonbas3 St. Louis Style Barbecue Ribs -.. image:: images/moonbas3_bbq_ribs.jpg - :align: center +![image](images/moonbas3_bbq_ribs.jpg){.align-center} -Required Equipment ------------------- +## Required Equipment -- Smoker or barbecue that can smoke.. +- Smoker or barbecue that can smoke.. -Discussion ----------- +## Discussion I developed this recipe over several iterations of cooking ribs. This works for both baby back and St. Louis (spare) ribs style ribs. The only @@ -18,8 +14,8 @@ difference is baby backs will cook in about 3-4 hours versus spare ribs taking 5-6. I start checking in on them about 1 hour before I anticipate it being done and sometimes sooner depending on how well I am managing smoking temperatures. The sauce is my competition sauce, which is one of -my favorites without a doubt. Anyone who has gone to Fowler’s Fourth of -July blow out has had this a few times and I’ve never gone home with any +my favorites without a doubt. Anyone who has gone to Fowler's Fourth of +July blow out has had this a few times and I've never gone home with any leftovers.. Because of the dimensions of the ribs and the locations of their meat, @@ -29,83 +25,76 @@ depending on where I put the probes, the average distance between bones, and the striation of meat. Now, I just cook to time (3 hours for baby backs, 4 hours for spares) before I begin testing for doneness. Generally, I can just look at the tips of the bones and know how long I -have left, but I will be the first to admit it is a “skill” and takes a +have left, but I will be the first to admit it is a "skill" and takes a few iterations to learn well. -Ingredients ------------ +## Ingredients Rub makes the world go round, sauce finishes the journey. -Rub -~~~ - -- 1 cup firmly packed, dark-preferred, brown sugar -- 1 cup white sugar -- 1/2 cup smoked paprika -- 1/4 cup garlic powder -- 2 tbsp kosher salt (fine ground) -- 2 tbsp black pepper -- 2 tbsp ground ginger -- 2 tbsp onion powder -- sliced and diced rosemary sprigs (1-2) - -Sauce -~~~~~ - -- 1 cup ketchup -- 3 tbsp dark brown sugar -- 3 tbsp apple cider vinegar -- 2 tsp chili powder -- 1 tsp dry mustard powder -- 1 tsp black pepper -- 1/2 tsp kosher salt -- 1/2 tsp onion powder -- 1/2 tsp garlic powder -- 1/4 tsp cayenne pepper (more if you like spice) -- (optional) 1/2 cup of water, if going to heat or like a bit less - sticky sauce. - -Directions ----------- - -Making the rub -~~~~~~~~~~~~~~ - -1. Put all ingredients into a bowl and mix thoroughly. -2. Pat dry the ribs. -3. Apply by hand or through a shaker to the ribs directly. -4. Pat in the rub and let sit 5 minutes. -5. Repeat step 3 and step 4 again. -6. (Optional) Put aside in refrigerator for 2-16 hours depending on if - you can cook today. - -Making the Sauce -~~~~~~~~~~~~~~~~ - -1. Put ketchup in measuring cup. -2. Put the rest of the ingredients on top of the ketchsup. -3. Mix thoroughly. -4. Add salt to taste. - -Cooking the Ribs -~~~~~~~~~~~~~~~~ +### Rub + +- 1 cup firmly packed, dark-preferred, brown sugar +- 1 cup white sugar +- 1/2 cup smoked paprika +- 1/4 cup garlic powder +- 2 tbsp kosher salt (fine ground) +- 2 tbsp black pepper +- 2 tbsp ground ginger +- 2 tbsp onion powder +- sliced and diced rosemary sprigs (1-2) + +### Sauce + +- 1 cup ketchup +- 3 tbsp dark brown sugar +- 3 tbsp apple cider vinegar +- 2 tsp chili powder +- 1 tsp dry mustard powder +- 1 tsp black pepper +- 1/2 tsp kosher salt +- 1/2 tsp onion powder +- 1/2 tsp garlic powder +- 1/4 tsp cayenne pepper (more if you like spice) +- (optional) 1/2 cup of water, if going to heat or like a bit less + sticky sauce. + +## Directions + +### Making the rub + +1. Put all ingredients into a bowl and mix thoroughly. +2. Pat dry the ribs. +3. Apply by hand or through a shaker to the ribs directly. +4. Pat in the rub and let sit 5 minutes. +5. Repeat step 3 and step 4 again. +6. (Optional) Put aside in refrigerator for 2-16 hours depending on if + you can cook today. + +### Making the Sauce + +1. Put ketchup in measuring cup. +2. Put the rest of the ingredients on top of the ketchsup. +3. Mix thoroughly. +4. Add salt to taste. + +### Cooking the Ribs 0. Realize you will be smoking for about 5-6 hours, so plan wood and charcoal accordingly. 1. I use a 50/50 mix of lump charcoal and hickory or cherry wood when doing ribs. I have a big green egg-style smoker, so I fill up the - charcoal basin ~75%. + charcoal basin \~75%. 2. Be sure you have indirect heat, as direct heating ribs is a bad idea. -3. (Optional) I use a drip pan that I initially fill with ~2 cups of +3. (Optional) I use a drip pan that I initially fill with \~2 cups of water, this will last about 3 hours and need to be refilled. -4. Build fire slowly, coast your smoker up to ~230F. +4. Build fire slowly, coast your smoker up to \~230F. 5. Put on ribs so they are shielded by your indirect heat zone. 6. Close lid and do not open for 4 hours (or 3hrs if cooking baby backs). -7. Ribs will be “done” when they pass a few criteria: -8. Ribs will have pulled back from the bone about 1". +7. Ribs will be "done" when they pass a few criteria: +8. Ribs will have pulled back from the bone about 1\". 9. Ribs will pass the twist test (grab with tongs and twist, they should almost separate and flake). 10. If not done, wait 20 minutes and try again. diff --git a/ENTREES/moonbas3_mississippi_pot_roast.md b/ENTREES/moonbas3_mississippi_pot_roast.md new file mode 100644 index 0000000..6ba3a9d --- /dev/null +++ b/ENTREES/moonbas3_mississippi_pot_roast.md @@ -0,0 +1,43 @@ +# Moonbas3's "Instant" Mississippi Pot Roast + +![Moonbas3 "Instant" Mississippi Pot +Roast](images/moonbas3_mississippi_pot_roast.jpg) + +## Discussion + +While this sounds like an absolutely chaotic mixture of tastes and +textures, it is in fact, delicious. When executed correctly, the pot +roast will fall apart and mix its fat juices with the various powders to +produce a wholly transcendent gravy. I am not a fan of pepperoncinis, +but I tend to over-add them to this recipe since they bring out a +wonderful flavor when everything finally settles. I generally throw this +together when it's going to be a busy couple of days and my wife and I +need dinner covered. + +Keeps good in the refrigerator for 4-5 days, but it will never last that +long. + +## Required Equipment + +- Instant Pot or Slow Cooker + +## Ingredients + +- 3- to 4-pound boneless beef roast, your choice of cut, I use chuck. +- 1 stick (8 tbsp) unsalted butter +- 1 package au jus gravy mix +- 1 package dry ranch dressing mix, such as Hidden Valley +- Pepperoncini peppers, number to your liking, and a little juice +- Salt and freshly ground pepper, if desired (\~1 tbsp of each) + +## Directions + +1. Slice pepperoncinis and remove stems (seeds optional) and throw in + instant pot with a splash of juice from the jar. +2. Put roast in instant pot +3. Add au jus gravy mix, ranch dressing mix, salt and pepper. +4. Switch Instant Pot to "Pressure" and set for 2 hours. + 1. Alternatively, set Slow Cooker to "high" and cook for 8 hours. +5. Do not remove until meat falls apart to the touch. +6. Optional - Toast some provolone cheese onto a hoagie roll and serve + "philly cheese steak style". diff --git a/ENTREES/moonbas3_mississippi_pot_roast.rst b/ENTREES/moonbas3_mississippi_pot_roast.rst deleted file mode 100644 index 6ad6207..0000000 --- a/ENTREES/moonbas3_mississippi_pot_roast.rst +++ /dev/null @@ -1,52 +0,0 @@ -Moonbas3’s “Instant” Mississippi Pot Roast -========================================== - -.. figure:: images/moonbas3_mississippi_pot_roast.jpg - :alt: Moonbas3 “Instant” Mississippi Pot Roast - - Moonbas3 “Instant” Mississippi Pot Roast - -Discussion ----------- - -While this sounds like an absolutely chaotic mixture of tastes and -textures, it is in fact, delicious. When executed correctly, the pot -roast will fall apart and mix its fat juices with the various powders to -produce a wholly transcendent gravy. I am not a fan of pepperoncinis, -but I tend to over-add them to this recipe since they bring out a -wonderful flavor when everything finally settles. I generally throw this -together when it’s going to be a busy couple of days and my wife and I -need dinner covered. - -Keeps good in the refrigerator for 4-5 days, but it will never last that -long. - -Required Equipment ------------------- - -- Instant Pot or Slow Cooker - -Ingredients ------------ - -- 3- to 4-pound boneless beef roast, your choice of cut, I use chuck. -- 1 stick (8 tbsp) unsalted butter -- 1 package au jus gravy mix -- 1 package dry ranch dressing mix, such as Hidden Valley -- Pepperoncini peppers, number to your liking, and a little juice -- Salt and freshly ground pepper, if desired (~1 tbsp of each) - -Directions ----------- - -1. Slice pepperoncinis and remove stems (seeds optional) and throw in - instant pot with a splash of juice from the jar. -2. Put roast in instant pot -3. Add au jus gravy mix, ranch dressing mix, salt and pepper. -4. Switch Instant Pot to “Pressure” and set for 2 hours. - - 1. Alternatively, set Slow Cooker to “high” and cook for 8 hours. - -5. Do not remove until meat falls apart to the touch. -6. Optional - Toast some provolone cheese onto a hoagie roll and serve - “philly cheese steak style”. diff --git a/ENTREES/panaderos_sausage_balls.md b/ENTREES/panaderos_sausage_balls.md new file mode 100644 index 0000000..c56e809 --- /dev/null +++ b/ENTREES/panaderos_sausage_balls.md @@ -0,0 +1,15 @@ +# Panadero's Sausage Balls + +## Ingredients + +- 2 cups Bisquick +- 1/2 cup cheddar cheese +- 1 lb sausage (in the roll, like Jimmy Deans) + +## Instructions + +1. Combine all ingredients, dough will be hard to manage. +2. Combine until it forms a nice dough ball. +3. Pull off and roll into \~1\" diameter balls and place on cookie + sheet. +4. Cook for 20 minutes at 300 degrees F. diff --git a/ENTREES/panaderos_sausage_balls.rst b/ENTREES/panaderos_sausage_balls.rst deleted file mode 100644 index 98b3c72..0000000 --- a/ENTREES/panaderos_sausage_balls.rst +++ /dev/null @@ -1,17 +0,0 @@ -Panadero’s Sausage Balls -======================== - -Ingredients ------------ - -- 2 cups Bisquick -- 1/2 cup cheddar cheese -- 1 lb sausage (in the roll, like Jimmy Deans) - -Instructions ------------- - -1. Combine all ingredients, dough will be hard to manage. -2. Combine until it forms a nice dough ball. -3. Pull off and roll into ~1" diameter balls and place on cookie sheet. -4. Cook for 20 minutes at 300 degrees F. diff --git a/ENTREES/rahlquist_slow_cooker_chorizo_black_bean_stew.md b/ENTREES/rahlquist_slow_cooker_chorizo_black_bean_stew.md new file mode 100644 index 0000000..dbe18d4 --- /dev/null +++ b/ENTREES/rahlquist_slow_cooker_chorizo_black_bean_stew.md @@ -0,0 +1,44 @@ +# Rahlquist's Slow Cooker Chorizo Black Bean Stew + +A large batch (about 6 quart) of thick, hearty, protein rich, low carb +stew + +![image](images/rahlquist_slow_cooker_chorizo_black_bean_stew.jpg){.align-center} + +## Ingredients + +- 1lb Lean Ground Turkey +- 1lb Ground Beef +- 1lb beef cubes (like for stew) +- 1 package skinless kielbasa (1lb) +- 2 Tbs olive oil (or other suitable fat) +- 2 cans black beans +- 1 can kidney beans in chili sauce +- 1 can condensed tomato soup +- 1 12oz can tomato paste +- 1.5 cup water +- 2 tbsp bread crumbs or masa (optional) +- 1 tbsp chorizo seasoning +- 1 tsp garlic powder +- hot sauce to taste + +## Instructions + +1. Crank up the slow cooker to hi and dump all the beans (undrained), + soup, tomato paste, water, garlic powder, chorizo seasoning in the + slow cooker +2. Using the olive oil (or other fat) Brown the Turkey, Ground Beef, + Beef cubes, and kielbasa. I tend to quarter coin my kielbasa (slice + lengthwise once, turn 90 deg l\$ +3. Cook on hi in the slow cooker for 3-5 hours. Taste, add hot sauce if + you'd like and if you want more body add the bread crumbs or masa. + +## Additional Ideas + +- Serve with a good crusty bread. +- Put Stew in oven safe bowl and top with Provolone and broil till + cheese is well melted. +- If any of the meats in the recipe are not to your liking swap out + for more of one of the others. +- Halve the ingredients to make smaller batch. +- This freezes very well, defrost and microwave. diff --git a/ENTREES/rahlquist_slow_cooker_chorizo_black_bean_stew.rst b/ENTREES/rahlquist_slow_cooker_chorizo_black_bean_stew.rst deleted file mode 100644 index 18e83bc..0000000 --- a/ENTREES/rahlquist_slow_cooker_chorizo_black_bean_stew.rst +++ /dev/null @@ -1,49 +0,0 @@ -Rahlquist’s Slow Cooker Chorizo Black Bean Stew -=============================================== - -A large batch (about 6 quart) of thick, hearty, protein rich, low carb -stew - -.. image:: images/rahlquist_slow_cooker_chorizo_black_bean_stew.jpg - :align: center - -Ingredients ------------ - -- 1lb Lean Ground Turkey -- 1lb Ground Beef -- 1lb beef cubes (like for stew) -- 1 package skinless kielbasa (1lb) -- 2 Tbs olive oil (or other suitable fat) -- 2 cans black beans -- 1 can kidney beans in chili sauce -- 1 can condensed tomato soup -- 1 12oz can tomato paste -- 1.5 cup water -- 2 tbsp bread crumbs or masa (optional) -- 1 tbsp chorizo seasoning -- 1 tsp garlic powder -- hot sauce to taste - -Instructions ------------- - -1. Crank up the slow cooker to hi and dump all the beans (undrained), - soup, tomato paste, water, garlic powder, chorizo seasoning in the - slow cooker -2. Using the olive oil (or other fat) Brown the Turkey, Ground Beef, - Beef cubes, and kielbasa. I tend to quarter coin my kielbasa (slice - lengthwise once, turn 90 deg l$ -3. Cook on hi in the slow cooker for 3-5 hours. Taste, add hot sauce if - you’d like and if you want more body add the bread crumbs or masa. - -Additional Ideas ----------------- - -- Serve with a good crusty bread. -- Put Stew in oven safe bowl and top with Provolone and broil till - cheese is well melted. -- If any of the meats in the recipe are not to your liking swap out for - more of one of the others. -- Halve the ingredients to make smaller batch. -- This freezes very well, defrost and microwave. diff --git a/ENTREES/sl3dges_low-carb_sticky_pork_belly.md b/ENTREES/sl3dges_low-carb_sticky_pork_belly.md new file mode 100644 index 0000000..0eb1941 --- /dev/null +++ b/ENTREES/sl3dges_low-carb_sticky_pork_belly.md @@ -0,0 +1,40 @@ +# Low Carb Sticky Pork Belly and "Rice" + +- 7g Net Carbs +- 86g Fat +- 17g Protein + +![image](images/sl3dges_low-carb_sticky_pork_belly.jpg){.align-center} + +## Recipe: + +Makes 6 servings + +*You will need an oiled sautée pan, at a medium heat* + +## Pork Belly Ingredients + +1-2 lbs Pork Belly 1 Medium Red onion, chopped 1 eight oz Can Water +Chestnuts, drained well 1 tsp Raw Ginger 2 Tbsp Chopped Garlic 1 Tbsp +Chinese Five Spice 1 Tbsp Italian Seasoning 4-5 Tbsp Swerve 5 Tbsp +Tamari Sauce 2 Tbsp Rice Vinegar 3 Cups Swanson Beef Broth 2 Hard Boiled +Eggs, sliced 1 Cup Green Onion Greens (decorative) Cilantro (to taste +and decorative) + +## Pork Belly Recipe + +1. Par-cook the pork belly in the pan, stirring and flipping + occasionally. +2. After 5 minutes, add in the italian seasoning, ginger, garlic, water + chestnuts, and onions. +3. Continue cooking the pork belly mix until the pork belly is browned + and crispy, approximately 15 minutes. **Stir occassionally** +4. After 15 minutes, add in the beef broth, rice vinegar, tamari sauce, + chinese five spice, and sweetener of choice. +5. Simmer the mix until the sauce reduces down to the desired + consistency, or until it is similar to the consistency of syrup. + **make sure to taste it before it is finished. If it is too salty, + add a little more sweetener. If it's too sweet, add a little more + tamari** + +Can also be found on theketobaker.com diff --git a/ENTREES/sl3dges_low-carb_sticky_pork_belly.rst b/ENTREES/sl3dges_low-carb_sticky_pork_belly.rst deleted file mode 100644 index 18330ab..0000000 --- a/ENTREES/sl3dges_low-carb_sticky_pork_belly.rst +++ /dev/null @@ -1,45 +0,0 @@ -Low Carb Sticky Pork Belly and “Rice” -===================================== - -- 7g Net Carbs -- 86g Fat -- 17g Protein - -.. image:: images/sl3dges_low-carb_sticky_pork_belly.jpg - :align: center - -Recipe: -------- - -Makes 6 servings - -*You will need an oiled sautée pan, at a medium heat* - -Pork Belly Ingredients ----------------------- - -1-2 lbs Pork Belly 1 Medium Red onion, chopped 1 eight oz Can Water -Chestnuts, drained well 1 tsp Raw Ginger 2 Tbsp Chopped Garlic 1 Tbsp -Chinese Five Spice 1 Tbsp Italian Seasoning 4-5 Tbsp Swerve 5 Tbsp -Tamari Sauce 2 Tbsp Rice Vinegar 3 Cups Swanson Beef Broth 2 Hard Boiled -Eggs, sliced 1 Cup Green Onion Greens (decorative) Cilantro (to taste -and decorative) - -Pork Belly Recipe ------------------ - -1. Par-cook the pork belly in the pan, stirring and flipping - occasionally. -2. After 5 minutes, add in the italian seasoning, ginger, garlic, water - chestnuts, and onions. -3. Continue cooking the pork belly mix until the pork belly is browned - and crispy, approximately 15 minutes. **Stir occassionally** -4. After 15 minutes, add in the beef broth, rice vinegar, tamari sauce, - chinese five spice, and sweetener of choice. -5. Simmer the mix until the sauce reduces down to the desired - consistency, or until it is similar to the consistency of syrup. - **make sure to taste it before it is finished. If it is too salty, - add a little more sweetener. If it’s too sweet, add a little more - tamari** - -Can also be found on theketobaker.com diff --git a/ENTREES/slufs_seared_tuna_pasta.md b/ENTREES/slufs_seared_tuna_pasta.md new file mode 100644 index 0000000..87d01ab --- /dev/null +++ b/ENTREES/slufs_seared_tuna_pasta.md @@ -0,0 +1,48 @@ +# Sluf's Seared Tuna Pasta + +This quick meal scales easily depending on the size of the dinner crowd. +Pro tip: use a ceramic skillet to get a sear with the properties of +nonstick, and get it reasonably hot without burning the butter. DM +\@Barry_Coggins for questions or watch this recipe at +. + +## Ingredients + +- 1 4oz tuna steak +- cracked black pepper +- 1 tbsp butter +- 1 serving angle hair pasta +- 1 tbsp olive oil +- 1 tsp sesame oil +- 1 tbsp rice wine vinegar +- 1 tsp soy sauce +- hot water reserved from the cooked noodles +- 4-5 pieces dried mushrooms (or thinly sliced fresh mushrooms) +- dried or fresh parsley for granish + +## Instructions + +1. Cook the noodles to your likeness but have the remaining steps + complete before your noodles are cooked so they do not overcook. + Reserve some of the hot water in a small bowl and soak the mushrooms + and parsley. They should be able to soak for at least 5 minutes + before using them. +2. Prepare the tuna by cracking black pepper on a small, flat plate. + Place the tuna on the pepper and crack additional pepper on the top + side. I personally like about 50% of the surface area covered with + moderately large pieces. +3. Heat the skillet over medium high heat. Add butter when hot, and + wait for the butter to melt completely. Just as it is melted but + before it burns, add the tuna steak. It will not stick to ceramic, + but it will cook quickly. Cook for 45-60 seconds on the first side + and then flip. Cook 30-45 seconds on the second side. Carefully + using a spatula, stand the tuna on end and briefly touch each side + to the hot skillet to seal the edges. Remove the tuna steak from the + hot pan and let rest on a cutting board. +4. Prepare the sauce by mixing the oils, vinegar, and soy sauce in a + small dish. Drain the noodles and move them to the individual + serving bowls. Add the sauce mix to each bowl and stir the hot + noodles to coat with the sauce. +5. Thinly slice the rested tuna steak using a very sharp knife and + transfer to the dressed noodles. Drain the rehydrated mushroom and + parsley, and add to the top of the sliced tuna. diff --git a/ENTREES/slufs_seared_tuna_pasta.rst b/ENTREES/slufs_seared_tuna_pasta.rst deleted file mode 100644 index 4f4d72c..0000000 --- a/ENTREES/slufs_seared_tuna_pasta.rst +++ /dev/null @@ -1,51 +0,0 @@ -Sluf’s Seared Tuna Pasta -======================== - -This quick meal scales easily depending on the size of the dinner crowd. -Pro tip: use a ceramic skillet to get a sear with the properties of -nonstick, and get it reasonably hot without burning the butter. DM -@Barry_Coggins for questions or watch this recipe at -https://go.sluf.com/seared-tuna-pasta. - -Ingredients ------------ - -- 1 4oz tuna steak -- cracked black pepper -- 1 tbsp butter -- 1 serving angle hair pasta -- 1 tbsp olive oil -- 1 tsp sesame oil -- 1 tbsp rice wine vinegar -- 1 tsp soy sauce -- hot water reserved from the cooked noodles -- 4-5 pieces dried mushrooms (or thinly sliced fresh mushrooms) -- dried or fresh parsley for granish - -Instructions ------------- - -1. Cook the noodles to your likeness but have the remaining steps - complete before your noodles are cooked so they do not overcook. - Reserve some of the hot water in a small bowl and soak the mushrooms - and parsley. They should be able to soak for at least 5 minutes - before using them. -2. Prepare the tuna by cracking black pepper on a small, flat plate. - Place the tuna on the pepper and crack additional pepper on the top - side. I personally like about 50% of the surface area covered with - moderately large pieces. -3. Heat the skillet over medium high heat. Add butter when hot, and wait - for the butter to melt completely. Just as it is melted but before it - burns, add the tuna steak. It will not stick to ceramic, but it will - cook quickly. Cook for 45-60 seconds on the first side and then flip. - Cook 30-45 seconds on the second side. Carefully using a spatula, - stand the tuna on end and briefly touch each side to the hot skillet - to seal the edges. Remove the tuna steak from the hot pan and let - rest on a cutting board. -4. Prepare the sauce by mixing the oils, vinegar, and soy sauce in a - small dish. Drain the noodles and move them to the individual serving - bowls. Add the sauce mix to each bowl and stir the hot noodles to - coat with the sauce. -5. Thinly slice the rested tuna steak using a very sharp knife and - transfer to the dressed noodles. Drain the rehydrated mushroom and - parsley, and add to the top of the sliced tuna. diff --git a/ENTREES/travelars_southwest_porkchops.md b/ENTREES/travelars_southwest_porkchops.md new file mode 100644 index 0000000..45bcd5b --- /dev/null +++ b/ENTREES/travelars_southwest_porkchops.md @@ -0,0 +1,33 @@ +# \@Travelar's Southwest Style Pork Chops + +A tasty meal with little prep time. I looked at a number of similar +recipes and took what I liked about them and began to experiment. This +is what I came up with. + +## Ingredients + +- 4-6 thick-cut pork chops +- 1 teaspoon ground cumin +- 1/2 teaspoon garlic powder +- 1/2 teaspoon salt +- 1/2 teaspoon black pepper +- 1 tablespoon olive oil +- 2 tablespoons lime juice +- 1 24 oz jar of your favorite salsa + +Use optional spices for an added bit of heat. + +## Instructions + +1. Combine ground cumin, garlic powder, salt, and black pepper in a + small bowl. Use the spice mixture as a rub and coat both sides of + the chops. +2. Heat the oil in a heavy frying pan. Add the pork chops and cook over + medium heat until browned, which should be about 3-4 minutes per + side. +3. Place the pork chops into the slow cooker and pour lime juice. Let + sit for 1-2 minutes. Pour in the jar of salsa and cook on high for + 2-3 hours. +4. Serve hot, with a bit of salsa spooned over each pork chop. Pork + chops should be tender enough that they will fall apart with just a + fork. diff --git a/ENTREES/travelars_southwest_porkchops.rst b/ENTREES/travelars_southwest_porkchops.rst deleted file mode 100644 index f20bf3a..0000000 --- a/ENTREES/travelars_southwest_porkchops.rst +++ /dev/null @@ -1,36 +0,0 @@ -@Travelar’s Southwest Style Pork Chops -====================================== - -A tasty meal with little prep time. I looked at a number of similar -recipes and took what I liked about them and began to experiment. This -is what I came up with. - -Ingredients ------------ - -- 4-6 thick-cut pork chops -- 1 teaspoon ground cumin -- 1/2 teaspoon garlic powder -- 1/2 teaspoon salt -- 1/2 teaspoon black pepper -- 1 tablespoon olive oil -- 2 tablespoons lime juice -- 1 24 oz jar of your favorite salsa - -Use optional spices for an added bit of heat. - -Instructions ------------- - -1. Combine ground cumin, garlic powder, salt, and black pepper in a - small bowl. Use the spice mixture as a rub and coat both sides of the - chops. -2. Heat the oil in a heavy frying pan. Add the pork chops and cook over - medium heat until browned, which should be about 3-4 minutes per - side. -3. Place the pork chops into the slow cooker and pour lime juice. Let - sit for 1-2 minutes. Pour in the jar of salsa and cook on high for - 2-3 hours. -4. Serve hot, with a bit of salsa spooned over each pork chop. Pork - chops should be tender enough that they will fall apart with just a - fork. diff --git a/ENTREES/wimzkl_caramelized-onion-mushroom-stuffin.md b/ENTREES/wimzkl_caramelized-onion-mushroom-stuffin.md new file mode 100644 index 0000000..9e25b26 --- /dev/null +++ b/ENTREES/wimzkl_caramelized-onion-mushroom-stuffin.md @@ -0,0 +1,86 @@ +# Caramelized Onion and Mushroom Stuffin' + +Simple, hot, and tasty stuff to share with pals. + +![image](images/wimzkl_caramelized-onion-mushroom-stuffin_1.jpg){.align-center} + +![image](images/wimzkl_caramelized-onion-mushroom-stuffin_2.jpg){.align-center} + +## Cooking Hardware + +- 1 or 2 15\" x 10\" x 2\" rectangular baking dish +- 2 rimmed baking sheets (but only if you choose to make croutons) +- 1 large non-stick skillet +- 1 large mixing bowl +- Cooking utensils for stirring +- A Sharp chef's knife for cutting and chopping stuff +- Cutting board (make sure to put a damp cloth underneath so it + doesn't slide around - be safe!) +- Standard stove/oven + +## Ingredients + +- 6 Tablespoons salted butter, plus a little more to rub/coat this + inside of the Pyrex or glass bakeware with. +- 1 large loaf of bread (I like to use somewhat old homemade sourdough + and make croutons) but you can use any of your favorite bread or + store-bought croutons (about 1 pound). If you use your favorite + bread to make homemade croutons, it works well to cut it into + 3⁄4-inch pieces (about 16 cups) because they will shrink when you + bake them. Sturdy breads like pumpernickel and Sourdough seem to + work best for this recipe. +- 6 medium onions, halved, medium sliced, and chopped +- 1 bunch of celery, chopped medium-thick, not too thin, we want it to + be a little bit crunchy so a little thicker is better. +- A pinch or 3 of sea salt and fresh ground black pepper, as you like. +- ½ cup balsamic vinegar (sometimes I use way more than this). +- 3 or so cups vegetable stock (I like to use stock made from leftover + veggies but store bought works well, too). +- 4-5 cups jumbo mushrooms - chopped into big chunks - the more the + merrier. +- 1 tablespoon freshly choppsed thyme (sometimes sage is good, too). +- Some small, fresh sprigs or rosemary for the top when it's done. + +## How to make it + +### Croutons - if you choose to make the croutons yourself, it's easy, delicious, and pretty satisfying to do: + +- Cut your favorite bread into very large crouton-sized chunks. +- Toss them in a big mixing bowl with some olive oil, salt, and + pepper, as you like (be careful not to use too much oil or they will + smoke you out of the kitchen when you bake them). +- Divide them between 2 rimmed baking sheets and bake until dry, a bit + golden, and crisp, 10 minutes or so. +- When they're done, set them aside. + +### The Stuffin' + +1. Melt the 6 tablespoons of butter in the large non-stick skillet over + medium heat. +2. Add the onions, a pinch or two of salt, and pepper, as you like. +3. Cook over medium-low heat, stirring occasionally, until the onions + are a deep golden brown, about an hour or so. +4. When they're nice and brown, reduce them with the balsamic and cook + until it's all evaporated, which only takes a little while. +5. While they're cooking down, you can heat your oven to 375° F. +6. When the balsamic is all reduced, transfer the onions to a large + bowl and let cool for for a few minutes. +7. Butter up the 15x10x2-inch baking dish (or 2 depending on how many + are coming over) and make sure the inside is completely and more or + less evenly coated. +8. In a large mixing bowl, combine your croutons, stock, shrooms, + thyme/sage, onions, and sprinkle ½ teaspoon of sea salt over the + top. +9. Transfer the mixture to the prepared baking dish(es). +10. Cover with buttered foil and bake for 30-40 minutes. +11. Uncover and bake until golden brown on top (yummy), 20 minutes or so + more. + +### How to serve + +This dish looks great with some small, fresh sprigs of rosemary +sprinkled on top. Is a great option for vegatarian pals served alongside +meat-based dishes for those who aren't. It's hearty and makes your whole +place smell amazing, too. Goes great with beer, wine, grog, or toddy. + +Enjoy! diff --git a/ENTREES/wimzkl_caramelized-onion-mushroom-stuffin.rst b/ENTREES/wimzkl_caramelized-onion-mushroom-stuffin.rst deleted file mode 100644 index e563807..0000000 --- a/ENTREES/wimzkl_caramelized-onion-mushroom-stuffin.rst +++ /dev/null @@ -1,95 +0,0 @@ -Caramelized Onion and Mushroom Stuffin’ -======================================= - -Simple, hot, and tasty stuff to share with pals. - -.. image:: images/wimzkl_caramelized-onion-mushroom-stuffin_1.jpg - :align: center - -.. image:: images/wimzkl_caramelized-onion-mushroom-stuffin_2.jpg - :align: center - -Cooking Hardware ----------------- - -- 1 or 2 15" x 10" x 2" rectangular baking dish -- 2 rimmed baking sheets (but only if you choose to make croutons) -- 1 large non-stick skillet -- 1 large mixing bowl -- Cooking utensils for stirring -- A Sharp chef’s knife for cutting and chopping stuff -- Cutting board (make sure to put a damp cloth underneath so it doesn’t - slide around - be safe!) -- Standard stove/oven - -Ingredients ------------ - -- 6 Tablespoons salted butter, plus a little more to rub/coat this - inside of the Pyrex or glass bakeware with. -- 1 large loaf of bread (I like to use somewhat old homemade sourdough - and make croutons) but you can use any of your favorite bread or - store-bought croutons (about 1 pound). If you use your favorite bread - to make homemade croutons, it works well to cut it into 3⁄4-inch - pieces (about 16 cups) because they will shrink when you bake them. - Sturdy breads like pumpernickel and Sourdough seem to work best for - this recipe. -- 6 medium onions, halved, medium sliced, and chopped -- 1 bunch of celery, chopped medium-thick, not too thin, we want it to - be a little bit crunchy so a little thicker is better. -- A pinch or 3 of sea salt and fresh ground black pepper, as you like. -- ½ cup balsamic vinegar (sometimes I use way more than this). -- 3 or so cups vegetable stock (I like to use stock made from leftover - veggies but store bought works well, too). -- 4-5 cups jumbo mushrooms - chopped into big chunks - the more the - merrier. -- 1 tablespoon freshly choppsed thyme (sometimes sage is good, too). -- Some small, fresh sprigs or rosemary for the top when it’s done. - -How to make it --------------- - -Croutons - if you choose to make the croutons yourself, it’s easy, delicious, and pretty satisfying to do: -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -- Cut your favorite bread into very large crouton-sized chunks. -- Toss them in a big mixing bowl with some olive oil, salt, and pepper, - as you like (be careful not to use too much oil or they will smoke - you out of the kitchen when you bake them). -- Divide them between 2 rimmed baking sheets and bake until dry, a bit - golden, and crisp, 10 minutes or so. -- When they’re done, set them aside. - -The Stuffin’ -~~~~~~~~~~~~ - -1. Melt the 6 tablespoons of butter in the large non-stick skillet over - medium heat. -2. Add the onions, a pinch or two of salt, and pepper, as you like. -3. Cook over medium-low heat, stirring occasionally, until the onions - are a deep golden brown, about an hour or so. -4. When they’re nice and brown, reduce them with the balsamic and cook - until it’s all evaporated, which only takes a little while. -5. While they’re cooking down, you can heat your oven to 375° F. -6. When the balsamic is all reduced, transfer the onions to a large - bowl and let cool for for a few minutes. -7. Butter up the 15x10x2-inch baking dish (or 2 depending on how many - are coming over) and make sure the inside is completely and more or - less evenly coated. -8. In a large mixing bowl, combine your croutons, stock, shrooms, - thyme/sage, onions, and sprinkle ½ teaspoon of sea salt over the - top. -9. Transfer the mixture to the prepared baking dish(es). -10. Cover with buttered foil and bake for 30-40 minutes. -11. Uncover and bake until golden brown on top (yummy), 20 minutes or so - more. - -How to serve -~~~~~~~~~~~~ - -This dish looks great with some small, fresh sprigs of rosemary -sprinkled on top. Is a great option for vegatarian pals served alongside -meat-based dishes for those who aren’t. It’s hearty and makes your whole -place smell amazing, too. Goes great with beer, wine, grog, or toddy. - -Enjoy! diff --git a/ENTREES/wireheadlance_grandmothers_chicken_and_gravy.md b/ENTREES/wireheadlance_grandmothers_chicken_and_gravy.md new file mode 100644 index 0000000..10cc198 --- /dev/null +++ b/ENTREES/wireheadlance_grandmothers_chicken_and_gravy.md @@ -0,0 +1,39 @@ +# wireheadlance's "Little Grandma's Famous Fried Chicken and Gravy" + +This is a recipe from wireheadlance's grandmother for fried chicken and +gravy! + +![image](images/wireheadlance_grandmothers_chicken_and_gravy.jpg){.align-center} + +## Instructions + +1. "Select whatever parts you want & salt & pepper. Have about 1/2 inch + of oil in frying pan & hot (she always used her electric skillet). +2. Roll chicken in flower & place skin-side down in hot fat. +3. Don't cook too fast (med hot) & cook till nice & brown & then turn + over. Takes about 30-45 minutes., depends on the size of the fryer. + If it's a larger one, it takes longer. (Watch, it can burn easily). +4. When all is done & you want gravy, drain most of the fat off, + leaving about 1/4 c in the pan (save the crunches!) & add 1 T flour + & about 1 1/2 C milk & salt & pepper. +5. Cook till beginning to thicken - not too think now, as it sets it + thickens some. This gravy is also made at last minute before + serving" + +## Author Notes + +Mother always cut up her down chickens - she liked the boney pieces like +the ribs & back \* you couldn't get them already cut that way. She would +rinse the chicken & pieces soak them in a bowl of cold water with lots +of salt in it. Then she'd pat them dry & salt & pepper them. Next, Mom +would shake the pieces in a bag of flour (sometimes she'd put salt, +pepper, & paprika in it, maybe a little poultry seasoning or Lawry's +seasoned salt instead). Mother usually fried her chicken in her electric +skillet, set at about 260-275, covered, with it vented just to let a +little steam escape. Seems to me that she started it a little higher & +then turned down the temp when she turned the pieces over. + +Gravy for pork steaks was made in the same manner, except she let the +drippings & the flour brown in the grease until it looked like it was +starting to scorch & then added the milk...that gave it a nice, rich +brown color. diff --git a/ENTREES/wireheadlance_grandmothers_chicken_and_gravy.rst b/ENTREES/wireheadlance_grandmothers_chicken_and_gravy.rst deleted file mode 100644 index 28f687e..0000000 --- a/ENTREES/wireheadlance_grandmothers_chicken_and_gravy.rst +++ /dev/null @@ -1,42 +0,0 @@ -wireheadlance’s “Little Grandma’s Famous Fried Chicken and Gravy” -================================================================= - -This is a recipe from wireheadlance’s grandmother for fried chicken and -gravy! - -.. image:: images/wireheadlance_grandmothers_chicken_and_gravy.jpg - :align: center - -Instructions ------------- - -1. “Select whatever parts you want & salt & pepper. Have about 1/2 inch - of oil in frying pan & hot (she always used her electric skillet). -2. Roll chicken in flower & place skin-side down in hot fat. -3. Don’t cook too fast (med hot) & cook till nice & brown & then turn - over. Takes about 30-45 minutes., depends on the size of the fryer. - If it’s a larger one, it takes longer. (Watch, it can burn easily). -4. When all is done & you want gravy, drain most of the fat off, leaving - about 1/4 c in the pan (save the crunches!) & add 1 T flour & about 1 - 1/2 C milk & salt & pepper. -5. Cook till beginning to thicken - not too think now, as it sets it - thickens some. This gravy is also made at last minute before serving” - -Author Notes ------------- - -Mother always cut up her down chickens - she liked the boney pieces like -the ribs & back \* you couldn’t get them already cut that way. She would -rinse the chicken & pieces soak them in a bowl of cold water with lots -of salt in it. Then she’d pat them dry & salt & pepper them. Next, Mom -would shake the pieces in a bag of flour (sometimes she’d put salt, -pepper, & paprika in it, maybe a little poultry seasoning or Lawry’s -seasoned salt instead). Mother usually fried her chicken in her electric -skillet, set at about 260-275, covered, with it vented just to let a -little steam escape. Seems to me that she started it a little higher & -then turned down the temp when she turned the pieces over. - -Gravy for pork steaks was made in the same manner, except she let the -drippings & the flour brown in the grease until it looked like it was -starting to scorch & then added the milk…that gave it a nice, rich brown -color. diff --git a/SAUCES/_section.md b/SAUCES/_section.md new file mode 100644 index 0000000..f7eb45e --- /dev/null +++ b/SAUCES/_section.md @@ -0,0 +1,6 @@ +# Sauces + +- Sauce. You know, that thing that you edit then push out to + production + +![foods](https://images.pexels.com/photos/699544/pexels-photo-699544.jpeg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb) diff --git a/SAUCES/_section.rst b/SAUCES/_section.rst deleted file mode 100644 index 5904f96..0000000 --- a/SAUCES/_section.rst +++ /dev/null @@ -1,9 +0,0 @@ -Sauces -====== - -- Sauce. You know, that thing that you edit then push out to production - -.. figure:: https://images.pexels.com/photos/699544/pexels-photo-699544.jpeg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb - :alt: foods - - foods diff --git a/SAUCES/elegin_vegan_tarter_sauce.md b/SAUCES/elegin_vegan_tarter_sauce.md new file mode 100644 index 0000000..6b55dc7 --- /dev/null +++ b/SAUCES/elegin_vegan_tarter_sauce.md @@ -0,0 +1,21 @@ +# Elegin Vegan Tarter Sauce + +Simple Vegan tarter sauce. Quick and easy. + +## Ingredients + +- 1/2 cup vegenaise (4oz) +- 1 tsp. vegan horseradish (5ml) +- 2 Tbsp. freshly squeezed lemon juice (30mL) +- 2 Tbsp. capers and some brine (30mL) + +## Instructions + +1. Mix all +2. Done + +## Notes + +This is never made like this..EVER. Grab a bowl. Use a spoon and dump in +what you think will be good and mix. It will be. I eyeball this every +time. Every time it is good. diff --git a/SAUCES/elegin_vegan_tarter_sauce.rst b/SAUCES/elegin_vegan_tarter_sauce.rst deleted file mode 100644 index a8da2a6..0000000 --- a/SAUCES/elegin_vegan_tarter_sauce.rst +++ /dev/null @@ -1,25 +0,0 @@ -Elegin Vegan Tarter Sauce -========================= - -Simple Vegan tarter sauce. Quick and easy. - -Ingredients ------------ - -- 1/2 cup vegenaise (4oz) -- 1 tsp. vegan horseradish (5ml) -- 2 Tbsp. freshly squeezed lemon juice (30mL) -- 2 Tbsp. capers and some brine (30mL) - -Instructions ------------- - -1. Mix all -2. Done - -Notes ------ - -This is never made like this..EVER. Grab a bowl. Use a spoon and dump in -what you think will be good and mix. It will be. I eyeball this every -time. Every time it is good. diff --git a/SAUCES/iHeartMalware_buffalo_sauce.md b/SAUCES/iHeartMalware_buffalo_sauce.md new file mode 100644 index 0000000..b7f13ee --- /dev/null +++ b/SAUCES/iHeartMalware_buffalo_sauce.md @@ -0,0 +1,23 @@ +# iHeartMalware's Buffalo Sauce Recipe + +From Thanksgiving to Christmas, I made several pounds of wings using +this sauce. I'm not a big fan of the "traditional" buffalo sauce, but +this is enough of a difference to make it still good. In that month, I +cooked over 20 pounds of wings, and all of them were eaten at the +parties I cooked them for, except 12 wings. + +## Ingredients + +- 1 cup Franks red hot +- 1 cup Valentina Mexican Hot Sauce (aka the big bottle of cheap stuff + on the hispanic aisle) +- 2 sticks of butter + +## Instructions + +1. Start with a medium sized pot, and melt the butter over medium heat. +2. Once melted, add Franks and Valentina to the pot, and stir until it + starts to simmer. +3. I'm a fan of Pioneer Woman's cooking method of frying then baking, + so substitue the sauce and cook the wings according to her recipe: + . diff --git a/SAUCES/iHeartMalware_buffalo_sauce.rst b/SAUCES/iHeartMalware_buffalo_sauce.rst deleted file mode 100644 index 380262b..0000000 --- a/SAUCES/iHeartMalware_buffalo_sauce.rst +++ /dev/null @@ -1,26 +0,0 @@ -iHeartMalware’s Buffalo Sauce Recipe -==================================== - -From Thanksgiving to Christmas, I made several pounds of wings using -this sauce. I’m not a big fan of the “traditional” buffalo sauce, but -this is enough of a difference to make it still good. In that month, I -cooked over 20 pounds of wings, and all of them were eaten at the -parties I cooked them for, except 12 wings. - -Ingredients ------------ - -- 1 cup Franks red hot -- 1 cup Valentina Mexican Hot Sauce (aka the big bottle of cheap stuff - on the hispanic aisle) -- 2 sticks of butter - -Instructions ------------- - -1. Start with a medium sized pot, and melt the butter over medium heat. -2. Once melted, add Franks and Valentina to the pot, and stir until it - starts to simmer. -3. I’m a fan of Pioneer Woman’s cooking method of frying then baking, so - substitue the sauce and cook the wings according to her recipe: - http://thepioneerwoman.com/cooking/wings/. diff --git a/SAUCES/jcase_LowCarb_Alabama_white_BBQ_sauce.md b/SAUCES/jcase_LowCarb_Alabama_white_BBQ_sauce.md new file mode 100644 index 0000000..a2ce1ae --- /dev/null +++ b/SAUCES/jcase_LowCarb_Alabama_white_BBQ_sauce.md @@ -0,0 +1,18 @@ +# jcase's LowCarb Alabama White BBQ Sauce Recipe + +Goes best on chicken. Cook chicken on a smoker, dip in sauce. Goes great +on wings. + +## Ingredients + +- 1 Cup Mayonnaise +- 1 Tbps Ground Black Pepper +- 1 Tbps Salt +- 3 Tbps Lemon Juice +- 3 Tbps White Vinegar +- 2 Tbps splenda + +## Instructions + +1. Place all ingredients in blender +2. Blend well diff --git a/SAUCES/jcase_LowCarb_Alabama_white_BBQ_sauce.rst b/SAUCES/jcase_LowCarb_Alabama_white_BBQ_sauce.rst deleted file mode 100644 index 567f772..0000000 --- a/SAUCES/jcase_LowCarb_Alabama_white_BBQ_sauce.rst +++ /dev/null @@ -1,21 +0,0 @@ -jcase’s LowCarb Alabama White BBQ Sauce Recipe -============================================== - -Goes best on chicken. Cook chicken on a smoker, dip in sauce. Goes great -on wings. - -Ingredients ------------ - -- 1 Cup Mayonnaise -- 1 Tbps Ground Black Pepper -- 1 Tbps Salt -- 3 Tbps Lemon Juice -- 3 Tbps White Vinegar -- 2 Tbps splenda - -Instructions ------------- - -1. Place all ingredients in blender -2. Blend well diff --git a/SAUCES/jcase_LowCarb_NorthCarolina_BBQ_sauce.md b/SAUCES/jcase_LowCarb_NorthCarolina_BBQ_sauce.md new file mode 100644 index 0000000..5861310 --- /dev/null +++ b/SAUCES/jcase_LowCarb_NorthCarolina_BBQ_sauce.md @@ -0,0 +1,24 @@ +# jcase's LowCarb North Carolina BBQ Sauce Recipe + +This sauce is a North Carolina inspired mop sauce, a thin tomato and +apple cider vinegar based sauce. It doesn't have to be used as a mop +sauce, and works great right on top of your pulled pork. + +## Ingredients + +- 16 oz Tomato Sauce +- 4 oz Apple Cider Vinegar +- 60 g Stevia +- 3 Tbps Worcestershire Sauce +- 2 Tbps Dijon Mustard +- 2 Tbps Chipotle Tabasco Sauce +- 1 Tbps Lemon Juice +- 1 Tbps Ground Black Pepper +- 1 Pnch Salt + +## Instructions + +1. Mix ingredients into sauce pan +2. Bring to simmer over medium heat and reduce the heat. +3. Allow sauce to reduce to your preferred consistency, it should be + somewhat thin. diff --git a/SAUCES/jcase_LowCarb_NorthCarolina_BBQ_sauce.rst b/SAUCES/jcase_LowCarb_NorthCarolina_BBQ_sauce.rst deleted file mode 100644 index 364539a..0000000 --- a/SAUCES/jcase_LowCarb_NorthCarolina_BBQ_sauce.rst +++ /dev/null @@ -1,27 +0,0 @@ -jcase’s LowCarb North Carolina BBQ Sauce Recipe -=============================================== - -This sauce is a North Carolina inspired mop sauce, a thin tomato and -apple cider vinegar based sauce. It doesn’t have to be used as a mop -sauce, and works great right on top of your pulled pork. - -Ingredients ------------ - -- 16 oz Tomato Sauce -- 4 oz Apple Cider Vinegar -- 60 g Stevia -- 3 Tbps Worcestershire Sauce -- 2 Tbps Dijon Mustard -- 2 Tbps Chipotle Tabasco Sauce -- 1 Tbps Lemon Juice -- 1 Tbps Ground Black Pepper -- 1 Pnch Salt - -Instructions ------------- - -1. Mix ingredients into sauce pan -2. Bring to simmer over medium heat and reduce the heat. -3. Allow sauce to reduce to your preferred consistency, it should be - somewhat thin. diff --git a/SIDES/_section.md b/SIDES/_section.md new file mode 100644 index 0000000..babed21 --- /dev/null +++ b/SIDES/_section.md @@ -0,0 +1,5 @@ +# Sides + +- Sort of like appetizers but you eat them with other foods + +![foods](https://images.pexels.com/photos/1475/food-vegetables-italian-restaurant.jpg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb) diff --git a/SIDES/_section.rst b/SIDES/_section.rst deleted file mode 100644 index f3d7b97..0000000 --- a/SIDES/_section.rst +++ /dev/null @@ -1,9 +0,0 @@ -Sides -===== - -- Sort of like appetizers but you eat them with other foods - -.. figure:: https://images.pexels.com/photos/1475/food-vegetables-italian-restaurant.jpg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb - :alt: foods - - foods diff --git a/SIDES/dis0wn-Whiskey_Cranberry_Brussel_Sprouts.md b/SIDES/dis0wn-Whiskey_Cranberry_Brussel_Sprouts.md new file mode 100644 index 0000000..5c76fe8 --- /dev/null +++ b/SIDES/dis0wn-Whiskey_Cranberry_Brussel_Sprouts.md @@ -0,0 +1,52 @@ +# dis0wn - Whiskey Cranberry Brussel Sprouts + +![brussel_sprouts](images/dis0wn-Whiskey_Cranberry_Brussel_Sprouts.jpg) + +This is one of my wife's favorite sides and even if you hate brussel +sprouts, this might be your opportunity to change your mind. Feeds 5-6 + +## Ingredients + +- 1 pkg frozen brussel sprouts or 12-14 fresh brussel sprouts +- 1/2 cup dried cranberries +- 2 tbsp salt +- 4 tbps Butter +- 2-3 tbsp Brown Sugar +- 1 shot of your favorite whiskey/bourbon +- Torch or stick lighter. Don't use a regular lighter. You'll lose arm + hair. + +## Instructions + +Prepare your brussel sprouts depending on the option you picked above: + +### Frozen (quick option) + +- Nuke 'em as directed on the package. +- Melt helf the butter in frying pan or wok +- Increase heat to Medium and add sprouts. Too much heat will burn the + butter. +- Let them brown a little on the outside then proceed to step 2. + +### Fresh (tasty option) + +- Cut sprouts in half and place them on a baking sheet with cut side + up. Cover with foil for easy cleanup. +- Drizzle olive oil over each and sprinkle with a light layer of salt. +- Bake @ 400F for 20-30 min. Add more time (\~10min) if you like them + crispy! +- Melt half the butter in a frying pan or wok on Low-Medium heat. Too + much heat will burn the butter. +- Add the sprouts and proceed to Step 2. + +1. Add brown sugar, dried cranberries, and remaining 2 tbps of butter. +2. Stir on Low-Medium heat until all the brown sugar has disolved. +3. Toss in the shot of whiskey. Count to 3. Stand back and light it. + The flames will go out once all the alcohol has burned off. (Make + sure the cooking area is free of dry material with a high surface + area. It'll be tough trying to explain that one to the fire + marshall.) +4. Now that the fire is out, transfer the sprouts and the Vorpal Glaze + of Awesomeness to a serving dish or directly to the plate. + +Great with red meat and red wine. diff --git a/SIDES/dis0wn-Whiskey_Cranberry_Brussel_Sprouts.rst b/SIDES/dis0wn-Whiskey_Cranberry_Brussel_Sprouts.rst deleted file mode 100644 index 4c17f14..0000000 --- a/SIDES/dis0wn-Whiskey_Cranberry_Brussel_Sprouts.rst +++ /dev/null @@ -1,59 +0,0 @@ -dis0wn - Whiskey Cranberry Brussel Sprouts -========================================== - -.. figure:: images/dis0wn-Whiskey_Cranberry_Brussel_Sprouts.jpg - :alt: brussel_sprouts - - brussel_sprouts - -This is one of my wife’s favorite sides and even if you hate brussel -sprouts, this might be your opportunity to change your mind. Feeds 5-6 - -Ingredients ------------ - -- 1 pkg frozen brussel sprouts or 12-14 fresh brussel sprouts -- 1/2 cup dried cranberries -- 2 tbsp salt -- 4 tbps Butter -- 2-3 tbsp Brown Sugar -- 1 shot of your favorite whiskey/bourbon -- Torch or stick lighter. Don’t use a regular lighter. You’ll lose arm - hair. - -Instructions ------------- - -Prepare your brussel sprouts depending on the option you picked above: - -Frozen (quick option) -~~~~~~~~~~~~~~~~~~~~~ - -- Nuke ’em as directed on the package. -- Melt helf the butter in frying pan or wok -- Increase heat to Medium and add sprouts. Too much heat will burn the - butter. -- Let them brown a little on the outside then proceed to step 2. - -Fresh (tasty option) -~~~~~~~~~~~~~~~~~~~~ - -- Cut sprouts in half and place them on a baking sheet with cut side - up. Cover with foil for easy cleanup. -- Drizzle olive oil over each and sprinkle with a light layer of salt. -- Bake @ 400F for 20-30 min. Add more time (~10min) if you like them - crispy! -- Melt half the butter in a frying pan or wok on Low-Medium heat. Too - much heat will burn the butter. -- Add the sprouts and proceed to Step 2. - -1. Add brown sugar, dried cranberries, and remaining 2 tbps of butter. -2. Stir on Low-Medium heat until all the brown sugar has disolved. -3. Toss in the shot of whiskey. Count to 3. Stand back and light it. The - flames will go out once all the alcohol has burned off. (Make sure - the cooking area is free of dry material with a high surface area. - It’ll be tough trying to explain that one to the fire marshall.) -4. Now that the fire is out, transfer the sprouts and the Vorpal Glaze - of Awesomeness to a serving dish or directly to the plate. - -Great with red meat and red wine. diff --git a/SIDES/iHeartMalware_fermented_cranberry_relish.md b/SIDES/iHeartMalware_fermented_cranberry_relish.md new file mode 100644 index 0000000..319c043 --- /dev/null +++ b/SIDES/iHeartMalware_fermented_cranberry_relish.md @@ -0,0 +1,44 @@ +# iHeartMalwares Fermented Cranberry Sauce + +I made this one year for Thanksgiving, and everyone who had it went +nuts. So much so that I had "orders" the following year. (16+ quarts of +orders, to be exact) The great thing with this is that it's fermented, +so it will last a good while in the fridge. This is amazing with cream +cheese on a bagel, over cream cheese with crackers, or served over some +goat cheese with crackers. I do this in 2 gallon batches, so scale +accordingly. + +## Ingredients + +- 18 Cups cranberries, whole +- 6 large oranges +- 3 Cups walnuts +- 3 Cups honey +- 2 Cups white grape juice +- 2 Cups red grape juice +- 2 tbsp cinnamon +- 4 tbsp lemon juice +- 2 tbsp salt +- Fermenting crock + +## Instructions + +1. Get a big bowl. A really big bowl. +2. Slice the oranges, and process them whole in a food processor. + Process the cranberries and walnuts as well. +3. If the processor is un-happy, feel free to add the juices and / or + honey. Add to bowl. +4. Once processed, pour into the bowl. This will happen in several + batches. +5. Add the rest of the ingredients. +6. Once done, ferment for 2-4 days, or until fermentation starts. I + like to use these kimchi fermenters, as it limits the chances of + mold: + +7. Once started, toss it into the fridge to taste. 1-2 weeks is usually + the magic time, then it can be removed from the fermenting vessel + and added to containers. Fermented foods taste better with age, and + we've eaten this 3 months after making the original batch. + +NOTE: Make sure you are comfortable with fermenting before doing this. +Do your homework on fermenting and do it safely! Mold == bad. diff --git a/SIDES/iHeartMalware_fermented_cranberry_relish.rst b/SIDES/iHeartMalware_fermented_cranberry_relish.rst deleted file mode 100644 index 5d877eb..0000000 --- a/SIDES/iHeartMalware_fermented_cranberry_relish.rst +++ /dev/null @@ -1,46 +0,0 @@ -iHeartMalwares Fermented Cranberry Sauce -======================================== - -I made this one year for Thanksgiving, and everyone who had it went -nuts. So much so that I had “orders” the following year. (16+ quarts of -orders, to be exact) The great thing with this is that it’s fermented, -so it will last a good while in the fridge. This is amazing with cream -cheese on a bagel, over cream cheese with crackers, or served over some -goat cheese with crackers. I do this in 2 gallon batches, so scale -accordingly. - -Ingredients ------------ - -- 18 Cups cranberries, whole -- 6 large oranges -- 3 Cups walnuts -- 3 Cups honey -- 2 Cups white grape juice -- 2 Cups red grape juice -- 2 tbsp cinnamon -- 4 tbsp lemon juice -- 2 tbsp salt -- Fermenting crock - -Instructions ------------- - -1. Get a big bowl. A really big bowl. -2. Slice the oranges, and process them whole in a food processor. - Process the cranberries and walnuts as well. -3. If the processor is un-happy, feel free to add the juices and / or - honey. Add to bowl. -4. Once processed, pour into the bowl. This will happen in several - batches. -5. Add the rest of the ingredients. -6. Once done, ferment for 2-4 days, or until fermentation starts. I like - to use these kimchi fermenters, as it limits the chances of mold: - https://www.amazon.com/Crazy-Korean-Cooking-Sauerkraut-Fermentation/dp/B00M40ANMO/ -7. Once started, toss it into the fridge to taste. 1-2 weeks is usually - the magic time, then it can be removed from the fermenting vessel and - added to containers. Fermented foods taste better with age, and we’ve - eaten this 3 months after making the original batch. - -NOTE: Make sure you are comfortable with fermenting before doing this. -Do your homework on fermenting and do it safely! Mold == bad. diff --git a/SIDES/iHeartMalware_fermented_sauerkraut.md b/SIDES/iHeartMalware_fermented_sauerkraut.md new file mode 100644 index 0000000..316e98a --- /dev/null +++ b/SIDES/iHeartMalware_fermented_sauerkraut.md @@ -0,0 +1,33 @@ +# iHeartMalwares Sauerkraut + +I like kraut, yes I do. Sauerkraut is one of the first foods that people +ferment, as it's very forgiving and cheap if it messes up. For this one, +you only need three ingredients! Want to get creative? add other things, +like carrots, ginger, garlic, etc. + +## Ingredients + +- 2 large heads of lettuce +- 1/4 cup kosher salt (may need a little more) +- 1 tbsp caraway + +## Instructions + +1. Clean and cut the cabbage into 1 inch squares. Put into a bowl and + rinse. +2. If the cabbage is a little damp, that's okay. Add salt and caraway, + and start to knead the cabbage, 5-10 minutes. The cabbage will wilt + to half the size or more. You can use a stand mixer with a dough + hook to make this part go faster. (And save your arms) +3. Pour the cabbage (juices included) into a fermenting crock. Ferment + for 24 hours. +4. Check after the first 24 hours. If there is not enough brine, add 1 + tbsp to 2 cups of water, then add to the mixture to cover the + cabbage. +5. Ferment! I like mine fermenting for a week, then put it in the + fridge to sour up. +6. Want to make it really good? Experiment with root vegetables. I've + had success with beets, carrots, ginger, etc. + +NOTE: Make sure you are comfortable with fermenting before doing this. +Do your homework on fermenting and do it safely! Mold == bad. diff --git a/SIDES/iHeartMalware_fermented_sauerkraut.rst b/SIDES/iHeartMalware_fermented_sauerkraut.rst deleted file mode 100644 index f458acd..0000000 --- a/SIDES/iHeartMalware_fermented_sauerkraut.rst +++ /dev/null @@ -1,36 +0,0 @@ -iHeartMalwares Sauerkraut -========================= - -I like kraut, yes I do. Sauerkraut is one of the first foods that people -ferment, as it’s very forgiving and cheap if it messes up. For this one, -you only need three ingredients! Want to get creative? add other things, -like carrots, ginger, garlic, etc. - -Ingredients ------------ - -- 2 large heads of lettuce -- 1/4 cup kosher salt (may need a little more) -- 1 tbsp caraway - -Instructions ------------- - -1. Clean and cut the cabbage into 1 inch squares. Put into a bowl and - rinse. -2. If the cabbage is a little damp, that’s okay. Add salt and caraway, - and start to knead the cabbage, 5-10 minutes. The cabbage will wilt - to half the size or more. You can use a stand mixer with a dough hook - to make this part go faster. (And save your arms) -3. Pour the cabbage (juices included) into a fermenting crock. Ferment - for 24 hours. -4. Check after the first 24 hours. If there is not enough brine, add 1 - tbsp to 2 cups of water, then add to the mixture to cover the - cabbage. -5. Ferment! I like mine fermenting for a week, then put it in the fridge - to sour up. -6. Want to make it really good? Experiment with root vegetables. I’ve - had success with beets, carrots, ginger, etc. - -NOTE: Make sure you are comfortable with fermenting before doing this. -Do your homework on fermenting and do it safely! Mold == bad. diff --git a/SIDES/thedevilsvoice_jangajji.md b/SIDES/thedevilsvoice_jangajji.md new file mode 100644 index 0000000..7a1c17e --- /dev/null +++ b/SIDES/thedevilsvoice_jangajji.md @@ -0,0 +1,62 @@ +# theDevilsVoice Jangajji (장아찌) + +Jangajji (장아찌) or pickled vegetables is a type of banchan (side dish) +made by pickling vegetables. + +![Jangajji](images/thedevilsvoice_jangajji.jpg) + +## Ingredients + +- Boil a reusable glass jar with airtight bail & seal closure for 5 or + 10 minutes to sterilize it. +- Set it aside. + +### Fresh Vegetables + +- 2 medium white onion +- 2 medium cucumber +- several whole Cheongyang chili peppers + - You can substitue or include serranos, ghost pepper, or whatever + your favorite peppers are. +- Cucumber +- optional: + - radish + - garlic cloves + +### Infused Soy Sauce + +- 1/2 cup Soy Sauce +- 1/2 cup Vinegar +- 3/4 cup Sugar +- 1 & 1/4 cup Water + +## Instructions + +### Prepare vegetables + +1. Be sure you remember to sterilize the jar as described above. +2. Cut your vegetables into bite-sized pieces. + +```{=html} + +``` +a. Cucumbers in round slices. +b. Deseeding peppers can reduce heat. + +```{=html} + +``` +3. Toss the vegetables in a bowl to distribute evenly, then transfer + into jar. +4. Set these aside for now. + +### Prepare Sauce + +1. Put infused sauce ingredients into a pot. +2. Stir a bit to make sure sugar dissolves while bringing to a boil. +3. When boiling starts, count to ten and remove from heat. +4. Pour the liquid into the jar submerging the vegetables. +5. Close the lid and leave on counter for 24 hours. Then put into + refridgerator to cool. + +Serve with white rice, a fried egg, and some gochujang sauce. diff --git a/SIDES/thedevilsvoice_jangajji.rst b/SIDES/thedevilsvoice_jangajji.rst deleted file mode 100644 index 8f2d166..0000000 --- a/SIDES/thedevilsvoice_jangajji.rst +++ /dev/null @@ -1,69 +0,0 @@ -theDevilsVoice Jangajji (장아찌) -================================ - -Jangajji (장아찌) or pickled vegetables is a type of banchan (side dish) -made by pickling vegetables. - -.. figure:: images/thedevilsvoice_jangajji.jpg - :alt: Jangajji - - Jangajji - -Ingredients ------------ - -- Boil a reusable glass jar with airtight bail & seal closure for 5 or - 10 minutes to sterilize it. -- Set it aside. - -Fresh Vegetables -~~~~~~~~~~~~~~~~ - -- 2 medium white onion -- 2 medium cucumber -- several whole Cheongyang chili peppers - - - You can substitue or include serranos, ghost pepper, or whatever - your favorite peppers are. - -- Cucumber -- optional: - - - radish - - garlic cloves - -Infused Soy Sauce -~~~~~~~~~~~~~~~~~ - -- 1/2 cup Soy Sauce -- 1/2 cup Vinegar -- 3/4 cup Sugar -- 1 & 1/4 cup Water - -Instructions ------------- - -Prepare vegetables -~~~~~~~~~~~~~~~~~~ - -1. Be sure you remember to sterilize the jar as described above. -2. Cut your vegetables into bite-sized pieces. - -a. Cucumbers in round slices. -b. Deseeding peppers can reduce heat. - -3. Toss the vegetables in a bowl to distribute evenly, then transfer - into jar. -4. Set these aside for now. - -Prepare Sauce -~~~~~~~~~~~~~ - -1. Put infused sauce ingredients into a pot. -2. Stir a bit to make sure sugar dissolves while bringing to a boil. -3. When boiling starts, count to ten and remove from heat. -4. Pour the liquid into the jar submerging the vegetables. -5. Close the lid and leave on counter for 24 hours. Then put into - refridgerator to cool. - -Serve with white rice, a fried egg, and some gochujang sauce. diff --git a/SNACKS/WireGhost_Eclectic_Freedom_Fries.md b/SNACKS/WireGhost_Eclectic_Freedom_Fries.md new file mode 100644 index 0000000..20068ec --- /dev/null +++ b/SNACKS/WireGhost_Eclectic_Freedom_Fries.md @@ -0,0 +1,34 @@ +# Eclectic Freedom Fries: + +Makes a very diverse and healthy snack. + +## Ingredients + +- x2 Potatoes +- x5 large size Parsnips +- x5 Large size Carrots +- Olive oil (or Vegetable Oil) +- 1 Tablespoon Sea Salt +- 1 12oz (or more) tub of Sour Cream +- Melted Cheddar Cheese (4oz) should suffice +- Real Bacon Bits (Optional for Vegetarian/Vegans) +- X2 2ft length cuts of Aluminium Foil (more lengths at x1 cut per + person) + +## Directions + +- Skin the Potatoes, Parsnips & Carrots +- Cut Potatoes, Parsnips & Carrots into French Frye sizes as best as + possible. +- Lightly oil (or brush) them with Olive Oil (or Vegetable Oil) +- Place on flat baking sheet. +- Dust the sheet evenly with 1 Tablespoon Sea Salt +- Bake in oven until slightly crisp and tender, (20-30 minutes) at 350 + F +- Fold x1 2ft length aluminum foil sheet into a triangular hat. +- Invert and fill with the baked veggies. +- Top with Sour Cream, Melted Cheddar and Bacon Bits to taste. +- Take 2nd length of aluminum foil and fold just as similarly into a + triangle hat. +- Wear this hat. + - (Optional: Play loudly the Grateful Dead US Blues) diff --git a/SNACKS/WireGhost_Eclectic_Freedom_Fries.rst b/SNACKS/WireGhost_Eclectic_Freedom_Fries.rst deleted file mode 100644 index 0ed4eae..0000000 --- a/SNACKS/WireGhost_Eclectic_Freedom_Fries.rst +++ /dev/null @@ -1,38 +0,0 @@ -Eclectic Freedom Fries: -======================= - -Makes a very diverse and healthy snack. - -Ingredients ------------ - -- x2 Potatoes -- x5 large size Parsnips -- x5 Large size Carrots -- Olive oil (or Vegetable Oil) -- 1 Tablespoon Sea Salt -- 1 12oz (or more) tub of Sour Cream -- Melted Cheddar Cheese (4oz) should suffice -- Real Bacon Bits (Optional for Vegetarian/Vegans) -- X2 2ft length cuts of Aluminium Foil (more lengths at x1 cut per - person) - -Directions ----------- - -- Skin the Potatoes, Parsnips & Carrots -- Cut Potatoes, Parsnips & Carrots into French Frye sizes as best as - possible. -- Lightly oil (or brush) them with Olive Oil (or Vegetable Oil) -- Place on flat baking sheet. -- Dust the sheet evenly with 1 Tablespoon Sea Salt -- Bake in oven until slightly crisp and tender, (20-30 minutes) at 350 - F -- Fold x1 2ft length aluminum foil sheet into a triangular hat. -- Invert and fill with the baked veggies. -- Top with Sour Cream, Melted Cheddar and Bacon Bits to taste. -- Take 2nd length of aluminum foil and fold just as similarly into a - triangle hat. -- Wear this hat. - - - (Optional: Play loudly the Grateful Dead US Blues) diff --git a/SNACKS/_section.md b/SNACKS/_section.md new file mode 100644 index 0000000..579e51d --- /dev/null +++ b/SNACKS/_section.md @@ -0,0 +1,5 @@ +# Snacks + +- Nom noms to be consumed between bigger noms. + +![foods](https://images.pexels.com/photos/122434/popcorn-cinema-ticket-film-122434.jpeg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb) diff --git a/SNACKS/_section.rst b/SNACKS/_section.rst deleted file mode 100644 index a2ac646..0000000 --- a/SNACKS/_section.rst +++ /dev/null @@ -1,9 +0,0 @@ -Snacks -====== - -- Nom noms to be consumed between bigger noms. - -.. figure:: https://images.pexels.com/photos/122434/popcorn-cinema-ticket-film-122434.jpeg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb - :alt: foods - - foods diff --git a/SNACKS/aaron_the_king-chicken_parm_nachos.md b/SNACKS/aaron_the_king-chicken_parm_nachos.md new file mode 100644 index 0000000..0c2e046 --- /dev/null +++ b/SNACKS/aaron_the_king-chicken_parm_nachos.md @@ -0,0 +1,58 @@ +# Chicken Parm Nachos + +Turn your leftover chicken parm into an exciting midnight snack! + +## Ingredients + +- Leftover chicken parm +- Shredded Cheese of your choice, one handful per layer +- Tortilla chips, half a handful per layer +- (optional) Various 'fun enhancers' including but not limited to: + - Ground Beef, three pinches per layer + - Sliced Olives, one pinch per layer + - Diced Bell Pepper, two pinches per layer + - Salsa, three teaspoons per layer + +## Instructions + +1. Arrange your chips on top of the chicken parm so that it is + completely covered +2. Sprinkle your shredded cheese over the tortilla chips so that + there's an even distribution +3. Sprinkle your fun enhancers on the cheese (if any) +4. Microwave until the cheese is melted to your satisfaction + +## Tips n Tricks + +- This snack is best prepared and served between 23:00 and 04:00 + during an all nighter when you're getting hungry and want to take a + short relaxing break. +- Don't be afraid of being too boring if you don't have some fun + enhancers. Simply heating up your chicken parm and eating it plain + would be boring. We're making nachos! +- After you've finished your nachos just pick up the chicken parm and + eat it with your hands. + +::: images +../images/aaron_the_king-chicken_parm_nachos_0.jpg +::: + +::: images +../images/aaron_the_king-chicken_parm_nachos_1.jpg +::: + +::: images +../images/aaron_the_king-chicken_parm_nachos_2.jpg +::: + +::: images +../images/aaron_the_king-chicken_parm_nachos_3.jpg +::: + +::: images +../images/aaron_the_king-chicken_parm_nachos_4.jpg +::: + +::: images +../images/aaron_the_king-chicken_parm_nachos_5.jpg +::: diff --git a/SNACKS/aaron_the_king-chicken_parm_nachos.rst b/SNACKS/aaron_the_king-chicken_parm_nachos.rst deleted file mode 100644 index ff5c6ed..0000000 --- a/SNACKS/aaron_the_king-chicken_parm_nachos.rst +++ /dev/null @@ -1,51 +0,0 @@ -Chicken Parm Nachos -=================== - -Turn your leftover chicken parm into an exciting midnight snack! - -Ingredients ------------ - -- Leftover chicken parm -- Shredded Cheese of your choice, one handful per layer -- Tortilla chips, half a handful per layer -- (optional) Various ‘fun enhancers’ including but not limited to: - - - Ground Beef, three pinches per layer - - Sliced Olives, one pinch per layer - - Diced Bell Pepper, two pinches per layer - - Salsa, three teaspoons per layer - -Instructions ------------- - -1. Arrange your chips on top of the chicken parm so that it is - completely covered -2. Sprinkle your shredded cheese over the tortilla chips so that there’s - an even distribution -3. Sprinkle your fun enhancers on the cheese (if any) -4. Microwave until the cheese is melted to your satisfaction - -Tips n Tricks -------------- - -- This snack is best prepared and served between 23:00 and 04:00 during - an all nighter when you’re getting hungry and want to take a short - relaxing break. -- Don’t be afraid of being too boring if you don’t have some fun - enhancers. Simply heating up your chicken parm and eating it plain - would be boring. We’re making nachos! -- After you’ve finished your nachos just pick up the chicken parm and - eat it with your hands. - -.. images:: ../images/aaron_the_king-chicken_parm_nachos_0.jpg - -.. images:: ../images/aaron_the_king-chicken_parm_nachos_1.jpg - -.. images:: ../images/aaron_the_king-chicken_parm_nachos_2.jpg - -.. images:: ../images/aaron_the_king-chicken_parm_nachos_3.jpg - -.. images:: ../images/aaron_the_king-chicken_parm_nachos_4.jpg - -.. images:: ../images/aaron_the_king-chicken_parm_nachos_5.jpg \ No newline at end of file diff --git a/SNACKS/hardwaterhacker_smoked_whitefish.rst b/SNACKS/hardwaterhacker_smoked_whitefish.md similarity index 50% rename from SNACKS/hardwaterhacker_smoked_whitefish.rst rename to SNACKS/hardwaterhacker_smoked_whitefish.md index 2d5f375..2f467c4 100644 --- a/SNACKS/hardwaterhacker_smoked_whitefish.rst +++ b/SNACKS/hardwaterhacker_smoked_whitefish.md @@ -1,30 +1,27 @@ -@hardwaterhackers Smoked Whitefish -================================== +# \@hardwaterhackers Smoked Whitefish This brine works great for lake whitefish, tullibee (aka cisco), and other similar oily white meat fish. It even works great for northern pike. -Ingredients ------------ +## Ingredients -- 6-8 whitefish fillets, skin on -- 1 c (180 g) brown sugar, packed -- 1 c (300 g) Morton pickling salt -- 1/8 c (14 g) coarse ground black pepper -- 1/4 c (39 g) granulated garlic powder -- 8 bay leaves -- 2 Tbsp (14 g) onion powder -- 1 gallon (3.8 L) water +- 6-8 whitefish fillets, skin on +- 1 c (180 g) brown sugar, packed +- 1 c (300 g) Morton pickling salt +- 1/8 c (14 g) coarse ground black pepper +- 1/4 c (39 g) granulated garlic powder +- 8 bay leaves +- 2 Tbsp (14 g) onion powder +- 1 gallon (3.8 L) water -Preparation ------------ +## Preparation -1. Rinse fillets well in cold water -2. Combine dry ingredients and 1 quart (950 mL) water in a mixing bowl. - Mix until salt and sugar are completely dissolved. -3. Add brine to a food grade container with remaining water. Mix well. -4. Add fillets to brine. +1. Rinse fillets well in cold water +2. Combine dry ingredients and 1 quart (950 mL) water in a mixing bowl. + Mix until salt and sugar are completely dissolved. +3. Add brine to a food grade container with remaining water. Mix well. +4. Add fillets to brine. Place brined fillets in refrigerator or cooler packed with ice for 16 hours. A longer brine time will result in saltier fish. Thinner fillets @@ -32,10 +29,9 @@ should be brined for less time to prevent becoming overly salty. After brining, rinse fillets well in cold water and place on drying racks. The fillets will need to dry for 3 hours on drying racks in a refrigerator or a cool location to allow -`pellicle `__ to form. +[pellicle](https://en.wikipedia.org/wiki/Pellicle_(cooking)) to form. -Smoking -------- +## Smoking Spray smoker racks with a non-stick spray to prevent sticking. @@ -48,17 +44,11 @@ temperature for another 1-2 hours. Monitor fillets for desired moisture content. I prefer my smoked whitefish a little drier. Decrease total cooking time if a higher moisture content is desired. -.. figure:: images/hardwaterhacker_smoked_whitefish-whitefish_brine.jpg - :alt: Whitefish in brine +![whitefish in +brine](images/hardwaterhacker_smoked_whitefish-whitefish_brine.jpg) - whitefish in brine +![whitefish in +smoker](images/hardwaterhacker_smoked_whitefish-whitefish_in_smoker.jpg) -.. figure:: images/hardwaterhacker_smoked_whitefish-whitefish_in_smoker.jpg - :alt: Whitefish in smoker - - whitefish in smoker - -.. figure:: images/hardwaterhacker_smoked_whitefish-smoked_whitefish.jpg - :alt: Smoked whitefish - - smoked whitefish +![smoked +whitefish](images/hardwaterhacker_smoked_whitefish-smoked_whitefish.jpg) diff --git a/SNACKS/iHeartMalwares_kettle_corn.md b/SNACKS/iHeartMalwares_kettle_corn.md new file mode 100644 index 0000000..01ac0d2 --- /dev/null +++ b/SNACKS/iHeartMalwares_kettle_corn.md @@ -0,0 +1,37 @@ +# iHeartMalwares Easy Kettle Corn Recipe + +Anytime I go to a fair, I love the smell and taste of the fresh kettle +corn. The only down side is that you (typically) need this big cooker +thing in order to make it. I found a recipe online, it didn't come out +right, so I tweaked the recipe until it was right. When cooking this, +make sure you have everything measured out before hand because the time +goes by fast, and you don't want molten sugary popcorn going everywhere. + +## Ingredients + +- 1/4 cup vegetable oil (or other high temperature oil) +- 1/2 cup popcorn kernels + 3 kernels +- 1/3 cup sugar +- 3/4 teaspoon salt +- Large bowl for popcorn +- Stiring utensils + +## Instructions + +1. Take a skillet with a cover and put it on the stove top. Pour the + oil in with 3 kernels, and put the temperature to high. Cover with a + lid +2. Once the three kernels pop, the oil is hot enough for the others. + Pour the other kernels in, and quickly cover, giving it a quick + shake to coat the kernels. +3. About 30 seconds in, the kernels will start popping. Once a few have + started to pop, sprinkle the sugar in, cover, and give it a shake. +4. When the popcorn is mostly popped, pour it out into the large bowl, + and begin to sprinkle the salt on and mix while it's hot (with + utensils). The popcorn will be sticky, but will harden up as it + cools. You may need more salt for your taste. +5. Enjoy +6. Note: Getting the timing down for the sugar may take a few times, + and I have burned my fair share of sugar getting this recipe right. + If you're using larger kernels it takes more time to pop, smaller + kernels take less time. diff --git a/SNACKS/iHeartMalwares_kettle_corn.rst b/SNACKS/iHeartMalwares_kettle_corn.rst deleted file mode 100644 index 2881845..0000000 --- a/SNACKS/iHeartMalwares_kettle_corn.rst +++ /dev/null @@ -1,39 +0,0 @@ -iHeartMalwares Easy Kettle Corn Recipe -====================================== - -Anytime I go to a fair, I love the smell and taste of the fresh kettle -corn. The only down side is that you (typically) need this big cooker -thing in order to make it. I found a recipe online, it didn’t come out -right, so I tweaked the recipe until it was right. When cooking this, -make sure you have everything measured out before hand because the time -goes by fast, and you don’t want molten sugary popcorn going everywhere. - -Ingredients ------------ - -- 1/4 cup vegetable oil (or other high temperature oil) -- 1/2 cup popcorn kernels + 3 kernels -- 1/3 cup sugar -- 3/4 teaspoon salt -- Large bowl for popcorn -- Stiring utensils - -Instructions ------------- - -1. Take a skillet with a cover and put it on the stove top. Pour the oil - in with 3 kernels, and put the temperature to high. Cover with a lid -2. Once the three kernels pop, the oil is hot enough for the others. - Pour the other kernels in, and quickly cover, giving it a quick shake - to coat the kernels. -3. About 30 seconds in, the kernels will start popping. Once a few have - started to pop, sprinkle the sugar in, cover, and give it a shake. -4. When the popcorn is mostly popped, pour it out into the large bowl, - and begin to sprinkle the salt on and mix while it’s hot (with - utensils). The popcorn will be sticky, but will harden up as it - cools. You may need more salt for your taste. -5. Enjoy -6. Note: Getting the timing down for the sugar may take a few times, and - I have burned my fair share of sugar getting this recipe right. If - you’re using larger kernels it takes more time to pop, smaller - kernels take less time. diff --git a/admin/configure.ac b/admin/configure.ac index 460f356..63299cb 100644 --- a/admin/configure.ac +++ b/admin/configure.ac @@ -16,6 +16,7 @@ AC_CONFIG_COMMANDS([franklin-build], # Checks for programs. AC_PROG_CXX +AC_PATH_PROG([PANDOC], [pandoc], [na]) AC_PATH_PROG([SHFMT], [shfmt], [na]) AM_PATH_PYTHON(3.9 ) # minimum version of Python diff --git a/admin/cookbook/hacker_cookbook.tex b/admin/cookbook/hacker_cookbook.tex index 6355960..4edead4 100644 --- a/admin/cookbook/hacker_cookbook.tex +++ b/admin/cookbook/hacker_cookbook.tex @@ -42,3 +42,13 @@ \tableofcontents \listoffigures \listoftables\mainmatter{} +% !TeX encoding = UTF-8 +% !TeX root = hacker_cookbook.tex +% !TeX TXS-program:compile = txs:///pdflatex/[--shell-escape] + +\include{preamble} +\begin{document}% frontmatter: half title, title page, colophon (copyright page), epigraph, toc, preface, acknowledgements +\frontmatter{} +\tableofcontents +\listoffigures +\listoftables\mainmatter{} From bd0a073fd181becabe724c3cf0d4111c89a1f0e3 Mon Sep 17 00:00:00 2001 From: franklin <2730246+devsecfranklin@users.noreply.github.com> Date: Mon, 13 May 2024 16:26:41 -0600 Subject: [PATCH 04/10] convert all rst to md --- BREAKFAST/_section.md | 2 +- ..._the_king_hashbrownpatty_bacon_sandwich.md | 14 ++++---- COOKWARE/_section.md | 2 +- COOKWARE/aaron_the_king_tea_tasting_can.md | 34 +++++++++---------- DESSERTS/Breaking_Bad_Blackhat_Brownies.md | 32 ++++++++--------- 5 files changed, 42 insertions(+), 42 deletions(-) diff --git a/BREAKFAST/_section.md b/BREAKFAST/_section.md index 2c57bd1..c31f7bd 100644 --- a/BREAKFAST/_section.md +++ b/BREAKFAST/_section.md @@ -1,5 +1,5 @@ # Breakfast -- Can't be a daytime hacker without a good breakfast +- Can't be a daytime hacker without a good breakfast ![](https://images.pexels.com/photos/101533/pexels-photo-101533.jpeg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb) diff --git a/BREAKFAST/aaron_the_king_hashbrownpatty_bacon_sandwich.md b/BREAKFAST/aaron_the_king_hashbrownpatty_bacon_sandwich.md index a0f8489..3a367ec 100644 --- a/BREAKFAST/aaron_the_king_hashbrownpatty_bacon_sandwich.md +++ b/BREAKFAST/aaron_the_king_hashbrownpatty_bacon_sandwich.md @@ -4,25 +4,25 @@ Play with your food and then eat it! ## Ingredients -- 2x Standard issue Hashbrownpatties -- A few strips of bacon +- 2x Standard issue Hashbrownpatties +- A few strips of bacon ## Instructions -- Place the hashbrownpatties adjacent to one another as if they were +- Place the hashbrownpatties adjacent to one another as if they were slices of bread (keep in mind the context : you are about to make a sandwich) -- Tear the strips of bacon into smaller pieces so that if one slice is +- Tear the strips of bacon into smaller pieces so that if one slice is placed lengthwise across a hashbrownpatty there isn't too much overflow (hacker discretion is advised only at the advice of a hacker) -- Place your bacon kilobytes (these are much larger than bacon bits) +- Place your bacon kilobytes (these are much larger than bacon bits) on the bottom hashbrownpatty -- Place the top hashbrownpatty on top of the bacon kilobytes +- Place the top hashbrownpatty on top of the bacon kilobytes ## Tips n' Tricks -- Please don't put ketchup on it. +- Please don't put ketchup on it. ![image](images/aaron_the_king_hashbrownpatty_bacon_sandwich_0.jpg) diff --git a/COOKWARE/_section.md b/COOKWARE/_section.md index ab940f6..95207ab 100644 --- a/COOKWARE/_section.md +++ b/COOKWARE/_section.md @@ -1,3 +1,3 @@ # Cookware -- These are the things that are used for cooking +- These are the things that are used for cooking diff --git a/COOKWARE/aaron_the_king_tea_tasting_can.md b/COOKWARE/aaron_the_king_tea_tasting_can.md index 20d7e96..3e3cfc1 100644 --- a/COOKWARE/aaron_the_king_tea_tasting_can.md +++ b/COOKWARE/aaron_the_king_tea_tasting_can.md @@ -9,40 +9,40 @@ afterwards. ## Supplies -- Soda can -- Sharp pokey thing -- Can opener +- Soda can +- Sharp pokey thing +- Can opener ## How to make -1. Drain all liquid from the soda can -2. Remove the lid of the soda can using the can opener -3. Poke many holes in the soda can with regular spacing using your +1. Drain all liquid from the soda can +2. Remove the lid of the soda can using the can opener +3. Poke many holes in the soda can with regular spacing using your sharp pokey thing ## Crafting Tips n' Tricks -- If you aren't make sure to have proper adult supervision before +- If you aren't make sure to have proper adult supervision before doing this. -- Poke holes with discretion. Don't stab yourself. -- Don't be afraid to take the can opener off the can a few times while +- Poke holes with discretion. Don't stab yourself. +- Don't be afraid to take the can opener off the can a few times while removing the lid. You'll probably get a cleaner cut if you do many small twists and reposition the can opener more often. ## How to Brew -1. Put the Tea Tasting Can (TTC) into your mug of choice -2. Place your tea leaves directly into the middle of the TTC -3. Blanch the tea leaves (optional, see Tips n' Tricks) -4. Pour hot water into the TTC over the tea leaves -5. Wait until the tea is brewed to your preference -6. Lift the TTC straight upwards out of your mug +1. Put the Tea Tasting Can (TTC) into your mug of choice +2. Place your tea leaves directly into the middle of the TTC +3. Blanch the tea leaves (optional, see Tips n' Tricks) +4. Pour hot water into the TTC over the tea leaves +5. Wait until the tea is brewed to your preference +6. Lift the TTC straight upwards out of your mug ## Brewing Tips n' Tricks -- When lifting the TTC out of your mug don't go too fast. Otherwise +- When lifting the TTC out of your mug don't go too fast. Otherwise the tea will gush out of the holes and shoot past the sides of your mug. -- Use the same amount of leaves and water each time for more consitent +- Use the same amount of leaves and water each time for more consitent brews. Overflowing the cup slightly might feel messy but it ensures you always have the same amount of water. diff --git a/DESSERTS/Breaking_Bad_Blackhat_Brownies.md b/DESSERTS/Breaking_Bad_Blackhat_Brownies.md index 3e55587..f82972a 100644 --- a/DESSERTS/Breaking_Bad_Blackhat_Brownies.md +++ b/DESSERTS/Breaking_Bad_Blackhat_Brownies.md @@ -7,28 +7,28 @@ prefer tastes better. ## Ingredients -- 1/2 Pound Butter Melted (choice of butter here is optional +- 1/2 Pound Butter Melted (choice of butter here is optional salted/unsalted) Also please check and abide by State Laws if adding any "alternative" butter. -- 4 Tablespoons Dark Cocoa -- 1 Cup Water -- 2 Cups Flour -- 2 Cups Sugar -- 1 Teaspoon Baking Soda -- 1/2 Teaspoon Salt -- 1/2 Cup Buttermilk -- 2 Eggs -- 1 Teaspoon Vanila -- 2-4 Shots Espresso (as thick as possible, or just add less water if +- 4 Tablespoons Dark Cocoa +- 1 Cup Water +- 2 Cups Flour +- 2 Cups Sugar +- 1 Teaspoon Baking Soda +- 1/2 Teaspoon Salt +- 1/2 Cup Buttermilk +- 2 Eggs +- 1 Teaspoon Vanila +- 2-4 Shots Espresso (as thick as possible, or just add less water if over 4 shots) ## Frosting -- ¼ Pound Butter (again, what butter you use is at your discretion) -- 4 Tablespoons Dark Cocoa -- 8 Tablespoons Buttermilk -- 1 Teaspoon Vanilla -- 1 Box Confectioners Sugar +- ¼ Pound Butter (again, what butter you use is at your discretion) +- 4 Tablespoons Dark Cocoa +- 8 Tablespoons Buttermilk +- 1 Teaspoon Vanilla +- 1 Box Confectioners Sugar Optional = 1 Cup chopped Nuts of your choice (be mindful of those with nut allergies) From 00d7cf79906656c6cf3563c3502586eccdc15bdd Mon Sep 17 00:00:00 2001 From: franklin <2730246+devsecfranklin@users.noreply.github.com> Date: Tue, 14 May 2024 01:03:15 -0600 Subject: [PATCH 05/10] convert all rst to md --- .../Ajn_point_reyes_brussels_sprout_salad.md | 25 ++- APPETIZERS/boredsillys_angry_guacamole.md | 38 ++-- APPETIZERS/diff_asian_chicken_wings.md | 25 ++- ...ge_bone_marrow_mushrooms_and_broccolini.md | 38 ++-- APPETIZERS/theDevilsVoice_street_corn.md | 16 +- .../v3rtig0_Mashed_Potato_Croquettes.md | 24 +-- BREAKFAST/Marler_quick_migas.md | 64 +++---- ..._the_king_hashbrownpatty_bacon_sandwich.md | 12 +- COOKWARE/aaron_the_king_tea_tasting_can.md | 16 +- DESSERTS/Breaking_Bad_Blackhat_Brownies.md | 30 ++- ...eam_Cheese_Roll_Out_Cookies_With_Orange.md | 56 +++--- DESSERTS/TailPufft_Vegan_Carrot_Cake.md | 20 +- ...ilPufft_Whiskey_caramel_Apple_Hand_Pies.md | 156 ++++++++-------- .../TunnyTraffic_Foolproof_Victoria_Sponge.md | 120 ++++++------ DESSERTS/WireGhost_Key_Lime_Pyrewall.md | 62 +++---- DESSERTS/keto_marbled_turtle_cheesecake.md | 60 +++--- DESSERTS/wishperactual_peppernuts.md | 30 +-- DRINKS/Dual_Core-Faderade.md | 14 +- DRINKS/Dual_Core-Macaulay.md | 26 +-- DRINKS/Dual_Core-Plausible_Deniability.md | 42 ++--- DRINKS/Dual_Core-Vodka_Redbull.md | 8 +- DRINKS/_section.md | 2 +- .../ashmastaflash-grandpappys_turnt_juice.md | 34 ++-- DRINKS/b1ack0wl-holiday-drink.md | 172 +++++++++--------- DRINKS/iHeartMalwares_THE_Purple_Drink.md | 10 +- DRINKS/iHeartMalwares_rocket_league.md | 32 ++-- DRINKS/iHeartMalwares_sweet_tart.md | 22 +-- DRINKS/moonbas3_new_fashioned.md | 34 ++-- DRINKS/tiptone-mexican-martini.md | 22 +-- ENTREES/0xrnair_monster_chicken_burrito.md | 40 ++-- ENTREES/BenHeise_Bangers_and_Mash.md | 116 ++++++------ ENTREES/Dual_Core-Mom-s_Spaghetti.md | 26 +-- ENTREES/_section.md | 2 +- ENTREES/aaron_the_king_dishwasher_salmon.md | 24 +-- ENTREES/boredsillys_baked_gringo.md | 48 ++--- ...ys_excuse_to_eat_bacon_avocado_sandwich.md | 50 ++--- ENTREES/da_667s_cheesy_chicken_chili.md | 36 ++-- ENTREES/deviant_ollam_sous_vide_steak.md | 116 ++++++------ ...heese_Bacon_Potato_and_Cauliflower_Soup.md | 88 ++++----- ENTREES/elegin_balsamic_tempeh.md | 30 +-- ENTREES/elegin_cauliflower_steaks.md | 14 +- ENTREES/elegin_chickpea_tacos.md | 42 ++--- ENTREES/elegin_one_pot_thai_peanut.md | 34 ++-- ...terhacker_crispy_parmesan_baked_walleye.md | 38 ++-- ...dwaterhacker_grilled_cedar_plank_salmon.md | 38 ++-- ENTREES/iHeartMalware_NC_Pulled_Pork.md | 36 ++-- ENTREES/miss_gif_crock-pot-meatshield.md | 30 +-- ENTREES/moonbas3_bbq_ribs.md | 108 +++++------ ENTREES/moonbas3_mississippi_pot_roast.md | 32 ++-- ENTREES/panaderos_sausage_balls.md | 16 +- ...ist_slow_cooker_chorizo_black_bean_stew.md | 58 +++--- ENTREES/sl3dges_low-carb_sticky_pork_belly.md | 32 ++-- ENTREES/slufs_seared_tuna_pasta.md | 70 +++---- ENTREES/travelars_southwest_porkchops.md | 40 ++-- ...mzkl_caramelized-onion-mushroom-stuffin.md | 108 +++++------ ...eadlance_grandmothers_chicken_and_gravy.md | 24 +-- SAUCES/_section.md | 4 +- SAUCES/elegin_vegan_tarter_sauce.md | 12 +- SAUCES/iHeartMalware_buffalo_sauce.md | 20 +- .../jcase_LowCarb_Alabama_white_BBQ_sauce.md | 16 +- .../jcase_LowCarb_NorthCarolina_BBQ_sauce.md | 26 +-- SIDES/_section.md | 2 +- ...is0wn-Whiskey_Cranberry_Brussel_Sprouts.md | 62 +++---- ...HeartMalware_fermented_cranberry_relish.md | 52 +++--- SIDES/iHeartMalware_fermented_sauerkraut.md | 36 ++-- SIDES/thedevilsvoice_jangajji.md | 58 +++--- SNACKS/WireGhost_Eclectic_Freedom_Fries.md | 50 ++--- SNACKS/_section.md | 2 +- SNACKS/aaron_the_king-chicken_parm_nachos.md | 44 ++--- SNACKS/hardwaterhacker_smoked_whitefish.md | 26 +-- SNACKS/iHeartMalwares_kettle_corn.md | 46 ++--- admin/bin/convert_rst_md.sh | 21 ++- admin/bin/format_shell.sh | 3 + 73 files changed, 1489 insertions(+), 1497 deletions(-) diff --git a/APPETIZERS/Ajn_point_reyes_brussels_sprout_salad.md b/APPETIZERS/Ajn_point_reyes_brussels_sprout_salad.md index 9d85eb9..ab5223b 100644 --- a/APPETIZERS/Ajn_point_reyes_brussels_sprout_salad.md +++ b/APPETIZERS/Ajn_point_reyes_brussels_sprout_salad.md @@ -1,12 +1,10 @@ -Ajn's Point Reyes Brussel Sprout Salad -====================================== +# Ajn's Point Reyes Brussel Sprout Salad The key is absolutely the mild flavor of this cheese from a creamery in Calfornia. Been meaning to try cambazola for fun, but haven't yet had the chance. Here goes... -Ingredients ------------ +## Ingredients - 1/3-1/2 lb uncooked, untrimmed Brussels sprouts - 1 tbsp+ high quality olive oil @@ -18,17 +16,16 @@ Ingredients - Salt & pepper - 1 Tbsp of Apple Cider Vinegar -Instructions ------------- +## Instructions 1. Insert a fork into the stem end of each sprout, and shred on a - mandolin slicer moving in a single direction until only the portion - you would have trimmed is left. Consistency is key here; you want - light, shredded bits with some thinly sliced core pieces + mandolin slicer moving in a single direction until only the portion + you would have trimmed is left. Consistency is key here; you want + light, shredded bits with some thinly sliced core pieces 2. In a large bowl, mix oil, syrup, mustard and blue cheese with a - fork, mashing the cheese until smooth and integrated. You could use - a food processor, but I find this easier. Balance cheese/oil/mustard - to your preference, along with light salt/pepper. + fork, mashing the cheese until smooth and integrated. You could use + a food processor, but I find this easier. Balance cheese/oil/mustard + to your preference, along with light salt/pepper. 3. Mix in sprouts until you achieve a dressing:sprout ratio you like. - We prefer it pretty thin on dressing. Add pears and sprinkle with - walnuts. Serve with grilled beef/pork/lamb. + We prefer it pretty thin on dressing. Add pears and sprinkle with + walnuts. Serve with grilled beef/pork/lamb. diff --git a/APPETIZERS/boredsillys_angry_guacamole.md b/APPETIZERS/boredsillys_angry_guacamole.md index b9bfa09..95fe35f 100644 --- a/APPETIZERS/boredsillys_angry_guacamole.md +++ b/APPETIZERS/boredsillys_angry_guacamole.md @@ -1,5 +1,4 @@ -Angry Guacamole -=============== +# Angry Guacamole by \@boredsilly @@ -12,20 +11,18 @@ don't seem to notice because they're processed so well. Serves 8 to 10 -Ingredients ------------ +## Ingredients - 6 large ripe avocados - 4 large bunches of cilantro or 6 smaller bunches - 6 jalapeños alone for mild heat and an additional 3 or more - habaneros for angry + habaneros for angry - 1 large or 2 small red onions - 1 lime - Sea salt - Garlic powder -Preparation Tips and Tricks: [*Read this section first*] ----------------------------------------------------------- +## Preparation Tips and Tricks: [*Read this section first*] **Cilantro**: Hate destemming cilantro like I do? **BEFORE** you wash it, use a fork to rake down the length of the bunch from the base toward @@ -45,12 +42,12 @@ to work when trying to find hot or mild peppers. Also, the heat of the chili is in the seeds and membrane. - **Mild**: Choose smooth skinned jalapeños and cut them in half and - scrape out everything with a spoon leaving only the green flesh. - Continue to scrape away anything lighter in color on the inside of - the chili to minimize the heat. + scrape out everything with a spoon leaving only the green flesh. + Continue to scrape away anything lighter in color on the inside of + the chili to minimize the heat. - **Maximum heat**: Choose aged jalapeños and remove the top stem and - pith (white ball near the top) and leave everything else. Seeds are - optional. Include the habaneros. + pith (white ball near the top) and leave everything else. Seeds are + optional. Include the habaneros. **Processing the veggies**: I double process all of the onions, chilies, and cilantro to make a smoother guacamole. By double processing, I mean @@ -70,20 +67,19 @@ room for air and refrigerate. The lime juice will help slow the graying and some say the avocado pits help as well. You can then dish it in a bowl when the time comes to serve it. -Instructions ------------- +## Instructions 1. Process the cilantro, onion(s), and chilies as described above and - place them in a bowl. + place them in a bowl. 2. Cut the avocados in half, remove the pits, and scoop out the flesh - into the bowl + into the bowl 3. Hand stir until everything is evenly mixed. **Do not put the - avocados in the food processor or it will turn it into a sauce!** + avocados in the food processor or it will turn it into a sauce!** 4. Add garlic powder to taste (I normally use at least 3 tablespoons) 5. Add salt to taste (I normally use at least 4 tablespoons) 6. Cut the lime in half and squeeze out the juice of one piece. Stir - and taste. If it's not enough start to add the second half one small - squeeze at a time until it tastes good. Don't use too much juice! - The juice also helps prevent graying. + and taste. If it's not enough start to add the second half one small + squeeze at a time until it tastes good. Don't use too much juice! + The juice also helps prevent graying. 7. Serve immediately with tortilla chips or as a condiment otherwise - store in a manner described above + store in a manner described above diff --git a/APPETIZERS/diff_asian_chicken_wings.md b/APPETIZERS/diff_asian_chicken_wings.md index 8973b2e..965cd8b 100644 --- a/APPETIZERS/diff_asian_chicken_wings.md +++ b/APPETIZERS/diff_asian_chicken_wings.md @@ -1,5 +1,4 @@ -diff's Asian Chicken Wings -========================== +# diff's Asian Chicken Wings Growing up on the East Coast and working in some resturants, I came to enjoy "Chinese" chicken wings, which had not really been Chinese at all. @@ -7,8 +6,7 @@ You can't get them in authentic places, but it was still tasty. After trying for a while without luck to find a worthy replacement in the Bay Area, I decided to essentially reverse engineer the taste. -Sauce Ingredients ------------------ +## Sauce Ingredients - 1/4 cup of sugar - 1/8 cup of salt @@ -18,7 +16,7 @@ Sauce Ingredients - 1/4 cup of rice wine - 1/4 cup of vinegar (slightly less) - 1 tsp of 5 spice powder (replace with habanero for extra heat, but - add cumin) + add cumin) - 1 tsp of ginger powered - 1 tsp real ginger (freshly grated) - 1 tsp onion powder @@ -33,11 +31,10 @@ wings depending on the vessel used to marinate. For best results, put into a bag (or vacuum seal) and freeze, to allow the marinade to penetrade the chicken more. -Cooking -------- +## Cooking -Remove chicken from container and let excess marinade strain back in --you could likely use this marinade again if you've liked it. Don't +Remove chicken from container and let excess marinade strain back in. +You could likely use this marinade again if you've liked it. Don't bother with the onion chunks unless you want to add them to some other stir fry dish. @@ -47,10 +44,10 @@ first flip as the marinade has the raw chicken juice in it. As you cool, you can brush with honey to create a crispier skin. - Smoking the chicken wings ends up adding an extra interesting layer, - though this just elongates the process + though this just elongates the process - Sauce/chicken is fine to sous vide with, this is an awesome - alternative to cooking it fully on the grill. Juice will be safe for - basting of making a concetrated dipping sauce. + alternative to cooking it fully on the grill. Juice will be safe for + basting of making a concetrated dipping sauce. - Alternatively you can actually fry the chicken wings, as a resturant - would. This just tends to be a bit more messy and the clean up can - be bothersome. + would. This just tends to be a bit more messy and the clean up can + be bothersome. diff --git a/APPETIZERS/sl3dge_bone_marrow_mushrooms_and_broccolini.md b/APPETIZERS/sl3dge_bone_marrow_mushrooms_and_broccolini.md index 879ea67..4883c89 100644 --- a/APPETIZERS/sl3dge_bone_marrow_mushrooms_and_broccolini.md +++ b/APPETIZERS/sl3dge_bone_marrow_mushrooms_and_broccolini.md @@ -1,15 +1,13 @@ -Bone Marrow Mushroom with Roasted Brocolini. \@BitSledge -======================================================== +# Bone Marrow Mushroom with Roasted Brocolini. \@BitSledge Incredibly savory dish consisting of crisp baby broccoly and mushrooms roasted in bone marrow. Use 12 inch cast iron skillet if available. -Ingredients ------------ +## Ingredients - 16 oz of mushrooms (white or portebello or a mix) - 3 packages of baby broccoly (broccolini). Enough to cover 1.5 cookie - sheets. + sheets. - 4 round bone marrow chunks - 1/2 Shallot - minced - 4 Tbsp of minced garlic @@ -21,40 +19,38 @@ Ingredients - 2 Tbspns Marsala Wine - 2 Tbspn Butter -Optional Ingredients --------------------- +## Optional Ingredients - Crushed Red Pepper - Fresh Parmesan - Soy Sauce - 2 Limes -Instructions ------------- +## Instructions - Preheat over to 400 - Toss baby broccoli in light olive oil and sea salt, then arrange on - foil lined baking pan + foil lined baking pan - Place brocollini in oven for about 12 or 13 minutes, turn them over - about 6 minutes in. You want them to be crispy but not burnt. + about 6 minutes in. You want them to be crispy but not burnt. - Prep the marrow bones by placing them on another foil lined pan, - sprinkle salt over the top and place in oven with the brocolli. + sprinkle salt over the top and place in oven with the brocolli. - While Broccolini and marrow cooks, saute the minced shallot, garlic - and onion in about 2 tbsp of olive oil, give it a few minutes untill - it starts to soften. + and onion in about 2 tbsp of olive oil, give it a few minutes untill + it starts to soften. - Pull the brocoli out whenever its done and set aside, turn up the - heat to 450 and watch the marrow. you want it almost oozing out but - not quite. When it gets to that point oi like to turn the heat off - and leave them in the oven untill needed. + heat to 450 and watch the marrow. you want it almost oozing out but + not quite. When it gets to that point oi like to turn the heat off + and leave them in the oven untill needed. - Throw in mushrooms and saute for about 8 minutes or untill they - start sweating out. + start sweating out. - Throw in the red bell pepper for a minute or 2. - Toss in a big dab of butter, along with the beef broth, and herbs. - Lay the marrow bones down in the pan, the goal is to get the marrow - to ooze out and coat the mixture. Feel free to spoon it out. + to ooze out and coat the mixture. Feel free to spoon it out. - stir around and let it cook for a bit untill everything is soft yet - the peppers are still somewhat crisp, and most of the marrow is - liquified. + the peppers are still somewhat crisp, and most of the marrow is + liquified. - Sprinkle red chili flakes if desired. - Arrange brocoli in the mix to make it look nice. - Drizzle with some lime juice, and a tiny bit of soy sauce. diff --git a/APPETIZERS/theDevilsVoice_street_corn.md b/APPETIZERS/theDevilsVoice_street_corn.md index ba3be4a..ff99e0d 100644 --- a/APPETIZERS/theDevilsVoice_street_corn.md +++ b/APPETIZERS/theDevilsVoice_street_corn.md @@ -1,11 +1,9 @@ -Street Corn \@theDevilsVoice -============================ +# Street Corn \@theDevilsVoice A fairly healthy vegetable dish. Spicy, and a nice complement to your Mexican food on Taco Tuesday. -Ingredients ------------ +## Ingredients - 3 or 4 cans of corn - 1 bunch cilantro, larger stems removed, and roughly chopped @@ -14,18 +12,16 @@ Ingredients - 2 Tbsp. Mayonaise - 2 Tbsp. sour cream -Optional --------- +## Optional - Tortilla Chips - Serrano Chiles, diced -Instructions ------------- +## Instructions - In a large skillet or wok, heat up about 1/3 cup of olive oil. - Heat the corn in the hot oil until it starts to turn brown, stirring - occasionaly so it doesn't stick. + occasionaly so it doesn't stick. - Dump the corn into a bowl with the rest of the ingredients and stir. - Eat it with chips like a dip or put it on your tacos. Optionally - spice it up with Serrano or other chile & spices. + spice it up with Serrano or other chile & spices. diff --git a/APPETIZERS/v3rtig0_Mashed_Potato_Croquettes.md b/APPETIZERS/v3rtig0_Mashed_Potato_Croquettes.md index 862ffda..1a694b5 100644 --- a/APPETIZERS/v3rtig0_Mashed_Potato_Croquettes.md +++ b/APPETIZERS/v3rtig0_Mashed_Potato_Croquettes.md @@ -1,5 +1,4 @@ -Mashed Potato Croquettes -======================== +# Mashed Potato Croquettes Contributed by Russ Rogers a.k.a. \@v3rtig0 @@ -14,8 +13,7 @@ comfort food for hackers. Try them with a dip, for added punch. Mayo/Sriracha combination, honey mustard, or even ranch dressing are good options. -Ingredients ------------ +## Ingredients - About 3-4 lbs of golden potatos - 4 Tbl salted butter @@ -32,8 +30,7 @@ Ingredients Fryer with appropriate oil, heated to 350 degrees F, when needed. -Making the potatoes -------------------- +## Making the potatoes Wash and peel the potatoes. Dice them all into 1 inch squares or less. Rinse the potatoes briefly. Place the potatoes in a large pot of water, @@ -51,8 +48,7 @@ Add garlic powder, salt, butter, sour cream, cheese, chives, black pepper, and liquid smoke to the pot, and mix well. Check the texture, and taste. Adjust the texture with milk, until fairly creamy. -Spread the Potatoes -------------------- +### Spread the Potatoes Spread the potatoes into a 9x13 pan (you can pre-grease with cooking spray if you want to make it a bit simpler to get the potato strips out, @@ -66,8 +62,7 @@ long. Put back in the freezer for a couple of hours. Once completely frozen, you can pull the strips out, and place in a bowl to be used later. -Prepare egg wash and bread crumbs ---------------------------------- +### Prepare egg wash and bread crumbs You'll likely need about 5-6 large eggs beaten with a couple of tablespoons of milk, for the wash. @@ -77,16 +72,14 @@ For the breadcrumb mixture, I used the pre-made crumbs from the store bacon (already cooked). Mix well. Leave the bacon out for a vegetarian option. -Prepare the croquettes ----------------------- +### Prepare the croquettes Take a strip of potatoes (still frozen) and roll in the egg bath. Then roll in the breadcrumb mixture until fully coated. Place in a pan to be re-frozen. Repeat this will all the strips, then return them to the freezer for another hour or so, to harden before frying. -To cook -------- +## To cook Heat your oil to about 350 degrees. You can check the temperature of the oil, if you don't have a thermometer, by putting the handle of a wooden @@ -97,8 +90,7 @@ Cook 5 strips at a time, for about 1 1/2 to 2 minutes, until golden brown. Place on a pan with paper towels, to remove excess oil. They're ready to eat at this point. -Suitable dips -------------- +## Suitable dips These can be eaten with a number of dips, including marinara, honey mustard, ranch dressing, or a mix of sriracha with mayonaise. Pretty diff --git a/BREAKFAST/Marler_quick_migas.md b/BREAKFAST/Marler_quick_migas.md index d60497c..521d9dc 100644 --- a/BREAKFAST/Marler_quick_migas.md +++ b/BREAKFAST/Marler_quick_migas.md @@ -10,46 +10,46 @@ won't blow up if you do it wrong, though I will if you add cheese. ## Ingredients -- 2-3 eggs -- 1/2 link of cheap chorizo (Get the cheapest stuff your grocer has. - Ignore the artisan, localvore, hipster Chorizo.) -- 1 single serving size bag of Fritos (or a handful of corn chips, - stale or fresh) -- Salsa (Use whatever is in your fridge, and as much as you can - handle) -- Bacon (for eating while cooking, or to put in the Migas. I won't - judge you either way.) +- 2-3 eggs +- 1/2 link of cheap chorizo (Get the cheapest stuff your grocer has. + Ignore the artisan, localvore, hipster Chorizo.) +- 1 single serving size bag of Fritos (or a handful of corn chips, + stale or fresh) +- Salsa (Use whatever is in your fridge, and as much as you can + handle) +- Bacon (for eating while cooking, or to put in the Migas. I won't + judge you either way.) ## Optional -- Potatoes (If you have some in the fridge, season liberally and throw - them in) -- Fresh veggies (Tomato, jalapeno peppers, mushrooms, whatever you - have and/or like) -- Mushrooms (I hate mushrooms, but you might not) -- More meat (If you have leftover BBQ, chicken, or anything else you - don't know what to do with, throw it in there) -- Cheese +- Potatoes (If you have some in the fridge, season liberally and throw + them in) +- Fresh veggies (Tomato, jalapeno peppers, mushrooms, whatever you + have and/or like) +- Mushrooms (I hate mushrooms, but you might not) +- More meat (If you have leftover BBQ, chicken, or anything else you + don't know what to do with, throw it in there) +- Cheese ## Instructions -1. Use your favorite skillet for cooking eggs and heat it up -2. Take the chorizo out of it's inedible wrapper (you bought the cheap - stuff, right? That casing is not edible) and put it in the pan -3. Chop up the chorizo with a spatula while it cooks until you get it - into small chunks -4. Crack the eggs and put them into a plastic cup -5. Season the eggs with salt and pepper in the cup -6. Stir up the eggs with a fork until they are as blended as you like - them to be -7. When the chorizo is done, pour in the eggs -8. Crush the fritos in the bag, then open the bag over the skillet and - dump them in -9. Add the salsa to the skillet +1. Use your favorite skillet for cooking eggs and heat it up +2. Take the chorizo out of it's inedible wrapper (you bought the cheap + stuff, right? That casing is not edible) and put it in the pan +3. Chop up the chorizo with a spatula while it cooks until you get it + into small chunks +4. Crack the eggs and put them into a plastic cup +5. Season the eggs with salt and pepper in the cup +6. Stir up the eggs with a fork until they are as blended as you like + them to be +7. When the chorizo is done, pour in the eggs +8. Crush the fritos in the bag, then open the bag over the skillet and + dump them in +9. Add the salsa to the skillet 10. Add anything else you want to add to cook with the eggs 11. Stir and chop with the spatula until the eggs are cooked as far as - you like them cooked (I like my eggs dry as a Texas drought) + you like them cooked (I like my eggs dry as a Texas drought) 12. Remove skillet from heat and divide accordingly onto plates 13. If you have any fresh veggies you want to add for garnish, now is - your chance to do so + your chance to do so 14. Enjoy! diff --git a/BREAKFAST/aaron_the_king_hashbrownpatty_bacon_sandwich.md b/BREAKFAST/aaron_the_king_hashbrownpatty_bacon_sandwich.md index 3a367ec..c47981e 100644 --- a/BREAKFAST/aaron_the_king_hashbrownpatty_bacon_sandwich.md +++ b/BREAKFAST/aaron_the_king_hashbrownpatty_bacon_sandwich.md @@ -10,14 +10,14 @@ Play with your food and then eat it! ## Instructions - Place the hashbrownpatties adjacent to one another as if they were - slices of bread (keep in mind the context : you are about to make a - sandwich) + slices of bread (keep in mind the context : you are about to make a + sandwich) - Tear the strips of bacon into smaller pieces so that if one slice is - placed lengthwise across a hashbrownpatty there isn't too much - overflow (hacker discretion is advised only at the advice of a - hacker) + placed lengthwise across a hashbrownpatty there isn't too much + overflow (hacker discretion is advised only at the advice of a + hacker) - Place your bacon kilobytes (these are much larger than bacon bits) - on the bottom hashbrownpatty + on the bottom hashbrownpatty - Place the top hashbrownpatty on top of the bacon kilobytes ## Tips n' Tricks diff --git a/COOKWARE/aaron_the_king_tea_tasting_can.md b/COOKWARE/aaron_the_king_tea_tasting_can.md index 3e3cfc1..1d18a25 100644 --- a/COOKWARE/aaron_the_king_tea_tasting_can.md +++ b/COOKWARE/aaron_the_king_tea_tasting_can.md @@ -18,16 +18,16 @@ afterwards. 1. Drain all liquid from the soda can 2. Remove the lid of the soda can using the can opener 3. Poke many holes in the soda can with regular spacing using your - sharp pokey thing + sharp pokey thing ## Crafting Tips n' Tricks - If you aren't make sure to have proper adult supervision before - doing this. + doing this. - Poke holes with discretion. Don't stab yourself. - Don't be afraid to take the can opener off the can a few times while - removing the lid. You'll probably get a cleaner cut if you do many - small twists and reposition the can opener more often. + removing the lid. You'll probably get a cleaner cut if you do many + small twists and reposition the can opener more often. ## How to Brew @@ -41,8 +41,8 @@ afterwards. ## Brewing Tips n' Tricks - When lifting the TTC out of your mug don't go too fast. Otherwise - the tea will gush out of the holes and shoot past the sides of your - mug. + the tea will gush out of the holes and shoot past the sides of your + mug. - Use the same amount of leaves and water each time for more consitent - brews. Overflowing the cup slightly might feel messy but it ensures - you always have the same amount of water. + brews. Overflowing the cup slightly might feel messy but it ensures + you always have the same amount of water. diff --git a/DESSERTS/Breaking_Bad_Blackhat_Brownies.md b/DESSERTS/Breaking_Bad_Blackhat_Brownies.md index f82972a..de6399b 100644 --- a/DESSERTS/Breaking_Bad_Blackhat_Brownies.md +++ b/DESSERTS/Breaking_Bad_Blackhat_Brownies.md @@ -8,8 +8,8 @@ prefer tastes better. ## Ingredients - 1/2 Pound Butter Melted (choice of butter here is optional - salted/unsalted) Also please check and abide by State Laws if adding - any "alternative" butter. + salted/unsalted) Also please check and abide by State Laws if adding + any "alternative" butter. - 4 Tablespoons Dark Cocoa - 1 Cup Water - 2 Cups Flour @@ -20,7 +20,7 @@ prefer tastes better. - 2 Eggs - 1 Teaspoon Vanila - 2-4 Shots Espresso (as thick as possible, or just add less water if - over 4 shots) + over 4 shots) ## Frosting @@ -35,19 +35,17 @@ nut allergies) ## Instructions -1. Preheat Oven to 350 Degrees Fahrenheit (177 Celsius) -2. Add Cocoa & Water to Butter. -3. Add Espresso shots and bring to a boil. -4. Mix together Flour, Sugar, Soda & Salt. -5. Add boiling Cocoa mixture & stir until blended. -6. Add Buttermilk, Eggs & Vanilla. Stir Until smooth. -7. Pour into a greased baking pan of suitable shape. +1. Preheat Oven to 350 Degrees Fahrenheit (177 Celsius) +2. Add Cocoa & Water to Butter. +3. Add Espresso shots and bring to a boil. +4. Mix together Flour, Sugar, Soda & Salt. +5. Add boiling Cocoa mixture & stir until blended. +6. Add Buttermilk, Eggs & Vanilla. Stir Until smooth. +7. Pour into a greased baking pan of suitable shape. ## Making the Frosting: -1. Add Cocoa & Buttermilk to Butter and bring to a boil in a medium - sauce pan. -2. Add Sugar & Vanilla, stirring until smooth consistency. -3. Pour over the warmed cooked brownies. Optionally adding chopped - Nuts. -4. Enjoy. +1. Add Cocoa & Buttermilk to Butter and bring to a boil in a medium sauce pan. +2. Add Sugar & Vanilla, stirring until smooth consistency. +3. Pour over the warmed cooked brownies. Optionally adding chopped Nuts. +4. Enjoy. diff --git a/DESSERTS/TailPufft_Cream_Cheese_Roll_Out_Cookies_With_Orange.md b/DESSERTS/TailPufft_Cream_Cheese_Roll_Out_Cookies_With_Orange.md index 5e360ee..c9479d4 100644 --- a/DESSERTS/TailPufft_Cream_Cheese_Roll_Out_Cookies_With_Orange.md +++ b/DESSERTS/TailPufft_Cream_Cheese_Roll_Out_Cookies_With_Orange.md @@ -2,24 +2,24 @@ ## Cookies -- 1 cup butter - close to room tempterature -- 1 8 pz. package of cream cheese - room temperature -- 2 cups granulated sugar -- 2 eggs -- 4 tsp. frozen orange juice concentrate -- Zest of 1 orange -- 1 tsp. vanilla extract -- 1 tsp. almond extract -- 2 tsp. baking powder -- 5 cups flour -- Extra flour for dusting +- 1 cup butter - close to room tempterature +- 1 8 pz. package of cream cheese - room temperature +- 2 cups granulated sugar +- 2 eggs +- 4 tsp. frozen orange juice concentrate +- Zest of 1 orange +- 1 tsp. vanilla extract +- 1 tsp. almond extract +- 2 tsp. baking powder +- 5 cups flour +- Extra flour for dusting ## Icing Recipe -- 1 cup powdered sugar -- 1 tbsp. milk -- 1 tbsp. light corn syrup -- 1 drop lemon juice +- 1 cup powdered sugar +- 1 tbsp. milk +- 1 tbsp. light corn syrup +- 1 drop lemon juice ## Directions @@ -51,19 +51,19 @@ later, have at it. This dough freezes very well. ## Baking -1. Either grease cookie sheets or use parchment paper. Is the oven on? - Put the whiskey down and turn the oven on. -2. Keep an eye on these suckers as it is a pretty quick bake. I would - check them after 8 minutes, but usually take about 10 minutes for a - variety of sizes. We make little bats for Christmas. Christmas bats - take about 8 minutes. Very lightely golden at the edges means they - are done. -3. Enjoy watching various stages of cookies take over every single - horizontal surface of your house. +1. Either grease cookie sheets or use parchment paper. Is the oven on? + Put the whiskey down and turn the oven on. +2. Keep an eye on these suckers as it is a pretty quick bake. I would + check them after 8 minutes, but usually take about 10 minutes for a + variety of sizes. We make little bats for Christmas. Christmas bats + take about 8 minutes. Very lightely golden at the edges means they + are done. +3. Enjoy watching various stages of cookies take over every single + horizontal surface of your house. ## Icing -1. Let the cookies cool, as putting icing on hot cookies will cause the - icing to make a mess. -2. Mix everything together, then put on cookies. Or just dip the - cookies in the icing. +1. Let the cookies cool, as putting icing on hot cookies will cause the + icing to make a mess. +2. Mix everything together, then put on cookies. Or just dip the + cookies in the icing. diff --git a/DESSERTS/TailPufft_Vegan_Carrot_Cake.md b/DESSERTS/TailPufft_Vegan_Carrot_Cake.md index 3a82eec..24c7b5f 100644 --- a/DESSERTS/TailPufft_Vegan_Carrot_Cake.md +++ b/DESSERTS/TailPufft_Vegan_Carrot_Cake.md @@ -2,16 +2,16 @@ ## Ingredients -- 3 cups flour -- 2 tsp. baking soda -- 1 tsp. salt -- 2 cups sugar -- 3 cups grated fresh carrots -- 1 tbsp. cinnamon -- 1 1/2 cups vegetable oil -- 1 cup chopped walnuts -- 1 cup pureed banana (or alternate egg substitue to replace the - equivelant of 4 eggs) +- 3 cups flour +- 2 tsp. baking soda +- 1 tsp. salt +- 2 cups sugar +- 3 cups grated fresh carrots +- 1 tbsp. cinnamon +- 1 1/2 cups vegetable oil +- 1 cup chopped walnuts +- 1 cup pureed banana (or alternate egg substitue to replace the + equivelant of 4 eggs) ## Directions diff --git a/DESSERTS/TailPufft_Whiskey_caramel_Apple_Hand_Pies.md b/DESSERTS/TailPufft_Whiskey_caramel_Apple_Hand_Pies.md index e5b1576..b2cecd5 100644 --- a/DESSERTS/TailPufft_Whiskey_caramel_Apple_Hand_Pies.md +++ b/DESSERTS/TailPufft_Whiskey_caramel_Apple_Hand_Pies.md @@ -2,110 +2,110 @@ ## Ingredients -- 1 bottle of whiskey -- Hand pie press or empanada press or hey, just wing it. -- Digital scale +- 1 bottle of whiskey +- Hand pie press or empanada press or hey, just wing it. +- Digital scale ## Crust -- 2 1/2 cups flower -- 1 cup grease (1/2 butter, 1/2 shortening) -- 1 tsp. salt -- 2 tbsp. sugar -- Some of the whiskey +- 2 1/2 cups flower +- 1 cup grease (1/2 butter, 1/2 shortening) +- 1 tsp. salt +- 2 tbsp. sugar +- Some of the whiskey ## Filling -- About 12 apples -- 1 1/2 tbsp. cinnamon -- 1/2 cup sugar -- some of the whiskey -- 2 eggs for egg wash +- About 12 apples +- 1 1/2 tbsp. cinnamon +- 1/2 cup sugar +- some of the whiskey +- 2 eggs for egg wash ## Caramel -- 1 cup sugar -- 2 oz. water -- 4 oz. cream -- 2 oz. whiskey +- 1 cup sugar +- 2 oz. water +- 4 oz. cream +- 2 oz. whiskey ## Directions -1. Crust first because you gotta chill it. -2. Dump flour, salt, and sugar into a bowl and mix together. -3. Add your butter / shortening. -4. Take a pint glass, jam it full with ice, and pour enough whiskey - into it to fill the cracks -5. Get your pastery cutter (aka pastry blender) and start chopping the - butter chunks into the flour. Keep going until each bit of floury - butter bit is no bigger than a pea. -6. Take your chilled whiskey and slowly dribble it into the dough. Mix - it together by hand, but don't squish it too much. This is more of a - shred and stack game. Too much Play Doh style squishing and your - crust will not be flakey. No flakes on your crust == SHAME. -7. After about 1/2 cup or so of the chilled whsieky, your dough should - be coming together. -8. Form into an overweight frisbee and ut it in the freezer. You don't - roll out warm pie crust, only cold. -9. Alcohol is better than ice water for pastry crusts because the - alcohol causes better seperation of the dough layers when it's - baking. +1. Crust first because you gotta chill it. +2. Dump flour, salt, and sugar into a bowl and mix together. +3. Add your butter / shortening. +4. Take a pint glass, jam it full with ice, and pour enough whiskey + into it to fill the cracks +5. Get your pastery cutter (aka pastry blender) and start chopping the + butter chunks into the flour. Keep going until each bit of floury + butter bit is no bigger than a pea. +6. Take your chilled whiskey and slowly dribble it into the dough. Mix + it together by hand, but don't squish it too much. This is more of a + shred and stack game. Too much Play Doh style squishing and your + crust will not be flakey. No flakes on your crust == SHAME. +7. After about 1/2 cup or so of the chilled whsieky, your dough should + be coming together. +8. Form into an overweight frisbee and ut it in the freezer. You don't + roll out warm pie crust, only cold. +9. Alcohol is better than ice water for pastry crusts because the + alcohol causes better seperation of the dough layers when it's + baking. 10. No, the alcohol does not bake out. This is just the most FANTASTIC - lie. + lie. 11. Wash, peel, and dice the apples. 12. Cook until soft on the stove with some sugar, cinnamon, and more - whiskey to taste. Y'all do what you want with your cinnamon / - whiskey levels but...go big or go home. + whiskey to taste. Y'all do what you want with your cinnamon / + whiskey levels but...go big or go home. 13. Roll out pie dough to make small circles, use your pie press a sa - template + template 14. Now turn on your oven to 400 15. Fill your wee pies with apple filling 16. Set on parchment covered cookie sheet, slice some small (SMALL, - DAMNIT) vents, and brush with egg wash + DAMNIT) vents, and brush with egg wash 17. Bake for 18-22 minutes ## Caramel Cooking -- Go watch a YouTube vide oon how to make caramel. -- Go watch another YouTube video on what sugar burns do to you -- At this point maybe excuse children or accident-prone adults out of - the kitchen. Kick them the hell out. -- This is oht work and I'm not joking around when I csay you can - really f@#!@\$ yourself up. -- This is not impossible and it is do-able, even for a novice. But - give it the respect it deserves. -- Yay, time t omake caramel now! Wheee! -- Weigh out all ingredients before you turn any burners on -- Use a tough saucepot for this, nothing with teflon. Wooden spoons - usually do not melt, grab one. -- DO. NOT. STIR. THE. SUGARWATER. +- Go watch a YouTube vide oon how to make caramel. +- Go watch another YouTube video on what sugar burns do to you +- At this point maybe excuse children or accident-prone adults out of + the kitchen. Kick them the hell out. +- This is oht work and I'm not joking around when I csay you can + really f@#!@\$ yourself up. +- This is not impossible and it is do-able, even for a novice. But + give it the respect it deserves. +- Yay, time t omake caramel now! Wheee! +- Weigh out all ingredients before you turn any burners on +- Use a tough saucepot for this, nothing with teflon. Wooden spoons + usually do not melt, grab one. +- DO. NOT. STIR. THE. SUGARWATER. -1. Pour granulated sugar into cold saucepan. -2. Gently pour your 2 oz. of water over the sugar, do not splash it and - don't let any sugar water bounce up the sides of the pot. -3. Do not stir it. Seriously. -4. Ya pour water in and LEAVE IT. Even if there are dry looking bits of - sugar, don't stur. -5. Turn on the burner to medium high heat. -6. You are now tied to the stove. -7. Stand there and watch it like a Russian on Facebook. -8. It will start to bubble as it cookes. -9. Once part of the mixture starts turning golden, you slowly stir in - the cream and turn the heat to low. (Yes, NOW stir.) Don't let it - turn brown, you will smell it right away if you burned it. If you - burn it, start over. +1. Pour granulated sugar into cold saucepan. +2. Gently pour your 2 oz. of water over the sugar, do not splash it and + don't let any sugar water bounce up the sides of the pot. +3. Do not stir it. Seriously. +4. Ya pour water in and LEAVE IT. Even if there are dry looking bits of + sugar, don't stur. +5. Turn on the burner to medium high heat. +6. You are now tied to the stove. +7. Stand there and watch it like a Russian on Facebook. +8. It will start to bubble as it cookes. +9. Once part of the mixture starts turning golden, you slowly stir in + the cream and turn the heat to low. (Yes, NOW stir.) Don't let it + turn brown, you will smell it right away if you burned it. If you + burn it, start over. 10. Step 9 is by tself because that's the dramatic part of this. Once - the cream hits the hot sugar, it's goign to bubble up and hiss at - you. Right when its scaring you is when I also want you to turn the - heat down. But it's okay, you got this. You are going to slowly pour - in that cream, slowly stir the hissing firt that results, and you - are going to reach over and turn the heat down. + the cream hits the hot sugar, it's goign to bubble up and hiss at + you. Right when its scaring you is when I also want you to turn the + heat down. But it's okay, you got this. You are going to slowly pour + in that cream, slowly stir the hissing firt that results, and you + are going to reach over and turn the heat down. 11. Once the major drama subsides, slowly pour in the whiskey. It may - fizz a bti at this too, but you are almost done. This will not be - hot enough to ignite. + fizz a bti at this too, but you are almost done. This will not be + hot enough to ignite. 12. Turn the heat off, move to a cold burner, and keep gently stiring. - If any hard lumps of sugar occur (damn sea monsters) just fish those - out and toss 'em. + If any hard lumps of sugar occur (damn sea monsters) just fish those + out and toss 'em. 13. Let your caramel cool enough to handle and drizzle it over your - pies. + pies. 14. Have a shot. You earned it! diff --git a/DESSERTS/TunnyTraffic_Foolproof_Victoria_Sponge.md b/DESSERTS/TunnyTraffic_Foolproof_Victoria_Sponge.md index 388eda2..571a00d 100644 --- a/DESSERTS/TunnyTraffic_Foolproof_Victoria_Sponge.md +++ b/DESSERTS/TunnyTraffic_Foolproof_Victoria_Sponge.md @@ -11,87 +11,87 @@ Weights for some ingredients are not listed here, check the Instructions For the cake: -- 4 eggs -- Caster sugar -- Unsalted butter -- Self-raising flour -- 1 teaspoon of vanilla extract +- 4 eggs +- Caster sugar +- Unsalted butter +- Self-raising flour +- 1 teaspoon of vanilla extract For the decoration: -- Strawberry jam -- 150g icing sugar -- 75g unsalted butter - at room temperature to make it easier to work +- Strawberry jam +- 150g icing sugar +- 75g unsalted butter - at room temperature to make it easier to work ## Equipment -- 20cm high-sided cake tin (if using sandwich tins split between two - 20cm tins and skip the cutting in step 13) -- Large mixing bowl -- A spoon -- An electric hand whisk while make life easier but if you can do this - by hand too -- An oven -- Wire cooling rack +- 20cm high-sided cake tin (if using sandwich tins split between two + 20cm tins and skip the cutting in step 13) +- Large mixing bowl +- A spoon +- An electric hand whisk while make life easier but if you can do this + by hand too +- An oven +- Wire cooling rack ## Instructions For the cake: -1. Pre-heat the oven to 180C/350F -2. Either line the tin with parchment paper or to save having to do - complex geometry get a little butter on your fingers, grease the - tin, drop in a spoonful of flour and shake it around until the - inside if covered. Tip out and discard any loose flour. -3. Weigh the eggs and set aside. -4. Weigh out the same amount of butter, sugar, and flour as the eggs. -5. In the mixing bowl beat the butter until it is smooth and creamy -6. Into the butter beat the sugar -7. Add the eggs one at a time, beating into the creamed sugar. You can - use the electric hand whisk on a slow setting to work the eggs into - the mix. -8. Sift the flour and beat into the mixture one spoonful at a time - making sure there are no lumps. -9. Beat in the vanilla extract. +1. Pre-heat the oven to 180C/350F +2. Either line the tin with parchment paper or to save having to do + complex geometry get a little butter on your fingers, grease the + tin, drop in a spoonful of flour and shake it around until the + inside if covered. Tip out and discard any loose flour. +3. Weigh the eggs and set aside. +4. Weigh out the same amount of butter, sugar, and flour as the eggs. +5. In the mixing bowl beat the butter until it is smooth and creamy +6. Into the butter beat the sugar +7. Add the eggs one at a time, beating into the creamed sugar. You can + use the electric hand whisk on a slow setting to work the eggs into + the mix. +8. Sift the flour and beat into the mixture one spoonful at a time + making sure there are no lumps. +9. Beat in the vanilla extract. 10. Check the consistency of the cake mix, it should drop smoothly off a - spoon. If it looks a little too thick add some milk to loosen to - mixture. + spoon. If it looks a little too thick add some milk to loosen to + mixture. 11. Spoon the mixture into the tin. Allow to settle and bang the bottom - of the tin on the work surface to knock out any bubbles. + of the tin on the work surface to knock out any bubbles. 12. Bake for 25-30 minutes until either the top of the cake springs back - when pushed gently or a skewer/knife comes out clean. + when pushed gently or a skewer/knife comes out clean. 13. Tip out onto the wire rack to cool. Decoration: -1. Beat the icing sugar into the butter to make a buttercream -2. When the sponge has cooled down sit it on its side and cut it half - with a bread knife. If you try this when it's warm it'll break - apart. -3. On the bottom half spoon on the strawberry jam and spread with a - knife until it is even. -4. On the top half spoon on the buttercream and spread until even. -5. Gently flip the top half and reassemble the cake. Push it down a - little to glue the halves together -6. Sift some icing sugar over the top. -7. Serve with tea. +1. Beat the icing sugar into the butter to make a buttercream +2. When the sponge has cooled down sit it on its side and cut it half + with a bread knife. If you try this when it's warm it'll break + apart. +3. On the bottom half spoon on the strawberry jam and spread with a + knife until it is even. +4. On the top half spoon on the buttercream and spread until even. +5. Gently flip the top half and reassemble the cake. Push it down a + little to glue the halves together +6. Sift some icing sugar over the top. +7. Serve with tea. ## Variants The sponge is nice but it's made even better with a few adjustments, skip the decoration listed in the main recipe. -- Raspberry and White Chocolate: When the cake mix is complete in step - 8 gently fold in a handful of raspberries and as much white - chocolate as you conscience allows. This can be greasy if you add - too much chocolate; in which case leave out the same weight of - butter as the chocolate you add. -- Lemon Drizzle - into the mix at step 7 add the zest of one lemon, - being careful not to include the pith as it's unpleasant. Mix the - juice of the lemon with 80g of caster sugar. Cook the sponge as - instructed then when cooked prick it with a skewer and pour the - lemon syrup mixture slowly over the cake making sure it gets - absorbed while allowing a little to run down the sides. -- St Clements - As per Lemon Drizzle but add some orange juice to the - drizzle, adjust the amount of sugar to maintain a syrupy - consistency. +- Raspberry and White Chocolate: When the cake mix is complete in step + 8 gently fold in a handful of raspberries and as much white + chocolate as you conscience allows. This can be greasy if you add + too much chocolate; in which case leave out the same weight of + butter as the chocolate you add. +- Lemon Drizzle - into the mix at step 7 add the zest of one lemon, + being careful not to include the pith as it's unpleasant. Mix the + juice of the lemon with 80g of caster sugar. Cook the sponge as + instructed then when cooked prick it with a skewer and pour the + lemon syrup mixture slowly over the cake making sure it gets + absorbed while allowing a little to run down the sides. +- St Clements - As per Lemon Drizzle but add some orange juice to the + drizzle, adjust the amount of sugar to maintain a syrupy + consistency. diff --git a/DESSERTS/WireGhost_Key_Lime_Pyrewall.md b/DESSERTS/WireGhost_Key_Lime_Pyrewall.md index 2788867..48319b4 100644 --- a/DESSERTS/WireGhost_Key_Lime_Pyrewall.md +++ b/DESSERTS/WireGhost_Key_Lime_Pyrewall.md @@ -2,38 +2,38 @@ ## Ingredients -- 2/3 cup graham cracker crumbs -- 2 tablespoons sugar -- 3 tablespoons butter, melted +- 2/3 cup graham cracker crumbs +- 2 tablespoons sugar +- 3 tablespoons butter, melted ## Filling -- 1/2 cup sugar -- 2 tablespoons all-purpose flour -- 1 tablespoon plus 1-1/2 teaspoons cornstarch -- 1/8 teaspoon salt -- 1 cup water -- 1 drop green food coloring, optional -- 2 egg yolks, beaten -- 2 tablespoons key lime juice -- 1 teaspoon butter -- 1/2 teaspoon grated lime peel +- 1/2 cup sugar +- 2 tablespoons all-purpose flour +- 1 tablespoon plus 1-1/2 teaspoons cornstarch +- 1/8 teaspoon salt +- 1 cup water +- 1 drop green food coloring, optional +- 2 egg yolks, beaten +- 2 tablespoons key lime juice +- 1 teaspoon butter +- 1/2 teaspoon grated lime peel ## Directions -1. In a small bowl, mix cracker crumbs and sugar. Stir in butter. -2. Press onto the bottom and up the sides of a 7-inch pie plate coated - with cooking spray (your choice) -3. Bake at 325° for 10 minutes or until lightly browned. -4. Let cool. You be cool too :-) -5. In a small saucepan, combine the sugar, flour, cornstarch and salt. -6. Stir in water and food coloring if desired. Note:real Key lime has - no food coloring. -7. Cook and stir over medium heat until thickened. -8. Remove from the heat. -9. Stir a small amount of hot filling into egg yolks. +1. In a small bowl, mix cracker crumbs and sugar. Stir in butter. +2. Press onto the bottom and up the sides of a 7-inch pie plate coated + with cooking spray (your choice) +3. Bake at 325° for 10 minutes or until lightly browned. +4. Let cool. You be cool too :-) +5. In a small saucepan, combine the sugar, flour, cornstarch and salt. +6. Stir in water and food coloring if desired. Note:real Key lime has + no food coloring. +7. Cook and stir over medium heat until thickened. +8. Remove from the heat. +9. Stir a small amount of hot filling into egg yolks. 10. Pour it to the pan, stirring constantly. Bring to a gentle boil; - cook and stir 2 minutes longer. Remove from the heat. + cook and stir 2 minutes longer. Remove from the heat. 11. Stir in lime juice, butter and (grated) lime peel. 12. Pour into crust. Cool for 15 minutes. 13. Refrigerate for 1-2 hours or until it sets up & congeals. @@ -43,9 +43,9 @@ Best part: -1. Cut a wedge. -2. Place on a rather size-able plate (NOT PAPER!) -3. Drizzle a ring of White Rum or Citrus vodka (or your favorite - citrusy moonshine? around the wedge in a circle. -4. Light her up. Serve to guests. -5. Try not to burn down your space. +1. Cut a wedge. +2. Place on a rather size-able plate (NOT PAPER!) +3. Drizzle a ring of White Rum or Citrus vodka (or your favorite + citrusy moonshine? around the wedge in a circle. +4. Light her up. Serve to guests. +5. Try not to burn down your space. diff --git a/DESSERTS/keto_marbled_turtle_cheesecake.md b/DESSERTS/keto_marbled_turtle_cheesecake.md index 5154d2f..df72793 100644 --- a/DESSERTS/keto_marbled_turtle_cheesecake.md +++ b/DESSERTS/keto_marbled_turtle_cheesecake.md @@ -39,47 +39,47 @@ chopped ## Recipe -1. Crust- Preheat oven to 375 Degrees -2. Combine all ingredients well (I just used my hands to mix it because - it's easier than using a mixer or hand mixer) -3. Press the mix firmly into the bottom of your springform pan. -4. Bake for 8 minutes then let cool +1. Crust- Preheat oven to 375 Degrees +2. Combine all ingredients well (I just used my hands to mix it because + it's easier than using a mixer or hand mixer) +3. Press the mix firmly into the bottom of your springform pan. +4. Bake for 8 minutes then let cool ### Filling Directions Preheat oven to 350 Degrees, lightly grease the sides of your springform pan and place on baking sheet -1. Beat the cream cheese until it is nice and fluffy (about 3 minutes) -2. Beat in the sweetener, sour cream, and vanilla. Mix for about 3 - minutes. -3. Gently add one egg at a time, mixing for about 1 minute in between - each egg. -4. separate out 1 -- 1 1/2 Cups of the filling into a separate bowl and - add 2 Tbsp of Cocoa baking powder, mixing for about 1 minute. -5. Pour the regular mix into the springform pan. Add the chocolate mix - in portions around the pan. Use a butter knife to carefully swirl - the chocolate mix through the regular mix to create a marbled - effect. -6. Bake for 40 -- 45 minutes, or until it is puffy and golden around - the edges. -7. Run a knife around the inside of the rim to loosen the cake, but let - it cool for a while before removing the rim! -8. Cool the cake for 1-2 hours on a wire rack. +1. Beat the cream cheese until it is nice and fluffy (about 3 minutes) +2. Beat in the sweetener, sour cream, and vanilla. Mix for about 3 + minutes. +3. Gently add one egg at a time, mixing for about 1 minute in between + each egg. +4. separate out 1 -- 1 1/2 Cups of the filling into a separate bowl and + add 2 Tbsp of Cocoa baking powder, mixing for about 1 minute. +5. Pour the regular mix into the springform pan. Add the chocolate mix + in portions around the pan. Use a butter knife to carefully swirl + the chocolate mix through the regular mix to create a marbled + effect. +6. Bake for 40 -- 45 minutes, or until it is puffy and golden around + the edges. +7. Run a knife around the inside of the rim to loosen the cake, but let + it cool for a while before removing the rim! +8. Cool the cake for 1-2 hours on a wire rack. ### Caramel Directions Make sure to consistently whisk your caramel throughout the cooking process so it doesn't burn! -1. Melt the butter in a small pan on medium heat and cook until it is - golden brown. Add in the coconut oil and stir well. -2. Add in the heavy cream and stir until it is combined. lower the heat - and simmer for about 1 minute. -3. Add in the sweetener, vanilla, and salt. Cook until it starts to get - thicker and stickier. -4. Remove from heat and stir to make sure it isn't separated, then pour - over the cooled cheesecake. Sprinkle on the chopped pecans. -5. Chill in the fridge for at least 4 hours, then enjoy! +1. Melt the butter in a small pan on medium heat and cook until it is + golden brown. Add in the coconut oil and stir well. +2. Add in the heavy cream and stir until it is combined. lower the heat + and simmer for about 1 minute. +3. Add in the sweetener, vanilla, and salt. Cook until it starts to get + thicker and stickier. +4. Remove from heat and stir to make sure it isn't separated, then pour + over the cooled cheesecake. Sprinkle on the chopped pecans. +5. Chill in the fridge for at least 4 hours, then enjoy! Also seen on theketobaker.com diff --git a/DESSERTS/wishperactual_peppernuts.md b/DESSERTS/wishperactual_peppernuts.md index 80da2ba..9a0c594 100644 --- a/DESSERTS/wishperactual_peppernuts.md +++ b/DESSERTS/wishperactual_peppernuts.md @@ -6,21 +6,21 @@ Peppernuts, a multigenerational autumn treat ## Ingredients -- 3/4 cup sugar -- 1 cup light corn syrup (Karo) -- 1 egg -- 1/4 cup shortening -- 1/4 cup milk -- 1/2 tsp baking powder -- 1 tsp cinnamon -- 1/4 tsp salt -- 1/4 tsp mace -- 1 tsp anise flavoring -- Enough flour to make a very stiff dough +- 3/4 cup sugar +- 1 cup light corn syrup (Karo) +- 1 egg +- 1/4 cup shortening +- 1/4 cup milk +- 1/2 tsp baking powder +- 1 tsp cinnamon +- 1/4 tsp salt +- 1/4 tsp mace +- 1 tsp anise flavoring +- Enough flour to make a very stiff dough ## Directions -1. Knead in flour then roll into ropes, about the diameter of your - finger. -2. Cut into 1/2 - 3/4 inch pieces, then place onto a cookie sheet. -3. Bake in 359-375F oven until golden brown. +1. Knead in flour then roll into ropes, about the diameter of your + finger. +2. Cut into 1/2 - 3/4 inch pieces, then place onto a cookie sheet. +3. Bake in 359-375F oven until golden brown. diff --git a/DRINKS/Dual_Core-Faderade.md b/DRINKS/Dual_Core-Faderade.md index 6bdabb9..3fd4308 100644 --- a/DRINKS/Dual_Core-Faderade.md +++ b/DRINKS/Dual_Core-Faderade.md @@ -5,13 +5,13 @@ ## Ingredients -- 1 part Vodka -- 1 part RedBull Zero -- 1 part Gatorade +- 1 part Vodka +- 1 part RedBull Zero +- 1 part Gatorade ## Recipe -1. Cut a hole in the box -2. Fill a 16oz glass with ice -3. Pour vodka, followed by RedBull Zero, followed by Gatorade -4. Stir and enjoy +1. Cut a hole in the box +2. Fill a 16oz glass with ice +3. Pour vodka, followed by RedBull Zero, followed by Gatorade +4. Stir and enjoy diff --git a/DRINKS/Dual_Core-Macaulay.md b/DRINKS/Dual_Core-Macaulay.md index b8ea09c..ece0912 100644 --- a/DRINKS/Dual_Core-Macaulay.md +++ b/DRINKS/Dual_Core-Macaulay.md @@ -4,22 +4,22 @@ ## Ingredients -- 2 tsp Sugar -- Mint -- Fresh pineapple juice -- Lime -- Vodka +- 2 tsp Sugar +- Mint +- Fresh pineapple juice +- Lime +- Vodka ## Recipe -1. Cut lime into eights -2. Muddle sugar, some mint, and two 1/8 wedges of lime together in a - shaker -3. Add ice to shaker -4. Pour desired amount of vodka into shaker (long 4- or 5-count) -5. Pour 2-4 shots of pineapple juice into shaker -6. Close lid and shake well -7. Pour shaker contents into pint glass, drink with straw +1. Cut lime into eights +2. Muddle sugar, some mint, and two 1/8 wedges of lime together in a + shaker +3. Add ice to shaker +4. Pour desired amount of vodka into shaker (long 4- or 5-count) +5. Pour 2-4 shots of pineapple juice into shaker +6. Close lid and shake well +7. Pour shaker contents into pint glass, drink with straw ## Greetz diff --git a/DRINKS/Dual_Core-Plausible_Deniability.md b/DRINKS/Dual_Core-Plausible_Deniability.md index 8f1bfbc..3128ed9 100644 --- a/DRINKS/Dual_Core-Plausible_Deniability.md +++ b/DRINKS/Dual_Core-Plausible_Deniability.md @@ -4,31 +4,31 @@ ## Ingredients -- Sugar -- Grapefruit -- Pomegranate juice -- Tonic -- Vodka +- Sugar +- Grapefruit +- Pomegranate juice +- Tonic +- Vodka ## Recipe -1. Place ice into a shaker -2. Cut grapefruit into quarters -3. Squeeze 1/4 grapefruit into shaker -4. Rim a pint glass using the piece of grapefruit still in your hand -5. Create a sugar-coated rim of the pint glass by dipping the glass - upside down onto a plate of sugar -6. Pour desired amount of vodka into shaker (long 4- or 5-count) -7. Pour \~1 shot of pomegranate juice into shaker -8. Close lid and shake well -9. After shaking, add \~1 shot of tonic and stir +1. Place ice into a shaker +2. Cut grapefruit into quarters +3. Squeeze 1/4 grapefruit into shaker +4. Rim a pint glass using the piece of grapefruit still in your hand +5. Create a sugar-coated rim of the pint glass by dipping the glass + upside down onto a plate of sugar +6. Pour desired amount of vodka into shaker (long 4- or 5-count) +7. Pour \~1 shot of pomegranate juice into shaker +8. Close lid and shake well +9. After shaking, add \~1 shot of tonic and stir 10. Pour shaker contents into sugar-coated pint glass ## Warnings -- The first time a friend had this drink, he woke up with a broken rib - in the morning. Unsolved mystery. -- Another friend woke up with bruises the next morning. Unsolved - mystery. -- **DO NOT** get clever and substitute the grapefruit juice with - grapefruit vodka. #REKT +- The first time a friend had this drink, he woke up with a broken rib + in the morning. Unsolved mystery. +- Another friend woke up with bruises the next morning. Unsolved + mystery. +- **DO NOT** get clever and substitute the grapefruit juice with + grapefruit vodka. #REKT diff --git a/DRINKS/Dual_Core-Vodka_Redbull.md b/DRINKS/Dual_Core-Vodka_Redbull.md index d1dd67d..2e76bea 100644 --- a/DRINKS/Dual_Core-Vodka_Redbull.md +++ b/DRINKS/Dual_Core-Vodka_Redbull.md @@ -5,12 +5,12 @@ RedBull) + (97cal \* Shots of vodka) ## Ingredients -- 1 part Vodka -- 1 part RedBull +- 1 part Vodka +- 1 part RedBull ## Recipe -1. Drink all the booze. -2. Hack all the things. +1. Drink all the booze. +2. Hack all the things. Best served on the rocks. diff --git a/DRINKS/_section.md b/DRINKS/_section.md index 27672ba..fdf5344 100644 --- a/DRINKS/_section.md +++ b/DRINKS/_section.md @@ -1,5 +1,5 @@ # Drinks -- In order to hack all the things, one must drink all the booze +- In order to hack all the things, one must drink all the booze ![foods](https://images.pexels.com/photos/274131/pexels-photo-274131.jpeg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb) diff --git a/DRINKS/ashmastaflash-grandpappys_turnt_juice.md b/DRINKS/ashmastaflash-grandpappys_turnt_juice.md index 385273d..105e624 100644 --- a/DRINKS/ashmastaflash-grandpappys_turnt_juice.md +++ b/DRINKS/ashmastaflash-grandpappys_turnt_juice.md @@ -16,29 +16,29 @@ Juice](images/ashmastaflash-grandpappys_turnt_juice.jpg) Tools: -- Martini shaker -- Mason jar +- Martini shaker +- Mason jar Ingredients: -- Woodford Reserve bourbon -- Woodford Reserve cherries -- Dolin dry vermouth -- Crushed ice -- Unsulphured molasses -- Angostura bitters +- Woodford Reserve bourbon +- Woodford Reserve cherries +- Dolin dry vermouth +- Crushed ice +- Unsulphured molasses +- Angostura bitters Directions: -1. Put a tablespoon of molasses into the shaker along with a handful of - crushed ice -2. Put a dash or two of bitters into the the shaker, along with a - splash of the Woodford reserve cherry juice. Drop in a cherry. -3. Put 3oz of bourbon and 1oz of dry vermouth into the shaker. -4. Cap the shaker and shake the hell out of it. It'll take some effort - to get the molasses to mix. -5. Strain out the turnt juice into the jar. Take the cherry out of the - shaker and drop it into the turnt juice. +1. Put a tablespoon of molasses into the shaker along with a handful of + crushed ice +2. Put a dash or two of bitters into the the shaker, along with a + splash of the Woodford reserve cherry juice. Drop in a cherry. +3. Put 3oz of bourbon and 1oz of dry vermouth into the shaker. +4. Cap the shaker and shake the hell out of it. It'll take some effort + to get the molasses to mix. +5. Strain out the turnt juice into the jar. Take the cherry out of the + shaker and drop it into the turnt juice. Enjoy! diff --git a/DRINKS/b1ack0wl-holiday-drink.md b/DRINKS/b1ack0wl-holiday-drink.md index 6569a5e..e1eb3ec 100644 --- a/DRINKS/b1ack0wl-holiday-drink.md +++ b/DRINKS/b1ack0wl-holiday-drink.md @@ -4,101 +4,101 @@ ## Ingredients -- 1/3 cup unsweetened cocoa powder -- 1/2 cup of sugar -- 1 tsp of salt \|\| to taste -- 1/3 cup of boiling water -- 3.5 cups of milk -- 3/4 tsp vanilla extract -- 1/2 cup of half and half -- Coffee (nom) -- Liquor of choice: - - Vodka - - Peppermint Schnapps \[Suggested\] - - Whatever just don't fuck it up +- 1/3 cup unsweetened cocoa powder +- 1/2 cup of sugar +- 1 tsp of salt \|\| to taste +- 1/3 cup of boiling water +- 3.5 cups of milk +- 3/4 tsp vanilla extract +- 1/2 cup of half and half +- Coffee (nom) +- Liquor of choice: + - Vodka + - Peppermint Schnapps \[Suggested\] + - Whatever just don't fuck it up ### (Optional) -- Whipped Cream -- Cinnamon powder -- Sprinkles -- Marshmallows +- Whipped Cream +- Cinnamon powder +- Sprinkles +- Marshmallows ## Recipe -- Mix all of the dry ingredients first -- Boil some water -- Take out a deep saucepan (Enough to hold to liquid ingredients - without spilling.) -- Mix in the dry ingredients and boiling water within the saucepan. - (Use Med/Low heat since you do not want to burn the sugar cause - it'll taste like ew.) -- Stir for about 2 minutes. The mixture should smell real nice and the - texture should look almost like molasses. -- Slowly pour and mix the milk into the saucepan. Increase heat if - needed but be careful the milk should not boil! -- Once you're satisfied remove the saucepan from the heat. -- Mix in the vanilla extract into the saucepan -- Split the hot cocoa between two mugs -- Add half and half to each mug -- Add your Liquor +- Mix all of the dry ingredients first +- Boil some water +- Take out a deep saucepan (Enough to hold to liquid ingredients + without spilling.) +- Mix in the dry ingredients and boiling water within the saucepan. + (Use Med/Low heat since you do not want to burn the sugar cause + it'll taste like ew.) +- Stir for about 2 minutes. The mixture should smell real nice and the + texture should look almost like molasses. +- Slowly pour and mix the milk into the saucepan. Increase heat if + needed but be careful the milk should not boil! +- Once you're satisfied remove the saucepan from the heat. +- Mix in the vanilla extract into the saucepan +- Split the hot cocoa between two mugs +- Add half and half to each mug +- Add your Liquor ## (Optional Steps) -- Add marshmallows to each mug -- Apply whipped cream in a circular fashion to each mug -- Take a small amount of cocoa powder onto a spoon and tap the spoon - slightly to sprinkle cocoa powder on top of the whipped cream. -- Repeat the above step but for cinnamon powder. -- Add sprinkles!! :D -- Enjoy! +- Add marshmallows to each mug +- Apply whipped cream in a circular fashion to each mug +- Take a small amount of cocoa powder onto a spoon and tap the spoon + slightly to sprinkle cocoa powder on top of the whipped cream. +- Repeat the above step but for cinnamon powder. +- Add sprinkles!! :D +- Enjoy! : - o$$$$$$oo - o$" "$oo - $ o""""$o "$o - "$ o "o "o $ - "$ $o $ $ o$ - "$ o$"$ o$ - "$ooooo$$ $ o$ - o$ """ $ " $$$ " $ - o$ $o $$" " " - $$ $ " $ $$$o"$ o o$" - $" o "" $ $" " o" $$ - $o " " $ o$" o" o$" - "$o $$ $ o" o$$" - ""o$o"$" $oo" o$" - o$$ $ $$$ o$$ - o" o oo"" "" "$o - o$o" "" $ - $" " o" " " " "o - $$ " " o$ o$o " $ - o$ $ $ o$$ " " "" - o $ $" " "o o$ - $ o $o$oo$"" - $o $ o o o"$$ - $o o $ $ "$o - $o $ o $ $ "o - $ $ "o $ "o"$o - $ " o $ o $$ - $o$o$o$o$$o$$$o$$o$o$$o$$o$$$o$o$o$o$o$o$o$o$o$ooo - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$o - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ " $$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ "$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ - $$$$$$$$$$$$$$$$$$nom$$$$$$$$$$$$$$$$$$$$$$ o$$$$" - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ooooo$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$""""" - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" - "$o$o$o$o$o$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" - "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" - "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$""" - """"""""""""""""""""""""""""""""""""""""""""""""""""" + o$$$$$$oo + o$" "$oo + $ o""""$o "$o + "$ o "o "o $ + "$ $o $ $ o$ + "$ o$"$ o$ + "$ooooo$$ $ o$ + o$ """ $ " $$$ " $ + o$ $o $$" " " + $$ $ " $ $$$o"$ o o$" + $" o "" $ $" " o" $$ + $o " " $ o$" o" o$" + "$o $$ $ o" o$$" + ""o$o"$" $oo" o$" + o$$ $ $$$ o$$ + o" o oo"" "" "$o + o$o" "" $ + $" " o" " " " "o + $$ " " o$ o$o " $ + o$ $ $ o$$ " " "" + o $ $" " "o o$ + $ o $o$oo$"" + $o $ o o o"$$ + $o o $ $ "$o + $o $ o $ $ "o + $ $ "o $ "o"$o + $ " o $ o $$ + $o$o$o$o$$o$$$o$$o$o$$o$$o$$$o$o$o$o$o$o$o$o$o$ooo + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$o + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ " $$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ "$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ + $$$$$$$$$$$$$$$$$$nom$$$$$$$$$$$$$$$$$$$$$$ o$$$$" + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ooooo$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$""""" + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" + "$o$o$o$o$o$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" + "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" + "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$""" + """"""""""""""""""""""""""""""""""""""""""""""""""""" diff --git a/DRINKS/iHeartMalwares_THE_Purple_Drink.md b/DRINKS/iHeartMalwares_THE_Purple_Drink.md index 5855f54..5a036b8 100644 --- a/DRINKS/iHeartMalwares_THE_Purple_Drink.md +++ b/DRINKS/iHeartMalwares_THE_Purple_Drink.md @@ -5,11 +5,11 @@ really...really good. Wonderful fruity drink, good as a shooter ## Ingredients -- 1 Part Kinky Pink Vodka -- 1 part Hypnotiq -- 1 Part Vodka +- 1 Part Kinky Pink Vodka +- 1 part Hypnotiq +- 1 Part Vodka ## Instructions -1. Mix into equal parts in a shot glass. Drink -2. Really like it? Mix a shot each into a glass. +1. Mix into equal parts in a shot glass. Drink +2. Really like it? Mix a shot each into a glass. diff --git a/DRINKS/iHeartMalwares_rocket_league.md b/DRINKS/iHeartMalwares_rocket_league.md index 36f6ac1..855df61 100644 --- a/DRINKS/iHeartMalwares_rocket_league.md +++ b/DRINKS/iHeartMalwares_rocket_league.md @@ -6,25 +6,25 @@ rocket...league. ## Ingredients -- 16 oz glass -- Blue raspberry vodka (I like Svedka) -- Blue curacao -- Mango / peach juice -- Pineapple Juice -- Orange Bitters +- 16 oz glass +- Blue raspberry vodka (I like Svedka) +- Blue curacao +- Mango / peach juice +- Pineapple Juice +- Orange Bitters ## Instructions -1. Fill glass 3/4 of the way with ice. -2. Fill glass between 1/3 and 1/2 with raspberry vodka. (depending on - taste) -3. Splash of blue curacao. Don't go too heavy! -4. Fill \< 1/4 of the way with mango / peach juice. -5. Fill \> 1/4 of pineapple juice. (You'll want a smidge more pineapple - than the mango / peach) -6. Add 7 dashes of orange bitters, and stir -7. Stir and drink! It should be somewhere between green and blue. If - it's green...you did it right. If blue...go lighter on the curacao! +1. Fill glass 3/4 of the way with ice. +2. Fill glass between 1/3 and 1/2 with raspberry vodka. (depending on + taste) +3. Splash of blue curacao. Don't go too heavy! +4. Fill \< 1/4 of the way with mango / peach juice. +5. Fill \> 1/4 of pineapple juice. (You'll want a smidge more pineapple + than the mango / peach) +6. Add 7 dashes of orange bitters, and stir +7. Stir and drink! It should be somewhere between green and blue. If + it's green...you did it right. If blue...go lighter on the curacao! Note: This is one of those "you don't taste the alcohol" drinks, but it still has a high content. So be careful. :) diff --git a/DRINKS/iHeartMalwares_sweet_tart.md b/DRINKS/iHeartMalwares_sweet_tart.md index 07d2bcd..fcf898a 100644 --- a/DRINKS/iHeartMalwares_sweet_tart.md +++ b/DRINKS/iHeartMalwares_sweet_tart.md @@ -4,20 +4,20 @@ Want a good cheap party drink? This is it. ## Ingredients -- 3 2-liters of Sunkist -- 3 packets of grape kool-aid -- 3 packets of cherry kool-aid -- 1 fifth of 190 proof Everclear (151 proof works too, or vodka, - depending on what's legal in your state) +- 3 2-liters of Sunkist +- 3 packets of grape kool-aid +- 3 packets of cherry kool-aid +- 1 fifth of 190 proof Everclear (151 proof works too, or vodka, + depending on what's legal in your state) ## Instructions -1. Pour out enough Sunkist of each bottle down to the label. -2. Add 1 packet of grape and 1 packet of cherry kool-aid to each - bottle. -3. Split bottle of everclear between the 3 bottles. -4. Put top back on, and give it a quick turn. This is a very strong - party drink, so keep that in mind. +1. Pour out enough Sunkist of each bottle down to the label. +2. Add 1 packet of grape and 1 packet of cherry kool-aid to each + bottle. +3. Split bottle of everclear between the 3 bottles. +4. Put top back on, and give it a quick turn. This is a very strong + party drink, so keep that in mind. Note: You can also add the Sunkist back to the containers and use this as a mixer. Tastes just like a sweet tart! diff --git a/DRINKS/moonbas3_new_fashioned.md b/DRINKS/moonbas3_new_fashioned.md index 80da2dc..6bc02cb 100644 --- a/DRINKS/moonbas3_new_fashioned.md +++ b/DRINKS/moonbas3_new_fashioned.md @@ -25,26 +25,26 @@ honey instead of the sugar cube, but I enjoy proper muddling. ## Required Equipment -- Muddler -- Whiskey Glass -- Big Ol' Ice Cubes (optional) +- Muddler +- Whiskey Glass +- Big Ol' Ice Cubes (optional) ## Ingredients -- 3oz (1 shots) of Wild Roses Bourbon -- 1oz Amaretto -- 2 dashes of Angostura Bitters -- Big Ol' Ice Ball -- Orange Round -- Sugar Cube -- Seltzer Water +- 3oz (1 shots) of Wild Roses Bourbon +- 1oz Amaretto +- 2 dashes of Angostura Bitters +- Big Ol' Ice Ball +- Orange Round +- Sugar Cube +- Seltzer Water ## Directions -1. Put sugar cube into whiskey glass, add a splash of seltzer water, - and muddle until smooth. -2. Slice the orange round, put it and the big ol' ice ball into the - whiskey glass. -3. Add Bourbon, Amaretto and Bitters to the glass. -4. Stir stir stir, and serve. -5. (Optional) Add maraschino cherry. +1. Put sugar cube into whiskey glass, add a splash of seltzer water, + and muddle until smooth. +2. Slice the orange round, put it and the big ol' ice ball into the + whiskey glass. +3. Add Bourbon, Amaretto and Bitters to the glass. +4. Stir stir stir, and serve. +5. (Optional) Add maraschino cherry. diff --git a/DRINKS/tiptone-mexican-martini.md b/DRINKS/tiptone-mexican-martini.md index c28ebad..b75aec3 100644 --- a/DRINKS/tiptone-mexican-martini.md +++ b/DRINKS/tiptone-mexican-martini.md @@ -8,19 +8,19 @@ images/tiptone-mexican-martini. ## Ingredients -- 3oz Hornitos Reposado -- 2oz Sprite -- 1oz Cointreau -- 1oz Fresh lime juice -- 1oz Fresh orange juice -- 1tbsp olive juice +- 3oz Hornitos Reposado +- 2oz Sprite +- 1oz Cointreau +- 1oz Fresh lime juice +- 1oz Fresh orange juice +- 1tbsp olive juice ## Recipe -1. Salt the rim of two cocktail glasses -2. Fill a cocktail shaker with ice and ingredients -3. Shake vigorously -4. Strain into cocktail glasses and garnish with olive(s)\* -5. Enjoy +1. Salt the rim of two cocktail glasses +2. Fill a cocktail shaker with ice and ingredients +3. Shake vigorously +4. Strain into cocktail glasses and garnish with olive(s)\* +5. Enjoy **mrstiptone insists this should be jalapeno stuffed olives** diff --git a/ENTREES/0xrnair_monster_chicken_burrito.md b/ENTREES/0xrnair_monster_chicken_burrito.md index 3b519df..2e6f53d 100644 --- a/ENTREES/0xrnair_monster_chicken_burrito.md +++ b/ENTREES/0xrnair_monster_chicken_burrito.md @@ -4,17 +4,17 @@ A quick way to get a large meal ready with the least amount of effort. ## Ingredients -- 1/2 Can Pinto Beans/ Black Beans -- 1 Boneless Chicken Breast -- 3 Tablespoon Sriracha Sauce -- 1 Avocado (Per your prefernce More = Juicy ) -- Couple of Flakes of Scorpion Pepper (Spice it up) *Optional* -- Vinegar (White) -- 3/4 Tablespoon salt -- Old Bay seasoning -- 1 tsp Red Chilli Powder (Optional) -- 1/2 Lemon -- 1 Large (very) Tortilla +- 1/2 Can Pinto Beans/ Black Beans +- 1 Boneless Chicken Breast +- 3 Tablespoon Sriracha Sauce +- 1 Avocado (Per your prefernce More = Juicy ) +- Couple of Flakes of Scorpion Pepper (Spice it up) *Optional* +- Vinegar (White) +- 3/4 Tablespoon salt +- Old Bay seasoning +- 1 tsp Red Chilli Powder (Optional) +- 1/2 Lemon +- 1 Large (very) Tortilla ## Preparation @@ -26,15 +26,15 @@ the chicken helps too* ## Instructions -1. Season with Pepper heavily and then microwave the chicken breast for - 8-11 minutes (Depending on the power of your microwave), most large - microwaves cook it around 8.45 minutes; also let it rest for 4 - minutes in the microwave. Use a spoon and blast the chicken to thin - shreds. -2. Get the tortilla heated and then plaster half the avocado as the - base, Add in the chicken shreds, 4 tablespoon of beans, 3 tablespoon - sriracha sauce, flakes, remaining avocado and wrap it (the hard - part). +1. Season with Pepper heavily and then microwave the chicken breast for + 8-11 minutes (Depending on the power of your microwave), most large + microwaves cook it around 8.45 minutes; also let it rest for 4 + minutes in the microwave. Use a spoon and blast the chicken to thin + shreds. +2. Get the tortilla heated and then plaster half the avocado as the + base, Add in the chicken shreds, 4 tablespoon of beans, 3 tablespoon + sriracha sauce, flakes, remaining avocado and wrap it (the hard + part). Have fun stuffing yourself. diff --git a/ENTREES/BenHeise_Bangers_and_Mash.md b/ENTREES/BenHeise_Bangers_and_Mash.md index 1faec45..85f790b 100644 --- a/ENTREES/BenHeise_Bangers_and_Mash.md +++ b/ENTREES/BenHeise_Bangers_and_Mash.md @@ -11,75 +11,75 @@ Americans). ## Ingredients -- 3+ Lbs of Yukon Gold potatoes -- 1 pack Andouille brautwurst -- 1 can of Bush's country style baked beans -- 1 pack of french onion gravy mix -- Kosher salt -- Whatever freshly ground pepper you can scrounge -- 1 stick of unsalted butter -- 4 ounces of heavy cream (or creme fraiche if you live in a country - with a working economy) -- 1/2 cup of whole milk -- Parsley for garnish (optional) +- 3+ Lbs of Yukon Gold potatoes +- 1 pack Andouille brautwurst +- 1 can of Bush's country style baked beans +- 1 pack of french onion gravy mix +- Kosher salt +- Whatever freshly ground pepper you can scrounge +- 1 stick of unsalted butter +- 4 ounces of heavy cream (or creme fraiche if you live in a country + with a working economy) +- 1/2 cup of whole milk +- Parsley for garnish (optional) ## Equipment -- An oversized pot for boiling potatoes -- Two smaller pots -- An oven -- A stovetop or other cooking range -- A flat oven pan (with raised sides so juice doesn't spill) -- A baking rack -- A colander -- A meat thermometer (I prefer this one ) +- An oversized pot for boiling potatoes +- Two smaller pots +- An oven +- A stovetop or other cooking range +- A flat oven pan (with raised sides so juice doesn't spill) +- A baking rack +- A colander +- A meat thermometer (I prefer this one ) ## Instructions -1. If you prefer to have bits of potatoe skin left in your mashed - potatoes, don't peel them. Otherwise, peel and cut 3 Lbs of potatoes - into about 1 inch cubes. Don't cut potatoes with hate in your heart, - cut thinking pure thoughts or you'll end up cutting yourself and - bleeding all over everything and dying and going straight down to - Oracle. -2. Preheat your oven to 425. Pour \~8 cups of water to into your - oversized pot and bring it to a roiling boil. -3. While the water is coming to a boil, put your bangers on a baking - rack on a pan in the oven for 18-20 minutes. -4. Once your bangers are in the oven, add about a tablespoon of salt - and your spuds to the boiling water. Boil the potatoes for 15-25 - mins, they are done when they are tender all the way through. Test - this by skewering it with a fork against the side of the pot, the - fork should slide through the cooked potatoe easily. -5. Open your can of top shelf, high quality, freedom legumes (aka baked - beans). Use one of the smaller pots to simmer the beans on a - stovetop burner until they stop cursing. If your beans were not - cursing, you got the wrong ones. You want the really salty ones. -6. After the bangers are done cooking, turn your bangers over. Put the - bangers back in the oven for another 2-4 minutes to brown evenly. -7. Pull the bangers out of the oven and get your meat monitoring stick. - Ensure the center of the bangers is hotter than 160F (e.coli dies at - this temperature), turn the oven off, put the bangers back in to - warm because other projects are taking up your kitchen counter space - and in hindsight you probably should've cleared those off first. +1. If you prefer to have bits of potatoe skin left in your mashed + potatoes, don't peel them. Otherwise, peel and cut 3 Lbs of potatoes + into about 1 inch cubes. Don't cut potatoes with hate in your heart, + cut thinking pure thoughts or you'll end up cutting yourself and + bleeding all over everything and dying and going straight down to + Oracle. +2. Preheat your oven to 425. Pour \~8 cups of water to into your + oversized pot and bring it to a roiling boil. +3. While the water is coming to a boil, put your bangers on a baking + rack on a pan in the oven for 18-20 minutes. +4. Once your bangers are in the oven, add about a tablespoon of salt + and your spuds to the boiling water. Boil the potatoes for 15-25 + mins, they are done when they are tender all the way through. Test + this by skewering it with a fork against the side of the pot, the + fork should slide through the cooked potatoe easily. +5. Open your can of top shelf, high quality, freedom legumes (aka baked + beans). Use one of the smaller pots to simmer the beans on a + stovetop burner until they stop cursing. If your beans were not + cursing, you got the wrong ones. You want the really salty ones. +6. After the bangers are done cooking, turn your bangers over. Put the + bangers back in the oven for another 2-4 minutes to brown evenly. +7. Pull the bangers out of the oven and get your meat monitoring stick. + Ensure the center of the bangers is hotter than 160F (e.coli dies at + this temperature), turn the oven off, put the bangers back in to + warm because other projects are taking up your kitchen counter space + and in hindsight you probably should've cleared those off first. \" -8. Look for a colander for your potatoes, fail to find one, realize - colanders are probably how the French spy on most Americans and that - you're better off without one. Carefully drain the water from the - pot. -9. Once the water is drained, add salt & pepper to taste to the pot, - pour 1/2 cup of milk and heavy cream because creme fraiche isn't a - thing in your country apparently. Mash the potatoes. +8. Look for a colander for your potatoes, fail to find one, realize + colanders are probably how the French spy on most Americans and that + you're better off without one. Carefully drain the water from the + pot. +9. Once the water is drained, add salt & pepper to taste to the pot, + pour 1/2 cup of milk and heavy cream because creme fraiche isn't a + thing in your country apparently. Mash the potatoes. 10. Use one of the smaller pots and follow the recipe on the back of the - mix to make your French onion gravy. Making French onion gravy from - scratch is out of the scope of this recipe. + mix to make your French onion gravy. Making French onion gravy from + scratch is out of the scope of this recipe. 11. Plate the mash, put the bangers on top of the mash, scoop a bunch of - the onion gravy over the bangers, put a big spoonful of freedom - legumes on the side of the mash, and eat because you started off - this venture already hungry and following instructions with low - blood sugar is hard. + the onion gravy over the bangers, put a big spoonful of freedom + legumes on the side of the mash, and eat because you started off + this venture already hungry and following instructions with low + blood sugar is hard. 12. Garnish with Parsley ![image](images/DS-aV05WkAAfTjd.jpg){.align-center} diff --git a/ENTREES/Dual_Core-Mom-s_Spaghetti.md b/ENTREES/Dual_Core-Mom-s_Spaghetti.md index 4b0733d..7c915f0 100644 --- a/ENTREES/Dual_Core-Mom-s_Spaghetti.md +++ b/ENTREES/Dual_Core-Mom-s_Spaghetti.md @@ -5,22 +5,22 @@ sweater spaghetti. Mom's spaghetti. ## Ingredients -- 3 cans chopped clams (minced also fine) -- 1/3 cup olive oil -- 1/4 cup unsalted butter -- 2 cloves garlic, crushed `xor` 2 tsp minced garlic -- 2 Tbsp chopped fresh parsley `xor` 2 tsp dried parsley -- 1 tsp salt -- 16oz spaghetti, cooked and drained +- 3 cans chopped clams (minced also fine) +- 1/3 cup olive oil +- 1/4 cup unsalted butter +- 2 cloves garlic, crushed `xor` 2 tsp minced garlic +- 2 Tbsp chopped fresh parsley `xor` 2 tsp dried parsley +- 1 tsp salt +- 16oz spaghetti, cooked and drained ## Instructions -1. Drain clams while reserving 3/4 cup liquid; set aside. -2. In a medium skillet, slowly heat olive oil and butter. -3. Add garlic and sauté until golden brown. Remove from heat. -4. Stir in clam liquid, parsley, and salt; bring to boiling. -5. Reduce heat: simmer uncovered for 10 minutes. -6. Add clams, simmer 3 minutes. +1. Drain clams while reserving 3/4 cup liquid; set aside. +2. In a medium skillet, slowly heat olive oil and butter. +3. Add garlic and sauté until golden brown. Remove from heat. +4. Stir in clam liquid, parsley, and salt; bring to boiling. +5. Reduce heat: simmer uncovered for 10 minutes. +6. Add clams, simmer 3 minutes. Serve over hot spaghetti. Makes 3-4 servings. Salad and Italian bread complete this meal. diff --git a/ENTREES/_section.md b/ENTREES/_section.md index ae6217e..313ec9f 100644 --- a/ENTREES/_section.md +++ b/ENTREES/_section.md @@ -1,5 +1,5 @@ # Entrees -- This is a collection of main courses provided by the community +- This is a collection of main courses provided by the community ![foods](https://images.pexels.com/photos/461198/pexels-photo-461198.jpeg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb) diff --git a/ENTREES/aaron_the_king_dishwasher_salmon.md b/ENTREES/aaron_the_king_dishwasher_salmon.md index 6fb52fd..78a308f 100644 --- a/ENTREES/aaron_the_king_dishwasher_salmon.md +++ b/ENTREES/aaron_the_king_dishwasher_salmon.md @@ -4,21 +4,21 @@ Poached salmon done with your dishes! ## Ingredients -- Salmon -- Metal foil of your choice -- Spices (optional) -- Extra Virgin Olive Oil (optional) +- Salmon +- Metal foil of your choice +- Spices (optional) +- Extra Virgin Olive Oil (optional) ## Instructions -1. Place the salmon on a large sheet of metal foil -2. Put the spices and oil on the salmon -3. Fold the metal foil around the salmon; make sure it is watertight -4. Place the wrapped salmon in your dishwasher -5. Run the dishwasher -6. Unwrap the salmon and enjoy +1. Place the salmon on a large sheet of metal foil +2. Put the spices and oil on the salmon +3. Fold the metal foil around the salmon; make sure it is watertight +4. Place the wrapped salmon in your dishwasher +5. Run the dishwasher +6. Unwrap the salmon and enjoy ## Tips n' Tricks! -- Serve the salmon on some of your freshly cleaned dishes. -- This recipie is great for dinner parties. +- Serve the salmon on some of your freshly cleaned dishes. +- This recipie is great for dinner parties. diff --git a/ENTREES/boredsillys_baked_gringo.md b/ENTREES/boredsillys_baked_gringo.md index 6dd32b6..960c173 100644 --- a/ENTREES/boredsillys_baked_gringo.md +++ b/ENTREES/boredsillys_baked_gringo.md @@ -8,33 +8,33 @@ is a family favorite for comfort food. ## Ingredients -- 20 to 24 slices of thinly sliced smoked ham -- 2 pounds of Monterrey Jack (block form) -- 3 small cans of whole green chilies or fresh roasted, skinned, and - deseeded Anaheim chilies (fresh takes longer but is worth it) -- 1 package of small flour tortillas (10 to 12 count) -- 3 cups of finely shredded cheddar cheese (sharp or mild) +- 20 to 24 slices of thinly sliced smoked ham +- 2 pounds of Monterrey Jack (block form) +- 3 small cans of whole green chilies or fresh roasted, skinned, and + deseeded Anaheim chilies (fresh takes longer but is worth it) +- 1 package of small flour tortillas (10 to 12 count) +- 3 cups of finely shredded cheddar cheese (sharp or mild) ## Instructions -1. Preheat oven to 350 degrees Fahrenheit -2. Cut the cheese blocks into 1/2 to 3/4 inch rectangular slices -3. Open and slice the whole green chilies length wise into 1 to 2 inch - wide -4. Take two slices of ham and roll/fold them up so they're only a few - inches across and lay them down the center of a tortilla -5. Place a straight line of chilies along the center on top of the ham -6. Top the ham and chilies with one or more slabs of the white cheese -7. Roll the tortilla up into a tube like an enchilada with the ends - OPEN (not folded closed like a burrito) -8. Place the tortilla in a baking pan upside down with the rolled flaps - on the bottom so it stays closed (you can add a toothpick to help - keep it closed while filling the pan but I remove them before - cooking) -9. Repeat the process until the whole pan is filled with rolled - tortilla happiness +1. Preheat oven to 350 degrees Fahrenheit +2. Cut the cheese blocks into 1/2 to 3/4 inch rectangular slices +3. Open and slice the whole green chilies length wise into 1 to 2 inch + wide +4. Take two slices of ham and roll/fold them up so they're only a few + inches across and lay them down the center of a tortilla +5. Place a straight line of chilies along the center on top of the ham +6. Top the ham and chilies with one or more slabs of the white cheese +7. Roll the tortilla up into a tube like an enchilada with the ends + OPEN (not folded closed like a burrito) +8. Place the tortilla in a baking pan upside down with the rolled flaps + on the bottom so it stays closed (you can add a toothpick to help + keep it closed while filling the pan but I remove them before + cooking) +9. Repeat the process until the whole pan is filled with rolled + tortilla happiness 10. Evenly spread the shredded cheddar cheese across the top 11. Place the baking pan in the center rack of your oven until the - cheese is melted and your desired level of crispiness is achieved. - (Usually 25 to 35 minutes) + cheese is melted and your desired level of crispiness is achieved. + (Usually 25 to 35 minutes) 12. Let cool for 10-15 minutes before serving diff --git a/ENTREES/boredsillys_excuse_to_eat_bacon_avocado_sandwich.md b/ENTREES/boredsillys_excuse_to_eat_bacon_avocado_sandwich.md index 6920a2a..733f7f4 100644 --- a/ENTREES/boredsillys_excuse_to_eat_bacon_avocado_sandwich.md +++ b/ENTREES/boredsillys_excuse_to_eat_bacon_avocado_sandwich.md @@ -9,31 +9,31 @@ mechanism for bacon. ## Ingredients -- Bacon -- Cracked black pepper -- 1 ripe avocado -- 1 small red onion -- Alfalfa sprouts -- Mayonnaise -- Hot sauce (Like Tapatio) -- 2 slices of your favorite bread or toast -- Salt (optional) +- Bacon +- Cracked black pepper +- 1 ripe avocado +- 1 small red onion +- Alfalfa sprouts +- Mayonnaise +- Hot sauce (Like Tapatio) +- 2 slices of your favorite bread or toast +- Salt (optional) ## Instructions -1. Crack the black pepper over several slices of bacon (at least 2) and - cook until crispy. -2. Mix the hot sauce into the mayonnaise and spread evenly over both - slices of bread. -3. Cut the avocado in half, remove pit, and then slice the flesh into - 1/2 inch slices. -4. Scoop the slices out of the avocado shell and cover the first slice - of bread with them. -5. Cut the red onion into thin slices and put those atop the avocado - slices. -6. Add the bacon. **Do it now.** -7. Rinse and dry the alfalfa sprouts then make a thin blanket over the - bacon. -8. **Optional** - Dust the sprouts with salt to amplify your blood - pressure increase from the bacon. -9. Top with the other slice of bread and enjoy. +1. Crack the black pepper over several slices of bacon (at least 2) and + cook until crispy. +2. Mix the hot sauce into the mayonnaise and spread evenly over both + slices of bread. +3. Cut the avocado in half, remove pit, and then slice the flesh into + 1/2 inch slices. +4. Scoop the slices out of the avocado shell and cover the first slice + of bread with them. +5. Cut the red onion into thin slices and put those atop the avocado + slices. +6. Add the bacon. **Do it now.** +7. Rinse and dry the alfalfa sprouts then make a thin blanket over the + bacon. +8. **Optional** - Dust the sprouts with salt to amplify your blood + pressure increase from the bacon. +9. Top with the other slice of bread and enjoy. diff --git a/ENTREES/da_667s_cheesy_chicken_chili.md b/ENTREES/da_667s_cheesy_chicken_chili.md index 6926bd4..242a1a3 100644 --- a/ENTREES/da_667s_cheesy_chicken_chili.md +++ b/ENTREES/da_667s_cheesy_chicken_chili.md @@ -4,27 +4,27 @@ A quick crock pot meal, because lord knows you don't have time to cook. ## Ingredients -- 1 Can of Pinto Beans -- 1 Can of Great White Northern Beans -- 1 Jar of Salsa -- 1 can of cream of chicken soup -- 1-2 boneless skinless chicken breast, cut up into bite-sized pieces, - or if you're lazy, you can use \~2 handfuls of frozen boneless - skinless chicken breast pieces +- 1 Can of Pinto Beans +- 1 Can of Great White Northern Beans +- 1 Jar of Salsa +- 1 can of cream of chicken soup +- 1-2 boneless skinless chicken breast, cut up into bite-sized pieces, + or if you're lazy, you can use \~2 handfuls of frozen boneless + skinless chicken breast pieces ## Optional -- Shredded Cheese -- Tortilla Chips +- Shredded Cheese +- Tortilla Chips ## Instructions -1. Open the cans of beans and drain them, then dump the chicken, salsa, - cream of chicken, and beans into the crock pot. Mix the ingredients - if you're feeling fancy, if not, just let it go 4 hours on high or 8 - hours on low. -2. When ready to serve, serve into a bowl, top with shredded cheese. - You can also crush up tortilla chips (like you would saltine - crackers) to top the chili. Pairs well with hot sauce. -3. Serves about 2-3 people, refrigerates fairly well (will be really - thick) +1. Open the cans of beans and drain them, then dump the chicken, salsa, + cream of chicken, and beans into the crock pot. Mix the ingredients + if you're feeling fancy, if not, just let it go 4 hours on high or 8 + hours on low. +2. When ready to serve, serve into a bowl, top with shredded cheese. + You can also crush up tortilla chips (like you would saltine + crackers) to top the chili. Pairs well with hot sauce. +3. Serves about 2-3 people, refrigerates fairly well (will be really + thick) diff --git a/ENTREES/deviant_ollam_sous_vide_steak.md b/ENTREES/deviant_ollam_sous_vide_steak.md index 3689068..9331d0c 100644 --- a/ENTREES/deviant_ollam_sous_vide_steak.md +++ b/ENTREES/deviant_ollam_sous_vide_steak.md @@ -6,68 +6,68 @@ here... ## Supplies -- Sous vide immersion circulator (the Anova and the Joule are my two - favorites) -- Heavy duty zip-loc bags (freezer bag thickness) -- Searzall or cast iron over hot stove +- Sous vide immersion circulator (the Anova and the Joule are my two + favorites) +- Heavy duty zip-loc bags (freezer bag thickness) +- Searzall or cast iron over hot stove ## Ingredients -- Ribeye steaks (ideally ribeye cap, ideally USDA prime) -- Large grain french grey sea salt -- Cracked and ground black pepper -- Bay leaves -- Liquid aminos -- Butter from grass-fed cows -- High smoke point oil such as avocado oil or extra light olive oil - (optional) +- Ribeye steaks (ideally ribeye cap, ideally USDA prime) +- Large grain french grey sea salt +- Cracked and ground black pepper +- Bay leaves +- Liquid aminos +- Butter from grass-fed cows +- High smoke point oil such as avocado oil or extra light olive oil + (optional) ## Instructions -1. Bring your water bath up to 126.5 degrees Fahrenheit (52.5 decrees - Celsius). -2. Remove steak from butcher's packaging and, while still cold, apply - heat (either Searzall or via stove top cast iron with high smoke - point oil) to sear all sides (this is known as the "pre-sear" - method). -3. Place pre-seared (but still uncooked) steak into heavy duty ziploc - bag, along with a pinch of french grey sea salt, one pinch of - cracked black pepper, one pinch of ground black pepper, two bay - leaves, and three squirts of liquid aminos. (optional: a small - drizzle of your oil can go in the bag, mostly to help with heat - transfer and eliminating air pockets). -4. Use the "sous vide water immersion technique" to remove air from the - bag... slowly lower the bagged food into your water bath, letting - the pressure of the water force the air out through the top of the - bag. once the air is out of the bag, carefully seal it just above - the water line. -5. The temperature of your water bath may drop slightly as the cold - meat bag is exposed to the water, but allow the immersion circulator - to bring the water bath back up to temperature. once the target - temperature is reached, keep the bag in the bath for a duration - calculated as "30 minutes for each finger of thickness of steak" ... - that is to say, if you have a three-finger steak, you'd keep it - rolling in the sous vide bath for 90 minutes. (NOTE: these times are - just a minimum. it is entirely safe to keep a sous vide cook process - running for hours or even days as long as the temperature is above - 122 degrees Fahrenheit (50 decrees Celsius). -6. After your minimum cook time has been achieved, you are free to - remove the steak whenever it is time to serve. remove the bag from - the sous vide bath and open it over a sink or other receptacle as - you use tongs to remove your now-cooked steak. take care to not - bring any large peppercorns or bay leaves with the steak. (NOTE: if - you cooked for more than six hours, there is a chance that much of - the steak has broken down and is extra tender... take caution that - it doesn't fall apart... use quality tongs). -7. Bonus pro step: place whatever dishes will be used for serving and - dining into the still-hot water bath to allow them to warm up while - you finish the steak execution. -8. Pat the steak dry slightly as you prepare to again use the hot cast - iron or to use the Searzall. sprinkle a pinch of ground black pepper - and french grey sea salt on all sides and rub it in slightly. -9. Sear all sides of the steak again. A nice, solid sear. +1. Bring your water bath up to 126.5 degrees Fahrenheit (52.5 decrees + Celsius). +2. Remove steak from butcher's packaging and, while still cold, apply + heat (either Searzall or via stove top cast iron with high smoke + point oil) to sear all sides (this is known as the "pre-sear" + method). +3. Place pre-seared (but still uncooked) steak into heavy duty ziploc + bag, along with a pinch of french grey sea salt, one pinch of + cracked black pepper, one pinch of ground black pepper, two bay + leaves, and three squirts of liquid aminos. (optional: a small + drizzle of your oil can go in the bag, mostly to help with heat + transfer and eliminating air pockets). +4. Use the "sous vide water immersion technique" to remove air from the + bag... slowly lower the bagged food into your water bath, letting + the pressure of the water force the air out through the top of the + bag. once the air is out of the bag, carefully seal it just above + the water line. +5. The temperature of your water bath may drop slightly as the cold + meat bag is exposed to the water, but allow the immersion circulator + to bring the water bath back up to temperature. once the target + temperature is reached, keep the bag in the bath for a duration + calculated as "30 minutes for each finger of thickness of steak" ... + that is to say, if you have a three-finger steak, you'd keep it + rolling in the sous vide bath for 90 minutes. (NOTE: these times are + just a minimum. it is entirely safe to keep a sous vide cook process + running for hours or even days as long as the temperature is above + 122 degrees Fahrenheit (50 decrees Celsius). +6. After your minimum cook time has been achieved, you are free to + remove the steak whenever it is time to serve. remove the bag from + the sous vide bath and open it over a sink or other receptacle as + you use tongs to remove your now-cooked steak. take care to not + bring any large peppercorns or bay leaves with the steak. (NOTE: if + you cooked for more than six hours, there is a chance that much of + the steak has broken down and is extra tender... take caution that + it doesn't fall apart... use quality tongs). +7. Bonus pro step: place whatever dishes will be used for serving and + dining into the still-hot water bath to allow them to warm up while + you finish the steak execution. +8. Pat the steak dry slightly as you prepare to again use the hot cast + iron or to use the Searzall. sprinkle a pinch of ground black pepper + and french grey sea salt on all sides and rub it in slightly. +9. Sear all sides of the steak again. A nice, solid sear. 10. Plate the steak on your now-warm dishware. Rest a generous pat of - the grass-fed cow butter atop and let it begin to melt. serve - quickly, so that the already-limited heat in the steak does not - dissipate too much. suggested sides: asparagus, broad beans, mashed - cauliflower, or mushrooms sautéed in butter. enjoy! + the grass-fed cow butter atop and let it begin to melt. serve + quickly, so that the already-limited heat in the steak does not + dissipate too much. suggested sides: asparagus, broad beans, mashed + cauliflower, or mushrooms sautéed in butter. enjoy! diff --git a/ENTREES/dis0wn-TwoCheese_Bacon_Potato_and_Cauliflower_Soup.md b/ENTREES/dis0wn-TwoCheese_Bacon_Potato_and_Cauliflower_Soup.md index e9d9435..936a2b4 100644 --- a/ENTREES/dis0wn-TwoCheese_Bacon_Potato_and_Cauliflower_Soup.md +++ b/ENTREES/dis0wn-TwoCheese_Bacon_Potato_and_Cauliflower_Soup.md @@ -7,53 +7,53 @@ dip. ## Ingredients -- 1-2 Tbsp Butter -- 1/2 pound of bacon. Cooked and chopped finely. European-style bacon - tends to be more lean. -- 1 cup of chopped onions, pick your fav -- 2 cloves of garlic, roasted and chopped fine. add more if you like - garlic. See below for roasted garlic recipe. -- 5 cups of whole milk, 2% and skim won't work here. Sub in 1 cup of - heavy whipping cream for thickness. -- 1 pound of Yukon Gold potatoes, peeled and diced. -- 1 pound of cauliflower -- 1.5 cups of shredded sharp cheddar cheese (I prefer extra sharp) -- 1/2 cup crumbled feta cheese -- 1 Tbsp Tarragon -- 1.5 Tsp of salt +- 1-2 Tbsp Butter +- 1/2 pound of bacon. Cooked and chopped finely. European-style bacon + tends to be more lean. +- 1 cup of chopped onions, pick your fav +- 2 cloves of garlic, roasted and chopped fine. add more if you like + garlic. See below for roasted garlic recipe. +- 5 cups of whole milk, 2% and skim won't work here. Sub in 1 cup of + heavy whipping cream for thickness. +- 1 pound of Yukon Gold potatoes, peeled and diced. +- 1 pound of cauliflower +- 1.5 cups of shredded sharp cheddar cheese (I prefer extra sharp) +- 1/2 cup crumbled feta cheese +- 1 Tbsp Tarragon +- 1.5 Tsp of salt ## Instructions -1. Melt the butter in a large sauce or pasta pan over medium-high heat. - If the butter starts getting dark, it's too hot. turn it down. Add - onion. Cook for 5-6 minutes, stirring frequently. -2. Add garlic and stir for a minute. Add milk, cauliflower, potatoes, - and salt. Bring to a boil. Stir occasionally -3. Reduce heat to low, cover and simmer for 15 minutes or until - potatoes are tender. Stir occasionally but be sure to scrape the - bottom of the pan to get the tasty bits of onion and garlic into the - mix. -4. Working 2 cups at a time, process the soup in a food processor or - blender. Optionally, you can use a stick blender and leave it in the - pan. Blend until smooth. Return it to the saucepan and heat it - through over medium heat. -5. Remove from heat and stir in cheddar cheese and half of the feta. - Stir until melted. -6. Ladel into a bowl for serving. Sprinkle tarragon over the top. Place - a small amount of feta in the middle and sprinkle bacon over the - top. +1. Melt the butter in a large sauce or pasta pan over medium-high heat. + If the butter starts getting dark, it's too hot. turn it down. Add + onion. Cook for 5-6 minutes, stirring frequently. +2. Add garlic and stir for a minute. Add milk, cauliflower, potatoes, + and salt. Bring to a boil. Stir occasionally +3. Reduce heat to low, cover and simmer for 15 minutes or until + potatoes are tender. Stir occasionally but be sure to scrape the + bottom of the pan to get the tasty bits of onion and garlic into the + mix. +4. Working 2 cups at a time, process the soup in a food processor or + blender. Optionally, you can use a stick blender and leave it in the + pan. Blend until smooth. Return it to the saucepan and heat it + through over medium heat. +5. Remove from heat and stir in cheddar cheese and half of the feta. + Stir until melted. +6. Ladel into a bowl for serving. Sprinkle tarragon over the top. Place + a small amount of feta in the middle and sprinkle bacon over the + top. ## Roasted Garlic -1. Pre-heat oven to 375F -2. Cut just the top off the garlic bulb. -3. Place bulb on a small sheet of aluminum foil and drizzle olive oil - over the top. Try to let it soak into the middle of the bulb. -4. Close the foil around the bulb and place it in the oven on a cookie - sheet or right on the rack. -5. Bake for about an hour. -6. Remove from foil and remove all the garlic casings. Squeezing from - the bottom of the clove will usually allow the garlic meat to come - out in one piece. -7. Keep in a tupperware in the fridge. Good for several weeks. Add - olive oil if it starts to dry out. +1. Pre-heat oven to 375F +2. Cut just the top off the garlic bulb. +3. Place bulb on a small sheet of aluminum foil and drizzle olive oil + over the top. Try to let it soak into the middle of the bulb. +4. Close the foil around the bulb and place it in the oven on a cookie + sheet or right on the rack. +5. Bake for about an hour. +6. Remove from foil and remove all the garlic casings. Squeezing from + the bottom of the clove will usually allow the garlic meat to come + out in one piece. +7. Keep in a tupperware in the fridge. Good for several weeks. Add + olive oil if it starts to dry out. diff --git a/ENTREES/elegin_balsamic_tempeh.md b/ENTREES/elegin_balsamic_tempeh.md index e234435..1635de7 100644 --- a/ENTREES/elegin_balsamic_tempeh.md +++ b/ENTREES/elegin_balsamic_tempeh.md @@ -11,14 +11,14 @@ tablespoon olive oil (15mL) ## Instructions -- Cut tempheh in to desired shape -- In baking dish add all ingredients -- Add tempeh and let marinade in fridge for a 2 to 12 hours. Toss - tempeh a few times. -- Preheat oven to 350C (180C) -- Bake covered for 20 minutes -- Remove cover, flip tempeh, and cook for 30 minutes -- Remove from oven and let set to absorbe marinade +- Cut tempheh in to desired shape +- In baking dish add all ingredients +- Add tempeh and let marinade in fridge for a 2 to 12 hours. Toss + tempeh a few times. +- Preheat oven to 350C (180C) +- Bake covered for 20 minutes +- Remove cover, flip tempeh, and cook for 30 minutes +- Remove from oven and let set to absorbe marinade Depending on baking dish size it is usually easier to double the recipe. Use this as protien replacement in dish where flavor profile fits or @@ -26,13 +26,13 @@ have as snacks. ## Notes -- you can get away with 2 hours of marinating but longer can be better - if time permits. I have personally not been able to differentiate - between like 6 and 12 hours. I usually prep this in morning and put - it in fridge. -- might want make sure the dish is at roomish temperature before - putting in oven. -- clean dish sooner than later +- you can get away with 2 hours of marinating but longer can be better + if time permits. I have personally not been able to differentiate + between like 6 and 12 hours. I usually prep this in morning and put + it in fridge. +- might want make sure the dish is at roomish temperature before + putting in oven. +- clean dish sooner than later Quick prep and only oven time for cooking. For a quick meal add some quinoa or wild rice with a vegetable of choice. diff --git a/ENTREES/elegin_cauliflower_steaks.md b/ENTREES/elegin_cauliflower_steaks.md index ba499d3..f6d4ce8 100644 --- a/ENTREES/elegin_cauliflower_steaks.md +++ b/ENTREES/elegin_cauliflower_steaks.md @@ -6,13 +6,13 @@ be an entrée or side. ## Ingredients -- 1 head of Cauliflower -- Mustard French herb blend (or any dam rub/blend you want) +- 1 head of Cauliflower +- Mustard French herb blend (or any dam rub/blend you want) ## Instructions -1. Cut Cauliflower in thick slices. (as best you can should be at least - half inch to inch thick) -2. coat with oil(dealer choice.. I prefer spray or pump oil to coat - just enoough) and rub the rub -3. 15-20 minutes at 400 degrees F (200 degrees C). +1. Cut Cauliflower in thick slices. (as best you can should be at least + half inch to inch thick) +2. coat with oil(dealer choice.. I prefer spray or pump oil to coat + just enoough) and rub the rub +3. 15-20 minutes at 400 degrees F (200 degrees C). diff --git a/ENTREES/elegin_chickpea_tacos.md b/ENTREES/elegin_chickpea_tacos.md index 104ddf5..9aa712e 100644 --- a/ENTREES/elegin_chickpea_tacos.md +++ b/ENTREES/elegin_chickpea_tacos.md @@ -4,27 +4,27 @@ Can be a healthy alt for a taco's and a quick prep meal. ## Ingredients -- 1 can chickpeas -- 1 avocado -- 1 lime -- 1 cup cashews -- 1 lemon -- 2 teaspoon apple cider vinegar -- 1 can refried beans -- taco shells -- non-dairy chedder cheese -- salsa of choice -- 1 of anything you would put on a taco +- 1 can chickpeas +- 1 avocado +- 1 lime +- 1 cup cashews +- 1 lemon +- 2 teaspoon apple cider vinegar +- 1 can refried beans +- taco shells +- non-dairy chedder cheese +- salsa of choice +- 1 of anything you would put on a taco ## Instructions -1. Add avocado to bowl and mash it -2. Add juice from 1 lime to mashed avocado -3. Add Drain and rinse chickpeas to bowl and mix -4. Set avocado lime chicpea bowl aside -5. prepare refried beans -6. add cashews , 1/2 cup of water, juice from 1 lemon, 2 teaspoons of - apple cider vinegar, a bit of salt (up to you) to blender -7. Boom vegan sour cream. Adjust lemon,vinegar, and salt to taste -8. Get bowl crumble taco shells in bowl and add everying to it. -9. EAT! +1. Add avocado to bowl and mash it +2. Add juice from 1 lime to mashed avocado +3. Add Drain and rinse chickpeas to bowl and mix +4. Set avocado lime chicpea bowl aside +5. prepare refried beans +6. add cashews , 1/2 cup of water, juice from 1 lemon, 2 teaspoons of + apple cider vinegar, a bit of salt (up to you) to blender +7. Boom vegan sour cream. Adjust lemon,vinegar, and salt to taste +8. Get bowl crumble taco shells in bowl and add everying to it. +9. EAT! diff --git a/ENTREES/elegin_one_pot_thai_peanut.md b/ENTREES/elegin_one_pot_thai_peanut.md index 70c200a..76a935d 100644 --- a/ENTREES/elegin_one_pot_thai_peanut.md +++ b/ENTREES/elegin_one_pot_thai_peanut.md @@ -5,25 +5,25 @@ done. ## Ingredients -- 3 cups of your favorite veggies (carrots, red bell pepper, broccoli, - mushrooms or celery) -- 4 cups veggie broth (l liter) -- 4 garlic cloves minced -- 1 Tbsp. Braggs liquid aminos (15mL) -- 1/2 tsp red pepper flakes (2.5ml) -- 2\" piece of ginger, sliced (large slices..you will remove these - later) (5cm) -- 2 Tbsp. peanut butter (30mL) -- 1 Tbsp. brown sugar or maple (15mL) -- 2 servings of rice pasta (use your best judgement) -- 1 package of cubed tofu (baked the tofu and add to near end or just - dump it in at beginning dealers choice) +- 3 cups of your favorite veggies (carrots, red bell pepper, broccoli, + mushrooms or celery) +- 4 cups veggie broth (l liter) +- 4 garlic cloves minced +- 1 Tbsp. Braggs liquid aminos (15mL) +- 1/2 tsp red pepper flakes (2.5ml) +- 2\" piece of ginger, sliced (large slices..you will remove these + later) (5cm) +- 2 Tbsp. peanut butter (30mL) +- 1 Tbsp. brown sugar or maple (15mL) +- 2 servings of rice pasta (use your best judgement) +- 1 package of cubed tofu (baked the tofu and add to near end or just + dump it in at beginning dealers choice) ## Instructions -1. Add all ingredients to pot -2. Cook on medium till simmer then reduce to low until veggies are soft -3. Dig around and remove ginger -4. Eat +1. Add all ingredients to pot +2. Cook on medium till simmer then reduce to low until veggies are soft +3. Dig around and remove ginger +4. Eat Change up any part of dish. Nice and easy dish. Chopping and waiting. diff --git a/ENTREES/hardwaterhacker_crispy_parmesan_baked_walleye.md b/ENTREES/hardwaterhacker_crispy_parmesan_baked_walleye.md index 94dc3eb..5817424 100644 --- a/ENTREES/hardwaterhacker_crispy_parmesan_baked_walleye.md +++ b/ENTREES/hardwaterhacker_crispy_parmesan_baked_walleye.md @@ -8,30 +8,30 @@ Serves: 2-4 ## Ingredients -- 2 lbs. (.9 kg) walleye fillets -- 2 cups (300 g) panko bread crumbs -- 1 packet dry Italian dressing mix (I use Good Seasons) -- 1/4 cup (38 g) garlic powder -- Pinch of kosher salt -- Fresh ground black pepper to taste -- 2 Tbsp (30 mL) butter -- 2 egg whites -- 1/2 cup (120 mL) skim milk -- 1/2 cup (45 g) finely-grated quality parmesan cheese +- 2 lbs. (.9 kg) walleye fillets +- 2 cups (300 g) panko bread crumbs +- 1 packet dry Italian dressing mix (I use Good Seasons) +- 1/4 cup (38 g) garlic powder +- Pinch of kosher salt +- Fresh ground black pepper to taste +- 2 Tbsp (30 mL) butter +- 2 egg whites +- 1/2 cup (120 mL) skim milk +- 1/2 cup (45 g) finely-grated quality parmesan cheese ## Preparation Preheat oven to 450 degrees F (232 C) -1. Line a cookie sheet with parchment paper. Tinfoil can be used, but - fish may stick. -2. Mix panko crubs, seasoning packet, garlic powder, salt, and pepper - in a bowl until mixed well. -3. Beat egg whites and skim milk in a bowl until blended. -4. Dunk fillet pieces in egg & milk mixture and then dredge in breading - mixture. Make sure each piece is thoroughly coated and place on - parchment paper. -5. Bake fillets for 15 minutes. +1. Line a cookie sheet with parchment paper. Tinfoil can be used, but + fish may stick. +2. Mix panko crubs, seasoning packet, garlic powder, salt, and pepper + in a bowl until mixed well. +3. Beat egg whites and skim milk in a bowl until blended. +4. Dunk fillet pieces in egg & milk mixture and then dredge in breading + mixture. Make sure each piece is thoroughly coated and place on + parchment paper. +5. Bake fillets for 15 minutes. While fillets are baking, melt butter in a pan. After 15 minutes, remove fish from oven and spoon a small amount of butter on each fillet. diff --git a/ENTREES/hardwaterhacker_grilled_cedar_plank_salmon.md b/ENTREES/hardwaterhacker_grilled_cedar_plank_salmon.md index 056451b..af473b9 100644 --- a/ENTREES/hardwaterhacker_grilled_cedar_plank_salmon.md +++ b/ENTREES/hardwaterhacker_grilled_cedar_plank_salmon.md @@ -8,24 +8,24 @@ Serves: 3-4 ## Ingredients -- (1) 2 lb. (900 g) salmon fillet, skin left on +- (1) 2 lb. (900 g) salmon fillet, skin left on -- 1/2 c (90 g) brown sugar, packed +- 1/2 c (90 g) brown sugar, packed -- 2 Tbsp (30 mL) extra virgin olive oil +- 2 Tbsp (30 mL) extra virgin olive oil -- 1 Tbsp (6.8 g) dried italian seasoning mix (basil, marjoram, organo, - parsley, rosemary, thyme) +- 1 Tbsp (6.8 g) dried italian seasoning mix (basil, marjoram, organo, + parsley, rosemary, thyme) -- 1 Tsp (2.3 g) smoked paprika +- 1 Tsp (2.3 g) smoked paprika -- 1/2 tsp (3 g) kosher salt +- 1/2 tsp (3 g) kosher salt -- Fresh ground black pepper +- Fresh ground black pepper -- (2) lemons +- (2) lemons -- (1) Cedar plank +- (1) Cedar plank ## Preparation @@ -35,15 +35,15 @@ Preheat gas grill to medium. Slice lemons with rind on as thinly as possible. -1. Cover cedar plank with lemon slices. -2. Place fillet on plank on top of lemon slices. -3. Season fillet with black pepper. -4. Combine brown sugar, italian seasoning, paprika, and kosher salt in - a mixing bowl. Add olive oil and mix until mixture is like a paste. -5. Spread brown sugar mixture over fillet. Ensure fillet is fully - covered. Try to cover exposed end of fillet. -6. Grill fillet for 25 minutes or until thickest part of fillet reaches - 135 degrees F (57 C) internal temperature. +1. Cover cedar plank with lemon slices. +2. Place fillet on plank on top of lemon slices. +3. Season fillet with black pepper. +4. Combine brown sugar, italian seasoning, paprika, and kosher salt in + a mixing bowl. Add olive oil and mix until mixture is like a paste. +5. Spread brown sugar mixture over fillet. Ensure fillet is fully + covered. Try to cover exposed end of fillet. +6. Grill fillet for 25 minutes or until thickest part of fillet reaches + 135 degrees F (57 C) internal temperature. Keep a close eye on the grill during cooking. The brown sugar mixture is likely to flare up. Knock down flames with a spray bottle filled with diff --git a/ENTREES/iHeartMalware_NC_Pulled_Pork.md b/ENTREES/iHeartMalware_NC_Pulled_Pork.md index 8170dd1..3bb2d7a 100644 --- a/ENTREES/iHeartMalware_NC_Pulled_Pork.md +++ b/ENTREES/iHeartMalware_NC_Pulled_Pork.md @@ -8,24 +8,24 @@ to sit and watch it. ## Ingredients -- 1 Boston Butt -- Dry Rub (pork rub) -- Yuengling, half bottle (or an IPA, drink the rest) -- 6 oz braggs apple cider vinegar -- BBQ Sauce (I usually use a SC bbq sauce, mustard based) -- Liquid smoke -- Plastic wrap +- 1 Boston Butt +- Dry Rub (pork rub) +- Yuengling, half bottle (or an IPA, drink the rest) +- 6 oz braggs apple cider vinegar +- BBQ Sauce (I usually use a SC bbq sauce, mustard based) +- Liquid smoke +- Plastic wrap ## Instructions -1. The night before, rub the butt down with the dry rub. Once covered, - wrap with plastic wrap and store over night. -2. Put the pork butt in the crock pot and cook fat-side up. Next, split - 6 oz of beer on each side, 6 oz of braggs on each side, and sprinkle - with liquid smoke. cook for 8 hours on low or until easily pulled - away with a fork. -3. After 8 hours, pull pork, separating the fat, bone, and meat. Save ¼ - cup of the juice from cooking. Once pulled, empty the crock pot, - then add the meat back in and toss with the ¼ cup of juice, ¼ cup of - bbq sauce, and ¼ cup of apple cider vinegar. Place on low for 30 - minutes, then warm for another 30. (if you can stand it) +1. The night before, rub the butt down with the dry rub. Once covered, + wrap with plastic wrap and store over night. +2. Put the pork butt in the crock pot and cook fat-side up. Next, split + 6 oz of beer on each side, 6 oz of braggs on each side, and sprinkle + with liquid smoke. cook for 8 hours on low or until easily pulled + away with a fork. +3. After 8 hours, pull pork, separating the fat, bone, and meat. Save ¼ + cup of the juice from cooking. Once pulled, empty the crock pot, + then add the meat back in and toss with the ¼ cup of juice, ¼ cup of + bbq sauce, and ¼ cup of apple cider vinegar. Place on low for 30 + minutes, then warm for another 30. (if you can stand it) diff --git a/ENTREES/miss_gif_crock-pot-meatshield.md b/ENTREES/miss_gif_crock-pot-meatshield.md index 2f169ba..02c69c0 100644 --- a/ENTREES/miss_gif_crock-pot-meatshield.md +++ b/ENTREES/miss_gif_crock-pot-meatshield.md @@ -10,24 +10,24 @@ work... ## Ingredients -- 2 eggs (beaten like a red headed step child) -- 1/2 cup organic non gmo pasture fed free range milk -- 2/3 cup wonder bread crumbs...you figure out how to get them -- 1/2 chopped onion -- 1/4 tsp pepper (Tee spoon...not a table spoon) -- 1 tsp salt -- 1 and 1/2 lbs lean ground beef...aka Da Meat -- Catsup...or BBQ sauce...or Ketchup for the rest of you folks... +- 2 eggs (beaten like a red headed step child) +- 1/2 cup organic non gmo pasture fed free range milk +- 2/3 cup wonder bread crumbs...you figure out how to get them +- 1/2 chopped onion +- 1/4 tsp pepper (Tee spoon...not a table spoon) +- 1 tsp salt +- 1 and 1/2 lbs lean ground beef...aka Da Meat +- Catsup...or BBQ sauce...or Ketchup for the rest of you folks... ## Instructions -1. Label freezer bags with cooking directions and date. -2. Mix all the things, together, and place into freezer safe bags. -3. Place in freezer. -4. On Cooking day, put frozen meatloaf in crockpot, cover with ketchup - or BBQ sauce (use as little or as much as you want). -5. Cook on low for 8-10 hours (Our frozen meatloaf was ready in 8 - hours) +1. Label freezer bags with cooking directions and date. +2. Mix all the things, together, and place into freezer safe bags. +3. Place in freezer. +4. On Cooking day, put frozen meatloaf in crockpot, cover with ketchup + or BBQ sauce (use as little or as much as you want). +5. Cook on low for 8-10 hours (Our frozen meatloaf was ready in 8 + hours) ## Obligatory Meme Reference diff --git a/ENTREES/moonbas3_bbq_ribs.md b/ENTREES/moonbas3_bbq_ribs.md index f342bff..7a682a8 100644 --- a/ENTREES/moonbas3_bbq_ribs.md +++ b/ENTREES/moonbas3_bbq_ribs.md @@ -4,7 +4,7 @@ ## Required Equipment -- Smoker or barbecue that can smoke.. +- Smoker or barbecue that can smoke.. ## Discussion @@ -34,74 +34,74 @@ Rub makes the world go round, sauce finishes the journey. ### Rub -- 1 cup firmly packed, dark-preferred, brown sugar -- 1 cup white sugar -- 1/2 cup smoked paprika -- 1/4 cup garlic powder -- 2 tbsp kosher salt (fine ground) -- 2 tbsp black pepper -- 2 tbsp ground ginger -- 2 tbsp onion powder -- sliced and diced rosemary sprigs (1-2) +- 1 cup firmly packed, dark-preferred, brown sugar +- 1 cup white sugar +- 1/2 cup smoked paprika +- 1/4 cup garlic powder +- 2 tbsp kosher salt (fine ground) +- 2 tbsp black pepper +- 2 tbsp ground ginger +- 2 tbsp onion powder +- sliced and diced rosemary sprigs (1-2) ### Sauce -- 1 cup ketchup -- 3 tbsp dark brown sugar -- 3 tbsp apple cider vinegar -- 2 tsp chili powder -- 1 tsp dry mustard powder -- 1 tsp black pepper -- 1/2 tsp kosher salt -- 1/2 tsp onion powder -- 1/2 tsp garlic powder -- 1/4 tsp cayenne pepper (more if you like spice) -- (optional) 1/2 cup of water, if going to heat or like a bit less - sticky sauce. +- 1 cup ketchup +- 3 tbsp dark brown sugar +- 3 tbsp apple cider vinegar +- 2 tsp chili powder +- 1 tsp dry mustard powder +- 1 tsp black pepper +- 1/2 tsp kosher salt +- 1/2 tsp onion powder +- 1/2 tsp garlic powder +- 1/4 tsp cayenne pepper (more if you like spice) +- (optional) 1/2 cup of water, if going to heat or like a bit less + sticky sauce. ## Directions ### Making the rub -1. Put all ingredients into a bowl and mix thoroughly. -2. Pat dry the ribs. -3. Apply by hand or through a shaker to the ribs directly. -4. Pat in the rub and let sit 5 minutes. -5. Repeat step 3 and step 4 again. -6. (Optional) Put aside in refrigerator for 2-16 hours depending on if - you can cook today. +1. Put all ingredients into a bowl and mix thoroughly. +2. Pat dry the ribs. +3. Apply by hand or through a shaker to the ribs directly. +4. Pat in the rub and let sit 5 minutes. +5. Repeat step 3 and step 4 again. +6. (Optional) Put aside in refrigerator for 2-16 hours depending on if + you can cook today. ### Making the Sauce -1. Put ketchup in measuring cup. -2. Put the rest of the ingredients on top of the ketchsup. -3. Mix thoroughly. -4. Add salt to taste. +1. Put ketchup in measuring cup. +2. Put the rest of the ingredients on top of the ketchsup. +3. Mix thoroughly. +4. Add salt to taste. ### Cooking the Ribs -0. Realize you will be smoking for about 5-6 hours, so plan wood and - charcoal accordingly. -1. I use a 50/50 mix of lump charcoal and hickory or cherry wood when - doing ribs. I have a big green egg-style smoker, so I fill up the - charcoal basin \~75%. -2. Be sure you have indirect heat, as direct heating ribs is a bad - idea. -3. (Optional) I use a drip pan that I initially fill with \~2 cups of - water, this will last about 3 hours and need to be refilled. -4. Build fire slowly, coast your smoker up to \~230F. -5. Put on ribs so they are shielded by your indirect heat zone. -6. Close lid and do not open for 4 hours (or 3hrs if cooking baby - backs). -7. Ribs will be "done" when they pass a few criteria: -8. Ribs will have pulled back from the bone about 1\". -9. Ribs will pass the twist test (grab with tongs and twist, they - should almost separate and flake). +0. Realize you will be smoking for about 5-6 hours, so plan wood and + charcoal accordingly. +1. I use a 50/50 mix of lump charcoal and hickory or cherry wood when + doing ribs. I have a big green egg-style smoker, so I fill up the + charcoal basin \~75%. +2. Be sure you have indirect heat, as direct heating ribs is a bad + idea. +3. (Optional) I use a drip pan that I initially fill with \~2 cups of + water, this will last about 3 hours and need to be refilled. +4. Build fire slowly, coast your smoker up to \~230F. +5. Put on ribs so they are shielded by your indirect heat zone. +6. Close lid and do not open for 4 hours (or 3hrs if cooking baby + backs). +7. Ribs will be "done" when they pass a few criteria: +8. Ribs will have pulled back from the bone about 1\". +9. Ribs will pass the twist test (grab with tongs and twist, they + should almost separate and flake). 10. If not done, wait 20 minutes and try again. 11. (Optional but tasty) Take ribs off smoker, remove indirect heating - blocker or scatter charcoal to create a direct heat zone, then put - sauce on ribs directly and cook each side for 90 seconds over open - flame. This will caramelize the sugar in the sauce and give a great - smoky flavor to your hard-won bark. + blocker or scatter charcoal to create a direct heat zone, then put + sauce on ribs directly and cook each side for 90 seconds over open + flame. This will caramelize the sugar in the sauce and give a great + smoky flavor to your hard-won bark. Enjoy! diff --git a/ENTREES/moonbas3_mississippi_pot_roast.md b/ENTREES/moonbas3_mississippi_pot_roast.md index 6ba3a9d..4d4b7f7 100644 --- a/ENTREES/moonbas3_mississippi_pot_roast.md +++ b/ENTREES/moonbas3_mississippi_pot_roast.md @@ -19,25 +19,25 @@ long. ## Required Equipment -- Instant Pot or Slow Cooker +- Instant Pot or Slow Cooker ## Ingredients -- 3- to 4-pound boneless beef roast, your choice of cut, I use chuck. -- 1 stick (8 tbsp) unsalted butter -- 1 package au jus gravy mix -- 1 package dry ranch dressing mix, such as Hidden Valley -- Pepperoncini peppers, number to your liking, and a little juice -- Salt and freshly ground pepper, if desired (\~1 tbsp of each) +- 3- to 4-pound boneless beef roast, your choice of cut, I use chuck. +- 1 stick (8 tbsp) unsalted butter +- 1 package au jus gravy mix +- 1 package dry ranch dressing mix, such as Hidden Valley +- Pepperoncini peppers, number to your liking, and a little juice +- Salt and freshly ground pepper, if desired (\~1 tbsp of each) ## Directions -1. Slice pepperoncinis and remove stems (seeds optional) and throw in - instant pot with a splash of juice from the jar. -2. Put roast in instant pot -3. Add au jus gravy mix, ranch dressing mix, salt and pepper. -4. Switch Instant Pot to "Pressure" and set for 2 hours. - 1. Alternatively, set Slow Cooker to "high" and cook for 8 hours. -5. Do not remove until meat falls apart to the touch. -6. Optional - Toast some provolone cheese onto a hoagie roll and serve - "philly cheese steak style". +1. Slice pepperoncinis and remove stems (seeds optional) and throw in + instant pot with a splash of juice from the jar. +2. Put roast in instant pot +3. Add au jus gravy mix, ranch dressing mix, salt and pepper. +4. Switch Instant Pot to "Pressure" and set for 2 hours. + 1. Alternatively, set Slow Cooker to "high" and cook for 8 hours. +5. Do not remove until meat falls apart to the touch. +6. Optional - Toast some provolone cheese onto a hoagie roll and serve + "philly cheese steak style". diff --git a/ENTREES/panaderos_sausage_balls.md b/ENTREES/panaderos_sausage_balls.md index c56e809..6ccb9b6 100644 --- a/ENTREES/panaderos_sausage_balls.md +++ b/ENTREES/panaderos_sausage_balls.md @@ -2,14 +2,14 @@ ## Ingredients -- 2 cups Bisquick -- 1/2 cup cheddar cheese -- 1 lb sausage (in the roll, like Jimmy Deans) +- 2 cups Bisquick +- 1/2 cup cheddar cheese +- 1 lb sausage (in the roll, like Jimmy Deans) ## Instructions -1. Combine all ingredients, dough will be hard to manage. -2. Combine until it forms a nice dough ball. -3. Pull off and roll into \~1\" diameter balls and place on cookie - sheet. -4. Cook for 20 minutes at 300 degrees F. +1. Combine all ingredients, dough will be hard to manage. +2. Combine until it forms a nice dough ball. +3. Pull off and roll into \~1\" diameter balls and place on cookie + sheet. +4. Cook for 20 minutes at 300 degrees F. diff --git a/ENTREES/rahlquist_slow_cooker_chorizo_black_bean_stew.md b/ENTREES/rahlquist_slow_cooker_chorizo_black_bean_stew.md index dbe18d4..be3faf0 100644 --- a/ENTREES/rahlquist_slow_cooker_chorizo_black_bean_stew.md +++ b/ENTREES/rahlquist_slow_cooker_chorizo_black_bean_stew.md @@ -7,38 +7,38 @@ stew ## Ingredients -- 1lb Lean Ground Turkey -- 1lb Ground Beef -- 1lb beef cubes (like for stew) -- 1 package skinless kielbasa (1lb) -- 2 Tbs olive oil (or other suitable fat) -- 2 cans black beans -- 1 can kidney beans in chili sauce -- 1 can condensed tomato soup -- 1 12oz can tomato paste -- 1.5 cup water -- 2 tbsp bread crumbs or masa (optional) -- 1 tbsp chorizo seasoning -- 1 tsp garlic powder -- hot sauce to taste +- 1lb Lean Ground Turkey +- 1lb Ground Beef +- 1lb beef cubes (like for stew) +- 1 package skinless kielbasa (1lb) +- 2 Tbs olive oil (or other suitable fat) +- 2 cans black beans +- 1 can kidney beans in chili sauce +- 1 can condensed tomato soup +- 1 12oz can tomato paste +- 1.5 cup water +- 2 tbsp bread crumbs or masa (optional) +- 1 tbsp chorizo seasoning +- 1 tsp garlic powder +- hot sauce to taste ## Instructions -1. Crank up the slow cooker to hi and dump all the beans (undrained), - soup, tomato paste, water, garlic powder, chorizo seasoning in the - slow cooker -2. Using the olive oil (or other fat) Brown the Turkey, Ground Beef, - Beef cubes, and kielbasa. I tend to quarter coin my kielbasa (slice - lengthwise once, turn 90 deg l\$ -3. Cook on hi in the slow cooker for 3-5 hours. Taste, add hot sauce if - you'd like and if you want more body add the bread crumbs or masa. +1. Crank up the slow cooker to hi and dump all the beans (undrained), + soup, tomato paste, water, garlic powder, chorizo seasoning in the + slow cooker +2. Using the olive oil (or other fat) Brown the Turkey, Ground Beef, + Beef cubes, and kielbasa. I tend to quarter coin my kielbasa (slice + lengthwise once, turn 90 deg l\$ +3. Cook on hi in the slow cooker for 3-5 hours. Taste, add hot sauce if + you'd like and if you want more body add the bread crumbs or masa. ## Additional Ideas -- Serve with a good crusty bread. -- Put Stew in oven safe bowl and top with Provolone and broil till - cheese is well melted. -- If any of the meats in the recipe are not to your liking swap out - for more of one of the others. -- Halve the ingredients to make smaller batch. -- This freezes very well, defrost and microwave. +- Serve with a good crusty bread. +- Put Stew in oven safe bowl and top with Provolone and broil till + cheese is well melted. +- If any of the meats in the recipe are not to your liking swap out + for more of one of the others. +- Halve the ingredients to make smaller batch. +- This freezes very well, defrost and microwave. diff --git a/ENTREES/sl3dges_low-carb_sticky_pork_belly.md b/ENTREES/sl3dges_low-carb_sticky_pork_belly.md index 0eb1941..8dbf095 100644 --- a/ENTREES/sl3dges_low-carb_sticky_pork_belly.md +++ b/ENTREES/sl3dges_low-carb_sticky_pork_belly.md @@ -1,8 +1,8 @@ # Low Carb Sticky Pork Belly and "Rice" -- 7g Net Carbs -- 86g Fat -- 17g Protein +- 7g Net Carbs +- 86g Fat +- 17g Protein ![image](images/sl3dges_low-carb_sticky_pork_belly.jpg){.align-center} @@ -23,18 +23,18 @@ and decorative) ## Pork Belly Recipe -1. Par-cook the pork belly in the pan, stirring and flipping - occasionally. -2. After 5 minutes, add in the italian seasoning, ginger, garlic, water - chestnuts, and onions. -3. Continue cooking the pork belly mix until the pork belly is browned - and crispy, approximately 15 minutes. **Stir occassionally** -4. After 15 minutes, add in the beef broth, rice vinegar, tamari sauce, - chinese five spice, and sweetener of choice. -5. Simmer the mix until the sauce reduces down to the desired - consistency, or until it is similar to the consistency of syrup. - **make sure to taste it before it is finished. If it is too salty, - add a little more sweetener. If it's too sweet, add a little more - tamari** +1. Par-cook the pork belly in the pan, stirring and flipping + occasionally. +2. After 5 minutes, add in the italian seasoning, ginger, garlic, water + chestnuts, and onions. +3. Continue cooking the pork belly mix until the pork belly is browned + and crispy, approximately 15 minutes. **Stir occassionally** +4. After 15 minutes, add in the beef broth, rice vinegar, tamari sauce, + chinese five spice, and sweetener of choice. +5. Simmer the mix until the sauce reduces down to the desired + consistency, or until it is similar to the consistency of syrup. + **make sure to taste it before it is finished. If it is too salty, + add a little more sweetener. If it's too sweet, add a little more + tamari** Can also be found on theketobaker.com diff --git a/ENTREES/slufs_seared_tuna_pasta.md b/ENTREES/slufs_seared_tuna_pasta.md index 87d01ab..c7b4d44 100644 --- a/ENTREES/slufs_seared_tuna_pasta.md +++ b/ENTREES/slufs_seared_tuna_pasta.md @@ -8,41 +8,41 @@ nonstick, and get it reasonably hot without burning the butter. DM ## Ingredients -- 1 4oz tuna steak -- cracked black pepper -- 1 tbsp butter -- 1 serving angle hair pasta -- 1 tbsp olive oil -- 1 tsp sesame oil -- 1 tbsp rice wine vinegar -- 1 tsp soy sauce -- hot water reserved from the cooked noodles -- 4-5 pieces dried mushrooms (or thinly sliced fresh mushrooms) -- dried or fresh parsley for granish +- 1 4oz tuna steak +- cracked black pepper +- 1 tbsp butter +- 1 serving angle hair pasta +- 1 tbsp olive oil +- 1 tsp sesame oil +- 1 tbsp rice wine vinegar +- 1 tsp soy sauce +- hot water reserved from the cooked noodles +- 4-5 pieces dried mushrooms (or thinly sliced fresh mushrooms) +- dried or fresh parsley for granish ## Instructions -1. Cook the noodles to your likeness but have the remaining steps - complete before your noodles are cooked so they do not overcook. - Reserve some of the hot water in a small bowl and soak the mushrooms - and parsley. They should be able to soak for at least 5 minutes - before using them. -2. Prepare the tuna by cracking black pepper on a small, flat plate. - Place the tuna on the pepper and crack additional pepper on the top - side. I personally like about 50% of the surface area covered with - moderately large pieces. -3. Heat the skillet over medium high heat. Add butter when hot, and - wait for the butter to melt completely. Just as it is melted but - before it burns, add the tuna steak. It will not stick to ceramic, - but it will cook quickly. Cook for 45-60 seconds on the first side - and then flip. Cook 30-45 seconds on the second side. Carefully - using a spatula, stand the tuna on end and briefly touch each side - to the hot skillet to seal the edges. Remove the tuna steak from the - hot pan and let rest on a cutting board. -4. Prepare the sauce by mixing the oils, vinegar, and soy sauce in a - small dish. Drain the noodles and move them to the individual - serving bowls. Add the sauce mix to each bowl and stir the hot - noodles to coat with the sauce. -5. Thinly slice the rested tuna steak using a very sharp knife and - transfer to the dressed noodles. Drain the rehydrated mushroom and - parsley, and add to the top of the sliced tuna. +1. Cook the noodles to your likeness but have the remaining steps + complete before your noodles are cooked so they do not overcook. + Reserve some of the hot water in a small bowl and soak the mushrooms + and parsley. They should be able to soak for at least 5 minutes + before using them. +2. Prepare the tuna by cracking black pepper on a small, flat plate. + Place the tuna on the pepper and crack additional pepper on the top + side. I personally like about 50% of the surface area covered with + moderately large pieces. +3. Heat the skillet over medium high heat. Add butter when hot, and + wait for the butter to melt completely. Just as it is melted but + before it burns, add the tuna steak. It will not stick to ceramic, + but it will cook quickly. Cook for 45-60 seconds on the first side + and then flip. Cook 30-45 seconds on the second side. Carefully + using a spatula, stand the tuna on end and briefly touch each side + to the hot skillet to seal the edges. Remove the tuna steak from the + hot pan and let rest on a cutting board. +4. Prepare the sauce by mixing the oils, vinegar, and soy sauce in a + small dish. Drain the noodles and move them to the individual + serving bowls. Add the sauce mix to each bowl and stir the hot + noodles to coat with the sauce. +5. Thinly slice the rested tuna steak using a very sharp knife and + transfer to the dressed noodles. Drain the rehydrated mushroom and + parsley, and add to the top of the sliced tuna. diff --git a/ENTREES/travelars_southwest_porkchops.md b/ENTREES/travelars_southwest_porkchops.md index 45bcd5b..1bdf955 100644 --- a/ENTREES/travelars_southwest_porkchops.md +++ b/ENTREES/travelars_southwest_porkchops.md @@ -6,28 +6,28 @@ is what I came up with. ## Ingredients -- 4-6 thick-cut pork chops -- 1 teaspoon ground cumin -- 1/2 teaspoon garlic powder -- 1/2 teaspoon salt -- 1/2 teaspoon black pepper -- 1 tablespoon olive oil -- 2 tablespoons lime juice -- 1 24 oz jar of your favorite salsa +- 4-6 thick-cut pork chops +- 1 teaspoon ground cumin +- 1/2 teaspoon garlic powder +- 1/2 teaspoon salt +- 1/2 teaspoon black pepper +- 1 tablespoon olive oil +- 2 tablespoons lime juice +- 1 24 oz jar of your favorite salsa Use optional spices for an added bit of heat. ## Instructions -1. Combine ground cumin, garlic powder, salt, and black pepper in a - small bowl. Use the spice mixture as a rub and coat both sides of - the chops. -2. Heat the oil in a heavy frying pan. Add the pork chops and cook over - medium heat until browned, which should be about 3-4 minutes per - side. -3. Place the pork chops into the slow cooker and pour lime juice. Let - sit for 1-2 minutes. Pour in the jar of salsa and cook on high for - 2-3 hours. -4. Serve hot, with a bit of salsa spooned over each pork chop. Pork - chops should be tender enough that they will fall apart with just a - fork. +1. Combine ground cumin, garlic powder, salt, and black pepper in a + small bowl. Use the spice mixture as a rub and coat both sides of + the chops. +2. Heat the oil in a heavy frying pan. Add the pork chops and cook over + medium heat until browned, which should be about 3-4 minutes per + side. +3. Place the pork chops into the slow cooker and pour lime juice. Let + sit for 1-2 minutes. Pour in the jar of salsa and cook on high for + 2-3 hours. +4. Serve hot, with a bit of salsa spooned over each pork chop. Pork + chops should be tender enough that they will fall apart with just a + fork. diff --git a/ENTREES/wimzkl_caramelized-onion-mushroom-stuffin.md b/ENTREES/wimzkl_caramelized-onion-mushroom-stuffin.md index 9e25b26..4834fff 100644 --- a/ENTREES/wimzkl_caramelized-onion-mushroom-stuffin.md +++ b/ENTREES/wimzkl_caramelized-onion-mushroom-stuffin.md @@ -8,73 +8,73 @@ Simple, hot, and tasty stuff to share with pals. ## Cooking Hardware -- 1 or 2 15\" x 10\" x 2\" rectangular baking dish -- 2 rimmed baking sheets (but only if you choose to make croutons) -- 1 large non-stick skillet -- 1 large mixing bowl -- Cooking utensils for stirring -- A Sharp chef's knife for cutting and chopping stuff -- Cutting board (make sure to put a damp cloth underneath so it - doesn't slide around - be safe!) -- Standard stove/oven +- 1 or 2 15\" x 10\" x 2\" rectangular baking dish +- 2 rimmed baking sheets (but only if you choose to make croutons) +- 1 large non-stick skillet +- 1 large mixing bowl +- Cooking utensils for stirring +- A Sharp chef's knife for cutting and chopping stuff +- Cutting board (make sure to put a damp cloth underneath so it + doesn't slide around - be safe!) +- Standard stove/oven ## Ingredients -- 6 Tablespoons salted butter, plus a little more to rub/coat this - inside of the Pyrex or glass bakeware with. -- 1 large loaf of bread (I like to use somewhat old homemade sourdough - and make croutons) but you can use any of your favorite bread or - store-bought croutons (about 1 pound). If you use your favorite - bread to make homemade croutons, it works well to cut it into - 3⁄4-inch pieces (about 16 cups) because they will shrink when you - bake them. Sturdy breads like pumpernickel and Sourdough seem to - work best for this recipe. -- 6 medium onions, halved, medium sliced, and chopped -- 1 bunch of celery, chopped medium-thick, not too thin, we want it to - be a little bit crunchy so a little thicker is better. -- A pinch or 3 of sea salt and fresh ground black pepper, as you like. -- ½ cup balsamic vinegar (sometimes I use way more than this). -- 3 or so cups vegetable stock (I like to use stock made from leftover - veggies but store bought works well, too). -- 4-5 cups jumbo mushrooms - chopped into big chunks - the more the - merrier. -- 1 tablespoon freshly choppsed thyme (sometimes sage is good, too). -- Some small, fresh sprigs or rosemary for the top when it's done. +- 6 Tablespoons salted butter, plus a little more to rub/coat this + inside of the Pyrex or glass bakeware with. +- 1 large loaf of bread (I like to use somewhat old homemade sourdough + and make croutons) but you can use any of your favorite bread or + store-bought croutons (about 1 pound). If you use your favorite + bread to make homemade croutons, it works well to cut it into + 3⁄4-inch pieces (about 16 cups) because they will shrink when you + bake them. Sturdy breads like pumpernickel and Sourdough seem to + work best for this recipe. +- 6 medium onions, halved, medium sliced, and chopped +- 1 bunch of celery, chopped medium-thick, not too thin, we want it to + be a little bit crunchy so a little thicker is better. +- A pinch or 3 of sea salt and fresh ground black pepper, as you like. +- ½ cup balsamic vinegar (sometimes I use way more than this). +- 3 or so cups vegetable stock (I like to use stock made from leftover + veggies but store bought works well, too). +- 4-5 cups jumbo mushrooms - chopped into big chunks - the more the + merrier. +- 1 tablespoon freshly choppsed thyme (sometimes sage is good, too). +- Some small, fresh sprigs or rosemary for the top when it's done. ## How to make it ### Croutons - if you choose to make the croutons yourself, it's easy, delicious, and pretty satisfying to do: -- Cut your favorite bread into very large crouton-sized chunks. -- Toss them in a big mixing bowl with some olive oil, salt, and - pepper, as you like (be careful not to use too much oil or they will - smoke you out of the kitchen when you bake them). -- Divide them between 2 rimmed baking sheets and bake until dry, a bit - golden, and crisp, 10 minutes or so. -- When they're done, set them aside. +- Cut your favorite bread into very large crouton-sized chunks. +- Toss them in a big mixing bowl with some olive oil, salt, and + pepper, as you like (be careful not to use too much oil or they will + smoke you out of the kitchen when you bake them). +- Divide them between 2 rimmed baking sheets and bake until dry, a bit + golden, and crisp, 10 minutes or so. +- When they're done, set them aside. ### The Stuffin' -1. Melt the 6 tablespoons of butter in the large non-stick skillet over - medium heat. -2. Add the onions, a pinch or two of salt, and pepper, as you like. -3. Cook over medium-low heat, stirring occasionally, until the onions - are a deep golden brown, about an hour or so. -4. When they're nice and brown, reduce them with the balsamic and cook - until it's all evaporated, which only takes a little while. -5. While they're cooking down, you can heat your oven to 375° F. -6. When the balsamic is all reduced, transfer the onions to a large - bowl and let cool for for a few minutes. -7. Butter up the 15x10x2-inch baking dish (or 2 depending on how many - are coming over) and make sure the inside is completely and more or - less evenly coated. -8. In a large mixing bowl, combine your croutons, stock, shrooms, - thyme/sage, onions, and sprinkle ½ teaspoon of sea salt over the - top. -9. Transfer the mixture to the prepared baking dish(es). +1. Melt the 6 tablespoons of butter in the large non-stick skillet over + medium heat. +2. Add the onions, a pinch or two of salt, and pepper, as you like. +3. Cook over medium-low heat, stirring occasionally, until the onions + are a deep golden brown, about an hour or so. +4. When they're nice and brown, reduce them with the balsamic and cook + until it's all evaporated, which only takes a little while. +5. While they're cooking down, you can heat your oven to 375° F. +6. When the balsamic is all reduced, transfer the onions to a large + bowl and let cool for for a few minutes. +7. Butter up the 15x10x2-inch baking dish (or 2 depending on how many + are coming over) and make sure the inside is completely and more or + less evenly coated. +8. In a large mixing bowl, combine your croutons, stock, shrooms, + thyme/sage, onions, and sprinkle ½ teaspoon of sea salt over the + top. +9. Transfer the mixture to the prepared baking dish(es). 10. Cover with buttered foil and bake for 30-40 minutes. 11. Uncover and bake until golden brown on top (yummy), 20 minutes or so - more. + more. ### How to serve diff --git a/ENTREES/wireheadlance_grandmothers_chicken_and_gravy.md b/ENTREES/wireheadlance_grandmothers_chicken_and_gravy.md index 10cc198..21302a1 100644 --- a/ENTREES/wireheadlance_grandmothers_chicken_and_gravy.md +++ b/ENTREES/wireheadlance_grandmothers_chicken_and_gravy.md @@ -7,18 +7,18 @@ gravy! ## Instructions -1. "Select whatever parts you want & salt & pepper. Have about 1/2 inch - of oil in frying pan & hot (she always used her electric skillet). -2. Roll chicken in flower & place skin-side down in hot fat. -3. Don't cook too fast (med hot) & cook till nice & brown & then turn - over. Takes about 30-45 minutes., depends on the size of the fryer. - If it's a larger one, it takes longer. (Watch, it can burn easily). -4. When all is done & you want gravy, drain most of the fat off, - leaving about 1/4 c in the pan (save the crunches!) & add 1 T flour - & about 1 1/2 C milk & salt & pepper. -5. Cook till beginning to thicken - not too think now, as it sets it - thickens some. This gravy is also made at last minute before - serving" +1. "Select whatever parts you want & salt & pepper. Have about 1/2 inch + of oil in frying pan & hot (she always used her electric skillet). +2. Roll chicken in flower & place skin-side down in hot fat. +3. Don't cook too fast (med hot) & cook till nice & brown & then turn + over. Takes about 30-45 minutes., depends on the size of the fryer. + If it's a larger one, it takes longer. (Watch, it can burn easily). +4. When all is done & you want gravy, drain most of the fat off, + leaving about 1/4 c in the pan (save the crunches!) & add 1 T flour + & about 1 1/2 C milk & salt & pepper. +5. Cook till beginning to thicken - not too think now, as it sets it + thickens some. This gravy is also made at last minute before + serving" ## Author Notes diff --git a/SAUCES/_section.md b/SAUCES/_section.md index f7eb45e..3c17f31 100644 --- a/SAUCES/_section.md +++ b/SAUCES/_section.md @@ -1,6 +1,6 @@ # Sauces -- Sauce. You know, that thing that you edit then push out to - production +- Sauce. You know, that thing that you edit then push out to + production ![foods](https://images.pexels.com/photos/699544/pexels-photo-699544.jpeg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb) diff --git a/SAUCES/elegin_vegan_tarter_sauce.md b/SAUCES/elegin_vegan_tarter_sauce.md index 6b55dc7..dc8214d 100644 --- a/SAUCES/elegin_vegan_tarter_sauce.md +++ b/SAUCES/elegin_vegan_tarter_sauce.md @@ -4,15 +4,15 @@ Simple Vegan tarter sauce. Quick and easy. ## Ingredients -- 1/2 cup vegenaise (4oz) -- 1 tsp. vegan horseradish (5ml) -- 2 Tbsp. freshly squeezed lemon juice (30mL) -- 2 Tbsp. capers and some brine (30mL) +- 1/2 cup vegenaise (4oz) +- 1 tsp. vegan horseradish (5ml) +- 2 Tbsp. freshly squeezed lemon juice (30mL) +- 2 Tbsp. capers and some brine (30mL) ## Instructions -1. Mix all -2. Done +1. Mix all +2. Done ## Notes diff --git a/SAUCES/iHeartMalware_buffalo_sauce.md b/SAUCES/iHeartMalware_buffalo_sauce.md index b7f13ee..b421d06 100644 --- a/SAUCES/iHeartMalware_buffalo_sauce.md +++ b/SAUCES/iHeartMalware_buffalo_sauce.md @@ -8,16 +8,16 @@ parties I cooked them for, except 12 wings. ## Ingredients -- 1 cup Franks red hot -- 1 cup Valentina Mexican Hot Sauce (aka the big bottle of cheap stuff - on the hispanic aisle) -- 2 sticks of butter +- 1 cup Franks red hot +- 1 cup Valentina Mexican Hot Sauce (aka the big bottle of cheap stuff + on the hispanic aisle) +- 2 sticks of butter ## Instructions -1. Start with a medium sized pot, and melt the butter over medium heat. -2. Once melted, add Franks and Valentina to the pot, and stir until it - starts to simmer. -3. I'm a fan of Pioneer Woman's cooking method of frying then baking, - so substitue the sauce and cook the wings according to her recipe: - . +1. Start with a medium sized pot, and melt the butter over medium heat. +2. Once melted, add Franks and Valentina to the pot, and stir until it + starts to simmer. +3. I'm a fan of Pioneer Woman's cooking method of frying then baking, + so substitue the sauce and cook the wings according to her recipe: + . diff --git a/SAUCES/jcase_LowCarb_Alabama_white_BBQ_sauce.md b/SAUCES/jcase_LowCarb_Alabama_white_BBQ_sauce.md index a2ce1ae..6df87e6 100644 --- a/SAUCES/jcase_LowCarb_Alabama_white_BBQ_sauce.md +++ b/SAUCES/jcase_LowCarb_Alabama_white_BBQ_sauce.md @@ -5,14 +5,14 @@ on wings. ## Ingredients -- 1 Cup Mayonnaise -- 1 Tbps Ground Black Pepper -- 1 Tbps Salt -- 3 Tbps Lemon Juice -- 3 Tbps White Vinegar -- 2 Tbps splenda +- 1 Cup Mayonnaise +- 1 Tbps Ground Black Pepper +- 1 Tbps Salt +- 3 Tbps Lemon Juice +- 3 Tbps White Vinegar +- 2 Tbps splenda ## Instructions -1. Place all ingredients in blender -2. Blend well +1. Place all ingredients in blender +2. Blend well diff --git a/SAUCES/jcase_LowCarb_NorthCarolina_BBQ_sauce.md b/SAUCES/jcase_LowCarb_NorthCarolina_BBQ_sauce.md index 5861310..4eec616 100644 --- a/SAUCES/jcase_LowCarb_NorthCarolina_BBQ_sauce.md +++ b/SAUCES/jcase_LowCarb_NorthCarolina_BBQ_sauce.md @@ -6,19 +6,19 @@ sauce, and works great right on top of your pulled pork. ## Ingredients -- 16 oz Tomato Sauce -- 4 oz Apple Cider Vinegar -- 60 g Stevia -- 3 Tbps Worcestershire Sauce -- 2 Tbps Dijon Mustard -- 2 Tbps Chipotle Tabasco Sauce -- 1 Tbps Lemon Juice -- 1 Tbps Ground Black Pepper -- 1 Pnch Salt +- 16 oz Tomato Sauce +- 4 oz Apple Cider Vinegar +- 60 g Stevia +- 3 Tbps Worcestershire Sauce +- 2 Tbps Dijon Mustard +- 2 Tbps Chipotle Tabasco Sauce +- 1 Tbps Lemon Juice +- 1 Tbps Ground Black Pepper +- 1 Pnch Salt ## Instructions -1. Mix ingredients into sauce pan -2. Bring to simmer over medium heat and reduce the heat. -3. Allow sauce to reduce to your preferred consistency, it should be - somewhat thin. +1. Mix ingredients into sauce pan +2. Bring to simmer over medium heat and reduce the heat. +3. Allow sauce to reduce to your preferred consistency, it should be + somewhat thin. diff --git a/SIDES/_section.md b/SIDES/_section.md index babed21..14652be 100644 --- a/SIDES/_section.md +++ b/SIDES/_section.md @@ -1,5 +1,5 @@ # Sides -- Sort of like appetizers but you eat them with other foods +- Sort of like appetizers but you eat them with other foods ![foods](https://images.pexels.com/photos/1475/food-vegetables-italian-restaurant.jpg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb) diff --git a/SIDES/dis0wn-Whiskey_Cranberry_Brussel_Sprouts.md b/SIDES/dis0wn-Whiskey_Cranberry_Brussel_Sprouts.md index 5c76fe8..f74d5cf 100644 --- a/SIDES/dis0wn-Whiskey_Cranberry_Brussel_Sprouts.md +++ b/SIDES/dis0wn-Whiskey_Cranberry_Brussel_Sprouts.md @@ -7,14 +7,14 @@ sprouts, this might be your opportunity to change your mind. Feeds 5-6 ## Ingredients -- 1 pkg frozen brussel sprouts or 12-14 fresh brussel sprouts -- 1/2 cup dried cranberries -- 2 tbsp salt -- 4 tbps Butter -- 2-3 tbsp Brown Sugar -- 1 shot of your favorite whiskey/bourbon -- Torch or stick lighter. Don't use a regular lighter. You'll lose arm - hair. +- 1 pkg frozen brussel sprouts or 12-14 fresh brussel sprouts +- 1/2 cup dried cranberries +- 2 tbsp salt +- 4 tbps Butter +- 2-3 tbsp Brown Sugar +- 1 shot of your favorite whiskey/bourbon +- Torch or stick lighter. Don't use a regular lighter. You'll lose arm + hair. ## Instructions @@ -22,31 +22,31 @@ Prepare your brussel sprouts depending on the option you picked above: ### Frozen (quick option) -- Nuke 'em as directed on the package. -- Melt helf the butter in frying pan or wok -- Increase heat to Medium and add sprouts. Too much heat will burn the - butter. -- Let them brown a little on the outside then proceed to step 2. +- Nuke 'em as directed on the package. +- Melt helf the butter in frying pan or wok +- Increase heat to Medium and add sprouts. Too much heat will burn the + butter. +- Let them brown a little on the outside then proceed to step 2. ### Fresh (tasty option) -- Cut sprouts in half and place them on a baking sheet with cut side - up. Cover with foil for easy cleanup. -- Drizzle olive oil over each and sprinkle with a light layer of salt. -- Bake @ 400F for 20-30 min. Add more time (\~10min) if you like them - crispy! -- Melt half the butter in a frying pan or wok on Low-Medium heat. Too - much heat will burn the butter. -- Add the sprouts and proceed to Step 2. - -1. Add brown sugar, dried cranberries, and remaining 2 tbps of butter. -2. Stir on Low-Medium heat until all the brown sugar has disolved. -3. Toss in the shot of whiskey. Count to 3. Stand back and light it. - The flames will go out once all the alcohol has burned off. (Make - sure the cooking area is free of dry material with a high surface - area. It'll be tough trying to explain that one to the fire - marshall.) -4. Now that the fire is out, transfer the sprouts and the Vorpal Glaze - of Awesomeness to a serving dish or directly to the plate. +- Cut sprouts in half and place them on a baking sheet with cut side + up. Cover with foil for easy cleanup. +- Drizzle olive oil over each and sprinkle with a light layer of salt. +- Bake @ 400F for 20-30 min. Add more time (\~10min) if you like them + crispy! +- Melt half the butter in a frying pan or wok on Low-Medium heat. Too + much heat will burn the butter. +- Add the sprouts and proceed to Step 2. + +1. Add brown sugar, dried cranberries, and remaining 2 tbps of butter. +2. Stir on Low-Medium heat until all the brown sugar has disolved. +3. Toss in the shot of whiskey. Count to 3. Stand back and light it. + The flames will go out once all the alcohol has burned off. (Make + sure the cooking area is free of dry material with a high surface + area. It'll be tough trying to explain that one to the fire + marshall.) +4. Now that the fire is out, transfer the sprouts and the Vorpal Glaze + of Awesomeness to a serving dish or directly to the plate. Great with red meat and red wine. diff --git a/SIDES/iHeartMalware_fermented_cranberry_relish.md b/SIDES/iHeartMalware_fermented_cranberry_relish.md index 319c043..9f676dd 100644 --- a/SIDES/iHeartMalware_fermented_cranberry_relish.md +++ b/SIDES/iHeartMalware_fermented_cranberry_relish.md @@ -10,35 +10,35 @@ accordingly. ## Ingredients -- 18 Cups cranberries, whole -- 6 large oranges -- 3 Cups walnuts -- 3 Cups honey -- 2 Cups white grape juice -- 2 Cups red grape juice -- 2 tbsp cinnamon -- 4 tbsp lemon juice -- 2 tbsp salt -- Fermenting crock +- 18 Cups cranberries, whole +- 6 large oranges +- 3 Cups walnuts +- 3 Cups honey +- 2 Cups white grape juice +- 2 Cups red grape juice +- 2 tbsp cinnamon +- 4 tbsp lemon juice +- 2 tbsp salt +- Fermenting crock ## Instructions -1. Get a big bowl. A really big bowl. -2. Slice the oranges, and process them whole in a food processor. - Process the cranberries and walnuts as well. -3. If the processor is un-happy, feel free to add the juices and / or - honey. Add to bowl. -4. Once processed, pour into the bowl. This will happen in several - batches. -5. Add the rest of the ingredients. -6. Once done, ferment for 2-4 days, or until fermentation starts. I - like to use these kimchi fermenters, as it limits the chances of - mold: - -7. Once started, toss it into the fridge to taste. 1-2 weeks is usually - the magic time, then it can be removed from the fermenting vessel - and added to containers. Fermented foods taste better with age, and - we've eaten this 3 months after making the original batch. +1. Get a big bowl. A really big bowl. +2. Slice the oranges, and process them whole in a food processor. + Process the cranberries and walnuts as well. +3. If the processor is un-happy, feel free to add the juices and / or + honey. Add to bowl. +4. Once processed, pour into the bowl. This will happen in several + batches. +5. Add the rest of the ingredients. +6. Once done, ferment for 2-4 days, or until fermentation starts. I + like to use these kimchi fermenters, as it limits the chances of + mold: + +7. Once started, toss it into the fridge to taste. 1-2 weeks is usually + the magic time, then it can be removed from the fermenting vessel + and added to containers. Fermented foods taste better with age, and + we've eaten this 3 months after making the original batch. NOTE: Make sure you are comfortable with fermenting before doing this. Do your homework on fermenting and do it safely! Mold == bad. diff --git a/SIDES/iHeartMalware_fermented_sauerkraut.md b/SIDES/iHeartMalware_fermented_sauerkraut.md index 316e98a..a401236 100644 --- a/SIDES/iHeartMalware_fermented_sauerkraut.md +++ b/SIDES/iHeartMalware_fermented_sauerkraut.md @@ -7,27 +7,27 @@ like carrots, ginger, garlic, etc. ## Ingredients -- 2 large heads of lettuce -- 1/4 cup kosher salt (may need a little more) -- 1 tbsp caraway +- 2 large heads of lettuce +- 1/4 cup kosher salt (may need a little more) +- 1 tbsp caraway ## Instructions -1. Clean and cut the cabbage into 1 inch squares. Put into a bowl and - rinse. -2. If the cabbage is a little damp, that's okay. Add salt and caraway, - and start to knead the cabbage, 5-10 minutes. The cabbage will wilt - to half the size or more. You can use a stand mixer with a dough - hook to make this part go faster. (And save your arms) -3. Pour the cabbage (juices included) into a fermenting crock. Ferment - for 24 hours. -4. Check after the first 24 hours. If there is not enough brine, add 1 - tbsp to 2 cups of water, then add to the mixture to cover the - cabbage. -5. Ferment! I like mine fermenting for a week, then put it in the - fridge to sour up. -6. Want to make it really good? Experiment with root vegetables. I've - had success with beets, carrots, ginger, etc. +1. Clean and cut the cabbage into 1 inch squares. Put into a bowl and + rinse. +2. If the cabbage is a little damp, that's okay. Add salt and caraway, + and start to knead the cabbage, 5-10 minutes. The cabbage will wilt + to half the size or more. You can use a stand mixer with a dough + hook to make this part go faster. (And save your arms) +3. Pour the cabbage (juices included) into a fermenting crock. Ferment + for 24 hours. +4. Check after the first 24 hours. If there is not enough brine, add 1 + tbsp to 2 cups of water, then add to the mixture to cover the + cabbage. +5. Ferment! I like mine fermenting for a week, then put it in the + fridge to sour up. +6. Want to make it really good? Experiment with root vegetables. I've + had success with beets, carrots, ginger, etc. NOTE: Make sure you are comfortable with fermenting before doing this. Do your homework on fermenting and do it safely! Mold == bad. diff --git a/SIDES/thedevilsvoice_jangajji.md b/SIDES/thedevilsvoice_jangajji.md index 7a1c17e..a177c58 100644 --- a/SIDES/thedevilsvoice_jangajji.md +++ b/SIDES/thedevilsvoice_jangajji.md @@ -7,56 +7,56 @@ made by pickling vegetables. ## Ingredients -- Boil a reusable glass jar with airtight bail & seal closure for 5 or - 10 minutes to sterilize it. -- Set it aside. +- Boil a reusable glass jar with airtight bail & seal closure for 5 or + 10 minutes to sterilize it. +- Set it aside. ### Fresh Vegetables -- 2 medium white onion -- 2 medium cucumber -- several whole Cheongyang chili peppers - - You can substitue or include serranos, ghost pepper, or whatever - your favorite peppers are. -- Cucumber -- optional: - - radish - - garlic cloves +- 2 medium white onion +- 2 medium cucumber +- several whole Cheongyang chili peppers + - You can substitue or include serranos, ghost pepper, or whatever + your favorite peppers are. +- Cucumber +- optional: + - radish + - garlic cloves ### Infused Soy Sauce -- 1/2 cup Soy Sauce -- 1/2 cup Vinegar -- 3/4 cup Sugar -- 1 & 1/4 cup Water +- 1/2 cup Soy Sauce +- 1/2 cup Vinegar +- 3/4 cup Sugar +- 1 & 1/4 cup Water ## Instructions ### Prepare vegetables -1. Be sure you remember to sterilize the jar as described above. -2. Cut your vegetables into bite-sized pieces. +1. Be sure you remember to sterilize the jar as described above. +2. Cut your vegetables into bite-sized pieces. ```{=html} ``` -a. Cucumbers in round slices. -b. Deseeding peppers can reduce heat. +a. Cucumbers in round slices. +b. Deseeding peppers can reduce heat. ```{=html} ``` -3. Toss the vegetables in a bowl to distribute evenly, then transfer - into jar. -4. Set these aside for now. +3. Toss the vegetables in a bowl to distribute evenly, then transfer + into jar. +4. Set these aside for now. ### Prepare Sauce -1. Put infused sauce ingredients into a pot. -2. Stir a bit to make sure sugar dissolves while bringing to a boil. -3. When boiling starts, count to ten and remove from heat. -4. Pour the liquid into the jar submerging the vegetables. -5. Close the lid and leave on counter for 24 hours. Then put into - refridgerator to cool. +1. Put infused sauce ingredients into a pot. +2. Stir a bit to make sure sugar dissolves while bringing to a boil. +3. When boiling starts, count to ten and remove from heat. +4. Pour the liquid into the jar submerging the vegetables. +5. Close the lid and leave on counter for 24 hours. Then put into + refridgerator to cool. Serve with white rice, a fried egg, and some gochujang sauce. diff --git a/SNACKS/WireGhost_Eclectic_Freedom_Fries.md b/SNACKS/WireGhost_Eclectic_Freedom_Fries.md index 20068ec..d7dfd88 100644 --- a/SNACKS/WireGhost_Eclectic_Freedom_Fries.md +++ b/SNACKS/WireGhost_Eclectic_Freedom_Fries.md @@ -4,31 +4,31 @@ Makes a very diverse and healthy snack. ## Ingredients -- x2 Potatoes -- x5 large size Parsnips -- x5 Large size Carrots -- Olive oil (or Vegetable Oil) -- 1 Tablespoon Sea Salt -- 1 12oz (or more) tub of Sour Cream -- Melted Cheddar Cheese (4oz) should suffice -- Real Bacon Bits (Optional for Vegetarian/Vegans) -- X2 2ft length cuts of Aluminium Foil (more lengths at x1 cut per - person) +- x2 Potatoes +- x5 large size Parsnips +- x5 Large size Carrots +- Olive oil (or Vegetable Oil) +- 1 Tablespoon Sea Salt +- 1 12oz (or more) tub of Sour Cream +- Melted Cheddar Cheese (4oz) should suffice +- Real Bacon Bits (Optional for Vegetarian/Vegans) +- X2 2ft length cuts of Aluminium Foil (more lengths at x1 cut per + person) ## Directions -- Skin the Potatoes, Parsnips & Carrots -- Cut Potatoes, Parsnips & Carrots into French Frye sizes as best as - possible. -- Lightly oil (or brush) them with Olive Oil (or Vegetable Oil) -- Place on flat baking sheet. -- Dust the sheet evenly with 1 Tablespoon Sea Salt -- Bake in oven until slightly crisp and tender, (20-30 minutes) at 350 - F -- Fold x1 2ft length aluminum foil sheet into a triangular hat. -- Invert and fill with the baked veggies. -- Top with Sour Cream, Melted Cheddar and Bacon Bits to taste. -- Take 2nd length of aluminum foil and fold just as similarly into a - triangle hat. -- Wear this hat. - - (Optional: Play loudly the Grateful Dead US Blues) +- Skin the Potatoes, Parsnips & Carrots +- Cut Potatoes, Parsnips & Carrots into French Frye sizes as best as + possible. +- Lightly oil (or brush) them with Olive Oil (or Vegetable Oil) +- Place on flat baking sheet. +- Dust the sheet evenly with 1 Tablespoon Sea Salt +- Bake in oven until slightly crisp and tender, (20-30 minutes) at 350 + F +- Fold x1 2ft length aluminum foil sheet into a triangular hat. +- Invert and fill with the baked veggies. +- Top with Sour Cream, Melted Cheddar and Bacon Bits to taste. +- Take 2nd length of aluminum foil and fold just as similarly into a + triangle hat. +- Wear this hat. + - (Optional: Play loudly the Grateful Dead US Blues) diff --git a/SNACKS/_section.md b/SNACKS/_section.md index 579e51d..799f2ef 100644 --- a/SNACKS/_section.md +++ b/SNACKS/_section.md @@ -1,5 +1,5 @@ # Snacks -- Nom noms to be consumed between bigger noms. +- Nom noms to be consumed between bigger noms. ![foods](https://images.pexels.com/photos/122434/popcorn-cinema-ticket-film-122434.jpeg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb) diff --git a/SNACKS/aaron_the_king-chicken_parm_nachos.md b/SNACKS/aaron_the_king-chicken_parm_nachos.md index 0c2e046..d57f6ad 100644 --- a/SNACKS/aaron_the_king-chicken_parm_nachos.md +++ b/SNACKS/aaron_the_king-chicken_parm_nachos.md @@ -4,34 +4,34 @@ Turn your leftover chicken parm into an exciting midnight snack! ## Ingredients -- Leftover chicken parm -- Shredded Cheese of your choice, one handful per layer -- Tortilla chips, half a handful per layer -- (optional) Various 'fun enhancers' including but not limited to: - - Ground Beef, three pinches per layer - - Sliced Olives, one pinch per layer - - Diced Bell Pepper, two pinches per layer - - Salsa, three teaspoons per layer +- Leftover chicken parm +- Shredded Cheese of your choice, one handful per layer +- Tortilla chips, half a handful per layer +- (optional) Various 'fun enhancers' including but not limited to: + - Ground Beef, three pinches per layer + - Sliced Olives, one pinch per layer + - Diced Bell Pepper, two pinches per layer + - Salsa, three teaspoons per layer ## Instructions -1. Arrange your chips on top of the chicken parm so that it is - completely covered -2. Sprinkle your shredded cheese over the tortilla chips so that - there's an even distribution -3. Sprinkle your fun enhancers on the cheese (if any) -4. Microwave until the cheese is melted to your satisfaction +1. Arrange your chips on top of the chicken parm so that it is + completely covered +2. Sprinkle your shredded cheese over the tortilla chips so that + there's an even distribution +3. Sprinkle your fun enhancers on the cheese (if any) +4. Microwave until the cheese is melted to your satisfaction ## Tips n Tricks -- This snack is best prepared and served between 23:00 and 04:00 - during an all nighter when you're getting hungry and want to take a - short relaxing break. -- Don't be afraid of being too boring if you don't have some fun - enhancers. Simply heating up your chicken parm and eating it plain - would be boring. We're making nachos! -- After you've finished your nachos just pick up the chicken parm and - eat it with your hands. +- This snack is best prepared and served between 23:00 and 04:00 + during an all nighter when you're getting hungry and want to take a + short relaxing break. +- Don't be afraid of being too boring if you don't have some fun + enhancers. Simply heating up your chicken parm and eating it plain + would be boring. We're making nachos! +- After you've finished your nachos just pick up the chicken parm and + eat it with your hands. ::: images ../images/aaron_the_king-chicken_parm_nachos_0.jpg diff --git a/SNACKS/hardwaterhacker_smoked_whitefish.md b/SNACKS/hardwaterhacker_smoked_whitefish.md index 2f467c4..78a2914 100644 --- a/SNACKS/hardwaterhacker_smoked_whitefish.md +++ b/SNACKS/hardwaterhacker_smoked_whitefish.md @@ -6,22 +6,22 @@ pike. ## Ingredients -- 6-8 whitefish fillets, skin on -- 1 c (180 g) brown sugar, packed -- 1 c (300 g) Morton pickling salt -- 1/8 c (14 g) coarse ground black pepper -- 1/4 c (39 g) granulated garlic powder -- 8 bay leaves -- 2 Tbsp (14 g) onion powder -- 1 gallon (3.8 L) water +- 6-8 whitefish fillets, skin on +- 1 c (180 g) brown sugar, packed +- 1 c (300 g) Morton pickling salt +- 1/8 c (14 g) coarse ground black pepper +- 1/4 c (39 g) granulated garlic powder +- 8 bay leaves +- 2 Tbsp (14 g) onion powder +- 1 gallon (3.8 L) water ## Preparation -1. Rinse fillets well in cold water -2. Combine dry ingredients and 1 quart (950 mL) water in a mixing bowl. - Mix until salt and sugar are completely dissolved. -3. Add brine to a food grade container with remaining water. Mix well. -4. Add fillets to brine. +1. Rinse fillets well in cold water +2. Combine dry ingredients and 1 quart (950 mL) water in a mixing bowl. + Mix until salt and sugar are completely dissolved. +3. Add brine to a food grade container with remaining water. Mix well. +4. Add fillets to brine. Place brined fillets in refrigerator or cooler packed with ice for 16 hours. A longer brine time will result in saltier fish. Thinner fillets diff --git a/SNACKS/iHeartMalwares_kettle_corn.md b/SNACKS/iHeartMalwares_kettle_corn.md index 01ac0d2..ba3f116 100644 --- a/SNACKS/iHeartMalwares_kettle_corn.md +++ b/SNACKS/iHeartMalwares_kettle_corn.md @@ -9,29 +9,29 @@ goes by fast, and you don't want molten sugary popcorn going everywhere. ## Ingredients -- 1/4 cup vegetable oil (or other high temperature oil) -- 1/2 cup popcorn kernels + 3 kernels -- 1/3 cup sugar -- 3/4 teaspoon salt -- Large bowl for popcorn -- Stiring utensils +- 1/4 cup vegetable oil (or other high temperature oil) +- 1/2 cup popcorn kernels + 3 kernels +- 1/3 cup sugar +- 3/4 teaspoon salt +- Large bowl for popcorn +- Stiring utensils ## Instructions -1. Take a skillet with a cover and put it on the stove top. Pour the - oil in with 3 kernels, and put the temperature to high. Cover with a - lid -2. Once the three kernels pop, the oil is hot enough for the others. - Pour the other kernels in, and quickly cover, giving it a quick - shake to coat the kernels. -3. About 30 seconds in, the kernels will start popping. Once a few have - started to pop, sprinkle the sugar in, cover, and give it a shake. -4. When the popcorn is mostly popped, pour it out into the large bowl, - and begin to sprinkle the salt on and mix while it's hot (with - utensils). The popcorn will be sticky, but will harden up as it - cools. You may need more salt for your taste. -5. Enjoy -6. Note: Getting the timing down for the sugar may take a few times, - and I have burned my fair share of sugar getting this recipe right. - If you're using larger kernels it takes more time to pop, smaller - kernels take less time. +1. Take a skillet with a cover and put it on the stove top. Pour the + oil in with 3 kernels, and put the temperature to high. Cover with a + lid +2. Once the three kernels pop, the oil is hot enough for the others. + Pour the other kernels in, and quickly cover, giving it a quick + shake to coat the kernels. +3. About 30 seconds in, the kernels will start popping. Once a few have + started to pop, sprinkle the sugar in, cover, and give it a shake. +4. When the popcorn is mostly popped, pour it out into the large bowl, + and begin to sprinkle the salt on and mix while it's hot (with + utensils). The popcorn will be sticky, but will harden up as it + cools. You may need more salt for your taste. +5. Enjoy +6. Note: Getting the timing down for the sugar may take a few times, + and I have burned my fair share of sugar getting this recipe right. + If you're using larger kernels it takes more time to pop, smaller + kernels take less time. diff --git a/admin/bin/convert_rst_md.sh b/admin/bin/convert_rst_md.sh index 33cddad..73d6d79 100755 --- a/admin/bin/convert_rst_md.sh +++ b/admin/bin/convert_rst_md.sh @@ -5,10 +5,27 @@ # SPDX-License-Identifier: GPL-3.0-or-later # v0.1 02/25/2022 Maintainer script +# v0.2 05/13/2024 Remove spaces after conversion + +set -euo pipefail +IFS=$'\n\t' + +# --- Some config Variables ---------------------------------------- +MY_DATE=$(date '+%Y-%m-%d-%H') FILES=*.rst +if [ ! -n "${FILES}" ]; then + for f in $FILES; do + filename="${f%.*}" + echo "Converting ${f} to ${filename}.md" + $(pandoc $f -f rst -t markdown -o ${filename}.md) + done +fi + +FILES=*.md for f in $FILES; do filename="${f%.*}" - echo "Converting $f to $filename.md" - $(pandoc $f -f rst -t markdown -o $filename.md) + echo "Removing spaces from ${filename}.md" + cat ${filename}.md | tr -s ' ' > /tmp/tmp_file + mv /tmp/tmp_file ${filename}.md done diff --git a/admin/bin/format_shell.sh b/admin/bin/format_shell.sh index 1e388fa..8d2c1f7 100755 --- a/admin/bin/format_shell.sh +++ b/admin/bin/format_shell.sh @@ -12,3 +12,6 @@ IFS=$'\n\t' shfmt -i 2 -l -w ../bootstrap.sh shfmt -i 2 -l -w convert_rst_md.sh shfmt -i 2 -l -w generate_book.sh + + + From 38b64a10729b3403849d6d4da1cc1259d0084484 Mon Sep 17 00:00:00 2001 From: franklin <2730246+devsecfranklin@users.noreply.github.com> Date: Tue, 14 May 2024 01:16:35 -0600 Subject: [PATCH 06/10] convert all rst to md --- SNACKS/WireGhost_Eclectic_Freedom_Fries.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/SNACKS/WireGhost_Eclectic_Freedom_Fries.md b/SNACKS/WireGhost_Eclectic_Freedom_Fries.md index d7dfd88..8225cfe 100644 --- a/SNACKS/WireGhost_Eclectic_Freedom_Fries.md +++ b/SNACKS/WireGhost_Eclectic_Freedom_Fries.md @@ -23,8 +23,7 @@ Makes a very diverse and healthy snack. - Lightly oil (or brush) them with Olive Oil (or Vegetable Oil) - Place on flat baking sheet. - Dust the sheet evenly with 1 Tablespoon Sea Salt -- Bake in oven until slightly crisp and tender, (20-30 minutes) at 350 - F +- Bake in oven until slightly crisp and tender, (20-30 minutes) at 350F - Fold x1 2ft length aluminum foil sheet into a triangular hat. - Invert and fill with the baked veggies. - Top with Sour Cream, Melted Cheddar and Bacon Bits to taste. From ab3657ed47b90ef53bbd1f0ece245b9491326dd4 Mon Sep 17 00:00:00 2001 From: franklin <2730246+devsecfranklin@users.noreply.github.com> Date: Tue, 14 May 2024 01:20:32 -0600 Subject: [PATCH 07/10] convert all rst to md --- DESSERTS/Breaking_Bad_Blackhat_Brownies.md | 2 +- .../ashmastaflash-grandpappys_turnt_juice.md | 2 +- DRINKS/b1ack0wl-holiday-drink.md | 99 ++++++++++--------- ENTREES/BenHeise_Bangers_and_Mash.md | 3 - ENTREES/aaron_the_king_dishwasher_salmon.md | 2 +- ENTREES/elegin_balsamic_tempeh.md | 7 +- ...mzkl_caramelized-onion-mushroom-stuffin.md | 7 +- SIDES/thedevilsvoice_jangajji.md | 12 +-- 8 files changed, 64 insertions(+), 70 deletions(-) diff --git a/DESSERTS/Breaking_Bad_Blackhat_Brownies.md b/DESSERTS/Breaking_Bad_Blackhat_Brownies.md index de6399b..2892102 100644 --- a/DESSERTS/Breaking_Bad_Blackhat_Brownies.md +++ b/DESSERTS/Breaking_Bad_Blackhat_Brownies.md @@ -43,7 +43,7 @@ nut allergies) 6. Add Buttermilk, Eggs & Vanilla. Stir Until smooth. 7. Pour into a greased baking pan of suitable shape. -## Making the Frosting: +## Making the Frosting 1. Add Cocoa & Buttermilk to Butter and bring to a boil in a medium sauce pan. 2. Add Sugar & Vanilla, stirring until smooth consistency. diff --git a/DRINKS/ashmastaflash-grandpappys_turnt_juice.md b/DRINKS/ashmastaflash-grandpappys_turnt_juice.md index 105e624..388f1b8 100644 --- a/DRINKS/ashmastaflash-grandpappys_turnt_juice.md +++ b/DRINKS/ashmastaflash-grandpappys_turnt_juice.md @@ -1,6 +1,6 @@ # Grandpappy's Turnt Juice -## A cocktail inspired by October in Southeast Tennessee. +A cocktail inspired by October in Southeast Tennessee. There's a chill in the air. The smell of the season's first blaze in the fireplace is on the breeze. Winter is coming to the Appalachian diff --git a/DRINKS/b1ack0wl-holiday-drink.md b/DRINKS/b1ack0wl-holiday-drink.md index e1eb3ec..9712c29 100644 --- a/DRINKS/b1ack0wl-holiday-drink.md +++ b/DRINKS/b1ack0wl-holiday-drink.md @@ -17,7 +17,7 @@ - Peppermint Schnapps \[Suggested\] - Whatever just don't fuck it up -### (Optional) +### Optional Ingredients - Whipped Cream - Cinnamon powder @@ -53,52 +53,53 @@ - Add sprinkles!! :D - Enjoy! -: +``` - o$$$$$$oo - o$" "$oo - $ o""""$o "$o - "$ o "o "o $ - "$ $o $ $ o$ - "$ o$"$ o$ - "$ooooo$$ $ o$ - o$ """ $ " $$$ " $ - o$ $o $$" " " - $$ $ " $ $$$o"$ o o$" - $" o "" $ $" " o" $$ - $o " " $ o$" o" o$" - "$o $$ $ o" o$$" - ""o$o"$" $oo" o$" - o$$ $ $$$ o$$ - o" o oo"" "" "$o - o$o" "" $ - $" " o" " " " "o - $$ " " o$ o$o " $ - o$ $ $ o$$ " " "" - o $ $" " "o o$ - $ o $o$oo$"" - $o $ o o o"$$ - $o o $ $ "$o - $o $ o $ $ "o - $ $ "o $ "o"$o - $ " o $ o $$ - $o$o$o$o$$o$$$o$$o$o$$o$$o$$$o$o$o$o$o$o$o$o$o$ooo - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$o - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ " $$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ "$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ - $$$$$$$$$$$$$$$$$$nom$$$$$$$$$$$$$$$$$$$$$$ o$$$$" - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ooooo$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$""""" - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ - $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" - "$o$o$o$o$o$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" - "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" - "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$""" - """"""""""""""""""""""""""""""""""""""""""""""""""""" + o$$$$$$oo + o$" "$oo + $ o""""$o "$o + "$ o "o "o $ + "$ $o $ $ o$ + "$ o$"$ o$ + "$ooooo$$ $ o$ + o$ """ $ " $$$ " $ + o$ $o $$" " " + $$ $ " $ $$$o"$ o o$" + $" o "" $ $" " o" $$ + $o " " $ o$" o" o$" + "$o $$ $ o" o$$" + ""o$o"$" $oo" o$" + o$$ $ $$$ o$$ + o" o oo"" "" "$o + o$o" "" $ + $" " o" " " " "o + $$ " " o$ o$o " $ + o$ $ $ o$$ " " "" + o $ $" " "o o$ + $ o $o$oo$"" + $o $ o o o"$$ + $o o $ $ "$o + $o $ o $ $ "o + $ $ "o $ "o"$o + $ " o $ o $$ + $o$o$o$o$$o$$$o$$o$o$$o$$o$$$o$o$o$o$o$o$o$o$o$ooo + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$o + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ " $$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ "$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$ + $$$$$$$$$$$$$$$$$$nom$$$$$$$$$$$$$$$$$$$$$$ o$$$$" + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ooooo$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$""""" + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ + $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" + "$o$o$o$o$o$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" + "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$" + "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$""" + """"""""""""""""""""""""""""""""""""""""""""""""""""" +``` diff --git a/ENTREES/BenHeise_Bangers_and_Mash.md b/ENTREES/BenHeise_Bangers_and_Mash.md index 85f790b..8901164 100644 --- a/ENTREES/BenHeise_Bangers_and_Mash.md +++ b/ENTREES/BenHeise_Bangers_and_Mash.md @@ -62,9 +62,6 @@ Americans). this temperature), turn the oven off, put the bangers back in to warm because other projects are taking up your kitchen counter space and in hindsight you probably should've cleared those off first. - -\" - 8. Look for a colander for your potatoes, fail to find one, realize colanders are probably how the French spy on most Americans and that you're better off without one. Carefully drain the water from the diff --git a/ENTREES/aaron_the_king_dishwasher_salmon.md b/ENTREES/aaron_the_king_dishwasher_salmon.md index 78a308f..e1527a8 100644 --- a/ENTREES/aaron_the_king_dishwasher_salmon.md +++ b/ENTREES/aaron_the_king_dishwasher_salmon.md @@ -18,7 +18,7 @@ Poached salmon done with your dishes! 5. Run the dishwasher 6. Unwrap the salmon and enjoy -## Tips n' Tricks! +## Tips n' Tricks - Serve the salmon on some of your freshly cleaned dishes. - This recipie is great for dinner parties. diff --git a/ENTREES/elegin_balsamic_tempeh.md b/ENTREES/elegin_balsamic_tempeh.md index 1635de7..8cbb719 100644 --- a/ENTREES/elegin_balsamic_tempeh.md +++ b/ENTREES/elegin_balsamic_tempeh.md @@ -5,9 +5,10 @@ you can see the markup for it and use this as a template ## Ingredients --1 package of tempeh (8oz) -1/2 cup of balsamic vinegar (125mL) -4 -teaspoons tamari or soy sauce (20mL) -1 tablespoon maple syrup (15mL) -1 -tablespoon olive oil (15mL) +- 1 package of tempeh (8oz) -1/2 cup of balsamic vinegar (125mL) +- 4 teaspoons tamari or soy sauce (20mL) +- 1 tablespoon maple syrup (15mL) +- 1 tablespoon olive oil (15mL) ## Instructions diff --git a/ENTREES/wimzkl_caramelized-onion-mushroom-stuffin.md b/ENTREES/wimzkl_caramelized-onion-mushroom-stuffin.md index 4834fff..ed54699 100644 --- a/ENTREES/wimzkl_caramelized-onion-mushroom-stuffin.md +++ b/ENTREES/wimzkl_caramelized-onion-mushroom-stuffin.md @@ -43,7 +43,10 @@ Simple, hot, and tasty stuff to share with pals. ## How to make it -### Croutons - if you choose to make the croutons yourself, it's easy, delicious, and pretty satisfying to do: +### Croutons + +If you choose to make the croutons yourself, it's easy, delicious, and +pretty satisfying to do: - Cut your favorite bread into very large crouton-sized chunks. - Toss them in a big mixing bowl with some olive oil, salt, and @@ -53,7 +56,7 @@ Simple, hot, and tasty stuff to share with pals. golden, and crisp, 10 minutes or so. - When they're done, set them aside. -### The Stuffin' +### The Stuffin 1. Melt the 6 tablespoons of butter in the large non-stick skillet over medium heat. diff --git a/SIDES/thedevilsvoice_jangajji.md b/SIDES/thedevilsvoice_jangajji.md index a177c58..b281eb5 100644 --- a/SIDES/thedevilsvoice_jangajji.md +++ b/SIDES/thedevilsvoice_jangajji.md @@ -36,16 +36,8 @@ made by pickling vegetables. 1. Be sure you remember to sterilize the jar as described above. 2. Cut your vegetables into bite-sized pieces. - -```{=html} - -``` -a. Cucumbers in round slices. -b. Deseeding peppers can reduce heat. - -```{=html} - -``` + 1. Cucumbers in round slices. + 2. Deseeding peppers can reduce heat. 3. Toss the vegetables in a bowl to distribute evenly, then transfer into jar. 4. Set these aside for now. From 6e9880b324002754653a3ef4fe58abee58cab0db Mon Sep 17 00:00:00 2001 From: franklin <2730246+devsecfranklin@users.noreply.github.com> Date: Tue, 14 May 2024 01:24:29 -0600 Subject: [PATCH 08/10] convert all rst to md --- SIDES/thedevilsvoice_jangajji.md | 6 +++--- SNACKS/WireGhost_Eclectic_Freedom_Fries.md | 8 +++----- SNACKS/aaron_the_king-chicken_parm_nachos.md | 8 ++++---- 3 files changed, 10 insertions(+), 12 deletions(-) diff --git a/SIDES/thedevilsvoice_jangajji.md b/SIDES/thedevilsvoice_jangajji.md index b281eb5..54d7f98 100644 --- a/SIDES/thedevilsvoice_jangajji.md +++ b/SIDES/thedevilsvoice_jangajji.md @@ -16,12 +16,12 @@ made by pickling vegetables. - 2 medium white onion - 2 medium cucumber - several whole Cheongyang chili peppers - - You can substitue or include serranos, ghost pepper, or whatever +- You can substitue or include serranos, ghost pepper, or whatever your favorite peppers are. - Cucumber - optional: - - radish - - garlic cloves +- radish +- garlic cloves ### Infused Soy Sauce diff --git a/SNACKS/WireGhost_Eclectic_Freedom_Fries.md b/SNACKS/WireGhost_Eclectic_Freedom_Fries.md index 8225cfe..96fd713 100644 --- a/SNACKS/WireGhost_Eclectic_Freedom_Fries.md +++ b/SNACKS/WireGhost_Eclectic_Freedom_Fries.md @@ -18,8 +18,7 @@ Makes a very diverse and healthy snack. ## Directions - Skin the Potatoes, Parsnips & Carrots -- Cut Potatoes, Parsnips & Carrots into French Frye sizes as best as - possible. +- Cut Potatoes, Parsnips & Carrots into French Frye sizes as best as possible. - Lightly oil (or brush) them with Olive Oil (or Vegetable Oil) - Place on flat baking sheet. - Dust the sheet evenly with 1 Tablespoon Sea Salt @@ -27,7 +26,6 @@ Makes a very diverse and healthy snack. - Fold x1 2ft length aluminum foil sheet into a triangular hat. - Invert and fill with the baked veggies. - Top with Sour Cream, Melted Cheddar and Bacon Bits to taste. -- Take 2nd length of aluminum foil and fold just as similarly into a - triangle hat. +- Take 2nd length of aluminum foil and fold just as similarly into a triangle hat. - Wear this hat. - - (Optional: Play loudly the Grateful Dead US Blues) +- Optional: Play loudly the Grateful Dead US Blues diff --git a/SNACKS/aaron_the_king-chicken_parm_nachos.md b/SNACKS/aaron_the_king-chicken_parm_nachos.md index d57f6ad..446d2d7 100644 --- a/SNACKS/aaron_the_king-chicken_parm_nachos.md +++ b/SNACKS/aaron_the_king-chicken_parm_nachos.md @@ -8,10 +8,10 @@ Turn your leftover chicken parm into an exciting midnight snack! - Shredded Cheese of your choice, one handful per layer - Tortilla chips, half a handful per layer - (optional) Various 'fun enhancers' including but not limited to: - - Ground Beef, three pinches per layer - - Sliced Olives, one pinch per layer - - Diced Bell Pepper, two pinches per layer - - Salsa, three teaspoons per layer +- Ground Beef, three pinches per layer +- Sliced Olives, one pinch per layer +- Diced Bell Pepper, two pinches per layer +- Salsa, three teaspoons per layer ## Instructions From 2dc63be8d8b094f351ed1cc88603481b427a4c52 Mon Sep 17 00:00:00 2001 From: FrankTheTank <2730246+devsecfranklin@users.noreply.github.com> Date: Tue, 14 May 2024 08:41:26 -0600 Subject: [PATCH 09/10] formatting updates --- .../Ajn_point_reyes_brussels_sprout_salad.md | 4 +- APPETIZERS/boredsillys_angry_guacamole.md | 2 +- BREAKFAST/Marler_quick_migas.md | 26 ++--- BREAKFAST/_section.md | 2 +- DESSERTS/keto_marbled_turtle_cheesecake.md | 2 +- DRINKS/b1ack0wl-holiday-drink.md | 8 +- DRINKS/tiptone-mexican-martini.md | 9 +- ENTREES/elegin_balsamic_tempeh.md | 2 +- ENTREES/moonbas3_mississippi_pot_roast.md | 2 +- ENTREES/sl3dges_low-carb_sticky_pork_belly.md | 4 +- SIDES/thedevilsvoice_jangajji.md | 5 +- admin/bin/convert_rst_md.sh | 31 ------ admin/bin/format_shell.sh | 17 ---- admin/bin/formatting.sh | 97 +++++++++++++++++++ 14 files changed, 129 insertions(+), 82 deletions(-) delete mode 100755 admin/bin/convert_rst_md.sh delete mode 100755 admin/bin/format_shell.sh create mode 100755 admin/bin/formatting.sh diff --git a/APPETIZERS/Ajn_point_reyes_brussels_sprout_salad.md b/APPETIZERS/Ajn_point_reyes_brussels_sprout_salad.md index ab5223b..4b6c0b9 100644 --- a/APPETIZERS/Ajn_point_reyes_brussels_sprout_salad.md +++ b/APPETIZERS/Ajn_point_reyes_brussels_sprout_salad.md @@ -22,10 +22,10 @@ the chance. Here goes... mandolin slicer moving in a single direction until only the portion you would have trimmed is left. Consistency is key here; you want light, shredded bits with some thinly sliced core pieces -2. In a large bowl, mix oil, syrup, mustard and blue cheese with a +1. In a large bowl, mix oil, syrup, mustard and blue cheese with a fork, mashing the cheese until smooth and integrated. You could use a food processor, but I find this easier. Balance cheese/oil/mustard to your preference, along with light salt/pepper. -3. Mix in sprouts until you achieve a dressing:sprout ratio you like. +1. Mix in sprouts until you achieve a dressing:sprout ratio you like. We prefer it pretty thin on dressing. Add pears and sprinkle with walnuts. Serve with grilled beef/pork/lamb. diff --git a/APPETIZERS/boredsillys_angry_guacamole.md b/APPETIZERS/boredsillys_angry_guacamole.md index 95fe35f..35c1734 100644 --- a/APPETIZERS/boredsillys_angry_guacamole.md +++ b/APPETIZERS/boredsillys_angry_guacamole.md @@ -22,7 +22,7 @@ Serves 8 to 10 - Sea salt - Garlic powder -## Preparation Tips and Tricks: [*Read this section first*] +## Preparation Tips and Tricks: Read this section first **Cilantro**: Hate destemming cilantro like I do? **BEFORE** you wash it, use a fork to rake down the length of the bunch from the base toward diff --git a/BREAKFAST/Marler_quick_migas.md b/BREAKFAST/Marler_quick_migas.md index 521d9dc..ce582b5 100644 --- a/BREAKFAST/Marler_quick_migas.md +++ b/BREAKFAST/Marler_quick_migas.md @@ -34,22 +34,22 @@ won't blow up if you do it wrong, though I will if you add cheese. ## Instructions 1. Use your favorite skillet for cooking eggs and heat it up -2. Take the chorizo out of it's inedible wrapper (you bought the cheap +1. Take the chorizo out of it's inedible wrapper (you bought the cheap stuff, right? That casing is not edible) and put it in the pan -3. Chop up the chorizo with a spatula while it cooks until you get it +1. Chop up the chorizo with a spatula while it cooks until you get it into small chunks -4. Crack the eggs and put them into a plastic cup -5. Season the eggs with salt and pepper in the cup -6. Stir up the eggs with a fork until they are as blended as you like +1. Crack the eggs and put them into a plastic cup +1. Season the eggs with salt and pepper in the cup +1. Stir up the eggs with a fork until they are as blended as you like them to be -7. When the chorizo is done, pour in the eggs -8. Crush the fritos in the bag, then open the bag over the skillet and +1. When the chorizo is done, pour in the eggs +1. Crush the fritos in the bag, then open the bag over the skillet and dump them in -9. Add the salsa to the skillet -10. Add anything else you want to add to cook with the eggs -11. Stir and chop with the spatula until the eggs are cooked as far as +1. Add the salsa to the skillet +1. Add anything else you want to add to cook with the eggs +1. Stir and chop with the spatula until the eggs are cooked as far as you like them cooked (I like my eggs dry as a Texas drought) -12. Remove skillet from heat and divide accordingly onto plates -13. If you have any fresh veggies you want to add for garnish, now is +1. Remove skillet from heat and divide accordingly onto plates +1. If you have any fresh veggies you want to add for garnish, now is your chance to do so -14. Enjoy! +1. Enjoy! diff --git a/BREAKFAST/_section.md b/BREAKFAST/_section.md index c31f7bd..a9183a6 100644 --- a/BREAKFAST/_section.md +++ b/BREAKFAST/_section.md @@ -2,4 +2,4 @@ - Can't be a daytime hacker without a good breakfast -![](https://images.pexels.com/photos/101533/pexels-photo-101533.jpeg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb) +![breakfast](https://images.pexels.com/photos/101533/pexels-photo-101533.jpeg?w=315&h=237&dpr=2&auto=compress&cs=tinysrgb){.align-center} diff --git a/DESSERTS/keto_marbled_turtle_cheesecake.md b/DESSERTS/keto_marbled_turtle_cheesecake.md index df72793..346f0ce 100644 --- a/DESSERTS/keto_marbled_turtle_cheesecake.md +++ b/DESSERTS/keto_marbled_turtle_cheesecake.md @@ -19,7 +19,7 @@ Recipe: Makes 12 Slices ## Ingredients -**You will need a 9″ Springform pan** +You will need a 9″ Springform pan ### crust diff --git a/DRINKS/b1ack0wl-holiday-drink.md b/DRINKS/b1ack0wl-holiday-drink.md index 9712c29..97122a8 100644 --- a/DRINKS/b1ack0wl-holiday-drink.md +++ b/DRINKS/b1ack0wl-holiday-drink.md @@ -13,9 +13,9 @@ - 1/2 cup of half and half - Coffee (nom) - Liquor of choice: - - Vodka - - Peppermint Schnapps \[Suggested\] - - Whatever just don't fuck it up + - Vodka + - Peppermint Schnapps \[Suggested\] + - Whatever just don't fuck it up ### Optional Ingredients @@ -53,7 +53,7 @@ - Add sprinkles!! :D - Enjoy! -``` +```sh o$$$$$$oo o$" "$oo diff --git a/DRINKS/tiptone-mexican-martini.md b/DRINKS/tiptone-mexican-martini.md index b75aec3..21c613b 100644 --- a/DRINKS/tiptone-mexican-martini.md +++ b/DRINKS/tiptone-mexican-martini.md @@ -1,10 +1,9 @@ # tiptone's Mexican Martini -**Serving Size**: Two Cocktails, **Calories**: Yes, definitely +Serving Size: Two Cocktails +Calories: Yes, definitely -::: {.images alt="Mexican Martini"} -images/tiptone-mexican-martini. -::: +![image](images/tiptone-mexican-martini.jpg){.align-center, .images alt="Mexican Martini"} ## Ingredients @@ -23,4 +22,4 @@ images/tiptone-mexican-martini. 4. Strain into cocktail glasses and garnish with olive(s)\* 5. Enjoy -**mrstiptone insists this should be jalapeno stuffed olives** +mrstiptone insists this should be jalapeno stuffed olives diff --git a/ENTREES/elegin_balsamic_tempeh.md b/ENTREES/elegin_balsamic_tempeh.md index 8cbb719..d216071 100644 --- a/ENTREES/elegin_balsamic_tempeh.md +++ b/ENTREES/elegin_balsamic_tempeh.md @@ -7,7 +7,7 @@ you can see the markup for it and use this as a template - 1 package of tempeh (8oz) -1/2 cup of balsamic vinegar (125mL) - 4 teaspoons tamari or soy sauce (20mL) -- 1 tablespoon maple syrup (15mL) +- 1 tablespoon maple syrup (15mL) - 1 tablespoon olive oil (15mL) ## Instructions diff --git a/ENTREES/moonbas3_mississippi_pot_roast.md b/ENTREES/moonbas3_mississippi_pot_roast.md index 4d4b7f7..8caed8c 100644 --- a/ENTREES/moonbas3_mississippi_pot_roast.md +++ b/ENTREES/moonbas3_mississippi_pot_roast.md @@ -37,7 +37,7 @@ long. 2. Put roast in instant pot 3. Add au jus gravy mix, ranch dressing mix, salt and pepper. 4. Switch Instant Pot to "Pressure" and set for 2 hours. - 1. Alternatively, set Slow Cooker to "high" and cook for 8 hours. + Alternatively, set Slow Cooker to "high" and cook for 8 hours. 5. Do not remove until meat falls apart to the touch. 6. Optional - Toast some provolone cheese onto a hoagie roll and serve "philly cheese steak style". diff --git a/ENTREES/sl3dges_low-carb_sticky_pork_belly.md b/ENTREES/sl3dges_low-carb_sticky_pork_belly.md index 8dbf095..47b98dd 100644 --- a/ENTREES/sl3dges_low-carb_sticky_pork_belly.md +++ b/ENTREES/sl3dges_low-carb_sticky_pork_belly.md @@ -6,11 +6,11 @@ ![image](images/sl3dges_low-carb_sticky_pork_belly.jpg){.align-center} -## Recipe: +## Recipe Makes 6 servings -*You will need an oiled sautée pan, at a medium heat* +You will need an oiled sautée pan, at a medium heat ## Pork Belly Ingredients diff --git a/SIDES/thedevilsvoice_jangajji.md b/SIDES/thedevilsvoice_jangajji.md index 54d7f98..7f67523 100644 --- a/SIDES/thedevilsvoice_jangajji.md +++ b/SIDES/thedevilsvoice_jangajji.md @@ -35,9 +35,8 @@ made by pickling vegetables. ### Prepare vegetables 1. Be sure you remember to sterilize the jar as described above. -2. Cut your vegetables into bite-sized pieces. - 1. Cucumbers in round slices. - 2. Deseeding peppers can reduce heat. +2. Cut your vegetables into bite-sized pieces. Cucumbers in round slices. + Deseeding peppers can reduce heat. 3. Toss the vegetables in a bowl to distribute evenly, then transfer into jar. 4. Set these aside for now. diff --git a/admin/bin/convert_rst_md.sh b/admin/bin/convert_rst_md.sh deleted file mode 100755 index 73d6d79..0000000 --- a/admin/bin/convert_rst_md.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/env bash -# -# SPDX-FileCopyrightText: 2023 DE:AD:10:C5 -# -# SPDX-License-Identifier: GPL-3.0-or-later - -# v0.1 02/25/2022 Maintainer script -# v0.2 05/13/2024 Remove spaces after conversion - -set -euo pipefail -IFS=$'\n\t' - -# --- Some config Variables ---------------------------------------- -MY_DATE=$(date '+%Y-%m-%d-%H') - -FILES=*.rst -if [ ! -n "${FILES}" ]; then - for f in $FILES; do - filename="${f%.*}" - echo "Converting ${f} to ${filename}.md" - $(pandoc $f -f rst -t markdown -o ${filename}.md) - done -fi - -FILES=*.md -for f in $FILES; do - filename="${f%.*}" - echo "Removing spaces from ${filename}.md" - cat ${filename}.md | tr -s ' ' > /tmp/tmp_file - mv /tmp/tmp_file ${filename}.md -done diff --git a/admin/bin/format_shell.sh b/admin/bin/format_shell.sh deleted file mode 100755 index 8d2c1f7..0000000 --- a/admin/bin/format_shell.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env bash -# -# SPDX-FileCopyrightText: 2023 DE:AD:10:C5 -# -# SPDX-License-Identifier: GPL-3.0-or-later - -# v0.1 | 02/15/2024 | initial version | franklin - -set -euo pipefail -IFS=$'\n\t' - -shfmt -i 2 -l -w ../bootstrap.sh -shfmt -i 2 -l -w convert_rst_md.sh -shfmt -i 2 -l -w generate_book.sh - - - diff --git a/admin/bin/formatting.sh b/admin/bin/formatting.sh new file mode 100755 index 0000000..2812358 --- /dev/null +++ b/admin/bin/formatting.sh @@ -0,0 +1,97 @@ +#!/usr/bin/env bash +# +# SPDX-FileCopyrightText: 2023 DE:AD:10:C5 +# +# SPDX-License-Identifier: GPL-3.0-or-later + +# v0.1 02/25/2022 Maintainer script +# v0.2 05/13/2024 Remove spaces after conversion + +set -euo pipefail +IFS=$'\n\t' + +# --- Some config Variables ---------------------------------------- +MY_DATE=$(date '+%Y-%m-%d-%H') + +#Black 0;30 Dark Gray 1;30 +#Red 0;31 Light Red 1;31 +#Green 0;32 Light Green 1;32 +#Brown/Orange 0;33 Yellow 1;33 +#Blue 0;34 Light Blue 1;34 +#Purple 0;35 Light Purple 1;35 +#Cyan 0;36 Light Cyan 1;36 +#Light Gray 0;37 White 1;37 + +RED='\033[0;31m' +LRED='\033[1;31m' +LGREEN='\033[1;32m' +LBLUE='\033[1;34m' +CYAN='\033[0;36m' +LPURP='\033[1;35m' +YELLOW='\033[1;33m' +NC='\033[0m' # No Color + +function path_setup() { + CURRENT_DIR="${PWD}" + PROG_DIR="$0" + SCRIPT_DIR=$(echo $PROG_DIR | sed 's|\(.*\)/.*|\1|') + SUB_DIR=$(echo $SCRIPT_DIR | rev | cut -d'/' -f2- | rev) + echo "Sub dir: $SUB_DIR" + if [ "$SUB_DIR" != "bin" ]; then + LOGGING_DIR="$CURRENT_DIR/$SUB_DIR/logs" + DATA_DIR="$CURRENT_DIR/$SUB_DIR/data" + else + LOGGING_DIR="$CURRENT_DIR/logs" + DATA_DIR="$CURRENT_DIR/data" + fi + + if [ -d "${LOGGING_DIR}" ]; then + RAW_OUTPUT="${LOGGING_DIR}/${RAW_OUTPUT}" + echo -e "\n${LCYAN}------------------ Starting Backup Tool ------------------${NC}" | tee -a "${RAW_OUTPUT}" + echo -e "${LGREEN}Found log dir: ${LCYAN}${LOGGING_DIR}${NC}" | tee -a "${RAW_OUTPUT}" + echo -e "${LGREEN}Log file path is: ${LCYAN}${RAW_OUTPUT}${NC}" | tee -a "${RAW_OUTPUT}" + else + echo -e "${LGRED}Did not find log dir: ${LCYAN}${RAW_OUTPUT}${NC}" + LOGGING_DIR="." + RAW_OUTPUT="${LOGGING_DIR}/${RAW_OUTPUT}" + fi +} + + +function shell_script_fmt() { + echo -e "${CYAN}Formatting shell scripts...${NC}" + shfmt -i 2 -l -w ../bootstrap.sh + shfmt -i 2 -l -w formatting.sh + shfmt -i 2 -l -w generate_book.sh +} + +function convert_rst_to_md() { + FILES=*.rst + if [ ! -n "${FILES}" ]; then + for f in $FILES; do + filename="${f%.*}" + echo "Converting ${f} to ${filename}.md" + $(pandoc $f -f rst -t markdown -o ${filename}.md) + done + fi +} + +function format_markdown(){ + FILES=*.md + for f in $FILES; do + filename="${f%.*}" + echo "Removing spaces from ${filename}.md" + cat ${filename}.md | tr -s ' ' > /tmp/tmp_file + mv /tmp/tmp_file ${filename}.md + echo "Running markdown lint on ${filename}.md" + mdl ${filename}.md + done +} + +function main() { + shell_script_fmt + convert_rst_to_md + format_markdown +} + +main "$@" \ No newline at end of file From 6c7e53124f05d5cfd846ed4389468207a3e217bb Mon Sep 17 00:00:00 2001 From: FrankTheTank <2730246+devsecfranklin@users.noreply.github.com> Date: Tue, 14 May 2024 08:45:20 -0600 Subject: [PATCH 10/10] formatting updates --- .../Ajn_point_reyes_brussels_sprout_salad.md | 4 +-- BREAKFAST/Marler_quick_migas.md | 26 +++++++++---------- SIDES/thedevilsvoice_jangajji.md | 2 +- SNACKS/WireGhost_Eclectic_Freedom_Fries.md | 2 +- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/APPETIZERS/Ajn_point_reyes_brussels_sprout_salad.md b/APPETIZERS/Ajn_point_reyes_brussels_sprout_salad.md index 4b6c0b9..ab5223b 100644 --- a/APPETIZERS/Ajn_point_reyes_brussels_sprout_salad.md +++ b/APPETIZERS/Ajn_point_reyes_brussels_sprout_salad.md @@ -22,10 +22,10 @@ the chance. Here goes... mandolin slicer moving in a single direction until only the portion you would have trimmed is left. Consistency is key here; you want light, shredded bits with some thinly sliced core pieces -1. In a large bowl, mix oil, syrup, mustard and blue cheese with a +2. In a large bowl, mix oil, syrup, mustard and blue cheese with a fork, mashing the cheese until smooth and integrated. You could use a food processor, but I find this easier. Balance cheese/oil/mustard to your preference, along with light salt/pepper. -1. Mix in sprouts until you achieve a dressing:sprout ratio you like. +3. Mix in sprouts until you achieve a dressing:sprout ratio you like. We prefer it pretty thin on dressing. Add pears and sprinkle with walnuts. Serve with grilled beef/pork/lamb. diff --git a/BREAKFAST/Marler_quick_migas.md b/BREAKFAST/Marler_quick_migas.md index ce582b5..521d9dc 100644 --- a/BREAKFAST/Marler_quick_migas.md +++ b/BREAKFAST/Marler_quick_migas.md @@ -34,22 +34,22 @@ won't blow up if you do it wrong, though I will if you add cheese. ## Instructions 1. Use your favorite skillet for cooking eggs and heat it up -1. Take the chorizo out of it's inedible wrapper (you bought the cheap +2. Take the chorizo out of it's inedible wrapper (you bought the cheap stuff, right? That casing is not edible) and put it in the pan -1. Chop up the chorizo with a spatula while it cooks until you get it +3. Chop up the chorizo with a spatula while it cooks until you get it into small chunks -1. Crack the eggs and put them into a plastic cup -1. Season the eggs with salt and pepper in the cup -1. Stir up the eggs with a fork until they are as blended as you like +4. Crack the eggs and put them into a plastic cup +5. Season the eggs with salt and pepper in the cup +6. Stir up the eggs with a fork until they are as blended as you like them to be -1. When the chorizo is done, pour in the eggs -1. Crush the fritos in the bag, then open the bag over the skillet and +7. When the chorizo is done, pour in the eggs +8. Crush the fritos in the bag, then open the bag over the skillet and dump them in -1. Add the salsa to the skillet -1. Add anything else you want to add to cook with the eggs -1. Stir and chop with the spatula until the eggs are cooked as far as +9. Add the salsa to the skillet +10. Add anything else you want to add to cook with the eggs +11. Stir and chop with the spatula until the eggs are cooked as far as you like them cooked (I like my eggs dry as a Texas drought) -1. Remove skillet from heat and divide accordingly onto plates -1. If you have any fresh veggies you want to add for garnish, now is +12. Remove skillet from heat and divide accordingly onto plates +13. If you have any fresh veggies you want to add for garnish, now is your chance to do so -1. Enjoy! +14. Enjoy! diff --git a/SIDES/thedevilsvoice_jangajji.md b/SIDES/thedevilsvoice_jangajji.md index 7f67523..4271a56 100644 --- a/SIDES/thedevilsvoice_jangajji.md +++ b/SIDES/thedevilsvoice_jangajji.md @@ -35,7 +35,7 @@ made by pickling vegetables. ### Prepare vegetables 1. Be sure you remember to sterilize the jar as described above. -2. Cut your vegetables into bite-sized pieces. Cucumbers in round slices. +2. Cut your vegetables into bite-sized pieces. Cucumbers in round slices. Deseeding peppers can reduce heat. 3. Toss the vegetables in a bowl to distribute evenly, then transfer into jar. diff --git a/SNACKS/WireGhost_Eclectic_Freedom_Fries.md b/SNACKS/WireGhost_Eclectic_Freedom_Fries.md index 96fd713..66b55a3 100644 --- a/SNACKS/WireGhost_Eclectic_Freedom_Fries.md +++ b/SNACKS/WireGhost_Eclectic_Freedom_Fries.md @@ -1,4 +1,4 @@ -# Eclectic Freedom Fries: +# Eclectic Freedom Fries Makes a very diverse and healthy snack.