Neural Networks Without Magic: 80-Year History, Business Applications, and Why They Will Not Replace Experts Overnight
Vasily Ryazanov, candidate of physical and mathematical sciences and head of the Data Science team at Twinby, sat down with journalist Alexander Shulepov to separate hype from practical value in neural networks. The conversation covers the technology’s long history, how contemporary language models operate, real business deployments, and the persistent need for human expertise.
From family history to Data Science: why neural networks entered his life long before ChatGPT
Ryazanov explains that his path began in the 1970s when his father worked on artificial intelligence and pattern recognition under academician Zhuravlev at the Academy of Sciences after finishing graduate studies around 1977. Early networks processed tables of only hundreds or thousands of rows on computers that ran for hours. By the 2000s the workflow had become clearer: load tabular data, train an algorithm, and obtain results, often written in C++.
He stresses that neural networks are not 10–20 years old but approximately 80 years old. Interest has risen and fallen in waves, with renewed attention around 2014–2015 driven by advances in image recognition, face detection, and projects such as Google DeepDream.
How TikTok became a professional platform
Ryazanov began posting on TikTok in 2019. Initial experiments with monowheel videos and song translations did not stick; a friend’s suggestion to discuss remote work and Data Science produced his first successful clip. The platform’s recommendation engine, which analyzes watch time, likes, on-screen content, speech, and music, quickly matched his material with an interested audience.
Skills and education required
For engineers and data scientists, Ryazanov insists on a solid foundation in probability theory, linear algebra, statistics, programming, and data handling. Entrepreneurs and marketers need only a clear understanding of capabilities, limitations, and data-handling rules. His own education at MIPT remains essential because much of his current work involves code and model training rather than simple prompting.
Distinguishing artificial intelligence, neural networks, and ChatGPT
Artificial intelligence is the broad goal of automating tasks associated with human thinking. Neural networks are one mathematical approach inspired by biological neurons. ChatGPT is a conversational system built on the Generative Pre-trained Transformer architecture; it predicts the next token while respecting dialogue history, safety constraints, and other controls.
Training begins with enormous datasets and GPU clusters to create a base model, followed by domain-specific fine-tuning or connection to corporate data. The cost of training frontier-scale models is dominated by GPUs, electricity, cooling, and infrastructure.
Prompts, Claude, and paid tiers
A prompt is simply a textual instruction that may assign a role, state goals, specify output format, and supply source material. Ryazanov prefers natural conversation with models, often dictating thoughts via keyboard while walking. He uses Claude most frequently because it maintains long context well and produces precise phrasing; ChatGPT remains useful for its multimodal features. Paid plans mainly remove rate limits and provide priority access during peak load.
Hallucinations, confidentiality, and the “AI psychologist” trap
Common beginner mistakes include uploading sensitive documents and placing excessive trust in fluent answers. Models can invent films, misattribute works, or cite nonexistent papers. Ryazanov warns against sending passports, medical records, trade secrets, or proprietary code to external services. When the cost of error is high—in health, finance, law, or safety—every output must be verified against primary sources and domain experts.
Although models can help structure reflections or prepare questions for a therapist or physician, they are not substitutes for professional care. The convenience of receiving a personalized summary in minutes makes the interface psychologically compelling, increasing the risk of over-reliance.
Related articles
Meshtastic Gains Renewed Popularity as Offline LoRa Mesh Networks Expand for Remote and Disaster Communications
Meshtastic, the LoRa-based mesh protocol first introduced in 2020, is experiencing a significant resurgence driven by global internet outages and the need for dependable offline communication. Originally used for urban mesh networks, disaster response, hiking groups, and search-and-rescue operations, the technology now attracts new users across Russia and worldwide. Two main device types exist: stationary rooftop nodes that form network infrastructure and portable mobile nodes that connect smartphones via Bluetooth. Popular ready-made devices include the Hacker Pager terminal and Heltec V3 modules, which support both standalone operation and smartphone integration through official Meshtastic apps. Enthusiasts have demonstrated practical applications such as remote shed alarms using infrared beam sensors connected to Heltec ESP32 LoRa boards that publish alerts to Home Assistant via MQTT. The Mars Society has deployed T-Echo radios during multi-week training expeditions in areas lacking cellular coverage, while municipalities explore Meshtastic as backup systems for natural disasters. New commercial products like the T5 E-Paper S3 Pro further lower barriers by offering pre-configured hardware with e-paper displays.
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.
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.
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.