From 4af6b491157de6ca4193820729e2b0c6aa2c80a5 Mon Sep 17 00:00:00 2001 From: Dane Sabo Date: Mon, 18 Aug 2025 15:51:41 -0400 Subject: [PATCH] Auto sync: 2025-08-18 15:51:41 (4 files changed) M .sessions/nvim_config.vim M "Zettelkasten/Fleeting Notes/Daily/2025-08-18.md" M "Zettelkasten/Hub Notes/HUB-20250818131731-logics.md" M "Zettelkasten/Permanent Notes/20250818132007-propositional-logic.md" --- .sessions/nvim_config.vim | 17 +++++++----- .../Fleeting Notes/Daily/2025-08-18.md | 19 +++++++++++-- .../Hub Notes/HUB-20250818131731-logics.md | 2 +- .../20250818132007-propositional-logic.md | 27 +++++++++++++++++-- 4 files changed, 53 insertions(+), 12 deletions(-) diff --git a/.sessions/nvim_config.vim b/.sessions/nvim_config.vim index 67053a193..5220a3e11 100644 --- a/.sessions/nvim_config.vim +++ b/.sessions/nvim_config.vim @@ -13,13 +13,16 @@ if &shortmess =~ 'A' else set shortmess=aoO endif -badd +211 ~/.config/nvim/lua/custom/plugins.lua -badd +9 custom/language_specific_commands/markdown.lua +badd +141 ~/.config/nvim/lua/custom/plugins.lua +badd +27 ~/.config/nvim/lua/custom/language_specific_commands/markdown_and_tex.lua +badd +37 ~/.config/nvim/lua/custom/configs/lspconfig.lua +badd +2 custom/init.lua +badd +11 custom/mappings.lua argglobal %argdel -edit ~/.config/nvim/lua/custom/plugins.lua +edit ~/.config/nvim/lua/custom/configs/lspconfig.lua argglobal -balt custom/language_specific_commands/markdown.lua +balt ~/.config/nvim/lua/custom/language_specific_commands/markdown_and_tex.lua setlocal foldmethod=manual setlocal foldexpr=v:lua.vim.treesitter.foldexpr() setlocal foldmarker={{{,}}} @@ -30,12 +33,12 @@ setlocal foldnestmax=20 setlocal foldenable silent! normal! zE let &fdl = &fdl -let s:l = 211 - ((47 * winheight(0) + 28) / 57) +let s:l = 37 - ((36 * winheight(0) + 28) / 57) if s:l < 1 | let s:l = 1 | endif keepjumps exe s:l normal! zt -keepjumps 211 -normal! 011| +keepjumps 37 +normal! 059| tabnext 1 if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0 && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal' silent exe 'bwipe ' . s:wipebuf diff --git a/Zettelkasten/Fleeting Notes/Daily/2025-08-18.md b/Zettelkasten/Fleeting Notes/Daily/2025-08-18.md index 72027a2ea..c024eca4b 100644 --- a/Zettelkasten/Fleeting Notes/Daily/2025-08-18.md +++ b/Zettelkasten/Fleeting Notes/Daily/2025-08-18.md @@ -3,7 +3,7 @@ id: 2025-08-18 title: Daily — 2025-08-18 type: daily created: 2025-08-18T17:12:19Z -modified: 2025-08-18T17:30:15Z +modified: 2025-08-18T18:08:49Z tags: [daily] --- @@ -23,6 +23,21 @@ neovim ## Tasks -- [ ] +- ## Notes + +Notes from Babay meeting: + +Emerson is going to upgrade the Ovation system in Cole's +group. We're looking for controllers and things to use. +Ideas from Babay's group: + +- Protocols: MODBUS and DNP3, HART protocol. Highway +Addressable Remote something something. Similar to MODBUS +and DNP3 in principal. + +- Instrument light panel. + +- Testbed before EIC? What tests can we do before going to +EIC? diff --git a/Zettelkasten/Hub Notes/HUB-20250818131731-logics.md b/Zettelkasten/Hub Notes/HUB-20250818131731-logics.md index ef46f78be..65e9c52ae 100644 --- a/Zettelkasten/Hub Notes/HUB-20250818131731-logics.md +++ b/Zettelkasten/Hub Notes/HUB-20250818131731-logics.md @@ -3,7 +3,7 @@ id: HUB-20250818131731 title: Logics type: hub created: 2025-08-18T17:17:31Z -modified: 2025-08-18T17:21:45Z +modified: 2025-08-18T19:44:30Z tags: [hub] aliases: [] --- diff --git a/Zettelkasten/Permanent Notes/20250818132007-propositional-logic.md b/Zettelkasten/Permanent Notes/20250818132007-propositional-logic.md index 263ea9ee7..664dc1798 100644 --- a/Zettelkasten/Permanent Notes/20250818132007-propositional-logic.md +++ b/Zettelkasten/Permanent Notes/20250818132007-propositional-logic.md @@ -3,13 +3,36 @@ id: 20250818132007 title: Propositional Logic type: permanent created: 2025-08-18T17:20:07Z -modified: 2025-08-18T17:41:52Z +modified: 2025-08-18T19:42:07Z tags: [] --- # Propositional Logic Propositional logic makes statements saying things like 'if -x, then y'. Here's some examples: +x, then y'. They are statements that are either **true or +false**, and have binary variables (P, Q, R, X, Y, etc...) + +Here's some examples: + +*If x, then y.* $$x\rightarrow y$$ + +*If x and y, then z.* + +$ (x \wedge y) \rightarrow z $ + +*Either the pump is on or the power is out.* + +$ Pump \oplus \neg Power $ + +The pump is on and water is flowing if and only if the power +is on. + +$( Pump \wedge Water) \leftrightarrow Power$ + + +Propositional logic is expanded upon by [[Propositional +Logic]]. +