<?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: Sanskruti Sugandhi</title>
    <description>The latest articles on DEV Community by Sanskruti Sugandhi (@sanskruti_sugandhi).</description>
    <link>https://dev.to/sanskruti_sugandhi</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%2F2918236%2Fd5189757-abae-43e1-a61f-5117d42363e4.png</url>
      <title>DEV Community: Sanskruti Sugandhi</title>
      <link>https://dev.to/sanskruti_sugandhi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sanskruti_sugandhi"/>
    <language>en</language>
    <item>
      <title>🔐The Secret World of APIs: How Apps Communicate Behind the Scenes</title>
      <dc:creator>Sanskruti Sugandhi</dc:creator>
      <pubDate>Mon, 01 Dec 2025 20:00:34 +0000</pubDate>
      <link>https://dev.to/sanskruti_sugandhi/the-secret-world-of-apis-how-apps-communicate-behind-the-scenes-3dpa</link>
      <guid>https://dev.to/sanskruti_sugandhi/the-secret-world-of-apis-how-apps-communicate-behind-the-scenes-3dpa</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;Ever wondered how your food delivery app magically knows where the delivery guy is? Or how you can log in everywhere using “Login with Google”? &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;em&gt;Spoiler alert:&lt;/em&gt; there’s no tiny Wi-Fi elf inside your phone doing all the heavy lifting. The real hero behind the scenes — the one nobody talks about at parties — is the &lt;strong&gt;API&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Yes, APIs are basically the introverts of the tech world: quiet, efficient, and doing all the work while websites and apps take the credit.&lt;/p&gt;




&lt;h2&gt;
  
  
  🤝 So… What Exactly Is an API?
&lt;/h2&gt;

&lt;p&gt;API stands for &lt;strong&gt;Application Programming Interface&lt;/strong&gt;, but that acronym explains nothing.&lt;br&gt;&lt;br&gt;
Think of an API like a &lt;strong&gt;waiter in a restaurant&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;🍽️ You → the hungry customer&lt;br&gt;&lt;br&gt;
📋 Kitchen → the system holding the data&lt;br&gt;&lt;br&gt;
🧾 Order → your request&lt;br&gt;&lt;br&gt;
🧑‍🍳 API → the waiter that takes the order and fetches the exact thing you asked for&lt;/p&gt;

&lt;p&gt;You never barge into the kitchen or talk to the chef directly — and apps never poke around databases directly.&lt;br&gt;&lt;br&gt;
&lt;em&gt;The API handles the communication politely and efficiently.&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🚦 How the Internet Talks Without Us Noticing
&lt;/h2&gt;

&lt;p&gt;Every time two apps exchange information, an API call sparks into action.&lt;/p&gt;

&lt;p&gt;Examples you use daily without realizing:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Using Google Maps inside a food delivery app&lt;/li&gt;
&lt;li&gt;Viewing live stock prices inside a banking app&lt;/li&gt;
&lt;li&gt;Chatting with websites using WhatsApp Business accounts&lt;/li&gt;
&lt;li&gt;Getting AI predictions from cloud ML models&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The apps are &lt;em&gt;not&lt;/em&gt; doing the work themselves.&lt;br&gt;&lt;br&gt;
They’re calling someone else who already knows how to do it — &lt;strong&gt;APIs are the hotline&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧩 Anatomy of an API Call (Super Simple)
&lt;/h2&gt;

&lt;p&gt;Behind the scenes, it looks like this:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;You click a button
&lt;/li&gt;
&lt;li&gt;App sends a request → &lt;code&gt;GET /weather?city=Mumbai&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;API receives it and checks if you’re allowed to ask
&lt;/li&gt;
&lt;li&gt;Fetches data from the server
&lt;/li&gt;
&lt;li&gt;Sends back a clean package → &lt;code&gt;{"temp": 31, "humidity": 72}&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;App shows it beautifully on screen&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Just like texting someone, but instead of &lt;em&gt;“wyd?”&lt;/em&gt; it’s more like &lt;em&gt;“return current_temperature in JSON format.”&lt;/em&gt; 🤓&lt;/p&gt;




&lt;h2&gt;
  
  
  🧠 Why Data Scientists &amp;amp; AI Folks Should Care
&lt;/h2&gt;

&lt;p&gt;APIs aren’t just for developers. If you're in &lt;strong&gt;AI / ML / Data Science&lt;/strong&gt;, APIs are your &lt;strong&gt;power tools&lt;/strong&gt; because:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You can deploy ML models and let the world use them via APIs
&lt;/li&gt;
&lt;li&gt;Real-time data pipelines often depend on API feeds
&lt;/li&gt;
&lt;li&gt;LLMs and GenAI applications &lt;em&gt;run because of APIs&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;MLOps workflows use APIs to automate predictions at scale&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Today, success isn’t just training a fancy model — it’s &lt;strong&gt;putting the model into the real world&lt;/strong&gt;, and &lt;em&gt;APIs are the doorway.&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🔮 The Future: APIs Are Evolving Fast
&lt;/h2&gt;

&lt;p&gt;We’re entering &lt;strong&gt;API 2.0 era&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;AI-generated APIs&lt;/li&gt;
&lt;li&gt;API-based microservices replacing monolithic apps&lt;/li&gt;
&lt;li&gt;Serverless functions triggered via APIs&lt;/li&gt;
&lt;li&gt;LLM tools &amp;amp; agents interacting through API calls&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The internet isn’t becoming bigger — it’s becoming &lt;strong&gt;more connected&lt;/strong&gt;.&lt;br&gt;&lt;br&gt;
APIs are the glue.&lt;/p&gt;




&lt;h2&gt;
  
  
  🏁 Wrapping Up
&lt;/h2&gt;

&lt;p&gt;The next time you click a button and something happens instantly, take a moment…&lt;br&gt;&lt;br&gt;
A silent digital waiter just sprinted across the internet and came back with exactly what you needed.&lt;/p&gt;

&lt;p&gt;APIs are invisible, underrated, and absolutely running the world.&lt;/p&gt;




&lt;h3&gt;
  
  
  🔥 Quick Takeaway Summary
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;APIs are how apps and platforms communicate&lt;/li&gt;
&lt;li&gt;They act like waiters passing requests between users and servers&lt;/li&gt;
&lt;li&gt;Every modern digital product depends heavily on APIs&lt;/li&gt;
&lt;li&gt;For AI/ML pros, APIs turn models into real products&lt;/li&gt;
&lt;li&gt;The future of software = microservices + GenAI + API-driven automation&lt;/li&gt;
&lt;li&gt;APIs enable scalability, reliability &amp;amp; faster development&lt;/li&gt;
&lt;li&gt;Mastering APIs = mastering modern tech delivery&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;💬 I write about AI, Data Science, and the brains — both human and digital — behind them. &lt;br&gt;
&lt;a href="https://dev.to/sanskruti_sugandhi"&gt;Sanskruti Sugandhi&lt;/a&gt; - Follow me if you love tech that actually makes sense!&lt;/em&gt;&lt;/p&gt;

</description>
      <category>api</category>
      <category>webdev</category>
      <category>microservices</category>
    </item>
    <item>
      <title>🧠 Inside an AI’s Brain: What Data Scientists Can Learn from Neuroscience</title>
      <dc:creator>Sanskruti Sugandhi</dc:creator>
      <pubDate>Sat, 01 Nov 2025 12:17:12 +0000</pubDate>
      <link>https://dev.to/sanskruti_sugandhi/inside-an-ais-brain-what-data-scientists-can-learn-from-neuroscience-2467</link>
      <guid>https://dev.to/sanskruti_sugandhi/inside-an-ais-brain-what-data-scientists-can-learn-from-neuroscience-2467</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Ever notice how neural networks look suspiciously like brains? That’s no coincidence.&lt;br&gt;
AI didn’t just invent intelligence — it borrowed it from biology.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Let’s pop the hood on both brains — the human one and the artificial one — and see what data scientists can actually learn from the OG neural network: the human mind.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧩 The Brain — Nature’s Original Neural Net
&lt;/h2&gt;

&lt;p&gt;The human brain is basically the world’s most advanced &lt;strong&gt;pattern recognition engine&lt;/strong&gt;.&lt;br&gt;
Every thought, decision, and memory is just electrical signals bouncing between billions of neurons.&lt;/p&gt;

&lt;p&gt;Spot a familiar face in a crowd? That’s your &lt;strong&gt;biological CNN&lt;/strong&gt; at work.&lt;br&gt;
Neurons act like microprocessors, synapses like data highways, and dopamine? That’s your &lt;strong&gt;reinforcement signal&lt;/strong&gt; — your personal “reward function.”&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;🧠 &lt;strong&gt;Smart takeaway:&lt;/strong&gt; The brain doesn’t process all data equally — it filters, prioritizes, and adapts.&lt;br&gt;
That’s the &lt;em&gt;same principle&lt;/em&gt; behind attention mechanisms and data preprocessing in machine learning.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  ⚙️ When Machines Started Thinking
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;AI’s roots are pure neuroscience.&lt;/em&gt;&lt;br&gt;
The &lt;strong&gt;Perceptron (1958)&lt;/strong&gt; copied how neurons fire.&lt;br&gt;
Modern deep learning? It’s just multiple layers of “neurons” processing features — from edges to emotions.&lt;/p&gt;

&lt;p&gt;And &lt;strong&gt;backpropagation&lt;/strong&gt;? It’s basically the machine’s way of saying,&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Oops. That didn’t work. Let’s adjust and try again.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The brain’s been doing that for millennia — except it uses feelings instead of gradients.&lt;/p&gt;

&lt;p&gt;💡 &lt;em&gt;Fun fact:&lt;/em&gt; Humans invented “learning from mistakes” long before we called it &lt;strong&gt;optimization&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  ⚖️ Cognitive Bias vs. Data Bias
&lt;/h2&gt;

&lt;p&gt;Humans have &lt;strong&gt;cognitive bias&lt;/strong&gt; — shortcuts that sometimes mess up our judgment.&lt;br&gt;
AI has &lt;strong&gt;data bias&lt;/strong&gt; — same problem, different platform.&lt;/p&gt;

&lt;p&gt;Train a model on flawed or incomplete data, and it’ll confidently repeat those mistakes.&lt;br&gt;
Just like a human who forms opinions based on bad experiences.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;🐱 Example: Feed your model only Instagram cats, and it’ll assume every cat wears a bowtie.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The cure? Awareness + retraining.&lt;br&gt;
&lt;em&gt;Both humans and models need periodic “data audits.”&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🧠 Memory, Attention &amp;amp; Forgetting — The Hidden Superpowers
&lt;/h2&gt;

&lt;p&gt;You forget your 8th-grade locker combo for a reason — your brain is optimizing.&lt;br&gt;
It &lt;em&gt;forgets on purpose&lt;/em&gt; to make room for what matters.&lt;/p&gt;

&lt;p&gt;AI models do this too — pruning parameters, reducing noise, improving performance.&lt;/p&gt;

&lt;p&gt;And attention? Both humans and machines rely on it.&lt;br&gt;
That’s why &lt;strong&gt;Transformers&lt;/strong&gt; changed the game — by teaching models &lt;em&gt;where to look&lt;/em&gt; instead of processing everything blindly.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;🧩 &lt;strong&gt;Smarter learning&lt;/strong&gt; = selective memory + focused attention + strategic forgetting.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  🚀 The Rise of NeuroAI
&lt;/h2&gt;

&lt;p&gt;We’re now fusing brain science back into AI.&lt;br&gt;
&lt;em&gt;Welcome to &lt;strong&gt;NeuroAI&lt;/strong&gt;, where neurons meet neural nets:&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;🧬 Chips that mimic neuron firing patterns&lt;br&gt;
🧠 Brain–computer interfaces blending biology with code&lt;br&gt;
🔍 AI tools decoding how we actually think&lt;/p&gt;

&lt;p&gt;The line between &lt;em&gt;synthetic&lt;/em&gt; and &lt;em&gt;biological&lt;/em&gt; intelligence is starting to blur — and it’s fascinating.&lt;/p&gt;




&lt;h2&gt;
  
  
  🏁 The Real Lesson: Think Like a Brain
&lt;/h2&gt;

&lt;p&gt;Neuroscience isn’t just theory — it’s a &lt;strong&gt;cheat sheet for designing smarter AI&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The brain runs on efficiency, adaptability, and creativity — the same goals we chase with every ML model.&lt;/p&gt;

&lt;p&gt;So next time you train one, ask yourself:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“What would the brain do?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;em&gt;Because every neural net we build isn’t just a tool — it’s a reflection of us.&lt;/em&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  🧩 Quick Takeaways
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Neural networks are inspired by real neurons.&lt;/li&gt;
&lt;li&gt;Both humans and AIs learn through feedback and correction.&lt;/li&gt;
&lt;li&gt;Bias exists in both — awareness fixes it.&lt;/li&gt;
&lt;li&gt;Forgetting and focusing improve learning efficiency.&lt;/li&gt;
&lt;li&gt;NeuroAI is the next frontier.&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;💬 I write about AI, Data Science, and the brains — both human and digital — behind them. &lt;br&gt;
&lt;a href="https://dev.to/sanskruti_sugandhi"&gt;Sanskruti Sugandhi&lt;/a&gt; - Follow me if you love tech that actually makes sense!&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>datascience</category>
      <category>neuroscience</category>
      <category>techexplained</category>
    </item>
  </channel>
</rss>
