<?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: Andrew Firsov</title>
    <description>The latest articles on DEV Community by Andrew Firsov (@avfirsov).</description>
    <link>https://dev.to/avfirsov</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%2F490365%2Fcaa0e0f6-94a2-42b6-a057-85143ae4acfc.jpg</url>
      <title>DEV Community: Andrew Firsov</title>
      <link>https://dev.to/avfirsov</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/avfirsov"/>
    <language>en</language>
    <item>
      <title>[Boost]</title>
      <dc:creator>Andrew Firsov</dc:creator>
      <pubDate>Fri, 17 Jan 2025 12:47:03 +0000</pubDate>
      <link>https://dev.to/avfirsov/-3doo</link>
      <guid>https://dev.to/avfirsov/-3doo</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/avfirsov" 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%2F490365%2Fcaa0e0f6-94a2-42b6-a057-85143ae4acfc.jpg" alt="avfirsov"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/avfirsov/ive-built-an-open-source-interactive-game-for-learning-regular-expressions-ij0" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;I've created an open-source interactive game for learning regular expressions a fun way&lt;/h2&gt;
      &lt;h3&gt;Andrew Firsov ・ Jan 17&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#regex&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#webdev&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#learning&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#opensource&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>regex</category>
      <category>opensource</category>
      <category>learning</category>
      <category>webdev</category>
    </item>
    <item>
      <title>I've created an open-source interactive game for learning regular expressions a fun way</title>
      <dc:creator>Andrew Firsov</dc:creator>
      <pubDate>Fri, 17 Jan 2025 09:55:17 +0000</pubDate>
      <link>https://dev.to/avfirsov/ive-built-an-open-source-interactive-game-for-learning-regular-expressions-ij0</link>
      <guid>https://dev.to/avfirsov/ive-built-an-open-source-interactive-game-for-learning-regular-expressions-ij0</guid>
      <description>&lt;h2&gt;
  
  
  The code and the game
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;👾 The game - &lt;a href="https://regexp-garden.madewith.fun" rel="noopener noreferrer"&gt;RegexpGarden&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;🤖 &lt;a href="https://github.com/avfirsov/regexp-garden" rel="noopener noreferrer"&gt;Repo&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why regular expressions matter?
&lt;/h2&gt;

&lt;p&gt;As a web developer, I frequently use regular expressions in my work for complex refactoring tasks, such as changing the props of a specific component across the entire codebase or replacing one component with another throughout a project. When I started learning DevOps, I discovered that regular expressions were even more valuable. I consider regular expressions an essential tool for every programmer.&lt;/p&gt;

&lt;h2&gt;
  
  
  Inspiration
&lt;/h2&gt;

&lt;p&gt;I have a passion for teaching. During my time as a student and after university, I worked as a chemistry tutor. I've always been inspired by the moment when someone finally grasps a concept they once thought was impossible to understand—it’s like seeing a spark of enlightenment ignite in their mind. Richard Feynman’s teaching talent, particularly his ability to explain complex ideas in simple terms, has deeply influenced me.&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%2Fwmg5gonvwpfaroim1r8k.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%2Fwmg5gonvwpfaroim1r8k.png" alt="IRichard Feynman" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Later, when I transitioned to web development, I stumbled upon the fascinating project &lt;a href="https://flukeout.github.io/" rel="noopener noreferrer"&gt;CSS Diner&lt;/a&gt; (if you haven’t seen it yet, be sure to check it out!🔥). My love for teaching and my appreciation of CSS Diner inspired me to create a similar project, but this time focused on learning regular expressions.&lt;/p&gt;

&lt;h2&gt;
  
  
  Technical details
&lt;/h2&gt;

&lt;p&gt;I’ve always been a Vue developer at heart, but I was intrigued by the idea of learning React. For this project, I decided to build it using React and Next.js. As a Vue developer, I missed some of Vue's features in React, such as watch() and reactive(). To bridge the gap, I implemented a custom watch function as a React hook. Additionally, I used MobX to create reactive objects with methods, which felt natural to me coming from a Vue background.&lt;/p&gt;

&lt;p&gt;I also discovered the &lt;a href="https://npmjs.com/package/ts-pattern" rel="noopener noreferrer"&gt;ts-pattern&lt;/a&gt; library, which proved incredibly useful for implementing the Strategy pattern in frontend applications — whether in Vue or React.&lt;/p&gt;

&lt;h2&gt;
  
  
  Final words
&lt;/h2&gt;

&lt;p&gt;I hope this project will be valuable to anyone interested in learning regular expressions. It’s open-source, so contributions from the community are more than welcome! Any feedback is welcome.&lt;/p&gt;

</description>
      <category>regex</category>
      <category>webdev</category>
      <category>learning</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
