<?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: Parth Maniar</title>
    <description>The latest articles on DEV Community by Parth Maniar (@parth_maniar_3012).</description>
    <link>https://dev.to/parth_maniar_3012</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%2F3451577%2F94d7fb14-4034-451d-9846-4093f93161cf.jpg</url>
      <title>DEV Community: Parth Maniar</title>
      <link>https://dev.to/parth_maniar_3012</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/parth_maniar_3012"/>
    <language>en</language>
    <item>
      <title>⚡ Batch vs Streaming: The Future of Data Pipelines</title>
      <dc:creator>Parth Maniar</dc:creator>
      <pubDate>Tue, 09 Sep 2025 15:00:08 +0000</pubDate>
      <link>https://dev.to/parth_maniar_3012/batch-vs-streaming-the-future-of-data-pipelines-2fdn</link>
      <guid>https://dev.to/parth_maniar_3012/batch-vs-streaming-the-future-of-data-pipelines-2fdn</guid>
      <description>&lt;p&gt;The new oil is data, but processing that data is just as important as gathering it.  Batch processing and streaming processing are two of the most popular methods in data engineering.  Although each has a role, the decision between them is influencing how data pipelines will develop in the future.&lt;/p&gt;

&lt;h2&gt;
  
  
  🔹&lt;strong&gt;Batch processing: what is it?&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Batch processing is the process of gathering data over time and processing it all at once.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;How it operates:&lt;/strong&gt; "Batches" are used to group and process data.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Commonly utilized&lt;/strong&gt; tools include Spark (batch mode), AWS Glue, and Apache Hadoop.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ideal for:&lt;/strong&gt; Monthly financial summary, daily dashboards, and extensive reporting.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;✅ &lt;strong&gt;For instance,&lt;/strong&gt; creating a daily sales report at midnight that compiles all of the day's transactions.&lt;/p&gt;

&lt;h2&gt;
  
  
  🔹&lt;strong&gt;What is Processing Streaming?&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Data is processed in real-time (or almost real-time) as soon as it is generated, thanks to streaming processing.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;How it operates:&lt;/strong&gt; Data moves through the pipeline continually.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Commonly used&lt;/strong&gt; tools include Spark Streaming, Apache Flink, and Apache Kafka.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ideal for:&lt;/strong&gt; IoT device monitoring, fraud detection, and real-time suggestions.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;✅ &lt;strong&gt;As an example,&lt;/strong&gt; Netflix will suggest a movie as soon as you're done watching it.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Feature&lt;/th&gt;
&lt;th&gt;Batch Processing 🗂️&lt;/th&gt;
&lt;th&gt;Streaming Processing ⚡&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Speed&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Hours → Days&lt;/td&gt;
&lt;td&gt;Milliseconds → Seconds&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Use Cases&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Reports, analytics&lt;/td&gt;
&lt;td&gt;Real-time decisions, alerts&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Complexity&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Easier to implement&lt;/td&gt;
&lt;td&gt;Harder (needs infra + scaling)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Cost&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Often cheaper&lt;/td&gt;
&lt;td&gt;Can be expensive for large scale&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;🔹 Which One is the Future?&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;The reality is: both batch and streaming will continue to coexist.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Companies will rely on batch for regular analytics and reports.&lt;/li&gt;
&lt;li&gt;They’ll use streaming for time-sensitive insights (like fraud prevention or live dashboards).&lt;/li&gt;
&lt;li&gt;Increasingly, modern data pipelines are becoming hybrid, using both approaches together.&lt;/li&gt;
&lt;/ul&gt;

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

&lt;p&gt;The future of data pipelines isn’t about choosing batch or streaming — it’s about knowing when to use each.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Use batch for efficiency and scale.&lt;/li&gt;
&lt;li&gt;Use streaming when time is critical.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As data grows faster than ever, engineers who master both approaches will shape the future of how businesses make decisions.&lt;/p&gt;

</description>
      <category>dataengineering</category>
      <category>bigdata</category>
      <category>cloud</category>
      <category>datascience</category>
    </item>
    <item>
      <title>🔄 ETL vs ELT: The Backbone of Data Engineering</title>
      <dc:creator>Parth Maniar</dc:creator>
      <pubDate>Fri, 29 Aug 2025 19:01:34 +0000</pubDate>
      <link>https://dev.to/parth_maniar_3012/etl-vs-elt-the-backbone-of-data-engineering-58il</link>
      <guid>https://dev.to/parth_maniar_3012/etl-vs-elt-the-backbone-of-data-engineering-58il</guid>
      <description>&lt;p&gt;In the world of Data Engineering, two terms come up all the time: ETL and ELT. While they sound similar, they represent two different approaches to moving and transforming data. Understanding them is essential for anyone stepping into data engineering.&lt;/p&gt;

&lt;h2&gt;
  
  
  📌 What is ETL?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;ETL = Extract → Transform → Load&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Extract data&lt;/strong&gt; from source systems (databases, APIs, logs).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Transform it&lt;/strong&gt; (clean, filter, aggregate) into a usable format.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Load it&lt;/strong&gt; into a data warehouse for analysis.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🛠️ Example: Traditional systems like &lt;strong&gt;Informatica, Talend, and SSIS&lt;/strong&gt; rely heavily on ETL.&lt;br&gt;
✅ &lt;strong&gt;Best for:&lt;/strong&gt; When transformations are complex and need to be done before storage.&lt;/p&gt;

&lt;h2&gt;
  
  
  📌 What is ELT?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;ELT = Extract → Load → Transform&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Extract data&lt;/strong&gt; from source systems.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Load it&lt;/strong&gt; directly into the data warehouse or lake.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Transform it&lt;/strong&gt; there, using the power of the warehouse itself.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;🛠️ Example: Modern cloud warehouses like &lt;strong&gt;Snowflake, BigQuery, and Redshift&lt;/strong&gt; support ELT.&lt;br&gt;
✅ &lt;strong&gt;Best for:&lt;/strong&gt; When storage is cheap and scalable, and transformations can be pushed downstream.&lt;/p&gt;

&lt;h2&gt;
  
  
  ⚖️ ETL vs ELT: Key Differences
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Aspect&lt;/th&gt;
&lt;th&gt;ETL 🛠️&lt;/th&gt;
&lt;th&gt;ELT ☁️&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Process Order&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Transform before storage&lt;/td&gt;
&lt;td&gt;Transform after storage&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Best For&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;On-premise systems&lt;/td&gt;
&lt;td&gt;Cloud-based warehouses&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Speed&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Slower for big data&lt;/td&gt;
&lt;td&gt;Faster, uses warehouse compute&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Flexibility&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Limited scaling&lt;/td&gt;
&lt;td&gt;Highly scalable &amp;amp; flexible&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  🚀 Why Does This Matter?
&lt;/h2&gt;

&lt;p&gt;Choosing between ETL and ELT depends on your infrastructure and use case.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Legacy systems still depend on ETL.&lt;/li&gt;
&lt;li&gt;Modern cloud-first companies lean toward ELT for flexibility and scalability.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;👉 The key takeaway: &lt;strong&gt;Data Engineers must understand both approaches&lt;/strong&gt; — and know when to apply each.&lt;/p&gt;

&lt;h2&gt;
  
  
  ✨ Closing Thought
&lt;/h2&gt;

&lt;p&gt;Whether it’s ETL or ELT, the goal remains the same: &lt;strong&gt;make data clean, reliable, and analytics-ready&lt;/strong&gt;. The real power lies in using the right approach at the right time.&lt;/p&gt;

</description>
      <category>dataengineering</category>
      <category>datascience</category>
      <category>etl</category>
      <category>elt</category>
    </item>
    <item>
      <title>[Boost]</title>
      <dc:creator>Parth Maniar</dc:creator>
      <pubDate>Fri, 29 Aug 2025 15:49:42 +0000</pubDate>
      <link>https://dev.to/parth_maniar_3012/-3odc</link>
      <guid>https://dev.to/parth_maniar_3012/-3odc</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/parth_maniar_3012" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3451577%2F94d7fb14-4034-451d-9846-4093f93161cf.jpg" alt="parth_maniar_3012"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/parth_maniar_3012/the-role-of-a-data-engineer-beyond-pipelines-hga" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;🏗️ The Role of a Data Engineer: Beyond Pipelines&lt;/h2&gt;
      &lt;h3&gt;Parth Maniar ・ Aug 29&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#datascience&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#dataengineering&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#bigdata&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#career&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>datascience</category>
      <category>dataengineering</category>
      <category>bigdata</category>
      <category>career</category>
    </item>
    <item>
      <title>🏗️ The Role of a Data Engineer: Beyond Pipelines</title>
      <dc:creator>Parth Maniar</dc:creator>
      <pubDate>Fri, 29 Aug 2025 15:38:38 +0000</pubDate>
      <link>https://dev.to/parth_maniar_3012/the-role-of-a-data-engineer-beyond-pipelines-hga</link>
      <guid>https://dev.to/parth_maniar_3012/the-role-of-a-data-engineer-beyond-pipelines-hga</guid>
      <description>&lt;p&gt;When most people think of Data Engineers, they picture someone building pipelines to move data from one place to another. While that’s part of the job, the role of a Data Engineer is far more critical — and evolving rapidly in today’s data-driven world.&lt;/p&gt;

&lt;h2&gt;
  
  
  🔹 What Does a Data Engineer Do?
&lt;/h2&gt;

&lt;p&gt;At the core, a Data Engineer is responsible for making data reliable, accessible, and usable for analysts, data scientists, and business teams. Their work often includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Designing and maintaining data pipelines&lt;/li&gt;
&lt;li&gt;Building and optimizing data warehouses and data lakes&lt;/li&gt;
&lt;li&gt;Ensuring data quality and governance&lt;/li&gt;
&lt;li&gt;Supporting real-time and batch data processing&lt;/li&gt;
&lt;li&gt;Collaborating with stakeholders to make data-driven decisions possible&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🔹 Data Engineer vs Data Scientist
&lt;/h2&gt;

&lt;p&gt;It’s easy to confuse these two roles, but they focus on different parts of the data ecosystem:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Data Engineer:&lt;/strong&gt; Builds the infrastructure, pipelines, and tools to make data available.&lt;br&gt;
&lt;strong&gt;Data Scientist:&lt;/strong&gt; Uses that data to build models, run analysis, and generate insights.&lt;/p&gt;

&lt;p&gt;👉 Simply put: &lt;strong&gt;Data Scientists are only as good as the data pipelines provided by Data Engineers.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  🔹 Why Are Data Engineers So Important?
&lt;/h2&gt;

&lt;p&gt;In today’s digital landscape, companies generate massive amounts of data from various sources, including apps, websites, IoT devices, and more. Without a solid data infrastructure:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Data becomes inconsistent and unreliable&lt;/li&gt;
&lt;li&gt;Analysis takes too long&lt;/li&gt;
&lt;li&gt;Business decisions are delayed or based on incomplete insights&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Data Engineers ensure that data is trustworthy and ready at the right time — enabling everyone else to work more efficiently.&lt;/p&gt;

&lt;h2&gt;
  
  
  🔹 The Expanding Role
&lt;/h2&gt;

&lt;p&gt;The modern Data Engineer’s role goes beyond traditional ETL. They now work with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Streaming platforms like Apache Kafka&lt;/li&gt;
&lt;li&gt;Workflow orchestration tools like Apache Airflow&lt;/li&gt;
&lt;li&gt;Cloud data warehouses like Snowflake, Redshift, and BigQuery&lt;/li&gt;
&lt;li&gt;Automation &amp;amp; DataOps practices&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This shift shows how Data Engineering is no longer just “moving data” but about shaping the foundation for AI, analytics, and innovation.&lt;/p&gt;

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

&lt;p&gt;The role of a Data Engineer is evolving — from pipeline builders to strategic enablers of data-driven organizations. They’re the unsung heroes behind every data science project, machine learning model, or dashboard you see.&lt;/p&gt;

&lt;p&gt;Next time you read about an exciting AI breakthrough, remember: &lt;strong&gt;somewhere behind the scenes, a Data Engineer made it possible.&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>datascience</category>
      <category>dataengineering</category>
      <category>bigdata</category>
      <category>career</category>
    </item>
    <item>
      <title>🏗️ A Brief History of Data Engineering: From ETL to the Modern Data Stack</title>
      <dc:creator>Parth Maniar</dc:creator>
      <pubDate>Sat, 23 Aug 2025 17:03:04 +0000</pubDate>
      <link>https://dev.to/parth_maniar_3012/a-brief-history-of-data-engineering-from-etl-to-the-modern-data-stack-1kij</link>
      <guid>https://dev.to/parth_maniar_3012/a-brief-history-of-data-engineering-from-etl-to-the-modern-data-stack-1kij</guid>
      <description>&lt;h2&gt;
  
  
  &lt;strong&gt;📀 The Early Days: Data Warehousing (1980s–1990s)&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;In the 1980s, businesses realized that operational databases weren’t enough for decision-making. The idea of a data warehouse emerged — a central place to store structured data for reporting and analytics.&lt;/p&gt;

&lt;p&gt;Tools like ETL (Extract, Transform, Load) pipelines became essential. Engineers developed batch processes to transfer data from transactional systems into warehouses, such as Oracle, Teradata, and SQL Server.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;💻 The Big Data Era (2000s–2010s)&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;The explosion of the internet created a flood of data — too big for traditional warehouses. Enter Big Data.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Technologies like:&lt;/em&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Hadoop (distributed storage &amp;amp; processing)&lt;/li&gt;
&lt;li&gt;MapReduce (parallel computation)&lt;/li&gt;
&lt;li&gt;NoSQL databases (MongoDB, Cassandra)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;allowed companies to handle massive amounts of unstructured data at scale. This was when Data Engineering became a distinct discipline, separate from software engineering.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;☁️ The Cloud &amp;amp; Modern Data Stack (2015–Present)&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;With the rise of cloud computing, the data landscape changed again. &lt;/p&gt;

&lt;p&gt;&lt;em&gt;Tools like:&lt;/em&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Apache Spark for fast processing&lt;/li&gt;
&lt;li&gt;Cloud warehouses (Snowflake, BigQuery, Redshift)&lt;/li&gt;
&lt;li&gt;Data pipelines &amp;amp; orchestration (Airflow, dbt, Kafka)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;made it easier to scale, automate, and democratize data.&lt;/p&gt;

&lt;p&gt;Today, Data Engineers don’t just move data — they design systems that make data reliable, accessible, and analytics-ready for Data Scientists and business teams.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;🚀 The Future&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;Data Engineering continues to evolve with:&lt;/em&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Real-time streaming (Kafka, Flink)&lt;/li&gt;
&lt;li&gt;AI-powered pipelines&lt;/li&gt;
&lt;li&gt;DataOps &amp;amp; Automation&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The role of Data Engineers is becoming more strategic, ensuring organizations can trust and leverage their data for decision-making.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;✨ Closing Thought&lt;/strong&gt;
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;Data Engineering has grown from simple ETL scripts to powering the modern AI-driven world. Understanding this history helps us see not just where the field came from — but also where it’s heading.&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>dataengineering</category>
      <category>bigdata</category>
      <category>history</category>
      <category>datascience</category>
    </item>
    <item>
      <title>👋 Hello World! A Little About Me</title>
      <dc:creator>Parth Maniar</dc:creator>
      <pubDate>Fri, 22 Aug 2025 19:27:55 +0000</pubDate>
      <link>https://dev.to/parth_maniar_3012/hello-world-a-little-about-me-4nho</link>
      <guid>https://dev.to/parth_maniar_3012/hello-world-a-little-about-me-4nho</guid>
      <description>&lt;p&gt;Hi everyone,&lt;/p&gt;

&lt;p&gt;I’m &lt;strong&gt;Parth Maniar&lt;/strong&gt;, and I’m excited to start this blogging journey! I recently completed my &lt;strong&gt;Master’s in Data Science&lt;/strong&gt; from &lt;strong&gt;Rowan University&lt;/strong&gt; USA, and I’m passionate about using data to solve real-world problems.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🎓 My Background&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;During my academic journey, I worked on projects that involved:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Big Data Processing using Hadoop, Kafka, and Apache Spark&lt;/li&gt;
&lt;li&gt;Data Visualization &amp;amp; Analysis (exploring crime datasets, customer feedback, Reddit sentiment analysis&lt;/li&gt;
&lt;li&gt;Applying machine learning models to uncover insights and improve decision-making&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These experiences helped me realize how much I enjoy turning raw data into stories that people can actually use and understand.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;💡 What You’ll Find Here&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Through this blog, I’ll be sharing:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;My journey as I grow in the Data Science / Data Engineering field&lt;/li&gt;
&lt;li&gt;Practical tutorials, projects, and insights from my work&lt;/li&gt;
&lt;li&gt;Career growth experiences as an international graduate building a career in the US&lt;/li&gt;
&lt;li&gt;Occasional personal stories, reflections, and lessons I learn along the way&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;🌱 Beyond Data&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;“Beyond the world of coding and analytics, you’ll often find me exploring new cuisines (always on the hunt for hidden food gems 🍜), diving into the latest tech trends, or tinkering with side projects that push me out of my comfort zone.”&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🚀 Looking Ahead&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This blog is my way of documenting my journey while connecting with others who share similar interests. Whether you’re a fellow data enthusiast, a student, or just curious about tech, I hope you’ll find something valuable here.&lt;/p&gt;

&lt;p&gt;Thanks for stopping by — and welcome to the start of my blogging journey! 🙌&lt;/p&gt;

</description>
      <category>datascience</category>
      <category>programming</category>
      <category>learning</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
