<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: SovArcNeo</title>
    <description>The latest articles on DEV Community by SovArcNeo (@sovarcneo).</description>
    <link>https://dev.to/sovarcneo</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3621858%2F6c53a0fa-6599-43c9-b6ad-ea705e251dbb.png</url>
      <title>DEV Community: SovArcNeo</title>
      <link>https://dev.to/sovarcneo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sovarcneo"/>
    <language>en</language>
    <item>
      <title>I put an Air-Gapped Neural Network in my pocket (Python on Android)</title>
      <dc:creator>SovArcNeo</dc:creator>
      <pubDate>Fri, 21 Nov 2025 01:51:03 +0000</pubDate>
      <link>https://dev.to/sovarcneo/i-put-an-air-gapped-neural-network-in-my-pocket-python-on-android-1pci</link>
      <guid>https://dev.to/sovarcneo/i-put-an-air-gapped-neural-network-in-my-pocket-python-on-android-1pci</guid>
      <description>&lt;h2&gt;
  
  
  The Pocket Mainframe
&lt;/h2&gt;

&lt;p&gt;I shared my desktop AI defense system. Now I'm sharing the mobile unit.&lt;/p&gt;

&lt;p&gt;This is &lt;strong&gt;NEXUS v9&lt;/strong&gt;, a sovereign network intelligence tool designed to run natively on Android (via Pydroid3 or Termux).&lt;/p&gt;

&lt;p&gt;Most "AI apps" on your phone are just wrappers sending your data to a cloud API. This is different. This is a complete, self-contained neural network running locally on my device.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Mobile Engineering Challenge
&lt;/h3&gt;

&lt;p&gt;Running a complex defense system on a phone presents unique challenges:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;No Root Access:&lt;/strong&gt; I can't easily access system-level process data.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Dependency Hell:&lt;/strong&gt; Installing &lt;code&gt;numpy&lt;/code&gt; or &lt;code&gt;scipy&lt;/code&gt; on Android can be tricky.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Battery/Resources:&lt;/strong&gt; Spawning 50 threads kills a battery instantly.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  The Architecture
&lt;/h3&gt;

&lt;p&gt;To make this work, I had to rewrite the core engine:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;AsyncIO Network Scanner:&lt;/strong&gt; Replaced threading with &lt;code&gt;asyncio&lt;/code&gt;. It scans hundreds of ports/hosts concurrently without locking up the UI or draining the battery.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pure Python Fallbacks:&lt;/strong&gt; I wrote a custom &lt;code&gt;NeuralNetwork&lt;/code&gt; class that checks for &lt;code&gt;numpy&lt;/code&gt;. If it's missing, it seamlessly degrades to a pure Python implementation of the dense layers and activation functions. It trains &lt;em&gt;on-device&lt;/em&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Synthetic Baselines:&lt;/strong&gt; Since I can't always read raw CPU/RAM on non-rooted devices, the system builds its own baseline of "normal" behavior and detects anomalies relative to its own process state.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Why do this?
&lt;/h3&gt;

&lt;p&gt;Because "Personal Security" shouldn't require a server rack. I can walk into a network environment, pull out my phone, and have the same level of anomaly detection and analysis as I do at my desk—completely offline.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Repo updated with the Android Branch:&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://github.com/SovArcNeo" rel="noopener noreferrer"&gt;https://github.com/SovArcNeo&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvj3qyxla3vjxq1rkn523.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvj3qyxla3vjxq1rkn523.png" alt=" " width="400" height="820"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>beginners</category>
      <category>tools</category>
      <category>devsecops</category>
    </item>
    <item>
      <title>Building an Air-Gapped AI Defense System in Python (No Cloud APIs)</title>
      <dc:creator>SovArcNeo</dc:creator>
      <pubDate>Fri, 21 Nov 2025 01:46:02 +0000</pubDate>
      <link>https://dev.to/sovarcneo/building-an-air-gapped-ai-defense-system-in-python-no-cloud-apis-288g</link>
      <guid>https://dev.to/sovarcneo/building-an-air-gapped-ai-defense-system-in-python-no-cloud-apis-288g</guid>
      <description>&lt;h2&gt;
  
  
  The Sovereign Architecture
&lt;/h2&gt;

&lt;p&gt;Most modern AI development relies heavily on cloud APIs and external dependencies. I decided to go the other direction: &lt;strong&gt;Total Sovereignty.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I am building &lt;strong&gt;NEXUS&lt;/strong&gt;, an offline-first, air-gapped AI defense system designed to run on local hardware (Linux and Android/Termux). The goal is to create recursive intelligence that functions without an internet connection, ensuring privacy and zero data leakage.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Tech Stack
&lt;/h3&gt;

&lt;p&gt;I avoid "black box" libraries where possible. My stack focuses on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Core:&lt;/strong&gt; Python 3.x (Dependency-free where possible)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GUI:&lt;/strong&gt; Custom Tkinter interfaces (Cyberpunk/Matrix aesthetic for high-contrast visibility)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Logic:&lt;/strong&gt; Recursive "Breeding Cycles" rather than standard versioning. I spawn multiple instances, stress-test them, and the surviving code becomes the baseline for the next generation.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Deployment:&lt;/strong&gt; Runs natively on Linux or via Termux on Android.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Visualizing the Grid
&lt;/h3&gt;

&lt;p&gt;I recently refactored my modular agents into standalone applications. Pictured in the cover image are:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;ARCHITECT (Green):&lt;/strong&gt; A Neural Enhanced Security Platform for Command &amp;amp; Control.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;SENTINEL (Blue):&lt;/strong&gt; A Quantum-resistant defensive monitor for system metrics and threat detection.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Why "Offline-First"?
&lt;/h3&gt;

&lt;p&gt;In a world of connected APIs, building "air-gapped" software forces you to understand the logic from the ground up. You can't call an API to solve the problem; you have to engineer the solution yourself.&lt;/p&gt;

&lt;p&gt;I am currently open-sourcing these tools to share this "Sovereign" philosophy with the community.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Check out the repositories here:&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://github.com/SovArcNeo" rel="noopener noreferrer"&gt;https://github.com/SovArcNeo&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fn8hag9owh1ixm0r9quoa.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fn8hag9owh1ixm0r9quoa.png" alt=" " width="800" height="453"&gt;&lt;/a&gt;&lt;br&gt;
Visualized above: Two of my modular agents ('Architect' and 'Sentinel') that I recently refactored into standalone applications&lt;/p&gt;

</description>
      <category>blueteam</category>
      <category>beginners</category>
      <category>discuss</category>
      <category>tools</category>
    </item>
    <item>
      <title>I put an Air-Gapped Neural Network in my pocket (Python on Android)</title>
      <dc:creator>SovArcNeo</dc:creator>
      <pubDate>Fri, 21 Nov 2025 01:05:12 +0000</pubDate>
      <link>https://dev.to/sovarcneo/i-put-an-air-gapped-neural-network-in-my-pocket-python-on-android-1632</link>
      <guid>https://dev.to/sovarcneo/i-put-an-air-gapped-neural-network-in-my-pocket-python-on-android-1632</guid>
      <description>&lt;h2&gt;
  
  
  The Pocket Mainframe
&lt;/h2&gt;

&lt;p&gt;I shared my desktop AI defense system. Now I'm sharing the mobile unit.&lt;/p&gt;

&lt;p&gt;This is &lt;strong&gt;NEXUS v9&lt;/strong&gt;, a sovereign network intelligence tool designed to run natively on Android (via Pydroid3 or Termux).&lt;/p&gt;

&lt;p&gt;Most "AI apps" on your phone are just wrappers sending your data to a cloud API. This is different. This is a complete, self-contained neural network running locally on my device.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Mobile Engineering Challenge
&lt;/h3&gt;

&lt;p&gt;Running a complex defense system on a phone presents unique challenges:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;No Root Access:&lt;/strong&gt; I can't easily access system-level process data.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Dependency Hell:&lt;/strong&gt; Installing &lt;code&gt;numpy&lt;/code&gt; or &lt;code&gt;scipy&lt;/code&gt; on Android can be tricky.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Battery/Resources:&lt;/strong&gt; Spawning 50 threads kills a battery instantly.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  The Architecture
&lt;/h3&gt;

&lt;p&gt;To make this work, I had to rewrite the core engine:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;AsyncIO Network Scanner:&lt;/strong&gt; Replaced threading with &lt;code&gt;asyncio&lt;/code&gt;. It scans hundreds of ports/hosts concurrently without locking up the UI or draining the battery.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pure Python Fallbacks:&lt;/strong&gt; I wrote a custom &lt;code&gt;NeuralNetwork&lt;/code&gt; class that checks for &lt;code&gt;numpy&lt;/code&gt;. If it's missing, it seamlessly degrades to a pure Python implementation of the dense layers and activation functions. It trains &lt;em&gt;on-device&lt;/em&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Synthetic Baselines:&lt;/strong&gt; Since I can't always read raw CPU/RAM on non-rooted devices, the system builds its own baseline of "normal" behavior and detects anomalies relative to its own process state.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Why do this?
&lt;/h3&gt;

&lt;p&gt;Because "Personal Security" shouldn't require a server rack. I can walk into a network environment, pull out my phone, and have the same level of anomaly detection and analysis as I do at my desk—completely offline.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Repo updated with the Android Branch:&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://github.com/SovArcNeo" rel="noopener noreferrer"&gt;https://github.com/SovArcNeo&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd7yvi5j0okc8ogv1ffcj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd7yvi5j0okc8ogv1ffcj.png" alt=" " width="400" height="820"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>mobile</category>
      <category>android</category>
      <category>showdev</category>
    </item>
    <item>
      <title>Building an Air-Gapped AI Defense System in Python (No Cloud APIs)</title>
      <dc:creator>SovArcNeo</dc:creator>
      <pubDate>Fri, 21 Nov 2025 00:50:51 +0000</pubDate>
      <link>https://dev.to/sovarcneo/building-an-air-gapped-ai-defense-system-in-python-no-cloud-apis-ph5</link>
      <guid>https://dev.to/sovarcneo/building-an-air-gapped-ai-defense-system-in-python-no-cloud-apis-ph5</guid>
      <description>&lt;h2&gt;
  
  
  The Sovereign Architecture
&lt;/h2&gt;

&lt;p&gt;Most modern AI development relies heavily on cloud APIs and external dependencies. I decided to go the other direction: &lt;strong&gt;Total Sovereignty.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I am building &lt;strong&gt;NEXUS&lt;/strong&gt;, an offline-first, air-gapped AI defense system designed to run on local hardware (Linux and Android/Termux). The goal is to create recursive intelligence that functions without an internet connection, ensuring privacy and zero data leakage.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Tech Stack
&lt;/h3&gt;

&lt;p&gt;I avoid "black box" libraries where possible. My stack focuses on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Core:&lt;/strong&gt; Python 3.x (Dependency-free where possible)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GUI:&lt;/strong&gt; Custom Tkinter interfaces (Cyberpunk/Matrix aesthetic for high-contrast visibility)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Logic:&lt;/strong&gt; Recursive "Breeding Cycles" rather than standard versioning. I spawn multiple instances, stress-test them, and the surviving code becomes the baseline for the next generation.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Deployment:&lt;/strong&gt; Runs natively on Linux or via Termux on Android.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Visualizing the Grid
&lt;/h3&gt;

&lt;p&gt;I recently refactored my modular agents into standalone applications. Pictured in the cover image are:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;ARCHITECT (Green):&lt;/strong&gt; A Neural Enhanced Security Platform for Command &amp;amp; Control.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;SENTINEL (Blue):&lt;/strong&gt; A Quantum-resistant defensive monitor for system metrics and threat detection.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Why "Offline-First"?
&lt;/h3&gt;

&lt;p&gt;In a world of connected APIs, building "air-gapped" software forces you to understand the logic from the ground up. You can't call an API to solve the problem; you have to engineer the solution yourself.&lt;/p&gt;

&lt;p&gt;I am currently open-sourcing these tools to share this "Sovereign" philosophy with the community.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Check out the repositories here:&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://github.com/SovArcNeo" rel="noopener noreferrer"&gt;https://github.com/SovArcNeo&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frchpozzr7l03bxujvmvy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frchpozzr7l03bxujvmvy.png" alt=" " width="800" height="453"&gt;&lt;/a&gt;&lt;br&gt;
Visualized above: Two of my modular agents ('Architect' and 'Sentinel') that I recently refactored into standalone applications.&lt;/p&gt;

</description>
      <category>python</category>
      <category>security</category>
      <category>opensource</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
