<?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: Raaga Priya Madhan</title>
    <description>The latest articles on DEV Community by Raaga Priya Madhan (@raagawrites).</description>
    <link>https://dev.to/raagawrites</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%2F3975172%2F06876502-9477-4db0-b5e5-493831cca945.jpg</url>
      <title>DEV Community: Raaga Priya Madhan</title>
      <link>https://dev.to/raagawrites</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/raagawrites"/>
    <language>en</language>
    <item>
      <title>What is an Algorithm? Explained with Everyday Examples</title>
      <dc:creator>Raaga Priya Madhan</dc:creator>
      <pubDate>Tue, 09 Jun 2026 04:58:22 +0000</pubDate>
      <link>https://dev.to/raagawrites/what-is-an-algorithm-explained-with-everyday-examples-1d20</link>
      <guid>https://dev.to/raagawrites/what-is-an-algorithm-explained-with-everyday-examples-1d20</guid>
      <description>&lt;p&gt;The word "algorithm" sounds intimidating. It's not. You follow algorithms every day without realizing it.&lt;/p&gt;

&lt;h2&gt;
  
  
  An algorithm is just a set of steps
&lt;/h2&gt;

&lt;p&gt;When you make tea, you follow an algorithm:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Boil water&lt;/li&gt;
&lt;li&gt;Add tea bag to cup&lt;/li&gt;
&lt;li&gt;Pour hot water into cup&lt;/li&gt;
&lt;li&gt;Wait 3 minutes&lt;/li&gt;
&lt;li&gt;Remove tea bag&lt;/li&gt;
&lt;li&gt;Add milk and sugar if needed&lt;/li&gt;
&lt;li&gt;Drink&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That's it. A fixed set of steps that produces a result. Algorithms in programming work exactly the same way.&lt;/p&gt;

&lt;h2&gt;
  
  
  A real programming example
&lt;/h2&gt;

&lt;p&gt;Say you want to find the largest number in a list. Here's the algorithm:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;numbers&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="mi"&gt;4&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;7&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;9&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;

&lt;span class="n"&gt;largest&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;numbers&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;

&lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="n"&gt;number&lt;/span&gt; &lt;span class="ow"&gt;in&lt;/span&gt; &lt;span class="n"&gt;numbers&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
    &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;number&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="n"&gt;largest&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
        &lt;span class="n"&gt;largest&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;number&lt;/span&gt;

&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;largest&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Step by step:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Assume the first number is the largest&lt;/li&gt;
&lt;li&gt;Go through every number in the list&lt;/li&gt;
&lt;li&gt;If a number is bigger than your current largest, update largest&lt;/li&gt;
&lt;li&gt;Print the result&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Output: 9&lt;/p&gt;

&lt;h2&gt;
  
  
  Why algorithms matter
&lt;/h2&gt;

&lt;p&gt;Every app you use runs on algorithms. Google's search results, Instagram's feed, Spotify's recommendations — all algorithms deciding what to show you.&lt;/p&gt;

&lt;h2&gt;
  
  
  The two things every algorithm needs
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Correctness&lt;/strong&gt; — it must produce the right answer&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Efficiency&lt;/strong&gt; — it must do it without wasting time or memory&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The one-line summary
&lt;/h2&gt;

&lt;p&gt;An algorithm is a step-by-step recipe for solving a problem. Every program you've ever used runs on them.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Written by Raaga Priya Madhan — CSE student, Bangalore. I write about CS concepts simply. Connect with me on &lt;a href="https://www.linkedin.com/in/raaga-priya-madhan-5bb688318" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>algorithms</category>
      <category>python</category>
      <category>beginners</category>
      <category>computerscience</category>
    </item>
    <item>
      <title>Python vs Java — Which Should Beginners Learn First?</title>
      <dc:creator>Raaga Priya Madhan</dc:creator>
      <pubDate>Tue, 09 Jun 2026 04:56:12 +0000</pubDate>
      <link>https://dev.to/raagawrites/python-vs-java-which-should-beginners-learn-first-3600</link>
      <guid>https://dev.to/raagawrites/python-vs-java-which-should-beginners-learn-first-3600</guid>
      <description>&lt;p&gt;This is one of the most common questions beginners ask. Here's an honest answer with no fluff.&lt;/p&gt;

&lt;h2&gt;
  
  
  Python — the case for starting here
&lt;/h2&gt;

&lt;p&gt;Python reads almost like English. Compare these two ways of printing "Hello World":&lt;/p&gt;

&lt;p&gt;Python:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Hello World&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Java:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight java"&gt;&lt;code&gt;&lt;span class="kd"&gt;public&lt;/span&gt; &lt;span class="kd"&gt;class&lt;/span&gt; &lt;span class="nc"&gt;Main&lt;/span&gt; &lt;span class="o"&gt;{&lt;/span&gt;
    &lt;span class="kd"&gt;public&lt;/span&gt; &lt;span class="kd"&gt;static&lt;/span&gt; &lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="nf"&gt;main&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nc"&gt;String&lt;/span&gt;&lt;span class="o"&gt;[]&lt;/span&gt; &lt;span class="n"&gt;args&lt;/span&gt;&lt;span class="o"&gt;)&lt;/span&gt; &lt;span class="o"&gt;{&lt;/span&gt;
        &lt;span class="nc"&gt;System&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;out&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;println&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"Hello World"&lt;/span&gt;&lt;span class="o"&gt;);&lt;/span&gt;
    &lt;span class="o"&gt;}&lt;/span&gt;
&lt;span class="o"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Same result. Python does it in 1 line. Java needs 5.&lt;/p&gt;

&lt;p&gt;When you're learning, that simplicity matters enormously. Python lets you focus on learning programming concepts instead of fighting with syntax.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Python is great for
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Data analysis and automation&lt;/li&gt;
&lt;li&gt;Web scraping&lt;/li&gt;
&lt;li&gt;Machine learning and AI&lt;/li&gt;
&lt;li&gt;Quick scripts that solve real problems&lt;/li&gt;
&lt;li&gt;Backend web development&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What Java is great for
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Android app development&lt;/li&gt;
&lt;li&gt;Large enterprise software&lt;/li&gt;
&lt;li&gt;Banking and financial systems&lt;/li&gt;
&lt;li&gt;Performance-critical applications&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The honest answer
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Start with Python if:&lt;/strong&gt; you want to get results quickly, you're interested in data/AI/automation, or you just want to learn programming as a skill.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Start with Java if:&lt;/strong&gt; you specifically want to build Android apps or you're going into a field that requires Java.&lt;/p&gt;

&lt;h2&gt;
  
  
  What most CSE students do
&lt;/h2&gt;

&lt;p&gt;Learn Python first for speed and simplicity. Add Java later when your university requires it or a job demands it. Knowing one well makes learning the other much faster.&lt;/p&gt;

&lt;h2&gt;
  
  
  The one-line summary
&lt;/h2&gt;

&lt;p&gt;Python for beginners. Java when you have a specific reason to use it.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Written by Raaga Priya Madhan — CSE student, Bangalore. I write about CS concepts simply. Connect with me on &lt;a href="https://www.linkedin.com/in/raaga-priya-madhan-5bb688318" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>java</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>How Does the Internet Actually Work? A Simple Explanation</title>
      <dc:creator>Raaga Priya Madhan</dc:creator>
      <pubDate>Tue, 09 Jun 2026 04:51:17 +0000</pubDate>
      <link>https://dev.to/raagawrites/how-does-the-internet-actually-work-a-simple-explanation-2h57</link>
      <guid>https://dev.to/raagawrites/how-does-the-internet-actually-work-a-simple-explanation-2h57</guid>
      <description>&lt;p&gt;You use the internet every second of your life. But what actually happens when you type google.com and hit Enter?&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 1 — Your browser asks for directions
&lt;/h2&gt;

&lt;p&gt;Your computer doesn't know where google.com lives. So it asks a DNS server — think of it as the internet's phone book — "where is google.com?"&lt;/p&gt;

&lt;p&gt;The DNS server replies with an IP address like 142.250.194.46. That's Google's actual address on the internet.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 2 — Your browser knocks on Google's door
&lt;/h2&gt;

&lt;p&gt;Your browser sends an HTTP request to that IP address. It's basically saying: "Hello Google, please send me your homepage."&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 3 — Google's server responds
&lt;/h2&gt;

&lt;p&gt;Google's server receives your request and sends back the HTML, CSS, and JavaScript files that make up the page.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 4 — Your browser builds the page
&lt;/h2&gt;

&lt;p&gt;Your browser reads those files and renders them into the visual page you see — with colors, images, buttons, and text.&lt;/p&gt;

&lt;h2&gt;
  
  
  The whole thing happens in under 1 second
&lt;/h2&gt;

&lt;p&gt;DNS lookup → HTTP request → Server response → Browser renders. Every time you visit a website.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key terms to know
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;IP Address&lt;/strong&gt; — A unique number identifying every device on the internet&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DNS&lt;/strong&gt; — The phone book that converts website names to IP addresses&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;HTTP/HTTPS&lt;/strong&gt; — The language browsers and servers use to talk to each other&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Server&lt;/strong&gt; — A computer that stores website files and sends them on request&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The one-line summary
&lt;/h2&gt;

&lt;p&gt;You type a URL → DNS finds its address → your browser requests the page → the server sends it back → your browser shows it to you.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Written by Raaga Priya Madhan — CSE student, Bangalore. I write about CS concepts simply. Connect with me on &lt;a href="https://www.linkedin.com/in/raaga-priya-madhan-5bb688318" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>computerscience</category>
      <category>programming</category>
    </item>
    <item>
      <title>What is Git? A Beginner's Guide with Real Examples</title>
      <dc:creator>Raaga Priya Madhan</dc:creator>
      <pubDate>Tue, 09 Jun 2026 04:44:02 +0000</pubDate>
      <link>https://dev.to/raagawrites/what-is-git-a-beginners-guide-with-real-examples-3pj6</link>
      <guid>https://dev.to/raagawrites/what-is-git-a-beginners-guide-with-real-examples-3pj6</guid>
      <description>&lt;p&gt;Every developer talks about Git. But if you're just starting out, it can feel overwhelming. Let me break it down simply.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Git?
&lt;/h2&gt;

&lt;p&gt;Git is a tool that tracks changes to your code over time.&lt;/p&gt;

&lt;p&gt;Think of it like a save system in a video game. Every time you hit save, Git remembers exactly what your code looked like at that moment. If you break something later, you can go back to any previous save.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why do developers use it?
&lt;/h2&gt;

&lt;p&gt;Without Git, if you accidentally delete important code — it's gone forever. With Git, you just roll back to the last working version.&lt;/p&gt;

&lt;p&gt;It also lets multiple developers work on the same project without overwriting each other's work.&lt;/p&gt;

&lt;h2&gt;
  
  
  The 5 commands you actually need
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. git init
&lt;/h3&gt;

&lt;p&gt;Starts tracking a folder with Git.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git init
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. git add
&lt;/h3&gt;

&lt;p&gt;Tells Git which files to save.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git add filename.py
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3. git commit
&lt;/h3&gt;

&lt;p&gt;Actually saves the snapshot with a message.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git commit &lt;span class="nt"&gt;-m&lt;/span&gt; &lt;span class="s2"&gt;"Added data cleaning function"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  4. git push
&lt;/h3&gt;

&lt;p&gt;Uploads your code to GitHub so others can see it.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git push
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  5. git clone
&lt;/h3&gt;

&lt;p&gt;Downloads someone else's project to your computer.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/username/repo
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  GitHub vs Git
&lt;/h2&gt;

&lt;p&gt;Git is the tool. GitHub is the website where you store your Git projects online — like Google Drive but for code.&lt;/p&gt;

&lt;h2&gt;
  
  
  The one-line summary
&lt;/h2&gt;

&lt;p&gt;Git saves snapshots of your code so you never lose work and can always go back in time.&lt;/p&gt;

&lt;p&gt;Start using it on your next project and it'll become second nature within a week.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Written by Raaga Priya Madhan — CSE student, Bangalore. I write about CS concepts simply. Connect with me on &lt;a href="https://www.linkedin.com/in/raaga-priya-madhan-5bb688318" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>github</category>
      <category>git</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>What is an API? A Simple Explanation with Real Examples</title>
      <dc:creator>Raaga Priya Madhan</dc:creator>
      <pubDate>Tue, 09 Jun 2026 04:42:01 +0000</pubDate>
      <link>https://dev.to/raagawrites/what-is-an-api-a-simple-explanation-with-real-examples-1850</link>
      <guid>https://dev.to/raagawrites/what-is-an-api-a-simple-explanation-with-real-examples-1850</guid>
      <description>&lt;p&gt;You've heard the word API everywhere. In job descriptions, in tutorials, in tech Twitter. But what actually is it?&lt;/p&gt;

&lt;h2&gt;
  
  
  The waiter analogy
&lt;/h2&gt;

&lt;p&gt;Think of an API like a waiter at a restaurant.&lt;/p&gt;

&lt;p&gt;You (the app) don't walk into the kitchen (the server) yourself. You tell the waiter what you want. The waiter goes to the kitchen, gets your food, and brings it back.&lt;/p&gt;

&lt;p&gt;That waiter is the API.&lt;/p&gt;

&lt;h2&gt;
  
  
  A real example you use every day
&lt;/h2&gt;

&lt;p&gt;When you open Zomato and it shows a map of nearby restaurants — that map comes from Google Maps. Zomato didn't build its own maps. It asked Google's Maps API: "Give me a map for this location." Google sent it back. Zomato displayed it.&lt;/p&gt;

&lt;p&gt;You use APIs dozens of times a day without knowing it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Another example — weather apps
&lt;/h2&gt;

&lt;p&gt;Your phone's weather app doesn't have its own satellites. It calls a weather API, asks "what's the weather in Bangalore right now?", and displays whatever comes back.&lt;/p&gt;

&lt;h2&gt;
  
  
  What does an API actually look like?
&lt;/h2&gt;

&lt;p&gt;Here's a real API call in Python — just 3 lines:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;requests&lt;/span&gt;
&lt;span class="n"&gt;response&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;requests&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;https://api.open-meteo.com/v1/forecast?latitude=12.97&amp;amp;longitude=77.59&amp;amp;current_weather=true&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;json&lt;/span&gt;&lt;span class="p"&gt;())&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Run this and you get live weather data for Bangalore returned as text your program can read. That's an API call.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why developers love APIs
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;You don't rebuild what already exists&lt;/li&gt;
&lt;li&gt;Google Maps, payments, weather, SMS — all available as APIs&lt;/li&gt;
&lt;li&gt;You focus on your app, APIs handle the hard parts&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The one-line summary
&lt;/h2&gt;

&lt;p&gt;An API is a messenger that lets two apps talk to each other — you send a request, it sends back data.&lt;/p&gt;

&lt;p&gt;That's it. Next time someone says "we integrated an API" — you know exactly what happened.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Written by Raaga Priya Madhan — CSE student, Bangalore. I write about CS concepts simply. Connect with me on &lt;a href="https://www.linkedin.com/in/raaga-priya-madhan-5bb688318" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

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