<?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: Muammar Siddiuqi</title>
    <description>The latest articles on DEV Community by Muammar Siddiuqi (@muammarsiddiqui).</description>
    <link>https://dev.to/muammarsiddiqui</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%2F1213014%2F8533d223-8db9-408c-a060-6083d29555b8.jpg</url>
      <title>DEV Community: Muammar Siddiuqi</title>
      <link>https://dev.to/muammarsiddiqui</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/muammarsiddiqui"/>
    <language>en</language>
    <item>
      <title>ApiDeck: A Faster Way to Explore ASP.NET Core APIs</title>
      <dc:creator>Muammar Siddiuqi</dc:creator>
      <pubDate>Thu, 29 Jan 2026 11:08:29 +0000</pubDate>
      <link>https://dev.to/muammarsiddiqui/apideck-a-faster-way-to-explore-aspnet-core-apis-2o03</link>
      <guid>https://dev.to/muammarsiddiqui/apideck-a-faster-way-to-explore-aspnet-core-apis-2o03</guid>
      <description>&lt;p&gt;Ever opened Swagger on a large API and just waited… UI loading… scrolling lag… endpoints taking forever 😅&lt;/p&gt;

&lt;p&gt;Swagger does the job, but on bigger projects it can start to feel heavy and slow — especially when all you want is a quick, clean view.&lt;/p&gt;

&lt;p&gt;That daily frustration pushed me to build something lighter.&lt;/p&gt;

&lt;p&gt;🚀** Meet ApiDeck.AspNetCore**&lt;/p&gt;

&lt;p&gt;It generates a fast, lightweight API spec directly from ASP.NET Core metadata — no heavy UI, no lag. Just your APIs in a clean, structured format.&lt;/p&gt;

&lt;p&gt;Setup is intentionally simple:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;app.UseApideck();&lt;/code&gt;&lt;br&gt;
That’s it.&lt;/p&gt;

&lt;p&gt;📦** Why ApiDeck?**&lt;br&gt;
• A lightweight alternative to Swagger UI&lt;br&gt;
• Faster startup and API discovery&lt;br&gt;
• Clean, structured API metadata output&lt;br&gt;
• Built for modern ASP.NET Core&lt;/p&gt;

&lt;p&gt;Install it in seconds:&lt;br&gt;
&lt;code&gt;dotnet add package ApiDeck.AspNetCore&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;👉 Try it out and let me know what you think! This is still evolving, and your feedback from real projects would be incredibly valuable.&lt;/p&gt;

&lt;p&gt;NuGet:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; https://www.nuget.org/packages/ApiDeck.AspNetCore
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h1&gt;
  
  
  dotnet #aspnetcore #swagger #nuget #csharp #backend #developers #opensource #api
&lt;/h1&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%2Fwfwj4exq8d31bpx3hjfe.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%2Fwfwj4exq8d31bpx3hjfe.png" alt=" " width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>dotnet</category>
      <category>csharp</category>
      <category>programming</category>
    </item>
    <item>
      <title>Handling Time Zones in .NET Without the Pain – RegionTime</title>
      <dc:creator>Muammar Siddiuqi</dc:creator>
      <pubDate>Tue, 16 Dec 2025 06:33:44 +0000</pubDate>
      <link>https://dev.to/muammarsiddiqui/handling-time-zones-in-net-without-the-pain-regiontime-575b</link>
      <guid>https://dev.to/muammarsiddiqui/handling-time-zones-in-net-without-the-pain-regiontime-575b</guid>
      <description>&lt;p&gt;Time zones are one of the most common sources of bugs in production systems.&lt;/p&gt;

&lt;p&gt;While working on real-world .NET applications, I needed a reliable way to:&lt;/p&gt;

&lt;p&gt;Convert UTC to region-specific time&lt;/p&gt;

&lt;p&gt;Handle Daylight Saving Time (DST) correctly&lt;/p&gt;

&lt;p&gt;Avoid server-time dependency&lt;/p&gt;

&lt;p&gt;Keep the API simple&lt;/p&gt;

&lt;p&gt;Time zones are a silent source of production bugs.&lt;/p&gt;

&lt;p&gt;After dealing with repeated timezone and DST issues in real .NET projects, I built &lt;a href="https://www.nuget.org/packages/RegionTime/" rel="noopener noreferrer"&gt;RegionTime&lt;/a&gt; — a lightweight NuGet package that handles region-specific time correctly.&lt;/p&gt;

&lt;p&gt;👉 RegionTime (NuGet)&lt;br&gt;
&lt;a href="https://www.nuget.org/packages/RegionTime/" rel="noopener noreferrer"&gt;https://www.nuget.org/packages/RegionTime/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Why &lt;a href="https://www.nuget.org/packages/RegionTime/" rel="noopener noreferrer"&gt;RegionTime&lt;/a&gt;?&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.nuget.org/packages/RegionTime/" rel="noopener noreferrer"&gt;RegionTime&lt;/a&gt;is a closed-source, production-ready NuGet package designed to remove timezone complexity from your application logic.&lt;/p&gt;

&lt;p&gt;Key features:&lt;/p&gt;

&lt;p&gt;✔ UTC to region conversion&lt;br&gt;
✔ DST-safe&lt;br&gt;
✔ Cross-platform&lt;br&gt;
✔ Clean, minimal API&lt;br&gt;
✔ Closed-source &amp;amp; enterprise-friendly&lt;/p&gt;

&lt;p&gt;If your application serves users across multiple regions, RegionTime can save you both time and bugs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;About the Author&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Built by &lt;a href="https://muammar-siddiqui.com/" rel="noopener noreferrer"&gt;Muammar Siddiqui&lt;/a&gt;, a .NET developer working on production-grade systems.&lt;/p&gt;

&lt;p&gt;🔗 Portfolio: &lt;a href="https://muammar-siddiqui.com/" rel="noopener noreferrer"&gt;https://muammar-siddiqui.com/&lt;/a&gt;&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%2F0i0rirn6xutqmidjlwgo.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%2F0i0rirn6xutqmidjlwgo.png" alt=" " width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>dotnet</category>
      <category>csharp</category>
      <category>nuget</category>
      <category>timezone</category>
    </item>
  </channel>
</rss>
