<?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: Rohan Nilatkar</title>
    <description>The latest articles on DEV Community by Rohan Nilatkar (@iixpreyliet).</description>
    <link>https://dev.to/iixpreyliet</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%2F2966128%2F8305fce6-f248-421b-81b7-a614e4ea22cc.png</url>
      <title>DEV Community: Rohan Nilatkar</title>
      <link>https://dev.to/iixpreyliet</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/iixpreyliet"/>
    <language>en</language>
    <item>
      <title>Day 4: Generating Animated GIFs with Go 🎨</title>
      <dc:creator>Rohan Nilatkar</dc:creator>
      <pubDate>Wed, 18 Feb 2026 02:28:51 +0000</pubDate>
      <link>https://dev.to/iixpreyliet/day-4-generating-animated-gifs-with-go-5glc</link>
      <guid>https://dev.to/iixpreyliet/day-4-generating-animated-gifs-with-go-5glc</guid>
      <description>&lt;p&gt;Today’s focus in my Go journey was moving beyond the console and into binary image generation. I’ve been following the "The Go Programming Language" (gopl.io) and reached Section 1.4.&lt;/p&gt;

&lt;p&gt;What I built:&lt;br&gt;
I created a program that generates animated Lissajous figures—parametric curves that look like 1960s sci-fi oscilloscope visuals. I even went a step further with Exercise 1.6, implementing a multi-color palette that cycles through frames.&lt;/p&gt;

&lt;p&gt;Key Technical Takeaways:&lt;/p&gt;

&lt;p&gt;Structs: Got my first look at Go's struct types by configuring the gif.GIF object.&lt;/p&gt;

&lt;p&gt;Composite Literals: Learned the shorthand way to instantiate slices and structs.&lt;/p&gt;

&lt;p&gt;Math in Go: Applied math.Sin and math.Pi for coordinate calculation.&lt;/p&gt;

&lt;p&gt;It’s satisfying to see code turn into a physical .gif file! Onto Day 5: Fetching data from the web.&lt;/p&gt;

&lt;p&gt;Check out my progress here: [&lt;a href="https://github.com/preyliet/go-backend-foundation" rel="noopener noreferrer"&gt;https://github.com/preyliet/go-backend-foundation&lt;/a&gt;]&lt;/p&gt;

</description>
      <category>go</category>
      <category>coding</category>
      <category>programming</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Building My Crypto Research Watchlist (Beginner Full-Stack Project)</title>
      <dc:creator>Rohan Nilatkar</dc:creator>
      <pubDate>Mon, 24 Nov 2025 21:08:03 +0000</pubDate>
      <link>https://dev.to/iixpreyliet/building-my-crypto-research-watchlist-beginner-full-stack-project-o2d</link>
      <guid>https://dev.to/iixpreyliet/building-my-crypto-research-watchlist-beginner-full-stack-project-o2d</guid>
      <description>&lt;p&gt;Hey everyone!&lt;br&gt;
I’m learning full-stack development right now because I want to work in a crypto/tech company in the future. So I thought instead of only watching tutorials, I should try building a small real project.&lt;/p&gt;

&lt;p&gt;This week I made a Crypto Research Watchlist.&lt;br&gt;
It’s nothing crazy or advanced, but I’m proud of it because it actually works and I finally understood how frontend and backend talk to each other.&lt;/p&gt;

&lt;p&gt;🔧 What I built&lt;/p&gt;

&lt;p&gt;It’s a simple app where I can:&lt;/p&gt;

&lt;p&gt;Add any crypto name to my watchlist&lt;/p&gt;

&lt;p&gt;See all the coins I added&lt;/p&gt;

&lt;p&gt;Delete a coin&lt;/p&gt;

&lt;p&gt;Everything goes through a backend API (not just frontend state)&lt;/p&gt;

&lt;p&gt;It’s still version 1 but it helped me understand how full-stack projects work.&lt;/p&gt;

&lt;p&gt;🧰 Tech I used&lt;/p&gt;

&lt;p&gt;Next.js 14 for the frontend&lt;/p&gt;

&lt;p&gt;Spring Boot for the backend&lt;/p&gt;

&lt;p&gt;REST APIs&lt;/p&gt;

&lt;p&gt;In-memory list for now (later I’ll add database)&lt;/p&gt;

&lt;p&gt;Git + GitHub (still learning how to use it properly 😅)&lt;/p&gt;

&lt;p&gt;📚 What I learned&lt;/p&gt;

&lt;p&gt;This project taught me:&lt;/p&gt;

&lt;p&gt;How to make GET / POST / DELETE requests&lt;/p&gt;

&lt;p&gt;How CORS errors can drive you crazy 😂&lt;/p&gt;

&lt;p&gt;How to organize frontend + backend code&lt;/p&gt;

&lt;p&gt;How to push code to GitHub (finally)&lt;/p&gt;

&lt;p&gt;That even a simple project feels good when you build it yourself&lt;/p&gt;

&lt;p&gt;(I will add the screenshot soon once I finish the UI completely.)&lt;/p&gt;

&lt;p&gt;🚀 What’s next&lt;/p&gt;

&lt;p&gt;I want to slowly upgrade this project by adding:&lt;/p&gt;

&lt;p&gt;API to fetch real crypto prices&lt;/p&gt;

&lt;p&gt;Notes section for each coin&lt;/p&gt;

&lt;p&gt;Maybe AI research summaries&lt;/p&gt;

&lt;p&gt;Better UI&lt;/p&gt;

&lt;p&gt;A real database&lt;/p&gt;

&lt;p&gt;Just taking it step by step.&lt;/p&gt;

&lt;p&gt;If you read this, thank you! I’m still a beginner but trying to get better every day.&lt;br&gt;
More small projects coming soon 🙌&lt;/p&gt;

</description>
      <category>programming</category>
      <category>cryptocurrency</category>
      <category>web3</category>
      <category>beginners</category>
    </item>
    <item>
      <title>My First Day Building Full-Stack: Spring Boot + Next.js</title>
      <dc:creator>Rohan Nilatkar</dc:creator>
      <pubDate>Mon, 17 Nov 2025 17:11:29 +0000</pubDate>
      <link>https://dev.to/iixpreyliet/my-first-day-building-full-stack-spring-boot-nextjs-19n4</link>
      <guid>https://dev.to/iixpreyliet/my-first-day-building-full-stack-spring-boot-nextjs-19n4</guid>
      <description>&lt;p&gt;✅ What I did today&lt;/p&gt;

&lt;p&gt;Created my first Spring Boot (Java) project&lt;/p&gt;

&lt;p&gt;Wrote a small API using @RestController and @GetMapping&lt;/p&gt;

&lt;p&gt;Fixed a port issue on 8080 (took me a while 😅)&lt;/p&gt;

&lt;p&gt;Ran the backend and saw my API respond in the browser&lt;/p&gt;

&lt;p&gt;Installed and set up Next.js&lt;/p&gt;

&lt;p&gt;Made a simple homepage with two links&lt;/p&gt;

&lt;p&gt;Learned how frontend (Next.js) and backend (Spring Boot) can talk to each other&lt;/p&gt;

&lt;p&gt;🧠 What I understood&lt;/p&gt;

&lt;p&gt;Backend = where the logic happens&lt;/p&gt;

&lt;p&gt;Frontend = what the user sees&lt;/p&gt;

&lt;p&gt;API = the connection between the two&lt;/p&gt;

&lt;p&gt;Errors are normal… and solving them teaches you the most&lt;/p&gt;

&lt;p&gt;🎯 What’s next?&lt;/p&gt;

&lt;p&gt;I want to practice making more pages in Next.js, connect them to APIs, and slowly get better at both sides of development.&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%2Foohqqkyprs8cgtuag8mv.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%2Foohqqkyprs8cgtuag8mv.PNG" alt=" " width="800" height="426"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>api</category>
      <category>typescript</category>
    </item>
    <item>
      <title>I Built My First Portfolio Website with HTML, CSS &amp; JavaScript 🎉</title>
      <dc:creator>Rohan Nilatkar</dc:creator>
      <pubDate>Tue, 07 Oct 2025 17:20:51 +0000</pubDate>
      <link>https://dev.to/iixpreyliet/i-built-my-first-portfolio-website-with-html-css-javascript-13lf</link>
      <guid>https://dev.to/iixpreyliet/i-built-my-first-portfolio-website-with-html-css-javascript-13lf</guid>
      <description>&lt;p&gt;Hey devs! I just completed my very first professional webpage project using only HTML, CSS, and JavaScript. It’s a simple personal portfolio site, but it taught me so much about structuring pages, styling, and adding interactivity. Sharing here as my milestone project before I dive into React 💻🔥.&lt;/p&gt;

&lt;p&gt;What I Built (project overview)&lt;/p&gt;

&lt;p&gt;A Portfolio Website with sections: Home, About, Projects, and Contact&lt;/p&gt;

&lt;p&gt;Features:&lt;br&gt;
✅ Dark Mode Toggle 🌙&lt;br&gt;
✅ Form Validation (JS)&lt;br&gt;
✅ Smooth Layout + Styling&lt;/p&gt;

&lt;p&gt;Tech stack: HTML + CSS + JavaScript&lt;/p&gt;

&lt;p&gt;Key Learnings (what you gained)&lt;/p&gt;

&lt;p&gt;How to structure a clean webpage&lt;/p&gt;

&lt;p&gt;Using CSS for responsive &amp;amp; modern UI&lt;/p&gt;

&lt;p&gt;Writing basic JavaScript for interactivity&lt;/p&gt;

&lt;p&gt;Deploying on GitHub Pages (or Netlify/Vercel)&lt;/p&gt;

&lt;p&gt;🔗 Live Demo: [&lt;a href="https://github.com/preyliet/Web-Page-" rel="noopener noreferrer"&gt;https://github.com/preyliet/Web-Page-&lt;/a&gt;]&lt;/p&gt;

&lt;p&gt;💻 Source Code: [&lt;a href="https://github.com/preyliet/Web-Page-" rel="noopener noreferrer"&gt;https://github.com/preyliet/Web-Page-&lt;/a&gt;]&lt;/p&gt;

&lt;p&gt;This is just the beginning! Next, I’ll be diving into React to make more advanced projects. If you’ve also built your first portfolio or are just starting out, I’d love to connect and learn from each other 🙌. Feedback is super welcome!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>programming</category>
      <category>beginners</category>
    </item>
    <item>
      <title>💼 Developer Identity Card Built with HTML &amp; CSS – Minimal &amp; Personal</title>
      <dc:creator>Rohan Nilatkar</dc:creator>
      <pubDate>Sun, 15 Jun 2025 18:22:39 +0000</pubDate>
      <link>https://dev.to/iixpreyliet/developer-identity-card-built-with-html-css-minimal-personal-1dma</link>
      <guid>https://dev.to/iixpreyliet/developer-identity-card-built-with-html-css-minimal-personal-1dma</guid>
      <description>&lt;p&gt;Hey everyone! 👋&lt;/p&gt;

&lt;p&gt;I just built a clean Developer Identity Card using only HTML &amp;amp; CSS — no frameworks, no JavaScript, just pure code and design.&lt;/p&gt;

&lt;p&gt;It’s a minimalist, responsive card to introduce myself as a frontend dev — styled like a personal business card 💼&lt;/p&gt;

&lt;h1&gt;
  
  
  🎯 Live Demo
&lt;/h1&gt;

&lt;p&gt;🔗 &lt;a href="https://preyliet.github.io/dev-vcard" rel="noopener noreferrer"&gt;View the project here&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  🛠 Built With:
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;HTML5&lt;/li&gt;
&lt;li&gt;CSS3 (Custom, responsive styling)&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  🤔 Why I Made This
&lt;/h1&gt;

&lt;p&gt;I wanted something simple and professional to represent who I am online — not a full portfolio yet, but a start.&lt;/p&gt;

&lt;p&gt;This project reflects:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;My current skills&lt;/li&gt;
&lt;li&gt;My online identity (@Preyliet)&lt;/li&gt;
&lt;li&gt;My love for clean UI and focused dev work&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  👨‍💻 About Me
&lt;/h1&gt;

&lt;p&gt;I’m &lt;strong&gt;Rohan Nilatkar&lt;/strong&gt;, a self-taught frontend developer learning HTML, CSS, JavaScript, and Python.&lt;br&gt;&lt;br&gt;
Git and React are next on the list.&lt;/p&gt;

&lt;p&gt;I post my projects and dev journey on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/preyliet" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://hashnode.com/@preyliet" rel="noopener noreferrer"&gt;Hashnode&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/preyliet"&gt;Dev.to&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  📂 GitHub Repository
&lt;/h1&gt;

&lt;p&gt;👉 &lt;a href="https://github.com/preyliet/identity-card" rel="noopener noreferrer"&gt;Source code here&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  💬 Feedback?
&lt;/h1&gt;

&lt;p&gt;Let me know what you think or how I can improve it. Open to collaboration, advice, or even a fork!&lt;/p&gt;

&lt;p&gt;Thanks for reading! 🙏  &lt;/p&gt;

</description>
      <category>webdev</category>
      <category>css</category>
      <category>frontend</category>
      <category>programming</category>
    </item>
    <item>
      <title>Built a Professional SaaS Landing Page Using Only HTML &amp; CSS – Meet Trackly</title>
      <dc:creator>Rohan Nilatkar</dc:creator>
      <pubDate>Sat, 14 Jun 2025 16:23:17 +0000</pubDate>
      <link>https://dev.to/iixpreyliet/built-a-professional-saas-landing-page-using-only-html-css-meet-trackly-2h2</link>
      <guid>https://dev.to/iixpreyliet/built-a-professional-saas-landing-page-using-only-html-css-meet-trackly-2h2</guid>
      <description>&lt;h1&gt;
  
  
  Trackly – A Clean SaaS Landing Page Built with Only HTML &amp;amp; CSS
&lt;/h1&gt;

&lt;p&gt;Hey devs 👋,&lt;/p&gt;

&lt;p&gt;As part of my frontend journey, I wanted to challenge myself by building a &lt;strong&gt;real-world landing page&lt;/strong&gt; using just HTML and CSS — no frameworks, no libraries.&lt;/p&gt;

&lt;p&gt;This is where &lt;strong&gt;Trackly&lt;/strong&gt; was born — a fictional productivity tool for developers and teams.&lt;/p&gt;

&lt;h1&gt;
  
  
  💡 What I Built
&lt;/h1&gt;

&lt;p&gt;Trackly is a clean, responsive landing page that includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A modern &lt;strong&gt;hero section&lt;/strong&gt; with clear CTA&lt;/li&gt;
&lt;li&gt;Feature highlights section&lt;/li&gt;
&lt;li&gt;Testimonial card layout&lt;/li&gt;
&lt;li&gt;Footer with branding and links&lt;/li&gt;
&lt;li&gt;Consistent spacing, clean typography, and accessible contrast&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  🔧 Tech Stack
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;HTML5&lt;/code&gt; – Semantic structure&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;CSS3&lt;/code&gt; – Responsive layout, Flexbox-based&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;GitHub&lt;/code&gt; – Version control&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;GitHub Pages&lt;/code&gt; – Free deployment&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  🌐 Live Demo &amp;amp; Code
&lt;/h1&gt;

&lt;p&gt;🔗 &lt;a href="https://preyliet.github.io/trackly-landing-page" rel="noopener noreferrer"&gt;Live Demo – Trackly on GitHub Pages&lt;/a&gt;&lt;br&gt;&lt;br&gt;
💻 &lt;a href="https://github.com/preyliet/trackly-landing-page" rel="noopener noreferrer"&gt;Source Code – GitHub Repo&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  📈 Why I Built This
&lt;/h1&gt;

&lt;p&gt;As an aspiring &lt;strong&gt;frontend developer&lt;/strong&gt;, I believe in learning by building. This project helped me sharpen my fundamentals in layout, spacing, and visual structure.&lt;/p&gt;

&lt;p&gt;I aimed to keep it &lt;strong&gt;clean, professional, and mobile-friendly&lt;/strong&gt;, similar to what real SaaS companies use.&lt;/p&gt;

&lt;h1&gt;
  
  
  🙌 Feedback Welcome
&lt;/h1&gt;

&lt;p&gt;If you’re a developer, designer, or just curious — I’d love your feedback.&lt;br&gt;&lt;br&gt;
⭐ A star on the repo or comments on improvement are always appreciated.&lt;/p&gt;

&lt;p&gt;Let’s connect:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/preyliet" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://x.com/iixpreyliet" rel="noopener noreferrer"&gt;X (Twitter)&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Drop your thoughts below! 💬&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>productivity</category>
      <category>beginners</category>
    </item>
    <item>
      <title>🕯️ A Tribute to the AI‑171 Crash Victims Built with Just HTML &amp; CSS</title>
      <dc:creator>Rohan Nilatkar</dc:creator>
      <pubDate>Fri, 13 Jun 2025 05:39:29 +0000</pubDate>
      <link>https://dev.to/iixpreyliet/a-tribute-to-the-ai-171-crash-victims-built-with-just-html-css-55nl</link>
      <guid>https://dev.to/iixpreyliet/a-tribute-to-the-ai-171-crash-victims-built-with-just-html-css-55nl</guid>
      <description>&lt;h1&gt;
  
  
  🕯️ A Tribute to the AI‑171 Crash Victims — Built with Just HTML &amp;amp; CSS
&lt;/h1&gt;

&lt;p&gt;On June 12, 2025, Air India Flight AI‑171 tragically crashed in Ahmedabad.&lt;br&gt;&lt;br&gt;
Out of 270 people on board, only &lt;strong&gt;one person survived&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Like many others, I was deeply affected by the news.&lt;br&gt;&lt;br&gt;
As a frontend development student, I decided to use my skills to pay tribute — in the simplest but most heartfelt way I could.&lt;/p&gt;

&lt;h1&gt;
  
  
  💻 The Tribute Website
&lt;/h1&gt;

&lt;p&gt;⮕🔗 Live Demo: [Visit the tribute site (&lt;a href="https://preyliet.github.io/ai171-tribute/" rel="noopener noreferrer"&gt;https://preyliet.github.io/ai171-tribute/&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;⮕🧾 Source Code: &lt;a href="https://github.com/preyliet/ai171-tribute" rel="noopener noreferrer"&gt;GitHub Repository&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;⮕ ⚠️ This site contains no images of the crash only soft, respectful design and text.*&lt;/p&gt;

&lt;h1&gt;
  
  
  ✨ What I Used
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;✅ HTML for structure
&lt;/li&gt;
&lt;li&gt;🎨 CSS for design and responsiveness
&lt;/li&gt;
&lt;li&gt;☁️ GitHub Pages to host it for free
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No JavaScript. No frameworks.&lt;br&gt;&lt;br&gt;
Just clean code and emotion.&lt;/p&gt;




&lt;h1&gt;
  
  
  🧠 My Thought Process
&lt;/h1&gt;

&lt;p&gt;I asked myself:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How can I design something &lt;strong&gt;respectful&lt;/strong&gt; with no distractions?&lt;/li&gt;
&lt;li&gt;How can HTML &amp;amp; CSS alone carry the weight of emotion?&lt;/li&gt;
&lt;li&gt;What kind of layout calms the eyes, yet delivers a message?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I kept the colours subtle, the layout &lt;strong&gt;clean&lt;/strong&gt;, and the typography soft.&lt;br&gt;&lt;br&gt;
There’s no noise — only tribute.&lt;/p&gt;

&lt;h1&gt;
  
  
  🖼️ Design Preview (Optional Image)
&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%2Fv2j4syuj06qt0bok27qh.jpg" 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%2Fv2j4syuj06qt0bok27qh.jpg" alt=" " width="575" height="180"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  📣 I'd Love Your Feedback
&lt;/h1&gt;

&lt;p&gt;This was a personal, emotional project but I'm also looking to grow as a developer.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;🙏 I would love to hear your feedback:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What did you feel while visiting the site?&lt;/li&gt;
&lt;li&gt;Any design tips you’d suggest?&lt;/li&gt;
&lt;li&gt;Do you think devs should do more human-cantered projects like this?&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

&lt;h1&gt;
  
  
  🔁 Final Words
&lt;/h1&gt;

&lt;p&gt;Sometimes, we code to solve problems.&lt;br&gt;&lt;br&gt;
Other times, we code to honour people, tell stories, and offer a moment of silence in a digital world.&lt;/p&gt;

&lt;p&gt;Thank you for reading. If this touched you even a little, please leave a comment or share.&lt;/p&gt;

&lt;p&gt;💬 Connect with me on &lt;a href="https://x.com/iixpreyliet" rel="noopener noreferrer"&gt;X (Twitter)&lt;/a&gt;  I'm always open to thoughts, suggestions, and conversations.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>news</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Revisiting HTML &amp; CSS by Building a Tribute Page for Levi from Attack on Titan</title>
      <dc:creator>Rohan Nilatkar</dc:creator>
      <pubDate>Wed, 11 Jun 2025 21:11:43 +0000</pubDate>
      <link>https://dev.to/iixpreyliet/revisiting-html-css-by-building-a-tribute-page-for-levi-from-attack-on-titan-3o27</link>
      <guid>https://dev.to/iixpreyliet/revisiting-html-css-by-building-a-tribute-page-for-levi-from-attack-on-titan-3o27</guid>
      <description>&lt;p&gt;• 🔍 Project Overview&lt;br&gt;
     □ Created a tribute page for Levi Ackerman from Attack on Titan as a creative way to revisit my HTML &amp;amp; CSS skills.&lt;br&gt;
     □ Combined my passion for anime and web development to build a visually appealing and responsive website.&lt;br&gt;
     □ Designed with a dark theme and professional color palette inspired by Levi's personality and AOT's aesthetic.&lt;/p&gt;

&lt;p&gt;🛠️ Technologies Used&lt;br&gt;
     □ HTML &amp;amp; CSS Only&lt;br&gt;
     □ Semantic HTML structure&lt;br&gt;
     □ CSS Flexbox layout&lt;br&gt;
     □ Custom fonts and box shadows&lt;br&gt;
     □ Dark mode inspired theme&lt;br&gt;
     □ Visual Studio Code&lt;br&gt;
     □ For writing and previewing the code locally.&lt;br&gt;
     □ Git &amp;amp; GitHub&lt;br&gt;
     □ Version control and project hosting&lt;/p&gt;

&lt;p&gt;🖼️ Project Features&lt;br&gt;
     □ Tribute-style landing page&lt;br&gt;
     □ Image of Levi Ackerman with styling&lt;br&gt;
     □ Quote section + biography&lt;br&gt;
     □ List of his key achievements and why he's admired&lt;br&gt;
     □ Responsive layout and custom color palette&lt;/p&gt;

&lt;p&gt;🌐 Live Demo &amp;amp; Code&lt;br&gt;
🔗 GitHub Repo: github.com/preyliet/levi-tribute&lt;/p&gt;

&lt;p&gt;🔗 X (Twitter): &lt;a class="mentioned-user" href="https://dev.to/iixpreyliet"&gt;@iixpreyliet&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;💡 Key Takeaways&lt;br&gt;
    □ Rebuilding small projects helps reinforce core skills.&lt;br&gt;
    □ Anime themes can be powerful creative inspiration.&lt;br&gt;
    □ Hosting projects on GitHub builds public portfolios.&lt;br&gt;
    □ Sharing your work online leads to feedback and motivation.&lt;/p&gt;

&lt;p&gt;📅 What's Next?&lt;br&gt;
-Continue learning JavaScript to bring interactivity to such pages.&lt;/p&gt;

&lt;p&gt;-Build more anime-inspired or creative mini-projects.&lt;/p&gt;

&lt;p&gt;-Post regular updates on Hashnode, X, and DEV.to.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>beginners</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Fun Fact Generator with Python &amp; PyWebIO (Dark/Light Mode)</title>
      <dc:creator>Rohan Nilatkar</dc:creator>
      <pubDate>Tue, 10 Jun 2025 02:08:23 +0000</pubDate>
      <link>https://dev.to/iixpreyliet/fun-fact-generator-with-python-pywebio-darklight-mode-391a</link>
      <guid>https://dev.to/iixpreyliet/fun-fact-generator-with-python-pywebio-darklight-mode-391a</guid>
      <description>&lt;h1&gt;
  
  
  Fun Fact Generator with Python &amp;amp; PyWebIO ✨
&lt;/h1&gt;

&lt;p&gt;Hey devs 👋,&lt;/p&gt;

&lt;p&gt;I recently built a fun little project — a &lt;strong&gt;Fun Fact Generator&lt;/strong&gt; using &lt;strong&gt;Python&lt;/strong&gt; and &lt;strong&gt;PyWebIO&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;It comes with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🌗 Dark &amp;amp; Light Mode toggle&lt;/li&gt;
&lt;li&gt;🔁 Random fact generation from an API&lt;/li&gt;
&lt;li&gt;🎨 Styled with custom themes&lt;/li&gt;
&lt;li&gt;🧠 Simple and clean interface&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  💻 Tech Used:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Python&lt;/li&gt;
&lt;li&gt;PyWebIO&lt;/li&gt;
&lt;li&gt;Requests (API calls)&lt;/li&gt;
&lt;li&gt;JSON&lt;/li&gt;
&lt;li&gt;WebIO Events&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  📷 Preview:
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;coming soon as a live demo...&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  📂 Code:
&lt;/h2&gt;

&lt;p&gt;Check it out here 👇&lt;br&gt;&lt;br&gt;
🔗 &lt;a href="https://github.com/preyliet/fun-fact-generator" rel="noopener noreferrer"&gt;GitHub Repo&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🚀 Why I Built This
&lt;/h2&gt;

&lt;p&gt;I’m learning full-stack development from scratch. While studying &lt;strong&gt;HTML/CSS/Python&lt;/strong&gt;, I decided to bring my logic and UI together in a fun mini project.&lt;/p&gt;

&lt;p&gt;This is just the beginning — more interactive web tools and projects coming soon!&lt;/p&gt;




&lt;h2&gt;
  
  
  🤝 Let’s Connect!
&lt;/h2&gt;

&lt;p&gt;Follow my journey here:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🐦 &lt;a href="https://twitter.com/iix,preyliet" rel="noopener noreferrer"&gt;@iix.preyliet&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;🌐 &lt;a href="https://github.com/preyliet" rel="noopener noreferrer"&gt;https://github.com/preyliet/fun-fact-generator/tree/main&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thanks for reading 🙌&lt;br&gt;&lt;br&gt;
Leave feedback or connect if you're working on similar beginner projects!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>python</category>
      <category>programming</category>
    </item>
    <item>
      <title>I Built a Python Hangman Game and Pushed My First Project to GitHub</title>
      <dc:creator>Rohan Nilatkar</dc:creator>
      <pubDate>Mon, 09 Jun 2025 01:07:43 +0000</pubDate>
      <link>https://dev.to/iixpreyliet/i-built-a-python-hangman-game-and-pushed-my-first-project-to-github-389d</link>
      <guid>https://dev.to/iixpreyliet/i-built-a-python-hangman-game-and-pushed-my-first-project-to-github-389d</guid>
      <description>&lt;h1&gt;
  
  
  I Built a Python Hangman Game and Pushed My First Project to GitHub
&lt;/h1&gt;

&lt;p&gt;Hey everyone, I recently started learning to code — and instead of just watching tutorials, I decided to build something.&lt;/p&gt;

&lt;p&gt;This is my first real project as a beginner: a &lt;strong&gt;Hangman game&lt;/strong&gt; written in Python. It’s also my first time using &lt;strong&gt;GitHub&lt;/strong&gt; to store and share my work publicly.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔧 What I Used
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Python (basic syntax, loops, input/output)&lt;/li&gt;
&lt;li&gt;Random module&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;collections.Counter&lt;/code&gt; for comparison&lt;/li&gt;
&lt;li&gt;Basic terminal I/O&lt;/li&gt;
&lt;li&gt;Git + GitHub&lt;/li&gt;
&lt;/ul&gt;




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

&lt;p&gt;A classic Hangman game that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Chooses a random word from a list&lt;/li&gt;
&lt;li&gt;Asks the user to guess one letter at a time&lt;/li&gt;
&lt;li&gt;Shows blanks and correctly guessed letters&lt;/li&gt;
&lt;li&gt;Tracks chances and ends the game if you win or lose&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  📁 GitHub Repo
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;a href="https://github.com/preyliet/hangman-python" rel="noopener noreferrer"&gt;Hangman Python Game&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I added a clean &lt;code&gt;README.md&lt;/code&gt; file and structured the repo properly, something I’m trying to get better at early on.&lt;/p&gt;




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

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Start small&lt;/strong&gt; — one finished project is worth more than 10 tutorials.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GitHub is powerful&lt;/strong&gt; — even beginners should use it from day one.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Keep learning in public&lt;/strong&gt; — it builds consistency and community.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🛣️ What’s Next
&lt;/h2&gt;

&lt;p&gt;I’m currently learning HTML + CSS, and I’ll be building static sites soon. After that, I plan to start JavaScript projects.&lt;/p&gt;

&lt;p&gt;Every project I build will go up on GitHub and I’ll be posting weekly updates on X and Hashnode.&lt;/p&gt;




&lt;h2&gt;
  
  
  ✅ Connect
&lt;/h2&gt;

&lt;p&gt;If you’re also learning or building in public, I’d love to connect and exchange ideas:&lt;/p&gt;

&lt;p&gt;📘 Hashnode: &lt;a href="https://hashnode.com/@iixpreyliet" rel="noopener noreferrer"&gt;Rohan Nilatkar&lt;/a&gt;&lt;br&gt;&lt;br&gt;
🐦 Twitter/X: &lt;a href="https://x.com/iixpreyliet" rel="noopener noreferrer"&gt;@iixpreyliet&lt;/a&gt;&lt;br&gt;&lt;br&gt;
💻 GitHub: &lt;a href="https://github.com/preyliet" rel="noopener noreferrer"&gt;preyliet&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading — keep building!&lt;/p&gt;

</description>
      <category>python</category>
      <category>github</category>
      <category>beginners</category>
      <category>100daysofcode</category>
    </item>
  </channel>
</rss>
