<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Aditya Madhavi</title>
    <description>The latest articles on DEV Community by Aditya Madhavi (@aditya_madhavi_e99e7007da).</description>
    <link>https://dev.to/aditya_madhavi_e99e7007da</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%2F3937323%2F722f5866-9b28-496a-ae4c-b3b80e1234df.jpg</url>
      <title>DEV Community: Aditya Madhavi</title>
      <link>https://dev.to/aditya_madhavi_e99e7007da</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/aditya_madhavi_e99e7007da"/>
    <language>en</language>
    <item>
      <title>✍️ How Multiple Devices Edit One Google Doc</title>
      <dc:creator>Aditya Madhavi</dc:creator>
      <pubDate>Thu, 21 May 2026 17:31:40 +0000</pubDate>
      <link>https://dev.to/aditya_madhavi_e99e7007da/how-multiple-devices-edit-one-google-doc-4bmd</link>
      <guid>https://dev.to/aditya_madhavi_e99e7007da/how-multiple-devices-edit-one-google-doc-4bmd</guid>
      <description>&lt;p&gt;Ever wondered how multiple people can edit the same Google Doc at the same time without breaking the document? 🤔&lt;br&gt;
Behind the scenes, it’s powered by something called Operational Transformation (OT).&lt;/p&gt;

&lt;p&gt;🔍 What Happens in Real-Time?&lt;br&gt;
Every keystroke you make is converted into an operation (like “insert text” or “delete text”).&lt;br&gt;
When multiple users type at the same time:&lt;/p&gt;

&lt;p&gt;These operations reach the server&lt;br&gt;
The system orders them&lt;br&gt;
Then it transforms (adjusts) conflicting operations&lt;/p&gt;

&lt;p&gt;⚙️ How Conflicts Are Resolved&lt;br&gt;
If two users type at the same position, OT ensures:&lt;/p&gt;

&lt;p&gt;One operation is applied first&lt;br&gt;
The next operation is shifted or modified accordingly&lt;/p&gt;

&lt;p&gt;✅ No data is lost&lt;br&gt;
✅ Everyone sees the same final document&lt;/p&gt;

&lt;p&gt;🧠 Key Insight&lt;/p&gt;

&lt;p&gt;OT doesn’t block conflicts — it smartly adjusts them so all edits can coexist.&lt;/p&gt;

</description>
      <category>algorithms</category>
      <category>computerscience</category>
      <category>distributedsystems</category>
      <category>systemdesign</category>
    </item>
    <item>
      <title>🔒 How Incognito Mode Really Works</title>
      <dc:creator>Aditya Madhavi</dc:creator>
      <pubDate>Thu, 21 May 2026 17:21:07 +0000</pubDate>
      <link>https://dev.to/aditya_madhavi_e99e7007da/how-incognito-mode-really-works-247c</link>
      <guid>https://dev.to/aditya_madhavi_e99e7007da/how-incognito-mode-really-works-247c</guid>
      <description>&lt;p&gt;Most people think incognito mode makes them invisible on the internet.&lt;br&gt;
👉 But that’s only partially true.&lt;/p&gt;

&lt;p&gt;🔍 What Incognito Mode Actually Does&lt;br&gt;
When you browse in incognito/private mode:&lt;br&gt;
✅ Your browser does not save:&lt;/p&gt;

&lt;p&gt;Browsing history&lt;br&gt;
Cookies (after session ends)&lt;br&gt;
Form data or cache&lt;/p&gt;

&lt;p&gt;👉 This means no local trace is left on your device&lt;/p&gt;

&lt;p&gt;⚠️ What It Does NOT Hide&lt;br&gt;
Even in incognito mode:&lt;br&gt;
❌ Your activity is still visible to:&lt;/p&gt;

&lt;p&gt;Internet Service Providers (ISP)&lt;br&gt;
Websites you visit&lt;br&gt;
Organization networks (office/school)&lt;br&gt;
Servers maintaining access logs&lt;/p&gt;

&lt;p&gt;👉 Network-level logs remain intact.&lt;/p&gt;

&lt;p&gt;🧠 Key Insight&lt;/p&gt;

&lt;p&gt;Incognito protects you from local tracking, not from network or server-side visibility.&lt;/p&gt;

</description>
      <category>security</category>
      <category>networking</category>
    </item>
    <item>
      <title>✈️ How Airplanes Provide In-Flight Wi-Fi</title>
      <dc:creator>Aditya Madhavi</dc:creator>
      <pubDate>Thu, 21 May 2026 17:08:01 +0000</pubDate>
      <link>https://dev.to/aditya_madhavi_e99e7007da/how-airplanes-provide-in-flight-wi-fi-3bif</link>
      <guid>https://dev.to/aditya_madhavi_e99e7007da/how-airplanes-provide-in-flight-wi-fi-3bif</guid>
      <description>&lt;p&gt;Have you ever wondered how you’re able to use Wi-Fi while flying thousands of feet above the ground?&lt;br&gt;
Airplanes use two main technologies to stay connected to the internet:&lt;/p&gt;

&lt;p&gt;🔹 1. Air-to-Ground Communication&lt;br&gt;
When flying over land, airplanes connect to ground-based towers, similar to how mobile networks work.&lt;/p&gt;

&lt;p&gt;Antennas on the aircraft track and connect to nearby towers&lt;br&gt;
As the aircraft moves, the connection switches from one tower to another&lt;br&gt;
Data flows from the ground → airplane → your device&lt;/p&gt;

&lt;p&gt;🔹 2. Satellite Communication 🛰️&lt;br&gt;
When flying over oceans or remote areas, airplanes rely on satellites in space.&lt;/p&gt;

&lt;p&gt;Aircraft sends signals to a satellite&lt;br&gt;
Satellite relays the data to ground stations&lt;br&gt;
Data then travels back the same path to your device&lt;/p&gt;

&lt;p&gt;Flow:&lt;br&gt;
Device → Airplane → Satellite → Ground → Internet&lt;/p&gt;

&lt;p&gt;💡 Key Insight&lt;br&gt;
In-flight Wi-Fi is a great example of how multiple networking technologies work together to provide seamless connectivity—even at 35,000 feet!&lt;/p&gt;

</description>
      <category>networking</category>
      <category>techtalks</category>
      <category>devops</category>
      <category>aviation</category>
    </item>
    <item>
      <title>From Youtube.com to Your Screen: How Routers Route Web Traffic</title>
      <dc:creator>Aditya Madhavi</dc:creator>
      <pubDate>Mon, 18 May 2026 20:22:58 +0000</pubDate>
      <link>https://dev.to/aditya_madhavi_e99e7007da/from-youtubecom-to-your-screen-how-routers-route-web-traffic-23gh</link>
      <guid>https://dev.to/aditya_madhavi_e99e7007da/from-youtubecom-to-your-screen-how-routers-route-web-traffic-23gh</guid>
      <description>&lt;p&gt;Your router acts as a local network’s traffic manager. It is responsible for sending data coming from the internet to the correct device in your home. Let's break down exactly how that happens.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. The Request
&lt;/h2&gt;

&lt;p&gt;When you search for &lt;code&gt;youtube.com&lt;/code&gt;, your device sends a request out to the internet. &lt;/p&gt;

&lt;p&gt;Because the internet communicates via &lt;strong&gt;IP addresses&lt;/strong&gt; rather than domain names, this request is first resolved (via DNS) into an IP address. &lt;/p&gt;

&lt;h2&gt;
  
  
  2. NAT: Network Address Translation
&lt;/h2&gt;

&lt;p&gt;Your router is aware of every device's &lt;strong&gt;Local IP address&lt;/strong&gt;. However, the outside internet only sees one &lt;strong&gt;Public IP address&lt;/strong&gt; for your entire house. &lt;/p&gt;

&lt;p&gt;To manage this, the router uses &lt;strong&gt;NAT (Network Address Translation)&lt;/strong&gt;. It converts the local address of your device into its single public address before sending it out.&lt;/p&gt;

&lt;h3&gt;
  
  
  The NAT Table
&lt;/h3&gt;

&lt;p&gt;To keep track of everything, the router maintains a &lt;strong&gt;NAT table&lt;/strong&gt;. This table acts as a log containing:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The &lt;strong&gt;Requester Device&lt;/strong&gt; (e.g., your laptop)&lt;/li&gt;
&lt;li&gt;The &lt;strong&gt;Port&lt;/strong&gt; used&lt;/li&gt;
&lt;li&gt;The &lt;strong&gt;Response Destination&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  3. Receiving the Data
&lt;/h2&gt;

&lt;p&gt;When the server (like YouTube) sends information back, it arrives at the router’s public IP address. &lt;/p&gt;

&lt;p&gt;The router then:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Consults the &lt;strong&gt;NAT table&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Finds the original requester device by matching the IP and port.&lt;/li&gt;
&lt;li&gt;Forwards the data packets directly to your device.&lt;/li&gt;
&lt;/ol&gt;


&lt;div class="crayons-card c-embed"&gt;

  &lt;br&gt;
&lt;strong&gt;In short:&lt;/strong&gt; NAT keeps multiple devices reachable on the internet while presenting only a single public address to the outside world.&lt;br&gt;

&lt;/div&gt;





&lt;h2&gt;
  
  
  What do you think?
&lt;/h2&gt;

&lt;p&gt;I wrote this because I remember being fascinated by how my router knew exactly which phone was requesting which video! &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How do you explain networking basics to beginners? Do you have a favorite analogy for NAT? Let's discuss in the comments!&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>networking</category>
      <category>webdev</category>
      <category>internet</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Hello World: Embracing the Chaos of the Shifting Tech Landscape 👋</title>
      <dc:creator>Aditya Madhavi</dc:creator>
      <pubDate>Mon, 18 May 2026 08:24:47 +0000</pubDate>
      <link>https://dev.to/aditya_madhavi_e99e7007da/hello-world-embracing-the-chaos-of-the-shifting-tech-landscape-44hn</link>
      <guid>https://dev.to/aditya_madhavi_e99e7007da/hello-world-embracing-the-chaos-of-the-shifting-tech-landscape-44hn</guid>
      <description>&lt;p&gt;The tech landscape is shifting faster than ever, and adaptation is no longer optional—it’s the default. 🚀&lt;/p&gt;

&lt;p&gt;In a world driven by constant technological evolution, staying in one place means falling behind. That is why I am incredibly thrilled to officially join this platform today.&lt;/p&gt;

&lt;p&gt;Throughout my software development journey, I have realized that the best way to solidify your own understanding is by sharing it with others. Every bug fixed, every framework mastered, and every architecture designed comes with a story and a lesson.&lt;/p&gt;

&lt;p&gt;Moving forward, I will be using this space to share:&lt;br&gt;
• Real-world learnings from my day-to-day development journey.&lt;br&gt;
• Deep dives and viewpoints on emerging tech trends and tools.&lt;br&gt;
• Practical breakdowns of complex engineering challenges.&lt;/p&gt;

&lt;p&gt;I am excited to connect, learn from this brilliant community, and build in public. Let's connect and grow together! 📈&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>career</category>
      <category>linux</category>
    </item>
  </channel>
</rss>
