- https://www.reddit.com/r/ObsidianMD/comments/puhl8v/sharing_articles_to_obsidian/
- https://www.reddit.com/r/selfhosted/comments/1geymmu/omnivoreapp_is_joining_elevenlabs_users_have/ludn0cw/
- Not easily forkable: omnivore-app/omnivore#25
- Readwise and instapaper may be pricey comparables? Wallabag with PikaPods?
- A sarcastic post about Omnivore's acquisition @[email protected] 🔗 https://mastodon.social/users/hynek/statuses/113389308364035896 Omnivore’s journey has just become incredible
Isolated script for syncing .env
with e.g. a tool.my_tool.env
table in pyproject.toml
.
Download env.py
to your project directory containing a pyproject.toml
with a table named tool.dev.env
and use uv
run this tool in an isolated environment.
uv run env.py
Or you can invoke the script directly from a pinned commit revision of this Gist on Windows,
"""Get fits and errors.""" | |
from functools import partial | |
from warnings import catch_warnings | |
from numpy import array, diagonal, full, inf, isinf, linspace, nan, sqrt, where | |
from scipy.optimize import OptimizeWarning, curve_fit | |
from scipy.stats import t | |
# Docs: https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.curve_fit.html |
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search] | |
"CortanaConsent"=dword:00000000 | |
"AllowSearchToUseLocation"=dword:00000000 | |
"BingSearchEnabled"=dword:00000000 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search] | |
"ConnectedSearchUseWebOverMeteredConnections"=dword:00000000 | |
"AllowCortana"=dword:00000000 |
<#.SYNOPSIS | |
Sync Python dependencies.#> | |
Param( | |
# Python version. | |
[string]$Version = '3.11' | |
) | |
$REQUIREMENTS = 'requirements.txt' | |
function Sync-Py { |
Process data exported from the C-Therm TCi thermal conductivity analyzer.
If you already have Python 3.11 and the Python launcher installed on Windows/Linux/MacOS, you may run process_data.py
with pipx
by first downloading it (or copy/pasting its contents into a locally-saved script) and running e.g.
py -3.11 -m pipx run process_data.py
Notes on actually calling Python from within Matlab, Matlab from within VSCode Jupyter notebooks, and version control of Matlab project folders with Git. These are hastily scribbled notes, not transformed into anything cohesive quite yet.
- The official Mathworks-authored project on the File Exchange
- See the discussion tab for an issue with the Open Weather API
- The official repository related to this project
- The GitHub issue I opened detailing how to fix it locally
- My fork of that repo, with the example partially worked out
Convert a single-card Trello JSON export to Markdown.
Download this Gist, install the $PYTHON_VERSION
seen in setup.ps1
, and run setup.ps1
if you have cross-platform PowerShell installed, or equivalently in a terminal of your choice:
- If, for example,
$PYTHON_VERSION
is3.11
, runpy -3.11 -m venv .venv
in Windows or on UNIX-like/MacOS systems with the Python Launcher installed. - Activate the virtual environment with
.venv/scripts/activate
on Windows or.venv/bin/activate
on UNIX-like/MacOS systems.
<# | |
.SYNOPSIS | |
One-time setup for Python dev tools on Windows. Installs Python, VSCode, Windows Terminal, PowerShell, and Git. | |
.DESCRIPTION | |
Usage: | |
- Ensure `winget` (Microsoft App Insstaller) is installed from the Windows store or at | |
https://apps.microsoft.com/store/detail/app-installer/9NBLGGH4NNS1 |