<?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>Forem: Ahmet Sayar</title>
    <description>The latest articles on Forem by Ahmet Sayar (@ahmet_sayar_258baaf54792e).</description>
    <link>https://forem.com/ahmet_sayar_258baaf54792e</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%2F3661502%2F878a7d71-2347-4a0f-bbc5-c86da3a34c6e.png</url>
      <title>Forem: Ahmet Sayar</title>
      <link>https://forem.com/ahmet_sayar_258baaf54792e</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/ahmet_sayar_258baaf54792e"/>
    <language>en</language>
    <item>
      <title>[Boost]</title>
      <dc:creator>Ahmet Sayar</dc:creator>
      <pubDate>Sun, 14 Dec 2025 16:06:56 +0000</pubDate>
      <link>https://forem.com/ahmet_sayar_258baaf54792e/-2jpd</link>
      <guid>https://forem.com/ahmet_sayar_258baaf54792e/-2jpd</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/ahmet_sayar_258baaf54792e" 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%2F3661502%2F878a7d71-2347-4a0f-bbc5-c86da3a34c6e.png" alt="ahmet_sayar_258baaf54792e"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/ahmet_sayar_258baaf54792e/stop-uploading-files-i-built-a-privacy-first-converter-with-webassembly-10il" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;Stop Uploading Files: I Built a Privacy-First Converter with WebAssembly 🛡️&lt;/h2&gt;
      &lt;h3&gt;Ahmet Sayar ・ Dec 14&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#showdev&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#webassembly&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#webdev&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#privacy&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>showdev</category>
      <category>webassembly</category>
      <category>webdev</category>
      <category>privacy</category>
    </item>
    <item>
      <title>Stop Uploading Files: I Built a Privacy-First Converter with WebAssembly 🛡️</title>
      <dc:creator>Ahmet Sayar</dc:creator>
      <pubDate>Sun, 14 Dec 2025 15:59:39 +0000</pubDate>
      <link>https://forem.com/ahmet_sayar_258baaf54792e/stop-uploading-files-i-built-a-privacy-first-converter-with-webassembly-10il</link>
      <guid>https://forem.com/ahmet_sayar_258baaf54792e/stop-uploading-files-i-built-a-privacy-first-converter-with-webassembly-10il</guid>
      <description>&lt;p&gt;`As developers, we often find ourselves needing quick tools to convert a video, remove a background from an image, or clean up audio noise. The problem? Most online tools force you to upload your files to a remote server.&lt;/p&gt;

&lt;p&gt;This introduces two major issues:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;Privacy Risks:&lt;/strong&gt; You are handing over sensitive data to unknown servers.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Latency:&lt;/strong&gt; Uploading a 500MB video just to convert it takes forever.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I wanted to solve this by leveraging the power of modern browsers. So, I built &lt;strong&gt;&lt;a href="https://convertsafely.com/en" rel="noopener noreferrer"&gt;ConvertSafely&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  🚀 The Architecture: True Client-Side Processing
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;ConvertSafely&lt;/strong&gt; is designed to process everything locally on your device. By utilizing &lt;strong&gt;WebAssembly (Wasm)&lt;/strong&gt; and client-side AI models, the heavy lifting happens right in your browser. Your files never leave your computer.&lt;/p&gt;

&lt;p&gt;This architecture offers:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Zero Latency:&lt;/strong&gt; No upload/download waiting times.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;100% Privacy:&lt;/strong&gt; Since there is no backend storage of your files, data breaches regarding your media are architecturally impossible.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Serverless Scalability:&lt;/strong&gt; The processing power comes from the user's device, not expensive cloud GPUs.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Not Just Simple Conversion: Introducing AI Features
&lt;/h2&gt;

&lt;p&gt;While standard file conversion is useful, I wanted to push the boundaries of what the web can do. Beyond converting Videos, Images, and Documents, I recently integrated &lt;strong&gt;Client-Side AI tools&lt;/strong&gt;:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. 🎙️ AI Noise Remover
&lt;/h3&gt;

&lt;p&gt;Cleaning up audio usually requires heavy desktop software. ConvertSafely uses browser-based processing to isolate voice frequencies and remove background static or noise instantly, without sending the audio file to the cloud.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. 🖼️ Background Remover
&lt;/h3&gt;

&lt;p&gt;Using machine learning models that run directly in the browser, you can strip backgrounds from images in seconds. It’s perfect for e-commerce or profile pictures, and again: completely private.&lt;/p&gt;

&lt;h2&gt;
  
  
  🧰 Full Feature Set
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Media Conversion:&lt;/strong&gt; Video, Audio, Image formats (WebP, MP4, MP3, PNG, etc.).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Document Tools:&lt;/strong&gt; PDF and Text conversions.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI Tools:&lt;/strong&gt; Background Removal &amp;amp; Noise Reduction.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Secure:&lt;/strong&gt; No registration, no uploads, no logs.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Roadmap &amp;amp; Feedback
&lt;/h2&gt;

&lt;p&gt;I am currently working on optimizing the Wasm implementation for even larger files and improving the accuracy of the AI models.&lt;/p&gt;

&lt;p&gt;I built this to be the "Swiss Army Knife" I always wanted: clean, fast, and respectful of user data.&lt;/p&gt;

&lt;p&gt;I’d love to hear your feedback on the performance, especially on the new AI features!&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;Try it here:&lt;/strong&gt; &lt;a href="https://www.convertsafely.com/en" rel="noopener noreferrer"&gt;https://www.convertsafely.com/en&lt;/a&gt;&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>webassembly</category>
      <category>webdev</category>
      <category>privacy</category>
    </item>
  </channel>
</rss>
