ChatGPT Developer Mode: Full MCP client access
platform.openai.com
Show HN: Term.everything – Run any GUI app in the terminal
github.com
KDE launches its own distribution (again)
lwn.net
Pontevedra, Spain declares its entire urban area a "reduced traffic zone"
greeneuropeanjournal.eu
Defeating Nondeterminism in LLM Inference
thinkingmachines.ai
Christie's Deletes Digital Art Department
news.artnet.com
The HackberryPi CM5 handheld computer
github.com
Launch HN: Recall.ai (YC W20) – API for meeting recordings and transcripts
Mux (YC W16) Is Hiring Engineering ICs and Managers
mux.com
Dotter: Dotfile manager and templater written in Rust
github.com
OrioleDB Patent: now freely available to the Postgres community
supabase.com
Show HN: Haystack – Review pull requests like you wrote them yourself
haystackeditor.com
Longhorn – A Kubernetes-Native Filesystem
vegard.blog.engen.priv.no
I didn't bring my son to a museum to look at screens
sethpurcell.com
Clojure's Solutions to the Expression Problem
infoq.com
Jiratui – A Textual UI for interacting with Atlassian Jira from your shell
jiratui.sh
Harvey Mudd Miniature Machine
cs.hmc.edu
"No Tax on Tips" Includes Digital Creators, Too
hollywoodreporter.com
Show HN: HumanAlarm – Real people knock on your door to wake you up
humanalarm.com
Show HN: TailGuard – Bridge your WireGuard router into Tailscale via a container
github.com
UGMM-NN: Univariate Gaussian Mixture Model Neural Network
arxiv.org
Kerberoasting
blog.cryptographyengineering.com
Zoox robotaxi launches in Las Vegas
zoox.com
Charlie Kirk killed at event in Utah
nbcnews.com
I was constantly switching between my terminal and ChatGPT/Claude/Gemini for code help. Built llmswap 4.1.1 to fix this.
Now I just type: llmswap generate "command I need"
Real examples that save hours:
Site emergency - needed to debug compressed logs:
llmswap generate "grep through gzipped nginx logs for errors"
Got: zgrep -i "error\|fail" /var/log/nginx/*.gz | head -50
That regex everyone googles:
llmswap generate "extract all IP addresses from log file"
Got: grep -oE '([0-9]{1,3}\.){3}[0-9]{1,3}' access.log | sort | uniq -c
Complex configs? No problem:
llmswap generate "docker compose for Prometheus Grafana monitoring" > stack.yml
80 lines of production-ready YAML.
The killer feature - works INSIDE vim:
:r !llmswap generate "MongoDB create user with read/write access"
Got: db.createUser({user:"appuser",pwd:"password",roles:[{role:"readWrite",db:"myapp"}]})
Code appears at cursor. No browser. No copy-paste.
Supports 8 providers (OpenAI, Claude, Gemini, Groq, IBM Watson, Ollama, etc). Use whatever API keys you already have. No additional subscriptions.
GitHub: https://github.com/sreenathmmenon/llmswap
PyPI: https://pypi.org/project/llmswap/