<?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: Azamat Sadykbek</title>
    <description>The latest articles on DEV Community by Azamat Sadykbek (@sadykbek_azamat).</description>
    <link>https://dev.to/sadykbek_azamat</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%2F3951455%2F6a1eaca4-f43d-4649-9499-7255f0313aa6.jpeg</url>
      <title>DEV Community: Azamat Sadykbek</title>
      <link>https://dev.to/sadykbek_azamat</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sadykbek_azamat"/>
    <language>en</language>
    <item>
      <title>How I Built a Multilingual Language Learning Platform with React, Vite &amp; Firebase (akcent.online)</title>
      <dc:creator>Azamat Sadykbek</dc:creator>
      <pubDate>Tue, 26 May 2026 11:48:08 +0000</pubDate>
      <link>https://dev.to/sadykbek_azamat/how-i-built-a-multilingual-language-learning-platform-with-react-vite-firebase-akcentonline-p6f</link>
      <guid>https://dev.to/sadykbek_azamat/how-i-built-a-multilingual-language-learning-platform-with-react-vite-firebase-akcentonline-p6f</guid>
      <description>&lt;h1&gt;
  
  
  How I Built a Multilingual Language Learning Platform with React, Vite &amp;amp; Firebase
&lt;/h1&gt;

&lt;p&gt;After months of development, I launched &lt;strong&gt;&lt;a href="https://akcent.online" rel="noopener noreferrer"&gt;Akcent Academy&lt;/a&gt;&lt;/strong&gt; — &lt;br&gt;
a full-featured online language learning platform supporting English, Russian, Chinese, &lt;br&gt;
Arabic, and Turkish.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;React + Vite&lt;/strong&gt; — blazing-fast HMR and build times&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Firebase&lt;/strong&gt; — auth (Google/Apple OAuth + OTP), Firestore, Storage&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tailwind CSS + Radix UI&lt;/strong&gt; — accessible, responsive UI&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;@dnd-kit&lt;/strong&gt; — drag-and-drop course builder for teachers&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ffmpeg.wasm&lt;/strong&gt; — in-browser audio/video processing (no server needed!)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PWA support&lt;/strong&gt; — offline-capable with service workers&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What the Platform Does
&lt;/h2&gt;

&lt;p&gt;Students can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Enroll in structured language courses (video + exercises)&lt;/li&gt;
&lt;li&gt;Practice dictation with AI-assisted feedback&lt;/li&gt;
&lt;li&gt;Track progress across lessons&lt;/li&gt;
&lt;li&gt;Learn on mobile with a native-like PWA experience&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Teachers (constructors) get:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A full &lt;strong&gt;drag-and-drop course builder&lt;/strong&gt; with block-based lesson editor&lt;/li&gt;
&lt;li&gt;Film/situation-based lesson formats&lt;/li&gt;
&lt;li&gt;Real-time comment threads with students&lt;/li&gt;
&lt;li&gt;Analytics dashboard&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Interesting Technical Challenges
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. In-browser audio compression with ffmpeg.wasm
&lt;/h3&gt;

&lt;p&gt;Rather than uploading raw &lt;code&gt;.wav&lt;/code&gt; files, I compress audio to &lt;code&gt;.mp3&lt;/code&gt; entirely &lt;br&gt;
in the browser using WebAssembly. This cut upload sizes by ~85%.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. PWA Offline Mode
&lt;/h3&gt;

&lt;p&gt;Built a custom &lt;code&gt;offline.html&lt;/code&gt; + &lt;code&gt;splash.html&lt;/code&gt; with service worker caching &lt;br&gt;
so students can review completed lessons without internet.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. DnD Course Builder
&lt;/h3&gt;

&lt;p&gt;Used &lt;code&gt;@dnd-kit/sortable&lt;/code&gt; to build a flexible drag-and-drop lesson block system &lt;br&gt;
where teachers can reorder, nest, and configure blocks visually.&lt;/p&gt;

&lt;h2&gt;
  
  
  SEO Challenges with a React SPA
&lt;/h2&gt;

&lt;p&gt;One of the hardest parts: React SPAs are tough for SEO. My approach:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Static &lt;code&gt;&amp;lt;meta&amp;gt;&lt;/code&gt; tags with OG/Twitter cards in &lt;code&gt;index.html&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;sitemap.xml&lt;/code&gt; served from &lt;code&gt;/public&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;robots.txt&lt;/code&gt; with proper crawl rules&lt;/li&gt;
&lt;li&gt;Canonical URLs per route&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Still planning to add SSR with Vite SSR or migrate critical pages to Next.js.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://akcent.online" rel="noopener noreferrer"&gt;https://akcent.online&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Available in Russian and other languages. Feedback welcome!&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Tags: #react #vite #firebase #webdev #javascript #pwa #education #languagelearning&lt;/em&gt;&lt;/p&gt;

</description>
      <category>react</category>
      <category>showdev</category>
      <category>sideprojects</category>
      <category>webdev</category>
    </item>
    <item>
      <title>I built a free image compression API — no signup, just curl</title>
      <dc:creator>Azamat Sadykbek</dc:creator>
      <pubDate>Mon, 25 May 2026 22:24:48 +0000</pubDate>
      <link>https://dev.to/sadykbek_azamat/i-built-a-free-image-compression-api-no-signup-just-curl-bde</link>
      <guid>https://dev.to/sadykbek_azamat/i-built-a-free-image-compression-api-no-signup-just-curl-bde</guid>
      <description>&lt;p&gt;I got tired of paying for image compression services or jumping through OAuth hoops just to resize a JPEG. So I built Beta Compressor — a free REST API that compresses JPEG, PNG, WebP, and AVIF images in one POST request.&lt;/p&gt;

&lt;p&gt;No credit card. No OAuth. You can try it right now without even creating an account.&lt;/p&gt;

&lt;p&gt;Free API key — 1000 req/month&lt;br&gt;
Sign up at compressor.baidibek.kz, create an API key in the dashboard, and you get 1000 requests/month for free.&lt;/p&gt;

&lt;p&gt;curl -X POST &lt;a href="https://api.compressor.baidibek.kz/compress" rel="noopener noreferrer"&gt;https://api.compressor.baidibek.kz/compress&lt;/a&gt; \&lt;br&gt;
  -H "X-API-Key: YOUR_KEY" \&lt;br&gt;
  -F "image=&lt;a class="mentioned-user" href="https://dev.to/photo"&gt;@photo&lt;/a&gt;.jpg" \&lt;br&gt;
  -F "quality=80" \&lt;br&gt;
  -F "format=webp" \&lt;br&gt;
  -F "width=1280" \&lt;br&gt;
  -o compressed.webp&lt;/p&gt;

</description>
      <category>api</category>
      <category>showdev</category>
      <category>sideprojects</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
