<?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: waqas buzdar</title>
    <description>The latest articles on Forem by waqas buzdar (@waqasbuzdar).</description>
    <link>https://forem.com/waqasbuzdar</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%2F3789774%2F65c02bdd-3c45-46fc-a9fe-1229fe73b33a.png</url>
      <title>Forem: waqas buzdar</title>
      <link>https://forem.com/waqasbuzdar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/waqasbuzdar"/>
    <language>en</language>
    <item>
      <title>I built a 100% Privacy-First Image Converter using Alpine.js &amp; Tailwind</title>
      <dc:creator>waqas buzdar</dc:creator>
      <pubDate>Sun, 15 Mar 2026 16:16:31 +0000</pubDate>
      <link>https://forem.com/waqasbuzdar/i-built-a-100-privacy-first-image-converter-using-alpinejs-tailwind-29hm</link>
      <guid>https://forem.com/waqasbuzdar/i-built-a-100-privacy-first-image-converter-using-alpinejs-tailwind-29hm</guid>
      <description>&lt;p&gt;As developers, we often need to convert images or optimize them for performance. But I always hated uploading my private project images to some random cloud server just to convert them to WebP or PNG.&lt;br&gt;
I wanted a tool that:&lt;br&gt;
Runs locally: No backend, no storage, no uploads.&lt;br&gt;
Privacy-First: Everything happens inside the browser.&lt;br&gt;
Fast: No server lag or network latency.&lt;br&gt;
So, I built WebPConvert.pro.&lt;br&gt;
It uses standard browser APIs to handle image processing. No heavy libraries or backend infrastructure needed. It’s been a great exercise in understanding how much we can actually do on the client-side without relying on a server.&lt;br&gt;
If you’re a developer who values privacy and site speed, check it out and let me know what you think! Would love some feedback on how to improve the compression engine.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>privacy</category>
      <category>buildinpublic</category>
      <category>frontend</category>
    </item>
    <item>
      <title>How I Optimized My Client-Side Image Tool to Hit a 99/100 Google PageSpeed Score</title>
      <dc:creator>waqas buzdar</dc:creator>
      <pubDate>Thu, 26 Feb 2026 17:12:54 +0000</pubDate>
      <link>https://forem.com/waqasbuzdar/how-i-optimized-my-client-side-image-tool-to-hit-a-99100-google-pagespeed-score-4l2a</link>
      <guid>https://forem.com/waqasbuzdar/how-i-optimized-my-client-side-image-tool-to-hit-a-99100-google-pagespeed-score-4l2a</guid>
      <description>&lt;p&gt;Google loves fast websites, but achieving a near-perfect score while keeping a tool functional is a challenge. Today, I’m happy to share that my project, WebPConvert.pro, officially hit a 99/100 Desktop Performance Score.&lt;br&gt;
Here’s a quick breakdown of how I did it and why I built it:&lt;br&gt;
The Challenge: Privacy &amp;amp; Speed&lt;br&gt;
Most online converters require you to upload your files to their servers. This is slow and risky for privacy. I wanted to build a 100% Client-Side tool where images never leave your browser.&lt;br&gt;
How I Optimized for 99/100 Score:&lt;br&gt;
Eliminated Render-Blocking Resources: I moved heavy JavaScript libraries (like Alpine.js and the compression engine) from the &lt;/p&gt; to the bottom of the .&lt;br&gt;
Lean HTML/CSS: Used Tailwind CSS but kept the implementation lightweight to ensure the "Converter Box" renders instantly.&lt;br&gt;
Lazy Loading Logic: The heavy lifting (image processing) only kicks in when the user interacts with the tool, keeping the initial load lightning-fast.&lt;br&gt;
The Tech Stack:&lt;br&gt;
Alpine.js: For lightweight reactivity.&lt;br&gt;
Tailwind CSS: For a modern, responsive UI.&lt;br&gt;
Browser-Image-Compression: To handle local processing.&lt;br&gt;
The result? Instant conversions, total privacy, and a score that Google loves.&lt;br&gt;
Check out the live tool here: WebPConvert.pro&lt;br&gt;
I’d love to hear your feedback on the performance or the UI!

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

</description>
      <category>webdev</category>
      <category>performance</category>
      <category>javascript</category>
      <category>showdev</category>
    </item>
    <item>
      <title>I built a 100% Client-Side Image Compressor &amp; WebP Converter (Zero Server Uploads)</title>
      <dc:creator>waqas buzdar</dc:creator>
      <pubDate>Tue, 24 Feb 2026 15:16:51 +0000</pubDate>
      <link>https://forem.com/waqasbuzdar/i-built-a-100-client-side-image-compressor-webp-converter-zero-server-uploads-2ocm</link>
      <guid>https://forem.com/waqasbuzdar/i-built-a-100-client-side-image-compressor-webp-converter-zero-server-uploads-2ocm</guid>
      <description>&lt;p&gt;Hi DEV Community! 👋&lt;br&gt;
As web developers and bloggers, we compress and convert images daily. But I noticed a huge privacy issue: Most free image converters force you to upload your files to their servers.&lt;br&gt;
I didn't want my private or client images sitting on a random server. So, I built a solution: WebPConvert.pro.&lt;br&gt;
Here is why it's different:&lt;br&gt;
🔒 100% Privacy: The entire conversion (WebP ↔ PNG/JPG) and compression happen client-side in your browser using JavaScript.&lt;br&gt;
⚡ Lightning Fast: Since there are no server uploads or downloads, it's instant.&lt;br&gt;
📉 SEO Friendly: Great for compressing images to boost your website's PageSpeed.&lt;br&gt;
I built the frontend to be super lightweight and fast. I am currently trying to get some initial users and would absolutely love your feedback on the UI and performance!&lt;br&gt;
🔗 Try it here: &lt;a href="https://webpconvert.pro" rel="noopener noreferrer"&gt;https://webpconvert.pro&lt;/a&gt;&lt;br&gt;
Let me know what you guys think or if you have any feature requests! 👇&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>showdev</category>
      <category>javascript</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
