feat: 5/10/24 update

This commit is contained in:
Nick 2024-10-05 01:01:51 -05:00
parent e22bd788fe
commit da37ce527c
32 changed files with 1130 additions and 45001 deletions

View file

@ -18,5 +18,7 @@
"obsidian-excalidraw-plugin",
"typst",
"obsidian-sort-and-permute-lines",
"obsidian-git"
"obsidian-git",
"obsidian-enhancing-export",
"folders2graph"
]

View file

@ -60,6 +60,6 @@
"repelStrength": 16.5625,
"linkStrength": 0.911458333333333,
"linkDistance": 375,
"scale": 0.023698070786372108,
"scale": 0.023698070786372212,
"close": true
}

View file

@ -97,5 +97,15 @@
],
"key": "K"
}
],
"templater-obsidian:📋 Templates/Simple Argument Template.md": [
{
"modifiers": [
"Alt",
"Mod",
"Shift"
],
"key": "S"
}
]
}

21
.obsidian/plugins/folders2graph/LICENSE vendored Executable file
View file

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2024 Lucas Bastian
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

1
.obsidian/plugins/folders2graph/main.js vendored Executable file
View file

@ -0,0 +1 @@
(()=>{"use strict";var t={452:e=>{e.exports=require("obsidian")}},a={};function i(e){var r=a[e];return void 0!==r||(r=a[e]={exports:{}},t[e](r,r.exports,i)),r.exports}var e={};{var r=e,o=(Object.defineProperty(r,"__esModule",{value:!0}),i(452));const l="tag";class d extends o.Plugin{async onload(){this.refreshGraphLeaves(),this.registerEvent(this.app.workspace.on("active-leaf-change",e=>{this.refreshGraphLeaves([e])})),this.registerEvent(this.app.workspace.on("layout-change",()=>{this.refreshGraphLeaves()}))}onunload(){this.getLeavesOfTypeGraph().forEach(e=>{e.view.renderer.originalSetData&&(e.view.renderer.setData=e.view.renderer.originalSetData,delete e.view.renderer.originalSetData,e.view.unload(),e.view.load())})}refreshGraphLeaves(e=this.getLeavesOfTypeGraph()){e.forEach(e=>{"graph"===e.view.getViewType()&&(this.injectDataInLeaf(e),e.view.unload(),e.view.load())})}injectDataInLeaf(e){const r=e.view.renderer;null==r.originalSetData&&(r.originalSetData=r.setData),r.setData=t=>{const a=new Set("/");if(Object.entries(t.nodes).forEach(([e,r])=>{e=this.getNodeParentFolders(e);r.folderNode||r.type==l||null==e||e.forEach(a.add,a)}),a.forEach(e=>{t.nodes[e]={type:l,links:{},folderNode:!0}}),Object.entries(t.nodes).forEach(([e,r])=>{r.type==l&&!r.folderNode||(r=this.getNodeParentFolder(e),t.nodes[r].links[e]=!0)}),r.originalSetData)return r.originalSetData(t);throw new Error("originalSetData is undefined.")}}getLeavesOfTypeGraph(){return this.app.workspace.getLeavesOfType("graph")}getNodeParentFolders(e){const r=["/"];e=e.split("/"),e=e.slice(0,e.length-1);let t="";return e.forEach(e=>{t+="/"+e,r.push(t)}),r}getNodeParentFolder(e){e=e.split("/");return"/"+e.slice(0,e.length-1).filter(e=>""!=e).join("/")}}r.default=d}var s,n=exports;for(s in e)n[s]=e[s];e.__esModule&&Object.defineProperty(n,"__esModule",{value:!0})})();

11
.obsidian/plugins/folders2graph/manifest.json vendored Executable file
View file

@ -0,0 +1,11 @@
{
"id": "folders2graph",
"name": "Folders to Graph",
"description": "Display your vault folder structure into your graphs.",
"version": "1.0.0",
"author": "ratibus11",
"authorUrl": "https://github.com/ratibus11",
"fundingUrl": "https://paypal.me/bastianlucas",
"minAppVersion": "1.4.16",
"isDesktopOnly": false
}

View file

@ -6,7 +6,9 @@ local url = require('url')
local pandoc=pandoc
local PANDOC_STATE=PANDOC_STATE
PANDOC_VERSION:must_be_at_least '2.17'
PANDOC_VERSION:must_be_at_least '3.1.7'
os.text = pandoc.text
local PATH = pandoc.path
local doc_dir = nil
@ -22,7 +24,7 @@ if PANDOC_STATE.output_file then
local output_file = PANDOC_STATE.output_file
doc_dir = PATH.directory(output_file)
if PANDOC_WRITER_OPTIONS.variables["media_dir"] then
media_dir = PANDOC_WRITER_OPTIONS.variables["media_dir"]
media_dir = tostring(PANDOC_WRITER_OPTIONS.variables["media_dir"])
else
media_dir = PATH.split_extension(output_file)
if Mode ~= 'hugo' then

View file

@ -3,7 +3,6 @@ if os.platform == nil then
local libExt = package.cpath:match("%p[\\|/]?\\.%p(%a+)")
if libExt == 'dll' then
os.platform = "Windows"
require"utf8_filenames"
elseif libExt == 'so' then
os.platform = "Linux"
elseif libExt == 'dylib' then
@ -15,7 +14,9 @@ end
os.copy = function(src, dest)
if os.platform == "Windows" then
src = string.gsub(src, "/", "\\")
os.execute('copy "' .. src .. '" "' .. dest .. '"')
src = os.text.toencoding(src)
dest = os.text.toencoding(dest)
os.execute('copy "' .. src .. '" "' .. dest .. '" >NUL')
else
os.execute('cp "' .. src .. '" "' .. dest .. '"')
end
@ -26,6 +27,7 @@ os.mkdir = function(dir)
return
end
if os.platform == "Windows" then
dir = os.text.toencoding(dir)
os.execute('mkdir "' .. dir .. '"')
else
os.execute('mkdir -p "' .. dir .. '"')
@ -35,6 +37,7 @@ end
os.exists = function(path)
if os.platform == "Windows" then
path = string.gsub(path, "/", "\\")
path = os.text.toencoding(path)
local _, _, code = os.execute('if exist "' .. path .. '" (exit 0) else (exit 1)')
return code == 0
else

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"id": "obsidian-enhancing-export",
"name": "Enhancing Export",
"version": "1.10.7",
"version": "1.10.8",
"minAppVersion": "1.6.3",
"description": "This is a enhancing export plugin for Obsidian. It allows to export to formats like Html, DOCX, ePub and PDF or Markdown(Hugo) etc.",
"author": "YISH",

View file

@ -1,6 +1,6 @@
%%
% Copyright (c) 2017 - 2021, Pascal Wagler;
% Copyright (c) 2014 - 2021, John MacFarlane
% Copyright (c) 2017 - 2023, Pascal Wagler;
% Copyright (c) 2014 - 2023, John MacFarlane
%
% All rights reserved.
%
@ -78,9 +78,11 @@ $if(background-image)$
\usebackgroundtemplate{%
\includegraphics[width=\paperwidth]{$background-image$}%
}
% In beamer background-image does not work well when other images are used, so this is the workaround
\pgfdeclareimage[width=\paperwidth,height=\paperheight]{background}{$background-image$}
\usebackgroundtemplate{\pgfuseimage{background}}
$endif$
\usepackage{pgfpages}
\setbeamertemplate{caption}[numbered]
\setbeamertemplate{caption label separator}{: }
\setbeamercolor{caption name}{fg=normal text.fg}
@ -213,6 +215,12 @@ $if(CJKmainfont)$
\ifXeTeX
\usepackage{xeCJK}
\setCJKmainfont[$for(CJKoptions)$$CJKoptions$$sep$,$endfor$]{$CJKmainfont$}
$if(CJKsansfont)$
\setCJKsansfont[$for(CJKoptions)$$CJKoptions$$sep$,$endfor$]{$CJKsansfont$}
$endif$
$if(CJKmonofont)$
\setCJKmonofont[$for(CJKoptions)$$CJKoptions$$sep$,$endfor$]{$CJKmonofont$}
$endif$
\fi
$endif$
$if(luatexjapresetoptions)$
@ -298,7 +306,10 @@ $else$
\usepackage[margin=2.5cm,includehead=true,includefoot=true,centering,$for(geometry)$$geometry$$sep$,$endfor$]{geometry}
$endif$
$endif$
$if(titlepage-logo)$
\usepackage[export]{adjustbox}
\usepackage{graphicx}
$endif$
$if(beamer)$
\newif\ifbibliography
$endif$
@ -361,16 +372,21 @@ $endif$
$if(graphics)$
\usepackage{graphicx}
\makeatletter
\def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi}
\def\maxheight{\ifdim\Gin@nat@height>\textheight\textheight\else\Gin@nat@height\fi}
\makeatother
% Scale images if necessary, so that they will not overflow the page
% margins by default, and it is still possible to overwrite the defaults
% using explicit options in \includegraphics[width, height, ...]{}
\setkeys{Gin}{width=\maxwidth,height=\maxheight,keepaspectratio}
\newsavebox\pandoc@box
\newcommand*\pandocbounded[1]{% scales image to fit in text height/width
\sbox\pandoc@box{#1}%
\Gscale@div\@tempa{\textheight}{\dimexpr\ht\pandoc@box+\dp\pandoc@box\relax}%
\Gscale@div\@tempb{\linewidth}{\wd\pandoc@box}%
\ifdim\@tempb\p@<\@tempa\p@\let\@tempa\@tempb\fi% select the smaller of both
\ifdim\@tempa\p@<\p@\scalebox{\@tempa}{\usebox\pandoc@box}%
\else\usebox{\pandoc@box}%
\fi%
}
% Set default figure placement to htbp
\makeatletter
\def\fps@figure{htbp}
% Make use of float-package and set default placement for figures to H.
% The option H means 'PUT IT HERE' (as opposed to the standard h option which means 'You may put it here if you like').
\usepackage{float}
\floatplacement{figure}{$if(float-placement-figure)$$float-placement-figure$$else$H$endif$}
\makeatother
$endif$
$if(svg)$
@ -378,7 +394,19 @@ $if(svg)$
$endif$
$if(strikeout)$
$-- also used for underline
\ifLuaTeX
\usepackage{luacolor}
\usepackage[soul]{lua-ul}
\else
\usepackage{soul}
$if(CJKmainfont)$
\ifXeTeX
% soul's \st doesn't work for CJK:
\usepackage{xeCJKfntef}
\renewcommand{\st}[1]{\sout{#1}}
\fi
$endif$
\fi
$endif$
\setlength{\emergencystretch}{3em} % prevent overfull lines
\providecommand{\tightlist}{%
@ -388,6 +416,9 @@ $if(numbersections)$
$else$
\setcounter{secnumdepth}{-\maxdimen} % remove section numbering
$endif$
$if(subfigure)$
\usepackage{subcaption}
$endif$
$if(beamer)$
$else$
$if(block-headings)$
@ -406,28 +437,38 @@ $if(pagestyle)$
\pagestyle{$pagestyle$}
$endif$
$if(csl-refs)$
% definitions for citeproc citations
\NewDocumentCommand\citeproctext{}{}
\NewDocumentCommand\citeproc{mm}{%
\begingroup\def\citeproctext{#2}\cite{#1}\endgroup}
\makeatletter
% allow citations to break across lines
\let\@cite@ofmt\@firstofone
% avoid brackets around text for \cite:
\def\@biblabel#1{}
\def\@cite#1#2{{#1\if@tempswa , #2\fi}}
\makeatother
\newlength{\cslhangindent}
\setlength{\cslhangindent}{1.5em}
\newlength{\csllabelwidth}
\setlength{\csllabelwidth}{3em}
\newlength{\cslentryspacingunit} % times entry-spacing
\setlength{\cslentryspacingunit}{\parskip}
\newenvironment{CSLReferences}[2] % #1 hanging-ident, #2 entry spacing
{% don't indent paragraphs
\setlength{\parindent}{0pt}
% turn on hanging indent if param 1 is 1
\ifodd #1
\let\oldpar\par
\def\par{\hangindent=\cslhangindent\oldpar}
\fi
% set entry spacing
\setlength{\parskip}{#2\cslentryspacingunit}
}%
{}
\newenvironment{CSLReferences}[2] % #1 hanging-indent, #2 entry-spacing
{\begin{list}{}{%
\setlength{\itemindent}{0pt}
\setlength{\leftmargin}{0pt}
\setlength{\parsep}{0pt}
% turn on hanging indent if param 1 is 1
\ifodd #1
\setlength{\leftmargin}{\cslhangindent}
\setlength{\itemindent}{-1\cslhangindent}
\fi
% set entry spacing
\setlength{\itemsep}{#2\baselineskip}}}
{\end{list}}
\usepackage{calc}
\newcommand{\CSLBlock}[1]{#1\hfill\break}
\newcommand{\CSLLeftMargin}[1]{\parbox[t]{\csllabelwidth}{#1}}
\newcommand{\CSLRightInline}[1]{\parbox[t]{\linewidth - \csllabelwidth}{#1}\break}
\newcommand{\CSLBlock}[1]{\hfill\break\parbox[t]{\linewidth}{\strut\ignorespaces#1\strut}}
\newcommand{\CSLLeftMargin}[1]{\parbox[t]{\csllabelwidth}{\strut#1\strut}}
\newcommand{\CSLRightInline}[1]{\parbox[t]{\linewidth - \csllabelwidth}{\strut#1\strut}}
\newcommand{\CSLIndent}[1]{\hspace{\cslhangindent}#1}
$endif$
$if(lang)$
@ -438,10 +479,19 @@ $if(lang)$
\fi
$if(babel-lang)$
\babelprovide[main,import]{$babel-lang$}
$if(mainfont)$
\ifPDFTeX
\else
\babelfont{rm}[$for(mainfontoptions)$$mainfontoptions$$sep$,$endfor$]{$mainfont$}
\fi
$endif$
$endif$
$for(babel-otherlangs)$
\babelprovide[import]{$babel-otherlangs$}
$endfor$
$for(babelfonts/pairs)$
\babelfont[$babelfonts.key$]{rm}{$babelfonts.value$}
$endfor$
% get rid of language-specific shorthands (see #6817):
\let\LanguageShortHands\languageshorthands
\def\languageshorthands#1{}
@ -695,18 +745,16 @@ $if(table-use-row-colors)$
% \end{longtable}
%
% https://en.wikibooks.org/wiki/LaTeX/Tables#.40-expressions
\let\oldlongtable\longtable
\let\endoldlongtable\endlongtable
\renewenvironment{longtable}{
\rowcolors{3}{}{table-row-color!100} % row color
\oldlongtable} {
\endoldlongtable
\global\rownum=0\relax}
\usepackage{etoolbox}
\AtBeginEnvironment{longtable}{\rowcolors{2}{}{table-row-color!100}}
\preto{\toprule}{\hiderowcolors}{}{}
\appto{\endhead}{\showrowcolors}{}{}
\appto{\endfirsthead}{\showrowcolors}{}{}
$endif$
$endif$
%
% remove paragraph indention
% remove paragraph indentation
%
\setlength{\parindent}{0pt}
\setlength{\parskip}{6pt plus 2pt minus 1pt}
@ -772,8 +820,8 @@ $endif$
literate =
{á}{{\'a}}1 {é}{{\'e}}1 {í}{{\'i}}1 {ó}{{\'o}}1 {ú}{{\'u}}1
{Á}{{\'A}}1 {É}{{\'E}}1 {Í}{{\'I}}1 {Ó}{{\'O}}1 {Ú}{{\'U}}1
{à}{{\`a}}1 {è}{{\'e}}1 {ì}{{\`i}}1 {ò}{{\`o}}1 {ù}{{\`u}}1
{À}{{\`A}}1 {È}{{\'E}}1 {Ì}{{\`I}}1 {Ò}{{\`O}}1 {Ù}{{\`U}}1
{à}{{\`a}}1 {è}{{\`e}}1 {ì}{{\`i}}1 {ò}{{\`o}}1 {ù}{{\`u}}1
{À}{{\`A}}1 {È}{{\`E}}1 {Ì}{{\`I}}1 {Ò}{{\`O}}1 {Ù}{{\`U}}1
{ä}{{\"a}}1 {ë}{{\"e}}1 {ï}{{\"i}}1 {ö}{{\"o}}1 {ü}{{\"u}}1
{Ä}{{\"A}}1 {Ë}{{\"E}}1 {Ï}{{\"I}}1 {Ö}{{\"O}}1 {Ü}{{\"U}}1
{â}{{\^a}}1 {ê}{{\^e}}1 {î}{{\^i}}1 {ô}{{\^o}}1 {û}{{\^u}}1

View file

@ -1,3 +1,4 @@
% This template was tested with Pandoc 3.4 and pandoc-crossref v0.3.18.0. It should be backwards compatible with older version of pandoc..
\documentclass{article}
@ -7,7 +8,7 @@
% ready for submission
\usepackage[final]{neurips}
\usepackage[final,nonatbib]{neurips}
% to compile a preprint version, e.g., for submission to arXiv, add add the
@ -34,6 +35,18 @@
\usepackage{xcolor} % colors
\usepackage{graphicx}
\makeatletter
\newsavebox\pandoc@box
\newcommand*\pandocbounded[1]{% scales image to fit in text height/width
\sbox\pandoc@box{#1}%
\Gscale@div\@tempa{\textheight}{\dimexpr\ht\pandoc@box+\dp\pandoc@box\relax}%
\Gscale@div\@tempb{\linewidth}{\wd\pandoc@box}%
\ifdim\@tempb\p@<\@tempa\p@\let\@tempa\@tempb\fi% select the smaller of both
\ifdim\@tempa\p@<\p@\scalebox{\@tempa}{\usebox\pandoc@box}%
\else\usebox{\pandoc@box}%
\fi%
}
\makeatother
\makeatletter
\def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi}
\def\maxheight{\ifdim\Gin@nat@height>\textheight\textheight\else\Gin@nat@height\fi}
@ -48,28 +61,38 @@
\makeatother
$if(csl-refs)$
% definitions for citeproc citations
\NewDocumentCommand\citeproctext{}{}
\NewDocumentCommand\citeproc{mm}{%
\begingroup\def\citeproctext{#2}\cite{#1}\endgroup}
\makeatletter
% allow citations to break across lines
\let\@cite@ofmt\@firstofone
% avoid brackets around text for \cite:
\def\@biblabel#1{}
\def\@cite#1#2{{#1\if@tempswa , #2\fi}}
\makeatother
\newlength{\cslhangindent}
\setlength{\cslhangindent}{1.5em}
\newlength{\csllabelwidth}
\setlength{\csllabelwidth}{3em}
\newlength{\cslentryspacingunit} % times entry-spacing
\setlength{\cslentryspacingunit}{\parskip}
\newenvironment{CSLReferences}[2] % #1 hanging-ident, #2 entry spacing
{% don't indent paragraphs
\setlength{\parindent}{0pt}
% turn on hanging indent if param 1 is 1
\ifodd #1
\let\oldpar\par
\def\par{\hangindent=\cslhangindent\oldpar}
\fi
% set entry spacing
\setlength{\parskip}{#2\cslentryspacingunit}
}%
{}
\newenvironment{CSLReferences}[2] % #1 hanging-indent, #2 entry-spacing
{\begin{list}{}{%
\setlength{\itemindent}{0pt}
\setlength{\leftmargin}{0pt}
\setlength{\parsep}{0pt}
% turn on hanging indent if param 1 is 1
\ifodd #1
\setlength{\leftmargin}{\cslhangindent}
\setlength{\itemindent}{-1\cslhangindent}
\fi
% set entry spacing
\setlength{\itemsep}{#2\baselineskip}}}
{\end{list}}
\usepackage{calc}
\newcommand{\CSLBlock}[1]{#1\hfill\break}
\newcommand{\CSLLeftMargin}[1]{\parbox[t]{\csllabelwidth}{#1}}
\newcommand{\CSLRightInline}[1]{\parbox[t]{\linewidth - \csllabelwidth}{#1}\break}
\newcommand{\CSLBlock}[1]{\hfill\break\parbox[t]{\linewidth}{\strut\ignorespaces#1\strut}}
\newcommand{\CSLLeftMargin}[1]{\parbox[t]{\csllabelwidth}{\strut#1\strut}}
\newcommand{\CSLRightInline}[1]{\parbox[t]{\linewidth - \csllabelwidth}{\strut#1\strut}}
\newcommand{\CSLIndent}[1]{\hspace{\cslhangindent}#1}
$endif$
\providecommand{\tightlist}{%

View file

@ -105,7 +105,7 @@
"mdCSS": "",
"scriptEngineSettings": {},
"defaultTrayMode": true,
"previousRelease": "2.5.0",
"previousRelease": "2.5.1",
"showReleaseNotes": true,
"showNewVersionNotification": true,
"latexBoilerplate": "\\color{blue}",

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"id": "obsidian-excalidraw-plugin",
"name": "Excalidraw",
"version": "2.5.0",
"version": "2.5.1",
"minAppVersion": "1.1.6",
"description": "An Obsidian plugin to edit and view Excalidraw drawings",
"author": "Zsolt Viczian",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -6,5 +6,5 @@
"description": "Integrate Git version control with automatic backup and other advanced features.",
"isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/vinzent",
"version": "2.26.0"
"version": "2.27.0"
}

View file

@ -39,6 +39,10 @@
margin-right: auto;
}
.obsidian-git-disabled {
opacity: 0.5;
}
.obsidian-git-center-button {
display: block;
margin: 20px auto;

View file

@ -26,7 +26,8 @@
"📋 Templates/Template.md",
"📋 Templates/Debate Template.md",
"📋 Templates/NTT Template.md",
"📋 Templates/Event Template.md"
"📋 Templates/Event Template.md",
"📋 Templates/Simple Argument Template.md"
],
"startup_templates": [
""

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"id": "templater-obsidian",
"name": "Templater",
"version": "2.7.1",
"version": "2.7.3",
"description": "Create and use templates",
"minAppVersion": "1.5.0",
"author": "SilentVoid",

View file

@ -4,32 +4,20 @@
"type": "split",
"children": [
{
"id": "a40fb615abde55dc",
"id": "9b6967c4d867c389",
"type": "tabs",
"children": [
{
"id": "f851b7721b0ddfc6",
"id": "504368147528a32b",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "🏛️ Home/Untitled.md",
"file": "🛡️ Debate/Opponents/Bart Kay.md",
"mode": "preview",
"source": true
}
}
},
{
"id": "06bb5c58e95a6743",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "🥙 Nutrition Vault/Vitamin D2 and D3 bioactivity.md",
"mode": "source",
"source": true
}
}
}
]
}
@ -61,7 +49,7 @@
"state": {
"type": "search",
"state": {
"query": "tag:#vitamin_D",
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
@ -106,7 +94,7 @@
}
],
"direction": "horizontal",
"width": 310.5
"width": 281.51103591918945
},
"right": {
"id": "9796b469bf4d4337",
@ -122,7 +110,7 @@
"state": {
"type": "backlink",
"state": {
"file": "🏛️ Home/Untitled.md",
"file": "🛡️ Debate/Opponents/Bart Kay.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@ -139,7 +127,7 @@
"state": {
"type": "outgoing-link",
"state": {
"file": "🏛️ Home/Untitled.md",
"file": "🛡️ Debate/Opponents/Bart Kay.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
}
@ -174,7 +162,7 @@
"state": {
"type": "outline",
"state": {
"file": "🏛️ Home/Untitled.md"
"file": "🛡️ Debate/Opponents/Bart Kay.md"
}
}
}
@ -200,35 +188,36 @@
"obsidian-git:Open Git source control": false
}
},
"active": "efed54bf7a0b7dd0",
"active": "504368147528a32b",
"lastOpenFiles": [
"🥙 Nutrition Vault/Vitamin D2 and D3 bioactivity.md",
"🛡️ Debate/Arguments/Ethics/Ethical Slurs.md",
"🛡️ Debate/Opponents/Bart Kay.md",
"🏛️ Home/99.md",
"🏛️ Home/Untitled.md",
"🛡️ Debate/Coaching/Coursework/Classes/Class 03 - Logic & Epistemology.md",
"🏛️ Home/Untitled 4.md",
"🏛️ Home/Untitled 3.md",
"🏛️ Home/Untitled 2.md",
"🏛️ Home/Untitled 1.md",
"🛡️ Debate/Coaching/Coursework/Homework/Propositional Logic Quiz.md",
"🛡️ Debate/Coaching/Coursework/Classes/Class 04 - Prop Logic Basics.md",
"🛡️ Debate/Coaching/Coursework/Classes/Class 02 - Intro to Debate.md",
"🛡️ Debate/Coaching/Coursework/Classes/Class 01 - Top Ten Informal Fallacies.md",
"🛡️ Debate/Coaching/Coursework/Classes/Syllabus.md",
"💻 Hyperblog/Red Herrings.md",
"💻 Hyperblog/Unfinished/traditional populations.md",
"💻 Hyperblog/Unfinished/statistically significant.md",
"💻 Hyperblog/README.md",
"💻 Hyperblog/Unfinished/arthritis.md",
"💻 Hyperblog/Unfinished/myocardial infarction.md",
"🛡️ Debate/Reviews/Belardo vs Gundry.md",
"🛡️ Debate/Opponents/Lamby mock debates.md",
"🛡️ Debate/Opponents/Liutauras.md",
"🛡️ Debate/Opponents/Ken Berry.md",
"🛡️ Debate/Opponents/JulyBurnsOrange.md",
"🛡️ Debate/Opponents/Jordan.md",
"🛡️ Debate/Opponents/Joey Schwartz.md",
"🛡️ Debate/Opponents/Jevan.md",
"🛡️ Debate/Opponents/Jake Mey.md",
"🛡️ Debate/Opponents/ImDemonWolf.md",
"🛡️ Debate/Opponents/Highlander.md",
"🛡️ Debate/Opponents/Henry.md",
"🛡️ Debate/Opponents/Health Wealth Podcast.md",
"🛡️ Debate/Opponents/HairyVeganDude.md",
"🛡️ Debate/Opponents/Gary Taubes.md",
"🛡️ Debate/Opponents/Garland Farms.md",
"🛡️ Debate/Opponents/Frenchguy.md",
"🛡️ Debate/Arguments/Propositions",
"💻 Hyperblog/Unfinished",
"🖇️ Platform/Website.md",
"🏛️ Home/Services.md",
"🖇️ Platform/Instructions.md",
"🖇️ Platform/Mastodon.md",
"🖇️ Platform/PeerTube.md",
"🖇️ Platform/Roadmap.md",
"🛡️ Debate/Arguments/Politics/Israeli Pagers.md",
"🥙 Nutrition Vault/Meat and risk markers.md",
"🛡️ Debate/Arguments/Vegan/Anti-Pollination Reductio.md",
"🛡️ Debate/Arguments/Vegan/Animal Rights.md",
"💻 Hyperblog/Blogs/Main/The Big Fat Surprise A Critical Review.md",
"🥙 Nutrition Vault/Dietary cholesterol and blood lipids.md",
"🛡️ Debate/Arguments/Politics",
"💻 Hyperblog/Blogs/Patreon",
"💻 Hyperblog/Blogs/Main",
@ -241,7 +230,6 @@
"💻 Hyperblog/Media/Pasted image 20240714004122.png",
"💻 Hyperblog/Media/Pasted image 20240714003049.png",
"💻 Hyperblog/Media/Pasted image 20240714002415.png",
"💻 Hyperblog/Media/Pasted image 20240711165008.png",
"💻 Hyperblog/Media"
"💻 Hyperblog/Media/Pasted image 20240711165008.png"
]
}

View file

@ -0,0 +1,14 @@
**Proposition:**
>
**Argument:**
**P1)** .
**()**
**P2)** .
**()**
**P3)** .
**()**
**C)** Therefore, .
**(∴)**

View file

@ -96,6 +96,53 @@
</font>
</div>
### Argument for Using the Term Bitch
| <font color="CC6600">**Definiendum**</font> | <font color="CC6600">**Definiens**</font> |
|:-------------------------------------------:|:------------------------------------------------------------------------------- |
| <font color="CC6600">**C**</font> | (x) slur's negative connotations have been neutralised |
| <font color="CC6600">**B**</font> | (x) slur has been rendered non-bigoted via altered usage |
| <font color="CC6600">**D**</font> | oppressed people will continue to suffer from the use of (x) slur |
| <font color="CC6600">**S**</font> | it is permissible to neutralise (x) slur's negative connotations |
| <font color="CC6600">**A**</font> | it is generally permissible to use (x) slur with an altered non-bigoted meaning |
| <font color="CC6600">**b**</font> | bitch |
<div style="text-align: center">
<font color="CC6600">
<b>P1)</b></font> For all slurs, (x) slur's negative connotations have been neutralised if and only if, (x) slur has been rendered non-bigoted via altered usage.
<br />
<font color="CC6600">
<b>(∀x(Cx↔Bx))</b>
<br />
<b>P2)</b></font> For all slurs, If it is not the case that (x) slur's negative connotations have been neutralised, then oppressed people will continue to suffer from the use of (x) slur.
<br />
<font color="CC6600">
<b>(∀x(¬Cx→Dx))</b>
<br />
<b>P3)</b></font> It is not the case that the term bitch's negative connotations have been neutralised.
<br />
<font color="CC6600">
<b>(¬Cb)</b>
<br />
<b>P4)</b></font> If the term bitch has not been rendered non-bigoted via altered usage and oppressed people will continue to suffer from the use of the term bitch, then it is permissible to neutralise the term bitch's negative connotations.
<br />
<font color="CC6600">
<b>(¬Bb∧Db→Sb)</b>
<br />
<b>P5)</b></font> If it is permissible to neutralise the term bitch's negative connotations, then It is generally permissible to use the term bitch with an altered non-bigoted meaning.
<br />
<font color="CC6600">
<b>(Sb→Ab)</b>
<br />
<b>C)</b></font> Therefore, it is generally permissible to use the term bitch with an altered non-bigoted meaning.
<br />
<font color="CC6600">
<b>(∴Ab)</b>
<br />
<br />
</font>
</div>
[Proof Tree](https://www.umsu.de/trees/#(~6x(Cx~4Bx)),(~6x(~3Cx~5Dx)),(~3Cn),(~3Bn~1Dn~5Sn),(Sn~5An)|=(An))
---

View file

@ -0,0 +1,34 @@
### Trans-Skepticism Argument
<div style="text-align: center">
<font color="CC6600">
<b>P1)</b></font> If there is not a known symmetry-breaker between identified, transitioned trans people and identified, de-transitioned trans people, then we do not have epistemic access to the means of parsing legitimate trans people from illegitimate trans people.
<br />
<font color="CC6600">
<b>(¬P→¬Q)</b>
<br />
<b>P2)</b></font> If we do not have epistemic access to the means of parsing legitimate trans people from illegitimate trans people, then there is not a clear epistemically virtuous reason to accept the legitimacy of trans identity.
<br />
<font color="CC6600">
<b>(¬Q→¬R)</b>
<br />
<b>P3)</b></font> There is not a known symmetry-breaker between identified, transitioned trans people and identified, de-transitioned trans people.
<br />
<font color="CC6600">
<b>(¬P)</b>
<br />
<b>C)</b></font> Therefore, there is not a clear epistemically virtuous reason to accept the legitimacy of trans identity.
<br />
<font color="CC6600">
<b>(∴¬R)</b>
<br />
<br />
</font>
</div>
---
# Hashtag
#debate
#arguments

View file

@ -24,7 +24,7 @@
<font color="CC6600">
<b>(Lc)</b>
<br />
<b>C)</b></font> Therefore, there is not a reason to believe that coconut oil is any better for heart heart than other saturated fat sources that increase LDL-C.
<b>C)</b></font> Therefore, there is not a reason to believe that coconut oil is any better for heart health than other saturated fat sources that increase LDL-C.
<br />
<font color="CC6600">
<b>(∴¬Rc )</b>

View file

@ -0,0 +1,514 @@
#### Dietary Patterns
**Proposition:**
>Ancestral diets have inherent disadvantages over novel diets.
**Argument:**
**P1)** If humans have more genetic adaptations to ancestral foods than novel foods, then antagonistic pleiotropy is more of a concern for ancestral foods than novel foods.
**(P→Q)**
**P2)** If antagonistic pleiotropy is more of a concern for ancestral foods than novel foods, then ancestral diets have inherent disadvantages over novel diets.
**(Q→R)**
**P3)** Humans have more genetic adaptations to ancestral foods than novel foods
**(P)**
**C)** Therefore, ancestral diets have inherent disadvantages over novel diets.
**(∴R)**
**Proposition:**
>Ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets.
**Argument:**
**P1)** If a higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets, then a lower proportion of amino acids are available for hypertrophy on ketogenic diets compared to non-ketogenic diets.
**(P→Q)**
**P2)** If a lower proportion of amino acids are available for hypertrophy on ketogenic diets compared to non-ketogenic diets, then ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets.
**(Q→R)**
**P3)** A higher proportion of amino acids are spent on gluconeogenesis while on ketogenic diets compared to non-ketogenic diets.
**(P)**
**C)** Therefore, ketogenic diets are likely to cost anabolic potential compared to non-ketogenic diets.
**(∴R)**
**Proposition:**
>Plant-based diets do not appear to clinically reverse atherosclerosis.
**Argument:**
**P1)** If there are established definitions for atherosclerosis reversal in the domain of cardiology and current research on plant-based diets and atherosclerosis reversal do not satisfy the definitions for atherosclerosis reversal in the domain of cardiology, then plant-based diets do not appear to clinically reverse atherosclerosis.
**(P∧¬Q→¬R)**
**P2)** There are established definitions for atherosclerosis reversal in the domain of cardiology.
**(P)**
**P3)** Current research on plant-based diets and atherosclerosis reversal do not satisfy the definitions for atherosclerosis reversal in the domain of cardiology.
**(¬Q)**
**C)** Therefore, plant-based diets do not appear to clinically reverse atherosclerosis.
**(∴¬R)**
#### Meta-Nutrition
**Proposition:**
>All foods are definitionally health-promoting.
**Argument:**
**P1)** If food is defined as material consisting essentially of protein, carbohydrate, and/or fat used in the body of an organism to sustain growth, repair, and vital processes and to furnish energy, then all foods are definitionally health-promoting.
**(P→Q)**
**P2)** food is defined as material consisting essentially of protein, carbohydrate, and/or fat used in the body of an organism to sustain growth, repair, and vital processes and to furnish energy.
**(P)**
**C)** Therefore, all foods are definitionally health-promoting.
**(∴Q)**
**Proposition:**
>The optimal human diet is likely heavily artificial.
**Argument:**
**P1)** If the health value of natural foods can be improved via artificial manipulation, then the optimal human diet is likely heavily artificial.
**(V→M)**
**P2**) The health value of natural foods can be improved via artificial manipulation.
**(V)**
**C)** Therefore, the optimal human diet is likely heavily artificial.
**(∴M)**
#### Nutrition Science
**Proposition:**
>Carbs do not uniquely cause fat accumulation or obesity.
**Argument:**
**P1)** If carbs uniquely cause fat accumulation or obesity, then, populations with high carb diets have uniquely higher rates of obesity after adjustment or control over relevant confounders and covariates.
**(P→Q)**
**P2)** Populations with high carb diets do not have uniquely higher rates of obesity after adjustment or control over relevant confounders and covariates.
**(¬Q)**
**C)** Therefore, carbs do not uniquely cause fat accumulation or obesity.
**(∴¬P)**
**Proposition:**
>Chocolate does not cause atherosclerosis.
**Argument:**
**P1)** For all things, if high saturated fat food (x) causes atherosclerosis, then populations consuming more high saturated fat food (x) have higher rates of atherosclerosis after adjustment or control over relevant confounders and covariates.
**(∀x(Px→Qx))**
**P2)** Populations consuming more chocolate do not have higher rates of atherosclerosis after adjustment or control over relevant confounders and covariates.
**(¬Qc)**
**C)** Therefore, chocolate does not cause atherosclerosis.
**(∴¬Pc)**
**Proposition:**
>Consuming high amounts of dietary cholesterol increases heart disease risk.
**Argument:**
**P1)** For all things, if consuming substance (x) increases LDL, then substance (x) increases heart disease risk.
**(∀x(Px→Qx))**
**P2)** Consuming high amounts of dietary cholesterol increases LDL.
**(Pd)**
**C)** Therefore, consuming high amounts of dietary cholesterol increases heart disease risk.
**(∴Qd)**
**Proposition:**
>Nutritional epidemiology generally provides good causal estimates.
**Argument:**
**P1)** For all things, if a research method (x) consistently identifies associations that are later confirmed by randomized controlled trials, then research method (x) generally provides good causal estimates.
**(∀x(Px→Qx))**
**P2)** Nutritional epidemiology consistently identifies associations that are later confirmed by randomized controlled trials.
**(Pe)**
**C)** Therefore, nutritional epidemiology generally provides good causal estimates.
**(∴Qe)**
**Proposition:**
>Excess sodium intake increases cardiovascular disease risk.
**Argument:**
**P1)** For all things, if substance (x) consistently raises blood pressure in controlled studies and elevated blood pressure is known to cause cardiovascular disease, then high intakes of substance (x) increases cardiovascular disease risk.
**(∀x(Px∧Q→Rx))**
**P2)** Sodium consistently raises blood pressure in controlled studies.
**(Ps)**
**P3)** Elevated blood pressure is known to cause cardiovascular disease.
**(Q)**
**C)** Therefore, high intakes of sodium increases cardiovascular disease risk.
**(∴Rs)**
**Proposition:**
>Fibre, whether whole or refined, is overwhelmingly healthy.
**Argument:**
**P1)** For all things, food (x) is overwhelmingly healthy if, and only if, food (x) consistently associates with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates.
**(∀x(Px↔Qx))**
**P2)** Fibre, whether whole or refined, consistently associates with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates.
**(Qb)**
**C)** Therefore, fibre, whether whole or refined, is overwhelmingly healthy.
**(∴Pb)**
**Proposition:**
>Fatty fish is overwhelmingly healthy.
**Argument:**
**P1)** For all things, food (x) is overwhelmingly healthy if, and only if, food (x) consistently associates with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates.
**(∀x(Px↔Qx))**
**P2)** Fatty fish consistently associates with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates.
**(Qf)**
**C)** Therefore, fatty fish is overwhelmingly healthy.
**(∴Pf)**
**Proposition:**
>Fructose doesn't seem to uniquely cause fatty liver disease.
**Argument:**
**P1)** If experimental investigations into fructose overfeeding consistently fail to recreate a fatty liver phenotype in humans, then fructose does not seem to uniquely cause fatty liver disease.
**(P→¬Q)**
**P2)** Experimental investigations into fructose overfeeding consistently fail to recreate a fatty liver phenotype in humans.
**(P)**
**C)** Therefore, fructose does not seem to uniquely cause fatty liver disease.
**(∴¬Q)**
**Proposition:**
>Non-churned, non-homogenized dairy is generally healthy.
**Argument:**
**P1)** For all things, if high saturated fat food (x) causes atherosclerosis, then populations consuming more high saturated fat food (x) have higher rates of atherosclerosis after adjustment or control over relevant confounders and covariates.
**(∀x(Px→Qx))**
**P2)** Populations consuming more non-churned, non-homogenized dairy do not have higher rates of atherosclerosis after adjustment or control over relevant confounders and covariates.
**(¬Qh)**
**C)** Therefore, non-churned, non-homogenized dairy do not cause atherosclerosis.
**(∴¬Ph)**
**Proposition:**
>Non-hydrogenated vegetable oils are overwhelmingly healthy.
**Argument:**
**P1)** For all things, food (x) is overwhelmingly healthy if, and only if, food (x) consistently associates with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates.
**(∀x(Px↔Qx))**
**P2)** Non-hydrogenated vegetable oils consistently associate with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates.
**(Qv)**
**C)** Therefore, non-hydrogenated vegetable oils are overwhelmingly healthy.
**(∴Pv)**
**Proposition:**
>Red meat and processed meat are overwhelmingly unhealthy.
**Argument:**
**P1)** For all things, food (x) is overwhelmingly unhealthy if, and only if, food (x) consistently associates with an increased risk of morbidity and mortality after adjustment or control over relevant confounders and covariates.
**(∀x(Px↔Qx))**
**P2)** Red meat and processed meat consistently associates with an increased risk of morbidity and mortality after adjustment or control over relevant confounders and covariates.
**(Qm∧Qs)**
**C)** Therefore, red meat and processed meat are overwhelmingly unhealthy.
**(∴Pm∧Ps)**
**Proposition:**
>Most sources of saturated fat are overwhelmingly unhealthy.
**Argument:**
**P1)** For all things, food (x) is overwhelmingly unhealthy if, and only if, food (x) consistently associates with an increased risk of morbidity and mortality after adjustment or control over relevant confounders and covariates.
**(∀x(Px↔Qx))**
**P2)** Most sources of saturated fat consistently associates with an increased risk of morbidity and mortality after adjustment or control over relevant confounders and covariates.
**(Qf)**
**C)** Therefore, most sources of saturated fat are overwhelmingly unhealthy.
**(∴Pf)**
**Proposition:**
>Soy products are overwhelmingly healthy.
**Argument:**
**P1)** For all things, food (x) is overwhelmingly healthy if, and only if, food (x) consistently associates with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates.
**(∀x(Px↔Qx))**
**P2)** Soy products consistently associate with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates.
**(Qs)**
**C)** Therefore, soy products are overwhelmingly healthy.
**(∴Ps)**
**Proposition:**
>The omega-6/omega-3 ratio is unlikely to matter for health.
**Argument:**
**P1)** If increases or decreases in disease risk associated with a high or low omega-6/omega-3 ratio are better explained by changes in omega-3 alone, then the omega-6/omega-3 ratio is not likely to matter for health.
**(P→¬Q)**
**P2)** Increases or decreases in disease risk associated with a high or low omega-6/omega-3 ratio are better explained by changes in omega-3 alone.
**(P)**
**C)** Therefore, the omega-6/omega-3 ratio is not likely to matter for health.
**(∴¬Q)**
**Proposition:**
>TMAO is not likely to be causative of heart disease.
**Argument:**
**P1)** For all things, if substance (x) is likely to be causative of heart disease if, then substance (x) consistently associates with an increased risk of heart disease after adjustment or control over relevant confounders and covariates.
**(∀x(Px↔Qx))**
**P2)** TMAO consistently associates with an increased risk of heart disease after adjustment or control over relevant confounders and covariates.
**(¬Qt)**
**C)** Therefore, TMAO is not likely to be causative of heart disease.
**(∴¬Pt)**
**Proposition:**
>Whole plant foods are overwhelmingly healthy.
**Argument:**
**P1)** For all things, food (x) is overwhelmingly healthy if, and only if, food (x) consistently associates with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates.
**(∀x(Px↔Qx))**
**P2)** Whole plant foods consistently associates with a reduced risk of morbidity and mortality after adjustment or control over relevant confounders and covariates.
**(Qw)**
**C)** Therefore, whole plant foods are overwhelmingly healthy.
**(∴Pw)**
**Proposition:**
>Anti-polyphenol, ancestral diet advocates are committed to favouring GMOs
**Argument:**
**P1)** If plant defense chemicals are harmful and plant defense chemicals are contained in a food, then plant defense chemicals render the food harmful.
**(∀x∀y(Hx∧Cxy→Vxy))**
**P2)** Polyphenols from grass are harmful.
**(Hp)**
**P3)** Polyphenols from grass are contained in grass-fed beef.
**(Cpg)**
**P4)** If polyphenols from grass render grass-fed beef harmful, then genetic modification that removes polyphenols from grass renders grass-fed beef less harmful.
**(Vpg→Mpg)**
**P5)** Polyphenols from grass render grass-fed beef harmful.
**(Vpg)**
**P6)** If genetic modification that removes polyphenols from grass renders grass-fed beef less harmful, then health-conscious, anti-polyphenol, ancestral diet advocates are committed to favouring GMOs.
**(Mpg→G)**
**C)** Therefore, health-conscious, anti-polyphenol, ancestral diet advocates are committed to favouring GMOs.
**(∴G)**
#### Ethics
**Proposition:**
>We are justified in displacing sentient wild animals into non-existence.
**Argument:**
**P1)** If the natural world contains intolerable rights violations and we do not know if nature is net positive or net negative for utility and there is not any known practical means by which to end the rights violations beyond the use of force and the natural world is not currently instrumentally vital to facilitating human flourishing, then we are justified in displacing sentient wild animals into non-existence.
**(P∧¬Q∧¬R∧¬S→T)**
**P2)** Nature entails intolerable rights violations.
**(P)**
**P3)** We do not know if nature is net positive or net negative for utility.
**(¬Q)**
**P4)** There is not any known practical means by which to end the rights violations beyond the use of force.
**(¬R)**
**P5)** The natural world is not currently instrumentally vital to facilitating human flourishing.
**(¬S)**
**C)** Therefore, we are justified in displacing sentient wild animals into non-existence.
**(∴T)**
**Proposition:**
>Vandalizing zoos increases the probability of harming the animals they keep.
**Argument:**
**P1)** If zoos must spend extra money cleaning graffiti, then zoos will have less money to devote to animal care.
**(P→Q)**
**P2)** Zoos must spend extra money cleaning graffiti.
**(P)**
**P3)** If zoos will have less money to devote to animal care, then vandalizing zoos increases the probability of harming the animals they keep.
**(Q→R)**
**C)** Therefore, vandalizing zoos increases the probability of harming the animals they keep.
**(∴R)**
**Proposition:**
>We should not exploit animals to any greater degree than we would tolerate for humans.
**Argument:**
**P1)** For all things, if a being has moral worth, then we should not exploit it to any greater degree than we would tolerate for humans.
**(∀x(Wx→Nx))**
**P2)** If animals dont have moral worth, then there exists a trait that is absent in animals such that if it were absent in humans, humans wouldnt have moral worth.
**(¬Wa→∃t(Ata→(Ath→¬Wh)))**
**P3)** There doesnt exist a trait that is absent in animals such that if it were absent in humans, humans wouldnt have moral worth.
**(¬∃t(Ata→(Ath→¬Wh)))**
**C)** Therefore, we should not exploit animals to any greater degree than we would tolerate for humans.
**(∴Na)**
**Proposition:**
>One's whims are not a sufficient justification for the termination of sentient human life.
**Argument:**
**P1)** If one consents to becoming pregnant or one consensually engages in sexual activity without contraception, then one is implicitly committed to at least accepting the average risks for the average pregnancy.
**(PQ→R)**
**P2)** One consents to becoming pregnant.
**(P)**
**P3)** One consensually engages in sexual activity without contraception.
**(Q)**
**P4)** If one is implicitly committed to at least accepting the average risks for the average pregnancy and one's pregnancy persists long enough for fetal sentience to develop and one's risk profile during pregnancy is not high, then one is morally bound to carrying the pregnancy to term.
**(R∧F∧¬H→M)**
**P5)** One's pregnancy persists long enough for fetal sentience to develop.
**(F)**
**P6)** One's risk profile during pregnancy is not high.
**(¬H)**
**P7)** If one is morally bound to carrying the pregnancy to term, then one's whims are not a sufficient justification for the termination of sentient human life.
**(M→¬W)**
**C)** Therefore, one's whims are not a sufficient justification for the termination of sentient human life.
**(∴¬W)**
**Proposition:**
>Efilists are committed to pragmatic natalism
**Argument:**
**P1)** If efilists abstaining from procreation maximally reduces rights violations, then efilists have sterilized all sentient life in the universe.
**(P→Q)**
**P2)** Efilists have not sterilized all sentient life in the universe.
**(¬Q)**
**P3)** If efilists abstaining from procreation does not maximally reduce rights violations and many more generations are required to sterilize all sentient life in the universe, then efilists should not abstain from procreation until all sentient life in the universe is sterilized.
**(¬P∧R→¬S)**
**P4)** Many more generations are required to sterilize all sentient life in the universe.
**(R)**
**P5)** If efilists should not abstain from procreation until all sentient life in the universe is sterilized, then efilists are committed to pragmatic natalism.
**(¬S→T)**
**C)** Therefore, efilists are committed to pragmatic natalism.
**(∴T)**
**Proposition:**
>Rewilding sentient animals is immoral.
**Argument:**
**P1)** For all things, if something has negative rights, then we should not defend it from rights violations to any lesser degree than we would tolerate for humans.
**(∀x(Wx→¬Nx))**
**P2)** Animals have negative rights.
**(Wa)**
**P3)** If we should not defend animals from rights violations to any lesser degree than we would tolerate for humans, then it is not permissible to subject animals to conditions that are likely to involve predation, starvation, or death due to environmental exposure to any greater degree than we would tolerate for humans.
**(¬Na→¬F)**
**P4)**it is not permissible to subject animals to conditions that are likely to involve predation, starvation, or death due to environmental exposure to any greater degree than we would tolerate for humans, then rewilding sentient animals is immoral.
**(¬F→R)**
**C)** Therefore, rewilding sentient animals is immoral.
**(∴R)**
**Proposition:**
>We are justified in displacing nature into non-existence.
**Argument:**
**P1)** If the natural world contains intolerable rights violations and we do not know if nature is net positive or net negative for utility and there is not any known practical means by which to end the rights violations beyond the use of force and the natural world is not currently instrumentally vital to facilitating human flourishing, then we are justified in displacing nature into non-existence.
**(P∧¬Q∧¬R∧¬S→T)**
**P2)** Nature entails intolerable rights violations.
**(P)**
**P3)** We do not know if nature is net positive or net negative for utility.
**(¬Q)**
**P4)** There is not any known practical means by which to end the rights violations beyond the use of force.
**(¬R)**
**P5)** The natural world is not currently instrumentally vital to facilitating human flourishing.
**(¬S)**
**C)** Therefore, we are justified in displacing nature into non-existence.
**(∴T)**
**Proposition:**
>Bivalves are not likely to be sentient.
**Argument:**
**P1)** Something counts as a brain if, and only if, something is a complex network of interconnected neurons, integrates neuronal pathways from multiple sensory organs, and presents with distinct functional regions or nuclei with white matter tracts that facilitate inter-regional communication.
**(∀x(Bx↔Px∧Qx∧(RxSx)))**
**P2)** Cerebral ganglia meet criteria one and three, but not criteria two and four.
**(Pc∧¬Qc∧Rc∧¬Sc)**
**P3)** If cerebral ganglia do not count as brains, then the corresponding brainless biological system into which the cerebral ganglia are integrated is not likely to be sentient.
**(¬Bc→∀x(¬Nx))**
**C)** Therefore, bivalves are not likely to be sentient.
**(∴¬Nb)**
#### Medical Science
**Proposition:**
>ApoB-containing lipoproteins dose-dependently cause atherosclerosis.
**Argument:**
**P1)** For all things, substance (x) dose-dependently causes atherosclerosis if, and only if, substance (x) consistently, linearly, and proportionately associates with increased plaque volume after adjustment or control over relevant confounders and covariates.
**(∀x(Px↔Qx))**
**P2)** ApoB-containing lipoproteins consistently, linearly, and proportionately associates with increased plaque volume after adjustment or control over relevant confounders and covariates.
**(Qw)**
**C)** Therefore, ApoB-containing lipoproteins dose-dependently cause atherosclerosis.
**(∴Pw)**
#### Agriculture
**Proposition:**
>Animal agriculture counts as predation.
**Argument:**
**P1)** For all things, an action (x) counts as predation if, and only if, an action (x) involves an animal regularly capturing, killing or subduing, and consuming, to the captor's benefit, another animal.
**(∀x∀y∀z(Px↔Qxyz∧(RxyzSxyz)∧Txyz))**
**P2)** Animal agriculture involves humans regularly capturing livestock.
**(Qahl)**
**P3)** Animal agriculture involves humans regularly killing or subduing livestock.
**(RahlSahl)**
**P4)** Animal agriculture involves humans regularly consuming, to the captors' benefit, livestock.
**(Tahl)**
**C)** Therefore, animal agriculture counts as predation.
**(∴Pa)**
**Proposition:**
>It is not known if cropland leads to more animal death than wildland.
**Argument:**
**P1)** If it is known that cropland leads to more animal death than wildland, then there is evidence that cropland leads to more animal death than wildland.
**(P→Q)**
**P2)** There is not evidence that cropland leads to more animal death than wildland.
**(¬Q)**
**C)** Therefore, it is not known that cropland leads to more animal death than wildland.
**(∴¬P)**
#### Theology
**Proposition:**
>Fine tuning is an infinitely regressive explanation for God.
**Argument:**
**P1)** If something is finely tuned, then something has a designer.
**(∀x(Fx→Dx))**
**P2)** God's constitution is finely tuned.
**(Fg)**
**P3)** If God's constitution has a designer, then fine tuning is an infinitely regressive explanation for God.
**(Dg→T)**
**C)** Therefore, fine tuning is an infinitely regressive explanation for God.
**(∴T)**

View file

@ -24,10 +24,15 @@
<font color="CC6600">
<b>(¬Na→¬F)</b>
<br />
<b>C)</b></font> Therefore, it is not permissible to subject animals to conditions that are likely to involve predation, starvation, or death due to environmental exposure to any greater degree than we would tolerate for humans.
<b>P4)</b></font>it is not permissible to subject animals to conditions that are likely to involve predation, starvation, or death due to environmental exposure to any greater degree than we would tolerate for humans, then rewilding sentient animals is immoral.
<br />
<font color="CC6600">
<b>(∴¬F)</b>
<b>(¬F→R)</b>
<br />
<b>C)</b></font> Therefore, rewilding sentient animals is immoral.
<br />
<font color="CC6600">
<b>(∴R)</b>
<br />
<br />
</font>

View file

@ -65,15 +65,15 @@ This involves a mistaken inference that because two categories share a property,
>**Form:** P implies Q, R implies Q; therefore, P implies R.
>**Example:** All dogs are mammals. All cats are mammals. Therefore, all dogs are cats.
>**Example:** If there is a dog, then it is a mammal. If there is a cat, then it is a mammal. Therefore, if there is a dog, then there is a cat.
#### 4. Illicit Major
This error is made when the conclusion improperly generalizes about all members of a category based on shared characteristics with a broader group.
>**Form:** All X are Y, all Z are Y; therefore, all Z are X.
>**Form:** All X are Y, all Z are Y; therefore, all X are Z.
>**Example:** All squares are rectangles. All rectangles have four sides. Therefore, all squares have four sides. (True, but the reasoning is invalid.)
>**Example:** All females are humans. All males are humans. Therefore, all females are male.
</div>
<div style="page-break-after: always;">
@ -92,10 +92,12 @@ This involves drawing a conclusion about two groups based on their separate excl
>**Form:** No P is Q, No R is Q; therefore, No P is R.
>**Example:** No cats are dogs, No birds are dogs; therefore, no cats are birds.
>**Example:** No Scottish people are English people. No Polish people are English people. Therefore, no Scottish people are Polish people.
#### 7. Fallacy of Four Terms
The fallacy of four terms is the formal fallacy that occurs when a syllogism has four (or more) terms rather than the requisite three, rendering it invalid.
>**Form:** P implies Q, R implies S; therefore, P implies S.
>**Example:** All humans are mammals. All dogs are pets. Therefore, all humans are pets.
@ -104,9 +106,9 @@ This involves drawing a conclusion about two groups based on their separate excl
This fallacy occurs when an argument erroneously includes four distinct terms in a categorical syllogism, preventing a proper conclusion.
>**Form:** No P is Q, All R are P; therefore, No R is Q.
>**Form:** No P is Q. All R are P. Therefore, no R is Q.
>**Example:** No fish are birds, all salmon are fish; therefore, no salmon are birds.
>**Example:** No Scottish people are English. All Americans are Scottish. Therefore, no Americans are English.
</div>
<div style="page-break-after: always;">
@ -116,4 +118,4 @@ This fallacy occurs when an argument erroneously includes four distinct terms in
# Hashtags
#debate
#debate_coursework
#debate_coursework

0
🥙 Nutrition Vault/Vitamin D2 and D3 bioactivity.md Normal file → Executable file
View file