AntiMalwareAugust 13, 2026🇷🇺Translated from Russian

Russian Researchers Achieve First Qubit Operations on Planar Ion Traps

Scientists working on Rosatom’s Quantum project have for the first time in Russia demonstrated cubit operations on planar ion traps. The achievement is expected to increase the computational power of quantum computers and bring them closer to industrial use.

In a conventional ion trap, charged atoms are confined by electromagnetic fields. In the planar version, control electrodes are fabricated on a flat chip. This architecture allows researchers to hold more than 100 qubits, integrate optical elements for readout, and create separate zones with tailored characteristics. In simple terms, the quantum processor gains additional “parking spaces” for ions together with improved control capabilities.

Independent demonstrations by two research groups

The result was independently reproduced by two teams. Specialists at the Physical Institute of RAS under Ilya Semerikov captured ytterbium-171 ions in a planar trap, transported them along the chip, and executed single-qubit operations. The Quantum Center group led by Kirill Lakhmansky performed a similar experiment with calcium ions, also demonstrating capture, transport, and single-qubit gates.

Rosatom considers mastery of planar-trap technology an important milestone on the path to industrial ion-trap quantum computers able to tackle real-world tasks. Nevertheless, a full-scale machine with 100 or more high-fidelity qubits still requires further progress from isolated operations to a scalable, precisely controlled system.

Russian researchers intend to continue developing the technology and join the international race in planar quantum systems, with the project targeting world-leading capabilities by 2030.

Related articles

HabrOther

OSINT for the Lazy Part 17: Versatile Framework Acts as Swiss Army Knife for Investigators

The article continues the series on tools for lazy OSINT practitioners by reviewing a multifunctional online toolkit hosted at htdark.com. This minimalistic yet powerful platform aggregates data across usernames, email addresses, phone numbers, IP addresses, cryptocurrency, social networks, and media files. It wraps Censys search capabilities into a more convenient interface while adding features such as JSON report export and basic relationship graphing. The tool checks 20 social platforms including Reddit and Spotify but omits Chinese and Russian resources, marking absent accounts in red and requiring manual verification for others. An Advanced section functions as a dork builder supporting Baidu and Naver with time-range filters and exclusion operators. While no single toolkit replaces specialized solutions, this framework provides broad initial visibility and helps analysts choose focused follow-up directions based on accumulated data rather than random checks.

HabrOther

AS2 in .NET Without Separate Java Gateway: Native EDI Exchange Directly in Application Routes

redb.Route.AS2 introduces native AS2 protocol support for .NET applications, eliminating the need for separate commercial gateways or Java-based servers like OpenAS2. The library integrates AS2 handling as a standard step in Apache Camel-style routes, allowing signed and encrypted S/MIME exchanges with partners such as Walmart directly within a single .NET process. It supports both synchronous and asynchronous MDN receipts for non-repudiation, using MimeKit and Bouncy Castle for cryptography. Developers can configure partners via As2ConnectionFactory objects that define certificates, AS2 identifiers, algorithms, and MDN modes. The solution handles X12 and EDIFACT documents with compression, signing, and encryption while exposing metadata like MIC values and signature validation results to the routing pipeline. This approach consolidates deployment, observability, and processing compared to external gateways or JVM processes.

HabrOther

Browser Policy Manager 0.9.5 Release Candidate Adds Comprehensive Multi-Language Documentation Portal

Browser Policy Manager (BPM) is approaching its 1.0.0 release as an open-source tool designed for preparing, validating, and exporting Firefox Enterprise policy profiles. The 0.9.5 update introduces four current Firefox schema channels including Release 153, ESR 153.0, ESR 140.13, and ESR 115.38, along with migration assistance from older ESR versions. A full documentation portal built in DITA now ships with the product, covering user guides, Firefox policy references, CIS benchmark mappings, and administrator instructions across six languages. The portal integrates directly with the BPM interface through manifests and UI target maps, providing contextual help without server dependencies. Local search uses static indexes with deterministic ranking, while future RAG capabilities are planned with strict source verification and no model training on documentation. The project emphasizes reproducible builds, locale completeness checks, and clear separation between automated mappings and manual compliance validation.

HabrOther

Same-Origin Policy and CORS: How Browsers Enforce Web Security Boundaries

The article explains the core browser security mechanism known as Same-Origin Policy that prevents scripts from one website from reading data belonging to another. It details how origin is defined strictly by protocol, domain, and port, and why this matters for everyday web interactions such as banking sessions. The text clarifies that the policy blocks reading of cross-origin responses while still allowing loading of images, scripts, and iframes. CORS is presented as the controlled relaxation of this rule, where the target server explicitly grants permission via response headers. The piece emphasizes that CORS does not protect servers from direct requests made outside browsers and that authentication remains the true defense for APIs. Multiple practical examples illustrate the difference between displaying foreign content and programmatically reading its data.