<?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>Forem: Sanu Sharma</title>
    <description>The latest articles on Forem by Sanu Sharma (@sanu_sharma00).</description>
    <link>https://forem.com/sanu_sharma00</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%2F3780108%2F6848832f-cb4b-4a86-9048-44f7b50a5d21.png</url>
      <title>Forem: Sanu Sharma</title>
      <link>https://forem.com/sanu_sharma00</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/sanu_sharma00"/>
    <language>en</language>
    <item>
      <title>I Built a Space Debris Collision Assessment Engine in Python</title>
      <dc:creator>Sanu Sharma</dc:creator>
      <pubDate>Mon, 16 Mar 2026 03:42:59 +0000</pubDate>
      <link>https://forem.com/sanu_sharma00/i-built-a-space-debris-collision-assessment-engine-in-python-580p</link>
      <guid>https://forem.com/sanu_sharma00/i-built-a-space-debris-collision-assessment-engine-in-python-580p</guid>
      <description>&lt;p&gt;Space around Earth is getting crowded.&lt;br&gt;
Thousands of active satellites share orbit with millions of debris fragments — some no bigger than a bolt, yet moving at 7–8 km/s. At those speeds, even a small collision can destroy a satellite.&lt;br&gt;
That reality is what pushed me to build a Space Debris Conjunction Assessment Engine.&lt;br&gt;
Not as a theoretical exercise — but as a computational system that analyzes orbital data and evaluates potential close approaches between objects in orbit.&lt;/p&gt;

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

&lt;p&gt;The goal of the project was simple in concept but complex in implementation:&lt;br&gt;
Given two orbital objects, estimate the risk of collision.&lt;br&gt;
To do that, the system needs to:&lt;br&gt;
Process orbital parameters from satellite datasets&lt;br&gt;
Compute relative motion between objects&lt;br&gt;
Estimate Time of Closest Approach (TCA)&lt;br&gt;
Evaluate minimum separation distance&lt;br&gt;
Flag potential conjunction events&lt;br&gt;
What sounds straightforward quickly turns into a computational physics problem.&lt;/p&gt;

&lt;h2&gt;
  
  
  Architecture of the Engine
&lt;/h2&gt;

&lt;p&gt;The engine evolved into a two-stage assessment pipeline.&lt;br&gt;
Stage 1 — Fast Screening&lt;br&gt;
The first stage acts as a filter.&lt;br&gt;
Instead of running heavy physics calculations on every pair of objects, the system quickly identifies possible conjunction candidates using simplified approximations.&lt;br&gt;
This dramatically reduces the computational load.&lt;br&gt;
Stage 2 — Detailed Assessment&lt;br&gt;
Once potential close approaches are detected, the second stage performs deeper analysis:&lt;br&gt;
Relative position calculations&lt;br&gt;
Time of closest approach estimation&lt;br&gt;
Distance minimization between orbital paths&lt;br&gt;
This stage is more computationally expensive but far more accurate.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where Physics Meets Code
&lt;/h2&gt;

&lt;p&gt;One thing this project reinforced for me:&lt;br&gt;
Understanding physics and implementing physics are two different challenges.&lt;br&gt;
Orbital mechanics equations may look clean on paper, but translating them into reliable Python code requires careful handling of:&lt;br&gt;
numerical stability&lt;br&gt;
coordinate frames&lt;br&gt;
floating-point precision&lt;br&gt;
algorithmic performance&lt;br&gt;
There were many moments where the math was correct but the code still produced unexpected results.&lt;br&gt;
Debugging those cases meant stepping back and thinking physically, not just computationally.&lt;/p&gt;

&lt;h2&gt;
  
  
  Challenges Along the Way
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Numerical edge cases
One of the trickiest parts was handling negative TCA values.
At first it looked like a bug.
But after digging deeper, it became clear that it represented a physical interpretation problem — not a mathematical one.
Understanding what the numbers meant in the real orbital context was key.&lt;/li&gt;
&lt;li&gt;Hardware limitations
Running orbital calculations across many objects quickly becomes expensive.
On limited hardware, even Python can become a bottleneck.
This forced me to rethink:
algorithm structure
data flow
optimization trade-offs
Ironically, constraints made the system better designed.&lt;/li&gt;
&lt;li&gt;Research depth
This project pushed me back into topics I hadn’t revisited in a while:
orbital mechanics
conjunction analysis
numerical methods
Some equations were completely new to me, and implementing them correctly took time.
But that process turned out to be the most rewarding part.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Tools Used&lt;/p&gt;

&lt;p&gt;The system was built primarily with:&lt;br&gt;
Python&lt;br&gt;
numerical computation libraries&lt;br&gt;
orbital data processing&lt;br&gt;
custom conjunction assessment logic&lt;br&gt;
Tools like ChatGPT and Grok were surprisingly useful during development — especially for exploring optimization ideas and debugging complex calculations.&lt;/p&gt;

&lt;h2&gt;
  
  
  Project Repository
&lt;/h2&gt;

&lt;p&gt;If you’re curious about the implementation, the full project is available here:&lt;br&gt;
👉 &lt;a href="https://github.com/sanusharma-ui/space-debris-engine" rel="noopener noreferrer"&gt;https://github.com/sanusharma-ui/space-debris-engine&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>ai</category>
      <category>opensource</category>
    </item>
    <item>
      <title>From Writing Code in a Notebook to Building AI Projects</title>
      <dc:creator>Sanu Sharma</dc:creator>
      <pubDate>Wed, 18 Feb 2026 19:56:30 +0000</pubDate>
      <link>https://forem.com/sanu_sharma00/from-writing-code-in-a-notebook-to-building-ai-projects-3d9o</link>
      <guid>https://forem.com/sanu_sharma00/from-writing-code-in-a-notebook-to-building-ai-projects-3d9o</guid>
      <description>&lt;p&gt;Hi, I’m Sanu Sharma &lt;br&gt;
I’m from the IT field, and I mainly work on coding and software development. I’m also interested in hardware, but hardware projects can be expensive, so most of the time I focus on software.&lt;/p&gt;

&lt;p&gt;This is my first post on DEV, and I’m really excited to start sharing my journey here.&lt;/p&gt;

&lt;p&gt;On this platform, I’ll share my real experiences —&lt;br&gt;
what I build, why I build it, how I build it, and everything I learn along the way.&lt;/p&gt;

&lt;h2&gt;
  
  
  How My Coding Journey Started (2022)
&lt;/h2&gt;

&lt;p&gt;I started my coding journey after my 10th exams in 2022.&lt;/p&gt;

&lt;p&gt;To be honest, I didn’t start coding because I was a genius or because I had some big plan.&lt;br&gt;
I started because my friends were trying to learn coding, and I didn’t want to be left behind.&lt;/p&gt;

&lt;p&gt;I never joined any paid coaching.&lt;br&gt;
I learned everything from YouTube and free resources.&lt;/p&gt;

&lt;p&gt;At the beginning, I was confused.&lt;br&gt;
I would start learning Python, then switch to Java, then C… and it kept repeating.&lt;br&gt;
I didn’t know what to learn or where to focus.&lt;/p&gt;

&lt;p&gt;But during that time, I successfully learned HTML, CSS, and JavaScript.&lt;/p&gt;

&lt;p&gt;And the most interesting part is — I didn’t even have a laptop back then.&lt;/p&gt;

&lt;p&gt;I used to write code in a notebook, imagining how it would run.&lt;br&gt;
Sometimes I used online compilers, and even though they weren’t perfect, they were enough for me.&lt;/p&gt;

&lt;h2&gt;
  
  
  A Long Break (11th &amp;amp; 12th)
&lt;/h2&gt;

&lt;p&gt;After that, I spent almost 2 years without coding, because I was in Class 11 and 12.&lt;br&gt;
Academics took over, and I lost touch with programming completely.&lt;/p&gt;

&lt;h2&gt;
  
  
  College Restart (2024)
&lt;/h2&gt;

&lt;p&gt;At the end of 2024, I joined college.&lt;/p&gt;

&lt;p&gt;We had C++ in our syllabus. I tried learning it, but honestly, I found it very difficult and couldn’t really master it.&lt;/p&gt;

&lt;p&gt;But then I met my old friends again —&lt;br&gt;
HTML, CSS, and JavaScript.&lt;/p&gt;

&lt;p&gt;This time, I didn’t just learn them… I tried to master them properly.&lt;br&gt;
And along with that, I also learned React.&lt;/p&gt;

&lt;p&gt;That’s when I started feeling confident in web development.&lt;/p&gt;

&lt;p&gt;The Real Game Started (2025)&lt;/p&gt;

&lt;p&gt;The real turning point of my journey came in the beginning of 2025.&lt;/p&gt;

&lt;p&gt;Because I met Python again — and this time, Python felt different.&lt;/p&gt;

&lt;p&gt;This time, Python felt easy.&lt;br&gt;
Simple. Powerful. And fun.&lt;/p&gt;

&lt;p&gt;I started building seriously, experimenting more, and using different AI tools to improve my learning and productivity.&lt;/p&gt;

&lt;p&gt;And the result was real projects like:&lt;/p&gt;

&lt;p&gt;1) Multi-persona AI&lt;/p&gt;

&lt;p&gt;2) AI Cardiologist&lt;/p&gt;

&lt;p&gt;3) A fully working messaging app&lt;/p&gt;

&lt;p&gt;4) Space debris project&lt;/p&gt;

&lt;p&gt;And many more..........&lt;/p&gt;

&lt;p&gt;These projects were not just random ideas — they were real builds that helped me learn faster and think better.&lt;/p&gt;

&lt;p&gt;What’s Next?&lt;/p&gt;

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

&lt;p&gt;In the coming days, I’ll be sharing my stories and projects here —&lt;br&gt;
the things I build, the mistakes I make, and the lessons I learn.&lt;/p&gt;

&lt;p&gt;All my projects are also available on my portfolio website, so you can check them out if you want.&lt;br&gt;
 Portfolio: &lt;a href="https://www.sanusharma.dev/" rel="noopener noreferrer"&gt;https://www.sanusharma.dev/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I’m not here to impress anyone.&lt;br&gt;
I’m here to improve, build, and grow.&lt;/p&gt;

&lt;p&gt;Thanks for reading ❤️‍🔥&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>programming</category>
      <category>webdev</category>
      <category>python</category>
    </item>
  </channel>
</rss>
