TIL you can run GPT-OSS 20B on a phone! This is on Snapdragon phones with 16GB or more of GPU-accessible memory – I didn't realize they had the same unified CPU-GPU memory trick that Apple Silicon has (The largest iPhone 17 still maxes out at 12GB, so not enough RAM to run https://
x.com/nexa_ai/status
/nexa_ai/status/1975232300985291008
…
@simonw
-
Running GPT-OSS 20B on Snapdragon Phones with GPU Memory
By
–
-
Snapdragon Phones Now Support 16GB GPU-Accessible RAM
By
–
Whoa! 16GB of RAM needed – I hadn't realized there were Snapdragon phones out there with that much GPU-accessible RAM, so TIL! https://
x.com/nexa_ai/status
/nexa_ai/status/1975233621691924962
… -
Anthropic’s exfiltration attack prevention and Gmail integration security
By
–
Anthropic seem to have a good handle on preventing exfoliation attacks (one leg of the lethal trifecta) so I'll use their Gmail integration but I'm careful to turn it off unless I deliberately want to search email
-
Claude Extracts All 2024 Travel and Payment Data
By
–
I asked Claude to find every flight and hotel booking I made in 2024 and it seemed to get them all, plus how much they cost and if I paid cash or credit card points
-
University Students Lacking Basic Computer File System Knowledge
By
–
Conceptual! Apparently students often arrive at university these days not knowing what a file is
-
File Literacy Challenge for CLI Coding Agents
By
–
I imagine one of the bigger challenges here is around file literacy: if you don't have a reasonably strong grip on files and folders, you'll have a very tough time and understanding how to have a CLI coding agent work with them for you
-
Claude Code Implements Plugin Pattern for AI Integration
By
–
And today it's Claude Code's implementation of a similar pattern, which they're calling plugins https://
x.com/claudeai/statu
/claudeai/status/1976332881409737124
… -
Gemini Extensions Release Highlights Rapid Coding Agent Tool Competition
By
–
It's interesting how close together the feature releases are from the different coding agent tools – here's Gemini extensions from yesterday https://
x.com/googlecloudtec
/googlecloudtech/status/1975931556804935870
… -
Fast Execution with Dependency-Based Environment Caching
By
–
It creates a dedicated environment somewhere which I think it reuses for future executions, provided none of the dependencies have changed Whatever it's doing it is FAST after the first run
-
UV Recipe for Python Testing with PyProject
By
–
I figured out a uv recipe for running tests for any project with pyproject.toml or setuppy using any Python version: uv run –python 3.14 –isolated –with-editable '.[test]' pytest I've wrapped it in a uv-test script: uv-test -p 3.11 Full details: