<?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: SAHIL HASNAIN QADRI</title>
    <description>The latest articles on DEV Community by SAHIL HASNAIN QADRI (@sahil_hasnainqadri_01306).</description>
    <link>https://dev.to/sahil_hasnainqadri_01306</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4025669%2Fcea464c4-6900-426a-a4f2-7bd986b81c5b.png</url>
      <title>DEV Community: SAHIL HASNAIN QADRI</title>
      <link>https://dev.to/sahil_hasnainqadri_01306</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sahil_hasnainqadri_01306"/>
    <language>en</language>
    <item>
      <title>Building a GST Invoice App with Next.js for Indian Businesses</title>
      <dc:creator>SAHIL HASNAIN QADRI</dc:creator>
      <pubDate>Sun, 12 Jul 2026 02:46:59 +0000</pubDate>
      <link>https://dev.to/sahil_hasnainqadri_01306/building-a-gst-invoice-app-with-nextjs-for-indian-businesses-5hho</link>
      <guid>https://dev.to/sahil_hasnainqadri_01306/building-a-gst-invoice-app-with-nextjs-for-indian-businesses-5hho</guid>
      <description>&lt;h1&gt;
  
  
  GST Invoice App
&lt;/h1&gt;

&lt;p&gt;I needed a simple GST invoicing tool for my freelance work. Nothing fancy, just something that generates compliant invoices.&lt;/p&gt;

&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;GST Compliant&lt;/strong&gt; — CGST, SGST, IGST support&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PDF Export&lt;/strong&gt; — Download invoices as PDF&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Client Management&lt;/strong&gt; — Save and reuse client details&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dashboard&lt;/strong&gt; — Track invoices and payments&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Next.js 14&lt;/strong&gt; — React framework&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;TypeScript&lt;/strong&gt; — Type safety&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tailwind CSS&lt;/strong&gt; — Styling&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;jsPDF&lt;/strong&gt; — PDF generation&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why build this?
&lt;/h2&gt;

&lt;p&gt;Every GST tool I found was:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;SaaS with monthly fees&lt;/li&gt;
&lt;li&gt;Overly complex for small businesses&lt;/li&gt;
&lt;li&gt;Not customizable&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is open source, runs locally, and does exactly what's needed.&lt;/p&gt;

&lt;h2&gt;
  
  
  Quick Start
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone &amp;lt;repo&amp;gt;
&lt;span class="nb"&gt;cd &lt;/span&gt;gst-invoice-app
npm &lt;span class="nb"&gt;install
&lt;/span&gt;npm run dev
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Get it:&lt;/strong&gt; &lt;a href="https://sahilverse331.gumroad.com/l/zrwacb" rel="noopener noreferrer"&gt;GST Invoice App ($29)&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built with Next.js, TypeScript, Tailwind CSS.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>nextjs</category>
      <category>react</category>
      <category>typescript</category>
      <category>saas</category>
    </item>
    <item>
      <title>How I Built a WordPress Image Optimization Plugin</title>
      <dc:creator>SAHIL HASNAIN QADRI</dc:creator>
      <pubDate>Sun, 12 Jul 2026 02:41:25 +0000</pubDate>
      <link>https://dev.to/sahil_hasnainqadri_01306/how-i-built-a-wordpress-image-optimization-plugin-1obf</link>
      <guid>https://dev.to/sahil_hasnainqadri_01306/how-i-built-a-wordpress-image-optimization-plugin-1obf</guid>
      <description>&lt;h1&gt;
  
  
  WP Optimize Images
&lt;/h1&gt;

&lt;p&gt;WordPress sites are slow because of unoptimized images. I built a plugin that fixes this automatically.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Average WordPress page loads 2-3MB of images&lt;/li&gt;
&lt;li&gt;Most users upload full-resolution photos from their phones&lt;/li&gt;
&lt;li&gt;No one manually optimizes images before uploading&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Solution
&lt;/h2&gt;

&lt;p&gt;A plugin that:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Auto-compresses&lt;/strong&gt; images on upload (50-80% size reduction)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bulk optimizes&lt;/strong&gt; your entire media library&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Strips EXIF data&lt;/strong&gt; to reduce file size&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Resizes&lt;/strong&gt; oversized images to max dimensions&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;p&gt;Uses PHP GD/Imagick to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Convert to optimized JPEG/PNG&lt;/li&gt;
&lt;li&gt;Strip metadata (EXIF, IPTC, XMP)&lt;/li&gt;
&lt;li&gt;Resize based on configurable limits&lt;/li&gt;
&lt;li&gt;Save to media library with optimized version&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Download the ZIP&lt;/li&gt;
&lt;li&gt;WordPress Admin → Plugins → Add New → Upload Plugin&lt;/li&gt;
&lt;li&gt;Activate and configure&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Results
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;50-80% file size reduction&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No quality loss&lt;/strong&gt; (visually identical)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Faster page loads&lt;/strong&gt; = better SEO&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Get it:&lt;/strong&gt; &lt;a href="https://sahilverse331.gumroad.com/l/ualilc" rel="noopener noreferrer"&gt;WP Optimize Images ($9)&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built with PHP 7.4+, GD Library. WordPress 5.0+.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>wordpress</category>
      <category>php</category>
      <category>performance</category>
      <category>webdev</category>
    </item>
    <item>
      <title>I Built a CLI + GUI Tool for File Automation — Here's What It Does</title>
      <dc:creator>SAHIL HASNAIN QADRI</dc:creator>
      <pubDate>Sun, 12 Jul 2026 02:34:02 +0000</pubDate>
      <link>https://dev.to/sahil_hasnainqadri_01306/i-built-a-cli-gui-tool-for-file-automation-heres-what-it-does-51b8</link>
      <guid>https://dev.to/sahil_hasnainqadri_01306/i-built-a-cli-gui-tool-for-file-automation-heres-what-it-does-51b8</guid>
      <description>&lt;h1&gt;
  
  
  File Automation Toolkit
&lt;/h1&gt;

&lt;p&gt;I was tired of using 5 different tools for image compression, PDF manipulation, and file organization. So I built one that does it all.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Image Tools&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Compress images by 50-80% with minimal quality loss&lt;/li&gt;
&lt;li&gt;Batch resize to any dimension&lt;/li&gt;
&lt;li&gt;Convert between formats (JPG, PNG, WebP)&lt;/li&gt;
&lt;li&gt;Add text watermarks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;File Tools&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Auto-organize files by type, extension, or date&lt;/li&gt;
&lt;li&gt;Batch rename with patterns&lt;/li&gt;
&lt;li&gt;Find duplicate files by content hash&lt;/li&gt;
&lt;li&gt;Remove empty directories&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;PDF Tools&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Compress PDF file size&lt;/li&gt;
&lt;li&gt;Merge multiple PDFs&lt;/li&gt;
&lt;li&gt;Split by page count&lt;/li&gt;
&lt;li&gt;Extract specific pages&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Quick Start
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;filetoolkit
filetoolkit image compress ./photos &lt;span class="nt"&gt;-q&lt;/span&gt; 85
filetoolkit file organize ./downloads &lt;span class="nt"&gt;-b&lt;/span&gt; &lt;span class="nb"&gt;type
&lt;/span&gt;filetoolkit pdf merge file1.pdf file2.pdf
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Why?
&lt;/h2&gt;

&lt;p&gt;Every file tool I found online was either a web app that uploads your files, a paid SaaS with monthly subscriptions, or a half-baked script. This is a single CLI that runs locally — no uploads, no subscriptions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Get it:&lt;/strong&gt; &lt;a href="https://sahilverse331.gumroad.com/l/aaywa" rel="noopener noreferrer"&gt;File Automation Toolkit ($19)&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built with Python + Typer + Rich.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>cli</category>
      <category>productivity</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Test</title>
      <dc:creator>SAHIL HASNAIN QADRI</dc:creator>
      <pubDate>Sun, 12 Jul 2026 02:32:39 +0000</pubDate>
      <link>https://dev.to/sahil_hasnainqadri_01306/test-8gn</link>
      <guid>https://dev.to/sahil_hasnainqadri_01306/test-8gn</guid>
      <description>&lt;p&gt;Hello&lt;/p&gt;

</description>
      <category>test</category>
    </item>
  </channel>
</rss>
