<?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: Prince Pandey</title>
    <description>The latest articles on DEV Community by Prince Pandey (@pr1ncepandey).</description>
    <link>https://dev.to/pr1ncepandey</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%2F2205725%2F7e4a1e79-ef45-4256-af9d-92801ee302a3.jpeg</url>
      <title>DEV Community: Prince Pandey</title>
      <link>https://dev.to/pr1ncepandey</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pr1ncepandey"/>
    <language>en</language>
    <item>
      <title>AI Operating System for Organizations</title>
      <dc:creator>Prince Pandey</dc:creator>
      <pubDate>Thu, 13 Aug 2026 16:45:08 +0000</pubDate>
      <link>https://dev.to/pr1ncepandey/ai-operating-system-for-organizations-c3j</link>
      <guid>https://dev.to/pr1ncepandey/ai-operating-system-for-organizations-c3j</guid>
      <description>&lt;p&gt;I've built an AI Operating System for Organizations that turns scattered data like GitHub commits, pull requests, and issues into a connected graph. This allows teams to ask questions like "Who changed this file last week?" or "Which issues were fixed in the last release?" without having to manually search through different tools.&lt;/p&gt;

&lt;p&gt;The system uses Python, FastAPI for the API, Neo4j for the graph database, and Docker for easy setup. The biggest technical challenge was connecting the GitHub API to Neo4j and ensuring the data was stored in a way that made it easy to query.&lt;/p&gt;

&lt;p&gt;I think this could be really useful for teams, especially those who are struggling with onboarding new engineers or investigating incidents. You can check out the code on &lt;br&gt;
GitHub: &lt;a href="https://github.com/Pr1ncePandey/AI-Operating-System-for-Organizations" rel="noopener noreferrer"&gt;https://github.com/Pr1ncePandey/AI-Operating-System-for-Organizations&lt;/a&gt;&lt;br&gt;
Landing Page - &lt;a href="https://netragraph.netlify.app/" rel="noopener noreferrer"&gt;https://netragraph.netlify.app/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
      <category>github</category>
    </item>
    <item>
      <title>Building My First jQuery Project: A Todo List Application</title>
      <dc:creator>Prince Pandey</dc:creator>
      <pubDate>Thu, 20 Feb 2025 15:39:51 +0000</pubDate>
      <link>https://dev.to/pr1ncepandey/building-my-first-jquery-project-a-todo-list-application-73f</link>
      <guid>https://dev.to/pr1ncepandey/building-my-first-jquery-project-a-todo-list-application-73f</guid>
      <description>&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;Hey dev community! 👋 I'm excited to share my journey of learning jQuery and building my first practical project - a Todo List application. As someone diving into front-end development, I wanted to understand how jQuery simplifies DOM manipulation and event handling.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;I created a Todo List application that includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Add/Delete todo items&lt;/li&gt;
&lt;li&gt;Mark tasks as complete&lt;/li&gt;
&lt;li&gt;Local storage functionality&lt;/li&gt;
&lt;li&gt;Simple and clean UI&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What I Learned
&lt;/h2&gt;

&lt;p&gt;Through this project, I gained hands-on experience with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;jQuery selectors and DOM manipulation&lt;/li&gt;
&lt;li&gt;Event handling with jQuery&lt;/li&gt;
&lt;li&gt;Working with localStorage&lt;/li&gt;
&lt;li&gt;Dynamic content updates&lt;/li&gt;
&lt;li&gt;Basic animations and transitions&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Key Takeaways
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;jQuery really does make JavaScript easier! The syntax is more concise and intuitive.&lt;/li&gt;
&lt;li&gt;The jQuery documentation is incredibly helpful for beginners.&lt;/li&gt;
&lt;li&gt;Building a real project is the best way to learn new technologies.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Next Steps
&lt;/h2&gt;

&lt;p&gt;I'm planning to add more features like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Task categories&lt;/li&gt;
&lt;li&gt;Due dates&lt;/li&gt;
&lt;li&gt;Priority levels&lt;/li&gt;
&lt;li&gt;Filter options&lt;/li&gt;
&lt;/ul&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%2Foizh6cva2tcl6kvyyumg.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%2Foizh6cva2tcl6kvyyumg.png" alt="Image description" width="800" height="402"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Share Your Thoughts!
&lt;/h2&gt;

&lt;p&gt;Have you built something similar while learning jQuery? What was your experience? I'd love to hear about your journey and any tips you might have for a newcomer!&lt;/p&gt;

&lt;h1&gt;
  
  
  jquery #javascript #webdev #beginners
&lt;/h1&gt;

</description>
      <category>jquery</category>
      <category>webdev</category>
      <category>javascript</category>
    </item>
    <item>
      <title>🌟 Hello DEV Community! 🌟</title>
      <dc:creator>Prince Pandey</dc:creator>
      <pubDate>Sun, 13 Oct 2024 14:10:54 +0000</pubDate>
      <link>https://dev.to/pr1ncepandey/hello-dev-community-4k7f</link>
      <guid>https://dev.to/pr1ncepandey/hello-dev-community-4k7f</guid>
      <description>&lt;p&gt;Hey everyone! I’m Prince Pandey, a budding Frontend Developer passionate about creating intuitive and responsive web designs using HTML, CSS, JavaScript, and Bootstrap. With a medium grasp of JavaScript and a solid understanding of Git and GitHub, I’m excited to share my journey and learn from this awesome community.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🚀 Projects I’m working on:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;- Responsive Portfolio Website:&lt;/strong&gt; Showcasing my skills and projects in a clean, mobile-friendly design.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🛠️ Technologies:&lt;/strong&gt;&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;Bootstrap&lt;/li&gt;
&lt;li&gt;Git &amp;amp; GitHub&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I’m here to connect, collaborate, and grow together. I look forward to exchanging knowledge and getting feedback on my projects. Let’s make the web a more awesome place!&lt;/p&gt;

&lt;h1&gt;
  
  
  webdev #frontend #html #css #javascript #bootstrap
&lt;/h1&gt;

</description>
    </item>
  </channel>
</rss>
