From 483a89e1ee774f12db56db72cfc823f8b0bb425b Mon Sep 17 00:00:00 2001 From: Dane Sabo Date: Sat, 29 Mar 2025 15:34:36 -0400 Subject: [PATCH 1/9] vault backup: 2025-03-29 15:34:36 --- ...anesabo%2FDocuments%2FDane%27s%20Vault.vim | 43 +++++++++++++++ .sessions/Digital_Control_Theory.vim | 55 ++++++++++++++++++- 2 files changed, 97 insertions(+), 1 deletion(-) create mode 100644 .sessions/%2Fhome%2Fdanesabo%2FDocuments%2FDane%27s%20Vault.vim diff --git a/.sessions/%2Fhome%2Fdanesabo%2FDocuments%2FDane%27s%20Vault.vim b/.sessions/%2Fhome%2Fdanesabo%2FDocuments%2FDane%27s%20Vault.vim new file mode 100644 index 00000000..541ed4d9 --- /dev/null +++ b/.sessions/%2Fhome%2Fdanesabo%2FDocuments%2FDane%27s%20Vault.vim @@ -0,0 +1,43 @@ +let SessionLoad = 1 +let s:so_save = &g:so | let s:siso_save = &g:siso | setg so=0 siso=0 | setl so=-1 siso=-1 +let v:this_session=expand(":p") +silent only +silent tabonly +cd ~/Documents/Dane\'s\ Vault +if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == '' + let s:wipebuf = bufnr('%') +endif +let s:shortmess_save = &shortmess +if &shortmess =~ 'A' + set shortmess=aoOA +else + set shortmess=aoO +endif +argglobal +%argdel +argglobal +enew +setlocal fdm=manual +setlocal fde=0 +setlocal fmr={{{,}}} +setlocal fdi=# +setlocal fdl=0 +setlocal fml=1 +setlocal fdn=20 +setlocal fen +tabnext 1 +if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0 && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal' + silent exe 'bwipe ' . s:wipebuf +endif +unlet! s:wipebuf +set winheight=1 winwidth=20 +let &shortmess = s:shortmess_save +let s:sx = expand(":p:r")."x.vim" +if filereadable(s:sx) + exe "source " . fnameescape(s:sx) +endif +let &g:so = s:so_save | let &g:siso = s:siso_save +set hlsearch +doautoall SessionLoadPost +unlet SessionLoad +" vim: set ft=vim : diff --git a/.sessions/Digital_Control_Theory.vim b/.sessions/Digital_Control_Theory.vim index ff5c6297..f35a9731 100644 --- a/.sessions/Digital_Control_Theory.vim +++ b/.sessions/Digital_Control_Theory.vim @@ -13,10 +13,29 @@ if &shortmess =~ 'A' else set shortmess=aoO endif +badd +49 Project/Project_Proposal.md argglobal %argdel +edit Project/Project_Proposal.md +let s:save_splitbelow = &splitbelow +let s:save_splitright = &splitright +set splitbelow splitright +wincmd _ | wincmd | +vsplit +1wincmd h +wincmd w +let &splitbelow = s:save_splitbelow +let &splitright = s:save_splitright +wincmd t +let s:save_winminheight = &winminheight +let s:save_winminwidth = &winminwidth +set winminheight=0 +set winheight=1 +set winminwidth=0 +set winwidth=1 +exe 'vert 1resize ' . ((&columns * 112 + 112) / 224) +exe 'vert 2resize ' . ((&columns * 111 + 112) / 224) argglobal -enew setlocal fdm=manual setlocal fde=0 setlocal fmr={{{,}}} @@ -25,6 +44,38 @@ setlocal fdl=0 setlocal fml=1 setlocal fdn=20 setlocal fen +silent! normal! zE +let &fdl = &fdl +let s:l = 49 - ((45 * winheight(0) + 32) / 65) +if s:l < 1 | let s:l = 1 | endif +keepjumps exe s:l +normal! zt +keepjumps 49 +normal! 0345| +wincmd w +argglobal +if bufexists(fnamemodify("term://~/Documents/Dane\'s\ Vault/300s\ School/ME\ 2046\ -\ Digital\ Control\ Theory//24828:/bin/bash", ":p")) | buffer term://~/Documents/Dane\'s\ Vault/300s\ School/ME\ 2046\ -\ Digital\ Control\ Theory//24828:/bin/bash | else | edit term://~/Documents/Dane\'s\ Vault/300s\ School/ME\ 2046\ -\ Digital\ Control\ Theory//24828:/bin/bash | endif +if &buftype ==# 'terminal' + silent file term://~/Documents/Dane\'s\ Vault/300s\ School/ME\ 2046\ -\ Digital\ Control\ Theory//24828:/bin/bash +endif +balt Project/Project_Proposal.md +setlocal fdm=manual +setlocal fde=0 +setlocal fmr={{{,}}} +setlocal fdi=# +setlocal fdl=0 +setlocal fml=1 +setlocal fdn=20 +setlocal fen +let s:l = 125 - ((64 * winheight(0) + 32) / 65) +if s:l < 1 | let s:l = 1 | endif +keepjumps exe s:l +normal! zt +keepjumps 125 +normal! 0 +wincmd w +exe 'vert 1resize ' . ((&columns * 112 + 112) / 224) +exe 'vert 2resize ' . ((&columns * 111 + 112) / 224) tabnext 1 if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0 && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal' silent exe 'bwipe ' . s:wipebuf @@ -32,6 +83,8 @@ endif unlet! s:wipebuf set winheight=1 winwidth=20 let &shortmess = s:shortmess_save +let &winminheight = s:save_winminheight +let &winminwidth = s:save_winminwidth let s:sx = expand(":p:r")."x.vim" if filereadable(s:sx) exe "source " . fnameescape(s:sx) From 2a45ad78a9b4fec037b30e838f64975a9a300e3c Mon Sep 17 00:00:00 2001 From: Dane Sabo Date: Sat, 29 Mar 2025 15:58:43 -0400 Subject: [PATCH 2/9] vault backup: 2025-03-29 15:58:43 --- 9999 Personal/Z/(Sale) Transmission Swap.md | 22 +++++++++++++++++++++ 9999 Personal/Z/The Ledger.md | 0 2 files changed, 22 insertions(+) create mode 100644 9999 Personal/Z/(Sale) Transmission Swap.md create mode 100644 9999 Personal/Z/The Ledger.md diff --git a/9999 Personal/Z/(Sale) Transmission Swap.md b/9999 Personal/Z/(Sale) Transmission Swap.md new file mode 100644 index 00000000..a82035d7 --- /dev/null +++ b/9999 Personal/Z/(Sale) Transmission Swap.md @@ -0,0 +1,22 @@ + +| Part | Sell? | Price | +| --------------------------------- | ----- | ----- | +| FS5W71C | Yes | 500 | +| Dust Plates | Yes | 0 | +| Driveshaft | Yes | 120 | +| Flywheel | Yes | 50 | +| Flywheel to Crank Bolts | Yes | 0 | +| Speedometer Cable | Yes | 10 | +| Transmission mount / cross member | Yes | 80 | +| Clutch Pedal Assembly | NO | | +| Brake Pedal Assembly | NO | | +| Master Cylinder | Yes | 5 | +| Slave Cylinder | Yes | 5 | +| Clutch Dampener | Lost | | +| Clutch Hydraulic Line | Yes | 0 | +| Front Down Pipe | Lost | | +| ECCS | Yes | 100 | +| Clutch Pressure Plate | Yes | 25 | +| Clutch Pilot Bushing | Yes | 0 | +| Clutch Throwout Bearing | Yes | 0 | +| **TOTAL:** | | $895 | diff --git a/9999 Personal/Z/The Ledger.md b/9999 Personal/Z/The Ledger.md new file mode 100644 index 00000000..e69de29b From 8786cb71a38a75f71225d44580cafe4ed4955c2a Mon Sep 17 00:00:00 2001 From: Dane Sabo Date: Sat, 29 Mar 2025 16:00:48 -0400 Subject: [PATCH 3/9] vault backup: 2025-03-29 16:00:48 --- 9999 Personal/Z/Z - README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/9999 Personal/Z/Z - README.md b/9999 Personal/Z/Z - README.md index 9fa1745c..cd46ea1a 100644 --- a/9999 Personal/Z/Z - README.md +++ b/9999 Personal/Z/Z - README.md @@ -12,6 +12,8 @@ - [[Repair OEM Brakes.md]] - [[Replace bushings.md]] - [[Replace OEM dampers front and rear.md]] +- [[(Sale) Transmission Swap.md]] +- [[The Ledger.md]] - [[Untitled.md]] - [[What transmission will solve all my problems?.md]] - [[Wheels, Tires, and Spacers.md]] From 079112b8d79278bb242469998fd71321ef4b2fe3 Mon Sep 17 00:00:00 2001 From: Dane Sabo Date: Sat, 29 Mar 2025 16:14:48 -0400 Subject: [PATCH 4/9] vault backup: 2025-03-29 16:14:48 --- .../Z/What transmission will solve all my problems?.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/9999 Personal/Z/What transmission will solve all my problems?.md b/9999 Personal/Z/What transmission will solve all my problems?.md index f394c897..e0518bb0 100644 --- a/9999 Personal/Z/What transmission will solve all my problems?.md +++ b/9999 Personal/Z/What transmission will solve all my problems?.md @@ -64,5 +64,5 @@ Cons: transmission is rare, not necessarily easy to get. Too Expensive # The Plan - AR5 Transmission -- [ ] Find used AR5 Transmission #Drivetrain 📅 2025-05-01 -- [ ] Purchase AR5 Transmission Components #Drivetrain 📅 2025-05-01 +- [x] Find used AR5 Transmission #Drivetrain 📅 2025-05-01 ✅ 2025-03-29 +- [x] Purchase AR5 Transmission Components #Drivetrain 📅 2025-05-01 ✅ 2025-03-29 From d98481a42245cbb74407b2bb25d6153592b9aa47 Mon Sep 17 00:00:00 2001 From: Dane Sabo Date: Sun, 30 Mar 2025 19:32:47 -0400 Subject: [PATCH 5/9] vault backup: 2025-03-30 19:32:47 --- ...ransmission will solve all my problems?.md | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/9999 Personal/Z/What transmission will solve all my problems?.md b/9999 Personal/Z/What transmission will solve all my problems?.md index e0518bb0..709155fa 100644 --- a/9999 Personal/Z/What transmission will solve all my problems?.md +++ b/9999 Personal/Z/What transmission will solve all my problems?.md @@ -66,3 +66,23 @@ Too Expensive # The Plan - AR5 Transmission - [x] Find used AR5 Transmission #Drivetrain 📅 2025-05-01 ✅ 2025-03-29 - [x] Purchase AR5 Transmission Components #Drivetrain 📅 2025-05-01 ✅ 2025-03-29 + +## Purchased Items + +| Part | Vendor | Expected Cost | Real Cost | | +| ---------------------- | ------------------------ | ------------- | --------- | --- | +| AR5 Transmission | Facebook Marketplace | $1200 | $900 | | +| GForce Adapter | Summit Racing | $279.20 | $249.59 | | +| T56 Clutch Kit | RockAuto | $200 | $170.79 | | +| Slave Cylinder | Came w/ Trans | $50 | $0 | | +| Flywheel | Came w/ Kit | $75 | $0 | | +| Clutch Hydraulic Line | RockAuto | $63.89 | $64.79 | | +| Clutch Alignment Tool | Came w/ Kit | $1.55 | $0 | | +| ==Transmission Fluid== | | ==$20== | | | +| ==4L80E Bellhousing== | ==Facebook Marketplace== | ==$50== | | | +| Transmission Mount | RockAuto | $0 | $10.68 | | +| Clutch Master Cylinder | RockAuto | $0 | $22.89 | | +| RockAuto Shipping | RockAuto | $0 | $39.97 | | +| RockAuto Taxes | RockAuto | $0 | $22.32 | | +| **TOTAL:** | | $1,889.64 | $1481.03 | | +| | | | | | From d5512bf3d0ffb1c345aac23adf2a823bbd7375c5 Mon Sep 17 00:00:00 2001 From: Dane Sabo Date: Sun, 30 Mar 2025 19:40:23 -0400 Subject: [PATCH 6/9] vault backup: 2025-03-30 19:40:23 --- .../Z/What transmission will solve all my problems?.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/9999 Personal/Z/What transmission will solve all my problems?.md b/9999 Personal/Z/What transmission will solve all my problems?.md index 709155fa..926fac4f 100644 --- a/9999 Personal/Z/What transmission will solve all my problems?.md +++ b/9999 Personal/Z/What transmission will solve all my problems?.md @@ -78,11 +78,11 @@ Too Expensive | Flywheel | Came w/ Kit | $75 | $0 | | | Clutch Hydraulic Line | RockAuto | $63.89 | $64.79 | | | Clutch Alignment Tool | Came w/ Kit | $1.55 | $0 | | -| ==Transmission Fluid== | | ==$20== | | | +| ==Transmission Fluid== | | ==$20== | $82.56 | | | ==4L80E Bellhousing== | ==Facebook Marketplace== | ==$50== | | | | Transmission Mount | RockAuto | $0 | $10.68 | | | Clutch Master Cylinder | RockAuto | $0 | $22.89 | | | RockAuto Shipping | RockAuto | $0 | $39.97 | | | RockAuto Taxes | RockAuto | $0 | $22.32 | | -| **TOTAL:** | | $1,889.64 | $1481.03 | | +| **TOTAL:** | | $1,889.64 | $1563.59 | | | | | | | | From ecd9fb41737d749286566488eca8ff70cf4e05cf Mon Sep 17 00:00:00 2001 From: Dane Sabo Date: Sun, 30 Mar 2025 19:45:10 -0400 Subject: [PATCH 7/9] vault backup: 2025-03-30 19:45:10 --- 9999 Personal/Z/(Sale) Transmission Swap.md | 1 + 1 file changed, 1 insertion(+) diff --git a/9999 Personal/Z/(Sale) Transmission Swap.md b/9999 Personal/Z/(Sale) Transmission Swap.md index a82035d7..7703f428 100644 --- a/9999 Personal/Z/(Sale) Transmission Swap.md +++ b/9999 Personal/Z/(Sale) Transmission Swap.md @@ -1,3 +1,4 @@ +Parts list according to https://www.xenonzcar.com/z31/autotomanualswap.html | Part | Sell? | Price | | --------------------------------- | ----- | ----- | From 671b7a265eceaa23b6562303cbb9fe64aef83867 Mon Sep 17 00:00:00 2001 From: Dane Sabo Date: Sun, 30 Mar 2025 19:49:50 -0400 Subject: [PATCH 8/9] vault backup: 2025-03-30 19:49:50 --- 9999 Personal/Z/(Sale) VG30E Engine Parts.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 9999 Personal/Z/(Sale) VG30E Engine Parts.md diff --git a/9999 Personal/Z/(Sale) VG30E Engine Parts.md b/9999 Personal/Z/(Sale) VG30E Engine Parts.md new file mode 100644 index 00000000..75ed409e --- /dev/null +++ b/9999 Personal/Z/(Sale) VG30E Engine Parts.md @@ -0,0 +1,8 @@ + +| Part | Sold? | Price | +| ---------------------------------------- | ----- | ----- | +| Complete Intake (Plenum, runners, cover) | | | +| Intake Plenum Cover | | | +| Intake Plenum | | | +| Intake Runners | | | +| Valve Covers | | | From c131f59283880ebc2485d7f1634f425103e3a6b7 Mon Sep 17 00:00:00 2001 From: Dane Sabo Date: Sun, 30 Mar 2025 19:51:55 -0400 Subject: [PATCH 9/9] vault backup: 2025-03-30 19:51:55 --- 9999 Personal/Z/Z - README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/9999 Personal/Z/Z - README.md b/9999 Personal/Z/Z - README.md index cd46ea1a..81892206 100644 --- a/9999 Personal/Z/Z - README.md +++ b/9999 Personal/Z/Z - README.md @@ -13,6 +13,7 @@ - [[Replace bushings.md]] - [[Replace OEM dampers front and rear.md]] - [[(Sale) Transmission Swap.md]] +- [[(Sale) VG30E Engine Parts.md]] - [[The Ledger.md]] - [[Untitled.md]] - [[What transmission will solve all my problems?.md]]