HabrJuly 26, 2026🇷🇺Translated from Russian

Meshtastic Gains Renewed Popularity as Offline LoRa Mesh Networks Expand for Remote and Disaster Communications

Meshtastic is experiencing a notable renaissance as interest grows in reliable communication networks that function without internet access. Originally developed in 2020, the LoRa-based protocol enables long-range mesh networking suitable for cities, disaster zones, hiking expeditions, and search-and-rescue missions.

Recent global internet disruptions have accelerated adoption, prompting users to seek resilient offline alternatives. New ready-to-use devices such as the Hacker Pager and Heltec V3 terminals, along with numerous DIY tutorials, have made the technology more accessible, including in regions of Russia where mobile coverage remains limited.

Two primary categories of Meshtastic devices exist. Stationary nodes installed on rooftops and elevated locations provide core network infrastructure, while mobile nodes function as portable radio modems that users carry or mount on vehicles. These mobile units connect to smartphones via Bluetooth and deliver an SMS-like messaging interface through official Meshtastic applications for Android and iOS.

The Hacker Pager stands out for its dual capability: it operates autonomously with its own interface yet also serves as a Bluetooth gateway for smartphones. This flexibility supports both independent use in remote areas and integration with mobile devices.

Practical projects illustrate the technology’s versatility. One enthusiast built a remote shed alarm by pairing an infrared beam sensor with a Heltec ESP32 LoRa module that publishes alerts over the mesh network. A second module connected to home Wi-Fi forwards these messages to Home Assistant using MQTT after switching to the RadioLib library for reliable signal handling.

Additional deployments include expeditions by the Mars Society, which employs T-Echo radios for astronaut training in areas without cellular or Wi-Fi service. Similar use cases encompass long-distance hiking, natural disaster response, and regions experiencing internet blackouts, with some municipalities evaluating Meshtastic as emergency backup infrastructure.

Although the DIY nature of early setups required selecting boards, 3D-printing enclosures, and configuring firmware, newer commercial products such as the T5 E-Paper S3 Pro priced at $84 now offer pre-assembled solutions with e-paper displays, reducing entry barriers for broader adoption.

Related articles

AntiMalwareOther

Microsoft Adds Option to Completely Disable Copilot Key in Windows 11

Microsoft is testing a new setting in experimental builds of Windows 11 that lets home users fully disable the dedicated Copilot key on compatible keyboards. The option, labeled Do nothing, appears in the Bluetooth and devices section under Keyboard settings and allows users to reassign the key away from launching the AI assistant. Enthusiast phantomofearth discovered the feature, which currently sits alongside choices for launching Microsoft 365 Copilot, performing a search, or executing a custom action. The rollout is gradual, with some Windows Insiders receiving the setting earlier than others. The Copilot key was introduced on new Windows laptops in 2024 as a replacement for the right Ctrl key to highlight AI PCs. Earlier this year Microsoft had already promised limited support for restoring the original Ctrl function, while users previously relied on third-party tools such as NoCopilotKey to prevent accidental activation.

AntiMalwareOther

Turkish BiP Messenger Audience in Russia Surges 650 Times in One Year Amid Foreign App Adoption

Russian users continue exploring foreign messaging services even as initial hype subsides. MTS AdTech data shows demand for overseas platforms rose 50 percent in the first quarter and 26 percent in the second. Turkish BiP emerged as the standout performer, with its Russian monthly active users climbing 120 percent from April to July to reach 4.3 million. This marks a dramatic increase from just 6,600 users a year earlier. South Korean KakaoTalk grew 80 percent to 1.26 million users, while WeChat rose 17 percent and Gem Space increased 11 percent. American Imo remains the largest foreign messenger with 12.2 million users but added only 1 percent over the quarter. Blocked services SimpleX and Discord saw declines of 41 percent and 8 percent respectively, while domestic platforms VKontakte, MAX and Telegram retain far larger audiences.

HabrOther

Building Trusted TLS in Kubernetes Without InsecureSkipVerify Using cert-manager and trust-manager

The article explains how to establish verifiable TLS across a Kubernetes cluster running on Talos with Cilium networking and Linstor storage, eliminating reliance on InsecureSkipVerify flags. It details the creation of an internal self-signed CA via cert-manager, using a selfSigned bootstrap issuer to generate the CA certificate before deploying a production ClusterIssuer. trust-manager then distributes only the public CA bundle as ConfigMaps across all namespaces, allowing workloads to validate certificates without exposing private keys. For external services, an ACME issuer integrates with Let's Encrypt and Gateway API to automate HTTP-01 challenges. The guide also covers kubelet server certificate rotation through serverTLSBootstrap and the kubelet-serving-cert-approver controller, which validates CSR requests against Node objects before approval. These steps ensure mutual trust for internal services, publicly trusted certificates for internet-facing endpoints, and verified kubelet connections for the API server and monitoring systems.

HabrOther

Designing and Implementing Private Cloud Security Across Geographically Distributed Data Centers

The article shares practical experience in designing and deploying protection for a private cloud hosted across two geographically separated data center sites. The project aimed to achieve service resilience, meet information security requirements, and maintain manageable infrastructure. While theoretical designs often combine standard best practices such as high availability, network segmentation, next-generation firewalls, and dynamic routing, real-world implementation revealed significant conflicts between architectural components. Multiple contractor teams participated, each bringing different visions for network architecture and security controls, leading to complex negotiations and compromises. The process evolved into an engineering puzzle where proposed solutions had to be integrated into a functional, scalable system despite technical limitations and differing priorities. The full piece focuses on the journey from an idealized design to practical deployment through iterative problem-solving rather than deep technical dives.