<?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: Sagar Kewat</title>
    <description>The latest articles on DEV Community by Sagar Kewat (@sagarithm).</description>
    <link>https://dev.to/sagarithm</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%2F2689452%2F32ffde6e-1ef5-4aa5-899b-09e47a22ab10.png</url>
      <title>DEV Community: Sagar Kewat</title>
      <link>https://dev.to/sagarithm</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sagarithm"/>
    <language>en</language>
    <item>
      <title>The Era of Keywords Is Dead: Architecture of Modern Search (SearchOS)</title>
      <dc:creator>Sagar Kewat</dc:creator>
      <pubDate>Wed, 16 Sep 2026 17:37:03 +0000</pubDate>
      <link>https://dev.to/sagarithm/the-era-of-keywords-is-dead-architecture-of-modern-search-searchos-4eh2</link>
      <guid>https://dev.to/sagarithm/the-era-of-keywords-is-dead-architecture-of-modern-search-searchos-4eh2</guid>
      <description>&lt;p&gt;Search is undergoing the most radical architectural transformation since PageRank was invented in 1998.&lt;/p&gt;

&lt;p&gt;If your technical team or growth engine is still obsessing over keyword density, buying low-tier directory backlinks, and churning out generic articles, you are playing a 2012 game in a 2026 AI ecosystem.&lt;/p&gt;

&lt;p&gt;Google, Perplexity, Claude, and ChatGPT do not evaluate pages the way legacy web search used to. They evaluate &lt;strong&gt;entities&lt;/strong&gt;, navigate &lt;strong&gt;dense vector embeddings&lt;/strong&gt;, and measure &lt;strong&gt;machine-verified trust&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Here is the architectural blueprint of how modern search actually works, why legacy SEO fails, and how to build a &lt;strong&gt;Search Domination System (SearchOS)&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  1. The Paradigm Shift: 2014 Keyword Hacking vs 2026 Reality
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Outdated 2014 SEO Trap&lt;/th&gt;
&lt;th&gt;The 2026 Machine Reality&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Keyword stuffing &amp;amp; chasing vanity volume lists&lt;/td&gt;
&lt;td&gt;Entity-first Knowledge Graph &amp;amp; semantic vector matching&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Buying spammy backlinks from low-trust PBNs&lt;/td&gt;
&lt;td&gt;Verified machine trust: Experience, first-hand data &amp;amp; E-E-A-T&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Publishing generic, commoditized AI-spun articles&lt;/td&gt;
&lt;td&gt;Proprietary data moats &amp;amp; benchmarks AI cannot hallucinate&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Relying on search traffic without brand authority&lt;/td&gt;
&lt;td&gt;Closed-loop topical authority graphs &amp;amp; zero-leak PageRank hubs&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The algorithm does not rank content. &lt;strong&gt;It ranks trust.&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  2. The 3-Layer Architecture of Modern Search Engines
&lt;/h2&gt;

&lt;p&gt;To dominate search today, engineers and founders must understand what happens under the hood across three distinct layers:&lt;/p&gt;

&lt;h3&gt;
  
  
  Layer 1: Vector Embeddings (Semantic Space)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;How Machines Evaluate It&lt;/strong&gt;: Inverted index keyword matching is augmented by dense vector representations (transformer-based embeddings). Queries and documents are mapped into high-dimensional vector space where semantic cosine similarity determines conceptual alignment.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Your Strategic Advantage&lt;/strong&gt;: Topical depth and contextual relevance completely supersede raw keyword repetition.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Layer 2: Entity Knowledge Graph
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;How Machines Evaluate It&lt;/strong&gt;: Search engines extract named entities (People, Organizations, Technologies, Products) and connect them using RDF-style relationship triples: &lt;code&gt;(Subject) -&amp;gt; [Predicate] -&amp;gt; (Object)&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Your Strategic Advantage&lt;/strong&gt;: Anchor your identity with JSON-LD &lt;code&gt;Organization&lt;/code&gt; and &lt;code&gt;Person&lt;/code&gt; schemas, referencing verified &lt;code&gt;sameAs&lt;/code&gt; URIs (Wikidata, LinkedIn, Crunchbase).
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"@context"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://schema.org"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"@type"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Person"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Sagar Kewat"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"url"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://sagarithm.in"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"sameAs"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="s2"&gt;"https://www.linkedin.com/in/sagarithm"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="s2"&gt;"https://github.com/sagarithm"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="s2"&gt;"https://twitter.com/sagarithm"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"jobTitle"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Founder &amp;amp; Software Craftsman"&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Layer 3: Generative Retrieval &amp;amp; RAG
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;How Machines Evaluate It&lt;/strong&gt;: AI Search engines like Perplexity, ChatGPT Search, and Google AI Overviews break content into discrete semantic chunks, score them with dense retrieval, and synthesize them in real time.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Your Strategic Advantage&lt;/strong&gt;: Deploy the &lt;strong&gt;DIRECT Answer Framework&lt;/strong&gt; — answer the primary search intent in the first 2 sentences of every H2 section for instantaneous extraction by RAG pipelines.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  3. The 4 Golden Rules of Generative Engine Optimization (GEO)
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Use the DIRECT Answer Framework&lt;/strong&gt;: Explicitly answer the core question before introducing nuance or context. LLM chunk extractors prioritize clear, assertive declarations.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Anchor Your Entity in the Global Graph&lt;/strong&gt;: Never publish content under anonymous bylines. Connect author entities to real cryptographic and web-anchored identities.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Build Proprietary Data Moats&lt;/strong&gt;: AI engines cannot hallucinate original benchmarks, performance telemetry, or novel case studies. Publish primary source data nobody else has.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Engineer Closed-Loop Topic Clusters&lt;/strong&gt;: Group related technical topics into tightly coupled clusters that link back to your cornerstone pillar with zero broken links or external PageRank leakage.&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  4. Inside the 15-Chapter Search Domination System
&lt;/h2&gt;

&lt;p&gt;I have codified this entire paradigm into a comprehensive 15-chapter operating system:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Chapters 01–05: The Core Mechanics&lt;/strong&gt; — Crawling pipelines, inverted index filters, vector embeddings, and internal PageRank sculpting.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Chapters 06–09: Entity SEO, GEO &amp;amp; AIO&lt;/strong&gt; — Triggering Google Knowledge Panels, optimizing for Perplexity &amp;amp; ChatGPT, and automated agent pipelines.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Chapters 10–13: Psychology &amp;amp; Monetization&lt;/strong&gt; — SERP click behavior, programmatic SaaS acquisition, and scaling retainer engagements.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Chapters 14–15: Execution Systems&lt;/strong&gt; — Full technical audit SOPs, content brief templates, and actionable 30-Day and 90-Day execution sprints.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Get the Full Operating System
&lt;/h2&gt;

&lt;p&gt;The complete 15-chapter guide, technical audit frameworks, and sprint roadmaps are available now:&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;&lt;a href="https://ko-fi.com/s/168daeb6b4" rel="noopener noreferrer"&gt;Get the Search Domination System on Ko-fi (Pay what you want, starting at $5)&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Follow Sagar Kewat (&lt;a href="https://sagarithm.in" rel="noopener noreferrer"&gt;@sagarithm&lt;/a&gt;) for deep dives into AI engineering, system architecture, and technical venture building.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>seo</category>
      <category>ai</category>
      <category>webdev</category>
      <category>architecture</category>
    </item>
    <item>
      <title>Prompt Engineering: Architecture and Production Systems: A First-Principles Architecture Blueprint</title>
      <dc:creator>Sagar Kewat</dc:creator>
      <pubDate>Mon, 14 Sep 2026 05:36:26 +0000</pubDate>
      <link>https://dev.to/sagarithm/prompt-engineering-architecture-and-production-systems-a-first-principles-architecture-blueprint-147p</link>
      <guid>https://dev.to/sagarithm/prompt-engineering-architecture-and-production-systems-a-first-principles-architecture-blueprint-147p</guid>
      <description>&lt;h2&gt;
  
  
  Introduction: The Hidden Cost of Premature Complexity
&lt;/h2&gt;

&lt;p&gt;When scaling systems around &lt;strong&gt;Prompt Engineering: Architecture and Production Systems&lt;/strong&gt;, the biggest point of failure is rarely raw throughput—it is state opacity and unstructured failure modes. Naive implementations paper over latency anomalies until production traffic overwhelms downstream dependencies.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Establishing Hard Boundary Invariants
&lt;/h2&gt;

&lt;p&gt;Every external request must be validated against a strict schema contract at the boundary. Do not allow loosely typed dictionaries to traverse internal service layers.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// Boundary schema validator contract&lt;/span&gt;
&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;validateIngestionPayload&lt;/span&gt;&lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;T&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;schema&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;Schema&lt;/span&gt;&lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;T&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;input&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;unknown&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt; &lt;span class="nx"&gt;T&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;result&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;schema&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;safeParse&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;input&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
  &lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="o"&gt;!&lt;/span&gt;&lt;span class="nx"&gt;result&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;success&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="k"&gt;throw&lt;/span&gt; &lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nc"&gt;ContractViolationError&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;Ingestion schema breached&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;result&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;error&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;
  &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nx"&gt;result&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;data&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  2. Bounded Concurrency &amp;amp; Telemetry
&lt;/h2&gt;

&lt;p&gt;Unbounded task queues are timebombs. Always introduce token-bucket rate limiters and deterministic circuit breakers.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Production Deployment Checklist
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Zero Silent Drops&lt;/strong&gt;: Every background failure must emit structured JSON logs.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bounded Backpressure&lt;/strong&gt;: Set hard caps on buffer depth and concurrency.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Automated Canary Validation&lt;/strong&gt;: Verify core performance metrics before cutting over live traffic.&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;&lt;em&gt;Written by &lt;a href="https://www.sagarithm.in" rel="noopener noreferrer"&gt;Sagar Kewat&lt;/a&gt; — Founder &amp;amp; Engineer building autonomous AI systems at Pixartual.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>architecture</category>
      <category>systems</category>
      <category>ai</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Prompt Engineering: 7 Advanced Techniques for AI Control</title>
      <dc:creator>Sagar Kewat</dc:creator>
      <pubDate>Fri, 21 Aug 2026 13:28:27 +0000</pubDate>
      <link>https://dev.to/sagarithm/prompt-engineering-7-advanced-techniques-for-ai-control-k3k</link>
      <guid>https://dev.to/sagarithm/prompt-engineering-7-advanced-techniques-for-ai-control-k3k</guid>
      <description>&lt;p&gt;"Be specific." "Act as an expert."&lt;/p&gt;

&lt;p&gt;Most prompt engineering advice sounds great in theory, but the moment you try to build production AI software, it falls apart.&lt;/p&gt;

&lt;p&gt;While engineering production AI systems at Pixartual, we ran into the exact issues every builder faces:&lt;br&gt;
🔴 JSON parser crashes from conversational filler ("Here is your JSON:")&lt;br&gt;
🔴 AI models forgetting middle constraints due to context blending&lt;br&gt;
🔴 RAG systems fabricating answers when reference data was missing&lt;/p&gt;

&lt;p&gt;Prompt engineering isn’t a game of guessing phrases—it is the engineering discipline of probability direction. It is how you constrain non-deterministic neural networks into predictable, production-grade outputs.&lt;/p&gt;

&lt;p&gt;To solve this, I designed and battle-tested The 7 Sagarithm Advanced Prompt Engineering Frameworks:&lt;/p&gt;

&lt;p&gt;🔹 Cognitive Layering Protocol (CLP): 4-tier structural separation (Persona ➔ Grid ➔ Scratchpad ➔ Emission).&lt;br&gt;
🔹 Reverse Context Injection (RCI): Turns LLMs into requirements auditors that interview you first.&lt;br&gt;
🔹 Dual-Agent Self-Adversarial Sandbox (SAS): Internal Creator vs. Red-Teamer audit loop.&lt;br&gt;
🔹 Prompt Token Density Optimization (PTDO): Key-Value Constraint Syntax cutting API token costs by 40-60%.&lt;br&gt;
🔹 Deterministic Schema Lock (DSL): Guarantees 100% syntactically valid JSON output with zero markdown wrappers.&lt;br&gt;
🔹 Context Boundary Anchor (CBA): Information barrier eliminating hallucinations with explicit fallback signals ("UNGROUNDED_QUERY").&lt;br&gt;
🔹 Dynamic Variable Matrix (DVM): Modular template architecture for full-stack AI applications.&lt;/p&gt;

&lt;p&gt;I published the complete 5,000-word Master Guide featuring copy-paste prompt templates, empirical benchmarks, and model-specific tuning for GPT-5, Claude 5, Gemini 3.6, and DeepSeek R4.&lt;/p&gt;

&lt;p&gt;Read the full guide here: &lt;a href="https://www.sagarithm.in/prompt-engineering" rel="noopener noreferrer"&gt;https://www.sagarithm.in/b/prompt-engineering-master-guide&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What prompt framework has saved you the most debugging time? Let’s discuss in the comments 👇&lt;/p&gt;

</description>
      <category>ai</category>
      <category>sagarithm</category>
      <category>promptengineering</category>
    </item>
    <item>
      <title>Founder Intern

For the next 2 weeks, I’m documenting my journey as a Prompt Engineering Intern at Virtual Height Pvt Ltd.

Real observations about AI workflows, systems, execution, and growth.

Daily logs:
"sagarithm.in"
Day 01 starts tomorrow.</title>
      <dc:creator>Sagar Kewat</dc:creator>
      <pubDate>Sun, 31 May 2026 16:43:01 +0000</pubDate>
      <link>https://dev.to/sagarithm/founder-x-intern-for-the-next-2-weeks-im-documenting-my-journey-as-a-prompt-engineering-intern-2hf5</link>
      <guid>https://dev.to/sagarithm/founder-x-intern-for-the-next-2-weeks-im-documenting-my-journey-as-a-prompt-engineering-intern-2hf5</guid>
      <description></description>
      <category>ai</category>
      <category>career</category>
      <category>devjournal</category>
      <category>llm</category>
    </item>
    <item>
      <title>I Built My Personal Developer Website to Document My Projects</title>
      <dc:creator>Sagar Kewat</dc:creator>
      <pubDate>Thu, 05 Mar 2026 10:33:19 +0000</pubDate>
      <link>https://dev.to/sagarithm/i-built-my-personal-developer-website-to-document-my-projects-3i90</link>
      <guid>https://dev.to/sagarithm/i-built-my-personal-developer-website-to-document-my-projects-3i90</guid>
      <description>&lt;p&gt;After building multiple projects and experiments over the past few years, I realized something:&lt;/p&gt;

&lt;p&gt;Everything I created was scattered across different places.&lt;/p&gt;

&lt;p&gt;GitHub repos.&lt;br&gt;
Side projects.&lt;br&gt;
Experiments.&lt;/p&gt;

&lt;p&gt;So I decided to build a central hub for everything.&lt;/p&gt;

&lt;p&gt;I recently launched my personal website:&lt;/p&gt;

&lt;p&gt;🌐 &lt;a href="https://sagarkewat.sagarithm.in" rel="noopener noreferrer"&gt;https://sagarkewat.sagarithm.in&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The goal is simple: document what I’m building.&lt;/p&gt;

&lt;p&gt;I’m a 17&lt;br&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%2F43cx76425e6rjgxa9bqp.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%2F43cx76425e6rjgxa9bqp.png" alt=" " width="601" height="802"&gt;&lt;/a&gt;-year-old self-taught developer exploring web development, design systems, AI tools, and digital products.&lt;/p&gt;

&lt;p&gt;The website includes:&lt;/p&gt;

&lt;p&gt;• My projects and ventures&lt;br&gt;
• Tools and experiments I’m building&lt;br&gt;
• Technologies I work with&lt;br&gt;
• My development journey&lt;/p&gt;

&lt;p&gt;Current projects include:&lt;/p&gt;

&lt;p&gt;• Pixartual&lt;br&gt;
• PixartualAI&lt;br&gt;
• Colurt&lt;br&gt;
• Sagarithm&lt;/p&gt;

&lt;p&gt;I plan to continuously update it as new tools and products are built.&lt;/p&gt;

&lt;p&gt;If you’re a developer or builder, I’d appreciate feedback.&lt;/p&gt;

&lt;p&gt;🌐 &lt;a href="https://sagarkewat.sagarithm.in" rel="noopener noreferrer"&gt;https://sagarkewat.sagarithm.in&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>productivity</category>
    </item>
    <item>
      <title>How I Built the Pixartual Studio Website — A Full-Stack Build from Scratch</title>
      <dc:creator>Sagar Kewat</dc:creator>
      <pubDate>Tue, 20 Jan 2026 15:52:46 +0000</pubDate>
      <link>https://dev.to/sagarithm/how-i-built-the-pixartual-studio-website-a-full-stack-build-from-scratch-30k4</link>
      <guid>https://dev.to/sagarithm/how-i-built-the-pixartual-studio-website-a-full-stack-build-from-scratch-30k4</guid>
      <description>&lt;p&gt;``I’ve recently completed and launched the Pixartual Studio website, built as a full-stack project from the ground up.&lt;/p&gt;

&lt;p&gt;The goal was not just visual polish, but:&lt;br&gt;
• clean UI/UX&lt;br&gt;
• strong performance&lt;br&gt;
• scalable architecture&lt;br&gt;
• long-term maintainability&lt;/p&gt;

&lt;p&gt;The website was designed to represent a modern creative-tech studio—where imagination meets engineering.&lt;/p&gt;

&lt;p&gt;🔗 Explore the live website: &lt;a href="https://pixartual.studio" rel="noopener noreferrer"&gt;https://pixartual.studio&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I’m sharing this to document the journey and invite feedback from fellow developers and designers.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>sagarithm</category>
      <category>performance</category>
    </item>
  </channel>
</rss>
