<?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: Abhiram</title>
    <description>The latest articles on DEV Community by Abhiram (@abhiramp_2005).</description>
    <link>https://dev.to/abhiramp_2005</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%2F2021112%2F9f0e3f5c-c676-4555-9a2b-36557bba2a3e.jpg</url>
      <title>DEV Community: Abhiram</title>
      <link>https://dev.to/abhiramp_2005</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/abhiramp_2005"/>
    <language>en</language>
    <item>
      <title>I Built a WCAG 2.2 Accessibility Checker and Shipped Its SDK to Three Package Registries as a CS Student published: true</title>
      <dc:creator>Abhiram</dc:creator>
      <pubDate>Thu, 19 Mar 2026 18:45:59 +0000</pubDate>
      <link>https://dev.to/abhiramp_2005/i-built-a-wcag-22-accessibility-checker-and-shipped-its-sdk-to-three-package-registries-as-a-cs-40nk</link>
      <guid>https://dev.to/abhiramp_2005/i-built-a-wcag-22-accessibility-checker-and-shipped-its-sdk-to-three-package-registries-as-a-cs-40nk</guid>
      <description>&lt;h1&gt;
  
  
  I Built a WCAG 2.2 Accessibility Checker and Shipped Its SDK to Three Package Registries as a CS Student
&lt;/h1&gt;

&lt;p&gt;Most of my college projects lived and died on a USB drive. This one ended up on NuGet, npm, and Cargo. Here's how it happened and what I learned.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;While working on a web project, I wanted to check if my site was accessible. Every tool I found was either a browser extension that was useless for CI, a paid SaaS, or a basic linter that didn't handle JavaScript-rendered content at all.&lt;/p&gt;

&lt;p&gt;WCAG 2.2 had just introduced new criteria — target size minimums, redundant entry prevention — and nothing free was checking for those yet. So I built my own.&lt;/p&gt;

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

&lt;p&gt;&lt;strong&gt;AXIS&lt;/strong&gt; is a desktop accessibility auditor for Windows that renders JavaScript-heavy pages using a headless Chrome engine, audits against WCAG 2.2, WCAG 2.1, Section 508, and India's RPwD Act, scores pages from 0–100 with a compliance tier, estimates the page's carbon footprint, and exports TXT and PDF reports.&lt;/p&gt;

&lt;p&gt;But the more interesting part was what came next.&lt;/p&gt;

&lt;h2&gt;
  
  
  The SDK Idea
&lt;/h2&gt;

&lt;p&gt;Once the core audit engine was working, I realized it was completely decoupled from the UI. So I extracted it into &lt;strong&gt;AXIS-CORE&lt;/strong&gt; — a standalone library that any developer could drop into their own tooling or CI/CD pipeline.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight csharp"&gt;&lt;code&gt;&lt;span class="kt"&gt;var&lt;/span&gt; &lt;span class="n"&gt;checker&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nf"&gt;AxisCore&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="kt"&gt;var&lt;/span&gt; &lt;span class="n"&gt;report&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="n"&gt;checker&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;CheckUrlAsync&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"https://example.com"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="n"&gt;Console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;WriteLine&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;$"Score: &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="n"&gt;report&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;AccessibilityScore&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s"&gt;/100"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then I thought — why stop at .NET?&lt;/p&gt;

&lt;h2&gt;
  
  
  Shipping to Three Registries
&lt;/h2&gt;

&lt;p&gt;I ported the SDK to JavaScript and Rust, and published all three:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Runtime&lt;/th&gt;
&lt;th&gt;Package&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;.NET&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.nuget.org/packages/AXIS-CORE/" rel="noopener noreferrer"&gt;AXIS-CORE on NuGet&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;JavaScript&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.npmjs.com/package/axis-core-sdk" rel="noopener noreferrer"&gt;axis-core-sdk on npm&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Rust&lt;/td&gt;
&lt;td&gt;&lt;a href="https://crates.io/crates/axis-core" rel="noopener noreferrer"&gt;axis-core on Cargo&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Each one went through the full publish cycle — versioning, package metadata, README, API surface design. It took longer than I expected. Way longer.&lt;/p&gt;

&lt;h3&gt;
  
  
  What I didn't expect
&lt;/h3&gt;

&lt;p&gt;Publishing to NuGet is surprisingly strict compared to npm. You need proper package metadata, a valid license SPDX expression, and a README that actually renders correctly in their portal. My first few attempts were rejected silently — the package appeared listed but showed no description.&lt;/p&gt;

&lt;p&gt;Cargo was the smoothest. The &lt;code&gt;cargo publish&lt;/code&gt; workflow is well-documented and the tooling catches most mistakes before you even push.&lt;/p&gt;

&lt;p&gt;npm was the fastest to publish but the hardest to get right structurally. CommonJS vs ESM compatibility and making sure the package resolves correctly across Node versions took a few iterations.&lt;/p&gt;

&lt;h2&gt;
  
  
  WCAG 2.2 — What's Actually New
&lt;/h2&gt;

&lt;p&gt;This was the part I had to research most deeply. Two new criteria stood out.&lt;/p&gt;

&lt;h3&gt;
  
  
  2.5.8 — Target Size Minimum (Level AA)
&lt;/h3&gt;

&lt;p&gt;Clickable elements need a minimum area of 24×24 CSS pixels. Sounds obvious, but a surprising number of icon buttons and inline links fail this.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nt"&gt;button&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt; &lt;span class="nt"&gt;a&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;min-width&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;24px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;min-height&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;24px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;padding&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;8px&lt;/span&gt; &lt;span class="m"&gt;12px&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;h3&gt;
  
  
  3.3.7 — Redundant Entry (Level A)
&lt;/h3&gt;

&lt;p&gt;Forms collecting personal data must use &lt;code&gt;autocomplete&lt;/code&gt; attributes. This one is almost universally ignored.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;input&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"email"&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"email"&lt;/span&gt; &lt;span class="na"&gt;autocomplete=&lt;/span&gt;&lt;span class="s"&gt;"email"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;input&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"tel"&lt;/span&gt;   &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"phone"&lt;/span&gt; &lt;span class="na"&gt;autocomplete=&lt;/span&gt;&lt;span class="s"&gt;"tel"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;AXIS checks both automatically.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Environmental Angle
&lt;/h2&gt;

&lt;p&gt;One feature I added on a whim turned out to be the most talked-about when I demoed it — a carbon footprint estimate per page load.&lt;/p&gt;

&lt;p&gt;It factors in page weight, request count, CDN usage, and estimated server energy draw, then gives a rating:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Rating&lt;/th&gt;
&lt;th&gt;CO₂ per page load&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;🌱 Eco&lt;/td&gt;
&lt;td&gt;&amp;lt; 10 g&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;🟡 Moderate&lt;/td&gt;
&lt;td&gt;10 – 50 g&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;🔴 High Impact&lt;/td&gt;
&lt;td&gt;&amp;gt; 50 g&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;It's not scientific-grade, but it makes people think — which was the point.&lt;/p&gt;

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

&lt;p&gt;Designing a public API is hard. When it's just your own app, you can change internals freely. Once it's a published package, breaking changes have real consequences. I had to think carefully about naming, return types, and async patterns before publishing v1.&lt;/p&gt;

&lt;p&gt;Documentation is the product. Nobody will use your package if the README doesn't immediately show them what it does and how to install it. I rewrote the README three times.&lt;/p&gt;

&lt;p&gt;Multi-runtime is a commitment. Keeping three SDKs in sync across .NET, JavaScript, and Rust means any core logic change needs to propagate to all three. I underestimated this. Python support is planned but I'm being careful about when I take that on.&lt;/p&gt;

&lt;p&gt;Organic downloads feel different. Seeing strangers install something you built without you telling them to is a genuinely different feeling from a project that only your professor sees.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;p&gt;Python SDK on PyPI, a GitHub Actions integration so teams can run AXIS checks in CI without writing any code, and a VS Code extension companion — &lt;a href="https://github.com/ABHIRAM-CREATOR06/a11y-check" rel="noopener noreferrer"&gt;A11Y: Lazy Edition&lt;/a&gt; is already live for in-editor checks.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/ABHIRAM-CREATOR06/Acess1/releases/tag/v2" rel="noopener noreferrer"&gt;Release&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;NuGet:&lt;/strong&gt; &lt;code&gt;dotnet add package AXIS-CORE&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;npm:&lt;/strong&gt; &lt;code&gt;npm install axis-core-sdk&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cargo:&lt;/strong&gt; &lt;code&gt;cargo add axis-core&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you're building anything where accessibility matters or just want to know your page's carbon footprint, give it a try. And if you've shipped a multi-runtime SDK before, I'd love to know how you handled keeping them in sync.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Built with WPF · .NET 9 · C# · HtmlAgilityPack · PuppeteerSharp · QuestPDF&lt;/em&gt;&lt;/p&gt;




&lt;p&gt;Main changes: collapsed the bullet-heavy "What's Next" into a paragraph, merged the fragmented "What I Learned" bullets into flowing prose, and removed the section separators that were making it feel templated.&lt;/p&gt;

</description>
      <category>a11y</category>
      <category>rust</category>
      <category>dotnet</category>
      <category>opensource</category>
    </item>
    <item>
      <title>IndiaFoss Banglore Journey</title>
      <dc:creator>Abhiram</dc:creator>
      <pubDate>Thu, 19 Mar 2026 18:37:23 +0000</pubDate>
      <link>https://dev.to/abhiramp_2005/indiafoss-banglore-journey-4jkm</link>
      <guid>https://dev.to/abhiramp_2005/indiafoss-banglore-journey-4jkm</guid>
      <description>&lt;p&gt;&lt;strong&gt;IndiaFOSS Summit Bangalore 2025 — When an Idea Turned Into a Movement&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I walked into the IndiaFOSS Summit in Bangalore not just expecting tech talks or networking opportunities, but hoping for inspiration. What I left with was far more — a renewed belief in open source, new professional connections, and a deeper sense of what impact really looks like.&lt;/p&gt;

&lt;p&gt;Day 1: The Spark&lt;br&gt;
From the very first session, it was clear this wasn’t just a meetup of coders. It was a convergence of people who think, build, and dream differently.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Kailash Nadh&lt;/strong&gt;’s talk stood out. He reminded us that open source is more than just code — it’s about contribution, community, and leaving behind tools that will continue to serve people long after we’re gone. That struck a chord with me.&lt;/p&gt;

&lt;p&gt;Over coffee breaks and hallway conversations, I found myself speaking to project leads, student innovators, and people who’ve spent years shaping the open-source ecosystem. Each conversation felt like a window into what’s possible when curiosity meets action.&lt;/p&gt;

&lt;h2&gt;
  
  
  Meeting Industry Voices
&lt;/h2&gt;

&lt;p&gt;One of the highlights was meeting senior figures from Zeiss.&lt;/p&gt;

&lt;p&gt;The Product Head — a German expert Helge Anderson — spoke about how the company manages the balance between innovation and responsibility across its global operations. HR leaders gave an honest view of their culture: they notice and value people who take initiative instead of waiting passively for opportunities.&lt;/p&gt;

&lt;p&gt;Technical leads, architects, and cloud engineers also connected with me on LinkedIn. For a student, that’s not just a contact list — it’s a reminder that conversations can open doors.&lt;/p&gt;

&lt;p&gt;What impressed me most was the tone of these interactions. They weren’t scripted Q&amp;amp;As. They were genuine exchanges — “What drives you?” “Where do you see yourself?” “How do you think open source will matter in the next five years?”&lt;/p&gt;

&lt;h2&gt;
  
  
  The Joy of Serendipity
&lt;/h2&gt;

&lt;p&gt;Some of the most unforgettable moments happened outside the scheduled sessions:&lt;/p&gt;

&lt;p&gt;On the train, a co-passenger — an elderly lady from Kerala — struck up a conversation. Before we parted ways, she told me she saw me as her grandson and blessed me for future success.&lt;/p&gt;

&lt;p&gt;On the way to Bangalore, I spoke with an industrialist who turned into an unexpected mentor. His advice was simple but sharp: “Don’t rush into flashy labels like entrepreneurship. Focus on solving real problems, gain real-world exposure, and everything else will follow.”&lt;/p&gt;

&lt;p&gt;During sessions, engineers and founders from Aftershoot, Flexprice, and other startups engaged with me — not in a “networking” sense, but genuinely curious about my ideas, the challenges I’m working on, and how I plan to take them forward.&lt;/p&gt;

&lt;h2&gt;
  
  
  Lessons Learnt (Beyond the Slides)
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Authenticity &amp;gt; Polish&lt;/strong&gt;&lt;br&gt;
You don’t need perfect English, perfect Malayalam, or flawless slides. What people notice is your curiosity, your respect, and your intent.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Approach, don’t wait&lt;/strong&gt;&lt;br&gt;
The biggest leaders are often the most approachable — but only if you take the first step. Waiting silently doesn’t get noticed.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Execution matters more than ideas&lt;/strong&gt;&lt;br&gt;
Everyone has ideas. Few follow through. Conversations kept circling back to one point: sharpen what matters and build consistently.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Open source is for everyone&lt;/strong&gt;&lt;br&gt;
Even if you don’t write a single line of code, you can still contribute — through accessibility tools, design, documentation, or building supportive communities.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Connections are human, not transactional&lt;/strong&gt;&lt;br&gt;
Handshakes, laughter, shared meals, and honest questions build stronger bonds than polished résumés or forced pitches.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Mentorship comes in unexpected forms&lt;/strong&gt;&lt;br&gt;
Sometimes it’s not a keynote speaker but a co-passenger or a stranger in the hallway who drops the advice you’ll remember years later.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Your story matters&lt;/strong&gt;&lt;br&gt;
People don’t just ask “What do you do?” They ask “Why do you do it?” Having a story — even if it’s still unfolding — makes a difference.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  What’s Next for Me
&lt;/h2&gt;

&lt;p&gt;The summit gave me a strong push to expand my Web Accessibility Checker project. I’m making it fully open source and extending it across platforms — web, Android, and desktop.&lt;/p&gt;

&lt;p&gt;I’ll keep refining it, taking feedback, and sharing progress publicly. My goal is that next time I walk into an event like this, I’ll be attending not just as a learner, but as a contributor with something meaningful to showcase.&lt;/p&gt;

&lt;h2&gt;
  
  
  Final Thought
&lt;/h2&gt;

&lt;p&gt;If there’s one thing I’ve taken away, it’s this: Don’t attend events just to listen. Attend to connect, to ask, to share, to build.&lt;/p&gt;

&lt;p&gt;Because sometimes, the most important part of a summit isn’t on the stage — it’s in a hallway chat, a train ride, or a stranger’s blessing&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>indiafoss</category>
      <category>news</category>
      <category>learning</category>
    </item>
    <item>
      <title>Introducing🥁 my CLI based NUMERICAL SYSTEM CALCULATOR and SCRIPT DETECTOR</title>
      <dc:creator>Abhiram</dc:creator>
      <pubDate>Mon, 23 Sep 2024 16:10:58 +0000</pubDate>
      <link>https://dev.to/abhiramp_2005/introducing-my-cli-based-numerical-system-calculator-and-script-detector-j3b</link>
      <guid>https://dev.to/abhiramp_2005/introducing-my-cli-based-numerical-system-calculator-and-script-detector-j3b</guid>
      <description>&lt;h1&gt;
  
  
  Multi-Dimensional Calculator
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Decimal Conversion
&lt;/h2&gt;

&lt;p&gt;This Rust project demonstrates how to perform number conversions with decimal points using a user-defined module. The project uses the &lt;code&gt;rust_decimal&lt;/code&gt; crate for high-precision decimal arithmetic.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Conversion from base to another with a accuracy upto a base of of 32 [for high accuracy] &lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Area Calculator
&lt;/h2&gt;

&lt;p&gt;This rust project was upgraded with ability to calculate areas of:-&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Square&lt;/li&gt;
&lt;li&gt;Rectangle&lt;/li&gt;
&lt;li&gt;Triangle&lt;/li&gt;
&lt;li&gt;Circle&lt;/li&gt;
&lt;li&gt;Regular polygon with n side&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;and ability to convert into various units.&lt;/p&gt;

&lt;h2&gt;
  
  
  Temperature Convertor
&lt;/h2&gt;

&lt;p&gt;A ability to convert from temperatures units of celcius,fahrenheit,kelvin,rankine fom one another.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; Also it can convert from one unit to another with a accuracy upto 4 decimal places.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Lenght Convertor
&lt;/h2&gt;

&lt;p&gt;This project was upgraded with ability to convert from length units of meter,centimeter,inch,foot,yard,mile.&lt;/p&gt;

&lt;h2&gt;
  
  
  Physics Calculator
&lt;/h2&gt;

&lt;p&gt;this project was upgraded with ability to calculate:-&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;mass&lt;/li&gt;
&lt;li&gt;foce&lt;/li&gt;
&lt;li&gt;energy&lt;/li&gt;
&lt;li&gt;velocity&lt;/li&gt;
&lt;li&gt;pressure&lt;/li&gt;
&lt;li&gt;acceleration&lt;/li&gt;
&lt;li&gt;volume&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;and  ability to convert into various units.&lt;/p&gt;

&lt;h2&gt;
  
  
  Miscellaneous Operation
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Angle operations&lt;/li&gt;
&lt;li&gt;Data Transfer unis&lt;/li&gt;
&lt;li&gt;Fuel Economy units&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Time Operation
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt; Time conversion from one unit to another&lt;/li&gt;
&lt;li&gt;Time calculation of time difference between two time&lt;/li&gt;
&lt;li&gt;Calculate effiency of a work&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Fuel Calculations
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Get ideas about efficiency&lt;/li&gt;
&lt;li&gt;get knowledge about environmental issues like carbon footprint&lt;/li&gt;
&lt;li&gt;Annual Fuel Cost&lt;/li&gt;
&lt;li&gt;Fuel consumptions&lt;/li&gt;
&lt;li&gt;Monthly savings when buying a new car&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Data Transfer
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Converting into various bases&lt;/li&gt;
&lt;li&gt;Network Speed predictor&lt;/li&gt;
&lt;li&gt;Network Statistics&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Language and Script Pedictor
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Write a text/copy the text from another source and paste here it to get the language and script details&lt;/li&gt;
&lt;li&gt;Added system relaiblity and predicatbilty showing how much reliable the data is&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Project Structure
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;src/&lt;/code&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;main.rs&lt;/code&gt;: The main entry point of the application.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;arithmetic.rs&lt;/code&gt;: A module containing functions for arithmetic operations.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;area.rs&lt;/code&gt;: A module containing functions for area calculations.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;data.rs&lt;/code&gt; : A module containing operations for data transfer speed.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;physics.rs&lt;/code&gt;: A module containing details about physics operation.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;lenght.rs&lt;/code&gt; : Amodule containg information about lenght operations&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;physicc.rs&lt;/code&gt;: A subpart module of &lt;code&gt;physics.rs&lt;/code&gt; containg operation about convertsion from one base to another&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;tempe.rs&lt;/code&gt;: A module containing details of temperature.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;time.rs&lt;/code&gt;: A module containg details of time operations.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;
&lt;code&gt;target/&lt;/code&gt;

&lt;ul&gt;
&lt;li&gt;contains debugging files&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;&lt;code&gt;cargo.lock&lt;/code&gt;&lt;/li&gt;

&lt;li&gt;&lt;code&gt;cargo.toml&lt;/code&gt;&lt;/li&gt;

&lt;/ul&gt;

&lt;h2&gt;
  
  
  Dependencies
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;rust_decimal&lt;/code&gt;: A crate for high-precision decimal arithmetic.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;rust_decimal_macros&lt;/code&gt;: A crate for creating decimal literals.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Add the following to your &lt;code&gt;Cargo.toml&lt;/code&gt; file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight toml"&gt;&lt;code&gt;&lt;span class="nn"&gt;[dependencies]&lt;/span&gt;
&lt;span class="py"&gt;rust_decimal&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"1.36"&lt;/span&gt;
&lt;span class="py"&gt;rust_decimal_macros&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"1.36"&lt;/span&gt;
&lt;span class="py"&gt;whatlang&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;"0.16.4"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h4&gt;
  
  
  Please adhere to this project's &lt;code&gt;code of conduct&lt;/code&gt;and support the developer with a follow and star.
&lt;/h4&gt;

&lt;h4&gt;
  
  
  Development of project completed on 9/21/2024 at 7:44 UST
&lt;/h4&gt;

&lt;p&gt;&lt;strong&gt;For any suggestions and changes please free to comment.Please do like♥️the post for encouraging me to do more such works&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Author
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/ABHIRAM-CREATOR06/Number-Conversion-Calctor" rel="noopener noreferrer"&gt;@ABHIRAM-CREATOR06&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>rust</category>
      <category>cli</category>
      <category>showdev</category>
      <category>sharepoint</category>
    </item>
    <item>
      <title>WHICH SUPERHERO ARE YOU????</title>
      <dc:creator>Abhiram</dc:creator>
      <pubDate>Sun, 22 Sep 2024 16:14:21 +0000</pubDate>
      <link>https://dev.to/abhiramp_2005/which-superhero-are-you-4l5b</link>
      <guid>https://dev.to/abhiramp_2005/which-superhero-are-you-4l5b</guid>
      <description>&lt;h1&gt;
  
  
  🦸 Build a Superhero Prediction Model Using Python
&lt;/h1&gt;

&lt;p&gt;Ever wondered which superhero matches your traits the best? Let’s build a Python project that predicts which superhero you're most like based on your strength, intelligence, speed, agility, and durability. It’s a fun and practical machine learning exercise! 🚀&lt;/p&gt;

&lt;h2&gt;
  
  
  🌟 Project Overview
&lt;/h2&gt;

&lt;p&gt;In this project, we'll:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Create a dataset of superhero attributes.&lt;/li&gt;
&lt;li&gt;Train a machine learning model to classify superheroes based on their characteristics.&lt;/li&gt;
&lt;li&gt;Allow users to input their own traits and get matched with a superhero.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🛠️ Tech Stack:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Python 🐍&lt;/li&gt;
&lt;li&gt;Pandas for data manipulation&lt;/li&gt;
&lt;li&gt;Scikit-learn for model building and prediction&lt;/li&gt;
&lt;li&gt;Logistic Regression for classification&lt;/li&gt;
&lt;li&gt;CSV for handling the superhero dataset&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  📑 Project Steps
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Setup the Superhero Dataset&lt;/strong&gt;: We’ll use a CSV file to store our superheroes and their respective traits.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Train the Machine Learning Model&lt;/strong&gt;: We'll use Logistic Regression to classify superheroes based on their attributes.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;User Input&lt;/strong&gt;: Let users input their own characteristics and predict their superhero match!&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  🦸‍♂️ Superhero Dataset
&lt;/h3&gt;

&lt;p&gt;We'll create a CSV file containing a list of superheroes and their attributes: strength, intelligence, speed, agility, and durability. Here’s an example dataset:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Strength&lt;/th&gt;
&lt;th&gt;Intelligence&lt;/th&gt;
&lt;th&gt;Speed&lt;/th&gt;
&lt;th&gt;Agility&lt;/th&gt;
&lt;th&gt;Durability&lt;/th&gt;
&lt;th&gt;Superhero&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;8&lt;/td&gt;
&lt;td&gt;7&lt;/td&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;9&lt;/td&gt;
&lt;td&gt;Superman&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;9&lt;/td&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;7&lt;/td&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;Batman&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;9&lt;/td&gt;
&lt;td&gt;8&lt;/td&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;Flash&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;7&lt;/td&gt;
&lt;td&gt;8&lt;/td&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;7&lt;/td&gt;
&lt;td&gt;Wonder Woman&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;9&lt;/td&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;7&lt;/td&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;8&lt;/td&gt;
&lt;td&gt;Thor&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;10&lt;/td&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;9&lt;/td&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;Iron Man&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;7&lt;/td&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;8&lt;/td&gt;
&lt;td&gt;7&lt;/td&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;Spider-Man&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;You can create your own dataset using this template!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Visit my &lt;a href="https://github.com/ABHIRAM-CREATOR06/Ai_joruney" rel="noopener noreferrer"&gt;Github&lt;/a&gt; for complete code&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Feel to inform about your queries, suggestions and futher development ideas and do aupport this project by &lt;strong&gt;like ♥️&lt;/strong&gt; the project for effort put by the dev.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Follow ** my **&lt;em&gt;github&lt;/em&gt;&lt;/strong&gt; for more such interesting projects &lt;/p&gt;

</description>
      <category>ai</category>
      <category>python</category>
      <category>programming</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>Numeric Convertion</title>
      <dc:creator>Abhiram</dc:creator>
      <pubDate>Sat, 14 Sep 2024 11:14:17 +0000</pubDate>
      <link>https://dev.to/abhiramp_2005/numeric-convertion-29bj</link>
      <guid>https://dev.to/abhiramp_2005/numeric-convertion-29bj</guid>
      <description>&lt;h2&gt;
  
  
  Logical Number Conversion using Rust
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;Fed up with stupid calculations in logic system design told a friend, found solution thanks to my best friend RUST&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Welcome to the Base Converter project! This Rust application allows you to convert numbers from any logical base to another. Whether you’re working with binary, hexadecimal, or any other base, this tool has got you covered. &lt;/p&gt;

&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Convert numbers between any two bases (2-36)&lt;/li&gt;
&lt;li&gt;User-friendly command-line interface&lt;/li&gt;
&lt;li&gt;Error handling for invalid inputs&lt;/li&gt;
&lt;li&gt;Efficient and fast conversion algorithms&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Working
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3dbkmztphy85vadivqky.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3dbkmztphy85vadivqky.png" alt="Image description" width="" height=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Cargo.toml dependecies
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;[dependencies]&lt;br&gt;
rust_decimal = "1.36"&lt;br&gt;
rust_decimal_macros = "1.36"&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Code available at &lt;a href="https://github.com/ABHIRAM-CREATOR06/Number-Conversion-Calctor" rel="noopener noreferrer"&gt;Github&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Hope you all this and please share your opinion and modifications...&lt;br&gt;
Thank you&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>programming</category>
      <category>productivity</category>
      <category>rust</category>
    </item>
    <item>
      <title>Frontend Attempt</title>
      <dc:creator>Abhiram</dc:creator>
      <pubDate>Thu, 05 Sep 2024 17:00:05 +0000</pubDate>
      <link>https://dev.to/abhiramp_2005/frontend-attempt-pp0</link>
      <guid>https://dev.to/abhiramp_2005/frontend-attempt-pp0</guid>
      <description>&lt;p&gt;This is a submission for Frontend Challenge v24.09.04, &lt;strong&gt;Glam Up My Markup: Space&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I Built&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I built a space-themed landing page that provides information about space exploration. The goal was to create an attractive, minimalistic design that highlights key aspects of space history, current missions, future missions, and more. The page includes sections for home, about, history, current missions, future missions,a questionnaire, and contact information.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Demo&lt;/strong&gt;&lt;br&gt;
&lt;iframe height="600" src="https://codepen.io/Anonymous-Panda-the-scripter/embed/MWMZvmQ?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;You can view the project live here. Below is a screenshot of the landing page:&lt;br&gt;
&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fho2wa8px4impr3upjy1v.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fho2wa8px4impr3upjy1v.png" alt="Landing Page" width="800" height="373"&gt;&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Space Exploration Landing Page&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You can also check out the code on &lt;a href="https://github.com/ABHIRAM-CREATOR06/Frontenend-challenge/tree/main" rel="noopener noreferrer"&gt;Github&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Journey&lt;/strong&gt;&lt;br&gt;
Creating this project was an exciting journey. Here are some key points about the process:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Design and Layout&lt;/strong&gt;: I aimed for a clean and minimalistic design with a dark, space-themed background to create an immersive experience. The layout is simple yet informative, making it easy for users to navigate through different sections.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Content&lt;/strong&gt;: I included detailed information about the history of space exploration, current and future missions. The questionnaire section allows users to interact and share their thoughts on space exploration.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Challenges:&lt;/strong&gt; One of the challenges was ensuring that the animations interactivity worked smoothly across different devices and screen sizes. I learned a lot about responsive design and cross-browser compatibility during this process.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Future Plans&lt;/strong&gt;: I plan to add more interactive elements, such as a quiz about space facts and a timeline of significant events in space exploration. I also hope to integrate more advanced animations and transitions to make the page even more engaging.&lt;/p&gt;
&lt;h2&gt;
  
  
  CODE
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;HTML&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;meta charset="UTF-8"&amp;gt;
    &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&amp;gt;
    &amp;lt;title&amp;gt;Space Exploration&amp;lt;/title&amp;gt;
    &amp;lt;link rel="stylesheet" href="styles.css"&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;header class="space-background"&amp;gt;
        &amp;lt;h1&amp;gt;Welcome to Space Exploration&amp;lt;/h1&amp;gt;
        &amp;lt;nav&amp;gt;
            &amp;lt;ul&amp;gt;
                &amp;lt;li&amp;gt;&amp;lt;a href="#home"&amp;gt;Home&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
                &amp;lt;li&amp;gt;&amp;lt;a href="#about"&amp;gt;About&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
                &amp;lt;li&amp;gt;&amp;lt;a href="#history"&amp;gt;History&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
                &amp;lt;li&amp;gt;&amp;lt;a href="#current-missions"&amp;gt;Current Missions&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
                &amp;lt;li&amp;gt;&amp;lt;a href="#future-missions"&amp;gt;Future Missions&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
                &amp;lt;li&amp;gt;&amp;lt;a href="#questionnaire"&amp;gt;Questionnaire&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
                &amp;lt;li&amp;gt;&amp;lt;a href="#contact"&amp;gt;Contact&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
            &amp;lt;/ul&amp;gt;
        &amp;lt;/nav&amp;gt;
    &amp;lt;/header&amp;gt;
    &amp;lt;main class="space-background"&amp;gt;
        &amp;lt;section id="home"&amp;gt;
            &amp;lt;h2&amp;gt;Home&amp;lt;/h2&amp;gt;
            &amp;lt;p&amp;gt;Discover the wonders of the universe and our journey into space.&amp;lt;/p&amp;gt;
        &amp;lt;/section&amp;gt;
        &amp;lt;section id="about"&amp;gt;
            &amp;lt;h2&amp;gt;About&amp;lt;/h2&amp;gt;
            &amp;lt;p&amp;gt;Learn about the history and future of space exploration.&amp;lt;/p&amp;gt;
        &amp;lt;/section&amp;gt;
        &amp;lt;section id="history"&amp;gt;
            &amp;lt;h2&amp;gt;History of Space Exploration&amp;lt;/h2&amp;gt;
            &amp;lt;h3&amp;gt;1. Early Concepts (Pre-20th Century)&amp;lt;/h3&amp;gt;
            &amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;Ancient Civilizations:&amp;lt;/strong&amp;gt; Ancient cultures like the Babylonians, Egyptians, Greeks, and Chinese were among the first to study the stars and celestial objects, laying the foundation for astronomy.&amp;lt;/p&amp;gt;
            &amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;17th Century:&amp;lt;/strong&amp;gt; Johannes Kepler’s laws of planetary motion and Isaac Newton’s law of universal gravitation provided the necessary understanding for future space travel concepts.&amp;lt;/p&amp;gt;
            &amp;lt;h3&amp;gt;2. Early 20th Century&amp;lt;/h3&amp;gt;
            &amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;Tsiolkovsky's Rocket Equation (1903):&amp;lt;/strong&amp;gt; Russian scientist Konstantin Tsiolkovsky proposed the idea of space travel using rockets and formulated the Tsiolkovsky rocket equation, a fundamental principle in astronautics.&amp;lt;/p&amp;gt;
            &amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;Robert Goddard (1926):&amp;lt;/strong&amp;gt; An American physicist, Robert Goddard, successfully launched the world's first liquid-fueled rocket, proving that space travel was possible.&amp;lt;/p&amp;gt;
            &amp;lt;h3&amp;gt;3. The Space Race (1950s-1970s)&amp;lt;/h3&amp;gt;
            &amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;Sputnik 1 (1957):&amp;lt;/strong&amp;gt; The Soviet Union launched the first artificial satellite, Sputnik 1, into space, marking the beginning of the Space Age.&amp;lt;/p&amp;gt;
            &amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;Yuri Gagarin (1961):&amp;lt;/strong&amp;gt; Soviet cosmonaut Yuri Gagarin became the first human to orbit Earth aboard Vostok 1, a major milestone in space exploration.&amp;lt;/p&amp;gt;
            &amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;Apollo 11 (1969):&amp;lt;/strong&amp;gt; The United States' NASA successfully landed astronauts Neil Armstrong and Buzz Aldrin on the Moon, with Armstrong famously declaring, "That's one small step for man, one giant leap for mankind."&amp;lt;/p&amp;gt;
            &amp;lt;h3&amp;gt;4. Post-Moon Landings and the Space Shuttle Era (1970s-1990s)&amp;lt;/h3&amp;gt;
            &amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;Space Stations:&amp;lt;/strong&amp;gt;&amp;lt;/p&amp;gt;
            &amp;lt;ul&amp;gt;
                &amp;lt;li&amp;gt;&amp;lt;strong&amp;gt;Salyut and Mir (1971-1986):&amp;lt;/strong&amp;gt; The Soviet Union launched a series of space stations, culminating in the long-lasting Mir, which operated until 2001.&amp;lt;/li&amp;gt;
                &amp;lt;li&amp;gt;&amp;lt;strong&amp;gt;Skylab (1973):&amp;lt;/strong&amp;gt; The United States launched its first space station, Skylab, which was operational for six years.&amp;lt;/li&amp;gt;
            &amp;lt;/ul&amp;gt;
            &amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;Space Shuttle Program (1981-2011):&amp;lt;/strong&amp;gt; NASA’s reusable Space Shuttle fleet completed 135 missions over 30 years, including launching satellites, conducting scientific research, and assembling the International Space Station (ISS).&amp;lt;/p&amp;gt;
            &amp;lt;h3&amp;gt;5. International Cooperation and Space Exploration (1990s-Present)&amp;lt;/h3&amp;gt;
            &amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;International Space Station (ISS) (1998-present):&amp;lt;/strong&amp;gt; A joint effort by NASA, Roscosmos (Russia), ESA (Europe), JAXA (Japan), and other partners, the ISS serves as a hub for scientific research and international collaboration in low Earth orbit.&amp;lt;/p&amp;gt;
            &amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;Mars Exploration:&amp;lt;/strong&amp;gt;&amp;lt;/p&amp;gt;
            &amp;lt;ul&amp;gt;
                &amp;lt;li&amp;gt;&amp;lt;strong&amp;gt;Rovers and Orbiters:&amp;lt;/strong&amp;gt; The Mars rovers like Spirit, Opportunity, Curiosity, and Perseverance have provided detailed information about the Martian surface and its potential to support life.&amp;lt;/li&amp;gt;
                &amp;lt;li&amp;gt;&amp;lt;strong&amp;gt;ExoMars (2020):&amp;lt;/strong&amp;gt; A European-Russian mission designed to search for signs of life on Mars.&amp;lt;/li&amp;gt;
            &amp;lt;/ul&amp;gt;
            &amp;lt;h3&amp;gt;6. Private Space Exploration and the Future (2000s-Present)&amp;lt;/h3&amp;gt;
            &amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;Commercial Spaceflight:&amp;lt;/strong&amp;gt; Companies like SpaceX, Blue Origin, and Virgin Galactic are pioneering commercial space travel, aiming to make space more accessible to private individuals and researchers.&amp;lt;/p&amp;gt;
        &amp;lt;/section&amp;gt;
        &amp;lt;section id="current-missions"&amp;gt;
            &amp;lt;h2&amp;gt;Current Missions&amp;lt;/h2&amp;gt;
            &amp;lt;p&amp;gt;Explore the ongoing missions that are expanding our understanding of the universe.&amp;lt;/p&amp;gt;
        &amp;lt;/section&amp;gt;
        &amp;lt;section id="future-missions"&amp;gt;
            &amp;lt;h2&amp;gt;Future Missions&amp;lt;/h2&amp;gt;
            &amp;lt;p&amp;gt;Learn about the upcoming missions that aim to push the boundaries of space exploration.&amp;lt;/p&amp;gt;
        &amp;lt;/section&amp;gt;
        &amp;lt;section id="questionnaire"&amp;gt;
            &amp;lt;h2&amp;gt;Questionnaire&amp;lt;/h2&amp;gt;
            &amp;lt;form&amp;gt;
                &amp;lt;label for="name"&amp;gt;Name:&amp;lt;/label&amp;gt;
                &amp;lt;input type="text" id="name" name="name" required&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;

                &amp;lt;label for="email"&amp;gt;Email:&amp;lt;/label&amp;gt;
                &amp;lt;input type="email" id="email" name="email" required&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;

                &amp;lt;label for="question1"&amp;gt;1. What is your favorite planet?&amp;lt;/label&amp;gt;&amp;lt;br&amp;gt;
                &amp;lt;input type="text" id="question1" name="question1" required&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;

                &amp;lt;label for="question2"&amp;gt;2. Have you ever visited a space museum?&amp;lt;/label&amp;gt;&amp;lt;br&amp;gt;
                &amp;lt;input type="radio" id="yes" name="question2" value="yes"&amp;gt;
                &amp;lt;label for="yes"&amp;gt;Yes&amp;lt;/label&amp;gt;&amp;lt;br&amp;gt;
                &amp;lt;input type="radio" id="no" name="question2" value="no"&amp;gt;
                &amp;lt;label for="no"&amp;gt;No&amp;lt;/label&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;

                &amp;lt;label for="question3"&amp;gt;3. What interests you the most about space exploration?&amp;lt;/label&amp;gt;&amp;lt;br&amp;gt;
                &amp;lt;textarea id="question3" name="question3" rows="4" cols="50" required&amp;gt;&amp;lt;/textarea&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;

                &amp;lt;input type="submit" value="Submit"&amp;gt;
            &amp;lt;/form&amp;gt;
        &amp;lt;/section&amp;gt;
        &amp;lt;section id="contact"&amp;gt;
            &amp;lt;h2&amp;gt;Contact&amp;lt;/h2&amp;gt;
            &amp;lt;p&amp;gt;Get in touch with us for more information about space exploration.&amp;lt;/p&amp;gt;
        &amp;lt;/section&amp;gt;
    &amp;lt;/main&amp;gt;
    &amp;lt;footer class="space-background"&amp;gt;
        &amp;lt;p&amp;gt;© 2024 Space Exploration. All rights reserved.&amp;lt;/p&amp;gt;
    &amp;lt;/footer&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;CSS&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #000;
    color: #fff;
}

.space-background {
    background: rgba(0, 0, 0, 0.8) url('https://www.nasa.gov/sites/default/files/thumbnails/image/potw2048a.jpg') no-repeat center center;
    background-size: cover;
}

header {
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin-bottom: 0.5rem;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
}

form {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
}

form input[type="submit"] {
    background: #333;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background: #555;
}

footer {
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Team&lt;/strong&gt;&lt;br&gt;
This project was a solo effort, but I would like to credit the following resources and inspirations:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;NASA for the stunning space images.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;MDN Web Docs for the excellent documentation on web development.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;License&lt;/strong&gt;&lt;br&gt;
This project is licensed under the MIT License. Feel free to use and modify the code as you see fit.&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>frontendchallenge</category>
      <category>css</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Python Project: Movie Suggestion System</title>
      <dc:creator>Abhiram</dc:creator>
      <pubDate>Wed, 04 Sep 2024 13:16:33 +0000</pubDate>
      <link>https://dev.to/abhiramp_2005/python-project-movie-suggestion-system-32g4</link>
      <guid>https://dev.to/abhiramp_2005/python-project-movie-suggestion-system-32g4</guid>
      <description>&lt;p&gt;&lt;strong&gt;Build a Movie Suggestion Machine with Python and Tkinter&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Introduction&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Struggling to decide which movie to watch next? The Movie Suggestion Machine is here to help! This Python-based GUI application suggests movies based on genres, allows you to search for specific movies, and provides cast and crew information. It also includes light/dark mode and full-screen mode for a better user experience.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Suggest Movies: Get movie suggestions based on genres.&lt;br&gt;
Search Movies: Search for movies by name.&lt;br&gt;
Get Cast and Crew: Retrieve cast and crew information.&lt;br&gt;
Toggle Theme: Switch between light and dark modes.&lt;br&gt;
Full-Screen Mode: Enable full-screen mode with larger icons and buttons.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How It Works&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Suggest Movies: Enter a genre to get movie suggestions.&lt;br&gt;
Search Movies: Enter a movie name to search for movies.&lt;br&gt;
Get Cast and Crew: Enter a movie name to retrieve cast and crew information.&lt;br&gt;
Toggle Theme: Switch between light and dark modes.&lt;br&gt;
Full-Screen Mode: Press F11 to toggle full-screen mode. Press Escape to exit.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1z7993t49he69wocrb6l.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1z7993t49he69wocrb6l.png" alt="Image description" width="800" height="356"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fk65aww3v6lle5t1w7rt1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fk65aww3v6lle5t1w7rt1.png" alt="Image description" width="293" height="369"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6edjnas9lyavjyai6ghk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6edjnas9lyavjyai6ghk.png" alt="Image description" width="800" height="364"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqf43tlfl6zb52dvuljc7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqf43tlfl6zb52dvuljc7.png" alt="Image description" width="218" height="310"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The Movie Suggestion Machine is a fun and useful project that showcases the power of Python and Tkinter for building GUI applications. Check out the GitHub repository for more details and to contribute!&lt;br&gt;
&lt;a href="https://github.com/ABHIRAM-CREATOR06/MOVIE-APPLICATION" rel="noopener noreferrer"&gt;Github Repository&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Feel free to customize this further to suit your needs. Let me know if you need any more help!&lt;/p&gt;

</description>
      <category>programming</category>
      <category>python</category>
      <category>webscraping</category>
      <category>github</category>
    </item>
  </channel>
</rss>
