标签:#c
找到 31077 篇相关文章
Re: I'm Begging You to Leave Your AI Note-Taker at Home
Why the rise of open source AI isn’t hurting Anthropic … yet
Open source models’ success isn’t coming at the expense of frontier labs. Instead, they each seem to capture two phases of the same life cycle.
Switching from PostgreSQL to ClickHouse for Improved Performance and Scalability
Momentic, the company behind an AI-driven software testing platform, recently rearchitected its caching system to handle over 2 million queries per day across 20 billion total entries, while maintaining an average response latency of around 250 ms. This improvement was made possible by transitioning from PostgreSQL to the column-oriented database ClickHouse. By Sergio De Simone
I Started Writing My Prediction Before Reading the AI's Answer. Here's What Happened.
So a few days ago I was in a comment thread arguing about whether AI is quietly ruining junior...
Microsoft joins AI cost-cutting trend by relying more on its own models
Microsoft is the latest Silicon Valley giant to cut back on its AI spending.
Stratagems #8: Alex Watched an AI Dashboard Take Over. He Kept the Keys Under the Table.
Deceive the enemy with an obvious approach that will take a very long time, while ambushing them...
A New Foundation for Tuxedo OS: Switching to Debian
yapyap
Own your voice again. Local-first voice & meeting recorder. Discussion | Link
Discord admits AI moderation bug wrongfully banned users over harmless images
The company confirmed that the issue had been affecting accounts since May, with an additional 200 users banned over the weekend before its team identified and fixed the problem.
Aura: Agents + Git + Intent IDE
The IDE for controlling AI coding agents with built in loops Discussion | Link
Amber the programming language compiled to Bash/Ksh/Zsh
Deir El-Medina Strikes
Google's Pixel 11 launch event is set for August 12, with possible price increases
Google's new phones could feature glowing LEDs and higher price tags.
Sixteen Failed Attempts to Write a Eulogy for My Father (2024)
Glimpse
The competitive intelligence agent Discussion | Link
FluxCD turns 10 today, stats and nostalgia
The New HTTP QUERY Method
If you've ever built a search endpoint, you've hit this wall. Your query has filters, sort orders, a nested set of facets, maybe a geo bounding box. It doesn't fit in a URL, and cramming it into query string params is ugly and fragile. So you reach for POST /search , send the whole thing as a JSON body, and quietly accept that you've just lied about what the request does. It's not creating anything. It's a read. But POST is the only tool that lets you attach a body without fighting the platform. That gap finally got filled. In June 2026 the IETF published RFC 10008 , which defines the HTTP QUERY method: a new verb built for exactly this case. The two bad options Every read that needs structured input has been stuck choosing between GET and POST, and both are wrong in their own way. GET is the semantically correct choice. It's safe (the client isn't asking to change anything), it's idempotent (retrying it is fine), and it's cacheable. The problem is the body. RFC 9110 is explicit that content in a GET request has no defined semantics , and sending one may cause some implementations to reject the request. So your query has to live in the URI, where you run into unknown length limits across proxies and servers, encoding overhead, and the query landing in access logs and browser history. POST solves the body problem and creates a new one. It carries any payload you want, but it's neither safe nor idempotent by definition. Intermediaries won't cache it, clients won't retry it automatically after a dropped connection, and anything inspecting traffic has to assume the request might have side effects. You get the body, you lose everything that made the request honest. QUERY is the missing third option: a method that carries a body and keeps the semantics of a read. What QUERY actually is The spec, authored by Julian Reschke, James Snell , and Mike Bishop, describes it in one sentence: A QUERY requests that the request target process the enclosed content in a safe and idempo
Big Tech data centers driving up power bills at America's Rust Belt factories
Show HN: Davit, a Apple Containers UI
Mostly vibe-coded Apple Containers front-end that I'd like to use myself. But if others want to use it, here's the source code.