Caleb Gross
Caleb Gross
Think I got it working. ```bash $ cat iss-5.jq | go run cmd/jqfmt/main.go def count_uplinks(leaves): reduce leaves[] as $leaf ({}; .[$leaf.leaf_switch] += 1); .[0] | map(map_values(count_uplinks(.))) ``` Uncommented some func-printed...
@mogenson—thanks so much for [this](https://github.com/Hammerspoon/hammerspoon/issues/3698#issuecomment-2509397564). It's the only solution that has worked for me using yabai post-Sequoia. Window title seems to be working okay; will let you know otherwise.
Just decided to move to Aerospace this week because of this issue. No regrets, working great.
I found some macOS log events that appear to be associated with various applications that require YubiKey touch: https://github.com/noperator/dotfiles/blob/a7ddfa91eb1ec6443deb0b5133051cb4b927ef63/LaunchAgents/yklogs.sh#L9-L13 When waiting for FIDO2 touch, we'll see this message logged once...
No problem. I've been needing this on macOS for years and finally spent an afternoon digging into it :) I'm mildly interested in integrating the technique into this project and...
Created a very simple CLI tool for macOS: https://github.com/noperator/yknotify Works like this: ``` 𝄢 yknotify {"ts":"2025-02-12T20:09:03Z","type":"FIDO2"} {"ts":"2025-02-12T20:09:14Z","type":"OpenPGP"} ``` Gonna use it for a while and make sure the technique is...
Any idea why the verification URI/code aren't printing? https://github.com/BerriAI/litellm/blob/e5d2bf94709cb908bda4a452d68dd215629eea52/litellm/llms/github_copilot/authenticator.py#L301-L303 Here's how I'm installing/running: ``` python3 -m pip install "git+https://github.com/SmartManoj/litellm.git@litellm_dev_03_05_2025_contributor_prs#egg=litellm[proxy]" python3 -m pip list | grep litellm litellm 1.69.3 litellm-enterprise 0.1.3...
Is the idea here that, instead of just using `langchain_community.document_loaders.WebBaseLoader._scrape()` (below), we also optionally use something like [`AsyncChromiumLoader`](https://python.langchain.com/docs/integrations/document_loaders/async_chromium/)? https://github.com/open-webui/open-webui/blob/4bc9904b3cd0726d3f9c3cbaeade972cf167b6c4/backend/open_webui/retrieval/web/utils.py#L57-L64 In addition to loading results dynamically, I'm also interested in adding...