Results 4 comments of John Heilman

Hasn't been tested, but hopefully works. Will be very ugly, but is good enough for me on my phone while on the treadmill/elliptical. Will be slowly adding more functionality with...

Why not just use powershell (Original idea from https://www.sastibe.de/2018/11/take-screenshots-straight-into-org-files-in-emacs-on-win10/) ``` ((windows-nt cygwin) (if (executable-find "powershell") "powershell -command \"Add-Type -AssemblyName System.Windows.Forms;[System.Windows.Forms.Clipboard]::GetImage().Save('%s', [System.Drawing.Imaging.ImageFormat]::Png);\"" (user-error "Failed to save image using powershell"))) ``` ;...

How about the following, or something similar? ``` import { defineConfig } from '@hey-api/openapi-ts'; import { loadEnv } from 'vite'; process.env = {...process.env, ...loadEnv(process.env.NODE_ENV || 'development', process.cwd(), '')}; export default...

tldr; I was using default ssh port with easy_client and it was automatically closing it as per [this check](https://github.com/alexgolec/schwab-py/blob/3976382cea46bd0fb9cd41bb06dd87dd14a194ca/schwab/auth.py#L146C1-L147C15), and was attributing the problem to multiprocess. Multiprocess seems to do...