<?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: Aditya sharma</title>
    <description>The latest articles on DEV Community by Aditya sharma (@iadi0).</description>
    <link>https://dev.to/iadi0</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%2F3730383%2F074c5956-c96e-4b6e-9771-80f054bd09ca.png</url>
      <title>DEV Community: Aditya sharma</title>
      <link>https://dev.to/iadi0</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/iadi0"/>
    <language>en</language>
    <item>
      <title>How I Built Aditya Portfolio: A Neobrutalist React, Vite &amp; Tailwind CSS v4 Showcase</title>
      <dc:creator>Aditya sharma</dc:creator>
      <pubDate>Thu, 16 Jul 2026 17:12:24 +0000</pubDate>
      <link>https://dev.to/iadi0/how-i-built-aditya-portfolio-a-neobrutalist-react-vite-tailwind-css-v4-showcase-1j7i</link>
      <guid>https://dev.to/iadi0/how-i-built-aditya-portfolio-a-neobrutalist-react-vite-tailwind-css-v4-showcase-1j7i</guid>
      <description>&lt;p&gt;Every developer needs a place to showcase their work, but most portfolio websites end up looking the same. I wanted something with a stronger personality, so I built Aditya Portfolio — a neobrutalist portfolio powered by React, Vite, and Tailwind CSS v4.&lt;/p&gt;

&lt;p&gt;Rather than relying on pre-made templates, I focused on creating a fast, responsive, and distinctive experience while keeping the codebase clean and maintainable.&lt;/p&gt;

&lt;p&gt;🎨 Design Philosophy: Neobrutalism&lt;/p&gt;

&lt;p&gt;Instead of following modern minimal design trends, I chose a neobrutalist approach that emphasizes bold visuals and strong contrast.&lt;/p&gt;

&lt;p&gt;Some of the key design elements include:&lt;/p&gt;

&lt;p&gt;Bold Black Borders using border-4 border-black&lt;br&gt;
Solid Color Palette with vibrant backgrounds instead of gradients&lt;br&gt;
Hard Offset Shadows using shadow-[4px_4px_0px_rgba(0,0,0,1)] to create a retro desktop-style appearance&lt;br&gt;
High Contrast Typography for improved readability&lt;br&gt;
Simple, Functional Layouts with minimal visual clutter&lt;/p&gt;

&lt;p&gt;The goal was to create a portfolio that feels memorable while remaining easy to navigate.&lt;/p&gt;

&lt;p&gt;⚡ Performance Optimization&lt;/p&gt;

&lt;p&gt;A visually rich interface shouldn't compromise performance. During development, I audited the website and optimized several areas to improve rendering efficiency.&lt;/p&gt;

&lt;p&gt;Eliminating Forced Reflow (Layout Thrashing)&lt;/p&gt;

&lt;p&gt;One issue came from the scroll progress indicator.&lt;/p&gt;

&lt;p&gt;Initially, the scroll handler recalculated layout values such as scrollHeight and clientHeight on every scroll event. Since these values require layout information, repeatedly reading them during scrolling caused unnecessary reflows and reduced rendering performance.&lt;/p&gt;

&lt;p&gt;The Solution&lt;/p&gt;

&lt;p&gt;I optimized the implementation by:&lt;/p&gt;

&lt;p&gt;Calculating the maximum scroll distance only on mount and window resize&lt;br&gt;
Using requestAnimationFrame() to synchronize updates with the browser's rendering cycle&lt;br&gt;
Updating the progress bar directly through a useRef reference instead of triggering React state updates&lt;br&gt;
Registering the scroll listener as passive to improve scrolling performance&lt;br&gt;
useEffect(() =&amp;gt; {&lt;br&gt;
  let maxScroll =&lt;br&gt;
    document.documentElement.scrollHeight -&lt;br&gt;
    document.documentElement.clientHeight;&lt;/p&gt;

&lt;p&gt;const handleResize = () =&amp;gt; {&lt;br&gt;
    maxScroll =&lt;br&gt;
      document.documentElement.scrollHeight -&lt;br&gt;
      document.documentElement.clientHeight;&lt;br&gt;
  };&lt;/p&gt;

&lt;p&gt;let ticking = false;&lt;/p&gt;

&lt;p&gt;const handleScroll = () =&amp;gt; {&lt;br&gt;
    if (!ticking) {&lt;br&gt;
      requestAnimationFrame(() =&amp;gt; {&lt;br&gt;
        const scrollTop =&lt;br&gt;
          window.scrollY || document.documentElement.scrollTop;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    const progress =
      maxScroll &amp;gt; 0 ? (scrollTop / maxScroll) * 100 : 0;

    if (progressBarRef.current) {
      progressBarRef.current.style.width = `${progress}%`;
    }

    ticking = false;
  });

  ticking = true;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;};&lt;/p&gt;

&lt;p&gt;window.addEventListener("resize", handleResize);&lt;br&gt;
  window.addEventListener("scroll", handleScroll, {&lt;br&gt;
    passive: true,&lt;br&gt;
  });&lt;/p&gt;

&lt;p&gt;return () =&amp;gt; {&lt;br&gt;
    window.removeEventListener("resize", handleResize);&lt;br&gt;
    window.removeEventListener("scroll", handleScroll);&lt;br&gt;
  };&lt;br&gt;
}, []);&lt;/p&gt;

&lt;p&gt;This reduced unnecessary layout calculations, improved scrolling smoothness, and kept the UI responsive even during continuous scrolling.&lt;/p&gt;

&lt;p&gt;🚀 Tech Stack&lt;br&gt;
React&lt;br&gt;
Vite&lt;br&gt;
Tailwind CSS v4&lt;br&gt;
Framer Motion&lt;br&gt;
React Icons&lt;br&gt;
Responsive Design&lt;br&gt;
Performance-focused architecture&lt;/p&gt;

&lt;p&gt;Building this portfolio wasn't just about creating a personal website—it was an opportunity to experiment with design systems, optimize browser performance, and apply frontend engineering best practices.&lt;/p&gt;

&lt;p&gt;I'm continuously improving it by adding new projects, refining animations, and exploring better optimization techniques.&lt;/p&gt;

&lt;p&gt;Portfolio: &lt;a href="https://aadi-sharma.dev" rel="noopener noreferrer"&gt;https://aadi-sharma.dev&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'd love to hear your thoughts or suggestions for future improvements.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
      <category>productivity</category>
    </item>
    <item>
      <title>I Will Build a Modern Next.js Website That Is Fast, Responsive, and SEO-Friendly</title>
      <dc:creator>Aditya sharma</dc:creator>
      <pubDate>Fri, 26 Jun 2026 04:23:35 +0000</pubDate>
      <link>https://dev.to/iadi0/i-will-build-a-modern-nextjs-website-that-is-fast-responsive-and-seo-friendly-1gal</link>
      <guid>https://dev.to/iadi0/i-will-build-a-modern-nextjs-website-that-is-fast-responsive-and-seo-friendly-1gal</guid>
      <description>&lt;p&gt;f you're launching a startup, SaaS product, business, or personal brand, your website needs to be more than just visually appealing—it should be fast, responsive, and built to scale.&lt;/p&gt;

&lt;p&gt;I specialize in developing modern websites using Next.js, React, and Tailwind CSS, focusing on performance, clean code, and an excellent user experience.&lt;/p&gt;

&lt;p&gt;What I Build&lt;br&gt;
🚀 SaaS Landing Pages&lt;br&gt;
💼 Business Websites&lt;br&gt;
👨‍💻 Portfolio Websites&lt;br&gt;
🤖 AI Startup Websites&lt;br&gt;
📱 Fully Responsive Designs&lt;br&gt;
⚡ High-Performance Next.js Applications&lt;br&gt;
Why Next.js?&lt;/p&gt;

&lt;p&gt;Next.js offers several advantages for modern web development:&lt;/p&gt;

&lt;p&gt;Faster page loading&lt;br&gt;
SEO-friendly architecture&lt;br&gt;
Optimized images and assets&lt;br&gt;
Better user experience&lt;br&gt;
Scalable and maintainable codebase&lt;br&gt;
My Development Process&lt;br&gt;
Understand your project requirements.&lt;br&gt;
Build a responsive, modern UI.&lt;br&gt;
Optimize for speed and SEO.&lt;br&gt;
Test across multiple devices and browsers.&lt;br&gt;
Deliver clean, production-ready code.&lt;br&gt;
Technologies I Use&lt;br&gt;
Next.js&lt;br&gt;
React&lt;br&gt;
Tailwind CSS&lt;br&gt;
TypeScript&lt;br&gt;
Node.js&lt;br&gt;
Express.js&lt;br&gt;
MongoDB&lt;br&gt;
PostgreSQL&lt;br&gt;
Need a Next.js Website?&lt;/p&gt;

&lt;p&gt;If you're looking for a developer who focuses on performance, responsive design, and clean code, I'd be happy to help.&lt;/p&gt;

&lt;p&gt;👉 View my Fiverr Gig: &lt;a href="https://www.fiverr.com/s/jjNYw9V" rel="noopener noreferrer"&gt;https://www.fiverr.com/s/jjNYw9V&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🌐 Portfolio: &lt;a href="https://aadi-sharma.dev/" rel="noopener noreferrer"&gt;https://aadi-sharma.dev/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>wordpress</category>
      <category>website</category>
    </item>
    <item>
      <title>Building My Developer Portfolio: My Projects, Skills, and Learning Journey</title>
      <dc:creator>Aditya sharma</dc:creator>
      <pubDate>Mon, 15 Jun 2026 19:54:04 +0000</pubDate>
      <link>https://dev.to/iadi0/building-my-developer-portfolio-my-projects-skills-and-learning-journey-1lc9</link>
      <guid>https://dev.to/iadi0/building-my-developer-portfolio-my-projects-skills-and-learning-journey-1lc9</guid>
      <description>&lt;h2&gt;
  
  
  Aditya Sharma Portfolio: Web Developer, Projects, Skills, and Learning Journey
&lt;/h2&gt;

&lt;p&gt;I recently built my personal developer portfolio to showcase my projects, skills, education, and learning journey as a BCA student and web developer.&lt;/p&gt;

&lt;p&gt;You can visit my portfolio here: &lt;a href="https://aadi-sharma.dev/" rel="noopener noreferrer"&gt;aadi-sharma.dev&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;My goal with this portfolio is simple: to create a clean, professional, and useful space where people can understand who I am, what I build, and what I am currently learning.&lt;/p&gt;

&lt;p&gt;I am Aditya Sharma, also known as Aadi, a student developer focused on frontend development, React, JavaScript, APIs, UI design, SEO, and real-world web projects.&lt;/p&gt;

&lt;h3&gt;
  
  
  What my portfolio includes
&lt;/h3&gt;

&lt;p&gt;My portfolio highlights my background, technical skills, learning path, and selected projects. I wanted it to feel more than just a basic resume website. It should show my work, my thinking, and my direction as a developer.&lt;/p&gt;

&lt;p&gt;Main sections include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;About me&lt;/li&gt;
&lt;li&gt;Skills and tools&lt;/li&gt;
&lt;li&gt;Projects&lt;/li&gt;
&lt;li&gt;Education&lt;/li&gt;
&lt;li&gt;Career goals&lt;/li&gt;
&lt;li&gt;Contact section&lt;/li&gt;
&lt;li&gt;Clean responsive UI&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Featured projects
&lt;/h3&gt;

&lt;p&gt;Some projects I am currently building and improving:&lt;/p&gt;

&lt;h3&gt;
  
  
  GitAura
&lt;/h3&gt;

&lt;p&gt;GitAura is a GitHub profile analyzer and developer analytics dashboard. It uses the GitHub API to turn profile data, repositories, and developer activity into clean visual insights.&lt;/p&gt;

&lt;h3&gt;
  
  
  Weather App
&lt;/h3&gt;

&lt;p&gt;Weather App is a real-time weather forecasting project built using JavaScript, weather APIs, responsive UI, and clean frontend design.&lt;/p&gt;

&lt;h3&gt;
  
  
  Portfolio Website
&lt;/h3&gt;

&lt;p&gt;My personal portfolio website presents my work, skills, education, projects, and developer journey in one professional place.&lt;/p&gt;

&lt;h3&gt;
  
  
  Student Tools
&lt;/h3&gt;

&lt;p&gt;I am also working on student-focused tools and frontend projects that solve practical problems and help me improve my development skills.&lt;/p&gt;

&lt;h3&gt;
  
  
  Tech stack
&lt;/h3&gt;

&lt;p&gt;Technologies and tools I use:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;HTML&lt;/li&gt;
&lt;li&gt;CSS&lt;/li&gt;
&lt;li&gt;JavaScript&lt;/li&gt;
&lt;li&gt;React&lt;/li&gt;
&lt;li&gt;Tailwind CSS&lt;/li&gt;
&lt;li&gt;Git&lt;/li&gt;
&lt;li&gt;GitHub&lt;/li&gt;
&lt;li&gt;APIs&lt;/li&gt;
&lt;li&gt;Basic Java&lt;/li&gt;
&lt;li&gt;UI/UX design&lt;/li&gt;
&lt;li&gt;SEO basics&lt;/li&gt;
&lt;li&gt;Responsive web development&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  What I am learning right now
&lt;/h3&gt;

&lt;p&gt;Right now, I am learning Java, DSA, React, Next.js, better API integration, UI/UX design, and how to build cleaner full-stack web projects.&lt;/p&gt;

&lt;p&gt;I am also improving my understanding of SEO so my portfolio can be easier to discover when someone searches for Aditya Sharma Web Developer, Aadi Sharma Developer, Aditya Sharma Portfolio, or Aadi Web Developer.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why I built this portfolio
&lt;/h3&gt;

&lt;p&gt;A portfolio is not just a website. It is proof of work.&lt;/p&gt;

&lt;p&gt;For students and beginner developers, a portfolio helps show practical skills even before having professional experience. Every project, every design improvement, and every bug fixed adds value to the journey.&lt;/p&gt;

&lt;p&gt;This portfolio is still improving, but that is the point. I want it to grow as I grow.&lt;/p&gt;

&lt;h3&gt;
  
  
  Final thought
&lt;/h3&gt;

&lt;p&gt;I am building step by step, learning by doing, and turning small ideas into real projects.&lt;/p&gt;

&lt;p&gt;This is just the beginning.&lt;/p&gt;

&lt;p&gt;Portfolio: &lt;a href="https://aadi-sharma.dev/" rel="noopener noreferrer"&gt;aadi-sharma.dev&lt;/a&gt;&lt;/p&gt;

</description>
      <category>portfolio</category>
      <category>productivity</category>
      <category>website</category>
      <category>ai</category>
    </item>
    <item>
      <title>🔥 Unleash Your Developer Power with GitAura Pro! 🚀</title>
      <dc:creator>Aditya sharma</dc:creator>
      <pubDate>Sat, 24 Jan 2026 15:47:07 +0000</pubDate>
      <link>https://dev.to/iadi0/unleash-your-developer-power-with-gitaura-pro-18i3</link>
      <guid>https://dev.to/iadi0/unleash-your-developer-power-with-gitaura-pro-18i3</guid>
      <description>&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%2F9je2du40hqthengtourd.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%2F9je2du40hqthengtourd.png" alt=" " width="714" height="1022"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hey Everyone!&lt;/p&gt;

&lt;p&gt;Ever wondered what your GitHub impact actually looks like? Meet GitAura Pro, the ultimate tool designed to visualize your coding journey. I built GitAura Pro because I believe every commit and every late-night session deserves to be celebrated. With GitAura Pro, you don't just see numbers; you experience your "Aura."&lt;/p&gt;

&lt;p&gt;GitAura Pro is built for developers who want more than just boring stats. When you use GitAura Pro, you get a real-time analysis of your hard work. Whether you are a beginner or a pro, GitAura Pro ranks your profile and gives you a score that actually means something.&lt;/p&gt;

&lt;p&gt;Why everyone is talking about GitAura Pro:&lt;br&gt;
GitAura Pro Performance: Experience lightning-fast results with the GitAura Pro engine.&lt;/p&gt;

&lt;p&gt;GitAura Pro Visuals: Get a high-quality GitAura Pro Aura Card that looks stunning on any social feed.&lt;/p&gt;

&lt;p&gt;GitAura Pro Accuracy: GitAura Pro analyzes repos, followers, and account age with precision.&lt;/p&gt;

&lt;p&gt;GitAura Pro Levels: From 'Noob' to 'God Level', find your rank only on GitAura Pro.&lt;/p&gt;

&lt;p&gt;GitAura Pro Accessibility: No login, no tokens—just pure GitAura Pro magic with a username.&lt;/p&gt;

&lt;p&gt;The goal behind GitAura Pro was to fix the broken experience of existing tools and provide a seamless GitAura Pro experience for the global dev community. Thousands are already checking their status on GitAura Pro, so don't be left behind!&lt;/p&gt;

&lt;p&gt;GitAura Pro is ready for you. Are you ready for GitAura Pro?&lt;/p&gt;

&lt;p&gt;👉 Get your GitAura Pro Card here: [Link in the first comment]&lt;/p&gt;

&lt;p&gt;Don’t forget to download and post your GitAura Pro card in the comments! Let’s see who has the highest GitAura Pro score today! 🏆&lt;/p&gt;

&lt;h1&gt;
  
  
  GitAuraPro #GitAuraProApp #GitAuraProScore #GitHubStats #WebDev #CodingCommunity #GitAuraProDev #OpenSource #TechJourney #GitAura #MyGitAuraPro #GitAuraProMagic #SoftwareEngineering #GitAuraProCard
&lt;/h1&gt;

</description>
    </item>
    <item>
      <title>🚀 Introducing GitAura Pro: Your Real GitHub Aura</title>
      <dc:creator>Aditya sharma</dc:creator>
      <pubDate>Sat, 24 Jan 2026 15:42:01 +0000</pubDate>
      <link>https://dev.to/iadi0/introducing-gitaura-pro-your-real-github-aura-1lhf</link>
      <guid>https://dev.to/iadi0/introducing-gitaura-pro-your-real-github-aura-1lhf</guid>
      <description>&lt;p&gt;Hi everyone, I’m Aditya Sharma.&lt;/p&gt;

&lt;p&gt;A while ago, I was exploring GitHub when I found a site claiming to measure a developer’s “Aura.” The idea was genius, but the site was broken—just 404s and errors. I knew the execution could be better, and that’s exactly why I built GitAura Pro.&lt;/p&gt;

&lt;p&gt;Starting GitAura Pro in early December was about more than just code; it was about capturing the late-night sessions and consistency we all put in. Using AI to debug and refine the logic, I’ve turned GitAura Pro into a high-performance tool for the dev community.&lt;/p&gt;

&lt;p&gt;Why choose GitAura Pro for your stats?&lt;br&gt;
GitAura Pro actually works! No more 404s, just real-time GitHub data.&lt;/p&gt;

&lt;p&gt;Get a downloadable GitAura Pro Aura Card to share your progress visually.&lt;/p&gt;

&lt;p&gt;GitAura Pro analyzes repositories, followers, and account age with precision.&lt;/p&gt;

&lt;p&gt;The GitAura Pro score gives you a clear metric of your overall activity.&lt;/p&gt;

&lt;p&gt;Discover your rank through the GitAura Pro leveling system.&lt;/p&gt;

&lt;p&gt;The GitAura Pro UI is clean, smooth, and fully mobile-responsive.&lt;/p&gt;

&lt;p&gt;Experience GitAura Pro with zero friction—no logins or tokens required.&lt;/p&gt;

&lt;p&gt;If you’ve ever wondered what your GitHub impact looks like, GitAura Pro is the answer. I designed GitAura Pro to be the ultimate companion for developers who want to showcase their hard work. Whether you are a student or a pro, GitAura Pro gives you the recognition you deserve.&lt;/p&gt;

&lt;p&gt;👉 Check your stats here: GitAura Pro [Link in first comment]&lt;/p&gt;

&lt;p&gt;I’d love to see your results! Drop your GitAura Pro Aura Card in the comments below! 😍&lt;/p&gt;

&lt;h1&gt;
  
  
  GitAuraPro #GitAura #GitHub #WebDevelopment #CodingJourney #ChatGPT #Git #AI #OpenSource #BCAStudent #ProblemSolving #LinkedIn #Web #GitAuraProApp #DeveloperAura
&lt;/h1&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>gitaurapro</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
