<?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: Alex Strelets</title>
    <description>The latest articles on DEV Community by Alex Strelets (@numberonebot).</description>
    <link>https://dev.to/numberonebot</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%2F1337892%2F5c737d66-2f74-411b-beec-90ec4f796383.jpeg</url>
      <title>DEV Community: Alex Strelets</title>
      <link>https://dev.to/numberonebot</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/numberonebot"/>
    <language>en</language>
    <item>
      <title>[Boost]</title>
      <dc:creator>Alex Strelets</dc:creator>
      <pubDate>Sun, 16 Feb 2025 21:09:19 +0000</pubDate>
      <link>https://dev.to/numberonebot/-1a3n</link>
      <guid>https://dev.to/numberonebot/-1a3n</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/numberonebot" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&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%2Fuser%2Fprofile_image%2F1337892%2F5c737d66-2f74-411b-beec-90ec4f796383.jpeg" alt="numberonebot"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/numberonebot/i-built-a-library-to-visualize-and-edit-audio-filters-2mke" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;I Built a Library to Visualize and Edit Audio Filters&lt;/h2&gt;
      &lt;h3&gt;Alex Strelets ・ Feb 16&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#react&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#audio&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#typescript&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#webdev&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>react</category>
      <category>audio</category>
      <category>typescript</category>
      <category>webdev</category>
    </item>
    <item>
      <title>I Built a React Library to Visualize and Edit Audio Filters</title>
      <dc:creator>Alex Strelets</dc:creator>
      <pubDate>Sun, 16 Feb 2025 20:45:20 +0000</pubDate>
      <link>https://dev.to/numberonebot/i-built-a-library-to-visualize-and-edit-audio-filters-2mke</link>
      <guid>https://dev.to/numberonebot/i-built-a-library-to-visualize-and-edit-audio-filters-2mke</guid>
      <description>&lt;p&gt;Hey everyone! 👋&lt;/p&gt;

&lt;h2&gt;
  
  
  The Story Behind
&lt;/h2&gt;

&lt;p&gt;Several years ago, I was deep-dived into reverse engineering the parameter system used in VAG (Volkswagen, Audi, Porsche, etc) infotainment units. I managed to decode their binary format for storing settings for each car model and body style. To explain it simply - the firmware contains equalizer configurations for each channel of the on-board 5.1 speaker system, calibrated based on cabin volume and other parameters, much like how home theater systems are configured (with specific gains, delays, limiters, etc).&lt;/p&gt;

&lt;p&gt;I published this research for the car enthusiast community. While the interest was huge, the reach remained small since most community members weren't familiar with HEX editors. Only a few could really replicate what I documented. After some time, I built a web application that visualized these settings and allowed to unpack, edit and repack that data back into the binary format.&lt;/p&gt;

&lt;p&gt;When I first tried to visualize audio filters with that project, I hit a wall. Most charting libraries are built for business data, all those "enterprise-ready visualization solutions". But &lt;strong&gt;NONE&lt;/strong&gt; of them is designed for audio-specific needs. D3.js is the only real option here - it is powerful but requires days of digging through docs just to get basic styling right. And if you want interactive features like drag-and-drop? Good luck with that. (Fun fact: due to D3's multiple abstraction layers, just &lt;strong&gt;the same&lt;/strong&gt; filter calculations in DSSSP are 1.4-2x faster than D3's implementation).&lt;/p&gt;

&lt;h2&gt;
  
  
  Nowadays
&lt;/h2&gt;

&lt;p&gt;Looking back, the original project was pretty messy and had a very specific focus. However, this experience led me to realize that the visualization library itself could have broader applications in audio processing software.&lt;/p&gt;

&lt;p&gt;This insight pushed me to develop a custom vector-based graph from the ground up using a modern React stack. The library focuses on one thing - audio filters. No unnecessary abstractions, no enterprise bloat, just fast and convenient (I hope!?) tools for audio processing software.&lt;/p&gt;

&lt;h3&gt;
  
  
  Core Features
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Logarithmic frequency response visualization&lt;/li&gt;
&lt;li&gt;Interactive biquad filter manipulation&lt;/li&gt;
&lt;li&gt;Custom audio calculation engine&lt;/li&gt;
&lt;li&gt;Drag-and-drop + Mouse wheel controls&lt;/li&gt;
&lt;li&gt;Flexible theming API&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Technical Details
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Built with React + SVG (no Canvas)&lt;/li&gt;
&lt;li&gt;Zero external dependencies besides React&lt;/li&gt;
&lt;li&gt;Full TypeScript support&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Live &lt;a href="https://dsssp.io/demo" rel="noopener noreferrer"&gt;Demo&lt;/a&gt; &amp;amp; &lt;a href="https://dsssp.io/docs/?path=/docs/introduction--docs" rel="noopener noreferrer"&gt;Docs&lt;/a&gt; &amp;amp; &lt;a href="https://github.com/numberonebot/dsssp" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;
&lt;/h3&gt;

&lt;p&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%2Fa86zqjvtyj0t8ck3e9sz.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%2Fa86zqjvtyj0t8ck3e9sz.png" alt="Image description" width="800" height="688"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&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%2F0jc1u10sojdu5jnhp51u.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%2F0jc1u10sojdu5jnhp51u.png" alt="Image description" width="800" height="460"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;This is the first public release, landing page is missing, and the backlog is huge, and doc is incomplete. &lt;em&gt;(You know, there's never a perfect timing - I just had to stop implementing my ideas and make it community driven).&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I'd love to see what you could build with these components. What's missing? What could be improved?&lt;/p&gt;

</description>
      <category>react</category>
      <category>audio</category>
      <category>typescript</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
