Judge issues temporary pause while he considers Trump’s request to revise his libel lawsuit against BBC
A federal judge has temporarily halted an order requiring Donald Trump to turn over detailed financial information about his business empire to the BBC as part of an ongoing libel lawsuit.
US district judge Roy Altman issued the temporary pause while he considers Trump’s request to revise and narrow parts of his lawsuit against the BBC over a 2024 documentary that aired in the UK.
Continue reading...Your developers want AI coding agents. Your source code is regulated IP that can't be sent to a third-party AI service, and your compliance team has said so in writing. The usual escape hatch, standing up your own GPU cluster and running the models yourself, means buying scarce hardware, hiring a team to operate it, and still trailing the frontier models by months. So you do nothing, and your teams fall behind the ones that adopted AI a year ago.
GitLab Duo Self-Hosted can now use Privatemode AI as its model provider. Privatemode runs state-of-the-art models inside confidential-computing hardware, so prompts, source code, and completions stay encrypted end-to-end, including during inference. You point GitLab Duo's AI Gateway at the Privatemode proxy, and your developers get the same Duo features they'd get from any model, with one difference that matters to a regulated organization: The code never leaves an encrypted boundary, and no third party can read it.
AI coding assistance has moved well past autocomplete. GitLab Duo Agent Platform runs multi-step work: It reviews merge requests, refactors across files, generates and runs tests, drives agentic flows as CI jobs, and much more. That is a real shift in how teams ship, and it compounds. The teams using it review faster and spend less time on boilerplate.
The catch is that every one of those features sends your prompts and your source code to a model provider. For a team working on proprietary code, regulated software, or sensitive IP, that single fact is disqualifying.
For these organizations, source code is core intellectual property, and where it gets processed is a contractual, sectoral, and regulatory question, not a convenience one. A bank's trading algorithms, a medical-device vendor's firmware, a defense contractor's control software: Sending that intellectual property to an external AI service can breach IP protections, data-processing agreements, and sector rules in one step.
The pressure comes from several directions at once. NIS2 and Digital Operational Resilience Act (DORA) raise the bar on operational resilience and third-party risk across critical infrastructure and financial services. GDPR governs how personal data in code and logs is processed. Sector regimes such as BaFin supervision in German finance, BSI C5 as a procurement baseline, and healthcare data rules add their own constraints. And many European organizations treat data sovereignty as a first-order requirement regardless of any single regulation.
The segments feeling this most are financial services, healthcare and pharma, defense, the public sector, and critical infrastructure. GitLab Self-Hosted exists precisely so this code never has to leave a trusted perimeter. Adding AI to the workflow shouldn't quietly undo that.
A self-hosted team that wants AI coding assistance has three conventional options, and each one has costs the regulated buyer can't easily pay.
| Public AI SaaS | VPC / private-cloud AI | Run your own LLM stack | |
|---|---|---|---|
| Source code leaves your perimeter | Yes | Yes (to the operator) | No |
| Guarantee type | Contractual (terms of service) | Contractual (operator + cloud) | Self-enforced |
| Sees your plaintext | The provider | The operator and cloud provider | Only you |
| Infrastructure burden | None | Low | High: GPUs, model ops, updates |
| Keeps pace with frontier models | Yes | Usually | Rarely, you lag the frontier |
The comparison table shows that public AI SaaS and VPC options expose code and rely on contractual guarantees, while running your own stack keeps code private but carries heavy GPU and model-operations burden.
The honest summary: Public SaaS is off the table because the code leaves the building. A VPC-isolated or private-cloud service reduces exposure but still hands plaintext to the operator and the underlying cloud provider. At the same time, a contract is a promise, but not a cryptographic guarantee. Running your own models keeps the code private but is expensive to buy, expensive to staff, and structurally behind the best available models. Faced with that, most regulated organizations adopt AI narrowly or not at all.
The question becomes: How do you give developers modern AI coding agents without source code leaving the perimeter, and without operating an LLM stack yourself? Answering it takes a different kind of guarantee than a contract can provide, one enforced by hardware.
Confidential computing keeps data encrypted in memory, while it's being processed, using a hardware-based trusted execution environment (TEE), an isolated region of a CPU or GPU that even the operating system, the hypervisor, and the machine's operator cannot read into. The relevant hardware here is AMD SEV or Intel TDX on the CPU side, paired with NVIDIA Confidential Computing on the GPU. Data is encrypted in transit and at rest with AES-256, and it's only ever decrypted inside the TEE.
The piece that turns this from a promise into a guarantee is remote attestation. Before a client sends any data, it asks the TEE to prove what it is: The hardware produces signed, cryptographic evidence of exactly what code is running inside the enclave. The client verifies that evidence against known-good values, and only then establishes the encrypted channel and sends its request. Verify first, send second.

The data-flow diagram shows prompts encrypted at the client, transmitted as ciphertext, and decrypted only inside a hardware TEE that neither the service operator nor the cloud provider can read.
The security property that follows is the whole point: Neither the AI service operator nor the underlying cloud provider can see your prompts, your completions, or your context. Not because they promise not to look, but because the hardware won't let them.
Privatemode AI is built by Edgeless Systems, a Germany-based specialist in confidential-computing software. According to NVIDIA, Privatemode is the "first gen AI framework that keeps prompts encrypted at all times."
For the developer, the mechanics are invisible. Privatemode exposes an OpenAI-compatible API, and a client-side proxy handles attestation and encryption transparently, so tools and SDKs that speak the standard /v1 API work unchanged. The current flagship model for coding is Kimi K2.6 with 256K context, with others like Kimi K3 and GLM coming soon.
This isn't a lab experiment. Privatemode is already in production with organizations that have exactly the constraints described above. Capgemini uses it for regulated-industry clients, including confidential coding. The German Federal Employment Agency runs it in the public sector. And banks, insurers, and defense organizations use it where source code and data cannot leave a trusted boundary. Its cryptography is post-quantum-safe, which also defends against "harvest now, decrypt later" attacks. An adversary capturing today's ciphertext in the hope of decrypting it with tomorrow's hardware gets nothing usable.
GitLab Duo Self-Hosted lets you serve Duo's AI features from a model you control instead of a GitLab-managed gateway. Privatemode slots in as that model.
The path is straightforward. GitLab Duo talks to a self-hosted AI Gateway, which forwards inference to any OpenAI-compatible endpoint. The Privatemode proxy is that endpoint: It exposes a standard /v1 API and handles encryption and attestation against the Privatemode service. When a request comes through, the proxy encrypts it before it leaves your network, verifies the remote TEE through attestation, and only then forwards it. Decryption happens exclusively inside the confidential-computing environment. Inside Duo, across Code Suggestions, Chat, Code Review, and agentic flows, the developer experience is unchanged.
sequenceDiagram
autonumber
actor Dev as Developer /<br>Duo Agent Platform
participant GW as Self-hosted GitLab<br>AI Gateway
participant Proxy as Privatemode<br>Proxy
participant TEE as Remote TEE<br>(CPU + GPU)
Dev->>GW: Inference request (Code<br>Suggestions, Chat,<br>Code Review, flows)
GW->>Proxy: Forward request<br>to OpenAI-compatible<br>endpoint
rect rgb(255, 244, 214)
Note over Proxy,TEE: Attestation before any code is sent
Proxy->>TEE: Request attestation evidence
TEE-->>Proxy: Signed evidence of enclave code
Proxy->>Proxy: Verify evidence against known-good values
Proxy->>TEE: Establish encrypted channel (AES-256, post-quantum-safe)
end
Proxy->>TEE: Forward encrypted request
Note over TEE: Decryption + inference<br>happen only inside the enclave
TEE-->>Proxy: Encrypted response
Proxy-->>GW: Encrypted response
GW-->>Dev: Completion (developer<br>experience unchanged)
In the sequence diagram, a GitLab Duo request flows through the self-hosted AI Gateway to the Privatemode proxy, which attests the remote enclave and establishes an encrypted channel before forwarding the request for inference inside the trusted execution environment. You run the AI Gateway and the proxy yourself, and the setup is deployment-agnostic (Linux package, Docker, or Kubernetes). The steps are documented and version-specific, so rather than reproduce them here, see Privatemode's GitLab Duo integration guide.
No architecture is free, and a technical reader deserves the costs stated plainly.
You operate the gateway and the proxy. This is real infrastructure work: deploying the AI Gateway at a proper hostname, matching its image version to your GitLab release on every upgrade, configuring JWT keys and certificates, and keeping the proxy reachable. It is ordinary infrastructure operation, though, not GPU procurement and not model operations. That distinction is the point. The alternative that keeps code private, running your own LLM stack, means buying scarce GPUs and staffing a team to run and update models while lagging the frontier. Privatemode is a hosted SaaS that carries the model operations for you, and the burden you keep is a proxy and a gateway.
Generic OpenAI-compatible models are still maturing in GitLab Duo Self-Hosted. Today, they run as a beta feature, so support for model-specific issues isn't yet guaranteed. It's on the roadmap to harden, but if you need a fully supported configuration now, factor that timeline into your rollout.
Attestation and encryption add some overhead. The extra roundtrip and cryptographic work cost time per request. In our testing, this hasn't been a practical problem, but the integration guide does recommend raising the AI Gateway timeout for slower self-hosted backends, so it's worth measuring against your own latency budget.
You still trust something, but something bounded. The guarantee rests on the hardware TEE and the attestation chain being sound. That's a smaller, more inspectable trust assumption than "trust the operator not to look," and you can verify the attestation evidence yourself, but it isn't zero. Confidential computing narrows trust to the silicon. It doesn't eliminate it.
Privatemode as a GitLab Duo self-hosted model provider requires GitLab Self-Managed, Premium, or Ultimate, Version 17.9 or later, with the GitLab Duo Enterprise add-on. Agentic flows additionally need the GitLab Duo Agent Platform (generally available on Version 18.8+). Usage consumes GitLab credits under the bring-your-own-model rules and multipliers described in the GitLab credits documentation.
Judge issues temporary pause while he considers Trump’s request to revise his libel lawsuit against BBC
A federal judge has temporarily halted an order requiring Donald Trump to turn over detailed financial information about his business empire to the BBC as part of an ongoing libel lawsuit.
US district judge Roy Altman issued the temporary pause while he considers Trump’s request to revise and narrow parts of his lawsuit against the BBC over a 2024 documentary that aired in the UK.
Continue reading...
The first mRNA-based flu shot to be approved by the Food and Drug Administration will be ready for the upcoming flu season. Moderna, the vaccine's maker
(Image credit: Marco Bello)

A continued boycott of the World Cup poses a big threat to FIFA, keeping President Gianni Infantino under intense pressure to resign.
(Image credit: Alex Wong)
The 2-1 vote along party lines repealed ‘national cap’ that served as a key check on consolidation of the TV industry
In a historic vote on Thursday morning, the Federal Communications Commission (FCC) voted along party lines to overturn a key check against the consolidation of the television industry, throwing out a rule that prevented any one company from owning stations that collectively reach more than 39% of all US TV households.
The vote is a win for television conglomerates that aim to expand their reach across the country, particularly conservative-leaning companies like Sinclair Broadcast Group and Nexstar.
Continue reading...
Авторы и нейросеть — это гений и злодейство современного интернета. С 2023 года вокруг темы стоит вой на болотах: одни в панике, потому что теперь авторы якобы никому не нужны, другие требуют полностью игнорировать ИИ. Очень громко спорят те, кто работает с текстом: редакторы, копирайтеры, блогеры, журналисты и писатели.
Как редактор, я выбираю золотую середину. Нейросети нужно применять, но с умом. Чтобы ИИ на самом деле облегчал творческую рутину, надо научиться с ним работать и встроить его в свои процессы. Выбрала пять инструментов, которые передают модели рабочий контекст из источника, документа или рукописи: Zotero с плагином AIdea, Obsidian с Copilot, Cherry Studio, ONLYOFFICE с AI-плагином и SillyTavern.
Читать далее
После первой недели отчёт выглядел как история успеха.
Бот давал запуски почти вдвое дешевле подписки на канал. Хотелось перенести туда весь бюджет и поехать пить кофе.
Но когда мы посмотрели, что происходит после красивой метрики, там было пусто. Ни заявок, ни вопросов, ни одного шага в сторону денег. Тысячи людей, которые нажали кнопку и исчезли.
Рассказываю, почему мы отключили самый дешёвый маршрут в воронке и как понять, что метрика, которой ты гордишься, просто врёт.
Читать далееCases have passed 4,000 and health watchdog plans to go door to door to find patients in major response escalation
The virus causing a massive outbreak of Ebola in the Democratic Republic of the Congo could be mutating, health officials fear, as confirmed cases pass 4,000.
Africa’s public health watchdog said the time for incremental action was over as they announced plans to scale up every aspect of the response and go “door to door” looking for patients.
Continue reading...Emma Atkinson, 38, was seven months pregnant when she fell from window of flat in Leeds tower block, inquest told
A pregnant woman who died from a nine-storey fall had her baby safely delivered 30 minutes after her death, an inquest has heard.
Emma Atkinson, 38, was seven months pregnant when she fell from the window of her father’s flat in Shakespeare Towers in the Burmantofts area of Leeds, on 22 October 2024.
Continue reading...Cases have passed 4,000 and health watchdog plans to go door to door to find patients in major response escalation
The virus causing a massive outbreak of Ebola in the Democratic Republic of the Congo could be mutating, health officials fear, as confirmed cases pass 4,000.
Africa’s public health watchdog said the time for incremental action was over as they announced plans to scale up every aspect of the response and go “door to door” looking for patients.
Continue reading...
Это заключительная статья цикла о том, как я пытался сделать алерты Zabbix в домашней лаборатории чуть умнее, прикрутив к ним локальную LLM и не получить на выходе архитектурного монстра Франкенштейна.
В первой и второй частях мы разобрались с постановкой задачи и выбрали себе фаворита из локальных LLM, в третьей — занимались скучным проектированием HLD и LLD. Теперь же переходим к самому интересному — прикладному материалу. В этой статье рассмотрим, что получилось, когда архитектурный каркас начали последовательно превращать в рабочий self-hosted сервис в коде, и с какими узкими местами пришлось столкнуться в процессе.
DISCLAIMER: к сожалению, выпуск задержался, ведь основное место работы отнимает огромное количество времени, только отпуск позволяет вернуться к личным проектам.
Часть 1: Вводная и формирование ТЗ
Часть 3: Формирование HLD и немного LLD
Часть 4: Что из этого вышло (Вы здесь)
Читать далееCity taken aback by forward’s absence from training
WSL champions wait two days before mentioning deal
The Brazil forward Kerolin failed to report back for pre-season training at Manchester City in July before her transfer to Barcelona had been agreed.
Barcelona announced their signing of the 26-year-old on Tuesday but it was not until Thursday evening when Manchester City first made any reference to the transfer, eventually confirming they had received a WSL record fee for a sale more than 48 hours later.
Continue reading...
Если вы правообладатель ПО из реестра отечественного ПО и увидели в реестровой записи розовые плашки «Сведения о выплатах устарели» или «Информация о стоимости устарела» - не игнорируйте эти записи. Минцифры уведомило правообладателей, что доступ к реестровой записи сначала ограничат, а через 6 месяцев исключат из реестра (процедуру включения нужно будет проходить заново). Читайте инструкции, как актуализировать записи (это не сложно).
Читать далееJoshua Bonehill-Paine, a former neo-Nazi activist, has been offered a role as an adviser to the Conservative party by Kemi Badenoch after he withdrew as a Tory candidate for next year’s local elections. The role will reportedly be focused on how young men become radicalised.
Bonehill-Paine was convicted of harassing a Jewish MP and has previously described himself as a ‘nationalist, fascist, theorist and supporter of white rights’. He says he has carried out counter-extremism work since he was released from prison.
Lucy Hough speaks to the Guardian political correspondent Ben Quinn – watch on YouTube
Continue reading...