<?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: Nikita Arsenov</title>
    <description>The latest articles on DEV Community by Nikita Arsenov (@__cc373788d2).</description>
    <link>https://dev.to/__cc373788d2</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4084655%2Fd3ed9f40-6277-4901-9e27-099a0db1673f.jpg</url>
      <title>DEV Community: Nikita Arsenov</title>
      <link>https://dev.to/__cc373788d2</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/__cc373788d2"/>
    <language>en</language>
    <item>
      <title>Building a Personalized Cognitive Extender: Edge AI with Smart Glasses &amp; On-Device LLMs</title>
      <dc:creator>Nikita Arsenov</dc:creator>
      <pubDate>Mon, 24 Aug 2026 09:56:46 +0000</pubDate>
      <link>https://dev.to/__cc373788d2/building-a-personalized-cognitive-extender-edge-ai-with-smart-glasses-on-device-llms-276b</link>
      <guid>https://dev.to/__cc373788d2/building-a-personalized-cognitive-extender-edge-ai-with-smart-glasses-on-device-llms-276b</guid>
      <description>&lt;p&gt;Here is the current project I’m working on: a customizable “Cognitive Extender” tailored to my exact needs.&lt;/p&gt;

&lt;p&gt;It’s no secret that Google makes its own Pixel smartphone lineup. Opinions on them vary, and I won’t praise the series unconditionally—it often lacks stability and optimization—but one thing is certain: it’s an incredible playground for experimentation thanks to Google’s open platform approach. My hardware stack: Even G2 + Pixel 9 Pro + Even R1 / Midra link.&lt;/p&gt;

&lt;p&gt;Even’s native implementation of the AI assistant, translator, teleprompter, and other features is decent, but it is clearly designed as a generic, out-of-the-box solution that relies heavily on cloud processing. The Pixel 9, on the other hand, packs a TPU core inside the Tensor G4 ("Rio") paired with LPDDR5X RAM (&lt;del&gt;45 TOPS INT8/INT4, up to 8,533 Mbps on a quad-channel bus). This architecture allows you to run on-device inference with the Gemini Nano v3 model (&lt;/del&gt;4B+, mixed INT4/INT2 hybrid quantization) virtually instantaneously—and completely LOCALLY.&lt;/p&gt;

&lt;p&gt;Since I'm starting this blog mid-development, some of the groundwork is already laid. First off, I quickly abandoned the idea of writing fully custom firmware for the glasses. Even's engineering team did some impressive heavy lifting under the hood: a 4-MEMS microphone array handles initial ADC (PDM/I2S) -&amp;gt; the uncompressed audio stream routes to an integrated ARM Cortex-M for conversion to linear PCM, noise reduction, and voice isolation -&amp;gt; feeds into an LC3 encoder -&amp;gt; and the resulting LC3 frames are transmitted over BLE 5.4 to the official Even Hub.&lt;/p&gt;

&lt;p&gt;Right around that point, I realized that writing my own LC3-to-PCM decoder was a fool’s errand—it’s already implemented natively inside the official Even Hub. As a result, at the entry point of our custom ehpk plugin, we are already working with raw, uncompressed 16-bit Mono LE PCM bytes.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>hardware</category>
      <category>llm</category>
      <category>mobile</category>
    </item>
    <item>
      <title>Hello World: From Sysadmin to Reinforcement Learning</title>
      <dc:creator>Nikita Arsenov</dc:creator>
      <pubDate>Fri, 21 Aug 2026 08:01:21 +0000</pubDate>
      <link>https://dev.to/__cc373788d2/hello-world-from-sysadmin-to-reinforcement-learning-476c</link>
      <guid>https://dev.to/__cc373788d2/hello-world-from-sysadmin-to-reinforcement-learning-476c</guid>
      <description>&lt;p&gt;Hey everyone, I'm Nikita.&lt;/p&gt;

&lt;p&gt;I'm starting this blog as a home for my technical notes, side projects, and random deep dives. To be completely honest, I don't have a rigid roadmap for where this blog is heading—part of it is simply wanting a space for creative and technical self-expression.&lt;/p&gt;

&lt;h3&gt;
  
  
  A Quick Background
&lt;/h3&gt;

&lt;p&gt;I’m a Ukrainian-Russian engineer by training, with around 4 years of experience in system administration. Over the last 1.5 years, I’ve been actively diving into Machine Learning, with a particular interest in cognitive science and reinforcement learning.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Spark
&lt;/h3&gt;

&lt;p&gt;Like many hobbies that turn into obsessions, it started with a single project: building and training a small-scale, AlphaZero-inspired model combining &lt;strong&gt;CNN + DQN + LSTM&lt;/strong&gt; architectures.&lt;/p&gt;

&lt;p&gt;It wasn't an overnight success. It took roughly three months of relentless tweaking—redesigning the architecture, fixing gradient issues, and fine-tuning reward functions—before the model finally started showing real, intelligent results. That breakthrough moment was when everything clicked: I realized just how much I love this field, and experimenting with ML officially became my main passion.&lt;/p&gt;

&lt;h3&gt;
  
  
  What to Expect Here
&lt;/h3&gt;

&lt;p&gt;Going forward, this blog will be a mix of:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Ongoing ML and reinforcement learning experiments&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Notes and thoughts on cognitive architectures&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Practical takeaways, debugging stories, and engineering logs&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thanks for stopping by! If you're interested in ML, cognitive systems, or just like following along with hands-on technical experiments, feel free to connect or drop a comment.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tags:&lt;/strong&gt; &lt;code&gt;#MachineLearning&lt;/code&gt; &lt;code&gt;#DeepLearning&lt;/code&gt; &lt;code&gt;#ReinforcementLearning&lt;/code&gt; &lt;code&gt;#DevLog&lt;/code&gt; &lt;code&gt;#Beginner&lt;/code&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>career</category>
      <category>learning</category>
      <category>machinelearning</category>
    </item>
  </channel>
</rss>
